@charset "UTF-8";
/******************************************************************************
******************************************************************************
**
** style.cssにおいて ( var.3.1.3 )
** -- baseでは基本タグとサイト大枠のCSS指定
** -- headerではヘッダーのCSS指定
** -- global navではグローバルナビのCSS指定
** -- contentではコンテント・メイン・サイドナビのCSS指定
** -- footerではフッターのCSS指定
** -- pagetopではページトップボタンのCSS指定
** -- indexではトップページのCSS指定
** -- pageでは汎用ページのCSS指定
** -- styleでは汎用ページのコンテンツ（データ入れ）で使用する基本タグのCSS指定
**
** 注意事項
** -- CSSの命名規則はApplicatsオリジナルの命名規則を採用しています。
** -- 初期フォントサイズはreset.cssにて13pxにリセットしています。
** -- 行間は1.6にリセットしています。
**        単位は不要です。(スタイル崩れする可能性有)
** -- コンテンツ内のフォントサイズ・行間は
**        [ base ]のcontentsクラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** PCスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** color
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** font
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
.w_base {
  max-width: 1200px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 50px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.hd .w_base {
  max-width: 1500px;
}
.hd__con {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.hd__con__left {
  width: 330px;
}
.hd__con__left a {
  text-decoration: none;
  color: #000;
}
.hd__con__left .logo {
  display: flex;
  align-items: center;
  gap: 15px;
}
.hd__con__left .logo img {
  width: 145px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}
.hd__con__left .logo span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 800;
  font-size: 0.96rem;
  line-height: 1.3;
}
.hd__con__right {
  width: calc(100% - 330px - 3rem);
  max-width: 798px;
}
@media screen and (max-width: 1200px) {
  .hd__con {
    padding-block: 1rem;
    padding-right: 4rem;
  }
}
.hd.colorChange, .hd.hd_page {
  background: #fff;
  border-bottom: 1px solid #EEE;
}
.hd.hd_page {
  position: sticky;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
@media screen and (min-width: 1200px) {
  .nav {
    /*第一階層*/
  }
  .nav__list {
    display: flex;
    justify-content: space-between;
    list-style-type: none;
  }
  .nav__list > li {
    position: relative;
    /*全メニュー共通*/
    /*第一階層のメニュー*/
    /*第二階層*/
  }
  .nav__list > li a {
    text-decoration: none;
    display: inline-block;
  }
  .nav__list > li > a {
    padding-block: 1.5rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: #000;
    transition: 0.2s;
    white-space: nowrap;
  }
  .nav__list > li.current > a {
    color: #0964CB;
  }
  .nav__list > li.current > a:hover {
    color: #0964CB;
  }
  .nav__list > li:hover > a {
    color: #09488f;
  }
  .nav__list > li.has-child > a:after {
    content: "";
    background: url(/wpdir/wp-content/themes/chem-ryukoku/images/header/nav.svg);
    background-size: contain;
    width: 0.96rem;
    height: 0.57rem;
    display: inline-block;
    margin-left: 0.66rem;
  }
  .nav__list > li.has-child:hover .accordion_con {
    top: 100%;
    visibility: visible;
    opacity: 1;
    display: block;
  }
  .nav__list > li > .accordion_con {
    padding: 1.6rem 1.6rem 2rem;
    background: #0964CB;
    border-radius: 16px;
    position: absolute;
    top: 80%;
    left: 0;
    width: 192px;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
  }
  .nav__list > li > .accordion_con > .sub-menu > li > a {
    padding-block: 0.5rem;
    color: #fff;
    font-size: 0.8rem;
  }
  .nav__list > li > .accordion_con > .sub-menu > li > a:hover {
    color: #70C3FB;
  }
  .nav__list > li > .accordion_con > .sub-menu > li:first-child > a {
    padding-top: 0;
  }
  .nav__list > li:last-child > a {
    padding-right: 0;
  }
}
@media screen and (max-width: 1199px) {
  body {
    transition: transform 500ms ease;
  }
  body.sp_nav_open {
    transform: translateX(-25rem);
  }
  nav {
    position: relative;
  }
  .nav {
    position: fixed;
    top: 0;
    right: -25rem;
    width: 25rem;
    height: 100%;
    padding-top: 100px;
    margin: 0;
    background: #2a394f;
    transition: left 500ms ease;
    z-index: 0;
  }
  .nav.sp_nav_open {
    transition: left 500ms ease;
  }
  .nav__list {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    /*第一階層*/
  }
  .nav__list a {
    text-decoration: none;
    color: #eff4fa;
    display: block;
    width: 100%;
    height: 100%;
  }
  .nav__list > li {
    position: relative;
    border-bottom: 1px solid #293649;
  }
  .nav__list > li > a {
    position: relative;
    width: 100%;
    height: 72px;
    padding: 25px;
    transition: text-indent 0.15s, height 0.3s;
    overflow: hidden;
  }
  .nav__list > li > a:before {
    content: "";
    width: 0;
    height: 1px;
    background: #70C3FB;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: width 0.2s;
  }
  .nav__list > li.current, .nav__list > li:hover {
    background: #212e41;
    text-indent: 4px;
  }
  .nav__list > li.current > a:before, .nav__list > li:hover > a:before {
    width: 100%;
    transition: width 0.3s;
  }
  .nav__list > li .accordion-trigger {
    position: absolute;
    top: 1.2rem;
    right: 20px;
    z-index: 10;
    width: 35px;
    height: 35px;
    background: #0964CB;
    cursor: pointer;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
    border-radius: 50%;
  }
  .nav__list > li .accordion-trigger:before, .nav__list > li .accordion-trigger:after {
    position: absolute;
    content: "";
    width: 15px;
    height: 2px;
    background: #fff;
  }
  .nav__list > li .accordion-trigger::before {
    top: 50%;
    left: 50%;
    transform: rotate(0deg) translateX(-50%);
  }
  .nav__list > li .accordion-trigger:after {
    top: 50%;
    left: 10px;
    transform: rotate(90deg);
    transition: all 0.3s ease;
  }
  .nav__list > li .accordion-trigger.close:after {
    transform: rotate(180deg);
  }
  .nav__list > li .accordion_con {
    display: none;
    margin-block: 1rem;
  }
  .nav__list > li .accordion_con > .sub-menu > li > a {
    padding: 10px;
    padding-left: 25px;
  }
  .nav__list > li .accordion_con > .sub-menu > li:hover a {
    color: #70C3FB;
  }
  .sp_nav_trigger {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    transition: transform 250ms ease;
    cursor: pointer;
    z-index: 2000;
  }
  .sp_nav_trigger span {
    position: relative;
    display: block;
    width: 50%;
    height: 2px;
    background-color: #444;
    float: left;
    transform-origin: center center;
    transition: transform 250ms ease;
    z-index: 200;
  }
  .sp_nav_trigger span:nth-of-type(1) {
    transform: translateY(-5px);
  }
  .sp_nav_trigger span:nth-of-type(3) {
    transform: translateY(5px);
  }
  .nav_sp_nav_trigger {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    transition: transform 250ms ease;
    cursor: pointer;
    z-index: 2000;
  }
  .nav_sp_nav_trigger span {
    position: relative;
    display: block;
    width: 30%;
    height: 2px;
    background-color: #444;
    float: left;
    transform-origin: center center;
    transition: transform 250ms ease;
    z-index: 200;
  }
  .nav_sp_nav_trigger span:nth-of-type(1) {
    transform: rotate(45deg) translate(1px, 1px);
  }
  .nav_sp_nav_trigger span:nth-of-type(2) {
    transform: rotate(-45deg);
  }
}
/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft {
  background: #EEEEEE;
  margin: auto 0 0;
}
.ft__con {
  padding-block: 4.33rem 5rem;
  display: flex;
  justify-content: space-between;
  gap: 7.3rem;
}
.ft__con__left {
  width: 50%;
}
.ft__con__left .contact {
  margin-bottom: 2.33rem;
}
.ft__con__left .contact .name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.26rem;
}
.ft__con__left .contact .address {
  font-size: 0.93rem;
  margin-bottom: 1.86rem;
}
.ft__con__left .contact .index_contact-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 365px;
  padding: 0.75em 2em;
  border: none;
  border-radius: 35px;
  background-color: #0B2760;
  color: #fff;
  font-weight: 600;
  font-size: 1.33em;
  text-decoration: none;
}
.ft__con__left .contact .index_contact-btn:hover {
  background-color: #0B2760;
}
.ft__con__left .contact .index_contact-btn::before {
  width: 2.46rem;
  height: 2.6rem;
  margin-right: 8px;
  background: url("/wpdir/wp-content/themes/chem-ryukoku/images/footer/contact-btn.svg") no-repeat;
  background-position: center;
  content: "";
}
.ft__con__left .sns-list {
  display: flex;
  gap: 1.57rem;
  align-items: center;
}
.ft__con__right {
  width: 50%;
  max-width: 472px;
}
.ft__con__right .course-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ft__con__right .course-list img {
  width: 100%;
}
.ft .copy {
  padding: 1.6rem 1rem 1.66rem;
  background: #0B2760;
  color: #fff;
  text-align: center;
  font-size: 0.86rem;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  border-radius: 50%;
  background-color: #0B2760;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  width: 70px;
  height: 70px;
  bottom: 100px;
  right: 30px;
  z-index: 100;
  transition: 0.3s;
}
.pt:before {
  content: "";
  display: inline-block;
  background: url(/wpdir/wp-content/themes/chem-ryukoku/images/footer/pt_btn.svg) no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  transform: rotate(-90deg);
}
.pt:hover {
  opacity: 0.7;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index-main h2 {
  position: relative;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 3.4rem;
  text-align: center;
  color: #0964CB;
}
.index-main h2::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.index-main .index_more-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  position: relative;
  width: 365px;
  margin: 0 auto;
  padding: 0.75em 3.2em 0.75em 2em;
  border: none;
  border-radius: 2.4rem;
  background-color: #0B2760;
  background-image: url(/wpdir/wp-content/themes/chem-ryukoku/images/index/icon-right.svg);
  background-position: right 1.6em center;
  background-size: 1.33rem;
  background-repeat: no-repeat;
  color: #fff;
  font-weight: 600;
  font-size: 1.2rem;
  transition: 0.3s;
}
.index-main .index_more-btn:hover {
  background-position: right 1.3em center;
  opacity: 0.8;
}
.index-main__con {
  position: relative;
  overflow: hidden;
}

/*--- 円　アニメーション ---*/
.circle-wrap > div {
  position: absolute;
  width: 40vh;
  height: 40vh;
  border: 1px solid #000;
  border-radius: 50%;
  z-index: -1;
}
.circle-wrap > div[data-anime=anime1] {
  animation: uneune1 10s linear infinite;
}
.circle-wrap > div[data-anime=anime2] {
  animation: uneune2 10s linear infinite;
}
.circle-wrap > div[data-anime=anime3] {
  animation: uneune3 10s linear infinite;
}

@keyframes uneune1 {
  25% {
    border-radius: 69% 47% 75% 49%/66% 71% 45% 56%;
  }
  75% {
    border-radius: 69% 95% 88% 92%/74% 94% 69% 80%;
  }
}
@keyframes uneune2 {
  0%, 100% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
}
@keyframes uneune3 {
  25% {
    border-radius: 50% 100% 76% 70%/60% 92% 53% 49%;
  }
  75% {
    border-radius: 63% 91% 50% 96%/71% 65% 83% 84%;
  }
}
/*トップスライダー*/
.index-slider {
  position: relative;
}
.index-slider__con .slider_slick img {
  width: 100% !important;
  height: clamp(31.25rem, 15.053rem + 34.55vw, 57.813rem) !important;
  min-height: 550px;
  max-height: 95vh !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
}
.index-slider__con .slider_txt {
  position: absolute;
  top: clamp(12rem, 5.333rem + 14.22vw, 16rem);
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  text-align: center;
}
.index-slider__con .slider_txt h1 {
  font-size: clamp(1.58rem, 0.904rem + 1.44vw, 2.688rem);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  line-height: 1.6;
  text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0 1px 0 #FFF, 0 -1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF, 1px 1px 10px #fff, -1px 1px 10px #fff, 1px -1px 10px #fff, -1px -1px 10px #fff;
}
.index-slider__con .slider_txt h1 small {
  font-size: 0.67em;
}
.index-slider__con .slider_txt .slider_feature-list {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  max-width: 75%;
  margin-inline: auto;
}
.index-slider__con .slider_txt .slider_feature-list > p {
  position: relative;
  width: clamp(8rem, 4.418rem + 7.64vw, 13.875rem);
  height: 100%;
  aspect-ratio: 1/1;
  margin-inline: -7px;
  border-radius: 50%;
  border: 1px solid #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  color: #fff;
}
.index-slider__con .slider_txt .slider_feature-list > p:after {
  content: "";
  width: 104%;
  height: 103%;
  border-radius: 50% 51% 50% 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.index-slider__con .slider_txt .slider_feature-list > p.--symbiosis {
  font-size: clamp(1rem, -0.177rem + 2.51vw, 2.93rem);
}
.index-slider__con .slider_txt .slider_feature-list > p.--symbiosis:after {
  background: rgba(36, 178, 183, 0.48);
}
.index-slider__con .slider_txt .slider_feature-list > p.--cycle {
  font-size: clamp(1rem, -0.177rem + 2.51vw, 2.93rem);
}
.index-slider__con .slider_txt .slider_feature-list > p.--cycle:after {
  background: rgba(133, 97, 207, 0.48);
}
.index-slider__con .slider_txt .slider_feature-list > p.--communication {
  font-size: clamp(1rem, -0.012rem + 2.16vw, 2.66rem);
}
.index-slider__con .slider_txt .slider_feature-list > p.--communication:after {
  background: rgba(38, 158, 228, 0.48);
}
.index-slider__con .slider_txt .slider_feature-list > p.--communication small {
  display: block;
  font-size: 0.5em;
}
.index-slider__con .slider_txt .slider_feature-list > p.--green-chemistry {
  font-size: clamp(1rem, 0.421rem + 1.24vw, 1.95rem);
}
.index-slider__con .slider_txt .slider_feature-list > p.--green-chemistry:after {
  background: rgba(74, 167, 47, 0.48);
}

/*Information*/
.information {
  position: relative;
  max-width: 1587px;
  padding-inline: 4rem;
  padding-block: 4rem 0;
  margin-inline: auto;
  /*アーカイブページ*/
}
.information__ttl {
  padding-top: 1.93rem;
}
.information__ttl:before {
  background: url(/wpdir/wp-content/themes/chem-ryukoku/images/index/information/h2.svg) no-repeat;
  background-size: contain;
  width: 2.87rem;
  height: 2rem;
  top: 1.5rem;
}
.information__con .information-list {
  margin-block: 1rem 0;
}
.information__con .information-list__item {
  min-width: 239px;
}
.information__con .information-list__item a {
  text-decoration: none;
  color: #000;
}
.information__con .information-list__item__con {
  margin: 1.4rem;
}
.information__con .information-list__item__con img {
  display: block;
  border-radius: 28px;
  width: 100%;
  height: 100%;
  aspect-ratio: 17/10;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
}
.information__con .information-list__item__con .detail {
  padding-inline: 0.66rem;
}
.information__con .information-list__item__con .detail__postinfo {
  display: flex;
  justify-content: space-between;
  margin-top: 1.6rem;
  margin-bottom: 0.4rem;
}
.information__con .information-list__item__con .detail__postinfo span {
  color: #5B66AB;
  font-weight: 600;
  font-size: 0.86rem;
  line-height: 1;
}
.information__con .information-list__item__con .detail__postinfo time {
  color: #979797;
  font-family: "Open Sans", serif;
  font-weight: 700;
  font-size: 0.86rem;
  line-height: 1;
}
.information__con .information-list__item__con .detail__postttl {
  font-size: 1.06rem;
  font-weight: 700;
  line-height: 1.6;
}
.information__con .information_slick {
  display: none;
}
.information__con .information_slick.slick-initialized {
  display: block;
}
.information .index_more-btn {
  margin-top: 2.5rem;
}
.information .circle-wrap > div {
  z-index: -1;
}
.information .circle-wrap .circle-01 {
  top: -2vw;
  right: -5vw;
  width: 46vh;
  height: 46vh;
  border-color: #B988FF;
}
.information .circle-wrap .circle-02 {
  bottom: 0;
  left: -10vw;
  width: 37.4vh;
  height: 37.4vh;
  border-color: #32ACFE;
}
.information.information_archive {
  padding: 0;
}
.information.information_archive .information-list__item__con {
  display: flex;
  justify-content: space-between;
}
.information.information_archive .information-list__item__con img {
  width: 300px;
}
.information.information_archive .information-list__item__con .detail {
  width: calc(100% - 300px - 2rem);
}
.information.information_archive .information-list__item__con .detail__postinfo {
  margin-top: 0;
  justify-content: flex-start;
  gap: 2rem;
}

/*Feature*/
#feature {
  position: relative;
  background: #fff;
  font-size: 0.93rem;
  font-weight: 600;
  /* 波　背景 */
}
#feature .custom-shape-divider-top-1722475500 {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: scale(-1, 1);
}
#feature .custom-shape-divider-top-1722475500 svg {
  position: relative;
  display: block;
  width: calc(150% + 1.3px);
  height: 200px;
}
#feature .custom-shape-divider-top-1722475500 .shape-fill {
  fill: #FFFAE6;
}
#feature .feature_bg {
  background: #FFFAE6;
}
#feature .feature_bg .feature {
  margin-top: -5rem;
  padding-bottom: 6rem;
  position: relative;
}
#feature .feature_bg .feature__ttl {
  padding-top: 2.93rem;
  margin-bottom: 3rem;
}
#feature .feature_bg .feature__ttl:before {
  background: url(/wpdir/wp-content/themes/chem-ryukoku/images/index/feature/h2.svg) no-repeat;
  background-size: contain;
  width: 2.46rem;
  height: 2.93rem;
  top: 1rem;
}
#feature .feature_bg .feature__con {
  position: relative;
  z-index: 2;
}
#feature .feature_bg .feature__con__top {
  position: relative;
  margin-bottom: 4rem;
  display: flex;
  justify-content: space-between;
  min-height: 35vh;
}
#feature .feature_bg .feature__con__top .detail {
  width: 610px;
}
#feature .feature_bg .feature__con__top .detail h3 {
  margin-bottom: 2rem;
  font-size: clamp(1.8rem, 0.726rem + 2.23vw, 2.4rem);
  line-height: 1.5;
}
#feature .feature_bg .feature__con__top .detail .txt {
  font-size: 1.06rem;
  font-weight: 600;
  line-height: 2.3rem;
}
#feature .feature_bg .feature__con__top .thumbnail {
  width: calc(100% - 610px - 0.5rem);
  margin-top: -4rem;
  margin-right: -1rem;
}
#feature .feature_bg .feature__con__top .thumbnail.circle-wrap > div {
  position: initial;
  border: none;
  overflow: hidden;
  width: 50vh;
  height: 50vh;
}
#feature .feature_bg .feature__con__top .thumbnail img {
  display: block;
  max-width: 560px;
  width: 100%;
  aspect-ratio: 1/1;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.16);
}
#feature .feature_bg .feature__con__bottom h4 {
  font-size: 1.5rem;
  color: #0964CB;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
#feature .feature_bg .feature__con__bottom .feature-list {
  display: flex;
  justify-content: space-between;
  gap: clamp(0.5rem, -4.767rem + 11.24vw, 3.66rem);
}
#feature .feature_bg .feature__con__bottom .feature-list > dl {
  max-width: 330px;
  width: calc(33.3333333333% - clamp(0.5rem, -4.767rem + 11.24vw, 3.66rem));
}
#feature .feature_bg .feature__con__bottom .feature-list > dl dt {
  margin-bottom: 1.6rem;
}
#feature .feature_bg .feature__con__bottom .feature-list > dl dt h5 {
  font-size: clamp(1rem, -0.667rem + 3.56vw, 2rem);
  text-align: center;
  border-bottom: 4px solid #0B2760;
  line-height: 1.8;
  margin-bottom: 1.13rem;
  white-space: nowrap;
}
#feature .feature_bg .feature__con__bottom .feature-list > dl dt h5 small {
  font-size: 0.6em;
}
#feature .feature_bg .feature__con__bottom .feature-list > dl dt img {
  display: block;
  border-radius: 28px;
  width: 100%;
  aspect-ratio: 17/10;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
}
#feature .feature_bg .feature__con__bottom .feature-list > dl dd {
  font-size: 0.93rem;
  font-weight: 600;
}
#feature .feature_bg .feature__con__bottom .feature-qualifications {
  margin-block: 4rem;
}
#feature .feature_bg .feature__con__bottom .feature-qualifications__summary {
  font-weight: 900;
  font-size: 1.2rem;
  margin-block: 1rem;
}
#feature .feature_bg .feature__con__bottom .feature-qualifications h5 {
  position: relative;
  padding-left: 2rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: #0964CB;
  margin-block: 1rem;
}
#feature .feature_bg .feature__con__bottom .feature-qualifications h5:before {
  content: "";
  width: 1rem;
  height: 1px;
  background: #0964CB;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
#feature .feature_bg .feature .index_more-btn {
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
@media screen and (max-width: 1100px) {
  #feature .feature_bg .feature__con__top {
    margin-bottom: 5rem;
  }
  #feature .feature_bg .feature__con__top .detail {
    width: 60%;
  }
  #feature .feature_bg .feature__con__top .thumbnail {
    width: 39%;
  }
  #feature .feature_bg .feature__con__top .thumbnail img {
    width: 100%;
  }
  #feature .feature_bg .feature__con__bottom h4 {
    margin-bottom: 4rem;
  }
}
#feature .feature_bg .feature .circle-wrap > div {
  z-index: 1;
}
#feature .feature_bg .feature .circle-wrap .circle-01 {
  top: 2vw;
  right: -7vw;
  width: 37.4vh;
  height: 37.4vh;
  border-color: #F7FF00;
}
#feature .feature_bg .feature .circle-wrap .circle-02 {
  top: 10vw;
  left: -2vw;
  width: 13.6vh;
  height: 13.6vh;
  border-color: #FCA700;
}
#feature .feature_bg .feature .circle-wrap .circle-03 {
  top: 34vw;
  left: -8vw;
  width: 37.4vh;
  height: 37.4vh;
  border-color: #05C9B5;
}
#feature .feature_bg .feature .circle-wrap .circle-04 {
  top: 37vw;
  right: -5vw;
  width: 36.4vh;
  height: 36.4vh;
  border-color: #B988FF;
}
#feature .feature_bg .feature .circle-wrap .circle-05 {
  bottom: -4vw;
  left: -7vw;
  width: 37.4vh;
  height: 37.4vh;
  border-color: #F7FF00;
}
#feature .feature_bg .feature .circle-wrap .circle-06 {
  bottom: 7vw;
  right: -8vw;
  width: 17.3vh;
  height: 17.3vh;
  border-color: #FCA700;
}

/*Instagram*/
.instagram {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 9.6rem;
}
.instagram__ttl {
  margin-bottom: 1.86rem;
}
.instagram .circle-wrap .circle-01 {
  top: 5vw;
  right: -12vw;
  width: 37.4vh;
  height: 37.4vh;
  border-color: #32ACFE;
}
.instagram .circle-wrap .circle-02 {
  bottom: 3vw;
  left: -12vw;
  width: 22.3vh;
  height: 22.3vh;
  border-color: #B988FF;
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.wp-block-button {
  min-width: 365px;
}
.wp-block-button > a {
  width: 100%;
  background: #0b2760;
  color: #fff;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
  font-style: italic;
  transition: 0.5s;
}
.wp-block-button > a:hover {
  color: #000;
  background-color: #eee;
}

.inauguration_btn_wrap .wp-block-button {
  width: calc((100% - 0.5em) / 2);
}

.toggle-content {
  visibility: hidden;
  opacity: 0;
  transition: opacity 1s ease, max-height 1s ease, visibility 0s 1s;
  max-height: 0;
  overflow: hidden;
}
.toggle-content.active {
  visibility: visible;
  opacity: 1;
  max-height: 99999px;
  transition: opacity 1s ease, max-height 1s ease, visibility 0s;
}
.toggle-content.path .wp-block-group__inner-container {
  padding: 20px;
  margin-top: 20px;
  background: #eee;
}

/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.main {
  background: #fff;
}

.page-ttl_wrap {
  position: relative;
  padding-block: 3rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #EEE;
}
.page-ttl_wrap .page-ttl {
  font-size: clamp(4.375rem, 4.146rem + 0.49vw, 4.75rem);
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
  line-height: 1.5;
}
.page-ttl_wrap .page-ttl .sub-ttl {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  display: block;
}

@media screen and (max-width: 1200px) {
  .page-ttl_wrap {
    gap: 1rem;
    padding-top: 2rem;
  }
  .page-ttl_wrap .eyecatch {
    transform: scale(0.7);
  }
}
.mcon {
  word-wrap: break-word;
  padding-block: 0 3rem;
}
.mcon section {
  padding-block: 4rem;
}
.mcon h2 {
  position: relative;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 15px;
  padding: 0.5em 0;
  color: #0964CB;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 500;
  border-bottom: 1px solid #aaa;
}
.mcon h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
}
.mcon h3 {
  position: relative;
  margin-top: 20px;
  margin-bottom: 15px;
  padding: 0.5em 0;
  color: #7B7878;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 500;
}
.mcon h3::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 80px;
  height: 2px;
  background: #0964CB;
}
.mcon h4 {
  display: flex;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 5px;
  padding: 0.5em 0;
  color: #7B7878;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
}
.mcon h4::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-right: 10px;
  background: #0964CB;
}
.mcon h5 {
  position: relative;
  padding-left: 2rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: #0964CB;
  margin-block: 1rem;
}
.mcon h5:before {
  content: "";
  width: 1rem;
  height: 1px;
  background: #0964CB;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.mcon h6 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.1em;
  font-weight: 500;
}
.mcon hr {
  border: none;
  border-top: 1px dotted #000;
}
.mcon iframe {
  max-width: 100%;
}
.mcon img {
  max-width: 100%;
  height: auto;
}
.mcon ol {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.mcon ol li {
  margin-left: 2em;
  margin-bottom: 0.5em;
}
.mcon p {
  margin-bottom: 1em;
}
.mcon ul {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.mcon ul li {
  list-style-type: disc;
  margin-left: 1.5em;
  margin-bottom: 0.5em;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pager
******************************************************************************
----------------------------------------------------------------------------*/
.pager {
  margin: 40px 0 0;
}
.pager .pager_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.pager .pager_list .page-numbers {
  border: 1px solid #0B2760;
  border-radius: 5px;
  color: #0B2760 !important;
  display: block;
  font-size: 1rem;
  margin: 0 2px;
  padding: 5px 0;
  text-decoration: none;
  text-align: center;
  width: 2.4rem;
  transition: all 0.5s ease;
}
.pager .pager_list .page-numbers:not(.dots):hover, .pager .pager_list .page-numbers.current {
  background: #0B2760;
  color: #FFF !important;
}
.pager .pager_list .page-numbers.dots {
  border-color: #0B2760;
}/*# sourceMappingURL=style.css.map */