@charset "UTF-8";
:root {
  --color-primary: #0069BF;
  --color-primary-dark: #1B4F83;
  --color-primary-pale: #DAEBFB;
  --color-secondary: #0088E3;
  --color-secondary-dark: #007DD0;
  --color-secondary-pale: #D8EEFC;
  --color-base: #11111B;
  --color-base-middle: #72727B;
  --font-family-main: "M PLUS 1p", serif;
  --font-family-sub: "Quicksand", "Arial", sans-serif;
  --font-icon: "Font Awesome 5 Free";
  --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: 500;
  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-feature-settings: "palt" 1;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

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
----------------------------------------*/
.main__wrap {
  overflow-x: clip;
}
.main__wrap.other {
  padding-top: 85px;
  padding-bottom: 85px;
}

/* container */
.section {
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
}

.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;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 40px;
}

.container__btns.center {
  justify-content: center;
}

.container__btns.wrap {
  flex-direction: column;
}
.container__btns.wrap .button {
  min-width: auto;
}

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

.column__side {
  width: 33.53%;
  flex-shrink: 0;
}

.column__content {
  width: 100%;
}

.column__inner {
  margin: 80px 0;
}

.column__inner:first-of-type {
  margin-top: 0;
}

.column__inner:last-of-type {
  margin-bottom: 0;
}

.column__img {
  margin: 40px 0;
}

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

.side__nav-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.side__nav-item a,
.side__nav-item button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  gap: 15px;
  padding: 13px 22px 13px 24px;
  border-radius: 5px;
  background-color: var(--color-primary-pale);
  color: var(--color-primary);
  border: none;
  line-height: 1.2;
  font-size: 16px;
  font-weight: bold;
}
.side__nav-item a.active,
.side__nav-item button.active {
  background-color: var(--color-primary);
  color: #fff;
}
.side__nav-item a::after,
.side__nav-item button::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #F85453;
}

/*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__middle {
  color: var(--color-base-middle) !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: "※";
}

.text__underline {
  text-decoration: underline;
}

/*size*/
.text__content {
  margin: 40px 0;
}
.text__content p {
  margin: 15px 0;
}

.text__summary {
  line-height: 2;
  letter-spacing: 0.02em;
}

.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;
  overflow: hidden;
}

/*----------------------------------------
  common
----------------------------------------*/
/* title */
.title__sec {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 40px;
}
.title__sec .sub {
  line-height: 1;
  color: var(--color-primary);
  font-size: 20px;
}
.title__sec .mid {
  line-height: 1.3;
  font-size: 24px;
}
.title__sec .main {
  line-height: 1.3;
  font-size: 32px;
}

.title__sec.min .main {
  font-size: 48px;
}
.title__sec.min .sub {
  font-size: 20px;
}

.title__max {
  margin-bottom: 40px;
  line-height: 1.3;
  font-size: 48px;
  letter-spacing: -0.01em;
}
.title__max .sub {
  display: block;
  font-size: 32px;
}

.title__mid {
  margin-bottom: 15px;
  line-height: 1.4;
  font-size: 32px;
  letter-spacing: -0.01em;
}

.title__min {
  margin-bottom: 15px;
  line-height: 1.4;
  font-size: 24px;
}

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

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

.title__box {
  padding: 5px 10px;
  background-color: var(--color-primary);
  color: #fff;
}

.title__border {
  display: block;
  margin: 20px 0;
  padding-bottom: 5px;
  border-bottom: 1px solid #C5C5CB;
}

/*card*/
.card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card .container__btns {
  margin-top: 15px;
}

a.card:hover {
  opacity: 1;
  background-color: var(--color-primary-pale);
}
a.card:hover .card--headline .title {
  color: var(--color-primary);
}

.card--thumb {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  overflow: hidden;
}
.card--thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.card--content .title__min {
  display: block;
  margin-bottom: 15px;
}
.card--content p {
  line-height: 1.5;
}

.card--headline {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 14px;
}
.card--headline .day {
  color: #72727B;
  font-size: 14px;
  font-weight: bold;
}
.card--headline .title {
  font-size: 20px;
  transition: all 0.3s ease-in-out;
}
.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 .card {
  flex-direction: row;
}

.card--flow {
  font-size: 14px;
}

/* btn */
.button {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  gap: 15px;
  min-width: 190px;
  padding: 24px;
  outline: none;
  background-color: var(--color-primary);
  line-height: 1.2;
  color: #fff;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}

.button::after {
  content: "\f061";
  margin-left: auto;
  font-weight: 700;
  font-family: var(--font-icon);
}

.button:hover {
  background-color: var(--color-primary-dark);
  opacity: 1;
}

.button.secondary {
  background-color: var(--color-secondary);
}

.button.secondary:hover {
  background-color: var(--color-primary-dark);
}

.button.tertiary {
  background-color: #003E92;
}

.button.white {
  background-color: #fff;
  color: var(--color-base);
}

.button.white:hover {
  background-color: var(--color-secondary-pale);
}

.button.full {
  width: 100%;
}

.button.min {
  padding: 7px 20px;
  font-size: 14px;
}

.button.back::before {
  content: "\f060";
  font-weight: 700;
  font-family: var(--font-icon);
}
.button.back::after {
  display: none;
}

.button.prev::before {
  content: "\f060";
  font-weight: 700;
  font-family: var(--font-icon);
}
.button.prev::after {
  display: none;
}
.button.prev .text {
  margin-left: auto;
}

.button.download::after {
  content: "\f0ab";
  font-weight: 700;
  font-family: var(--font-icon);
}

/* list */
.list--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  gap: 80px 40px;
}

.list--3col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: center;
  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;
  margin: 5px 0;
  padding-left: 32px;
  line-height: 1.5;
}
.list--number > li::before {
  counter-increment: number 1;
  content: counter(number) ".";
  position: absolute;
  left: 0;
  top: 0;
}

.list--disc > li {
  position: relative;
  margin: 5px 0;
  padding-left: 26px;
  line-height: 1.5;
}
.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-top: 1px solid #c2c2c5;
  padding: 40px 0;
}
.dl__max .term {
  min-width: 120px;
  font-weight: bold;
  font-size: 16px;
}
.dl__max:not(:first-child) {
  margin-top: 46px;
}

.dl__min .dl-box {
  display: flex;
  align-items: center;
  border-top: 1px solid #c2c2c5;
  padding: 24px 0;
}
.dl__min .dl-box:first-of-type {
  padding-top: 0;
  border-top: none;
}
.dl__min .term {
  min-width: 120px;
  font-size: 16px;
}

/*タブ*/
.tab-content {
  display: none;
}

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

/*アコーディオン*/
.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__primary {
  background-color: var(--color-primary);
  color: #fff;
}
.bg__primary .title__sec .sub {
  color: #fff;
}

.bg__base {
  background-color: #fff;
}

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

.acc__round {
  border-radius: 64px 64px 0 0;
}

.p-jon__item {
  transform: scale(1);
}

/*pager*/
.pager {
  margin-top: 80px;
}

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

.pager__nav {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.pager__nav .prev {
  display: flex;
  gap: 8px;
}
.pager__nav .next {
  display: flex;
  gap: 8px;
}
.pager__nav .number {
  display: flex;
  gap: 8px;
}
.pager__nav .number .dot {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.pager-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  gap: 8px;
  padding: 16px;
  background-color: var(--color-primary-pale);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
  color: var(--color-primary);
  font-size: 16px;
  font-weight: bold;
  white-space: nowrap;
}
.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;
}
.pager-button:hover, .pager-button.active {
  opacity: 1;
  background-color: var(--color-primary);
  color: #fff;
}

/*----------------------------------------
  header 
----------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background-color: #fff;
  transition: background-color 0.3s 0.15s ease-in-out;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
}

.header__logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  transition: all 0.3s ease-in-out;
}
.header__logo a {
  display: flex;
  align-items: center;
  padding: 8px 12px;
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  gap: 40px;
  transition: padding 0.3s ease-in-out;
}

.header__button .button {
  height: 64px;
  border-radius: 0;
  font-size: 12px;
}
.header__button .button::after {
  content: "\f0e0";
  font-size: 14px;
}

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

.header__menu--item {
  position: relative;
}
.header__menu--item a {
  display: block;
  padding: 10px 0;
  font-size: 12px;
}
.header__menu--item a i {
  transition: all 0.2s ease-in-out;
}
.header__menu--item a.is-open i {
  rotate: 180deg;
}
.header__menu--item a:hover {
  color: var(--color-primary);
}

.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;
}

.hamburger__wrap {
  display: none;
}

.header__hamburger {
  display: none;
}

/*----------------------------------------
  footer 
----------------------------------------*/
.footer {
  position: relative;
  padding-top: 60px;
  border-top: 1px solid #C5C5CB;
}

.footer__main {
  margin-bottom: 25px;
}
.footer__main .catch {
  line-height: 1.4;
  font-size: 20px;
  text-align: center;
}

.footer__address {
  margin: 25px 0;
  text-align: center;
}
.footer__address .footer__logo {
  font-size: 32px;
}
.footer__address address {
  font-style: normal;
}

.footer__contact {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px 25px;
  margin: 25px 0 50px;
}
.footer__contact .number {
  line-height: 1;
  font-size: 64px;
  letter-spacing: -0.666px;
  font-family: var(--font-family-sub);
  font-weight: bold;
}
.footer__contact .time {
  display: block;
  width: 100%;
  text-align: center;
}
.footer__contact .button {
  width: 295px;
}

.footer__sns-icon {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 25px 0;
}
.footer__sns-icon .sns-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  background-color: var(--color-base);
  border-radius: 50%;
  color: #fff;
  font-size: 26px;
}
.footer__sns-icon .sns-icon img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.footer__copyright {
  margin-top: 60px;
  padding: 25px;
  background-color: var(--color-primary-pale);
  text-align: center;
}
.footer__copyright small {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2;
}

.footer__sitemap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  gap: 40px;
}

.footer__sitemap > div {
  flex: 0 0 auto;
}

.footer__sitemap--01 {
  width: 112px;
}

.footer__sitemap--02 {
  width: 214px;
}

.footer__sitemap--03 {
  width: 224px;
}

.footer__sitemap a {
  color: var(--color-primary);
  text-decoration: underline;
  text-decoration-color: var(--color-primary);
  text-underline-offset: 0.12em;
}

/* **************************************************************
 breadcrumb
*************************************************************** */
.breadcrumb {
  position: relative;
  padding: 16px 0;
  background-color: var(--color-base);
  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;
}

/* **************************************************************
   animation
  *************************************************************** */
.a-head__bg {
  transform-origin: center center;
  opacity: 0;
  transform: scale(0.92) translateY(50px);
}

.a-page {
  opacity: 0;
  transform: translateY(150px);
  transition: opacity 0.5s ease-in-out, transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* **************************************************************
consortium
*************************************************************** */
.consortium {
  position: relative;
  background-color: var(--color-base);
  padding-top: 0;
  color: #fff;
}
.consortium .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 80px;
}
.consortium .container .title__sec {
  width: 45%;
}
.consortium .container .title__sec .sub {
  color: #fff;
}
.consortium .container .text__summary {
  width: 52%;
}
.consortium .container .list--4col {
  margin-top: 120px;
}
.consortium .container .list--4col li {
  position: relative;
  height: 326px;
}
.consortium .container .list--4col li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* **************************************************************
 recruit
*************************************************************** */
.recruit {
  position: relative;
  display: flex;
  gap: 0 100px;
  padding: 0;
}
.recruit .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 0;
}

.recruit__bg {
  flex-shrink: 0;
  max-width: 28%;
}
.recruit__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*--------------------------------------------------------------------------------
  media 
--------------------------------------------------------------------------------*/
@media (max-width: 1439px) {
  /* **************************************************************
   style
  *************************************************************** */
  .container {
    width: 90%;
  }
  .column__wrap {
    gap: 0 50px;
  }
  /* **************************************************************
   header
  *************************************************************** */
  .header__nav {
    gap: 20px;
  }
  .header__menu {
    gap: 15px;
  }
  /* **************************************************************
   consortium
  *************************************************************** */
  .consortium .container .title__sec {
    width: 100%;
  }
  .consortium .container .list--4col {
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 80px;
  }
  .consortium .container .list--4col li:last-of-type {
    display: none;
  }
  /* **************************************************************
   recruit
  *************************************************************** */
  .recruit {
    gap: 0 60px;
  }
}
@media (max-width: 1024px) {
  /*br*/
  .hidden__md {
    display: none;
  }
  .visible__md {
    display: block;
  }
  /*column*/
  .column__wrap {
    flex-direction: column;
    gap: 50px;
  }
  .column__side {
    width: 100%;
  }
  .side__nav {
    margin: 0;
  }
  .side__nav-list {
    flex-direction: row;
  }
  .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__nav {
    gap: 0;
  }
  .header__menu {
    display: none;
  }
  .header__hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background-color: var(--color-primary);
    color: #fff;
  }
  .header__hamburger::before {
    content: "\f0c9";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    font-size: 22px;
  }
  .is-open.header__hamburger::before {
    content: "\f00d";
  }
  /* ------------------------------------
   hamburger
  ------------------------------------ */
  .hamburger__wrap {
    display: block;
  }
  .hamburger__inner {
    position: fixed;
    top: 0;
    translate: 100%;
    z-index: 999;
    width: 100%;
    height: 100%;
    padding: 120px 24px 24px;
    opacity: 0;
    background-color: #fff;
    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(0, 0, 0, 0.24);
  }
  .hamburger__menu-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    font-size: 22px;
    font-weight: bold;
  }
}
@media (max-width: 767px) {
  /* **************************************************************
   style
  *************************************************************** */
  .main__wrap {
    padding-top: 65px;
  }
  .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%;
  }
  /*side*/
  .side__nav-list {
    flex-direction: column;
  }
  .side__nav-item {
    width: 100%;
  }
  .side__nav-item a,
  .side__nav-item button {
    width: 100%;
  }
  /*card*/
  .card {
    gap: 15px;
  }
  .card__list--ls .card {
    flex-direction: column;
  }
  .card--2col {
    grid-column: 1/2;
  }
  .button {
    min-width: 150px;
  }
  /* **************************************************************
   common
  *************************************************************** */
  .title__sec {
    margin-bottom: 30px;
  }
  .title__sec.min .sub {
    font-size: 32px;
  }
  .title__max {
    font-size: 32px;
  }
  /*btn*/
  .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;
  }
  .dl__max .dl-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  .dl__min .dl-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    padding: 12px 0;
  }
  /*acc*/
  .acc__round {
    border-radius: 48px 48px 0 0;
  }
  /*pager*/
  .pager__nav {
    gap: 4px;
  }
  .pager__nav .prev,
  .pager__nav .next {
    gap: 4px;
  }
  .pager__nav .number {
    display: none;
  }
  .pager-button {
    font-size: 14px;
  }
  .pager-button.prev-more, .pager-button.next-more {
    min-width: 48px;
  }
  .pager-button.prev i, .pager-button.next i {
    display: none;
  }
  /* **************************************************************
   header
  *************************************************************** */
  .header__nav {
    padding: 0;
    gap: 0;
  }
  .header__logo a {
    width: 240px;
  }
  .header__menu--item a {
    font-size: 18px;
  }
  .header__button .button {
    justify-content: center;
    min-width: inherit;
    width: 64px;
    background-color: var(--color-secondary-pale);
    color: var(--color-base);
  }
  .header__button .button .text {
    display: none;
  }
  .header__button .button::after {
    content: "\f0e0";
    font-size: 24px;
  }
  /* **************************************************************
   footer
  ************************************************** ************* */
  .footer__inner {
    align-items: center;
    gap: 120px;
  }
  .footer__main {
    align-items: center;
    width: 100%;
  }
  .footer__sitemap {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
  }
  .footer__sitemap--01,
  .footer__sitemap--02,
  .footer__sitemap--03 {
    width: 100%;
    max-width: 320px;
  }
  .footer__main .catch {
    font-size: 16px;
  }
  .footer__contact .number {
    font-size: 48px;
  }
  .footer__sns-icon .sns-icon {
    width: 48px;
    height: 48px;
  }
  .footer__address {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  /* **************************************************************
   instagram
  *************************************************************** */
  .instagram::before {
    height: 132px;
  }
  /* **************************************************************
   member
  *************************************************************** */
  .consortium .container {
    flex-direction: column;
  }
  .consortium .container .text__summary {
    width: 100%;
  }
  .consortium .container .list--4col {
    grid-template-columns: 1fr;
    margin: 50px auto 0;
  }
  .consortium .container .list--4col li {
    height: auto;
  }
  .consortium .container .list--4col li:last-of-type {
    display: block;
  }
  /* **************************************************************
   recruit
  *************************************************************** */
  .recruit .container {
    padding: 55px 0;
  }
  .recruit__bg {
    display: none;
  }
}/*# sourceMappingURL=common.css.map */
