/*
style.css
Author: inu design
Version: 1.0
*/

/*------------------------------------------

	サイト全体設定

------------------------------------------*/

/* --- webfont --- */
/* regular */
@font-face {
  font-family: 'lineseed';
  src: url('../fonts/LINESeedJP_OTF_Rg.woff2') format('woff2'),
    url('../fonts/LINESeedJP_OTF_Rg.woff') format('woff');
  font-weight: 400;
  font-display: swap;
}
/* bold */
@font-face {
  font-family: 'lineseed';
  src: url('../fonts/LINESeedJP_OTF_Bd.woff2') format('woff2'),
    url('../fonts/LINESeedJP_OTF_Bd.woff') format('woff');
  font-weight: 700;
  font-display: swap;
}
/* extrabold */
@font-face {
  font-family: 'lineseed';
  src: url('../fonts/LINESeedJP_OTF_Eb.woff2') format('woff2'),
    url('../fonts/LINESeedJP_OTF_Eb.woff') format('woff');
  font-weight: 800;
  font-display: swap;
}
/* Krona */
.krona {
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  font-style: normal;
}


body {
  color: var(--main-text-color);
  font-family: lineseed, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.6em;
  font-weight: 400;
  line-height: 2;
  background: var(--main-bg-color);
}


/* --- link --- */
a {
  color: var(--main-text-color);
  text-decoration: none;
}
a.link {
  color: var(--link-color);
  text-decoration: underline;
}
/* 
a.link.underline {
  display: inline-block;
  padding-bottom: .01em;
  border-bottom: 1px solid #00aab3;
} */

/* PC hover */
@media (hover: hover) {
  a.link:hover {
    color: var(--link-hover-color);
  }
  /*   
  a.link.underline:hover {
    border-bottom: 1px solid #007c83;
  }
   */
}
/* mobile hover */
@media (hover: none) {
  a.link:active {
    color: var(--link-hover-color);
  }
  /*   
  a.link.underline:active {
    border-bottom: 1px solid #007c83;
  }
   */
}

/* --- text --- */
h1, h2, h3, h4 {
  line-height: 1.4;
}
p {
  font-feature-settings: "pkna";
  /* 禁則処理強 */
  line-break: strict;
}
.t-palt {
  /* 括弧句読点詰め */
  font-feature-settings: "palt";
}
.t-white {
  color: #fff;
}
.t-blue {
  color: var(--main-color);
}

/* Tb */
@media print, screen and (max-width: 820px) {
  body {
    font-size: 1.5em;
    line-height: 1.8;
  }
}
/* Tb END */
/* Sm */
@media print, screen and (max-width: 480px) {
  body {
    font-size: 1.4em;
    line-height: 1.6;
  }
  p {
    letter-spacing: .03em;
  }
}

/* --- background --- */
.bg-lblue {
  background: var(--sub-bg-color);
}

/*------------------------------------------

	レイアウト

------------------------------------------*/
#container {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-right: constant(safe-area-inset-right);
  padding-left: constant(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  padding-left: env(safe-area-inset-left);
  background: #dae6f2;
}
#main {
  width: 100%;
  background: #fff;
}
.inr-box {
  width: 100%;
  max-width: 1340px;
  padding-right: 90px;
  padding-left: 90px;
  margin-right: auto;
  margin-left: auto;
}

/* 左付きBOX */
.content-box-l {
  width: 100%;
  padding-right: 7.5%;
}
.content-box-l-wrap {
  width: 100%;
  background: var(--sub-bg-color);
  padding: 35px 35px 35px 90px;
  border-radius: 0 24px 24px 0;
}
.content-box-l-inr {
  width: 100%;
  /* max-width: 1125px; */
  margin-left: auto;
}

/* 右付きBOX */
.content-box-r {
  width: 100%;
  padding-left: 7.5%;
}
.content-box-r-wrap {
  width: 100%;
  background: var(--sub-bg-color);
  padding: 35px 90px 35px 35px;
  border-radius: 24px 0 0 24px;
}
.content-box-r-inr {
  width: 100%;
  /* max-width: 1125px; */
  margin-right: auto;
}

/* Tb */
@media print, screen and (max-width: 1080px) {

  .inr-box {
    padding-left: 3%;
    padding-right: 3%;
  }

}
/* Tb END */

/* Sm */
@media print, screen and (max-width: 480px) {

  .content-box-l-wrap,
  .content-box-r-wrap {
    padding: 20px 6%;
  }

}
/* Sm END */


/*------------------------------------------

	ヘッダー固定

------------------------------------------*/
#site-header {
  width: 100%;
  top: -30%;
  left: 0;
  transition: 0.6s;
}

.hed-fix #site-header {
  /* background-color: rgba(255, 255, 255, 0.95); */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}

/*------------------------------------------

	header

------------------------------------------*/
header {
  width: 100%;
  padding: 30px;
  position: relative;
  z-index: 2;
}
header .h-logo {
  width: 240px;
  padding-top: 20px;
}

/* Tb */
@media print, screen and (max-width: 820px) {
  header {
    padding: 20px 2%;
  }
  header .h-logo {
    width: 200px;
  }
}
/* Tb END */

/*----- gnav -----*/
.gnav > li {
  position: relative;
}
.gnav > li > a {
  display: block;
  font-weight: 700;
  line-height: 1;
  padding: 10px;
  margin-left: 20px;
  margin-right: 20px;
  position: relative;
}

.overlay {
  display: none;
}

/* PC */
@media print, screen and (min-width: 821px) {
  /*----- gnav -----*/
  .gnav-box {
    background: #fff;
    padding: 30px 40px;
    border-radius: 42px;
  }
  .gnav > li > a:hover {
    color: var(--main-color);
  }
  .gnav > li.current > a::after {
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    background: #004385;
    border-radius: 100%;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }

  /* サブメニュー */
  .gnav > li > .sub-menu {
    width: 220px;
    height: 0;
    padding-top: 20px;
    opacity: 0;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: 3;
  }
  .gnav > li:hover > .sub-menu {
    height: auto;
    opacity: 1;
    top: 30px;
  }
  .gnav > li > .sub-menu ul {
    position: relative;
  }
  .gnav > li > .sub-menu ul::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    border-style: solid;
    border-width: 0 7px 12px 7px;
    border-color: transparent transparent var(--sub-bg-color);
    translate: -50% -100%;
  }
  .gnav > li > .sub-menu li {
    display: block;
    position: relative;
    border-bottom: 1px solid #ededed;
    background: var(--sub-bg-color);
    line-height: 1.3;
  }
  .gnav > li > .sub-menu li:first-child {
    border-radius: 20px 20px 0 0;
    overflow: hidden;
  }
  .gnav > li > .sub-menu li:last-child {
    border-radius: 0 0 20px 20px;
    overflow: hidden;
  }
  .gnav > li > .sub-menu li a {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0;
    padding: 1em 1em;
  }
  .gnav > li > .sub-menu {
    transition: .8s;
    overflow: hidden;
  }
  /* PC hover */
  @media (hover: hover) {
    .gnav > li > .sub-menu li a:hover {
      color: #fff;
      background: var(--main-color);
    }
  }
  /* mobile hover */
  @media (hover: none) {
    .gnav > li > .sub-menu li a:active {
      color: #fff;
      background: #0955bd;
    }
  }
}

/* PC */
@media print, screen and (max-width: 1080px) and (min-width: 821px) {
  .gnav li > a {
    display: block;
    font-size: 1.4rem;
    padding: 2px;
    margin-left: 15px;
    margin-right: 15px;
  }
}

/* Tb */
@media print, screen and (max-width: 820px) {
  /*メニューボタン*/
  #menu-btn {
    width: 60px;
    height: 50px;
    background-color: var(--main-color);
    border-radius: 7px 0 0 7px;
    position: fixed;
    top: 30px;
    right: 0;
    z-index: 999;
    cursor: pointer;
    transition: 0.3s;
  }
  #menu-btn:hover {
    opacity: 0.6;
  }
  #menu-btn span {
    width: 20px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 15px;
    pointer-events: none;
    transition: 0.3s;
  }
  #menu-btn span::before,
  #menu-btn span::after {
    content: "";
    width: 20px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    left: 0;
    transition: 0.3s;
  }
  #menu-btn span::before {
    top: -8px;
  }
  #menu-btn span::after {
    bottom: -8px;
  }
  .open #menu-btn {
    background-color: transparent;
  }
  .open #menu-btn span {
    background-color: transparent;
    left: 27px;
  }
  .open #menu-btn span::before {
    background-color: var(--main-color);
    transform: rotate(45deg);
    top: calc(50% - 2px);
    left: calc(50% - 20px);
  }
  .open #menu-btn span::after {
    background-color: var(--main-color);
    transform: rotate(-45deg);
    bottom: 50%;
    left: calc(50% - 20px);
  }
  /* オーバーレイ */
  .overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -1;
    transition: 0.3s;
  }
  .open .overlay {
    display: block;
    opacity: 1;
    left: 0;
    z-index: 98;
  }
  /* modal open中スクロール禁止 */
  html:has(body.open),
  body:has(.open) {
    overflow: hidden;
  }

  /*----- gnav -----*/
  header nav.gnav-box {
    height: 100vh;
    background: #fff;
    position: fixed;
    top: 0;
    right: -200%;
    z-index: 99;
    transition: 0.3s;
  }
  .open header nav.gnav-box {
    right: 0;
  }

  header .gnav {
    width: 300px;
    height: 100vh;
    padding: 110px 0;
    overflow-y: auto;
  }
  header .gnav > li {
    display: block;
    font-size: 1.4rem;
    color: #fff;
    letter-spacing: .1em;
    border-bottom: 1px dotted #0955bd;
  }
  header .gnav > li:first-child {
    border-top: 1px dotted #0955bd;
  }
  header .gnav > li > a {
    width: 100%;
    padding: 2em;
    margin-left: 0;
    margin-right: 0;
    position: relative;
  }
  header .gnav > li > a::before {
    content: "";
    width: 5px;
    height: 8px;
    background: url(images/common/arrow02.svg) 0 0 no-repeat;
    background-size: 100% auto;
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  header .gnav > li.ac > a::before {
    content: none;
  }
  header .gnav > li > a:active {
    background: #0955bd;
  }

  /* サブメニュー */
  .gnav > li > .sub-menu li {
    border-bottom: 1px dotted #666;
  }
  .gnav > li > .sub-menu li:first-child {
    border-top: 1px dotted #666;
  }
  .gnav > li > .sub-menu li:last-child {
    border-bottom: none;
  }
  .gnav > li > .sub-menu li a {
    display: block;
    font-size: 1.2rem;
    font-weight: 500;
    padding: .7em 30px;
  }
  .accordion-toggle {
    position: absolute;
    top: 0;
    right: 0;
    background: transparent;
    border: none;
    width: 100%;
    height: 100%;
    cursor: pointer;
  }
  .gnav > li.ac > a .accordion-toggle::before {
    content: "";
    display: block;
    width: 9px;
    height: 9px;
    background: url(../images/common/open.svg) 0 0 no-repeat;
    background-size: 100% auto;
    position: absolute;
    top: 50%;
    right: 29px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  .gnav > li.ac > a.active .accordion-toggle::before {
    background: url(../images/common/close.svg) 0 0 no-repeat;
    background-size: 100% auto;
  }
  .gnav > li > .sub-menu {
    display: none;
  }
}
/* Tb END */

/* Sm */
@media print, screen and (max-width: 480px) {
  header .h-logo {
    width: 160px;
  }
  header .gnav {
    width: 250px;
  }
  header .gnav > li {
    font-size: 1.3rem;
  }
  header .gnav > li > a {
    padding: 2em;
  }
}
/* Sm END */


/*------------------------------------------

	footer

------------------------------------------*/
footer {
  width: 100%;
  margin-top: 120px;
  background: url(../images/common/bg_footer.png);
  position: relative;
}
.page-top {
  width: 100px;
  height: 50px;
  overflow: hidden;
  position: absolute;
  top: -50px;
  right: 3%;
}
.page-top a {
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  padding-top: 15px;
  background: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
}
.footer-inr {
  padding-top: 40px;
  padding-bottom: 100px;
}
.f-logo {
  width: 40%;
  max-width: 140px;
}
.f-info {
  color: #ced7e0;
}
.copyright {
  color: #6d87a1;
}

/* Fnav */
nav.fnav > ul > li > a {
  font-weight: 700;
  color: #fff;
  letter-spacing: .05em;
}
nav.fnav ul.sub-menu li {
  line-height: 1.3;
  margin-bottom: 10px;
}
nav.fnav ul.sub-menu li a {
  font-weight: 400;
  color: #ced7e0;
}

@media print, screen and (min-width: 821px) {
  footer .footer-inr .logo-area {
    width: min(31%, 360px);
  }
  footer .footer-inr .fnav-area {
    width: min(65.5%, 760px);
  }

  /* Fnav */
  nav.fnav {
    padding-top: 20px;
  }
  nav.fnav > ul {
    width: calc(100% / 4);
    padding-right: 1em;
  }
  nav.fnav > ul > li > a {
    margin-bottom: .5em;
  }
  nav.fnav ul.sub-menu {
    margin-top: .5em;
  }
  nav.fnav ul.sub-menu li a {
    font-size: 1.4rem;
  }
}

/* Tb */
@media print, screen and (max-width: 820px) {
  footer .footer-inr {
    padding: 0;
  }
  footer .footer-inr .logo-area {
    text-align: center;
    padding: 50px 2%;
  }

  /* Fnav */
  nav.fnav ul {
    width: 100%;
    text-align: center;
  }
  nav.fnav ul li a {
    display: block;
    padding: 1em;
  }
  nav.fnav > ul > li > a {
    border-bottom: 1px solid #6d87a1;
    position: relative;
  }

  /* サブメニュー */
  nav.fnav > ul > li > ul.sub-menu li {
    border-bottom: 1px dotted #666;
    margin-bottom: 0;
  }
  nav.fnav > ul > li > ul.sub-menu li:first-child {
    border-top: 1px dotted #666;
  }
  nav.fnav > ul > li > ul.sub-menu li:last-child {
    border-bottom: none;
  }
  nav.fnav > ul > li > ul.sub-menu li a {
    display: block;
    font-size: 1.2rem;
    font-weight: 500;
    padding: .7em 30px;
    border-bottom: 1px dotted #6d87a1;
  }
  nav.fnav > ul > li.ac > a .accordion-toggle::before {
    content: "";
    display: block;
    width: 9px;
    height: 9px;
    background: url(../images/common/open_w.svg) 0 0 no-repeat;
    background-size: 100% auto;
    position: absolute;
    top: 50%;
    right: 29px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  nav.fnav > ul > li.ac > a.active .accordion-toggle::before {
    background: url(../images/common/close_w.svg) 0 0 no-repeat;
    background-size: 100% auto;
  }
  nav.fnav > ul > li > ul.sub-menu {
    display: none;
  }

  .f-logo {
    margin-left: auto;
    margin-right: auto;
  }
  .f-info {
    display: inline-block;
  }
}
/* Tb END */

/* Sm */
@media print, screen and (max-width: 480px) {

  nav.fnav ul.sub-list li a {
    font-size: 1.3rem;
  }

}
/* Sm END */


/*------------------------------------------

	table

------------------------------------------*/
.table-basic {
  width: 100%;
}
.table-basic tr {
  display: block;
  width: 100%;
  border-bottom: 1px solid var(--border-color);
}
.table-basic th {
  width: 14em;
  color: var(--main-color);
  letter-spacing: .05em;
  text-align: left;
  padding: 1.4em 3em;
}
.table-basic td {
  width: calc(100% - 14em);
  padding: 1.4em 3em;
}

/* Tb */
@media print, screen and (max-width: 820px) {
  .table-basic th {
    display: block;
    width: 100%;
    padding: 1em 1em 0;
  }
  .table-basic td {
    display: block;
    width: 100%;
    padding: 1em 1em;
  }
}

/* Sm */
@media print, screen and (max-width: 480px) {
  .table-basic th, .table-basic td {
    display: block;
    width: 100%;
  }
  .table-basic th {
    padding: 1.4em 1em 0.3em;
  }
  .table-basic td {
    padding: 0.2em 1em 1.5em;
  }
}


/*------------------------------------------

	見出し

------------------------------------------*/
.hd01 {
  font-size: 2rem;
  color: var(--main-color);
  line-height: 1.3;
  letter-spacing: .05em;
}
.hd01 span {
  display: block;
  font-size: 3.8rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hd02 {
  font-size: 1.8rem;
  color: var(--main-color);
  line-height: 1.3;
  letter-spacing: .05em;
}
.hd02 span {
  display: block;
  font-size: 3.8rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Tb */
@media print, screen and (max-width: 820px) {
  .hd01 {
    font-size: 1.8rem;
  }
  .hd01 span {
    font-size: 2.6rem;
  }

  .hd02 {
    font-size: 1.4rem;
  }
  .hd02 span {
    font-size: 2.4rem;
  }
}
/* Tb END */
/* Sm */
@media print, screen and (max-width: 480px) {
  .hd01 {
    font-size: 1.6rem;
  }
  .hd01 span {
    font-size: 2.2rem;
  }
}
/* Sm END */


/*------------------------------------------

	ボタン

------------------------------------------*/
button.btn01 {
  display: block;
  width: 90%;
  max-width: 280px;
  color: #fff;
  font-weight: 700;
  letter-spacing: .05em;
  background: var(--main-color);
  border: 0;
  border-radius: 33px;
  padding: 0;
  cursor: pointer;
  position: relative;
  transition: .3s;
  overflow: hidden;
}
button.btn01::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: url(../images/common/btn_arrow.svg) 0 0 no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transition: .3s;
  z-index: 1;
}
button.btn01 a {
  display: block;
  color: inherit;
  text-align: left;
  line-height: 1.4;
  padding: 25px 65px 25px 40px;
  position: relative;
  z-index: 1;
}
button.btn01 a::before {
  content: "";
  width: 150%;
  height: 350%;
  position: absolute;
  top: -50%;
  right: 0;
  z-index: -1;
  background: var(--link-hover-color);
  border-radius: 100%;
  transform: translateX(100%);
  transition: transform ease .3s;
}
/* button.btn01:hover::after {
  right: 35px;
}
button.btn01 a:hover::before {
  transform: translateX(20%);
} */

/* PC hover */
@media (hover: hover) {
  button.btn01:hover::after {
    right: 35px;
  }
  button.btn01 a:hover::before {
    transform: translateX(20%);
  }
}
/* mobile hover */
@media (hover: none) {
  button.btn01:active::after {
    right: 35px;
  }
  button.btn01 a:active::before {
    transform: translateX(20%);
  }
}


/*------------------------------------------

	リスト

------------------------------------------*/
/* ●付きリスト */
.list-circle li {
  text-indent: -1em;
  padding-left: 1em;
}
.list-circle li::before {
  content: "●";
  font-size: 10px;
  color: var(--main-color);
  margin-right: 5px;
  vertical-align: .2em;
}


/*------------------------------------------

	下層ページMV

------------------------------------------*/
.under-mv {
  width: 100%;
  height: 160px;
  padding: 55px 7.5%;
  background: url(../images/common/under_mv_bg.png) top right no-repeat;
  background-size: auto 100%;
}
.under-ttl {
  font-size: 2.4rem;
  color: var(--main-color);
  line-height: 1.3;
  letter-spacing: .05em;
}
.under-ttl span {
  display: block;
  font-size: 4.2rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Tb */
@media print, screen and (max-width: 820px) {

  .under-mv {
    height: 100px;
    padding: 25px 7.5% 0;
  }
  .under-ttl {
    font-size: 1.8rem;
  }
  .under-ttl span {
    font-size: 3.2rem;
  }

}
/* Tb END */

/* Sm */
@media print, screen and (max-width: 480px) {

  .under-mv {
    height: inherit;
    padding: 25px 6% 0;
  }
  .under-ttl {
    font-size: 1.6rem;
  }
  .under-ttl span {
    font-size: 2.6rem;
  }

}
/* Sm END */

/*------------------------------------------

	ぱんくずリスト

------------------------------------------*/
ul.breadcrumb {
  padding: 5px 7.5%;
  text-align: right;
  margin-bottom: 15px;
}
ul.breadcrumb li {
  display: inline-block;
  font-size: 1.2rem;
  color: #666;
  margin-right: 2em;
  position: relative;
}
ul.breadcrumb li a {
  display: block;
  color: #666;
  border-bottom: 1px dotted #666;
}
ul.breadcrumb li::after {
  content: url(../images/common/bread_arrow.svg);
  display: block;
  position: absolute;
  top: 50%;
  right: -1.5em;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
ul.breadcrumb li:last-of-type {
  margin-right: 0;
}
ul.breadcrumb li:last-of-type::after {
  content: "";
}

/* Sm */
@media print, screen and (max-width: 480px) {

  ul.breadcrumb {
    padding: 3px 6%;
  }

}
/* Sm END */



/*------------------------------------------

	404ページ

------------------------------------------*/
img.notfound {
  width: min(50%, 260px);
}


/*------------------------------------------

	その他共通

------------------------------------------*/
a.outer-link {
  display: inline-block;
  color: #00aab3;
  text-decoration: underline;
  position: relative;
}
a.outer-link::after {
  content: url(../images/common/outer_link.svg);
  display: inline-block;
  width: auto;
  height: 1em;
  margin-left: .2em;
  vertical-align: top;
}

.kadomaru {
  border-radius: 20px;
  overflow: hidden;
}