@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クラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** style
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** color
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** font
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
body {
  position: relative;
}

.w_base {
  width: 95%;
  margin-inline: auto;
  padding-inline: 10px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.hd .w_base {
  max-width: 1500px;
  width: 100%;
}
.hd__con {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 1rem;
  padding-right: 4rem;
}
.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: 110px;
  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.86rem;
  line-height: 1.3;
}
.hd.colorChange, .hd.hd_page {
  background: #fff;
  border-bottom: 1px solid #EEE;
}
.hd.hd_page {
  position: sticky;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
body {
  transition: transform 500ms ease;
}
body.sp_nav_open {
  transform: translateX(-70vw);
}

nav {
  position: relative;
}

.nav {
  position: fixed;
  top: 0;
  right: -70vw;
  width: 70vw;
  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);
}

@media screen and (max-width: 500px) {
  body.sp_nav_open {
    transform: translateX(-90vw);
  }
  .nav {
    right: -90vw;
    width: 90vw;
  }
}
/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.side_head {
  background-color: #EEE;
  color: #111;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 6px;
  padding: 10px;
  text-align: center;
}

.side_nav_list li a {
  background: url(/wpdir/wp-content/themes/chem-ryukoku/images/icon_arrow_gray.png) no-repeat left center;
  border-bottom: 1px solid #CCC;
  color: #111;
  display: block;
  font-size: 14px;
  padding: 12px 10px;
  text-decoration: none;
}

.side_nav_list li a:hover {
  text-decoration: underline;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft {
  background: #EEEEEE;
  margin: auto 0 0;
}
.ft__con {
  width: 80%;
  max-width: 400px;
  padding-block: 4.33rem 5rem;
  display: flex;
  justify-content: space-between;
  flex-direction: column-reverse;
  align-items: center;
  gap: 3rem;
}
.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: 100%;
  padding: 0.6em 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 .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: 60px;
  height: 60px;
  bottom: 30px;
  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);
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index-main h2 {
  position: relative;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(2.5rem, 1.83rem + 3.35vw, 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: 75%;
  max-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: 57%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  text-align: center;
}
.index-slider__con .slider_txt h1 {
  font-size: clamp(1.125rem, 0.846rem + 1.4vw, 1.5rem);
  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 h1 .pc_dn {
  display: none;
}
.index-slider__con .slider_txt h1 .sp_dn {
  display: block;
}
.index-slider__con .slider_txt .slider_feature-list {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  min-width: 300px;
  margin-inline: auto;
  padding-inline: 1rem;
}
.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);
}
@media screen and (max-width: 530px) {
  .index-slider__con .slider_txt {
    top: 54%;
  }
  .index-slider__con .slider_txt h1 .pc_dn {
    display: block;
  }
  .index-slider__con .slider_txt h1 .sp_dn {
    display: none;
  }
  .index-slider__con .slider_txt .slider_feature-list {
    flex-wrap: wrap;
    max-width: 270px;
    min-width: auto;
  }
  .index-slider__con .slider_txt .slider_feature-list > p {
    width: 49%;
    margin: -7px;
  }
}

/*Information*/
.information {
  position: relative;
  max-width: 1587px;
  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;
  overflow: hidden;
}
.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 .circle-01 {
  top: -2vw;
  right: -5vw;
  width: 36vh;
  height: 36vh;
  border-color: #B988FF;
}
.information .circle-wrap .circle-02 {
  bottom: 0;
  left: -10vw;
  width: 27.4vh;
  height: 27.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: 180px;
}
.information.information_archive .information-list__item__con .detail {
  width: calc(100% - 180px - 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%;
  margin-top: 5rem;
  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: 0;
}
#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;
  max-width: 560px;
  margin-inline: auto;
  z-index: 2;
}
#feature .feature_bg .feature__con__top {
  position: relative;
  margin-bottom: 5rem;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 2rem;
}
#feature .feature_bg .feature__con__top .detail {
  margin-inline: 0 auto;
}
#feature .feature_bg .feature__con__top .detail h3 {
  margin-bottom: 2rem;
  font-size: clamp(1.6rem, 1.005rem + 2.98vw, 2.4rem);
  line-height: 1.5;
}
#feature .feature_bg .feature__con__top .detail h3 br {
  display: none;
}
#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 {
  margin-inline: auto;
}
#feature .feature_bg .feature__con__top .thumbnail.circle-wrap > div {
  position: initial;
  border: none;
  overflow: hidden;
}
#feature .feature_bg .feature__con__top .thumbnail img {
  display: block;
  max-width: 560px;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.16);
}
#feature .feature_bg .feature__con__bottom h4 {
  font-size: clamp(1rem, 0.628rem + 1.86vw, 1.5rem);
  color: #0964CB;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 3rem;
}
#feature .feature_bg .feature__con__bottom .feature-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: clamp(2.5rem, 1.637rem + 4.32vw, 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(1.4rem, 0.953rem + 2.23vw, 2rem);
  text-align: center;
  border-bottom: 4px solid #0B2760;
  line-height: 1.5;
  margin-bottom: 1.13rem;
}
#feature .feature_bg .feature__con__bottom .feature-list > dl dt h5 small {
  font-size: 0.6em;
  display: block !important;
}
#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;
  margin-inline: auto;
}
#feature .feature_bg .feature__con__bottom .feature-qualifications__summary {
  font-weight: 900;
  font-size: 1.1rem;
  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;
  width: 80%;
  min-width: 365px;
}
#feature .feature_bg .feature .circle-wrap > div {
  z-index: 1;
}
#feature .feature_bg .feature .circle-wrap .circle-01 {
  top: 36vw;
  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: 50%;
  left: -8vw;
  width: 37.4vh;
  height: 37.4vh;
  border-color: #05C9B5;
}
#feature .feature_bg .feature .circle-wrap .circle-04 {
  bottom: 95vw;
  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 > div {
  z-index: -1;
}
.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 {
  width: 75%;
  max-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 {
  flex-direction: column;
}
.inauguration_btn_wrap .wp-block-button {
  min-width: 280px;
  width: 80%;
}

.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(3rem, 2.907rem + 0.47vw, 3.125rem);
  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;
}

.mcon {
  line-height: 1.6;
  word-wrap: break-word;
  padding-block: 3rem;
  font-size: 14px;
}
.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 h5 {
  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=sp.css.map */