@charset "UTF-8";

:root {
  --color-primary: #33333B;
  --color-primary-dark: #00000B;
  --color-primary-pale: #F9F4F4;
  --color-secondary: #0075FF;
  --color-secondary-dark: #0050AD;
  --color-secondary-pale: #E8F1FE;
  --color-base: #00000B;
  --color-base-dark: #797979;
  --color-base-middle: #C5C5C5;
  --color-base-pale: #F7F7F7;
  --color-base-pale: #F7F7F7;
  --color-attention: #DE1524;
  --color-attention-dark: #B2131F;
  --color-asisstant: #0049B7;
  --color-asisstant-dark: #003C95;
  --shadow-thin: 0px 0px 8px 0px rgba(0, 0, 0, 0.16);
  --shadow-deep: 4px 4px 16px 0px rgba(0, 0, 0, 0.16);
  --font-family-main: "Inter", "Noto Sans JP", "Arial", sans-serif;
  --size-max: 60px;
  --size-mid: 48px;
  --size-min: 24px;
}

html {
  width: 100%;
  height: 100%;
  line-height: normal;
  -webkit-text-size-adjust: none;
}

body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: normal;
  font-family: var(--font-family-main);
  color: var(--color-base);
}

* {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

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

p {
  margin: 0;
  padding: 0;
  line-height: 1.7;
  letter-spacing: 0.03em;
}

a {
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  color: inherit;
}

a:hover {
  opacity: 0.7;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

button:hover {
  opacity: 0.7;
  transition: opacity 0.3s ease-in-out;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  padding: 0;
  font-weight: normal;
  font-feature-settings: "palt"1;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

ul,
ol,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

figure {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

b,
strong {
  font-weight: bold;
}

/*----------------------------------------
  style
----------------------------------------*/
/* container */
.section {
  padding-top: 96px;
  padding-bottom: 96px;
}

.container {
  position: relative;
  z-index: 1;
  width: 83.33%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.container__btns {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px 20px;
  margin-top: 40px;
}

/* column */
.column__wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 0 50px;
}

.column__wrap:not(:first-child) {
  margin-top: 96px;
  padding-top: 96px;
  border-top: 1px solid rgba(0, 0, 11, 0.24);
}

.column__side {
  width: 28.83%;
}

.column__side .img-box {
  margin-bottom: 56px;
}

.column__side .dl__min {
  margin-bottom: 24px;
}

.column__content {
  width: 64.5%;
}

.column__detail {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 50px 100px;
  padding: 96px 0;
  border-bottom: 1px solid #85858a;
}

.column__detail:first-child {
  padding-top: 0;
}

.column__detail:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.column__img {
  flex-shrink: 0;
  max-width: 40%;
}

/*side*/
.side__nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 50px 0;
}

.side__nav-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 210px;
  border-bottom: 1px solid rgba(0, 0, 11, 0.24);
  font-size: 14px;
  line-height: 1;
}

.side__nav-item a {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 17px 0;
}

/*detail*/
.page__detail {
  max-width: 774px;
}

.page__detail-inner {
  margin: 56px 0;
}

.page__detail-inner p {
  margin: 15px 0;
}

/* flex */
[class*=flex__] {
  display: flex;
}

.flex__betwween {
  justify-content: space-between;
}

.flex__center {
  justify-content: center;
}

.flex__start {
  align-items: flex-start;
}

.flex__reverse {
  flex-direction: row-reverse;
}

.flex__wrap {
  flex-wrap: wrap;
}

/* align */
.text__center {
  text-align: center !important;
}

.text__right {
  text-align: right !important;
}

/*color*/
.text__primary {
  color: var(--color-primary) !important;
}

.text__secondary {
  color: var(--color-secondary) !important;
}

.text__asisstant {
  color: var(--color-asisstant) !important;
}

.text__highlight {
  position: relative;
  display: inline;
  text-decoration: underline;
  text-decoration-thickness: 0.8em;
  text-decoration-color: var(--color-asisstant);
  text-underline-offset: -0.8em;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.text__asterisk {
  position: relative;
  display: block;
  padding-left: 1em;
  margin: 5px 0;
  text-indent: -1em;
  font-size: 14px;
}

.text__asterisk::before {
  content: "※";
}

/*size*/
.text__summary {
  font-size: 14px;
  letter-spacing: 0.02em;
}

.text__summary p {
  margin: 24px 0;
}

.text__summary p:first-child {
  margin-top: 0;
}

.text__summary p:last-child {
  margin-bottom: 0;
}

.text__caption {
  line-height: 1.2;
  font-size: 14px;
  text-align: justify;
}

.text__caption--min {
  margin: 15px 0;
  font-size: 10px;
  text-align: justify;
}

/*acc*/
.acc__line {
  position: relative;
}

.acc__line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  z-index: 2;
  width: 83.33%;
  max-width: 1200px;
  height: 1px;
  background-color: rgba(0, 0, 11, 0.24);
}

.acc__round-bottom {
  border-bottom-right-radius: 300px;
}

/*visible*/
.visible__md,
.visible__xs {
  display: none;
}

/*slider*/
.swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.gallery__slider .swiper-slide {
  width: -moz-fit-content !important;
  width: fit-content !important;
}

.gallery__slider .img {
  border-radius: 4px;
  overflow: hidden;
}

/*img*/
.img-box {
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 4px;
  overflow: hidden;
}

/*----------------------------------------
  common
----------------------------------------*/
/* title */
.title__sec {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 50px;
}

.title__sec .sub {
  font-size: 32px;
  font-weight: bold;
}

.title__sec .main {
  font-size: 14px;
  opacity: 0.48;
}

.title__sec.min {
  margin-bottom: 16px;
  gap: 4px;
}

.title__sec.min .sub {
  font-size: 24px;
}

.title__max {
  line-height: 1.4;
  font-size: 48px;
  letter-spacing: -0.01em;
  font-weight: bold;
}

.title__mid {
  line-height: 1.4;
  font-size: 32px;
  letter-spacing: -0.01em;
  font-weight: bold;
}

.title__min {
  line-height: 1.4;
  font-size: 24px;
  font-weight: bold;
}

.title__read {
  font-weight: bold;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.02em;
}

.title__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/*card*/
.card {
  display: flex;
  flex-direction: column;
  gap: 25px 40px;
}

.card--2col {
  grid-column: 2/4;
}

.card--2col .list--round {
  display: flex;
  flex-wrap: wrap;
  gap: 0 16px;
}

.card--thumb {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 56.25%;
  border-radius: 4px;
  overflow: hidden;
}

.card--thumb img {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.card--imgs {
  display: flex;
  flex-shrink: 0;
  gap: 8px;
  border-radius: 4px;
  overflow: hidden;
}

.card--content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  line-height: 1.2;
  font-size: 14px;
}

.card--content p {
  line-height: 1.4;
}

.card--headline {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card--headline .day {
  font-size: 14px;
}

.card--headline .title {
  font-size: 20px;
}

.card--headline .description {
  line-height: 1.7;
  font-size: 12px;
}

.card--headline .summary {
  font-size: 16px;
}

.card--tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 20px;
}

.card--tags .tag {
  color: #7a7a80;
}

.card__list--ls {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.card__list--ls .card {
  display: flex;
  flex-direction: row;
}

.card__list--ls .card--thumb {
  min-width: 240px;
  padding-top: 144px;
}

/* btn */
.button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  gap: 5px;
  padding: 16px 40px 15px 40px;
  border-radius: 50rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: var(--color-base);
  line-height: 1;
  color: #fff;
  font-weight: bold;
  transition: all 0.2s ease-in-out;
}

.is-active.button {
  background-color: #d6d6d8;
}

.button:hover {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 11, 0.24);
  color: var(--color-base);
  opacity: 1;
}

.button.min {
  padding: 7px 24px 8px 24px;
  font-size: 12px;
}

.button--submit {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  background-color: transparent;
  border: none;
  padding: 0;
  color: #fff;
  transition: all 0.2s ease-in-out;
  font-weight: bold;
  /* gap: 5px;
  padding: 7px 24px 8px 24px;
  border-radius: 50rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: var(--color-base);
  line-height: 1;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  transition: all 0.2s ease-in-out; */
}

.button--submit-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  gap: 5px;
  padding: 7px 24px 8px 24px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50rem;
  background: var(--color-base);
  line-height: 1;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  transition: all 0.2s ease-in-out;

}

.button--submit-wrap::after {
  content: "\f061";
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.button--submit-wrap:hover {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 11, 0.24);
  color: var(--color-base);
  opacity: 1;
  cursor: pointer;
}

.button--submit-wrap:hover .button--submit {
  color: var(--color-base);
  cursor: pointer;
}



/* list */
.list--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: flex-start;
  gap: 30px;
}

.list--3col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: flex-start;
  gap: 30px;
}

.list--4col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-content: flex-start;
  gap: 30px;
}

.list--5col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  justify-content: flex-start;
  gap: 30px;
}

.list--check {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.list--check-item {
  position: relative;
  margin: 10px 0;
  padding-left: 34px;
  line-height: 1.5;
  font-size: 20px;
  font-weight: bold;
}

.list--check-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 24px;
  height: 24px;
  background: url(../img/icon_check.svg) no-repeat center/contain;
}

.list--number {
  counter-reset: number 0;
}

.list--number>li {
  position: relative;
  padding-left: 32px;
}

.list--number>li::before {
  counter-increment: number 1;
  content: counter(number) ".";
  position: absolute;
  left: 0;
  top: 0;
}

.list--disc>li {
  position: relative;
  padding-left: 32px;
}

.list--disc>li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.list--round>li {
  position: relative;
  margin-top: 5px;
  margin-bottom: 5px;
  padding-left: 20px;
}

.list--round>li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
}

.dl__max .dl-box {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #c2c2c5;
  padding: 16px 0;
}

.dl__max .dl-box:last-of-type {
  border-bottom: none;
}

.dl__max .term {
  min-width: 140px;
  color: #85858a;
  font-size: 12px;
}

.dl__max:not(:first-child) {
  margin-top: 46px;
}

.dl__min {
  display: grid;
  gap: 5px;
}

.dl__min .dl-box {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #7a7a80;
  padding: 16px 0;
}

.dl__min .dl-box:last-of-type {
  border-bottom: none;
}

.dl__min .term {
  font-size: 10px;
  color: #85858a;
}

.dl__min .desc {
  font-size: 14px;
}

/*アコーディオン*/
.accordion__trigger {
  position: relative;
  padding-bottom: 20px;
  margin: 20px 0;
  border-bottom: 1px solid #c5c5c5;
}

.accordion__trigger:hover {
  cursor: pointer;
}

.accordion__trigger .icon__open {
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  width: 28px;
  height: 28px;
  background-color: var(--color-base-dark);
  border-radius: 50%;
  transition: 0.2s ease-in-out;
}

.accordion__trigger .icon__open::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 16px;
  height: 1px;
  background-color: #fff;
  transition: 0.2s ease-in-out;
}

.accordion__trigger .icon__open::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 16px;
  height: 1px;
  background-color: #fff;
  transition: 0.2s ease-in-out;
  rotate: 90deg;
}

.is__open.accordion__trigger .icon__open {
  background-color: var(--color-base-middle);
}

.is__open.accordion__trigger .icon__open::after {
  rotate: 0deg;
}

.accordion__content {
  height: 0;
  overflow: hidden;
  transition: 0.4s cubic-bezier(0.65, 0.05, 0.36, 1);
}

.accordion__content p:not(:first-child) {
  margin-top: 15px;
}

/*modal*/
.link__modal {
  display: block;
  transition: transform 0.3s ease-in-out;
}

.link__modal:hover {
  cursor: pointer;
  transform: scale(1.1);
  transition: transform 0.3s ease-in-out;
  opacity: 1;
}

/* モーダルと背景の指定 */
.modal__wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.modal__wrap.is__active {
  opacity: 1;
  visibility: visible;
}

.modal__inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 95%;
  max-height: 95%;
}

.modal__btn--close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 32px;
  right: 32px;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
}

/*タブ*/
.tabs {
  display: flex;
  align-items: center;
  width: 100%;
  overflow-x: auto;
  gap: 20px;
  border-bottom: 4px double var(--color-base-dark);
  margin-bottom: 80px;
}

.tab {
  padding: 20px 0;
  font-size: 16px;
  white-space: nowrap;
  cursor: pointer;
}

.tab span {
  border-bottom: 2px solid transparent;
}

.tab.is-active {
  color: var(--color-secondary);
}

.tab.is-active span {
  border-color: var(--color-secondary);
}

.tab--content {
  display: none;
}

.tab--content.is-active {
  display: block;
}

/*scroll*/
.scroll {
  max-width: 100vw;
  overflow-x: auto;
}

/*bg*/
.bg__base {
  /* background-color: var(--color-base); */
  background-color: #213A70;
  color: #fff;
}

.bg__base .side__nav-item {
  border-color: rgba(255, 255, 255, 0.24);
}

.bg__base.acc__line::after {
  background-color: rgba(255, 255, 255, 0.24);
}

.bg__pale {
  background-color: var(--color-primary-pale);
}

.bg__mount {
  position: relative;
  background-color: var(--color-primary-pale);
}

.bg__mount::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 34.0277777778%;
  background: #fff url(../img/bg_mt_pk.jpg) no-repeat top 135px center/100% calc(100% - 135px);
}

.bg__mount-pale {
  position: relative;
  background-color: var(--color-primary-pale);
}

.bg__mount-pale::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-top: 34.0277777778%;
  background: url(../img/bg_mt_wh.png) no-repeat top 135px center/100% calc(100% - 135px);
}

/*pager*/
.pager {
  padding: 40px 0 90px;
}

.pager__number {
  display: flex;
  justify-content: center;
  margin: 24px 0;
  text-align: center;
  font-size: 16px;
}

.pager__nav {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.pager__nav .prev {
  display: flex;
}

.pager__nav .next {
  display: flex;
}

.pager-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  background-color: var(--color-base);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
}

.pager-button.prev-more {
  min-width: 56px;
  padding: 16px;
  border-radius: 8px 0 0 8px;
}

.pager-button.prev {
  border-radius: 0 8px 8px 0;
}

.pager-button.next-more {
  min-width: 56px;
  padding: 16px;
  border-radius: 0 8px 8px 0;
}

.pager-button.next {
  border-radius: 8px 0 0 8px;
}

/*----------------------------------------
  header 
----------------------------------------*/
.header {
  position: relative;
  z-index: 1000;
  width: 100%;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 48px);
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}

.header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 114px;
}

.header__logo a {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/logo_bl.svg) no-repeat center/contain;
}

.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 80px;
}

.header__menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header__menu-item {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 12px;
}

.header__menu-item a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.header__menu-item a i {
  transition: all 0.2s ease-in-out;
}

.header__menu-item a.is-open i {
  rotate: 180deg;
}

.header__menu--drop {
  position: absolute;
  top: 20px;
  min-width: -moz-max-content;
  min-width: max-content;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
}

.header__menu--drop.is-open {
  display: block;
  visibility: visible;
  opacity: 1;
}

.header__menu--drop-item {
  border-bottom: 1px solid rgba(0, 0, 11, 0.24);
  font-size: 12px;
}

.header__menu--drop-item a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 0;
  line-height: 1;
}

.header__button .button {
  padding: 7px 24px 8px 24px;
  font-size: 12px;
}

.hamburger__wrap {
  display: none;
}

.header__hamburger {
  display: none;
}

/*frontpage*/
.page-front .header {
  background-color: #213A70;
}

.page-front .header__logo a {
  background-image: url(../img/logo_wh.svg);
}

.page-front .header__menu-item {
  color: #fff;
}

.page-front .header__menu--drop-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
}

/*----------------------------------------
  footer 
----------------------------------------*/
.footer {
  position: relative;
  padding: 96px 0;
  background-color: #213A70;
  color: #FFFFFF;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 56px;
}

.footer__side {
  display: flex;
  flex-direction: column;
}

.footer__head {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.footer__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer__logo {
  width: 96px;
  height: 116.37px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.footer__info address {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 2.28%;
  color: rgba(255, 255, 255, 0.48);
}

.footer__main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.footer__nav-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 210px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 14px;
  line-height: 1;
  letter-spacing: 2.28%;
}

.footer__nav-item a {
  display: block;
  padding: 16px 0;
  color: #fff;
}

.footer__nav-item img {
  width: 12px;
  height: 12px;
}

.footer__address {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.footer__copyright small {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 3.92%;
  color: rgba(255, 255, 255, 0.48);
}

.footer__sns-icon {
  display: flex;
  gap: 8px;
}

.footer__sns-icon .sns-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background-color: #00000B;
  color: #fff;
  font-size: 26px;
}

.footer__sns-icon .sns-icon img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.page-front .footer::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  translate: -50% 0;
  z-index: 2;
  width: 83.33%;
  max-width: 1200px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.24);
}

/* **************************************************************
 breadcrumb
*************************************************************** */
.breadcrumb {
  position: relative;
  padding: 16px 0;
  background-color: #213A70;
  color: #fff;
  font-size: 14px;
}

.breadcrumb::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  translate: -50% 0;
  z-index: 2;
  width: 83.33%;
  max-width: 1200px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.24);
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 12px;
}

.breadcrumb__list li:not(:last-child)::after {
  content: "\f105";
  margin-left: 12px;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
}

/* **************************************************************
 instagram
*************************************************************** */
.instagram {
  position: relative;
  z-index: 1;
}

.instagram::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 490px;
  background: url(../img/bg_mt_bl.jpg) no-repeat top center/100% 100%;
}

/* **************************************************************
 heading
*************************************************************** */
.heading .title__sec {
  margin-bottom: 0;
}

.heading .title__sec .sub {
  line-height: 1;
  font-size: 48px;
}

.heading__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 250px;
  gap: 40px 80px;
}

.heading__nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.heading__nav .button {
  min-width: 180px;
  font-size: 16px;
}

/*--------------------------------------------------------------------------------
  media 
--------------------------------------------------------------------------------*/
@media (max-width: 1024px) {
  .hidden__md {
    display: none;
  }

  .visible__md {
    display: block;
  }

  .column__detail {
    align-items: center;
    flex-direction: column;
  }

  .column__detail .column__img {
    max-width: 100%;
  }

  .column__detail .column__content {
    width: 100%;
  }

  .card--2col {
    grid-column: 1/3;
  }

  .bg__mount::before,
  .bg__mount-pale::before {
    height: 245px;
  }

  .acc__round-bottom {
    border-bottom-right-radius: 150px;
  }

  /* **************************************************************
   header
  *************************************************************** */
  .header {
    position: fixed;
    background-color: transparent;
    transition: background-color 0.2s 0.1s ease-in-out;
  }

  .is-open-menu .header {
    background-color: #213A70;
  }

  .is-open-menu .header__logo a {
    background-image: url(../img/logo_wh.svg);
  }

  .header__inner {
    align-items: flex-start;
    padding: 24px 0;
    isolation: isolate;
  }

  .header__logo {
    width: 70px;
    height: 80px;
    mix-blend-mode: difference;
  }

  .header__nav {
    gap: 8px;
  }

  .header__menu {
    display: none;
  }

  .header__hamburger {
    display: flex;
    padding: 7px 24px 8px 24px;
    justify-content: center;
    align-items: center;
    width: 62px;
    gap: 10px;
    border-radius: 50rem;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: var(--color-base);
    color: #fff;
    font-size: 12px;
  }

  .header__hamburger::before {
    content: "\f0c9";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
  }

  .is-open.header__hamburger::before {
    content: "\f00d";
  }

  /* ------------------------------------
   hamburger
  ------------------------------------ */
  .hamburger__wrap {
    display: block;
  }

  .hamburger__inner {
    position: fixed;
    top: 125px;
    translate: 100%;
    z-index: 999;
    width: 100%;
    height: 100%;
    padding: 24px;
    background-color: #213A70;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease-in-out;
  }

  .is-open .hamburger__inner {
    translate: 0;
    opacity: 1;
    visibility: visible;
  }

  .hamburger__menu-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  }

  .hamburger__menu-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    font-size: 14px;
    font-weight: bold;
  }

  .hamburger__menu--in-item a {
    padding-top: 5px;
    font-weight: normal;
  }

  /* **************************************************************
   heading
  *************************************************************** */
  .heading {
    padding-top: 125px;
  }
}

@media (max-width: 767px) {

  /* **************************************************************
   style
  *************************************************************** */
  .section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .container {
    width: calc(100% - 48px);
  }

  .container__btns {
    margin-top: 30px;
  }

  /*column*/
  .column__wrap {
    flex-direction: column;
  }

  .column__wrap:not(:first-child) {
    margin-top: 56px;
    padding-top: 56px;
  }

  .column__side,
  .column__content {
    width: 100%;
  }

  .column__detail {
    padding: 56px 0;
    gap: 34px;
  }

  /*side*/
  .side__nav-item {
    width: 100%;
  }

  /*card*/
  .card {
    gap: 15px;
  }

  .card__list--ls .card {
    flex-direction: column;
  }

  .card__list--ls .card--thumb {
    padding-top: 56.25%;
  }

  .card--2col {
    grid-column: 1/2;
  }

  /* **************************************************************
   common
  *************************************************************** */
  .title__max {
    font-size: 32px;
  }

  /*btn*/
  .button {
    font-size: 16px;
  }

  .visible__xs {
    display: block;
  }

  .hidden__xs {
    display: none;
  }

  /*list*/
  .list--2col {
    grid-template-columns: 1fr;
  }

  .list--3col,
  .list--4col,
  .list--5col {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  /*acc*/
  .acc__line::after {
    width: calc(100% - 48px);
  }

  .acc__round-bottom {
    border-bottom-right-radius: 96px;
  }

  /*pager*/
  .pager__nav {
    gap: 8px;
  }

  .pager-button {
    padding: 16px;
  }

  .pager-button.prev-more,
  .pager-button.next-more {
    min-width: 48px;
  }

  .pager-button.prev i,
  .pager-button.next i {
    display: none;
  }

  /* **************************************************************
   footer
  *************************************************************** */
  .footer {
    padding: 56px 0;
  }

  .footer__inner {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }

  .footer__info {
    align-items: center;
    text-align: center;
  }

  .footer__main {
    width: 100%;
  }

  .footer__nav-list {
    width: 100%;
  }

  .footer__address {
    flex-direction: column-reverse;
    align-items: center;
    gap: 24px;
  }

  /* **************************************************************
   instagram
  *************************************************************** */
  .instagram::before {
    height: 132px;
  }

  /* **************************************************************
   heading
  *************************************************************** */
  .heading__inner {
    flex-direction: column;
    align-items: flex-start;
    min-height: inherit;
    gap: 56px;
    padding: 50px 0;
  }

  .heading__nav {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .heading__nav .button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .dl__max .dl-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

/*# sourceMappingURL=common.css.map */