@charset "UTF-8";

:root {
  --main-font: "Noto Sans", sans-serif;
  --sub-font: "Zen Kaku Gothic New", sans-serif;
  --navy: #0a3380;
  --blue01: #4a6291;
  --blue02: #9eaccb;
  --blue03: #9faccb;
  --blue04: #e2e6ef;
  --blue05: #b2b5bf;
  --blue06: #a0b4cc;
  --green01: #1d987c;
  --green02: #e2efef;
  --sky-blue01: #30c4f0;
  --sky-blue02: #71deff;
  --gray: #f0f0f0;
  --dark-gray: #cccccc;
  --black: #333333;
  --light-black: #666666;
  --white: #ffffff;
  --light-blue: #f0f5f9;
}

/* 全体のスタイル */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
}
body {
  font-family: var(--main-font);
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  color: var(--black);
}
/*
a {
  color: var(--black);
  text-decoration: none;
} 
*/ 

p {
  color: var(--black);
}
.br-pc {
  display: block;
}
.br-sp {
  display: none;
}

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

/* サイドメニュー (1280px以上) */
.sidemenu {
  position: fixed;
  width: 190px;
  height: 94.79166666666vh;
  background-color: var(--white);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--black);
  border-right: 1px solid var(--sky-blue02);
  border-bottom: 1px solid var(--sky-blue02);
  border-radius: 0 0 30px 0;
  z-index: 99;
}

.sidemenu__gnav {
  padding-top: 29px;
}

.sidemenu__list {
  margin: 0;
  padding: 0;
}

.sidemenu__list li.sidemenu__active {
  border-left: 6px solid var(--sky-blue01);
  padding-left: 18px;
  box-sizing: border-box;
}

.sidemenu__list li {
  padding-left: 24px;
  margin-bottom: 35px;
  box-sizing: border-box;
}

.sidemenu__list li a {
  text-decoration: none;
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
}

/* ロゴ */
.sidemenu__logo {
  position: absolute;
  bottom: 30px;
  left: 22px;
  width: 145px;
  height: 66px;
  text-align: center;
}

.sidemenu__logo img {
  width: 150px;
  height: auto;
}

/* ハンバーガーメニュー (1279px以下) */
.menu-trigger {
  display: none; /* 初期状態では非表示 */
  position: fixed;
  top: 30px;
  left: 24px;
  width: 32px;
  height: 25px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 101;
}

.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--black);
  border-radius: 1px; /* 角を少し丸めると視覚的な統一感が出る */
  transform: scaleY(1.0); /* 太さの微調整 */
  transition: transform 0.3s ease-in-out;
}

.menu-trigger span:nth-child(1) {
  top: 0;
  height: 2px;
  border-radius: 1px; /* 角を少し丸めると視覚的な統一感が出る */
  transform: scaleY(1.0); /* 太さの微調整 */
}

.menu-trigger span:nth-child(2) {
  top: 11px;
  height: 2px;
  border-radius: 1px; /* 角を少し丸めると視覚的な統一感が出る */
  transform: scaleY(1.0); /* 太さの微調整 */
}

.menu-trigger span:nth-child(3) {
  top: 22px;
  height: 2px;
  border-radius: 1px; /* 角を少し丸めると視覚的な統一感が出る */
  transform: scaleY(1.0); /* 太さの微調整 */
}

.menu-trigger.active span:nth-child(1) {
  transform: translateY(11px) rotate(-45deg);
}

.menu-trigger.active span:nth-child(2) {
  opacity: 0;
}

.menu-trigger.active span:nth-child(3) {
  transform: translateY(-11px) rotate(45deg);
}

.menu-overlay {
  display: none; /* 初期状態では非表示 */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
}

.menu-overlay.active {
  display: block;
}

/* タブレット・スマホ (1279px以下) */
@media screen and (max-width: 1279px) {
  .sidemenu {
    position: fixed;
    top: 0;
    left: -250px; /* 初期状態では画面外に配置 */
    width: 250px;
    transition: transform 0.3s ease-in-out; /* アニメーション追加 */
    z-index: 9999999;
  }

  .sidemenu__gnav {
    padding-top: 90px;
  }

  .sidemenu.active {
    transform: translateX(250px); /* メニュー表示時の位置 */
  }

  .menu-trigger {
    display: block; /* ハンバーガーメニュー表示 */
    height: 2px;
    border-radius: 1px; /* 角を少し丸めると視覚的な統一感が出る */
    transform: scaleY(1.0); /* 太さの微調整 */
    z-index: 999999999;
  }
  /* メニューオーバーレイ (1279px以下) */
  .menu-overlay {
    display: none; /* 初期状態では非表示 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999999;
  }

  .menu-overlay.active {
    display: block;
  }
}

/* スマホ（767px以下） */
@media screen and (max-width: 767px) {
  .menu-trigger {
    top: 20px;
    left: 24px;
    width: 26px;
    height: 20px;
  }
  .menu-trigger span {
    height: 2px;
    border-radius: 1px; /* 角を少し丸めると視覚的な統一感が出る */
    transform: scaleY(1.0); /* 太さの微調整 */
  }
  .menu-trigger span:nth-child(2) {
    top: 8px;
    height: 2px;
    border-radius: 1px; /* 角を少し丸めると視覚的な統一感が出る */
    transform: scaleY(1.0); /* 太さの微調整 */
  }
  .menu-trigger span:nth-child(3) {
    top: 16px;
    height: 2px;
    border-radius: 1px; /* 角を少し丸めると視覚的な統一感が出る */
    transform: scaleY(1.0); /* 太さの微調整 */
  }
  .menu-trigger.active span:nth-child(1) {
    transform: translateY(8px) rotate(-45deg);
  }
  .menu-trigger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(45deg);
  }
  .sidemenu {
    font-size: 1.4rem;
  }
  .sidemenu__list li a {
    font-size: 1.4rem;
  }
}

/* メインコンテンツ */
/* .main-content {
}

section {
} */

/* メインビジュアル */
.mainvisual {
  position: relative;
  margin-left: 250px;
  padding-top: 58px;
  font-family: var(--sub-font);
}

.mainvisual__catchcopy {
  margin-bottom: 32px;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.44;
}

.mainvisual__container {
  position: relative;
  height: 690px;
}

.mainvisual__content {
  height: 690px;
  position: absolute;
  top: 125px;
  left: 54px;
  z-index: 99;
}

.mainvisual__title {
  margin-bottom: 121px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4444;
  letter-spacing: 0.07em;
  text-shadow: 4px 4px 2px #ffffff, -4px 4px 2px #ffffff, 4px -4px 2px #ffffff, -4px -4px 2px #ffffff, 4px 0px 2px #ffffff, 0px 4px 2px #ffffff, -4px 0px 2px #ffffff, 0px -4px 2px #ffffff;
}

.mainvisual__date {
  margin-bottom: 37px;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.35384615384;
  letter-spacing: 0.07em;
  text-shadow: 3px 3px 3px #ffffff, -3px 3px 3px #ffffff, 3px -3px 3px #ffffff, -3px -3px 3px #ffffff, 3px 0px 3px #ffffff, 0px 3px 3px #ffffff, -3px 0px 3px #ffffff, 0px -3px 3px #ffffff;
}
span.year {
  font-family: var(--main-font);
  font-size: 6.5rem;
  color: var(--navy);
  text-shadow: 4px 4px 2px #ffffff, -4px 4px 2px #ffffff, 4px -4px 2px #ffffff, -4px -4px 2px #ffffff, 4px 0px 2px #ffffff, 0px 4px 2px #ffffff, -4px 0px 2px #ffffff, 0px -4px 2px #ffffff;
}
span.season {
  color: #f80893;
  text-shadow: 3px 3px 3px #ffffff, -3px 3px 3px #ffffff, 3px -3px 3px #ffffff, -3px -3px 3px #ffffff, 3px 0px 3px #ffffff, 0px 3px 3px #ffffff, -3px 0px 3px #ffffff, 0px -3px 3px #ffffff;
}
span.moth {
  font-family: var(--main-font);
  font-size: 6.5rem;
}
.mainvisual__description {
  font-size: 4rem;
  line-height: 1.45;
  text-shadow: 3px 3px 3px #ffffff, -3px 3px 3px #ffffff, 3px -3px 3px #ffffff, -3px -3px 3px #ffffff, 3px 0px 3px #ffffff, 0px 3px 3px #ffffff, -3px 0px 3px #ffffff, 0px -3px 3px #ffffff;
}

.mainvisual__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mainvisual__image img {
  width: 100%;
  height: 690px;
  object-fit: cover;
  border-radius: 20px 0 0 20px;
}

/* タブレット（768px以上 1279px以下） */
@media screen and (max-width: 1279px) {
  /* ここにタブレット向けのスタイルを書く */
  .mainvisual {
    margin-left: 0;
    padding-top: 80px;
    border-radius: 20px 20px 20px 20px;
  }
  .mainvisual__catchcopy {
    margin-bottom: 32px;
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.44;
    text-align: center;
  }
  .mainvisual__content {
    width: auto;
    height: 690px;
    position: absolute;
    top: 125px;
    left: 5%;
    z-index: 99;
    overflow: hidden;
  }
  /* .mainvisual__title {
  }

  .mainvisual__date {
  }
  .mainvisual__description {
  } */
  .mainvisual__image {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }
  .mainvisual__image img {
    position: absolute;
    top: 0;
    right: 0;
    width: 90%;
    height: 690px;
    object-fit: cover;
    border-radius: 20px 0 0 20px;
  }
}

/* スマホ（767px以下） */
@media screen and (max-width: 767px) {
  /* ここにスマホ向けのスタイルを書く */
  .mainvisual__catchcopy {
    margin-bottom: 32px;
    font-size: 2.2rem;
    text-align: center;
  }
  .mainvisual__container {
    height: 460px;
  }
  .mainvisual__content {
    width: auto;
    height: auto;
    position: absolute;
    top: 130px;
    left: 5%;
    z-index: 99;
    overflow: hidden;
  }
  .mainvisual__image img {
    width: 90%;
    height: 460px;
    object-fit: cover;
    border-radius: 20px 0 0 20px;
  }
  .mainvisual__catchcopy {
    margin-bottom: 24px;
    font-size: 2.4rem;
    padding: 0 24px;
  }
  .mainvisual__title {
    margin-bottom: 60px;
    font-size: 1.4rem;
  }
  .mainvisual__date {
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.35384615384;
    letter-spacing: 0.07em;
    text-shadow: 3px 3px 3px #ffffff, -3px 3px 3px #ffffff, 3px -3px 3px #ffffff, -3px -3px 3px #ffffff, 3px 0px 3px #ffffff, 0px 3px 3px #ffffff, -3px 0px 3px #ffffff, 0px -3px 3px #ffffff;
  }
  span.year {
    font-size: 2.4rem;
  }
  span.season {
    font-size: 2.4rem;
  }
  .mainvisual__description {
    font-size: 1.6rem;
  }
}

/* feature */
.feature {
  width: 100%;
  margin: 0 auto 0;
}
.feature__content {
  width: 100%;
  padding: 105px 60px 108px 250px;
  text-align: center;
}

.feature__title {
  margin-bottom: 16px;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.42857142857;
}

.feature__list {
  list-style: none;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.875;
  margin-bottom: 16px;
}

.feature__text {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.375;
}

.feature__gallery {
  position: relative;
  width: 100%;
  height: 652px;
  padding-right: 60px;
  padding-left: 250px;
  overflow: hidden;
}

.feature__left-line {
  position: absolute;
  top: 0;
  left: -250px;
  width: 70.2651515151vw;
  height: 504px;
}

.feature__left-line::before {
  content: "";
  position: absolute;
  top: 25px;
  right: 19px;
  width: 100%;
  height: 504px;
  border: 2px solid var(--sky-blue01);
  border-radius: 0 20px 20px 0;
  z-index: 9;
}

.feature__left-line::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 504px;
  border: 2px solid var(--gray);
  border-radius: 0 20px 20px 0;
}

.feature__right-line {
  position: absolute;
  top: 296px;
  right: -21px;
  width: 42.606149341vw;
  height: 270px;
}

.feature__right-line::before {
  content: "";
  position: absolute;
  top: 25px;
  right: 19px;
  width: 100%;
  height: 270px;
  border: 2px solid var(--sky-blue01);
  border-radius: 20px 0 0 20px;
  z-index: 9;
}

.feature__right-line::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 270px;
  border: 2px solid var(--gray);
  border-radius: 20px 0 0 20px;
}

.feature__gallery-list {
  list-style: none;
  position: relative;
  margin: 0 auto;
}

.feature__gallery-list {
  position: relative;
  top: 12px;
  /* left: clamp(250px, 18.301610541vw, 1000px); */
  /* left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%); */
  width: 100%;
  max-width: 1056px;
  height: 640px;
  z-index: 999;
  margin: 0 auto;
}

.feature__gallery-item:first-child {
  position: absolute;
  top: 0;
  left: 0;
  width: 22.632575757%;
  /* max-width: 239px; */
  height: auto;
  max-height: 326px;
}

.feature__gallery-item:nth-child(2) {
  position: absolute;
  top: 145px;
  left: calc(22.632575757% + 25px);
  width: 38.446969696%;
  /* max-width: 406px; */
  height: auto;
  max-height: 263px;
}

.feature__gallery-item:nth-child(3) {
  position: absolute;
  top: 64px;
  right: 0;
  width: 31.723484848%;
  height: auto;
  max-height: 344px;
}

.feature__gallery-item:nth-child(4) {
  position: absolute;
  right: 214px;
  bottom: 0;
  width: 24.337121212%;
  max-height: 215px;
}
.feature__gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

/* overview */
.overview {
  padding-bottom: 429px;
}

.overview__content {
  padding: 0 60px 101px 250px;
}

.overview__heading {
  position: relative;
  padding-top: 97px;
  padding-bottom: 64px;
  font-family: var(--sub-font);
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
}

.overview__heading::before {
  content: "";
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  position: absolute;
  width: 55px;
  height: 56px;
  background-image: url(../image/overview/overview-icon.png);
  background-size: contain;
  background-repeat: no-repeat;
}


/* information */
/* .information {
  padding-bottom: 429px;
} */

.information__content {
  padding: 0 60px 101px 250px;
}

.information__heading {
  position: relative;
  padding-top: 30px;
  padding-bottom: 64px;
  font-family: var(--sub-font);
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
}

/*
.information__heading::before {
  content: "";
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  position: absolute;
  width: 55px;
  height: 56px;
  background-image: url(../image/overview/overview-icon.png);
  background-size: contain;
  background-repeat: no-repeat;
}
  */


/* パートナーロゴ */
.partners_flex{
  display: flex;
  flex-wrap: wrap;
  justify-content:center;
  gap: 40px 2%;
  max-width: 1200px;

}
/* .partners_flex p img{
  width: auto;
  height: 100%;
} */
.partners_flex p img{
  width: 100%;
  height: 56px;
  object-fit:contain;
}
.partners__company-logos.partners_flex p{
  height: 100px;
}
/* .supporter__company-logos.partners_flex p{
  height: 56px;
} */
.supporter__company-logos.partners_flex p{
  width: 180px;
}

.special__thanks-logos.partners_flex p{
  height: 90px;
}


/* タブレット（768px以上 1279px以下） */
@media screen and (max-width: 1279px) {
  /* ここにタブレット向けのスタイルを書く */
  .feature__content {
    width: 100%;
    padding: 195px 24px 178px 24px;
    text-align: center;
  }
  .feature__gallery {
    position: relative;
    width: 100%;
    height: 742px;
    padding-right: 20px;
    padding-left: 20px;
    overflow: hidden;
  }
  .feature__gallery-list {
    width: 100%;
    max-width: 1200px;
    height: 700px;
    z-index: 999;
    margin: 0 auto;
  }
}

/* スマホ（767px以下） */
@media screen and (max-width: 767px) {
  /* ここにスマホ向けのスタイルを書く */
  .feature {
    margin: 0 auto 100px;
  }
  .feature__content {
    padding: 60px 24px 80px 24px;
  }
  .feature__title {
    margin-bottom: 30px;
    font-size: 1.6rem;
  }
  .feature__list {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 30px;
  }
  .feature__list li {
    margin-bottom: 10px;
  }
  .feature__text {
    font-size: 1.6rem;
  }
  .feature__gallery {
    height: 159.46666666vw;
    padding-right: 0;
    padding-left: 0;
    overflow: hidden;
  }
  .feature__left-line {
    position: absolute;
    top: 13.333333vw;
    left: 0;
    width: 70.2651515151vw;
    height: 73.83333vw;
  }
  .feature__left-line::before {
    top: 15px;
    right: 15px;
    height: 100%;
    border: 2px solid var(--sky-blue01);
  }
  .feature__left-line::after {
    height: 100%;
    border: 2px solid var(--gray);
  }
  .feature__right-line {
    position: absolute;
    top: initial;
    right: 0;
    bottom: 0;
    width: 88.8vw;
    height: 49.0666666vw;
  }
  .feature__right-line::before {
    top: initial;
    right: 0;
    bottom: 0;
    width: calc(100% + 15px);
    height: 100%;
    border: 2px solid var(--sky-blue01);
    border-right: none;
  }
  .feature__right-line::after {
    top: initial;
    right: 0;
    bottom: 15px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gray);
    border-right: none;
  }
  .feature__gallery-list {
    top: 2.13333vw;
    width: 100%;
    max-width: initial;
    height: 100%;
    z-index: 999;
    margin: 0 auto;
  }
  .feature__gallery-item:first-child {
    position: absolute;
    top: 0;
    left: 0;
    width: 42.6666666vw;
    /* max-width: 239px; */
    height: auto;
    max-height: 326px;
  }
  .feature__gallery-item:first-child > img {
    border-radius: 0 20px 20px 0;
  }
  .feature__gallery-item img {
    width: 100%;
    height: auto;
  }
  .feature__gallery-item:nth-child(2) {
    position: absolute;
    top: 102.4vw;
    right: 0;
    left: initial;
    width: 76vw;
    /* max-width: 406px; */
    height: auto;
    max-height: 300px;
  }
  .feature__gallery-item:nth-child(2) > img {
    object-fit: contain;
    border-radius: 20px 0 0 20px;
  }
  .feature__gallery-item:nth-child(3) {
    position: absolute;
    top: 30.66666vw;
    right: 4vw;
    width: 41.6vw;
    height: auto;
    max-height: 344px;
  }
  .feature__gallery-item:nth-child(4) {
    position: absolute;
    top: 65.8666666vw;
    right: initial;
    left: 12.8vw;
    width: 32vw;
    height: auto;
  }
}

/* overview__list */
.overview__list {
  width: 85.416666666%;
  max-width: 902px;
  margin: 0 auto;
}

.overview__item {
  display: flex;
  align-items: center;
  width: 100%;
  height: 77px;
  padding: 0 32px;
  border-bottom: 1px solid var(--blue06);

}

.overview__item dt {
  display: flex;
  align-items: center;
  min-width: 252px;
  font-family: var(--sub-font);
  font-size: 2.8rem;
  font-weight: 500;
  box-sizing: border-box;
}

.program .overview__item {
  height: auto;
  padding: 0;
  border-bottom: none;
  margin-top: 20px;
}

.program .overview__item dt{
  min-width: 100%;

}


.program .overview__item dt a{
  text-decoration: none;
  color: #333333;
  display: block;
  width: 100%;
  padding: 20px 32px 15px 32px;
  background-color: #f5f5f5;
  border-radius: 12px;
  box-sizing: border-box;
  border: 1px solid #dee3e2;
  box-shadow: 0 2px 8px rgba(10, 51, 128, 0.06);
}
.program .overview__item dt a:hover{
  background-color: #cce0ed;
  transition : 0.5s;
}

.overview__item dt img.icon {
  width: 26px;
  height: auto;
  margin-right: 28px;
  vertical-align: middle;
}

.overview__item dd {
  font-family: var(--main-font);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.3em;
}

.overview__facility-image {
  position: relative;
  width: 95.607613469%;
  height: 624px;
}

.overview__facility-image img {
  width: 100%;
  height: 624px;
  object-fit: cover;
  border-radius: 0 20px 20px 0;
}

.overview__facility-image::before {
  content: "";
  position: absolute;
  top: -20px;
  border: 2px solid var(--sky-blue02);
  border-left: none;
  width: calc(100% + 30px);
  height: 471px;
  border-radius: 0 20px 20px 0;
  z-index: -9;
}

.overview__facility-image::after {
  content: "";
  position: absolute;
  top: 303px;
  left: 0;
  border: 2px solid var(--gray);
  border-left: none;
  width: 87.825421133%;
  height: 352px;
  border-radius: 0 20px 20px 0;
  z-index: -9;
}

/* タブレット（768px以上 1279px以下） */
@media screen and (max-width: 1279px) {
  /* ここにタブレット向けのスタイルを書く */
  .overview__content {
    padding: 0 24px 101px 24px;
  }
  .information__content {
    padding: 0 24px 101px 24px;
  }
}

/* スマホ（767px以下） */
@media screen and (max-width: 767px) {
  /* ここにスマホ向けのスタイルを書く */
  .overview {
    padding-bottom: 100px;
    padding-top: 120px;
  }
  .overview__content {
    padding: 0 24px 60px 24px;
  }
  .overview__heading {
    padding-top: 40px;
    padding-bottom: 34px;
    font-size: 2rem;
  }
  .overview__heading::before {
    width: 24px;
    height: 25px;
  }
  .overview__list {
    width: 100%;
    max-width: initial;
  }
  .overview__item {
    display: block;
    height: auto;
    margin-bottom: 16px;
    padding: 0 10px;
  }
  .overview__item dt {
    display: flex;
    min-width: initial;
    padding-bottom: 10px;
    font-size: 1.6rem;
    align-items: center;
  }
  .overview__item dt img.icon {
    width: 16px;
    margin-right: 10px;
  }
  .overview__item dd {
    padding-bottom: 16px;
    font-size: 1.4rem;
    font-weight: 400;
  }
  .overview__facility-image {
    position: relative;
    width: 90vw;
    height: 60vw;
  }
  .overview__facility-image::before {
    top: -5.3333333vw;
    border: 1px solid var(--sky-blue02);
    width: 93vw;
    height: 50vw;
    border-left: none;
    border-radius: 0 10px 10px 0;
    z-index: -9;
  }
  .overview__facility-image::after {
    content: "";
    position: absolute;
    top: 13.333333vw;
    left: -14vw;
    border: 1px solid var(--gray);
    width: 93vw;
    height: 50vw;
    border-radius: 0 10px 10px 0;
    z-index: -9;
  }
  .overview__facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 10px 10px 0;
  }

  .information__heading {
    padding-top: 40px;
    padding-bottom: 34px;
    font-size: 2rem;
  }
  .information__heading::before {
    width: 24px;
    height: 25px;
  }
  .information__content {
    padding: 0 24px 60px 24px;
  }
}

/* equipment */

.equipment__container {
  padding: 0 60px 426px 250px;
}

.equipment__heading {
  position: relative;
  padding-top: 97px;
  padding-bottom: 108px;
  font-family: var(--sub-font);
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
}

.equipment__heading::before {
  content: "";
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  position: absolute;
  width: 60px;
  height: 60px;
  background-image: url(../image/equipment/gear-icon.png);
  background-size: contain;
  background-repeat: no-repeat;
}

/* タブレット（768px以上 1279px以下） */
@media screen and (max-width: 1279px) {
  /* ここにタブレット向けのスタイルを書く */
  .equipment__container {
    padding: 0 24px 426px 24px;
  }
}

/* スマホ（767px以下） */
@media screen and (max-width: 767px) {
  /* ここにスマホ向けのスタイルを書く */
  .equipment__container {
    padding: 0 24px 100px 24px;
  }
  .equipment__heading {
    position: relative;
    padding-top: 40px;
    padding-bottom: 34px;
    font-size: 2rem;
  }
  .equipment__heading::before {
    width: 24px;
    height: 25px;
  }
}

/* skills__list */
.skills__inner {
  width: 85.416666666%;
  max-width: 902px;
  margin: 0 auto;
}

.skills__content {
  width: 100%;
  margin-bottom: 54px;
}

.skills__content:first-child {
  width: 85.416666666%;
  max-width: 902px;
  margin-bottom: 108px;
  padding: 0 32px;
  border-bottom: 1px solid var(--blue06);
}

.skills__title {
  display: flex;
  align-items: center;
  padding: 0 32px 100px;
  font-family: var(--sub-font);
  font-size: 2.8rem;
  font-weight: 500;
  box-sizing: border-box;
}

.skills__title:first-child {
  padding: initial;
  margin-bottom: 35px;
}

.skills__content .skills__title img.icon {
  width: 23px;
  height: auto;
  margin-right: 28px;
  vertical-align: middle;
}

span.skills__strong {
  font-weight: 700;
}

.skills__description {
  padding-bottom: 36px;
  font-family: var(--main-font);
  font-size: 2.5rem;
  font-weight: 400;
}

/* タブレット（768px以上 1279px以下） */
@media screen and (max-width: 1279px) {
  /* ここにタブレット向けのスタイルを書く */
  .skills__content:first-child {
    width: 100%;
  }
}

/* スマホ（767px以下） */
@media screen and (max-width: 767px) {
  /* ここにスマホ向けのスタイルを書く */
  .skills__inner {
    width: 100%;
    max-width: 902px;
    margin: 0 auto;
  }
  .skills__content:first-child {
    width: 100%;
    max-width: initial;
    margin-bottom: 40px;
    padding: 0 10px;
    border-bottom: 1px solid var(--blue06);
  }
  .skills__title {
    display: block;
    padding: 0 32px 100px;
    font-family: var(--sub-font);
    font-size: 2.8rem;
    font-weight: 500;
    box-sizing: border-box;
  }
  .skills__title:first-child {
    display: flex;
    padding: initial;
    margin-bottom: 10px;
    font-size: 1.6rem;
  }
  .skills__content .skills__title img.icon {
    width: 16px;
    height: auto;
    margin-right: 10px;
  }
  .skills__description {
    padding-bottom: 16px;
    font-size: 1.4rem;
  }
}

/* device */
.device__content {
  width: 100%;
  max-width: 988px;
  margin-bottom: 54px;
  margin: 0 auto;
}

.device__title {
  display: flex;
  align-items: center;
  width: 85.416666666%;
  max-width: 902px;
  padding: 0 0 100px;
  font-family: var(--sub-font);
  font-size: 2.8rem;
  font-weight: 500;
  box-sizing: border-box;
  /* text-align: center; */
  margin: 0 auto;
}

.device__content .device__title img.icon {
  width: 26px;
  height: auto;
  margin-right: 28px;
  vertical-align: middle;
}

.device__list {
  display: flex;
  column-gap: 62px;
  row-gap: 117px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 988px;
  list-style: none;
}

.device__item {
  position: relative;
  width: 440px;
  border: 1px solid var(--dark-gray);
  border-radius: 20px;
}

.device__size {
  position: absolute;
  top: -65px;
  left: -12px;
  display: block;
  width: 142px;
  height: 142px;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  border-radius: 50%;
  background-color: var(--blue01);
  text-align: center;
  line-height: 142px;
}

.device__size.green01 {
  background-color: var(--green01);
}

.device__item img {
  display: block;
  width: 302px;
  margin: 44px auto 22px;
  text-align: center;
}

.device__list h4.device__name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 90.90909090909%;
  height: 85px;
  margin: 0 auto 18px;
  padding: 0 20px;
  background-color: var(--blue04);
  font-size: 2.8rem;
  font-family: var(--main-font);
}

.device__list h4.device__name.green02 {
  background-color: var(--green02);
}

.device__list h4 span.device__subtitle {
  display: block;
  position: relative;
  margin-bottom: 6px;
  padding-bottom: 8px;
  font-size: 1.8rem;
}

.device__list h4 span.device__subtitle::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -20px;
  width: 90px;
  height: 2px;
  background-color: var(--blue02);
}

.device__subitem {
  list-style: none;
  padding: 0 36px 0 36px;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--light-black);
}

.device__subitem li {
  margin-bottom: 33px;
}

.device__subitem li.environment {
  margin-bottom: 14px;
}

.device__subitem li.obtain {
  font-weight: 700;
}

.device__list p:first-child {
  padding: 18px 0 33px 36px;
}

ul.environment__list {
  position: relative;
  margin-bottom: 22px;
  padding: 9px 0 30px 9px;
  /* border-bottom: 1px solid var(--blue05); */
  font-weight: 400;
}

ul.environment__list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: calc(100% - 30px);
  background-color: var(--blue04);
}

ul.environment__list > .environment__item {
  list-style: none;
  position: relative;
  margin-bottom: initial;
  padding-bottom: 4px;
  padding-left: 45px;
  font-size: 2rem;
  line-height: 1.8;
}

.environment__item::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 20px;
  width: 14px;
  height: 14px;
  background-color: var(--white);
  border: 4px solid var(--blue02);
  border-radius: 50%;
}

/* タブレット（768px以上 1279px以下） */
@media screen and (max-width: 1279px) {
  /* ここにタブレット向けのスタイルを書く */
  .device__title {
    width: 100%;
    max-width: 902px;
    padding: 0 32px 100px;
  }
  .device__list {
    display: flex;
    justify-content: center;
  }
}

/* スマホ（767px以下） */
@media screen and (max-width: 767px) {
  /* ここにスマホ向けのスタイルを書く */
  .device__title {
    width: 100%;
    max-width: 902px;
    padding: 0 14px 100px;
    font-size: 1.6rem;
  }
  .device__content .device__title img.icon {
    width: 16px;
    height: auto;
    margin-right: 10px;
    vertical-align: middle;
  }
  .device__item {
    width: 321px;
    border-radius: 20px;
  }
  .device__size {
    position: absolute;
    top: -65px;
    left: -12px;
    display: block;
    width: 120px;
    height: 120px;
    font-size: 1.8rem;
    line-height: 120px;
  }
  .device__item img {
    display: block;
    width: 68.636363636%;
    margin: 44px auto 22px;
    text-align: center;
  }
  .device__list h4.device__name {
    height: 72px;
    margin: 0 auto 18px;
    padding: 0 20px;
    font-size: 1.8rem;
  }
  .device__list h4 span.device__subtitle {
    margin-bottom: 6px;
    padding-bottom: 8px;
    font-size: 1.4rem;
  }
  .device__subitem {
    font-size: 1.4rem;
  }
  .device__subitem li {
    margin-bottom: 20px;
  }
  ul.environment__list {
    margin-bottom: 20px;
    padding: 0px 0 22px 9px;
    border-bottom: 1px solid var(--blue05);
    font-weight: 400;
  }
  ul.environment__list > .environment__item {
    list-style: none;
    position: relative;
    margin-bottom: initial;
    padding-bottom: 4px;
    padding-left: 30px;
    font-size: 1.6rem;
    line-height: 1.6;
  }
  .environment__item::before {
    top: 10px;
    left: 8px;
    width: 10px;
    height: 10px;
    border: 3px solid var(--blue02);
  }
}


/* program */
.program {
  padding-bottom: 10px;
}

.program__content {
  padding: 0 60px 144px 250px;
}

.program__heading,
.inspection__heading {
  position: relative;
  padding-top: 97px;
  padding-bottom: 156px;
  font-family: var(--sub-font);
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
}
.inspection__heading{
  padding-bottom: 56px;
}

.program__heading::before,
.inspection__heading::before {
  content: "";
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  position: absolute;
  width: 55px;
  height: 56px;
  background-image: url(../image/program/program-icon.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.inspection__heading::before {
  width: 45px;
  height: 56px;
  background-image: url(../image/program/nurturing-icon_grey.png);
}


/* program__list */
.program__list {
  /* width: 85.416666666%;
  max-width: 902px; */
  margin: 0 auto;
}

.program__item {
  width: 100%;
  padding: 54px 10%;
  border-bottom: 1px solid var(--blue06);
}

/* .program__item:first-child {
  width: 100%;
  padding: 0 32px 29px;
  border-bottom: 1px solid var(--blue06);
} */

.program__item dt {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 60px;
  font-family: var(--sub-font);
  font-size: 2.8rem;
  font-weight: 500;
  box-sizing: border-box;
}

.program__item dt img.icon {
  width: 24px;
  height: auto;
  margin-right: 32px;
  vertical-align: middle;
}

.program__item dd {
  font-family: var(--main-font);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.5;
}

.program__item dd ul {
  list-style: none;
  line-height: 1.8;
}
.program__item dd ul li+li{
  margin-top: 20px;
}
.program__item caption{
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.program__item table{
  margin-top: 60px;
  margin-bottom: 60px;
}
.program__item table th,
.program__item table td{
  padding: 10px;
  box-sizing: border-box;
  line-height: 1.8;
}
.program__item table th{
  background-color: #f5f5f5;
}
.course-name {
  font-weight: 700;
}

.program__facility-image {
  position: relative;
  width: 95.607613469%;
  height: 624px;
}

.program__facility-image img {
  width: 100%;
  height: 624px;
  object-fit: cover;
  border-radius: 0 20px 20px 0;
}

.program__facility-image::before {
  content: "";
  position: absolute;
  top: -20px;
  border: 2px solid var(--sky-blue01);
  width: calc(100% + 30px);
  height: 471px;
  border-radius: 0 20px 20px 0;
  z-index: -9;
}

.program__facility-image::after {
  content: "";
  position: absolute;
  top: 303px;
  left: 0;
  border: 2px solid var(--gray);
  width: 87.825421133%;
  height: 352px;
  border-radius: 0 20px 20px 0;
  z-index: -9;
}

.program__message {
  width: 100%;
  max-width: 1200px;
  /* margin: 0 auto 218px; */
  margin: 0 auto 20px;
  padding: 0 60px 0 250px;
  font-family: var(--sub-font);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.42857142857;
  text-align: center;
}

.program__image {
  padding: 0 60px 0 287px;
  margin: 0 auto;
}

.program__equipment-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 51px;
  list-style: none;
  margin-bottom: 106px;
}

.program__equipment-list li {
  width: 302px;
  text-align: center;
}
.program__equipment-list img {
  width: 302px;
  margin-bottom: 32px;
}

.equipment__name {
  font-family: var(--main-font);
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.57142857142;
}

.equipment__manufacturer {
  font-family: var(--main-font);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.833333;
}

.course-content {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.833333;
  margin-bottom: 20px;
  padding-left: 40px;
}

/* テーブル */
.th_w80{
  width: 80px;
}
.th_w90{
  width: 90px;
}
.th_w110{
  width: 110px;
}

/* タブレット（768px以上 1279px以下） */
@media screen and (max-width: 1279px) {
  /* ここにタブレット向けのスタイルを書く */
  .program__content {
    padding: 0 24px 144px 24px;
  }
  .program__message {
    padding: 0 24px 0 24px;
  }
  .program__image {
    padding: 0 24px 0 24px;
    margin: 0 auto;
  }

  .th_w80,
  .th_w90,
  .th_w110{
    width: auto;
  }
}



/* スマホ（767px以下） */
@media screen and (max-width: 767px) {
  /* ここにスマホ向けのスタイルを書く */
  .program {
    padding-bottom: 60px;
  }
  .program__content {
    padding: 0 24px 60px 24px;
  }

  .program__heading {
    padding-top: 40px;
    padding-bottom: 34px;
    font-size: 2rem;
  }
  .program__heading::before {
    position: absolute;
    width: 24px;
    height: 25px;
    background-image: url(../image/program/program-icon.png);
    background-size: contain;
    background-repeat: no-repeat;
  }
  .program__list {
    width: 100%;
  }
  .program__item {
    width: 100%;
    margin-bottom: 20px;
    padding: 0 10px 16px;
  }
  .program__item:first-child {
    width: 100%;
    padding: 0 10px 16px;
    border-bottom: 1px solid var(--blue06);
  }
  .program__item dt {
    margin-bottom: 10px;
    font-size: 1.6rem;
  }
  .program__item dt img.icon {
    width: 16px;
    height: auto;
    margin-right: 10px;
  }
  .program__item dd ul {
    list-style: none;
    line-height: 1.5;
  }
  .program__item dd {
    font-size: 1.4rem;
  }
  .program__item caption{
    font-size: 1.6rem;
  }
  .program__message {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 24px;
    font-size: 1.6rem;
  }
  .program__equipment-list {
    row-gap: 10px;
    column-gap: 30px;
    list-style: none;
    margin-bottom: 40px;
  }
  .program__equipment-list img {
    width: 68.636363636%;
    margin-bottom: 10px;
  }
  .equipment__name {
    font-family: var(--main-font);
    font-size: 1.6rem;
  }
  .equipment__manufacturer {
    font-size: 1.4rem;
  }
}

/* partners */
.partners {
  padding-bottom: 429px;
}

.partners__content {
  padding: 0 60px 144px 250px;
}

.partners__heading {
  position: relative;
  padding-top: 97px;
  padding-bottom: 156px;
  font-family: var(--sub-font);
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
}

.partners__heading::before {
  content: "";
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  position: absolute;
  width: 60px;
  height: 41px;
  background-image: url(../image/partners/partners-icon.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.partners__inner {
  width: auto;
  text-align: center;
}

/* .partners__support {
} */

.partners__support-title,
.partners__benefits-title {
  font-family: var(--main-font);
  font-size: 2.5rem;
  line-height: 1.8;
}

.partners__support-description {
  position: relative;
  margin-bottom: 75px;
  padding-bottom: 76px;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.8;
}

.partners__support-description::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 107px;
  border-bottom: 3px solid var(--blue06);
}

.partners__price {
  font-size: 3.5rem;
}

.partners__benefits-title {
  font-size: 2.8rem;
  font-weight: 500;
  margin-bottom: 63px;
}

.partners__benefits {
  list-style: none;
  margin-bottom: 189px;
  font-family: var(--main-font);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.5;
}

.partners__benefit-item {
  padding-bottom: 43px;
}

.partners__company-title,
.supporter__company-title,
.special__thanks-title {
  max-width: 902px;
  margin: 0 auto 53px;
  font-family: var(--sub-font);
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 2.71428;
  border-bottom: 1px solid var(--blue06);
}

.partners__company-logos,
.supporter__company-logos,
.special__thanks-logos {
  width: 100%;
  margin: 0 auto 152px;
}

/* .partners__company-logos {
  max-width: 1024px;
}

.supporter__company-logos {
  max-width: 100%;
}

.special__thanks-logos {
  max-width: 1024px;
} */

.partners__company-logos img,
.supporter__company-logos img,
.special__thanks-logos img {
  width: 100%;
}

.partners__image {
  position: relative;
  width: 100%;
  padding: 0 0 0 310px;
}

.partners__image img {
  position: relative;
  width: 100%;
  height: 348px;
  object-fit: cover;
  border-radius: 24px 0 0 24px;
}

.partners__image::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 0;
  width: calc(100% - 286px);
  height: 352px;
  border: 3px solid var(--gray);
  border-right: none;
  border-radius: 24px 0 0 24px;
  z-index: -9;
}

.partners__image::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 0;
  width: calc(100% - 510px);
  height: 361px;
  border: 2px solid var(--sky-blue02);
  border-right: none;
  border-radius: 24px 0 0 24px;
  z-index: -99;
}

/* タブレット（768px以上 1279px以下） */
@media screen and (max-width: 1279px) {
  /* ここにタブレット向けのスタイルを書く */
  .partners__content {
    padding: 0 24px 144px 24px;
  }
  .partners__image {
    padding: 0 0 0 250px;
  }
  .partners__image::before {
    width: calc(100% - 226px);
  }
}

/* スマホ（767px以下） */
@media screen and (max-width: 767px) {
  /* ここにスマホ向けのスタイルを書く */
  .partners {
    padding-bottom: 100px;
  }
  .partners__content {
    padding: 0 24px 40px 24px;
  }
  .partners__heading {
    position: relative;
    padding-top: 97px;
    padding-bottom: 156px;
    font-family: var(--sub-font);
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.45;
    text-align: center;
  }
  .partners__heading::before {
    width: 24px;
    height: 20px;
  }
  .partners__heading {
    padding-top: 36px;
    padding-bottom: 34px;
    font-size: 2rem;
  }
  .partners__support-title,
  .partners__benefits-title {
    font-family: var(--main-font);
    font-size: 1.6rem;
    line-height: 1.8;
  }
  .partners__support-description {
    position: relative;
    margin-bottom: 32px;
    padding-bottom: 32px;
    font-size: 1.4rem;
    line-height: 1.8;
  }
  .partners__price {
    font-size: 1.8rem;
  }
  .partners__benefits-title {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 20px;
  }
  .partners__benefits {
    list-style: none;
    margin-bottom: 20px;
    font-size: 1.4rem;
  }
  .partners__benefit-item {
    padding-bottom: 16px;
  }
  .partners__company-title,
  .supporter__company-title,
  .special__thanks-title {
    margin: 0 auto 20px;
    font-size: 1.6rem;
    line-height: 2.71428;
  }
  .partners__company-logos,
  .supporter__company-logos,
  .special__thanks-logos {
    margin: 0 auto 40px;
  }
  .partners__image {
    height: 53.33333333vw;
    max-height: 220px;
    padding: 0 0 0 26.666666vw;
  }
  .partners__image img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px 0 0 24px;
  }
  .partners__image::before {
    content: "";
    position: absolute;
    top: 18px;
    right: 0;
    width: calc(73.33333334vw + 20px);
    height: 53.33333333vw;
    max-height: 220px;
    border: 1px solid var(--gray);
    border-right: none;
    border-radius: 20px 0 0 20px;
  }
  .partners__image::after {
    content: "";
    position: absolute;
    top: 24px;
    right: 0;
    width: 36.6666665vw;
    height: 53.33333333vw;
    max-height: 220px;
    border: 2px solid var(--sky-blue02);
    border-right: none;
    border-radius: 20px 0 0 20px;
    z-index: -99;
  }
}

/* contact */
/* .contact {
} */

.contact__content {
  padding: 0 60px 99px 250px;
}

.contact__heading {
  position: relative;
  padding-top: 97px;
  padding-bottom: 118px;
  font-family: var(--sub-font);
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
}

.contact__heading::before {
  content: "";
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  position: absolute;
  width: 47px;
  height: 60px;
  background-image: url(../image/contact/contact-icon.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.contact__inner {
  width: auto;
  text-align: center;
}

/* .contact__support {
} */

.contact__title,
.operation__title {
  margin-bottom: 17px;
  font-family: var(--sub-font);
  font-size: 2.8rem;
  font-weight: 500;
}

.contact__adress,
.contact__description {
  position: relative;
  margin-bottom: 75px;
  padding-bottom: 76px;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.8;
}

.contact__description {
  margin-bottom: 108px;
  padding-bottom: initial;
}

.contact__adress::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 107px;
  border-bottom: 3px solid var(--blue06);
}

.contact__price {
  font-size: 3rem;
}

.contact__benefits-title {
  margin-bottom: 63px;
}

.operation {
  width: 100%;
  max-width: 1056px;
  height: auto;
  margin: 0 auto;
  padding: 83px 60px 94px;
  background-color: #f7f7f7;
  border-radius: 40px;
}

.operation__title {
  margin-bottom: 60px;
  line-height: 1.466666;
}

.operation__department,
.operation__person {
  position: relative;
  font-family: var(--main-font);
  font-size: 2.3rem;
  font-weight: 400;
  line-height: 1.95652173913;
}

.operation__person {
  margin-bottom: 52px;
  padding-bottom: 60px;
}

.operation__person::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 107px;
  border-bottom: 3px solid var(--blue06);
}

.operation__contact {
  line-height: 1;
}

.operation__email,
.operation__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--main-font);
  font-size: 2.3rem;
  font-weight: 400;
}

.operation__email {
  margin-bottom: 26px;
}

.operation__email img {
  width: 24px;
  height: 17px;
  margin-right: 13px;
}

.operation__phone img {
  width: 22px;
  height: 34px;
  margin-right: 13px;
}

.operation__phone {
  margin-bottom: 85px;
}

.operation__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 40px;
  width: 100%;
  margin: 0 auto;
  padding: 0 60px;
}

.operation__logos img {
  width: 100%;
}

.operation__logo--iwate {
  max-width: 400px;
}

.operation__logo--i-sep {
  max-width: 145px;
}

/* タブレット（768px以上 1279px以下） */
@media screen and (max-width: 1279px) {
  /* ここにタブレット向けのスタイルを書く */
  .contact__content {
    padding: 0 24px 99px 24px;
  }
}

/* スマホ（767px以下） */
@media screen and (max-width: 767px) {
  /* ここにスマホ向けのスタイルを書く */
  .contact__content {
    padding: 0 24px 40px 24px;
  }
  .contact__heading {
    padding-top: 40px;
    padding-bottom: 34px;
    font-size: 2rem;
  }
  .contact__heading::before {
    width: 24px;
    height: 32px;
  }
  .contact__title,
  .operation__title {
    margin-bottom: 10px;
    font-size: 1.6rem;
    font-weight: 500;
  }
  .contact__adress,
  .contact__description {
    position: relative;
    margin-bottom: 32px;
    padding-bottom: 32px;
    font-size: 1.4rem;
  }
  .operation {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 40px 24px 46px;
    background-color: #f7f7f7;
    border-radius: 40px;
  }
  .operation__department,
  .operation__person {
    font-size: 1.4rem;
  }
  .operation__person {
    margin-bottom: 32px;
    padding-bottom: 32px;
  }
  .operation__person::after {
    width: 60px;
  }
  .operation__email {
    margin-bottom: 16px;
  }
  .operation__email,
  .operation__phone {
    flex-wrap: wrap;
    row-gap: 10px;
    font-size: 1.6rem;
  }
  .operation__phone {
    margin-bottom: 32px;
  }
  .operation__logos {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 20px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
  .operation__logo--iwate {
    max-width: 300px;
  }
  .operation__logo--i-sep {
    max-width: 130px;
  }
}

/* フッター */
.footer {
  width: 100%;
  padding: 0 60px 83px 250px;
  text-align: center;
  color: var(--black);
}

footer small {
  font-size: 1.4rem;
  font-weight: 400;
}

/* モーダル共通css */

/* これが無いとモーダルウィンドウ表示の際に余白が出る */
*{
  margin: 0;
  padding: 0;
}

/* モーダル全体(背景＋本体) */
.modal{
  display: none;
  position: fixed;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 9999;

}

/* モーダル背景 */
.modal-bg{
  position: absolute;
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
}

/* モーダル本体 */
.modal-content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: scroll; /* はみ出た部分はスクロールさせる */
  height: 80%;/* これが無いと「overflow:scroll」が利かない */
  width: 60%;/* これが無いと「overflow:scroll」が利かない */
  background: white;
  padding: 70px 40px;
  font-size: 1rem;
}
.modal_completion .modal-content{
  width: 90%;
  height: 89%;
}

.modal_footer{
  padding-top: 60px;
  padding-bottom: 80px;
  text-align: center;
}

.modal_footer a{
        cursor: pointer;
        transition: background 0.2s, color 0.2s, box-shadow 0.2s;
        position: relative;
        padding: 10px 30px;
        font-weight: bold;
        font-size: 2.5em;
        line-height: 1.2;
        color: #0a3380;
        letter-spacing: 0.08em;
        background: linear-gradient(90deg, #e3ecfa 0%, #f7fafc 100%);
        border-radius: 8px;
        margin-bottom: 23px;
        text-decoration: none;
        box-shadow: 0 2px 8px rgba(10, 51, 128, 0.06);
      }

/* モーダルウィンドウ表示中に記事本体を固定 */
body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}




/* タブレット（768px以上 1279px以下） */
@media screen and (max-width: 1279px) {
  /* ここにタブレット向けのスタイルを書く */
  .footer {
    padding: 0 24px 83px 24px;
  }
}

/* スマホ（767px以下） */
@media screen and (max-width: 767px) {
  /* ここにスマホ向けのスタイルを書く */
  .footer {
    padding: 0 24px 30px 24px;
  }

  footer small {
    font-size: 1.2rem;
  }
}

/* 印刷用 */
@media print {
  .program__item{
      padding: 0 0 80px 0;
  }
  .program {
    padding-bottom: 0;
  }
  .program .program__heading,
  .modal_footer{
    display: none;
  }

  .program__item dt {
    font-size: 1.6rem;
  }
  .program__item dd {
    font-size: 1.4rem;
  }
  .program__item caption{
    font-size: 1.6rem;
  }

}
