@charset "UTF-8";
/********************
import
********************/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Zen+Kaku+Gothic+New:wght@400;700;900&display=swap");
/********************
vars
********************/
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1.05);
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
    transform: scale(1.05);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeInBlink {
  0% {
    opacity: 0;
    filter: brightness(50%);
  }
  100% {
    opacity: 1;
    filter: brightness(100%);
  }
}
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
/********************
reset
********************/
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

p {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  text-decoration: none;
  background: transparent;
}

a:visited, a:link, a:active {
  color: #000;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

/********************
common
********************/
html {
  font-size: 62.5%;
  scroll-padding-top: 80px;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-feature-settings: "palt";
  letter-spacing: normal;
  line-height: 1.6;
  color: #000;
  font-size: 1.6rem;
}
body.js_modal {
  height: 100%;
  overflow: hidden;
}

@media screen and (max-width: 1023px) {
  html {
    scroll-padding-top: 60px;
  }
}
p, h1, h2, h3, h4, h5, h6, span {
  font-weight: 500;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}
a[href^="tel:"] {
  pointer-events: none;
}

[hidden] {
  display: none;
}

/*
js_mask
*/
.js_mask {
  position: relative;
  overflow: hidden;
}
.js_mask:after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transition: 1s cubic-bezier(1, 0, 0, 1);
}
.js_mask.js_on:after {
  left: 100%;
}
.js_mask.blue:after {
  background-color: #002146;
}
.js_mask.white:after {
  background-color: #fff;
}
.js_mask.continuous:nth-of-type(2):after {
  transition-delay: 0.1s;
}
.js_mask.continuous:nth-of-type(3):after {
  transition-delay: 0.2s;
}
.js_mask.continuous:nth-of-type(4):after {
  transition-delay: 0.3s;
}
.js_mask.continuous:nth-of-type(5):after {
  transition-delay: 0.4s;
}
.js_mask.continuous:nth-of-type(6):after {
  transition-delay: 0.5s;
}
.js_mask.continuous:nth-of-type(7):after {
  transition-delay: 0.6s;
}
.js_mask.continuous:nth-of-type(8):after {
  transition-delay: 0.7s;
}
.js_mask.continuous:nth-of-type(9):after {
  transition-delay: 0.8s;
}
.js_mask.continuous:nth-of-type(10):after {
  transition-delay: 0.9s;
}

.js_scaleUp .inner {
  clip-path: inset(100vw);
  transition: clip-path 1s cubic-bezier(0, 0.36, 0.05, 0.98);
}
.js_scaleUp.js_on .inner {
  clip-path: inset(0);
}

.js_scaleRight .inner {
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: clip-path 1s cubic-bezier(0, 0.36, 0.05, 0.98);
}
.js_scaleRight.js_on .inner {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.js_scaleLeft .inner {
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  transition: clip-path 1s cubic-bezier(0, 0.36, 0.05, 0.98);
}
.js_scaleLeft.js_on .inner {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.js_fedoUp {
  transform: translateY(3em);
  opacity: 0;
  transition: transform 1s ease, opacity 2s ease;
  display: block;
}
.js_fedoUp.js_on {
  transform: translateY(0);
  opacity: 1;
}

.ff-en {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
}

.modaal-video-wrap {
  margin: auto 10px;
}

@media screen and (max-width: 768px) {
  .modaal-video-wrap {
    margin: auto 0;
  }
}
/********************
layout
********************/
.ly_col2 {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.ly_col2 .ly_col, .ly_col2 .column {
  width: calc(50% - 20px);
  box-sizing: border-box;
}

.ly_col3 {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}
.ly_col3 .ly_col {
  width: calc(33.33% - 24px);
  box-sizing: border-box;
}

.ly_col4 {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.ly_col4 .ly_col {
  width: calc(25% - 30px);
  box-sizing: border-box;
}
.ly_col4 .ly_col .title {
  margin-top: 1em;
  font-size: 1.6rem;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .ly_col2, .ly_col3 {
    flex-direction: column;
  }
  .ly_col2 .ly_col, .ly_col3 .ly_col {
    width: 100%;
  }

  .ly_col4 {
    flex-direction: column;
    margin-top: 8vw;
    gap: 8vw;
  }
  .ly_col4 .ly_col {
    width: 100%;
  }
  .ly_col4 .ly_col .title {
    margin-top: 1em;
    font-size: 4.26vw;
    font-weight: 700;
  }
}
/********************
block
********************/
.bl_inner {
  max-width: 1240px;
  padding: 0 20px;
  margin: auto;
}

.bl_sec_title {
  font-size: 1.8rem;
  text-align: center;
  font-weight: 600;
  line-height: 2;
}
.bl_sec_title.wh {
  color: #fff;
}
.bl_sec_title span {
  font-size: 4.5rem;
  display: block;
  font-weight: 600;
  font-family: "Montserrat", "Zen Kaku Gothic New", sans-serif;
}

@media screen and (max-width: 768px) {
  .bl_inner {
    padding: 0 5.33vw;
  }

  .bl_sec_title span {
    line-height: 1.28;
    font-size: 2.5rem;
  }
}
.bl_card {
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}
.bl_card a {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  padding: 20px 20px 30px;
  height: 100%;
}
.bl_card .thumb {
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
  height: auto;
}
.bl_card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 340/262;
}
.bl_card .title {
  font-size: 2rem;
  text-align: center;
  padding: 1em 0;
  width: 100%;
}
.bl_card .text {
  font-size: 1.6rem;
  line-height: 1.71;
  margin-bottom: 30px;
}
.bl_card .icon {
  margin-bottom: 10px;
}
.bl_card .bl_btn {
  margin-top: auto;
}

@media screen and (max-width: 768px) {
  .bl_card {
    min-height: auto;
  }
  .bl_card a {
    padding: 5.33vw 5.33vw 8vw;
  }
  .bl_card .title {
    font-size: 5.33vw;
  }
  .bl_card .text {
    font-size: 4.26vw;
    line-height: 1.7;
    margin-bottom: 8vw;
  }
  .bl_card .icon {
    margin-bottom: 10px;
  }
  .bl_card .bl_btn {
    margin-top: auto;
  }
}
.bl_btn {
  width: 90%;
  max-width: 160px;
  border-radius: 40px;
  height: 40px;
  padding: 0 20px;
  line-height: 1;
  border: #ccc solid 1px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-size: 1.6rem;
  line-height: 1;
}
.bl_btn:after {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background: url(/osirase/1910/koajiro/assets/img/common/btn_arrow_bk.svg);
  background-size: 20px 20px;
  background-repeat: no-repeat;
  transition: 0.5s cubic-bezier(0.1, 1, 1, 1);
}
.bl_btn:hover:after {
  transform: translateX(5px);
}

a:hover > .bl_btn:after {
  transform: translateX(5px);
}

@media screen and (max-width: 768px) {
  .bl_btn {
    width: 90%;
    max-width: 41.33vw;
    border-radius: 10.67vw;
    height: 10.67vw;
    padding: 0 5.33vw;
    font-size: 3.46vw;
  }
  .bl_btn:after {
    width: 5.33vw;
    height: 5.33vw;
    background: url(/osirase/1910/koajiro/assets/img/common/btn_arrow_bk.svg);
    background-size: 5.33vw 5.33vw;
    background-repeat: no-repeat;
  }
}
.bl_main_link {
  position: absolute;
  top: -100%;
  left: -100%;
  background-color: #fff;
}
.bl_main_link:focus {
  top: 0;
  left: 0;
  border: 2px solid rgba(0, 0, 0, 0.16);
  border-radius: 2px;
  color: #681da8;
  cursor: pointer;
  display: inline-block;
  font-size: 1.4rem;
  line-height: 20px;
  margin: 6px 11px;
  min-height: 32px;
  text-decoration: underline;
  text-align: center;
  width: 220px;
  z-index: 1000;
  border-radius: 5px;
  padding: 10px;
}

.bl_accordion_list {
  margin-top: 95px;
}
.bl_accordion_list .list_inner {
  position: relative;
  border: 2px solid #1B7FC3;
  border-radius: 10px;
}
.bl_accordion_list .list_inner dt {
  display: flex;
  align-items: center;
  align-items: flex-start;
  font-size: 2rem;
  padding: 20px 40px;
  position: relative;
}
.bl_accordion_list .list_inner dt .bl_accordion_ttl {
  font-size: 2rem;
  font-weight: 700;
}
.bl_accordion_list .list_inner dt:before, .bl_accordion_list .list_inner dt:after {
  content: "";
  width: 20px;
  height: 2px;
  display: block;
  background: #1B7FC3;
  position: absolute;
  top: 1.8em;
  right: 40px;
  z-index: 1;
  border-radius: 2px;
}
.bl_accordion_list .list_inner dt:after {
  transform: rotate(90deg);
}
.bl_accordion_list .list_inner dd {
  display: none;
  align-items: flex-start;
  font-size: 1.6rem;
  font-weight: 400;
  padding: 20px 40px 40px;
  position: relative;
}
.bl_accordion_list .list_inner dt.js__on:after {
  display: none;
}
.bl_accordion_list .list_inner + .list_inner {
  margin-top: 20px;
}
.bl_accordion_list .list_inner p + h3 {
  margin-top: 100px;
}
.bl_accordion_list .list_inner table {
  width: 100%;
  table-layout: fixed;
  border: 1px #FFF solid;
  border-collapse: separate;
  border-spacing: 1px;
  margin-top: 80px;
}
.bl_accordion_list .list_inner table tbody {
  margin-top: 10px;
}
.bl_accordion_list .list_inner table th, .bl_accordion_list .list_inner table td {
  text-align: center;
  vertical-align: middle;
  font-weight: 400;
  padding: 0.5em;
  word-wrap: break-word;
  word-break: break-word;
  white-space: normal;
  background-color: #e5f2f8;
}
.bl_accordion_list .list_inner table .title {
  background-color: #0052A3;
  color: #fff;
}
.bl_accordion_list .list_inner table th.reference {
  background-color: #F77B00;
  color: #fff;
}
.bl_accordion_list .list_inner table td.reference {
  background-color: #FFE8D1;
}
.bl_accordion_list .list_inner table + table {
  margin-top: 40px;
}
.bl_accordion_list p.caption {
  min-width: 1000px;
}

@media only screen and (max-width: 768px) {
  .bl_accordion_list {
    margin-top: 13.33vw;
  }
  .bl_accordion_list .list_inner {
    position: relative;
    border-radius: 5px;
  }
  .bl_accordion_list .list_inner dt {
    font-size: 4.26vw;
    padding: 1.67vw 5.33vw;
  }
  .bl_accordion_list .list_inner dt .bl_accordion_ttl {
    font-size: 4.26vw;
  }
  .bl_accordion_list .list_inner dt:before, .bl_accordion_list .list_inner dt:after {
    width: 4vw;
    max-width: 4vw;
    height: 0.53vw;
    max-height: 0.53vw;
    top: 1.15em;
    right: 5.33vw;
  }
  .bl_accordion_list .list_inner dd {
    display: none;
    font-size: 3.73vw;
    padding: 2.67vw 5.33vw 13.33vw;
  }
  .bl_accordion_list .list_inner + .list_inner {
    margin-top: 3.2vw;
  }
  .bl_accordion_list .list_inner p + h3 {
    margin-top: min(50px, 13.33vw);
  }
  .bl_accordion_list .list_inner table {
    margin-top: min(30px, 8vw);
  }
  .bl_accordion_list .list_inner table tbody {
    margin-top: 2.67vw;
  }
  .bl_accordion_list .list_inner table th, .bl_accordion_list .list_inner table td {
    -webkit-text-size-adjust: none;
    font-size: 3.2vw;
  }
  .bl_accordion_list .list_inner table + table {
    margin-top: 4vw;
  }
}
.bl_table {
  width: 100%;
  overflow-x: auto;
}
.bl_table table {
  min-width: 1000px;
}

.bl_tab_wrap {
  margin-top: 125px;
}

.bl_tablist {
  display: flex;
  justify-content: space-between;
}
.bl_tablist button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 33%;
  height: 80px;
  font-size: 2.4rem;
  font-weight: 700;
  border: none;
  border-bottom: 6px solid #CCC;
  background: #fff;
  color: #000;
  overflow: hidden;
  position: relative;
  transition: border-color 0.5s ease-out;
}
.bl_tablist button[aria-selected=true] {
  color: #1B7FC3;
  border-color: #1B7FC3;
}
.bl_tablist button:hover {
  cursor: pointer;
}

@media only screen and (max-width: 768px) {
  .bl_tab_wrap {
    margin-top: 12vw;
  }

  .bl_tablist {
    width: 81.33vw;
    margin: auto;
  }
  .bl_tablist button {
    height: 10.67vw;
    font-size: 3.73vw;
    border-bottom: 4px solid #CCC;
  }
}
.bl_tab_nav {
  margin-top: 60px;
  position: relative;
}
.bl_tab_nav .bl_btn {
  max-width: 190px;
  position: absolute;
  background-color: #fff;
}
.bl_tab_nav .bl_btn:after {
  transform: rotate(90deg);
}
.bl_tab_nav .bl_btn:hover:after {
  transform: rotate(90deg) translateX(3px);
}

@media only screen and (max-width: 768px) {
  .bl_tab_nav {
    margin-top: 12vw;
  }
  .bl_tab_nav .bl_btn {
    max-width: 42.67vw;
    height: 10.67vw;
    font-size: 3.2vw;
    padding: 0 2.67vw 0 5.33vw;
  }
  .bl_tab_nav .bl_btn :after {
    width: 5.33vw;
    height: 5.33vw;
  }
}
body.js_header_fix .bl_header {
  position: fixed;
  top: 0;
  left: 0;
  transform: translateY(-100%);
}
body.js_header_fix .header_top nav {
  top: 60px;
}
body.js_header_on .bl_header {
  transform: translate(0);
}
body.js_modal {
  overflow: hidden;
}
body.js_modal #contents {
  z-index: 10000;
}
body.js_menu {
  overflow: hidden;
  height: 100%;
}
body.js_menu .bl_header nav {
  visibility: visible;
  opacity: 1;
}
body.js_menu #btn_menu span:nth-of-type(1) {
  top: 8px;
  transform: rotate(45deg);
}
body.js_menu #btn_menu span:nth-of-type(2) {
  transform: translateX(50%);
  opacity: 0;
}
body.js_menu #btn_menu span:nth-of-type(3) {
  top: 8px;
  transform: rotate(-45deg);
}

@media only screen and (max-width: 1023px) {
  body.js_header_fix .bl_header {
    transform: translateY(0);
  }
  body.js_menu .bl_header nav {
    display: block;
  }
  body.js_menu .bl_header {
    position: fixed;
    top: 0;
    left: 0;
  }
}
/*
header
*/
.bl_header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transition: transform 0.6s cubic-bezier(0, 0, 0, 1);
  width: 100%;
  background-color: #fff;
}

body.page .bl_header {
  background-color: transparent;
  transition: background 0.5s ease;
}
body.page .bl_header.active {
  background-color: #fff;
}

.header_top {
  display: flex;
  align-items: center;
  /*gap: 35px;*/
  gap: 2.18em;
  padding: 0 5px 0 2.18em;
  width: 100%;
  height: 80px;
  font-size: min(1.11vw, 1.6rem);
}
.header_top .bl_logo {
  width: 16.74vw;
  max-width: 241px;
}
.header_top .bl_logo_kanagawa {
  width: 10.69vw;
  max-width: 154px;
}
.header_top nav {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.header_top nav .btn {
  position: relative;
  display: flex;
  align-items: center;
  height: 80px;
  /*font-size: 1.4rem;*/
  font-size: min(0.97vw, 1.4rem);
  font-weight: 700;
}
.header_top nav .btn:after {
  content: "";
  width: 30px;
  height: 2px;
  display: block;
  background-color: #061D53;
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: 0.25s ease-out;
}
.header_top nav .btn:hover {
  cursor: pointer;
  opacity: 0.6;
}
.header_top .nav_ul, .header_top .nav_single_ul {
  display: flex;
  padding: 0 1.87em;
}
.header_top .nav_li {
  /*font-size: 1.6rem;*/
  font-size: min(1.11vw, 1.6rem);
}
.header_top .nav_li + .nav_li {
  /*margin-left: 40px;*/
  margin-left: 1.87em;
}
.header_top .nav_li.active {
  opacity: 1;
  cursor: pointer;
}
.header_top .nav_li.active:after {
  opacity: 1;
  bottom: 30px;
}
.header_top .nav_li.active .header_btm {
  visibility: visible;
  opacity: 1;
}
.header_top .nav_single_ul {
  border-left: 1px solid #000;
  /*gap: 30px;*/
  gap: 1.87em;
}
.header_top .nav_single_ul li {
  /*font-size: 12rem;*/
  font-size: min(0.83vw, 1.2rem);
  font-weight: 700;
  padding: 0.5em 0;
}
.header_top a {
  transition: 0.5s ease;
}
.header_top a:hover {
  opacity: 0.6;
}

body.js_pc .header_top .nav_li.active {
  opacity: 1;
  cursor: pointer;
}
body.js_pc .header_top .nav_li.active .btn {
  opacity: 1;
}
body.js_pc .header_top .nav_li.active .btn:after {
  opacity: 1;
  bottom: 18px;
}
body.js_pc .header_top .nav_li.active .btn + .header_btm {
  visibility: visible;
  opacity: 1;
}

.header_btm {
  position: absolute;
  left: 0;
  width: 100%;
  min-width: 980px;
  background-color: #fff;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease-out;
}
.header_btm .header_btm_area {
  display: flex;
  gap: 20px;
  max-width: 1240px;
  padding: 60px 20px 70px;
  margin: auto;
  position: relative;
}
.header_btm .header_btm_ttl {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.36;
  width: 330px;
}
.header_btm .header_btm_ttl span {
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 1em;
}
.header_btm .header_btm_item {
  width: 270px;
}
.header_btm .header_btm_item a span {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  margin-top: 0.5em;
}

body.js_pc .header_btm:hover {
  cursor: default;
}

#btn_menu {
  display: none;
}

@media only screen and (max-width: 1023px) {
  .header_top {
    height: 60px;
    padding: 0 10px 0 20px;
    gap: 35px;
    font-size: 1.6rem;
  }
  .header_top .bl_logo {
    width: 152px;
    max-width: 152px;
    margin-left: 50px;
  }
  .header_top .bl_logo_kanagawa {
    width: 94px;
    max-width: 94px;
    margin-left: auto;
  }
  .header_top nav {
    position: fixed;
    align-items: flex-start;
    flex-wrap: wrap;
    height: calc(100vh - 60px);
    top: 60px;
    left: 0;
    display: none;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    overflow: auto;
    transition: opacity 0.5s ease;
    background: #fff;
  }
  .header_top nav .btn {
    display: none;
  }
  .header_top nav .btn:after {
    display: none;
  }
  .header_top .nav_ul, .header_top .nav_single_ul {
    flex-direction: column;
    padding: 0;
    width: 100%;
  }
  .header_top .nav_li + .nav_li {
    margin-left: 0;
  }
  .header_top .nav_ul {
    padding-top: 10px;
  }
  .header_top .nav_single_ul {
    border: none;
    gap: 0;
    background-color: #F2F2F2;
    padding: 17px 25px 14px;
    margin-top: 26px;
  }
  .header_top .nav_single_ul li {
    position: relative;
    font-size: 1.4rem;
    padding: 1em 0;
  }
  .header_top .nav_single_ul li + li {
    border-top: 1px solid #CCC;
  }
  .header_top .nav_single_ul li:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: block;
    width: 20px;
    height: 20px;
    background: url(../img/common/btn_arrow_bk.svg);
    background-size: contain;
    background-repeat: no-repeat;
  }

  .header_btm {
    position: static;
    opacity: 1;
    max-height: unset;
    overflow: hidden;
    min-width: 100%;
    visibility: visible;
    transition: 1s ease;
  }
  .header_btm .header_btm_area {
    display: block;
    max-width: 100%;
    padding: 0 25px;
    margin-top: 30px;
  }
  .header_btm .header_btm_ttl {
    margin-bottom: 10px;
    width: 100%;
  }
  .header_btm .header_btm_ttl span {
    margin-top: 0.5em;
  }
  .header_btm .header_btm_item {
    position: relative;
    width: 100%;
  }
  .header_btm .header_btm_item:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: block;
    width: 20px;
    height: 20px;
    background: url(../img/common/btn_arrow_bk.svg);
    background-size: contain;
    background-repeat: no-repeat;
  }
  .header_btm .header_btm_item a {
    display: block;
    padding: 0.8em 0;
  }
  .header_btm .header_btm_item a span {
    margin-top: 0;
  }
  .header_btm .header_btm_item img {
    display: none;
  }

  #btn_menu {
    position: absolute;
    width: 24px;
    height: 17px;
    top: 21px;
    left: 20px;
    display: block;
  }
  #btn_menu span {
    width: 30px;
    height: 2px;
    display: block;
    background-color: #000;
    position: absolute;
    left: 0;
    transition: 0.5s ease;
  }
  #btn_menu span:nth-of-type(1) {
    top: 0;
  }
  #btn_menu span:nth-of-type(2) {
    top: 8px;
  }
  #btn_menu span:nth-of-type(3) {
    top: 16px;
  }

  body.js_pc .header_top .nav_li:hover .btn:after {
    opacity: 1;
  }

  body.js_pc .header_top .nav_li:hover .btn.active:after {
    opacity: 0;
  }
}
@media only screen and (max-width: 768px) {
  .header_top {
    padding: 0 15px 0 20px;
    gap: 35px;
    font-size: 1.6rem;
  }
  .header_top .nav_ul {
    padding-top: 1.33vw;
  }
  .header_top .nav_single_ul {
    padding: 5.33vw 6.67vw 24vw;
    margin-top: 6.67vw;
  }
  .header_top .nav_single_ul li {
    font-size: 3.73vw;
  }
  .header_top .nav_single_ul li:after {
    width: 5.33vw;
    height: 5.33vw;
  }

  .header_btm .header_btm_area {
    padding: 0 6.67vw;
    margin-top: 8vw;
  }
  .header_btm .header_btm_ttl {
    margin-bottom: 2.67vw;
    font-size: 6.67vw;
    line-height: 1.28;
  }
  .header_btm .header_btm_ttl span {
    font-size: 3.2vw;
  }
  .header_btm .header_btm_item:after {
    width: 5.33vw;
    height: 5.33vw;
  }
  .header_btm .header_btm_item a {
    padding: 2.67vw 0;
  }
  .header_btm .header_btm_item a span {
    font-size: 4.26vw;
  }
}
.js_sp.js_menu .header_top {
  background: #fff;
}

.btn_cls {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  transition: 0.5s ease;
  line-height: 0;
}
.btn_cls:before {
  content: "";
  width: 23px;
  height: 23px;
  display: inline-block;
  margin-right: 0.25em;
  background-image: url(/osirase/1910/koajiro/assets/img/common/icon_close.svg);
  background-size: cover;
}
.btn_cls:hover {
  opacity: 0.6;
  cursor: pointer;
}

@media only screen and (max-width: 768px) {
  .btn_cls {
    display: none;
  }
}
.bl_footer {
  background-color: #fff;
  padding-top: 50px;
  padding-bottom: 30px;
  font-size: 1.4rem;
}
.bl_footer .ly_top {
  padding-bottom: 80px;
}
.bl_footer .ly_top .bl_inner {
  display: flex;
  justify-content: space-between;
  gap: 80px;
}
.bl_footer .ly_top .bl_logo {
  width: 241px;
}
.bl_footer .ly_top .bl_nav {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: flex-end;
  width: 856px;
}
.bl_footer .ly_top .bl_nav .title {
  font-weight: 600;
  font-size: 1.4rem;
}
.bl_footer .ly_top .bl_nav .title + .list {
  margin-top: 0.5em;
}
.bl_footer .ly_top .bl_nav .list {
  line-height: 2.14;
  font-weight: 400;
}
.bl_footer .ly_btm {
  border-top: 1px solid #DDD;
}
.bl_footer .ly_btm .bl_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.bl_footer .ly_btm .bl_logo img {
  width: 154px;
}
.bl_footer .ly_btm .bl_logo p {
  font-size: 1.2rem;
}
.bl_footer .ly_btm .bl_nav ul {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.bl_footer .ly_btm .bl_nav ul li + li:before {
  content: "｜";
  display: inline-block;
}
.bl_footer .ly_btm .bl_nav ul li a {
  padding: 0 1em;
}
.bl_footer .ly_btm small {
  display: block;
  font-size: 1.2rem;
  text-align: right;
  margin-top: 20px;
  position: absolute;
  bottom: 0;
  right: 0;
}

@media screen and (max-width: 768px) {
  .bl_footer {
    padding-top: 10.66vw;
    padding-bottom: 10.66vw;
    border-top: 1px solid #DDD;
  }
  .bl_footer .ly_top {
    padding-bottom: 10.66vw;
  }
  .bl_footer .ly_top .bl_inner {
    flex-direction: column;
    gap: 10.66vw;
  }
  .bl_footer .ly_top .bl_nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 8vw;
    width: 100%;
  }
  .bl_footer .ly_btm {
    border: none;
  }
  .bl_footer .ly_btm .bl_inner {
    flex-direction: column;
    gap: 10.66vw;
    align-items: flex-start;
    gap: 0;
  }
  .bl_footer .ly_btm .bl_logo {
    order: 2;
    width: 100%;
    margin-top: 10.66vw;
  }
  .bl_footer .ly_btm .bl_logo img {
    width: 32.26vw;
  }
  .bl_footer .ly_btm .bl_logo p {
    font-size: 1rem;
  }
  .bl_footer .ly_btm .bl_nav {
    order: 1;
  }
  .bl_footer .ly_btm .bl_nav ul {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    line-height: 2.14;
  }
  .bl_footer .ly_btm .bl_nav ul li + li:before {
    content: "";
    display: none;
  }
  .bl_footer .ly_btm .bl_nav ul li a {
    padding: 0;
  }
  .bl_footer .ly_btm small {
    order: 3;
    font-size: 1rem;
    text-align: left;
    position: static;
  }
}
main {
  position: relative;
  overflow: hidden;
}

body.page .hero {
  background: url(../img/common/page_hero_bg.png);
  background-size: 48.4vw;
  background-position: 0 0;
  background-repeat: no-repeat;
  position: relative;
}
body.page .hero .ly_col2 {
  align-items: center;
  height: 36.81vw;
}
body.page .hero .column {
  /*position: absolute; top: 80px; right: 0;*/
  width: 55.55vw;
  max-width: 55.55vw;
  margin: 80px calc(50% - 50vw) 0;
}
body.page .hero h1 {
  width: 36.22vw;
  font-size: 4rem;
  font-weight: 700;
  margin-top: 40px;
}
body.page .hero h1 span {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
}
body.page .hero .inner {
  display: block;
  width: 100%;
  height: 31.25vw;
  overflow: hidden;
  border-radius: 1.4vw 0 0 1.4vw;
}
body.page .hero .intro {
  margin-top: 40px;
  font-size: 2.4rem;
  line-height: 1.96;
}

.breadcrumbs {
  text-align: right;
  position: relative;
  top: 30px;
  width: 100vw;
  margin: 0 calc(100% - 100vw);
}
.breadcrumbs ul {
  display: flex;
  gap: 35px;
  max-width: 1240px;
  padding: 0 20px;
  margin: auto;
  justify-content: flex-end;
}
.breadcrumbs li {
  font-size: 1.2rem;
  position: relative;
}
.breadcrumbs li + li:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -2em;
  display: block;
  width: 5px;
  height: 5px;
  border-top: 1px solid #959595;
  border-right: 1px solid #959595;
  transform: rotate(45deg) translateY(-50%);
}
.breadcrumbs li a {
  color: #1B7FC3;
  line-height: 1.5;
}
.breadcrumbs li span, .breadcrumbs li a {
  display: block;
  white-space: nowrap;
}
.breadcrumbs li span {
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  white-space: normal;
  overflow: hidden;
}

@media only screen and (max-width: 1023px) {
  body.page .hero .column {
    margin-top: 60px;
  }
}
@media only screen and (max-width: 768px) {
  body.page .hero {
    background: url(../img/common/page_hero_bg_sp.png);
    background-size: 89.07vw;
    background-position: 21vw 42vw;
    background-repeat: no-repeat;
  }
  body.page .hero .bl_inner {
    padding: 0 5.33vw 29.67vw;
  }
  body.page .hero .ly_col2 {
    height: auto;
    display: flex;
    flex-direction: column-reverse;
    gap: 0;
  }
  body.page .hero .column {
    margin: calc(13.33vw + 60px) 0 0;
    width: 94.67vw;
    max-width: 94.67vw;
  }
  body.page .hero h1 {
    width: 100%;
    font-size: 6.67vw;
    margin-top: 9vw;
  }
  body.page .hero h1 span {
    font-size: 3.2vw;
    margin-bottom: 0.6em;
  }
  body.page .hero .inner {
    height: 53.33vw;
  }
  body.page .hero .intro {
    margin-top: 6.33vw;
    font-size: 4.26vw;
    line-height: 1.81;
  }

  .breadcrumbs {
    top: -61.33vw;
  }
  .breadcrumbs ul {
    gap: 6.67vw;
    padding: 0 5.33vw;
  }
  .breadcrumbs li {
    font-size: 2.67vw;
  }
  .breadcrumbs li + li:before {
    left: -1.9em;
    width: 1.6vw;
    height: 1.6vw;
  }
}
body.page .bg_blue .hero {
  background: #061D53;
  height: 200px;
  background-image: none;
  margin-top: 80px;
}
body.page .bg_blue .hero .bl_inner {
  display: flex;
  align-items: center;
  height: 100%;
}
body.page .bg_blue .hero h1 {
  font-size: 5rem;
  font-weight: 600;
  color: #fff;
  width: auto;
  margin: 0;
}
body.page .bg_blue .hero h1 span {
  font-size: 2rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
body.page .bg_blue + .breadcrumbs {
  top: 1em;
}

@media only screen and (max-width: 768px) {
  body.page .bg_blue .hero {
    height: 40vw;
    margin-top: 60px;
  }
  body.page .bg_blue .hero .bl_inner {
    padding: 0 5.33vw;
  }
  body.page .bg_blue .hero h1 {
    font-size: 6.67vw;
  }
  body.page .bg_blue .hero h1 span {
    font-size: 3.2vw;
  }
}
.page .bl_sky_title_area .bl_sec_title {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 100px;
  background: #1B7FC3;
  border-radius: 5px;
  margin-left: 0;
  padding: 0.5em 0;
}
.page .bl_sky_title_area .bl_sec_title span {
  font-size: 2rem;
}

@media only screen and (max-width: 768px) {
  .page .bl_sky_title_area .bl_sec_title {
    font-size: 4.26vw;
    margin-top: 26.67vw;
    padding: 0.8em 0;
  }
  .page .bl_sky_title_area .bl_sec_title span {
    font-size: 4.26vw;
  }
}
/*
.page共通
*/
.page .contents_wrap {
  padding: 0 0 160px;
  /*margin-top: -20px;*/
}

.page .bl_sec_title {
  font-size: 4rem;
  background: #061D53;
  text-align: left;
  border-radius: 0 10px 10px 0;
  margin-top: 150px;
  margin-left: calc(50% - 50vw);
  margin-right: 0;
}
.page .bl_sec_title span {
  display: block;
  max-width: 1240px;
  padding: 0 40px;
  margin-left: auto;
}

.page .note_area {
  margin-top: 100px;
}
.page .note_area p {
  font-size: 1.6rem;
  line-height: 1.81;
}

@media only screen and (max-width: 1280px) {
  .page .bl_sec_title span {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 768px) {
  .page .contents_wrap {
    padding: 0 0 26.67vw;
    margin-top: 0;
  }

  .page .bl_sec_title {
    font-size: 5.33vw;
    border-radius: 0 5px 5px 0;
    margin-top: 26.67vw;
    padding: 0.5em 0;
  }
  .page .bl_sec_title span {
    padding: 0 5.33vw;
    font-size: 5.33vw;
  }

  .page .bl_blue_title_area:nth-child(1) .bl_sec_title {
    margin-top: 0;
  }

  .page .note_area {
    margin-top: 26.67vw;
  }
  .page .note_area p {
    font-size: 4.26vw;
  }
}
/*
bussiness
*/
.page .bl_blue_title_area h3 {
  font-size: 3rem;
  font-weight: 700;
  margin-top: 100px;
}
.page .bl_blue_title_area .intro {
  font-size: 2rem;
  line-height: 1.95;
  margin-top: 70px;
}
.page .bl_blue_title_area .ly_col1, .page .bl_blue_title_area .ly_col2 {
  margin-top: 70px;
}
.page .bl_blue_title_area .ly_col1 img {
  width: 100%;
}
.page .bl_blue_title_area .ly_col2.text_img {
  margin-top: 60px;
}
.page .bl_blue_title_area .ly_col2.text_img .column {
  width: 37.5%;
  display: flex;
  flex-direction: column;
}
.page .bl_blue_title_area .ly_col2.text_img .column p {
  line-height: 1.95;
}
.page .bl_blue_title_area .ly_col2.text_img .column picture, .page .bl_blue_title_area .ly_col2.text_img .column img {
  margin-top: auto;
  padding-top: 1em;
}
.page .bl_blue_title_area .ly_col2.text_img .column:nth-child(2) {
  width: 55%;
}
.page .bl_blue_title_area .ly_col2.text_img .column:nth-child(2) picture, .page .bl_blue_title_area .ly_col2.text_img .column:nth-child(2) img {
  margin-top: 0;
  padding-top: 0;
}
.page .bl_blue_title_area .ly_col3 {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 50px;
}
.page .bl_blue_title_area .ly_col3 .bl_box {
  width: calc(33.33% - 24px);
  box-sizing: border-box;
}
.page .bl_blue_title_area .ly_col3 .bl_box .title {
  display: flex;
  align-items: center;
  font-size: 2rem;
  font-weight: 700;
  margin-top: 1em;
}
.page .bl_blue_title_area .ly_col3 .bl_box .title span {
  display: inline-block;
  padding: 0.2em 1.5em;
  font-size: 1.2rem;
  background: #0052A3;
  border-radius: 4px;
  color: #fff;
  margin-right: 1.5em;
}
.page .bl_blue_title_area .ly_col3 .bl_box .text {
  font-size: 1.6rem;
  line-height: 1.88;
  margin-top: 0.2em;
}
.page .bl_blue_title_area .ly_col3 .bl_box small {
  font-size: 1.2rem;
}
.page .bl_blue_title_area .bl_point {
  border: 2px solid #1B7FC3;
  border-radius: 10px;
  padding: 50px;
  margin-top: 70px;
}
.page .bl_blue_title_area .bl_point .ttl {
  position: relative;
  font-size: 1.8rem;
  background: #0052A3;
  color: #fff;
  padding: 0.3em 83px 0.3em 63px;
  border-radius: 3em;
  width: fit-content;
  margin-top: 0;
  font-weight: 700;
}
.page .bl_blue_title_area .bl_point .ttl:after {
  content: "";
  position: absolute;
  top: 35%;
  right: 27px;
  transform: translateY(-50%);
  display: block;
  width: 40px;
  height: 51.2px;
  background: url(../img/common/icon_hand.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.page .bl_blue_title_area .bl_point p {
  font-size: 1.6rem;
  line-height: 2;
  margin-top: 1.5em;
  font-weight: 500;
}

@media only screen and (max-width: 768px) {
  .page .bl_blue_title_area h3 {
    font-size: 5.33vw;
    margin-top: 13.33vw;
  }
  .page .bl_blue_title_area .intro {
    font-size: 4.26vw;
    line-height: 1.81;
    margin-top: 8vw;
  }
  .page .bl_blue_title_area .ly_col1, .page .bl_blue_title_area .ly_col2 {
    margin-top: 8vw;
    gap: 5.33vw;
  }
  .page .bl_blue_title_area .ly_col1 .column, .page .bl_blue_title_area .ly_col2 .column {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .page .bl_blue_title_area .ly_col2.text_img {
    margin-top: 8vw;
    gap: 0;
  }
  .page .bl_blue_title_area .ly_col2.text_img .column {
    width: 100%;
  }
  .page .bl_blue_title_area .ly_col2.text_img .column picture, .page .bl_blue_title_area .ly_col2.text_img .column img {
    margin-top: 8vw;
    padding-top: 0;
  }
  .page .bl_blue_title_area .ly_col2.text_img .column picture {
    margin-top: 0;
  }
  .page .bl_blue_title_area .ly_col2.text_img .column:nth-child(2) {
    width: 100%;
  }
  .page .bl_blue_title_area .ly_col3 {
    gap: 5.33vw;
    margin-top: 8vw;
  }
  .page .bl_blue_title_area .ly_col3 .bl_box {
    width: 100%;
  }
  .page .bl_blue_title_area .ly_col3 .bl_box .title {
    font-size: 4.26vw;
  }
  .page .bl_blue_title_area .ly_col3 .bl_box .title span {
    padding: 0.2em 1em;
    font-size: 3.2vw;
    margin-right: 1em;
  }
  .page .bl_blue_title_area .ly_col3 .bl_box .text {
    font-size: 3.73vw;
    line-height: 1.86;
    margin-top: 0.4em;
  }
  .page .bl_blue_title_area .ly_col3 .bl_box small {
    font-size: 3.2vw;
  }
  .page .bl_blue_title_area .bl_point {
    padding: 6.67vw 5.33vw;
    margin-top: 8vw;
  }
  .page .bl_blue_title_area .bl_point .ttl {
    font-size: 4.26vw;
    padding: 0.3em 18.67vw 0.3em 11.67vw;
    border-radius: 2em;
    width: 100%;
  }
  .page .bl_blue_title_area .bl_point .ttl:after {
    top: 35%;
    right: 5.87vw;
    transform: translateY(-50%);
    width: 10vw;
    height: 12.24vw;
    background: url(../img/common/icon_hand.svg);
    background-size: 10vw 12.24vw;
    background-repeat: no-repeat;
  }
  .page .bl_blue_title_area .bl_point p {
    font-size: 3.2vw;
    margin-top: 1.3em;
  }
}
@media only screen and (max-width: 768px) {
  .page #issues_industry_resource .ly_col2.text_img .column + .column {
    margin-top: 12vw;
  }
}
.page #plan_business_purpose .ly_col2.text_img .column ul {
  margin-top: 30px;
}
.page #plan_business_purpose .ly_col2.text_img .column ul li {
  position: relative;
  font-size: 2rem;
  border-top: 2px solid #1B7FC3;
  line-height: 1.95;
  padding: 45px 0 70px;
  counter-increment: count;
}
.page #plan_business_purpose .ly_col2.text_img .column ul li:before {
  content: counter(count, decimal-leading-zero);
  position: absolute;
  top: -1em;
  left: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 5rem;
  font-weight: 600;
  color: #1B7FC3;
  background: #fff;
  padding-right: 0.5em;
}
.page #plan_business_purpose .ly_col2.plan_overview .column {
  width: calc(50% - 30px);
}
.page #plan_business_purpose .ly_col2.plan_overview .column h3 {
  font-size: 3rem;
  font-weight: 700;
  border-bottom: 2px solid #1B7FC3;
  padding-bottom: 20px;
  margin-top: 0;
}
.page #plan_business_purpose .ly_col2.plan_overview .column dl {
  margin-top: 30px;
}
.page #plan_business_purpose .ly_col2.plan_overview .column dl .dl_inner {
  display: flex;
  font-size: 1.6rem;
  line-height: 1.81;
  font-weight: 500;
}
.page #plan_business_purpose .ly_col2.plan_overview .column dl .dl_inner dt {
  width: 16.67%;
}

@media only screen and (max-width: 768px) {
  .page #plan_business_purpose .ly_col2.text_img .column ul {
    margin-top: 5.33vw;
  }
  .page #plan_business_purpose .ly_col2.text_img .column ul li {
    font-size: 3.73vw;
    line-height: 1.86;
    padding: 9.33vw 0 10.67vw;
  }
  .page #plan_business_purpose .ly_col2.text_img .column ul li:before {
    font-size: 8vw;
  }
  .page #plan_business_purpose .ly_col2.text_img .column img {
    margin-top: 0;
  }
  .page #plan_business_purpose .ly_col2.plan_overview {
    margin-top: 5.33vw;
  }
  .page #plan_business_purpose .ly_col2.plan_overview .column {
    width: 100%;
    margin-top: 8vw;
  }
  .page #plan_business_purpose .ly_col2.plan_overview .column h3 {
    font-size: 5.33vw;
    padding-bottom: 4vw;
  }
  .page #plan_business_purpose .ly_col2.plan_overview .column dl {
    margin-top: 8vw;
  }
  .page #plan_business_purpose .ly_col2.plan_overview .column dl .dl_inner {
    font-size: 4.26vw;
    letter-spacing: 0;
  }
  .page #plan_business_purpose .ly_col2.plan_overview .column dl .dl_inner dt {
    width: 21vw;
  }
}
.page #plan_past_efforts .ly_col1 .column {
  margin-top: 70px;
}
.page #plan_past_efforts .ly_col1 .column h3 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 50px;
}

@media only screen and (max-width: 768px) {
  .page #plan_past_efforts .ly_col1 {
    margin-top: 0;
  }
  .page #plan_past_efforts .ly_col1 .column {
    margin-top: 0;
  }
  .page #plan_past_efforts .ly_col1 .column h3 {
    font-size: 5.33vw;
    margin: 8vw 0;
  }
  .page #plan_past_efforts .ly_col1 .column + .column {
    margin-top: 5.33vw;
  }
}
.page #effects_improvement h3 {
  display: flex;
  align-items: center;
}
.page #effects_improvement h3 span {
  display: inline-block;
  width: 33px;
  height: 33px;
  border-radius: 100%;
  background: #0052A3;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.94;
  text-align: center;
  margin: 0 0.3em;
}
.page #effects_improvement h3 span:nth-child(2) {
  background: #505050;
}

@media only screen and (max-width: 768px) {
  .page #effects_improvement h3 span {
    width: 7.2vw;
    height: 7.2vw;
    font-size: 4vw;
    line-height: 1.65;
  }
  .page #effects_improvement .ly_col2.text_img .column + .column {
    margin-top: 12vw;
  }
}
#effects_reinforcement .ly_col2.text_img .column img {
  margin-top: 0;
}

@media only screen and (max-width: 768px) {
  #effects_reinforcement .bl_point {
    margin-top: 113.94vw;
  }
  #effects_reinforcement .ly_col2.text_img {
    position: relative;
  }
  #effects_reinforcement .ly_col2.text_img .column:nth-child(2) {
    position: absolute;
    top: 57.67vw;
  }
}
.page #effects_regional_revitalization.bl_blue_title_area .ly_col1 {
  margin-top: 70px;
}

@media only screen and (max-width: 768px) {
  .page #effects_regional_revitalization.bl_blue_title_area .ly_col1 {
    margin-top: 13.33vw;
  }

  #effects_regional_revitalization .intro {
    margin-top: 8vw;
    font-size: 3.73vw;
  }
}
/*
environmental
*/
/*
expert
*/
.page #overview_members table {
  width: 100%;
  table-layout: fixed;
  border: 1px #FFF solid;
  background-color: #9BBDD3;
  border-collapse: separate;
  border-spacing: 1px;
  margin-top: 80px;
  position: relative;
}
.page #overview_members table tbody {
  margin-top: 10px;
}
.page #overview_members table th, .page #overview_members table td {
  text-align: center;
  vertical-align: middle;
  font-weight: 400;
  padding: 0.5em;
  word-wrap: break-word;
  word-break: break-word;
  white-space: normal;
}
.page #overview_members table .title {
  background-color: #aedbf2;
}
.page #overview_members table .body {
  background-color: #e5f2f8;
}
.page #overview_members .ly_col2 {
  gap: 63px;
  flex-wrap: wrap;
  margin-top: 70px;
}
.page #overview_members .ly_col2 .bl_box {
  width: 235px;
}
.page #overview_members .ly_col2 .bl_box:nth-child(2) {
  flex: 1;
}
.page #overview_members .ly_col2 .dl_inner {
  display: flex;
  padding: 1em 0;
}
.page #overview_members .ly_col2 .dl_inner + .dl_inner {
  border-top: 1px solid #ccc;
}
.page #overview_members .ly_col2 dt {
  width: 115px;
  font-weight: 500;
}
.page #overview_members .ly_col2 dd {
  flex: 1;
  font-weight: 400;
}

.page #overview_background.bl_blue_title_area .ly_col1 {
  margin-top: 50px;
}
.page #overview_background.bl_blue_title_area .ly_col1 .column ul li {
  position: relative;
  font-size: 1.6rem;
  font-weight: 500;
  margin-left: 1.2em;
  line-height: 1.81;
}
.page #overview_background.bl_blue_title_area .ly_col1 .column ul li:before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 1em;
  height: 1em;
  border-radius: 100%;
  background: #0052A3;
  left: -1.2em;
  top: 0.4em;
}

.page #overview_meeting_results .ly_col {
  margin-top: 70px;
}
.page #overview_meeting_results .ly_col .summary {
  display: block;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 2em 0;
  width: 100%;
}
.page #overview_meeting_results .ly_col .dl_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 2em 120px 2em 0;
}
.page #overview_meeting_results .ly_col .dl_inner + .dl_inner {
  border-top: 1px solid #ccc;
}
.page #overview_meeting_results .ly_col dl {
  border-bottom: 1px solid #ccc;
}
.page #overview_meeting_results .ly_col dt {
  width: 25%;
}
.page #overview_meeting_results .ly_col dd {
  width: 25%;
}
.page #overview_meeting_results .ly_col a {
  text-decoration: underline;
  display: flex;
  align-items: center;
}
.page #overview_meeting_results .ly_col a:after {
  content: "";
  position: relative;
  right: -1em;
  width: 25px;
  height: 27.35px;
  display: block;
  background: url(/osirase/1910/koajiro/assets/img/common/icon_pdf.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page #overview_meeting_results .ly_col a + a {
  margin-top: 0.5em;
}

@media only screen and (max-width: 768px) {
  .page #overview_members table {
    margin-top: 8vw;
    min-width: 100%;
  }
  .page #overview_members table tbody {
    margin-top: 2.67vw;
  }
  .page #overview_members table th, .page #overview_members table td {
    -webkit-text-size-adjust: none;
    font-size: 3.73vw;
    padding: 0.8em 0.5em;
    line-height: 1.36;
  }
  .page #overview_members table td[rowspan="6"] {
    padding: 0.8em 1em;
  }
  .page #overview_members table td[colspan="2"] {
    text-align: left;
  }
  .page #overview_members .ly_col2 {
    gap: 0;
    flex-wrap: wrap;
    margin-top: 13.33vw;
  }
  .page #overview_members .ly_col2 .bl_box {
    width: 100%;
  }
  .page #overview_members .ly_col2 .dl_inner {
    flex-wrap: wrap;
  }
  .page #overview_members .ly_col2 dl {
    border-bottom: 1px solid #ccc;
    margin-top: 4.8vw;
  }
  .page #overview_members .ly_col2 dt {
    width: 100%;
    font-size: 4.26vw;
  }
  .page #overview_members .ly_col2 dd {
    width: 100%;
    font-size: 4.26vw;
    line-height: 1.81;
    margin-top: 1.33vw;
  }
  .page #overview_members .thumb {
    max-width: 150px;
  }

  .page #overview_background.bl_blue_title_area h3 {
    margin-top: 26.67vw;
  }
  .page #overview_background.bl_blue_title_area .ly_col1 {
    margin-top: 8vw;
  }
  .page #overview_background.bl_blue_title_area .ly_col1 .column ul li {
    font-size: 4.26vw;
  }
  .page #overview_background.bl_blue_title_area .ly_col2.text_img .column + .column {
    margin-top: 12vw;
  }

  .page #overview_schedule .ly_col1 {
    margin: 8vw calc(50% - 50vw);
    overflow-x: scroll;
    position: relative;
    left: 5.33vw;
    padding-right: 10.67vw;
  }
  .page #overview_schedule .ly_col1 .column {
    min-width: 245.73vw;
  }

  .page #overview_meeting_results .ly_col {
    margin-top: 8vw;
  }
  .page #overview_meeting_results .ly_col .dl_inner {
    padding-right: 0;
    flex-wrap: wrap;
  }
  .page #overview_meeting_results .ly_col dt {
    width: 100%;
    margin-bottom: 1.33vw;
  }
  .page #overview_meeting_results .ly_col dd {
    width: 50%;
    margin-top: 6.67vw;
  }
  .page #overview_meeting_results .ly_col dd:has(a + a) {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .page #overview_meeting_results .ly_col dd.dn {
    display: none;
  }
  .page #overview_meeting_results .ly_col a {
    font-size: 4.26vw;
    width: 100%;
    position: relative;
  }
  .page #overview_meeting_results .ly_col a:after {
    content: "";
    position: absolute;
    right: 3.5em;
    width: 5.33vw;
    height: 5.83vw;
    display: block;
    background: url(/osirase/1910/koajiro/assets/img/common/icon_pdf.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .page #overview_meeting_results .ly_col a + a {
    margin-top: 0;
  }
  .page #overview_meeting_results .ly_col .summary a {
    width: 55vw;
  }
}
#expert_positioning h3, #expert_background h3 {
  margin-top: 75px;
}
#expert_positioning .ly_col1, #expert_background .ly_col1 {
  margin-top: 50px;
}

@media only screen and (max-width: 768px) {
  #expert_positioning h3, #expert_background h3 {
    margin-top: 26.67vw;
  }
  #expert_positioning .ly_col1, #expert_background .ly_col1 {
    margin-top: 8vw;
  }
  #expert_positioning .ly_col4, #expert_background .ly_col4 {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2.67vw;
  }
  #expert_positioning .ly_col4 .ly_col.bl_box, #expert_background .ly_col4 .ly_col.bl_box {
    width: 43.2vw;
  }
}
.page .bl_protrude_img {
  position: relative;
  margin-top: 100px;
}
.page .bl_protrude_img + .bl_protrude_img {
  margin-top: 150px;
}
.page .bl_protrude_img .ly_col2 {
  align-items: center;
  min-height: 27.78vw;
}
.page .bl_protrude_img .column {
  /*position: absolute; top: 0; width: 50vw;*/
}
.page .bl_protrude_img .column img {
  width: 100%;
  /*position: absolute;*/
}
.page .bl_protrude_img .bl_tab_nav {
  margin-top: 60px;
  position: relative;
}
.page .bl_protrude_img .bl_tab_nav .bl_btn {
  max-width: 190px;
  position: absolute;
  background-color: #fff;
}
.page .bl_protrude_img .bl_tab_nav .bl_btn:after {
  transform: rotate(90deg);
}
.page .bl_protrude_img .bl_tab_nav .bl_btn:hover:after {
  transform: rotate(90deg) translateX(3px);
}
.page .bl_protrude_img .inner {
  display: block;
  width: 100%;
  height: 27.78vw;
}
.page .bl_protrude_img .bl_sec_text {
  width: 45%;
}
.page .bl_protrude_img .bl_sec_title_sky {
  font-size: 3rem;
  color: #1B7FC3;
  font-weight: 700;
}
.page .bl_protrude_img h3 {
  font-size: 2rem;
  font-weight: 500;
  margin-top: 30px;
}
.page .bl_protrude_img p {
  margin-top: 1em;
  font-size: 1.6rem;
  line-height: 1.81;
}
.page .bl_protrude_img .bl_btn {
  margin-top: 40px;
}
.page .bl_protrude_img ul {
  margin-top: 20px;
}
.page .bl_protrude_img ul li {
  border-bottom: 1px solid #CCC;
}
.page .bl_protrude_img ul li a {
  display: block;
  padding: 0.55em 0;
  font-size: 2rem;
  position: relative;
}
.page .bl_protrude_img ul li a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 10.58px;
  height: 8.27px;
  display: block;
  background: url(/osirase/1910/koajiro/assets/img/common/icon_arrow.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.5s cubic-bezier(0.1, 1, 1, 1);
}
.page .bl_protrude_img.img_right .ly_col2 {
  flex-direction: row-reverse;
}
.page .bl_protrude_img.img_right .column {
  right: 0;
  width: 50vw;
  max-width: 50vw;
  margin-right: calc((100vw - 100%) / -2);
}
.page .bl_protrude_img.img_right .column img {
  right: 0;
  width: 50vw;
  max-width: 50vw;
}
.page .bl_protrude_img.img_left .column {
  left: 0;
  width: 50vw;
  max-width: 50vw;
  margin-left: calc((100vw - 100%) / -2);
}
.page .bl_protrude_img.img_left .column img {
  left: 0;
  width: 50vw;
  max-width: 50vw;
}

@media only screen and (max-width: 768px) {
  .page .bl_protrude_img {
    margin-top: 0;
  }
  .page .bl_protrude_img + .bl_protrude_img {
    margin-top: 26.67vw;
  }
  .page .bl_protrude_img .ly_col2 {
    height: auto;
    display: flex;
    flex-direction: column-reverse;
    gap: 0;
  }
  .page .bl_protrude_img .column {
    width: 100%;
  }
  .page .bl_protrude_img .column img {
    width: 94.67vw;
  }
  .page .bl_protrude_img .bl_tab_nav {
    margin-top: 12vw;
  }
  .page .bl_protrude_img .bl_tab_nav .bl_btn {
    max-width: 42.67vw;
    height: 10.67vw;
    font-size: 3.2vw;
    padding: 0 2.67vw 0 5.33vw;
  }
  .page .bl_protrude_img .bl_tab_nav .bl_btn :after {
    width: 5.33vw;
    height: 5.33vw;
  }
  .page .bl_protrude_img .inner {
    height: 52.59vw;
  }
  .page .bl_protrude_img .bl_sec_text {
    width: 100%;
  }
  .page .bl_protrude_img .bl_sec_title_sky {
    font-size: 5.33vw;
    margin-top: 61.33vw;
  }
  .page .bl_protrude_img h3 {
    margin-top: 4vw;
    font-size: 4.26vw;
    line-height: 1.81;
  }
  .page .bl_protrude_img p {
    margin-top: 1em;
    font-size: 4.26vw;
    line-height: 1.81;
  }
  .page .bl_protrude_img .bl_btn {
    margin-top: 9.33vw;
    width: 41.6vw;
    max-width: 41.6vw;
    border-radius: 10.67vw;
    height: 10.67vw;
    padding: 0 5.33vw;
    font-size: 3.47vw;
  }
  .page .bl_protrude_img .bl_btn:after {
    width: 5.33vw;
    height: 5.33vw;
  }
  .page .bl_protrude_img ul {
    margin-top: 6.67vw;
  }
  .page .bl_protrude_img ul li a {
    padding: 0.8em 0;
    font-size: 4.26vw;
  }
  .page .bl_protrude_img ul li a:after {
    width: 2.82vw;
    height: 2.21vw;
  }
  .page .bl_protrude_img.img_right .ly_col2 {
    flex-direction: row;
    gap: 0;
    min-height: auto;
  }
  .page .bl_protrude_img.img_right .ly_col2 .bl_sec_title_sky {
    margin-top: min(30px, 8vw);
  }
  .page .bl_protrude_img.img_right .column {
    right: 0;
    width: 94.67vw;
    max-width: 94.67vw;
    margin-right: -5.33vw;
  }
  .page .bl_protrude_img.img_right .column img {
    right: 0;
    width: 94.67vw;
    max-width: 94.67vw;
  }
  .page .bl_protrude_img.img_left .ly_col2 {
    flex-direction: row;
    gap: 0;
    min-height: auto;
  }
  .page .bl_protrude_img.img_left .ly_col2 .bl_sec_title_sky {
    margin-top: min(30px, 8vw);
  }
  .page .bl_protrude_img.img_left .column {
    left: 0;
    width: 94.67vw;
    max-width: 94.67vw;
    margin-left: -5.33vw;
  }
  .page .bl_protrude_img.img_left .column img {
    left: 0;
    width: 94.67vw;
    max-width: 94.67vw;
  }
}
#design_external_scenery .bl_tab_nav .bl_btn:nth-of-type(1) {
  bottom: 85%;
  right: 2%;
}
#design_external_scenery .bl_tab_nav .bl_btn:nth-of-type(2) {
  top: 7.2%;
  left: 35.5%;
}
#design_external_scenery .bl_tab_nav .bl_btn:nth-of-type(3) {
  top: 2%;
  left: 62%;
}
#design_external_scenery .bl_tab_nav .bl_btn:nth-of-type(4) {
  bottom: 58%;
  left: 5%;
}

@media only screen and (max-width: 768px) {
  #design_external_scenery .bl_tab_nav .bl_btn:nth-of-type(1) {
    bottom: 23.2vw;
    right: 5.2vw;
    width: 29.87vw;
  }
  #design_external_scenery .bl_tab_nav .bl_btn:nth-of-type(2) {
    top: -6vw;
    left: 4.53vw;
    width: 39.47vw;
  }
  #design_external_scenery .bl_tab_nav .bl_btn:nth-of-type(3) {
    top: -3.13vw;
    left: 54.67vw;
    width: 29.87vw;
  }
  #design_external_scenery .bl_tab_nav .bl_btn:nth-of-type(4) {
    top: 38.27vw;
    left: 4.53vw;
    width: 42.67vw;
  }
}
#design_internal_scenery .bl_tab_nav .bl_btn:nth-of-type(1) {
  top: 15%;
  /*right: 11.92%;*/
  left: 80.5%;
  transform: translateX(-50%);
}
#design_internal_scenery .bl_tab_nav .bl_btn:nth-of-type(2) {
  bottom: 8%;
  /*right: 24.58%;*/
  left: 67%;
  transform: translateX(-50%);
}
#design_internal_scenery .bl_tab_nav .bl_btn:nth-of-type(3) {
  bottom: 82%;
  /*left: 25.67%;*/
  left: 13.5%;
  transform: translateX(-50%);
}
#design_internal_scenery .bl_tab_nav .bl_btn:nth-of-type(4) {
  bottom: 15.5%;
  /*left: 34.17%;*/
  left: 42%;
  transform: translateX(-50%);
}

@media only screen and (max-width: 768px) {
  #design_internal_scenery .bl_tab_nav .bl_btn:nth-of-type(1) {
    top: 2vw;
    left: 54.47vw;
    transform: unset;
    width: 23.46vw;
  }
  #design_internal_scenery .bl_tab_nav .bl_btn:nth-of-type(2) {
    top: 42.7vw;
    left: 41.33vw;
    transform: unset;
    width: 29.86vw;
  }
  #design_internal_scenery .bl_tab_nav .bl_btn:nth-of-type(3) {
    top: -1.8vw;
    left: 14.5vw;
    transform: unset;
    width: 23.46vw;
  }
  #design_internal_scenery .bl_tab_nav .bl_btn:nth-of-type(4) {
    bottom: 14.2vw;
    left: 4.33vw;
    transform: unset;
    width: 36.26vw;
  }
}
#design_nature .inner {
  height: 40vw;
}
#design_nature .bl_tab_nav .bl_btn:nth-of-type(1) {
  top: 73%;
  right: 3.92%;
  transform: translateY(-50%);
}
#design_nature .bl_tab_nav .bl_btn:nth-of-type(2) {
  top: 14.4%;
  left: 55.3%;
}
#design_nature .bl_tab_nav .bl_btn:nth-of-type(3) {
  top: 25.5%;
  left: 28%;
}
#design_nature .bl_tab_nav .bl_btn:nth-of-type(4) {
  bottom: 25%;
  right: 3.92%;
}

@media only screen and (max-width: 768px) {
  #design_nature .inner {
    height: auto;
  }
  #design_nature .ly_col2 {
    height: auto;
  }
  #design_nature .bl_tab_nav .bl_btn:nth-of-type(1) {
    top: unset;
    transform: unset;
    bottom: 4vw;
    right: 3.2vw;
    width: 39.47vw;
  }
  #design_nature .bl_tab_nav .bl_btn:nth-of-type(2) {
    top: -6.67vw;
    left: 24.8vw;
    width: 36.27vw;
  }
  #design_nature .bl_tab_nav .bl_btn:nth-of-type(3) {
    top: 16.4vw;
    left: 2.67vw;
    width: 29.87vw;
  }
  #design_nature .bl_tab_nav .bl_btn:nth-of-type(4) {
    bottom: 16.8vw;
    right: 3.2vw;
    width: 29.87vw;
  }
}
.page #plan_natural_environment.bl_protrude_img,
.page #plan_living_environment.bl_protrude_img,
.page #plan_contact.bl_protrude_img,
.page #plan_environmental_impact.bl_protrude_img {
  margin-top: 135px;
}
.page #plan_natural_environment.bl_protrude_img + .bl_protrude_img,
.page #plan_living_environment.bl_protrude_img + .bl_protrude_img,
.page #plan_contact.bl_protrude_img + .bl_protrude_img,
.page #plan_environmental_impact.bl_protrude_img + .bl_protrude_img {
  margin-top: 92px;
}
.page #plan_natural_environment.bl_protrude_img .ly_col2,
.page #plan_living_environment.bl_protrude_img .ly_col2,
.page #plan_contact.bl_protrude_img .ly_col2,
.page #plan_environmental_impact.bl_protrude_img .ly_col2 {
  align-items: flex-start;
  height: unset;
  min-height: 27.78vw;
}
.page #plan_natural_environment.bl_protrude_img .bl_sec_title_sky,
.page #plan_living_environment.bl_protrude_img .bl_sec_title_sky,
.page #plan_contact.bl_protrude_img .bl_sec_title_sky,
.page #plan_environmental_impact.bl_protrude_img .bl_sec_title_sky {
  margin-top: 25px;
}

@media only screen and (max-width: 768px) {
  .page #plan_natural_environment.bl_protrude_img,
.page #plan_living_environment.bl_protrude_img,
.page #plan_contact.bl_protrude_img,
.page #plan_environmental_impact.bl_protrude_img {
    margin-top: 0;
  }
  .page #plan_natural_environment.bl_protrude_img + .bl_protrude_img,
.page #plan_living_environment.bl_protrude_img + .bl_protrude_img,
.page #plan_contact.bl_protrude_img + .bl_protrude_img,
.page #plan_environmental_impact.bl_protrude_img + .bl_protrude_img {
    margin-top: 26.67vw;
  }
  .page #plan_natural_environment.bl_protrude_img .ly_col2,
.page #plan_living_environment.bl_protrude_img .ly_col2,
.page #plan_contact.bl_protrude_img .ly_col2,
.page #plan_environmental_impact.bl_protrude_img .ly_col2 {
    min-height: unset;
    display: flex;
  }
  .page #plan_natural_environment.bl_protrude_img .bl_sec_title_sky,
.page #plan_living_environment.bl_protrude_img .bl_sec_title_sky,
.page #plan_contact.bl_protrude_img .bl_sec_title_sky,
.page #plan_environmental_impact.bl_protrude_img .bl_sec_title_sky {
    font-size: 5.33vw;
    margin-top: 8vw;
  }
}
#expert_effects .bl_tab_wrap {
  margin-top: 140px;
}
#expert_effects .bl_tablist button {
  width: 24.83%;
  font-size: 2rem;
}
#expert_effects .bl_tablist button[aria-selected=true] {
  color: #1B7FC3;
  border-color: #1B7FC3;
}
#expert_effects .bl_accordion_list .bl_sky_title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  background: #1B7FC3;
  border-radius: 5px;
  padding: 0.5em 1em;
}
#expert_effects .bl_accordion_list .bl_sky_title + p {
  margin-top: 30px;
}
#expert_effects .bl_accordion_list .dd_inner + .dd_inner {
  margin-top: 100px;
}
#expert_effects .bl_accordion_list p {
  font-size: 1.6rem;
  line-height: 1.81;
}
#expert_effects .bl_accordion_list p.caption {
  margin-top: 0.5em;
  font-size: 1.2rem;
}
#expert_effects .bl_accordion_list p.title {
  font-size: 1.4rem;
  margin-top: 0.5em;
}
#expert_effects .bl_accordion_list .ly_col1, #expert_effects .bl_accordion_list .ly_col2, #expert_effects .bl_accordion_list .ly_col3 {
  margin-top: 80px;
}
#expert_effects .bl_accordion_list h3 + .ly_col2 {
  margin-top: 30px;
}
#expert_effects .bl_accordion_list h3 + .ly_col2 .ly_col {
  width: calc(65% - 20px);
}
#expert_effects .bl_accordion_list h3 + .ly_col2 .ly_col:nth-child(2) {
  width: calc(35% - 20px);
}
#expert_effects .bl_accordion_list p + picture {
  display: block;
  margin-top: 80px;
}
#expert_effects .bl_accordion_list sup {
  font-size: 0.7em;
  vertical-align: top;
  margin: 0 0.15em;
}
#expert_effects .bl_accordion_list .small_wrap {
  margin-top: 80px;
}
#expert_effects .bl_accordion_list .small_wrap:before {
  content: "";
  position: relative;
  display: block;
  width: 400px;
  height: 1px;
  background: #000;
}
#expert_effects .bl_accordion_list .small_wrap sup {
  margin: 0 1em 0 0;
}
#expert_effects .bl_accordion_list .small_wrap small {
  margin-top: 1em;
  display: block;
}

@media only screen and (max-width: 768px) {
  #expert_effects .bl_tab_wrap {
    margin-top: 0;
  }
  #expert_effects .bl_tablist {
    width: 85.33vw;
    margin: auto;
  }
  #expert_effects .bl_tablist button {
    width: 20.8vw;
    height: 16vw;
    font-size: 3.73vw;
    border-bottom: 4px solid #CCC;
    letter-spacing: 0;
    padding: 0;
  }
  #expert_effects .bl_accordion_list .bl_sky_title {
    font-size: 4.26vw;
    padding: 0.5em 1em;
  }
  #expert_effects .bl_accordion_list .bl_sky_title + p {
    margin-top: 5.33vw;
  }
  #expert_effects .bl_accordion_list .dd_inner + .dd_inner {
    margin-top: 13.33vw;
  }
  #expert_effects .bl_accordion_list p {
    font-size: 4.26vw;
    line-height: 1.81;
  }
  #expert_effects .bl_accordion_list p.caption {
    margin-top: 2.67vw;
    font-size: 3.2vw;
  }
  #expert_effects .bl_accordion_list p.title {
    font-size: 3.2vw;
    margin-top: 0.5em;
  }
  #expert_effects .bl_accordion_list .ly_col1, #expert_effects .bl_accordion_list .ly_col2, #expert_effects .bl_accordion_list .ly_col3 {
    margin-top: 8vw;
  }
  #expert_effects .bl_accordion_list h3 + .ly_col2 {
    margin-top: 5.33vw;
  }
  #expert_effects .bl_accordion_list h3 + .ly_col2 .ly_col {
    width: 100%;
  }
  #expert_effects .bl_accordion_list h3 + .ly_col2 .ly_col:nth-child(2) {
    width: 100%;
  }
  #expert_effects .bl_accordion_list .ly_col2, #expert_effects .bl_accordion_list .ly_col3 {
    gap: 8vw;
  }
  #expert_effects .bl_accordion_list p + picture {
    margin-top: 8vw;
  }
  #expert_effects .bl_accordion_list sup {
    font-size: 0.7em;
    vertical-align: top;
    margin: 0 0.15em;
  }
  #expert_effects .bl_accordion_list .small_wrap {
    margin-top: 8vw;
  }
  #expert_effects .bl_accordion_list .small_wrap:before {
    width: 26.67vw;
  }
  #expert_effects .bl_accordion_list .small_wrap small {
    font-size: 3.2vw;
  }
}
/*
docs
*/
.page #docs_pamphlet .ly_col1 {
  margin-top: 50px;
}
.page #docs_pamphlet .ly_col1 .ly_col {
  width: 350px;
  margin: auto;
}
.page #docs_pamphlet .ly_col1 .ly_col span {
  position: relative;
  display: inline-block;
  margin-top: 1em;
  font-size: 1.6rem;
  text-decoration: underline;
}
.page #docs_pamphlet .ly_col1 .ly_col span:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -2.5em;
  width: 25px;
  height: 27.35px;
  display: block;
  background: url(/osirase/1910/koajiro/assets/img/common/icon_pdf.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 768px) {
  .page #docs_pamphlet .ly_col1 {
    margin-top: 8vw;
  }
  .page #docs_pamphlet .ly_col1 .ly_col {
    width: 100%;
  }
  .page #docs_pamphlet .ly_col1 .ly_col .thumb {
    margin: 0 5.33vw;
  }
  .page #docs_pamphlet .ly_col1 .ly_col span {
    font-size: 4.26vw;
    margin-top: 1.5em;
    width: 100%;
    text-align: center;
    padding-right: 1.5em;
  }
  .page #docs_pamphlet .ly_col1 .ly_col span:after {
    right: 0.5em;
    width: 5.33vw;
    height: 5.83vw;
    display: block;
    background: url(/osirase/1910/koajiro/assets/img/common/icon_pdf.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}
/*
vr
*/
.page #vr_video {
  margin-top: 100px;
}

@media only screen and (max-width: 768px) {
  .page #vr_video {
    margin-top: 18.67vw;
  }
}
.page p {
  font-size: 2rem;
}

@media only screen and (max-width: 768px) {
  .page p {
    font-size: 3.73vw;
  }
}
body.home {
  background-color: #061d53;
}
body.home .bl_sec {
  padding-top: 9.72vw;
  padding-bottom: 150px;
}

body.home #hero {
  width: 100%;
  height: calc(100svh - 80px);
  position: fixed;
  overflow: hidden;
  top: 80px;
  left: 0;
  z-index: -1;
}
body.home #hero .inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}
body.home #hero h1 {
  font-size: 90px;
  line-height: 1.2;
}
body.home #hero h1 img {
  position: absolute;
  top: 50%;
  left: 7%;
  transform: translateY(-50%);
  width: 37.56vw;
  max-width: 540.85px;
}

.btn_more {
  display: flex;
  align-items: center;
}
.btn_more img {
  margin-left: 13px;
}

body.home .hero {
  position: relative;
  width: 100%;
  height: 100%;
}

body.home .hero_images {
  position: relative;
  width: 100%;
  height: 100%;
}

body.home .hero_image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1920 / 1080;
}
body.home .hero_image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.js_load {
  /*overflow: hidden; position: relative;*/
}
body.js_load:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 100;
}
body.js_load #wrap:after {
  content: "";
  border: 4px rgba(0, 0, 0, 0.25) solid;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 101;
  border-top: 4px black solid;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  transform-origin: 0 0;
  -webkit-animation: spCircRot 0.6s infinite linear;
  animation: spCircRot 0.6s infinite linear;
}

@-webkit-keyframes spCircRot {
  from {
    -webkit-transform: rotate(0deg) translate(-50%, -50%);
  }
  to {
    -webkit-transform: rotate(359deg) translate(-50%, -50%);
  }
}
@keyframes spCircRot {
  from {
    transform: rotate(0deg) translate(-50%, -50%);
  }
  to {
    transform: rotate(359deg) translate(-50%, -50%);
  }
}
/*
svg_area
*/
.svg_area {
  width: 100%;
  height: 100%;
  perspective: 1000px;
  perspective-origin: center center;
}
.svg_area svg {
  width: 100vw;
  height: calc(76.2vh + 30px);
  position: absolute;
  bottom: 0;
  left: 0;
  transform-style: preserve-3d;
  transform: translateX(-10%);
}
.svg_area svg path {
  transform-style: preserve-3d;
  transform: translate(20px, 20px);
}

@media screen and (max-width: 768px) {
  .svg_area svg {
    height: calc(73svh + 30px);
    transform: translateX(2vw);
  }
}
@keyframes line-animation {
  0% {
    stroke-dashoffset: 1100;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@media screen and (max-width: 1023px) {
  body.home .hero_image p, body.home #hero h1 img {
    top: 50%;
  }

  body.home #hero {
    height: calc(100svh - 60px);
    top: 60px;
  }
}
@media screen and (max-width: 768px) {
  body.home #hero h1 img {
    width: 78.4vw;
    left: 10.79vw;
  }
  body.home .hero_image {
    aspect-ratio: 748 / 1180;
  }
  body.home .hero_image video {
    object-position: top;
  }
}
@media screen and (max-width: 768px) {
  body.home .bl_sec_title {
    font-size: 3.73vw;
  }
  body.home .bl_sec_title span {
    font-size: 6.66vw;
  }
  body.home #home_business .ly_col3 {
    margin-top: 10.66vw;
  }
}
#home_news {
  background-color: #061d53;
  color: #fff;
  padding-top: 75px;
  padding-bottom: 95px;
  margin-top: 100vh;
}
#home_news .home_news_wrap {
  display: flex;
  gap: 4.16%;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}
#home_news .head {
  width: 18.33%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background-color: #115C92;
  padding: 2em 0;
  border-radius: 10px;
}
#home_news .head span {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
}
#home_news .body {
  width: 77.51%;
}
#home_news .body li + li {
  border-top: rgba(229, 229, 229, 0.3) solid 1px;
}
#home_news .body li:first-of-type a {
  margin-top: 0;
}
#home_news .body li:last-of-type {
  margin-bottom: 0;
}
#home_news .body li:last-of-type a {
  margin-bottom: 0;
}
#home_news .body a {
  color: #fff;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin: 25px 0;
}
@media screen and (max-width: 768px) {
  #home_news .home_news_wrap {
    flex-direction: column;
    gap: 9.06vw;
  }
  #home_news .home_news_wrap .head {
    width: 100%;
    padding: 5.33vw 0;
  }
  #home_news .home_news_wrap .body {
    width: 100%;
  }
  #home_news .home_news_wrap .body ul {
    flex-direction: column;
  }
  #home_news .home_news_wrap .body li a {
    flex-direction: column;
    gap: 1vw;
  }
  #home_news .home_news_wrap .body li:first-of-type a {
    margin-top: 10px;
  }
  #home_news .home_news_wrap .body li:last-of-type {
    margin-bottom: 10px;
  }
  #home_news .home_news_wrap .body li:last-of-type a {
    margin-bottom: 10px;
  }

  #home_business, #home_expert, #home_environmental {
    padding-top: 18.66vw;
  }
  #home_business .ly_col3, #home_expert .ly_col3, #home_environmental .ly_col3 {
    margin-top: 0;
  }
}
#home_business {
  background: #061d53 url(/osirase/1910/koajiro/assets/img/home/business_bg.jpg) 50% 0 no-repeat;
  background-size: 100% auto;
}
#home_business .ly_col3 {
  margin-top: 140px;
}

#home_expert {
  background: #061d53 url(/osirase/1910/koajiro/assets/img/home/expert_bg.jpg) 50% 0 no-repeat;
  background-size: 100% auto;
}
#home_expert .ly_col3 {
  margin-top: 140px;
}

#home_environmental {
  background: #061d53 url(/osirase/1910/koajiro/assets/img/home/environmental_bg.jpg) 50% 0 no-repeat;
  background-size: 100% auto;
}
#home_environmental .ly_col3 {
  margin-top: 140px;
}

@media screen and (max-width: 768px) {
  #home_business,
#home_expert,
#home_environmental {
    background-size: auto 58.66vw;
  }
  #home_business .ly_col3,
#home_expert .ly_col3,
#home_environmental .ly_col3 {
    margin-top: 10.66vw;
  }
}
#home_btm {
  background-color: #f2f2f2;
  padding: 80px 0;
}
#home_btm .bl_card {
  min-height: auto;
}
#home_btm .bl_card a {
  padding: 35px 20px 30px;
}
#home_btm .bl_card .thumb {
  border-radius: 0;
  width: 80px;
}
#home_btm .bl_card .thumb img {
  aspect-ratio: auto;
}
#home_btm .bl_card .title {
  font-size: 2rem;
  text-align: center;
  padding: 1em 0;
  width: 100%;
}
#home_btm .bl_card .text {
  font-size: 1.6rem;
  line-height: 1.71;
  margin-bottom: 30px;
}
#home_btm .bl_card .icon {
  margin-bottom: 10px;
}
#home_btm .bl_card .bl_btn {
  margin-top: auto;
}

@media screen and (max-width: 768px) {
  #home_btm {
    padding: 13.33vw 0;
  }
  #home_btm .bl_card a {
    padding: 9.33vw 8vw 8vw;
    position: relative;
  }
  #home_btm .bl_card .thumb {
    width: 18.67vw;
    position: absolute;
    left: 8vw;
    top: 50%;
    transform: translateY(-50%);
  }
  #home_btm .bl_card .title {
    font-size: 5.33vw;
    text-align: left;
    padding: 0 0 1em;
    width: 41.6vw;
    line-height: 1.7;
    margin-left: auto;
  }
  #home_btm .bl_card .bl_btn {
    margin-left: auto;
  }
}
.bl_review_contents .bl_title {
  font-size: 4rem;
  text-align: center;
  font-weight: 700;
  margin-top: 100px;
  line-height: 1;
}
.bl_review_contents .bl_title + .ly_col3, .bl_review_contents .bl_title + .ly_col2, .bl_review_contents .bl_title + .ly_col1 {
  margin-top: 60px;
}
.bl_review_contents .bl_point {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}
.bl_review_contents .bl_point .num {
  font-size: 3rem;
  color: #1B7FC3;
  border: #1B7FC3 1px solid;
  width: 8rem;
  height: 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border-radius: 100%;
  background-color: #fff;
}
.bl_review_contents .bl_point .num span {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 0.4rem;
}
.bl_review_contents ul li {
  position: relative;
  font-size: 1.6rem;
  font-weight: 500;
  margin-left: 1.2em;
  line-height: 1.81;
}
.bl_review_contents ul li:before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 1em;
  height: 1em;
  border-radius: 100%;
  background: #0052A3;
  left: -1.2em;
  top: 0.4em;
}

@media only screen and (max-width: 768px) {
  .bl_review_contents .bl_title {
    font-size: 5.33vw;
    margin-top: 13.33vw;
    line-height: 1.8;
  }
  .bl_review_contents .bl_title + .ly_col3, .bl_review_contents .bl_title + .ly_col2, .bl_review_contents .bl_title + .ly_col1 {
    margin-top: 13.33vw;
  }
  .bl_review_contents .bl_point {
    gap: 5.33vw;
  }
  .bl_review_contents .bl_point .num {
    font-size: 5.33vw;
    width: 14.67vw;
    height: 14.67vw;
  }
  .bl_review_contents .bl_point .num span {
    font-size: 1.87vw;
  }
  .bl_review_contents .bl_point .text {
    font-size: 4.26vw;
  }
  .bl_review_contents .bl_inner {
    margin-top: 8vw;
    flex-wrap: wrap;
  }
  .bl_review_contents ul li {
    font-size: 4.26vw;
  }
}
.bl_tab_content:last-child {
  padding-bottom: 155px;
}

@media only screen and (max-width: 768px) {
  .bl_tab_content:last-child {
    padding-bottom: 26.67vw;
  }
}
#tab_contents01 .bl_btn:nth-of-type(1) {
  bottom: 8%;
  right: 3%;
}
#tab_contents01 .bl_btn:nth-of-type(2) {
  top: 17.4%;
  left: 34%;
}
#tab_contents01 .bl_btn:nth-of-type(3) {
  top: 12%;
  left: 61%;
}
#tab_contents01 .bl_btn:nth-of-type(4) {
  top: 24%;
  left: 4.5%;
}

@media only screen and (max-width: 768px) {
  #tab_contents01 .bl_btn:nth-of-type(1) {
    bottom: 3.2vw;
    right: 3.2vw;
    width: 29.87vw;
  }
  #tab_contents01 .bl_btn:nth-of-type(2) {
    top: 9.6vw;
    left: 4.53vw;
    width: 39.47vw;
  }
  #tab_contents01 .bl_btn:nth-of-type(3) {
    top: 5.87vw;
    left: 54.67vw;
    width: 29.87vw;
  }
  #tab_contents01 .bl_btn:nth-of-type(4) {
    top: 47.47vw;
    left: 4.53vw;
    width: 42.67vw;
  }
}
#tab_contents02 .bl_btn:nth-of-type(1) {
  top: 25%;
  /*right: 11.92%;*/
  left: 80%;
  transform: translateX(-50%);
}
#tab_contents02 .bl_btn:nth-of-type(2) {
  top: 36.75%;
  /*left: 4.17%;*/
  left: 14%;
  transform: translateX(-50%);
}
#tab_contents02 .bl_btn:nth-of-type(3) {
  top: 15.75%;
  /*left: 46.67%;*/
  left: 56%;
  transform: translateX(-50%);
}
#tab_contents02 .bl_btn:nth-of-type(4) {
  bottom: 7.5%;
  /*right: 24.58%;*/
  left: 67%;
  transform: translateX(-50%);
}
#tab_contents02 .bl_btn:nth-of-type(5) {
  top: 7.5%;
  /*left: 25.67%;*/
  left: 33%;
  transform: translateX(-50%);
}
#tab_contents02 .bl_btn:nth-of-type(6) {
  bottom: 15%;
  /*left: 34.17%;*/
  left: 43%;
  transform: translateX(-50%);
}

@media only screen and (max-width: 768px) {
  #tab_contents02 .bl_btn:nth-of-type(1) {
    top: 40vw;
    left: 51.47vw;
    transform: unset;
    width: 36.26vw;
  }
  #tab_contents02 .bl_btn:nth-of-type(2) {
    top: 48vw;
    left: 1.33vw;
    transform: unset;
    width: 33.06vw;
  }
  #tab_contents02 .bl_btn:nth-of-type(3) {
    top: 3.2vw;
    left: 61.33vw;
    transform: unset;
    width: 23.46vw;
  }
  #tab_contents02 .bl_btn:nth-of-type(4) {
    bottom: 3.2vw;
    left: 37.33vw;
    transform: unset;
    width: 29.86vw;
  }
  #tab_contents02 .bl_btn:nth-of-type(5) {
    top: 4vw;
    left: 4vw;
    transform: unset;
    width: 39.46vw;
  }
  #tab_contents02 .bl_btn:nth-of-type(6) {
    bottom: 21.33vw;
    left: 13.33vw;
    transform: unset;
    width: 36.26vw;
  }
}
#tab_contents03 .bl_btn:nth-of-type(1) {
  top: 84%;
  right: 3.92%;
  transform: translateY(-50%);
}
#tab_contents03 .bl_btn:nth-of-type(2) {
  top: 25.4%;
  left: 55.5%;
}
#tab_contents03 .bl_btn:nth-of-type(3) {
  top: 35.5%;
  left: 28%;
}
#tab_contents03 .bl_btn:nth-of-type(4) {
  bottom: 25%;
  right: 3.92%;
}

@media only screen and (max-width: 768px) {
  #tab_contents03 .bl_btn:nth-of-type(1) {
    top: unset;
    transform: unset;
    bottom: 4vw;
    right: 3.2vw;
    width: 39.47vw;
  }
  #tab_contents03 .bl_btn:nth-of-type(2) {
    top: 2.67vw;
    left: 24.8vw;
    width: 36.27vw;
  }
  #tab_contents03 .bl_btn:nth-of-type(3) {
    top: 25.33vw;
    left: 2.67vw;
    width: 29.87vw;
  }
  #tab_contents03 .bl_btn:nth-of-type(4) {
    bottom: 16.8vw;
    right: 3.2vw;
    width: 29.87vw;
  }
}
.bl_comment_wrap {
  max-width: 300px;
  width: 27.83vw;
}

@media only screen and (max-width: 768px) {
  .bl_comment_wrap {
    max-width: 100%;
    width: 100%;
  }
}
.bl_text_wrap {
  max-width: 740px;
  width: 61.67%;
  position: relative;
}
.bl_text_wrap .title {
  font-size: 2.4rem;
  font-weight: 700;
}
.bl_text_wrap figure {
  margin-top: 30px;
}
.bl_text_wrap figure img {
  margin-top: 20px;
}
.bl_text_wrap .ly_col2 {
  gap: 30px;
}
.bl_text_wrap .ly_col2 .ly_col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.bl_text_wrap picture.ly_col img {
  margin: 0;
}
.bl_text_wrap .sample {
  position: absolute;
  right: 0;
  top: 4em;
  width: 28.81%;
}
.bl_text_wrap .sample img {
  width: 100%;
}
.bl_text_wrap .sample + figure figcaption {
  width: 69.19%;
  margin-bottom: 3em;
}

@media only screen and (max-width: 768px) {
  .bl_text_wrap {
    max-width: 100%;
    width: 100%;
    margin-top: 13.33vw;
  }
  .bl_text_wrap .title {
    font-size: 5.33vw;
  }
  .bl_text_wrap figure {
    margin-top: 8vw;
  }
  .bl_text_wrap figure img {
    margin-top: 5.33vw;
  }
  .bl_text_wrap figure.ly_col2 {
    flex-direction: column-reverse;
  }
  .bl_text_wrap figure.ly_col2 figcaption {
    margin-top: 5.33vw;
  }
  .bl_text_wrap figure.ly_col2 + h4, .bl_text_wrap figure.ly_col2 + figure {
    margin-top: 13.33vw;
  }
  .bl_text_wrap figcaption {
    font-size: 4.26vw;
    line-height: 1.81;
  }
  .bl_text_wrap .ly_col2 {
    gap: 0;
  }
  .bl_text_wrap .sample {
    right: unset;
    top: unset;
    width: 48vw;
    display: block;
    bottom: 106.2vw;
    left: 0;
  }
  .bl_text_wrap .sample img {
    width: 100%;
  }
  .bl_text_wrap .sample + figure figcaption {
    width: 100%;
    margin-bottom: 33.33vw;
  }

  #tab_contents02_01 .bl_text_wrap {
    margin-top: 0;
  }
}
.bl_comment {
  padding: 30px;
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.bl_comment.res {
  margin-bottom: 40px;
}
.bl_comment.res:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
  border-top: 15px solid #ffffff;
  border-bottom: 0;
  position: absolute;
  bottom: -15px;
  left: calc(50% - 15px);
}
.bl_comment + .bl_comment {
  margin-top: 20px;
}
.bl_comment .icon {
  width: 80px;
}
.bl_comment .title {
  font-weight: 700;
  font-size: 1.6rem;
}
.bl_comment p {
  font-size: 1.6rem;
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .bl_comment {
    padding: 5.33vw;
    gap: 4vw;
  }
  .bl_comment.res {
    margin-bottom: 6.67vw;
  }
  .bl_comment.res:after {
    border-right: 4vw solid transparent;
    border-left: 4vw solid transparent;
    border-top: 4vw solid #ffffff;
    border-bottom: 0;
    position: absolute;
    bottom: -4vw;
    left: calc(50% - 4vw);
  }
  .bl_comment + .bl_comment {
    margin-top: 2.67vw;
  }
  .bl_comment .icon {
    width: 10.67vw;
  }
  .bl_comment .title {
    font-size: 4.27vw;
  }
  .bl_comment p {
    font-size: 4.27vw;
    line-height: 1.81;
  }
}
.page .contents_wrap:has(.bl_tab_content_wrap) {
  padding-bottom: 0;
}
