/*
Theme Name: Blank
Author: 
Author URI: Your Website URL
Description: Blank
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: my-blank-theme
*/

@charset "UTF-8";
:root {
  --site-max-width:1920px;
  --header-height-pc:120px;
  --header-height-sp:78px;
  --icon-size: 22px;
}
html {
  scroll-padding-top: var(--header-height-sp);
}
@media (min-width: 641px) {
  html {
    scroll-padding-top: var(--header-height-pc);
  }
}

body {
  color:#727171;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
@media (hover: hover) {
  body a {
    transition: all 0.2s ease-in-out;
  }
  body a:hover {
    opacity: 0.7;
  }
}


img {
  vertical-align: bottom;
}
p {
  line-height: 2;
}
.container {
  max-width: var(--site-max-width);
  overflow: hidden;
}
.container-800 {
  max-width: 800px;
}
.container-1000 {
  max-width: 1000px;
}
.container-1100 {
  max-width: 1100px;
}
.container-1200 {
  max-width: 1200px;
}
.container-1400 {
  max-width: 1400px;
}
.container,
.container-800,
.container-1000,
.container-1100,
.container-1200,
.container-1400 {
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
}
@media (min-width: 641px) {
  body {
      min-width:1200px;
  }
}

/* 固定ヘッダー本体＋スペーサー */
.headerPC001{position:fixed; top:0; left:0; right:0; z-index:7;
  background:rgba(255,255,255,.9); box-shadow:1px 1px 10px rgba(0,0,0,.2);}
.headerPC001-space{height:var(--header-height-pc);}

/* 1行3カラム：ロゴ | 中央ナビ(可変) | 右ボタン */
.headerPC001-inner{
  display:grid; grid-template-columns:auto 1fr auto; align-items:center; gap:16px;
  height:var(--header-height-pc); max-width:var(--site-max-width); margin:0 auto; padding:0 10px;
}

/* ロゴ */
.headerPC001-logo{text-decoration:none; transition:opacity .3s;}
.headerPC001-logo:hover{opacity:.7;}
.headerPC001-logo img{width:clamp(180px,16vw,260px); height:auto;}

/* 中央・右 */
.headerPC001-center{min-width:0;} /* 中央が縮める鍵 */
.headerPC001-right{display:flex; align-items:center;}
.headerPC001-right .button-list{display:flex; gap:10px;}
.headerPC001-right .button-list-item{flex:0 0 auto; max-width:80px;}
.headerPC001-right .button-list-item a{display:block;}

@media (min-width:1300px) {
  .headerPC001-right .button-list-item{flex:0 0 auto; max-width:100px;}
}
@media (min-width:1500px) {
  .headerPC001-right .button-list-item{flex:0 0 auto; max-width:140px;}
}

/* リストの基本リセット */
.headerNavPC001 ul{margin:0; padding:0; list-style:none;}
.headerNavPC001 a{text-decoration:none;}

/* グローバルナビ（横並び） */
.headerNavPC001 .navi-list{
  display:flex; justify-content:flex-end; gap:clamp(8px,1vw,20px);
}
.headerNavPC001 .navi-list>li{position:relative;}
.headerNavPC001 .navi-list>li>a{
  display:block; color:#000; line-height:1.2;
  font-size:16px; white-space:nowrap;
  padding:3px 12px 3px calc(var(--icon-size) + 12px);
  border-radius:6px; transition:background-color .3s,color .3s;
}
@media (min-width:1300px) {
  .headerNavPC001 .navi-list>li>a{
    font-size: 18px;
  }
}
.headerNavPC001 .navi-list>li>a:hover{background:#00d1d7; color:#fff;}

/* アイコン（nth をCSS変数に集約） */
.headerNavPC001 .navi-list>li>a::before{
  content:""; position:absolute; left:5px; top:2px;
  width:var(--icon-size); height:var(--icon-size);
  background:var(--icon) no-repeat;
}
.headerNavPC001 .navi-list>li:hover>a::before{background-image:var(--icon-ov, var(--icon));}

/* 各メニューのアイコン割当（通常/ホバー） */
.headerNavPC001 .navi-list>li:nth-of-type(1){--icon:url(./img/common/gnavi-icon01.svg);--icon-ov:url(./img/common/gnavi-icon01-ov.svg);}
.headerNavPC001 .navi-list>li:nth-of-type(2){--icon:url(./img/common/gnavi-icon02.svg);--icon-ov:url(./img/common/gnavi-icon02-ov.svg);}
.headerNavPC001 .navi-list>li:nth-of-type(3){--icon:url(./img/common/gnavi-icon03.svg);--icon-ov:url(./img/common/gnavi-icon03-ov.svg);}
.headerNavPC001 .navi-list>li:nth-of-type(4){--icon:url(./img/common/gnavi-icon04.svg);--icon-ov:url(./img/common/gnavi-icon04-ov.svg);}
.headerNavPC001 .navi-list>li:nth-of-type(5){--icon:url(./img/common/gnavi-icon05.svg);--icon-ov:url(./img/common/gnavi-icon05-ov.svg);}

/* サブメニュー */
.headerNavPC001-nav .sub-menu{
  display:none; position:absolute; left:50%; transform:translateX(-50%);
  width:224px; z-index:3; background:#fff; border:1px solid #eee;
}
.headerNavPC001-nav .menu-item-has-children:hover>.sub-menu{display:block;}
.headerNavPC001-nav .sub-menu li{margin:0;}
.headerNavPC001-nav .sub-menu a{
  display:block; padding:10px; line-height:1.5; text-align:center;
  color:#000; border-bottom:1px solid #eee;
}
/* headerSP001 */

.headerSP001 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height-sp);
  background-color: #FFF;
  z-index: 7;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: 1px 1px 10px 0 rgba(0, 0, 0, 0.2);
}
.headerSP001-space {
  height: var(--header-height-sp);
}
.headerSP001-logo {
  padding-left: 10px;
  text-decoration: none;
  color:#727171;
}
.headerSP001-logo img {
  height: 46px;
  margin-right: 14px;
}

.headerSP001-icon {
  width: 50px;
  height: 50px;
  margin: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.headerSP001-button {
  position: relative;
  background: #43CFD6;
  cursor: pointer;
  width: 50px;
  height: 50px;
  /* border-radius: 5px; */
}

.headerSP001-button span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 5px;
  background: #fff;
  width: 45%;
}
.headerSP001-button span:nth-of-type(1) {
  top: 13px;
}
.headerSP001-button span:nth-of-type(2) {
  top: 19px;
}
.headerSP001-button span:nth-of-type(3) {
  top: 25px;
}
.headerSP001-button span:nth-of-type(3)::after {
  content: "Menu";
  position: absolute;
  top: 5px;
  left: -2px;
  color: #fff;
  font-size: 0.6rem;
  text-transform: uppercase;
}
.headerSP001-button.active span:nth-of-type(1) {
  top: 14px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.headerSP001-button.active span:nth-of-type(2) {
  opacity: 0;
}
.headerSP001-button.active span:nth-of-type(3) {
  top: 26px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
.headerSP001-button.active span:nth-of-type(3)::after {
  content: "Close";
  transform: translateY(0) rotate(-45deg);
  top: 5px;
  left: 4px;
}
.headerSP001-right {
  height: 100%;
  display: flex;
  align-items: center;
}
.o-spNavi {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  height: auto;

  transition: transform 0.2s;
  transform: translate(100%, 0);
  background-color: rgba(255, 255, 255, 0.9);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.o-spNavi.is-active {
  transform: translate(0, 0);
}
.o-spNavi .inner {
  padding: 20px;
}
.o-spNavi__upper {
  text-align: right;
}
.o-spNavi__upper .js-closeBtn {
  font-size: 18px;
  line-height: 1;
}
.o-spNavi__item {
  margin-top: 24px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.o-spNavi__item .item {
  border-bottom: 1px solid #b0b7b9;
  font-size: 16px;
  line-height: 1;
}
.o-spNavi__item .item.is-parent.is-active span:after {
  opacity: 0;
}
.o-spNavi__item .item a,
.o-spNavi__item .item span {
  display: block;
  width: 100%;
  padding: 20px 0;
  position: relative;
}
.o-spNavi__item .item a:after,
.o-spNavi__item .item span:after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  position: absolute;
  right: 3px;
  top: 50%;
  margin-top: -5px;
  transform: rotate(45deg);
}
.o-spNavi__item .item span:before {
  content: "";
  background: #000;
  position: absolute;
  top: 50%;
  width: 13px;
  height: 1px;
  right: 0;
}
.o-spNavi__item .item span:after {
  content: "";
  background: #000;
  position: absolute;
  top: 50%;
  width: 1px;
  height: 13px;
  right: 6px;
  margin-top: -6px;
  opacity: 1;
  transform: rotate(0);
}
.o-spNavi__item .a-btn,
.o-spNavi__item .a-btnSns {
  margin-left: auto;
  margin-right: auto;
}
.o-spNavi .list li {
  margin-top: 30px;
}
.o-spNavi .list li.line .icon {
  width: 40px;
}
.o-spNavi .list li.tel .icon {
  width: 40px;
}
.o-spNavi .list li.tel .text {
  font-weight: bold;
}
.o-spNavi .list li.mail .icon {
  width: 40px;
}
.o-spNavi .list li a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: #dde1e4;
}
.o-spNavi .list li .icon {
  margin-right: 22px;
}
.o-spNavi .list li .content .text {
  font-size: 16px;
  line-height: 1.75;
}
.o-spNavi .list li .content .label {
  font-size: 16px;
  line-height: 1.25;
}
/* ---- 強制上書き（CSSの一番最後に置く）---- */

/* 旧transform方式を完全無効化 */
.js-spNavi .o-spNavi {
  transform: none !important;
}

/* デフォルトは画面外（右）に隠す */
.js-spNavi .o-spNavi {
  position: fixed;
  top: var(--header-height-sp);   /* 例: 78px に相当。ヘッダー高さに合わせてください */
  right: -100% !important;        /* ← ここが肝：常時 right:0 を上書き */
  bottom: 0;
  left: auto;
  width: 100%;
  height: auto !important;
  background-color: rgba(255,255,255,0.95);
  overflow: hidden !important;     /* スクロールは .inner に任せる */
  transition: right .25s ease;
}

/* 表示時に画面内へ */
.js-spNavi .o-spNavi.is-active {
  right: 0 !important;
}

/* スクロールは .inner だけで */
.js-spNavi .o-spNavi .inner {
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* SPではサブメニューをフローに（absoluteを殺す） */
.headerNavSP001 .menu-item-has-children { position: static; }
.headerNavSP001 .sub-menu {
  position: static !important;
  display: none;
  margin-left: 12px;
  padding: 0;
}
.headerNavSP001 .menu-item-has-children.is-open > .sub-menu { display: block; }
.switch a {
  display: flex;
  align-items: center;
  width: 100%;
  font-size:14px;
  text-decoration: none;
  color: #000;
}
@media (min-width:2378px) {
  .switch a {
    font-size: 23px;
  }

}
.switch__label {
  width: 44px;
  position: relative;
  display: inline-block;
  margin-right: 8px;
}
.switch__content {
  display: block;
  cursor: pointer;
  position: relative;
  border-radius: 30px;
  height: 20px;
  -webkit-transition: all 0.1s 0.4s;
  -moz-transition: all 0.1s 0.4s;
  -ms-transition: all 0.1s 0.4s;
  -o-transition: all 0.1s 0.4s;
  transition: all 0.1s 0.4s;
  overflow: hidden;
}
.switch__content:before {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% - 0px);
  height: calc(100% - 0px);
  top: 0;
  left: 0;
  border: 1.5px solid #000000;
  border-radius: 20px;
  background-color: #fff;
}
.switch__content:after {
  content: "";
  display: block;
  position: absolute;
  background-color: transparent;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;

  border-radius: 20px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.switch__input {
  display: none;
}
.switch__circle {
  display: block;
  top: 0;
  left: 0;
  position: absolute;
  width: 20px;
  height: 20px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  background-color: #000000;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.switch__circle:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 8px;
  height: 8px;
  border: 1px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
  position: absolute;
  top: 7px;
  left: 5px;
}

.switch a:hover .switch__circle {
  left: 23px;
  background-color: #00d1d7;
}
.switch a:hover .switch__content {
  border-color: transparent;
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  -ms-transition: all 0s;
  -o-transition: all 0s;
  transition: all 0s;
}

.switch a:hover .switch__content:after {
  background-color: #00d1d7;
  width: 100%;
}
/* headerSP001 end */

/* nav */
.headerNavSP001 {
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 78px;
  left: 0;
  z-index:11;
  background-color:#FFF;
}

.headerNavSP001 > ul {
  height: calc(100% - 78px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid #ccc;
}

.headerNavSP001 li {
  width: 100%;
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
}

.headerNavSP001 a {
  padding: 10px;
  color: #3b4043;
  width: 100%;
  text-decoration: none;
}

.headerNavSP001 ul.sub-menu > li:last-child {
  border-bottom: none;
}

.headerNavSP001 .menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 7px;
  background-image: url(./img/arrow-down.png);
  background-size: 12px 7px;
  background-repeat: no-repeat;
  margin-left: 15px;
}

.headerNavSP001 .sub-menu {
  display: none;
  padding: 0;
  width: 100%;
  gap: 0;
}

.headerNavSP001 .sub-menu li {
  display: block;
  padding-left: 15px;
}

/* swiper01 */
/* .swiper01 {
  position: relative;
} */
.swiper01 {
  margin-top: -24px;
}
@media (min-width: 641px) {
  .swiper01 {
      min-width:1200px;
      /* margin-top: -24px; */
  }
}
.swiper01-container {
  overflow: hidden;
  /* z-index: -1; */
}
.swiper01-pagination {
  text-align: center;
}
div.swiper01 .swiper01-pagination .swiper-pagination-bullet-active {
  background:#00d1d7;
}
/* .swiper01-wrapper {
  display: flex;
  transition: transform 0.3s ease;
} */
/* 高さを決める場合 */
.swiper01-slide {
  flex: 0 0 auto;
  height: 540px;
}
.swiper01-img {
   object-fit: cover;
   width: 100%;
   height: 100%;
}
/* 高さが可変の場合 */
.swiper01-pagination{
  margin-top:10px;
}

.swiper01-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ccc;
  opacity: 1;
  margin: 0 6px !important;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.swiper01-pagination .swiper-pagination-bullet-active {
  width: 25px;
  background: #00d1d7;
  border-radius: 12px;
}
/* 共通デザイン（前後ボタン） */
.swiper-button-next,
.swiper-button-prev {
  width: 50px !important;
  height: 50px !important;
  background: #00d1d7; 
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.swiper-button-next::after, .swiper-button-prev::after {
  font-size: 12px !important;
  color: #000;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {

  color: #fff;
  transform: scale(1.1);
}

/* 矢印のサイズ */
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
}
/* swiper01 end */
.light-blue {
  color:#6FCCD4;
}
.light-blue2 {
  color:#43CFD6;
}
.pink {
  color:#EA949B;
}
.pink2 {
  color:#FD6890;
}
.dark-blue{
  color: #141C6C;
}
.red{
  color: #cb0303;
}
.bg-grey {
  background-color: #F5F5F5;
}
.bg-light-blue {
  background-color:#6FCCD4;
  color:#FFF;
}
.bg-light-blue2 {
  background-color:#43CFD6;
  color:#FFF;
}
.bg-pink {
  background-color:#EA949B;
  color:#FFF;
}
.bg-yellow{
  background: rgba(255, 251, 157, 0.3);
}
.bg-white{
  background: #FFF;
}

/* font-size */
.fs-000 {
  font-size: 36px;
}
@media (min-width: 641px) {
  .fs-000 {
    font-size: 50px;
  }
}
.fs-001 {
  font-size: 24px;
}
@media (min-width: 641px) {
  .fs-001 {
    font-size: 36px;
  }
}
.fs-002 {
  font-size: 20px;
}
@media (min-width: 641px) {
  .fs-002 {
    font-size: 28px;
  }
}
.fs-003 {
  font-size: 18px;
}
@media (min-width: 641px) {
  .fs-003 {
    font-size: 24px;
  }
}
.fs-004,
.fs-005,
.fs-006 {
  font-size: 16px;
}
@media (min-width: 641px) {
  .fs-004 {
    font-size: 21px;
  }
}
@media (min-width: 641px) {
    .fs-005 {
        font-size: 18px;
    }
}

.button-01 {
  background-color:#EA949B;
}
.button-02 {
  background-color:#6FCCD4;
}
.button-02,
.button-01 {
  text-decoration: none;
  display: inline-block;
  color:#FFF;
  border-radius: 20px;
  font-size:14px;
  padding:4px 0 4px 16px;
  width: 160px;
}
.button-03{
  background: #43CFD6;
  color: #FFF;
  text-decoration: none;
  padding: 10px 30px;
  font-weight: 600;
  border-radius:30px;
  line-height:1.8;
  display: inline-flex;
  flex-direction: column;
  white-space: nowrap;
  border-radius: 30px;
  text-align: center;
}
a.button-03.no-hover{
  background: #FFF;
  color: #43CFD6;
  border:solid 3px #43CFD6;
  line-height:2;
}
a.button-03.no-hover:hover{
  opacity:1;
}
@media (min-width: 641px) {
  .button-03{
    display: inline;
    /* flex-direction: column; */
  }
}
.button-04{
  background: #fd6890;
  color: #FFF;
  text-decoration: none;
  padding: 10px 30px;
  font-weight: 600;
  border-radius:30px;
  border:solid 2px #fd6890;
  line-height: 1.5;
  display: inline-flex;
  flex-direction: column;
  white-space: nowrap;
  border-radius: 30px;
  text-align: center;
}
@media (min-width: 641px) {
  .button-04 {
    display: inline;
    flex-direction: column;
  }
}



.sub-menu {
  gap:10px;
}
.sub-menu img {
  height: 18px;
  vertical-align: sub;
  margin-right: 10px;
}

/* .mainvisual,
.swiper01-container{
  position: relative;
} */
/* 
.mainvisual-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32.29166667vw;
  max-width: 620px;
  z-index: 1;
} */

.section-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  /* position: relative; */
  /* top: -3vw; */
}

/* News List */
.news-list {
  background: #FFF url(./img/bg-border-sp.png);
  background-size: cover;
  padding: 20px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 2px solid #000;
}

.news-list li {
  border-top: 1px solid #707070;
  padding: 6px 0 10px;
}

.news-list-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.news-list-header .heading {
  color: #141c6c;
  font-size: 20px;
  line-height: 1;
  font-weight: bold;
}

.news-list-header .heading .icon {
  width: 24px;
  margin-right: 10px;
  position: relative;
  top: 3px;
}

.news-list-header a {
  color: #000;
  font-size: 14px;
  vertical-align: middle;
  line-height: 1;
}

.news-date,
.news-link {
  color: #727171;
  text-decoration: none;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.news-category,
.news-date {
  font-size: 14px;
  line-height: 1;
}

.news-link {
  display: block;
  width: 100%;
  transition: all .5s;
  font-size: 14px;
}

.news-category {
  text-decoration: none;
  padding: 4px 10px;
  transition: all .5s;
}

.news-category:hover {
  opacity: 0.5;
}

.news-link:hover {
  text-decoration: underline;
}

@media (min-width: 641px) {
  .news-list {
    padding: 40px;
    background: #FFF url(./img/bg-border.png);
  }

  .news-list-header .heading {
    font-size: 24px;
  }

  .news-list-header a {
    font-size: 18px;
  }

  .news-category,
  .news-date {
    font-size: 15px;
  }

  .news-link {
    width: auto;
    font-size: 16px;
  }
}

.info-box {
  align-items: center;
}
.news-list-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.news-list-header .heading {
  color: #141c6c;
  font-size: 24px;
  line-height: 1;
  font-weight: bold;
}

.news-list-header .heading .icon {
  width: 24px;
  margin-right: 10px;
}

.news-list-header a {
  color: #000;
  font-size: 18px;
  vertical-align: middle;
  line-height: 1;
}


.category-01 {
  color:#FFF;
  background-color: #f7883c;
}
.category-02 {
  color:#FFF;
  background-color:#6FCCD4;
}
.heading-01 {
  font-size:30px;
  font-weight: bold;
}
@media (min-width: 641px) {
  .heading-01 {
    font-size:40px;
  }
}
.heading-02 {
  font-size:33px;
  font-weight: bold;
  color:#43CFD6;
}
@media (min-width: 641px) {
  .heading-02 {
    font-size:46px;
  }
}
.heading-03 {
  font-weight: bold;
}
.heading-04 {
  font-size:35px;
  font-weight: bold;
  color:#43CFD6;
}
@media (min-width: 641px) {
  .heading-04 {
    font-size:100px;
  }
}
.heading-05 {
  background-size: 100% auto;
  padding: 20px 25px;
  background-image: url(img/bg-heading-05.png);
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  letter-spacing: 0.05em;
  list-style: 1.2;
}
@media (min-width: 641px) {
  .heading-05 {
    padding: 40px 20px;
    background-size: 808px auto;
  }
}

.heading-06 {
  text-align: center;
  background: #DBF5F2;
  border:solid 2px #141C6C;
  color: #141C6C;
  border-radius: 60px;
  line-height: 1.4;
  padding: 5px 0;
}
@media (min-width: 641px) {
  .heading-06 {
    padding: 15px 0;
  }
}
.heading-07 {
  border-bottom:solid 2px #141C6C;
  padding:0 15px 5px;
  color: #141C6C;
  /* display: flex;
  align-items: center; */
}
.heading-07 img{
  width: 45px;
  margin-right: 10px;
}
.heading-icon{
  letter-spacing: 0.1em;
  font-size: 36px;
  text-align: center;
}
.heading-icon span{
  position: relative;
  padding-left:55px;
}
@media (min-width: 641px) {
  .heading-icon{
    font-size: 50px;
  }
}
.heading-icon.educational-philosophy{
  color:#43CFD6;
}

/* .heading-icon.educational-philosophy span::before{
  content: "";
  background: url(img/guide/educational-philosophy-icon.svg);
  width:40px;
  height: 40px;
  position: absolute;
  left: 0;
  top:50%;
  transform: translateY(-50%);
}
@media (min-width: 641px) {
  .heading-icon.educational-philosophy span::before{
      width: 50px;
      height: 50px;
  }
}
.heading-icon.greeting-icon span{
  padding-left:60px;
}
.heading-icon.greeting-icon span::before{
  content: "";
  background: url(img/guide/greeting-icon.svg);
  width:50px;
  height:29px;
  position: absolute;
  left: 0;
  top:50%;
  transform: translateY(-50%);
}
@media (min-width: 641px) {
  .heading-icon.greeting-icon span{
    padding-left: 100px;
  }
  .heading-icon.greeting-icon span::before{
      width: 86px;
      height: 50px;
  }
} */
.buttons-01 {
  gap:20px;
  display: flex;
}
.buttons-01 a {
  width: 100%;
  display: inline-block;
  background-color: #6FCCD4;
  padding:10px;
  color:#FFF;
  text-decoration: none;
}
/* top event */

.event-header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: row-reverse;
}
.event-title-01 {
  font-size:80px;
  /* color:#727171; */
  font-weight: bold;
  line-height: 1.2;
}
@media (min-width: 641px) {
  .event-title-01 {
    font-size:100px;
  }
}
.event-title-02 {
  font-size:20px;
  font-weight: bold;
}
.event-catch,
.event-title {
  flex:0 0 auto;
  width:100%;
  text-align: center;
}
@media (min-width: 641px) {
  .event-catch,
  .event-title {
    width:50%;
  }
}
.bg-event {
  position: relative;
}
.bg-event::before {
  content:'';
  background-image:url(./img/bg-border-sp.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: calc(100% - 162px);
  z-index: -1;
  top:162px;
  left:0;
  position: absolute;
}
@media (min-width: 641px) {
  .bg-event::before {
    background-image:url(./img/bg-border.png);
  }  
  .bg-event::before {
    top:80px;
    height: 400px;
  }
}
.event-catch img {
  width: 400px;
}
/* .event-catch {
  position: relative;
}
.event-catch::after,
.event-catch::before {
  position: absolute;
  background-image: ;
} */
.event-content {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  /* height: 100%; */
  gap:30px;
}
.event-box {
  margin-top:40px;
  position: relative;
  border:2px solid #000;
  background-color: #fff;
  border-radius: 12px;
  padding-bottom: 20px;
}
@media (min-width: 641px) {
  .event-box {
    flex:0 0 auto;
    width:calc((100% - 60px) / 3);
  }
}
.event-box::before {
  content:'';
  display: block;
  position: absolute;
  background-image: url(./img/flag.png);
  background-repeat: no-repeat;
  background-size: 50px;
  height: 50px;
  width: 100%;
  top:-50px;
  left:10px;
}
.event-box::before {
  background-image: url(./img/index/event-figure01.png);
}
.event-box:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(./img/index/event-figure02.png);
  background-repeat: no-repeat;
  background-position: right top;
  top: 15px;
  right: -15px;
  background-size: cover;
  z-index: -1;
}
.event-box a {
  text-decoration: none;
  color: #000;
}
.event-box-thumbnail {
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 12px 12px 0 0;
}
.event-category {
  border-radius: 10px;
  padding:4px 10px;
  font-weight: bold;
  text-align: center;
  margin-bottom:20px;
  color: #fff;
  font-size: 16px;
}
.event-category-01 {
  background-color: #43cfd6;
}
.event-category-02 {
  background-color: #f7883c;
}
.event-box-bottom {
  padding: 10px 20px 40px;
  font-size: 16px;
}
.event-text {
  font-size: 15px;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.section-feature {
  margin-top: 80px;
  background-color: rgba(255, 251, 157, 0.3);
  padding: 60px 0;
}

.section-feature .heading {
  width: 90vw;
  margin: 0 auto;
}

.section-feature .lead {
  text-align: left;
  font-size: 14px;
  line-height: 1.75;
  margin: 20px 0 40px;
}

/* feature-itemの基本スタイル */
.feature-item {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 40px;
}

.feature-item-content {
  padding: 0;
  text-align: center;
  position: relative;
}

.feature-item-img {
  width: 100%;
  margin-top: 24px;
}

/* モバイルでの順序 */
@media (max-width: 640px) {
  .feature-item-img {
    order: 2;
  }
  
  .feature-item-content {
    order: 1;
  }
}

/* PCでの順序とレイアウト */
@media (min-width: 641px) {
  .feature-item {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 24px;
  }

  .feature-item-content {
    padding: 24px;
  }

  /* 奇数番号のfeature-itemは画像が左側 */
  .feature-item01 .feature-item-img,
  .feature-item03 .feature-item-img,
  .feature-item05 .feature-item-img {
    order: 1 !important;
  }

  .feature-item01 .feature-item-content,
  .feature-item03 .feature-item-content,
  .feature-item05 .feature-item-content {
    order: 2 !important;
  }

  /* 偶数番号のfeature-itemは画像が右側 */
  .feature-item02 .feature-item-img,
  .feature-item04 .feature-item-img {
    order: 2 !important;
  }

  .feature-item02 .feature-item-content,
  .feature-item04 .feature-item-content {
    order: 1 !important;
  }
}

/* feature-itemの追加スタイル */
.feature-item .number {
  width: 20vw;
}

.feature-item .feature-item-title {
  color: #141c6c;
  font-size: 24px;
}

.feature-item .feature-item-text {
  font-size: 14px;
  color: #000;
}

.feature-item .icon {
  position: absolute;
  right: 20px;
  top: 4vw;
}

/* PCでの追加スタイル */
@media (min-width: 641px) {
  .feature-item .number {
    width: 120px;
  }

  .feature-item .feature-item-title {
    font-size: 30px;
  }
}

.feature-item01 .icon {
  width: 27vw;
  margin-left: 0;
}

.feature-item02 .icon {
  width: 13vw;
}

.feature-item03 .icon {
  width: 26vw;
}

.feature-item04 .icon {
  width: 13vw;
}

.feature-item05 .icon {
  width: 20vw;
}

.feature-item01 .links {
  margin: 12px auto 24px;
  max-width: 358px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  justify-content: center;
}

.feature-item01 .links li {
  width: 70vw;
  margin: 0 auto;
}

.feature-item01 .feature-item-title {
  margin-top: 12px;
  font-weight: 600;
}

.feature-item-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

.feature-item-head .headbox {
  padding-left: 0;
  width: 100%;
}

.feature-item-head .feature-item-title {
  text-align: center;
  padding-top: 12px;
  font-weight: 600;
  width: 100%;
  font-size: 24px;
}

.feature-item-head .feature-item-text {
  text-align: center;
  margin-top: 8px;
  color: #000;
  justify-content: center;
}

.feature-item-head .number {
  margin: 0 auto;
}

.feature-item03 .feature-item-text {
  color: #9f2929;
  font-size: 20px;
  display: flex;
  align-items: center;
  margin-top: 18px;
  line-height: 1;
}

.feature-item03 .feature-item-text .highlight {
  font-size: 40px;
  margin-left: 8px;
  font-weight: 500;
}

.feature-item04 .feature-item-title {
  text-align: center;
}

.feature-item04 .feature-item-text {
  color: #9f2929;
  font-size: 40px;
  text-align: center;
  margin-top: 10px;
  line-height: 1;
}

.feature-item .annotation {
  font-size: 16px;
  color: #000;
  margin-top: 18px;
}

.feature-item03 .annotation {
  color: #9f2929;
}

.feature-item-img {
  width: 100%;
  margin-top: 24px;
}

.feature-item01 .feature-item-img,
.feature-item03 .feature-item-img,
.feature-item05 .feature-item-img {
  order: 1;
}

.feature-item02 .feature-item-img,
.feature-item04 .feature-item-img,
.feature-item06 .feature-item-img {
  margin-left: auto;
}

@media (min-width: 641px) {
  .section-feature {
    margin-top: 120px;
    padding: 80px 0;
  }

  .section-feature .heading {
    width: 100%;
    max-width: 760px;
  }

  .section-feature .lead {
    text-align: center;
  }

  .feature-item {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 24px;
  }

  .feature-item-content {
    padding: 24px;
  }

  .feature-item .number {
    width: 120px;
  }

  .feature-item .feature-item-title {
    font-size: 30px;
  }

  .feature-item01 .icon {
    width: 160px;
    margin-left: 12px;
    position: relative;
    right: auto;
    top: auto;
  }

  .feature-item02 .icon {
    bottom: 30px;
    right: 40px;
    width: 90px;
    top: auto;
  }

  .feature-item03 .icon {
    left: 30px;
    bottom: 80px;
    width: 160px;
    right: auto;
    top: auto;
  }

  .feature-item04 .icon {
    width: 80px;
    right: 30px;
    bottom: 40px;
    top: auto;
  }

  .feature-item05 .icon {
    width: 110px;
    right: 30px;
    bottom: 40px;
    top: auto;
  }

  .feature-item01 .links {
    grid-template-columns: 1fr 1fr;
  }

  .feature-item01 .links li {
    width: auto;
  }

  .feature-item-head {
    flex-direction: row;
  }

  .feature-item-head .headbox {
    padding-left: 18px;
  }

  .feature-item-head .feature-item-title {
    text-align: left;
  }

  .feature-item-head .feature-item-text {
    text-align: left;
  }

  .feature-item02 .feature-item-img,
  .feature-item04 .feature-item-img,
  .feature-item06 .feature-item-img {
    order: 2;
  }

  .feature-item02 .feature-item-content,
  .feature-item04 .feature-item-content,
  .feature-item06 .feature-item-content {
    order: 1;
  }
}

@media (max-width: 640px) {
  .feature-item-img {
    order: 2;
  }
  
  .feature-item-content {
    order: 1;
  }
}

.section-faq {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-faq .heading {
  text-align: center;
  font-size: 42px;
  color: #141c6c;
}

.faq-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 40px;
  align-items: center;
}

.faq-item {
  width: 220px;
  text-align: center;
}

.faq-item a {
  display: block;
  width: 100%;
  padding: 12px;
  border: 1px solid #000;
  border-radius: 50px;
  text-align: center;
  text-decoration: none;
  background-color: #7de8a0;
  color: #000;
}
.section-cta {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #fff url(./img/bg-border.png);
}

.section-cta .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.section-cta .list li {
  width: 480px;
  text-align: center;
}
.bg-frame-bottom,
.bg-frame-top {
  position: relative;
}
.bg-frame-top {
  margin-bottom:100px;
}
.bg-frame-bottom::before,
.bg-frame-bottom::after,
.bg-frame-top::before,
.bg-frame-top::after {
  content:'';
  position: absolute;
  width: 60px;
  height: 60px;
  background-size: 60px 60px;
  /* z-index: 0; */
}
.bg-frame-top::before {
  background-image: url(./img/frame-left-top.png);
  top:0;
  left:0;
}
.bg-frame-top::after {
  background-image: url(./img/frame-right-top.png);
  top:0;
  right:0;
}
.bg-frame-bottom::before {
  background-image: url(./img/frame-left-bottom.png);
  bottom:0;
  left:0;
}
.bg-frame-bottom::after {
  background-image: url(./img/frame-right-bottom.png);
  bottom:0;
  right:0;
}
@media (min-width: 641px) {
  .bg-frame-bottom::before,
  .bg-frame-bottom::after,
  .bg-frame-top::before,
  .bg-frame-top::after {
    width: 132.5px;
    height: 132.5px;
    background-size: 132.5px 132.5px;
  }
}
.menu-list {
  display: flex;
  flex-direction: column;
  gap:40px;
  padding:40px 20px;
}
.menu-row {
  display: flex;
  flex-wrap: wrap;
  gap:10px;
}
@media (min-width: 641px) {
  .menu-list {
    padding:60px 60px;
  }
  .menu-row {
    display: flex;
    flex-wrap: wrap;
    gap:60px;
  }  
  .menu-image {
    flex:0 0 auto;
    width:25%;
  }
  .menu-content {
    flex:0 0 auto;
    width:calc(75% - 60px);
  }
}
.menu-title {
  font-size:28px;
  font-weight: bold;
  width: 100%;
}
@media (min-width: 641px) {
  .menu-title {
    font-size:40px;
    width: auto;
  }
}
.menu-link {
  width:100%;
  text-align: right;
}
@media (min-width: 641px) {
  .menu-link {
    width:auto;
    text-align: right;
  }
}
.menu-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom:2px solid #6FCCD4;
  padding-bottom:10px;
  margin-bottom:10px;
}
.more {
  display: inline-block;
  padding:2px 10px;
  border-radius:20px;
  text-decoration: none;
}
.check {
  width: 140px;
}
.guide {
  padding-bottom:200px;
}
.guide-heading {
  font-size:36px;
  font-weight: bold;
  text-align: center;
}
@media (min-width: 641px) {
  .guide-heading {
    text-align: left;
  }
}
.guide-title,
.guide-content {
  width: 100%;
}
.guide-title {
  font-size:33px;
  font-weight: bold;
  text-align: center;
}
.guide-list {
  display: flex;
  flex-wrap: wrap;
  gap:60px;
}
.guide-row {
  width: 100%;
  gap:40px;
  /* margin-bottom:60px; */
}
@media (min-width: 641px) {
  .guide-title {
    font-size:36px;
    /* text-align: left; */
  }
  .guide-image {
    width:60%;
  }
  .guide-content {
    width:calc(40% - 40px);
  }
}
.num {
  width:94px;
  margin-bottom:20px;
}
@media (min-width: 641px) {
  .num {
    width:140px;
    margin-bottom:40px;
  }
}
.school-header {
  padding:40px 0;
}
.school-text {
  font-weight: bold;
  font-size:22px;
}
.school-heading img {
  width: 70px;
  margin-right: 14px;
}
.school-heading h1 {
  font-size: 26px;
  line-height: 1.5;
  font-weight: bold;
}
.buttons-02 {
  padding:60px 0;
}
.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap:20px;
  padding-top:80px;
  padding-bottom:40px;
}
.footer address {
  font-style: normal;
}
.footer-left {
  width: 100%;
}
.footer-right {
  /* width: 100%; */
  display: none;
}
@media (min-width: 641px) {
  .footer-left {
    width: calc(15% - 10px);
  }
  .footer-right {
    display: block;
    width: calc(85% - 10px);
  }
}
.footer .footer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.footer-logo img {
  width: 50px;
  margin-right: 14px;
}
.footer-logo h1 {
  font-size: 18px;
  line-height: 1.5;
  color:#727171;
}
footer .row-reverse {
  padding: 20px 20px 80px 20px;
  font-size: 12px;
}
@media (min-width: 641px) {
  footer .row-reverse {
      padding: 20px;
  }
}
.news-category:hover {
  opacity: 1;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap:10px;
}
.footer-menu-02 {
  gap:20px;
  flex-wrap: wrap;
  /* justify-content: flex-end; */
  display: none;
}
@media (min-width: 641px) {
  .footer-menu-02 {
      display: flex;
  }
}
.footer-menu-02 a {
  text-decoration: none;
  color:#727171;
}
.footer-menu .sub-menu li {
  margin-bottom:10px;
}
.footer-menu a {
  color:#727171;
  text-decoration:none;
}

@media (min-width: 641px) {
  .footer-menu-col {
    margin:0 15px;
    /* width:calc((100% - 10px) / 7); */
  }
}
.footer-menu .sub-menu {
  font-size: 13px;
  /* padding-left:1em; */
}
#footer-btn {
  z-index: 10;
  width: 100%;
  text-align: center;
  position: fixed;
  bottom: 0;
  display: flex;
  justify-content: center;
}
@media (min-width: 641px) {
  #footer-btn {
    display: none;
  }
}
#footer-btn > div {
  width: 100%;
}
#footer-btn > div a {
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  padding: 15px 10px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  width: 100%;
  height: 100%;
}
#footer-btn > div a i {
  font-size: 18px;
  margin-right: 5px;
}
#footer-btn > div.box1 a {
  color: #000;
  background: #43CFD6;
}
#footer-btn > div.box2 a {
  color: #000;
  background: #fd6890;
}
#footer-btn > div.box3 a {
  color: #FFF;
  background: #7E2A8A;
}
#footer-btn img{
  width: 20px;
  margin-right: 5px;
}

.pagetop-btn{
  display:none;
  position:fixed;
  right:16px;
  bottom: calc(60px + env(safe-area-inset-bottom)); /* ← 固定フッターが60pxなら */
  z-index: 9;
  width:80px;
  height:auto;
  text-decoration:none;
}
@media (min-width:641px){
  .pagetop-btn{ bottom: 30px; right: 15px; width: 130px; }
}
.pagetop-btn:hover{ opacity:.8; }

.deco-01 {
  position: relative;
  padding-top:60px;
}
.deco-01::before {
  position: absolute;
  content:'';
  background-image: url(./img/circle-01.png);
  width: 150px;
  height: 157.5px;
  background-size: 150px 157.5px;
  top:0;
  left:-90px;
  z-index: -2;
}
.deco-01::before {
  background-image: url(./img/index/section01-img03.png);
  width: 275px;
  height: 361px;
  background-size: 275px 361px;
  top: 200px;
  left: -260px;
}

@media (min-width: 641px) {
  .deco-01::before {
    width: 200px;
    height: 210px;
    background-size: 200px 210px;
    top:200px;
    left:-200px;
  }
}
.deco-02 {
  position: relative;
  padding-top:100px;
}
.deco-02::after {
  position: absolute;
  content:'';
  background-image: url(./img/circle-02.png);
  width: 140px;
  height: 140px;
  background-size: 140px 140px;
  top:180px;
  right:-60px;
  z-index: -2;
}
@media (min-width: 641px) {
  .deco-02::before {
    position: absolute;
    content:'';
    background-image: url(./img/circle-03.png);
    width: 260px;
    height: 260px;
    background-size: 260px 260px;
    top:0;
    left:-260px;
    z-index: -2;
  }
  .deco-02::after {
    position: absolute;
    content:'';
    background-image: url(./img/circle-02.png);
    width: 200px;
    height: 200px;
    background-size: 200px 200px;
    top:200px;
    right:-100px;
    z-index: -2;
  }
}
.deco-03 {
  position: relative;
}
.deco-03::before {
  position: absolute;
  content:'';
  background-image: url(./img/triangle-01.png);
  width: 80px;
  height: 92px;
  background-size: 80px 92px;
  top:400px;
  left:-40px;
  z-index: -2;
}
.deco-03::after {
  position: absolute;
  content:'';
  background-image: url(./img/circle-04.png);
  width: 180px;
  height: 180px;
  background-size: 180px 180px;
  top:100px;
  right:-80px;
  z-index: -2;
}
@media (min-width: 641px) {
  .deco-03::before {
    width: 80px;
    height: 92px;
    background-size: 80px 92px;
    top:200px;
    left:-100px;
  }
  .deco-03::after {
    width: 240px;
    height: 240px;
    background-size: 240px 240px;
    top:60px;
    right:-80px;
  }
}
.deco-04 {
  position: relative;
}
.deco-04::before {
  position: absolute;
  content:'';
  background-image: url(./img/circle-02.png);
  width: 160px;
  height: 160px;
  background-size: 160px 160px;
  bottom:20px;
  left:-100px;
  z-index: -2;
}
.deco-04::after {
  position: absolute;
  content:'';
  background-image: url(./img/triangle-04.png);
  width: 200px;
  height: 174px;
  background-size: 200px 174px;
  bottom:160px;
  right:-60px;
  z-index: -2;
}
@media (min-width: 641px) {
  .deco-04::before {
    width: 260px;
    height: 260px;
    background-size: 260px 260px;
    bottom:20px;
    left:-100px;
  }
  .deco-04::after {
    width: 400px;
    height: 348px;
    background-size: 400px 348px;
    bottom:160px;
    right:-80px;
  }
}
.deco-05 {
  position: relative;
}
.deco-05::before {
  position: absolute;
  content:'';
  background-image: url(./img/circle-06.png);
  width: 220px;
  height: 220px;
  background-size: 220px 220px;
  top:400px;
  left:-140px;
  z-index: -2;
}
.deco-05::after {
  position: absolute;
  content:'';
  background-image: url(./img/circle-04.png);
  width: 180px;
  height: 180px;
  background-size: 180px 180px;
  top:100px;
  right:-80px;
  z-index: -2;
}
@media (min-width: 641px) {
  .deco-05::before {
    width: 220px;
    height: 220px;
    background-size: 220px 220px;
    top:1180px;
    left:-100px;
  }
  .deco-05::after {
    width: 240px;
    height: 240px;
    background-size: 240px 240px;
    top:1340px;
    right:-80px;
  }
}
.deco-06 {
  position: relative;
}
.deco-06::before {
  position: absolute;
  content:'';
  background-image: url(./img/triangle-01.png);
  width: 40px;
  height: 46px;
  background-size: 40px 46px;
  bottom:80px;
  left:20px;
  z-index: -2;
}
.deco-06::after {
  position: absolute;
  content:'';
  background-image: url(./img/triangle-04.png);
  width: 200px;
  height: 174px;
  background-size: 200px 174px;
  bottom:10px;
  right:-60px;
  z-index: -2;
}
@media (min-width: 641px) {
  .deco-06::before {
    width: 160px;
    height: 184px;
    background-size: 160px 184px;
    bottom:20px;
    right:300px;
  }
  .deco-06::after {
    width: 400px;
    height: 348px;
    background-size: 400px 348px;
    bottom:160px;
    right:-80px;
  }
}
.deco-07 {
  position: relative;
}
.deco-07::before {
  position: absolute;
  content:'';
  background-image: url(./img/triangle-01.png);
  width: 40px;
  height: 46px;
  background-size: 40px 46px;
  top:600px;
  right:40px;
  z-index: -2;
}
@media (min-width: 641px) {
  .deco-07::before {
    width: 80px;
    height: 92px;
    background-size: 80px 92px;
    top:300px;
    right:0;
  }
}

.front-01 {
  display: flex;
  flex-wrap: wrap;
  gap:30px;
}
.front-01-col {
  width:100%;
}
@media (min-width: 641px) {
  .front-01-col {
    width:calc((100% - 30px) / 2);
  }
}
.front-02 {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  gap:30px;
}
.front-02-col {
  width:100%;
}
@media (min-width: 641px) {
  .front-02 {
    gap:0;
  }
  .front-02-col {
    width:calc(100% / 2);
  }
}

.flex01 {
  display: flex;
  flex-wrap: wrap;
  gap:30px;
  align-items: stretch;
}
.flex01-col {
  width:100%;
}
@media (min-width: 641px) {
  .flex01-col {
    /* width:calc(50% - 15px); */
    width:calc((100% - 30px) / 2);
  }
}
.row-reverse {
  flex-direction: row-reverse;
}
/* top about */
.section-bg {
  background-image: url(./img/index/about-figure06.png);
  background-position: center 120px;
  background-repeat: no-repeat;
  background-size: 1640px;
  position: relative;
  padding-top: 200px;
}
.section-about .heading {
  width: 658px;
  margin-left: auto;
  margin-right: auto;
}

.section-about .lead {
  text-align: center;
  font-size: 14px;
  line-height: 1.75;
  margin-top: 20px;
  margin-bottom: 40px;
}

.section-about .about-box01 {
  position: relative;
}

.section-about .about-box01::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  background-size: 60px 60px;
  z-index: 0;
  background-image: url(../img/frame-left-top.png);
  top: 40px;
  left: 40px;
}

.section-about .about-box01::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  background-size: 60px 60px;
  background-image: url(../img/frame-right-top.png);
  top: 40px;
  right: 40px;
}

.section-about .about-box02::before,
.section-about .about-box02::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  background-size: 60px 60px;
  bottom: -20px;
}

.section-about .about-box02::before {
  background-image: url(../img/frame-left-bottom.png);
  left: 40px;
}

.section-about .about-box02::after {
  background-image: url(../img/frame-right-bottom.png);
  right: 40px;
}

.section-about .about-box01 .sub-heading {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  font-size: 28px;
  color: #141c6c;
  font-weight: 600;
}

.section-about .about-box02 .sub-heading {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  font-size: 28px;
  color: #f7883c;
  font-weight: 600;
}

.section-about .about-box01 .sub-heading img {
  width: 100px;
  margin-left: 10px;
}

.section-about .about-box02 {
  margin-top: 60px;
  padding-bottom: 40px;
  position: relative;
}

.section-about .about-box02 .sub-heading img {
  width: 170px;
  margin-right: 10px;
}
.section-about .about-box01 .list{
  margin-top: 24px;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

/* .section-about .about-box01 .list, */
.section-about .about-box02 .list {
  margin-top: 24px;
  display: grid;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

/* .section-about .about-box01 .list {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
} */

.section-about .about-box02 .list {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
}

.section-about .about-box02 li {
  display: flex;
  flex-wrap: wrap;
}

/* top become */

.section-become {
  padding-top: 80px;
}
.section-become .heading {
  padding-top: 40px;
  padding-bottom: 40px;
  background-image: url(./img/index/become-img01.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 808px auto;
  text-align: center;
  color: #fd6890;
  font-size: 55px;
  letter-spacing: 0.05em;
}

.section-become .lead {
  text-align: center;
  font-size: 14px;
  line-height: 1.75;
  margin-top: 20px;
  margin-bottom: 40px;
}

.section-become .figure01 {
  margin-top: 70px;
  width: 100%;
  max-width: 317px;
  margin-left: auto;
  margin-right: auto;
}

.box01 {
  background-color: #fffdd9;
  padding:30px;
  border-radius:20px;
  height: 100%;
  min-height: 300px;
}
.box01-inner {
  background-color: #FFF;
}
.gap-10 {
  gap:10px;
}
.gap-20 {
  gap:20px;
}
.gap-30 {
  gap:30px;
}
.lower-header{
  padding: 30px 0;
  margin-bottom:30px;
}
@media (min-width: 641px) {
  .lower-header{
    margin-bottom: 50px;
  }
}
.lower-title{
  /* color: #141C6C; */
  color: #FD6890;
  text-align: center;
  font-size: 24px;
  margin:0 15px;
  line-height: 1.2;
}

@media (min-width: 641px) {
  .lower-title{
      font-size:55px;
  }
}
.new-line span{
  display: inline-block;
}
.single-block,
.page-block{
  padding: 30px 10px;
}
@media (min-width: 641px) {
  .single-block,
  .page-block{
    padding: 100px 10px;
  }
}
.page-block-pt-0{
  padding: 0px 10px 30px;
}
@media (min-width: 641px) {
  .page-block-pt-0{
    padding: 0px 10px 100px;
  }
}
.page-block-pb-0{
  padding: 30px 10px 0;
}
@media (min-width: 641px) {
  .page-block-pb-0{
    padding: 100px 10px 0;
  }
}

.bg-chairman{
 background: rgb(194,221,244);
 background: linear-gradient(90deg, rgba(194,221,244,1) 0%, rgba(218,236,248,1) 60%, rgba(255,255,255,0) 100%);
}
.lh-14{
  line-height: 1.4;
}
.ls-001{
  letter-spacing:0.1em;
}
.radius-15{
  border-radius: 15px;
}

.list-style{
  list-style:disc;
  padding-left: 20px;
}

.list-style02 li{
  position: relative;
  padding-left: 20px;
  margin: 7px 0;
}
.list-style02 li::before{
  content: "";
  background: url(img/list-style02-icon.svg) no-repeat;
  width:15px;
  height:15px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  background-size: contain;
  left: 0;
}

.icon-txt{
  padding-left:1em;
  text-indent: -1em;
}
.check-icon{
  width: 80px;
  margin-left: 30px;
}
.border-box > li{
  padding:15px;
  border-top: solid 3px #43CFD6;
}
.border-box > li:last-child{
  border-bottom: solid 3px #43CFD6;
}
@media (min-width: 641px) {
  .border-box > li{
    padding:30px 25px;
  }
}
.border-box02{
  padding: 20px 20px 30px;
  border-radius: 20px;
  background: #DBF5F2;
  color: #000;
}

.number{
  width:50px;
}
@media (min-width: 641px) {
  .number{
    width: 80px;
  }
}
.table-scroll{
  overflow-x: scroll;
  padding-bottom: 15px;
}
@media (min-width: 641px) {
  .table-scroll{
    overflow-x: auto;
  }
}
.table-scroll .table{
  min-width: 800px;
}

.table{
  width: 100%;
  border-collapse: collapse;
}
.schedule-table{
  border-top: solid 3px #43CFD6;
  border-left: solid 1px #43CFD6;
  border-bottom: solid 3px #43CFD6;
}
.schedule-table thead th{
  background: #DBF5F2;
  color: #000;
  border-right: solid 1px #43CFD6;
  border-bottom: solid 1px #43CFD6;
  padding: 15px 5px;
}
.schedule-table thead th:last-child{
  width: 150px;
}
.schedule-table tbody td{
  padding: 15px 5px;
  text-align: center;
  border-right: solid 1px #43CFD6;
  border-bottom: solid 1px #43CFD6;
}

.curriculum-table{
  border-top: solid 3px #43CFD6;
  border-left:solid 1px #43CFD6;
  border-right: solid 1px #43CFD6;
  border-bottom: solid 3px #43CFD6;
}
.curriculum-table th{
  background: #DBF5F2;
  color: #000;
  border-bottom:solid 1px #43CFD6;
}
.curriculum-table tr:last-child th{
  border-bottom: solid 1px #43CFD6;
}
.curriculum-table td{
  padding: 15px;
  border-bottom: solid 1px #43CFD6;
}
@media (max-width: 641px) {
  .curriculum-table th,
  .curriculum-table td{
    display: block;
    width: 100%;
  }
}

.timetable{
  border-top: solid 3px #43CFD6;
  border-left:solid 1px #43CFD6;
  border-right: solid 1px #43CFD6;
  border-bottom: solid 3px #43CFD6;
  text-align: center;
}
.timetable thead th{
  background: #DBF5F2;
  color: #000;
  padding: 5px;
  border-bottom: solid 1px #43CFD6;
  border-right: solid 1px #43CFD6;
}
.timetable tbody th{
  width: 80px;
  color: #000;
  border-bottom: solid 1px #43CFD6;
  border-right: solid 1px #43CFD6;
}
.timetable tbody td{
  padding: 5px;
  border-bottom: solid 1px #43CFD6;
  border-right: solid 1px #43CFD6;
}
.pass-rate-table{
  max-width: 400px;
  margin: 0 auto 50px;
}
.pass-rate-table thead th{
  border-right: #FFF solid 1px ;
}
.pass-rate-table thead th,
.pass-rate-table thead td{
  background: #43CFD6;
  color: #333;
  border-top: #43CFD6 solid 3px ;
  border-left: #43CFD6 solid 1px ;
  border-bottom: #43CFD6 solid 1px ;
  text-align:center;
  font-weight: 600;
}
.pass-rate-table tbody th,
.pass-rate-table tbody td{
  font-weight: normal;
  border: #43CFD6 solid 1px ;
  color: #333;
  padding: 5px 15px;
  text-align:center;
}
.pass-rate-table tfoot th,
.pass-rate-table tfoot td{
  font-weight: 600;
  border-top: #43CFD6 solid 3px ;
  border-left: #43CFD6 solid 1px ;
  border-right: #43CFD6 solid 1px ;
  border-bottom: #43CFD6 solid 1px ;
  color: #141C6C;
  padding: 5px 15px;
  text-align:center;
}

.faq {
    margin-bottom: 5px;
}
/* .faq .question {
    display: flex;
    align-items: center;
    position: relative;
    padding: 1em 2em 1em 3em;
    color: #333333;
    font-weight: 600;
    background: #fefcd5;
}
.faq .question::before {
    position: absolute;
    left: 1em;
    font-weight: 600;
    font-size: 1.3em;
    color: #75bbff;
    content: "Q";
}
.faq .answer {
    position: relative;
    margin: 0;
    padding: .3em 3em 1.5em;
    color: #333;
    opacity: 1;
}
.faq .answer::before {
    position: absolute;
    left: 1em;
    font-weight: 600;
    font-size: 1.3em;
    color: #ff8d8d;
    content: "A";
} */
 .faq .question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em 1em 3em;
  color: #333333;
  font-weight: 600;
  background: #fefcd5;
  cursor: pointer;
}
.faq .question::before {
  position: absolute;
  left: 1em;
  font-weight: 600;
  font-size: 1.3em;
  color: #75bbff;
  content: "Q";
}
.faq .toggle-icon {
  font-size: 1.2em;
  font-weight: bold;
  color: #75bbff;
  margin-left: auto;
}
.faq .answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 3em;
  color: #333;
  position: relative;
}
.faq .answer::before {
  position: absolute;
  left: 1em;
  font-weight: 600;
  font-size: 1.3em;
  color: #ff8d8d;
  content: "A";
}
.faq.open .answer {
  max-height: 500px; /* 想定される最大高さより大きめに */
  padding: .3em 3em 1.5em;
}
/* .faq.open .answer {
  display: block;
} */
.faq.open .toggle-icon {
  content: "−";
  color: #ff8d8d;
}
.tuition-table{
  border-top: solid 1px #43CFD6;
  margin-top: 10px;
}
.tuition-table th{
  background: #DBF5F2;
  border-bottom: solid 1px #43CFD6;
  color: #000;
  padding: 5px 15px;
}
.tuition-table td{
  padding: 5px 15px;
  background: #FFF;
  border-bottom: solid 1px #43CFD6;
}
@media (max-width: 641px) {
  .tuition-table th,
  .tuition-table td{
    display: block;
    width: 100%;
  }
}

.post {
  background-image: url(../img/index/about-figure06.png);
  background-position: center 0;
  background-repeat: no-repeat;
  background-size: 1640px;
  position: relative;
}

.post-header {
  margin-bottom: 15px;
}

.post-title {
  font-size: 24px;
  margin: 0;
  font-weight: 600;
}

.post-meta {
  font-size: 14px;
  color: #666;
}

.post-content {
  margin-top: 20px;
}

.post-footer {
  margin-top: 20px;
  font-size: 14px;
  color: #666;
}
/* Archive */

.p-detailMain {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #fff url(./img/bg-border.png);
  text-align: center;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media print, screen and (max-width: 999px) {
  .p-detailMain {
    width: 100%;
    background-position: right center;
    -webkit-background-size: cover;
    background-size: cover;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.p-detailMain .title {
  font-size: 30px;
  line-height: 1.4;
  margin-left: auto;
  margin-right: auto;
  font-weight: 600;
  color: #000;
}

.p-detailMain .title-text {
}
@media print, screen and (max-width: 999px) {
  .p-detailMain .title {
    font-size: 20px;
    line-height: 1.4;
  }
}

.p-news {
  padding-bottom: 100px;
}

.p-news .list {
  margin-top: 80px;
}
@media print, screen and (max-width: 999px) {
  .p-news .list {
    margin-top: 40px;
  }
}
.p-news .list .item {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #ddd;
  font-size: 14px;
  line-height: 2;
}
@media print, screen and (max-width: 999px) {
  .p-news .list .item {
    font-size: 12px;
    line-height: 2;
    padding-bottom: 8px;
    margin-bottom: 8px;
  }
}
.p-news .list .item .data {
  color: #959595;
}
.p-news .list .item .title {
  font-weight: bold;
}

.p-news .list .item .title a {
  color: #000;
}

.p-event {
  padding-top: 50px;
}
@media print, screen and (max-width: 999px) {
  .p-event {
    padding-top: 10px;
  }
}

.p-event .list li {
}

.p-single {
  padding-bottom: 120px;
}

.p-single .entry {
  margin-top: 80px;
}
@media print, screen and (max-width: 999px) {
  .p-single .entry {
    margin-top: 40px;
  }
}

.p-single .title {
  font-size: 30px;
  line-height: 1.6;
  font-weight: 700;
}
@media print, screen and (max-width: 999px) {
  .p-single .title {
    font-size: 20px;

    line-height: 1.8;
  }
}

.p-single .post-thumbnail {
  margin-bottom: 24px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  /* width: 100%;
  object-fit: cover;
  margin-bottom: 24px;
  text-align: center; */
}
.p-single .post-thumbnail img {
  height: auto;
}

.p-single .data {
  font-size: 14px;
  line-height: 1;
  color: #959595;
  font-weight: 700;
  margin-top: 8px;
}
@media print, screen and (max-width: 999px) {
  .p-single .data {
    font-size: 12px;

    line-height: 1;
  }
}

.p-single .content {
  margin-top: 60px;
}
@media print, screen and (max-width: 999px) {
  .p-single .content {
    margin-top: 30px;
  }
}
.p-single .content h2 {
  font-size: 28px;
  line-height: 1.21429;
  margin: 40px 0 24px;
  font-weight: 700;
}
@media print, screen and (max-width: 999px) {
  .p-single .content h2 {
    font-size: 20px;

    line-height: 1.2;
  }
}
.p-single .content h3 {
  font-size: 20px;
  line-height: 1.2;
  margin: 40px 0 16px;
  padding-left: 14px;
  font-weight: 700;
  border-left: 5px solid #333;
}
.p-single .content h4 {
  font-size: 20px;
  line-height: 1.2;
  margin: 40px 0 16px;
  font-weight: 700;
}
@media print, screen and (max-width: 999px) {
  .p-single .content h4 {
    font-size: 16px;

    line-height: 1.25;
  }
}
.p-single .content ul {
  margin: 40px 0 16px;
}
.p-single .content ul li {
  font-size: 16px;
  line-height: 2;
  position: relative;
  padding: 0 0 0 18px;
  font-weight: 700;
}
.p-single .content ul li:after {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  background: #010101;
  display: block;
  top: 50%;
  left: 0;
}
.p-single .content ol {
  margin: 40px 0 16px;
  counter-reset: item;
}
.p-single .content ol li {
  font-size: 16px;
  line-height: 2;
  position: relative;
  padding: 0 0 0 24px;
  font-weight: 700;
}
.p-single .content ol li:after {
  position: absolute;
  content: counter(item) ".";
  left: 0;
}
.p-single .content blockquote {
  margin: 40px 0 40px;
  background: #f7f7f7;
  border-radius: 4px;
  padding: 40px;
  font-size: 16px;
  line-height: 2;
  position: relative;
}
.p-single .content blockquote:before {
  display: inline-block;
  position: absolute;
  top: 13px;
  left: 15px;
  content: "\f10d";
  font-family: FontAwesome;
  color: #ccc;
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
}
.p-single .content blockquote p {
  color: #797979;
}
.p-single .content em {
  font-style: italic;
}
.p-single .content a {
  color: #000;
  text-decoration: underline;
}
.p-single .content p {
  font-size: 16px;
  line-height: 2;
}

.p-single .button {
  width: 280px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
  text-align: center;
}
@media print, screen and (max-width: 999px) {
  .p-single .button {
    width: 100%;
    margin-top: 30px;
  }
}
.p-single .button a {
  width: 100%;
  display: block;
  color: #00275d;
  font-size: 14px;
  line-height: 1.77778;
  padding: 20px 0;
  border: 1px solid #00275d;
  transition: all 0.3s ease-out;
  text-decoration: none;
  border-radius: 50px;
}
@media print, screen and (max-width: 999px) {
  .p-single .button a {
    font-size: 14px;
    line-height: 1.85714;
    padding: 12px 0;
  }
}

.o-pagenation {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}
@media print, screen and (max-width: 999px) {
  .o-pagenation {
    margin-top: 30px;
  }
}
.o-pagenation li {
  margin-left: 8px;
  text-align: center;
  border-radius: 50%;
}
@media print, screen and (max-width: 999px) {
  .o-pagenation li {
    margin-left: 4px;
  }
}
.o-pagenation li.is-active {
  background: #f0f0f0;
}
.o-pagenation li a {
  width: 30px;
  height: 30px;
  display: block;
  color: #40494e;
  font-size: 16px;
  line-height: 1;
  line-height: 27px;
  transition: all 0.2s ease-out;
  border: 1px solid #333333;
  text-decoration: none;
  border-radius: 50%;
}
@media print, screen and (max-width: 999px) {
  .o-pagenation li a {
    width: 30px;
    height: 30px;
    font-size: 14px;
    line-height: 1;
    line-height: 26px;
  }
}

@media print, screen and (max-width: 640px) {
  /* .mainvisual-text {
    width: 90vw;
  } */

  .section-info {
    top: 0;
    padding-top: 20px;
    gap: 20px;
  }

  .section-bg {
    padding-top: 20px;
  }
  .section-about .heading {
    width: 90vw;
  }

  .section-about .lead {
    text-align: left;
  }

  .section-about .about-box01::before,
  .section-about .about-box01::after,
  .section-about .about-box02::before,
  .section-about .about-box02::after {
    width: 50px;
    height: 50px;
    background-size: 50px 50px;
  }

  .section-about .about-box01::before,
  .section-about .about-box01::after {
    top: 17vw;
  }

  .section-about .about-box01::before,
  .section-about .about-box02::before {
    left: 0;
  }

  .section-about .about-box01::after,
  .section-about .about-box02::after {
    right: 0;
  }

  .section-about .about-box02::before,
  .section-about .about-box02::after {
    bottom: 0;
  }
  .section-about .about-box01 .list{
    width: 80vw;
  }
  /* .section-about .about-box01 .list, */
  .section-about .about-box02 .list {
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    width: 80vw;
  }
  /* .section-about .about-box02 .list {
    width: 80vw;
  } */

  .section-about .about-box01 .sub-heading,
  .section-about .about-box02 .sub-heading {
    font-size: 24px;
  }
  .section-about .about-box01 .sub-heading img {
    width: 60px;
  }

  .section-about .about-box02 .sub-heading img {
    width: 100px;
  }

  /* .section-about .about-box01 .list {
    margin-top: 70px;
  } */

  /* .section-about .about-box01 .list, */
  .section-about .about-box02 .list {
    gap: 10px;
  }

  .section-become {
    padding-top: 0px;
  }

  .section-become .heading {
    font-size: 24px;
    background-size: 100% auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .section-become .lead {
    text-align: left;
  }

  .section-become .figure01 {
    margin-top: 0;
    width: 50vw;
  }

  .event-catch {
    width: 42vw;
    margin-left: auto;
  }

  .event-title-01 {
    width: 90vw;
  }

  .event-content {
    gap: 80px;
    width: 80vw;
    margin-left: auto;
    margin-right: auto;
    padding-top: 40px;
  }

  .event-box {
    margin-top: 0;
    width: 100%;
  }

  .bg-event::before {
    top: 24vw;
  }

  .event-box::before {
    background-size: 30px;
    height: 30px;
    top: -30px;
  }
  .event-box-thumbnail {
    height: 160px;
  }

  .event-box-bottom {
  }

  .section-feature {
    margin-top: 80px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-feature .heading {
    width: 90vw;
  }

  .section-feature .lead {
    text-align: left;
  }

  .feature-item {
    grid-template-columns: 1fr;
    margin-bottom: 40px;
  }

  .feature-item-content {
    padding: 0;
  }

  .feature-item-img {
    width: 100%;
    margin-top: 24px;
  }

  .feature-item01 .feature-item-img,
  .feature-item03 .feature-item-img,
  .feature-item05 .feature-item-img {
    order: 1;
  }

  .feature-item02 .feature-item-img,
  .feature-item04 .feature-item-img,
  .feature-item06 .feature-item-img {
    margin-left: auto;
  }

  .feature-item01 .icon {
    position: absolute;
    margin-left: 0;
    width: 27vw;
    right: 20px;
    top: 4vw;
  }

  .feature-item-head {
    justify-content: center;
    flex-direction: column;
  }

  .feature-item-head .headbox {
    padding-left: 0;
    width: 100%;
  }
  .feature-item-head .feature-item-title {
    width: 100%;
    font-size: 24px;
    padding-left: 0;
    text-align: center;
  }

  .feature-item-head .number {
    margin-left: auto;
    margin-right: auto;
  }

  .feature-item .number {
    width: 20vw;
  }

  .feature-item01 .feature-item-title {
    font-size: 24px;
  }

  .feature-item02 .icon,
  .feature-item03 .icon,
  .feature-item04 .icon,
  .feature-item05 .icon {
    right: 20px;
    top: 4vw;
  }

  .feature-item02 .icon {
    width: 13vw;
  }

  .feature-item03 .icon {
    width: 26vw;
    left: inherit;
    bottom: inherit;
  }

  .feature-item04 .icon {
    width: 13vw;
  }

  .feature-item05 .icon {
    width: 20vw;
  }

  .feature-item-head .feature-item-text {
    text-align: center;
    justify-content: center;
  }

  .section-faq,
  .section-cta {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-faq .heading {
    font-size: 28px;
  }

  .faq-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
  }

  .faq-item {
    width: 100%;
  }

  .section-cta .list {
    width: 80vw;
    margin-left: auto;
    margin-right: auto;
    gap: 20px;
  }
  .news-list,
  .box01 {
    padding: 20px;
  }

  .news-list-header .heading {
    font-size: 20px;
  }

  .news-list-header a {
    font-size: 14px;
  }

  .news-category,
  .news-date {
    font-size: 14px;
  }

  .news-list li {
    padding: 6px 0 10px;
  }

  .news-link {
    font-size: 14px;
  }

  .event-category,
  .event-text {
    font-size: 14px;
  }

  .event-text {
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .news-list-header .heading .icon {
    position: relative;
    top: 3px;
  }

  .front-01 {
    padding-top: 20px;
  }

  .feature-item01 .links {
    grid-template-columns: 1fr;
  }

  .feature-item01 .links li {
    width: 70vw;
    margin-left: auto;
    margin-right: auto;
  }
}

.headerPC001-center .navi-list {
  display: flex;
  /* flex-wrap: wrap; */
  align-items: center;
  justify-content: flex-end;
}

@media (min-width: 641px) {
  .headerNavPC001 {
    display: block;
  }
  
  .headerNavPC001 .navi-list {
    display: flex;
    align-items: center;
  }
}

@media (max-width: 640px) {
  .headerNavPC001 {
    display: none;
  }
}

.feature-item01 .feature-item-img {
  order: 1;
}

.feature-item01 .feature-item-content {
  order: 2;
}

@media (max-width: 640px) {
  .feature-item01 .feature-item-img,
  .feature-item03 .feature-item-img,
  .feature-item05 .feature-item-img {
    order: 2;
  }
}

@media (min-width: 641px) {
  .feature-item03 .feature-item-img,
  .feature-item05 .feature-item-img {
    order: 2;
  }
}

.feature-item01 .feature-item-img,
.feature-item03 .feature-item-img,
.feature-item05 .feature-item-img {
  order: 1;
}

.feature-item01 .feature-item-content,
.feature-item03 .feature-item-content,
.feature-item05 .feature-item-content {
  order: 2;
}

@media (min-width: 641px) {
  .feature-item03 .feature-item-img,
  .feature-item05 .feature-item-img {
    order: 2;
  }

  .feature-item03 .feature-item-content,
  .feature-item05 .feature-item-content {
    order: 1;
  }
}

.feature-item03 .feature-item-img,
.feature-item05 .feature-item-img {
  order: 2;
}

.feature-item03 .feature-item-content,
.feature-item05 .feature-item-content {
  order: 1;
}

@media (max-width: 640px) {
  .feature-item01 .feature-item-img,
  .feature-item03 .feature-item-img,
  .feature-item05 .feature-item-img {
    order: 2;
  }

  .feature-item01 .feature-item-content,
  .feature-item03 .feature-item-content,
  .feature-item05 .feature-item-content {
    order: 1;
  }
}

.feature-item-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

.feature-item-head .headbox {
  padding-left: 0;
  width: 100%;
}

.feature-item-head .feature-item-title {
  text-align: center;
  padding-top: 12px;
  font-weight: 600;
  width: 100%;
  font-size: 24px;
}

.feature-item-head .feature-item-text {
  text-align: center;
  margin-top: 8px;
  color: #000;
  justify-content: center;
}

.feature-item-head .number {
  margin: 0 auto;
}

@media (min-width: 641px) {
  .feature-item-head {
    flex-direction: row;
    justify-content: flex-start;
  }

  .feature-item-head .headbox {
    padding-left: 18px;
    width: auto;
  }

  .feature-item-head .feature-item-title {
    text-align: left;
    width: auto;
  }

  .feature-item-head .feature-item-text {
    text-align: left;
  }

  .feature-item-head .number {
    margin: 0;
  }

  /* feature-item01は画像が左側 */
  .feature-item01 .feature-item-img {
    order: 1;
  }

  .feature-item01 .feature-item-content {
    order: 2;
  }

  /* feature-item03は画像が左側 */
  .feature-item03 .feature-item-img {
    order: 1;
  }

  .feature-item03 .feature-item-content {
    order: 2;
  }

  /* feature-item05は画像が右側 */
  .feature-item05 .feature-item-img {
    order: 2;
  }

  .feature-item05 .feature-item-content {
    order: 1;
  }
}

/* feature-itemのアイコンスタイル */
.feature-item .icon {
  position: absolute;
  right: 20px;
  top: 4vw;
}

.feature-item01 .icon {
  width: 27vw;
}

.feature-item02 .icon {
  width: 13vw;
}

.feature-item03 .icon {
  width: 26vw;
}

.feature-item04 .icon {
  width: 13vw;
}

.feature-item05 .icon {
  width: 20vw;
}

@media (min-width: 641px) {
  .feature-item01 .icon {
    width: 160px;
    margin-left: 12px;
    position: relative;
    right: auto;
    top: auto;
  }

  .feature-item02 .icon {
    width: 90px;
    bottom: 30px;
    right: 40px;
    top: auto;
  }

  .feature-item03 .icon {
    width: 160px;
    left: 30px;
    bottom: 80px;
    right: auto;
    top: auto;
  }

  .feature-item04 .icon {
    width: 80px;
    right: 30px;
    bottom: 40px;
    top: auto;
  }

  .feature-item05 .icon {
    width: 110px;
    right: 30px;
    bottom: 40px;
    top: auto;
  }
}

.application-table{
  border-top: solid 3px #43CFD6;
  border-left:solid 1px #43CFD6;
  border-right: solid 1px #43CFD6;
  border-bottom: solid 3px #43CFD6;
  text-align: center;
}
.application-table thead th{
  background: #DBF5F2;
  color: #000;
  padding: 5px;
  border-bottom: solid 1px #43CFD6;
  border-right: solid 1px #43CFD6;
}
.application-table tbody th{
  width: 80px;
  color: #000;
  border-bottom: solid 1px #43CFD6;
  border-right: solid 1px #43CFD6;
}
.application-table tbody td{
  padding: 5px;
  border-bottom: solid 1px #43CFD6;
  border-right: solid 1px #43CFD6;
}


.entrance-table{
  border-top: solid 3px #43CFD6;
  border-left:solid 1px #43CFD6;
  border-right: solid 1px #43CFD6;
  border-bottom: solid 3px #43CFD6;
  text-align: center;
}
.entrance-table thead th{
  background: #DBF5F2;
  color: #000;
  padding: 5px 3px;
  border-bottom: solid 1px #43CFD6;
  border-right: solid 1px #43CFD6;
}
.entrance-table tbody td{
  padding: 5px 2px;
  font-size: 14px;
  border-bottom: solid 1px #43CFD6;
  border-right: solid 1px #43CFD6;
}
.ao-table{
  border-top: solid 3px #43CFD6;
  border-left:solid 1px #43CFD6;
  border-right: solid 1px #43CFD6;
  border-bottom: solid 3px #43CFD6;
  text-align: center;
}
.ao-table th{
  background: #DBF5F2;
  color: #000;
  padding: 5px 10px;
  border-bottom: solid 1px #43CFD6;
  border-right: solid 1px #43CFD6;
}
.ao-table td{
  padding: 5px 10px;
  background: #FFF;
  border-bottom: solid 1px #43CFD6;
  border-right: solid 1px #43CFD6;
}

.flow-block {
  display: flex;
}

.flow-list {
  padding-left: 0;
}

.flow-list > li {
  list-style-type: none;
  position: relative;
  padding-left: 50px;
}

.flow-list > li:not(:last-child) {
  padding-bottom: 10px;
}

.flow-list > li .icon {
  width: 2em;
  height: 2em;
  line-height: 2em;
  text-align: center;
  border-radius: 100vh;
  display: inline-block;
  background: #141C6C;
  color: #fff;
  position: absolute;
  left: 0;
}

.flow-list > li:not(:last-child)::before {
  content: '';
  background: #c3c3c3;
  width: 4px;
  height: 100%;
  position: absolute;
  top: calc(50% - -30px);
  left: 19px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.flow-list > li dl dt {
  font-size: 20px;
  font-weight: 600;
  color: #141C6C;
}

.flow-list > li dl dd {
  margin-left: 0;
  margin-bottom: 30px;
}

.border {
  border: solid 1px #898989;
  margin: 10px 0;
}
[data-ruby] {
	position: relative;
}
[data-ruby]::before {
	content: attr(data-ruby);
	position: absolute;
	top: -0.8em;
	left: 0;
	right: 0;
	margin: auto;
	font-size: 0.5em;
}
.accordion-block {
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 20px;
  overflow: hidden;
  background: #fff;
}

.accordion-trigger {
  width: 100%;
  padding: 15px 20px;
  font-size: 18px;
  font-weight: 600;
  background-color: #00d1d7;
  color: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
  position: relative;
}
.accordion-trigger::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 20px;
}
.accordion-block.open .accordion-trigger::after {
  content: '−';
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
  padding: 0 20px;
}
.accordion-block.open .accordion-content {
  padding: 20px;
}
.under{
  text-decoration-line: underline;
  text-decoration-style: wavy;         /* 波線 */
  text-decoration-color: #141C6C;      /* 色は任意 */
  text-decoration-thickness: 1px;      /* 太さ */
  text-underline-offset: 3px;   
}