@charset "UTF-8";
/*
    Template: arkhe
    Theme Name: ARKHE CHILD
    Theme URI: https://arkhel-theme.com/
    Description: ARKHEの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/
/* ==========================================================================
Foundation
========================================================================== */
:root {
  --content-width: min( calc( 100vw - var(--ark-padding--container)*2 ), 1120px );
}

a {
  color: unset;
  text-decoration: none;
}

@media screen and (min-width: 769px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

address {
  font-style: unset;
}

html {
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 14px;
  }
}

body {
  color: #1D3260;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  background-image: url(img/bg_white.png);
  background-repeat: repeat;
}

.home .l-container:not(.l-header__body) {
  max-width: calc(1240px + var(--ark-padding--container) * 2);
}

.home .l-content__body {
  margin-top: 0;
  margin-bottom: 0;
}

.home .l-content {
  margin-bottom: 0;
}

.l-article {
  max-width: 1120px;
}

@media screen and (max-width: 999px) {
  .p-fixBtnWrap {
    bottom: 75px;
  }
  .snap .p-fixBtnWrap {
    opacity: 0 !important;
    visibility: hidden !important;
  }
}

/* ==========================================================================
Layout
========================================================================== */
.l-wide_block {
  position: relative;
  left: calc(50% - 50vw);
  width: 100vw;
  max-width: 100vw;
}

:root {
  --main-width: 400px;
}

.l-side_block {
  position: sticky;
  top: 0;
  height: 100vh;
  width: calc(50% - var(--main-width) / 2);
}
.l-side_block.--left {
  left: 0;
  background-color: blue;
}
.l-side_block.--right {
  right: 0;
  background-color: red;
}

.l-center_block {
  width: var(--main-width);
  font-size: 14px;
}
.l-center_block .l-center_block__content {
  padding-left: 2rem;
  padding-right: 2rem;
}

.l-bg {
  background-image: url(img/bg_navy.png);
  background-repeat: repeat;
}

/* ==========================================================================
Object
========================================================================== */
/* Component
----------------------------------------------------------------- */
.c-button {
  position: relative;
  display: inline-block;
  color: #1D3260;
  text-align: center;
  font-weight: bold;
  border: 1px solid #6DDFFF;
  border-radius: 8px;
  background-color: #6DDFFF;
  padding: 0.8em 2.5em;
  transition: 0.2s;
}
.c-button:hover {
  opacity: 0.8;
}
.c-button.--navy {
  background-color: #1D3260;
  color: #FFFFFF;
}
.c-button.--icon {
  padding-left: 2.1em;
}
.c-button.--icon .c-button__icon {
  position: absolute;
  top: 50%;
  left: 0.8em;
  transform: translateY(-50%);
  width: 1.3em;
  aspect-ratio: 1/1;
  object-fit: contain;
}

.c-menu_icon__wrapper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px 32px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 999px) {
  .c-menu_icon__wrapper {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px 24px;
    max-width: unset;
  }
}

.c-menu_icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.c-menu_icon .c-menu_icon__link {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  border-radius: 16px;
  width: 100%;
  aspect-ratio: 1/1;
  box-shadow: 0px 2px 10px 0px rgba(29, 50, 96, 0.06);
}
.c-menu_icon .c-menu_icon__link img {
  width: 55%;
  aspect-ratio: 1/1;
  object-fit: contain;
}
.c-menu_icon .c-menu_icon__text {
  display: flex;
  align-items: center;
  color: #1D3260;
  font-size: 12px;
  line-height: 1.15;
  letter-spacing: -1px;
  text-align: center;
  height: 2.3em;
}

.c-tag__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1em;
}

.c-tag {
  color: #FF7B91;
}

.c-feature {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
}
@media screen and (max-width: 999px) {
  .c-feature {
    height: auto;
    border-radius: unset;
    max-width: 450px;
  }
}
.c-feature .c-feature__img_box {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.c-feature .c-feature__title {
  display: none;
  position: relative;
  align-items: center;
  font-size: 1.15rem;
  font-weight: bold;
  height: 2em;
  padding-left: 2.5em;
  margin-left: 10px;
}
@media screen and (max-width: 999px) {
  .c-feature .c-feature__title {
    display: flex;
  }
}
.c-feature .c-feature__title::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 2em;
  aspect-ratio: 1/1;
  background-image: url(img/circle_logo.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.c-feature .c-feature__img {
  display: flex;
  width: 100%;
  aspect-ratio: 1/1;
}
.c-feature .c-feature__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-feature .c-feature__text_box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 20px;
}
@media screen and (max-width: 999px) {
  .c-feature .c-feature__text_box {
    height: auto;
    padding-left: var(--ark-padding--container);
    padding-right: var(--ark-padding--container);
    padding-bottom: 10px;
  }
}
.c-feature .c-feature__sub_title {
  font-size: 1.5rem;
  font-weight: bold;
}
.c-feature .c-feature__text {
  margin-top: 15px;
}
.c-feature .c-feature__tags {
  margin-top: 10px;
}
.c-feature .c-feature__button {
  width: 100%;
  margin-top: 20px;
}

.c-img_button__wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 16px;
}
@media screen and (max-width: 768px) {
  .c-img_button__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

.c-img_button {
  position: relative;
  display: flex;
  border-radius: 10px;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.c-img_button::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.25);
}
.c-img_button .c-img_button__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-img_button .c-img_button__text {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.15rem;
  text-align: center;
  width: 100%;
  height: 3em;
}

.c-date {
  color: #ADBBD8;
  font-size: 0.875rem;
  line-height: 1.15;
}

.c-news_card {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.c-news_card .c-news_card__img {
  width: 100%;
  aspect-ratio: 8/5;
  border-radius: 8px;
  overflow: hidden;
}
.c-news_card .c-news_card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-news_card .c-news_card__title {
  font-size: 1.15rem;
}

.c-gradient_button {
  position: relative;
  display: inline-block;
  color: #FFFFFF;
  text-align: center;
  border-radius: 40px;
  background-image: linear-gradient(90deg, #1E3361 0%, #2B94B2 100%);
  padding: 0.3em 1em;
  transition: 0.2s;
}
.c-gradient_button:hover {
  opacity: 0.8;
}

.c-class_card .c-class_card__img {
  border-radius: 16px;
  aspect-ratio: 8/5;
  overflow: hidden;
}
.c-class_card .c-class_card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 999px) {
  .c-class_card .c-class_card__img {
    border-radius: 8px 0px 0px 8px;
  }
}
.c-class_card .c-class_card__text_box {
  position: relative;
  padding-left: 3rem;
  margin-top: 30px;
}
@media screen and (max-width: 999px) {
  .c-class_card .c-class_card__text_box {
    padding-right: var(--ark-padding--container);
  }
}
.c-class_card .c-class_card__text_box::before {
  content: "";
  position: absolute;
  top: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.c-class_card .c-class_card__text_box.--flower::before {
  left: 0.5rem;
  transform: translateY(-25%);
  width: 1.8rem;
  aspect-ratio: 5/9;
  background-image: url(img/icon_tsubomi.png);
}
.c-class_card .c-class_card__text_box.--bird::before {
  left: 0.5rem;
  transform: translateY(20%);
  width: 2.2rem;
  aspect-ratio: 6/5;
  background-image: url(img/icon_hiyoko.png);
}
.c-class_card .c-class_card__text_box.--cafe::before {
  left: 0.5rem;
  width: 2rem;
  aspect-ratio: 1/1;
  background-image: url(img/icon_cafe.png);
}
.c-class_card .c-class_card__title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
}
.c-class_card .c-class_card__title .c-class_card__title__small {
  font-size: 0.875rem;
  font-weight: normal;
}
.c-class_card .c-class_card__text {
  line-height: 2;
  margin-top: 15px;
}
.c-class_card .c-class_card__button {
  width: 100%;
  margin-top: 10px;
}

.c-title {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.c-title .c-title__text {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
}
.c-title .c-title__text.--white {
  color: #FFFAE9;
}
.c-title .c-title__text .c-title__text_small {
  font-size: 1rem;
  font-weight: normal;
}

.c-post_slide {
  padding-left: max(var(--ark-padding--container), (100vw - var(--content-width)) / 2) !important;
  padding-right: max(var(--ark-padding--container), (100vw - var(--content-width)) / 2) !important;
}
.c-post_slide .c-post_slide__items {
  padding: 0;
}
.c-post_slide .swiper-scrollbar {
  position: static !important;
  margin-top: 20px;
  width: calc(1240px + var(--ark-padding--container) * 2);
  max-width: min(1240px, 100% - var(--ark-padding--container) * 2);
  margin-left: auto;
  margin-right: auto;
  background: rgba(29, 50, 96, 0.11);
  border-radius: 22px;
}
.c-post_slide .swiper-scrollbar .swiper-scrollbar-drag {
  background: #1D3260;
}

.c-slide_nav {
  position: absolute;
  background-color: #FFFFFF;
  border-radius: 50%;
  width: 60px;
  aspect-ratio: 1/1;
}
.c-slide_nav::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
  aspect-ratio: 1/1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.c-slide_nav.--next::before {
  background-image: url(img/arrow_right.png);
}
.c-slide_nav.--prev::before {
  background-image: url(img/arrow_left.png);
}

.c-arrow_button__wrapper {
  display: flex;
  flex-direction: column;
}
.c-arrow_button__wrapper .c-arrow_button {
  box-sizing: content-box;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media screen and (max-width: 999px) {
  .c-arrow_button__wrapper .c-arrow_button {
    justify-content: space-between;
  }
}
.c-arrow_button__wrapper > .c-arrow_button + .c-arrow_button {
  border-top: 2px solid #eee;
}

.c-arrow_button {
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  font-size: 1.125rem;
  font-weight: bold;
  height: 2.5em;
  padding-right: 3em;
  transition: 0.2s;
}
.c-arrow_button:hover {
  opacity: 0.8;
}
.c-arrow_button::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5em;
  aspect-ratio: 1/1;
  background-image: url(img/arrow_circle.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.c-special_slide ul {
  padding: 0;
}
.c-special_slide .c-special_slide__item {
  aspect-ratio: 6/5;
  border-radius: 32px;
  overflow: hidden;
}
.c-special_slide .c-special_slide__item .c-special_slide__link {
  display: block;
  width: 100%;
  height: 100%;
}
.c-special_slide .c-special_slide__item .c-special_slide__img {
  width: 100%;
  height: 100%;
}
.c-special_slide .c-special_slide__item .c-special_slide__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-gradient_text {
  background: linear-gradient(92deg, #1D3260 39.88%, #2B94B2 90.25%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Project
----------------------------------------------------------------- */
.p-more_about {
  margin-top: 100px;
}
@media screen and (max-width: 999px) {
  .p-more_about {
    margin-top: 50px;
  }
}
.p-more_about .p-more_about__title {
  font-size: 2rem;
  font-weight: bold;
}
.p-more_about .p-more_about__links {
  margin-top: 30px;
}

.p-information {
  color: #FFFFFF;
  margin-top: 160px;
  padding-top: 80px;
  padding-bottom: 100px;
}
@media screen and (max-width: 999px) {
  .p-information {
    margin-top: 70px;
  }
}
.p-information .p-information__title .c-title__text {
  transform: translateY(-50%);
}
@media screen and (max-width: 400px) {
  .p-information .p-information__title .c-title__text {
    font-size: 1.2rem;
    text-align: center;
  }
}
.p-information .p-information__main {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}
@media screen and (max-width: 999px) {
  .p-information .p-information__main {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
}
.p-information .p-information__content {
  flex-basis: 50%;
}
.p-information .p-information__text {
  line-height: 2;
  margin-top: 60px;
}
@media screen and (max-width: 999px) {
  .p-information .p-information__text {
    margin-top: 20px;
  }
}
.p-information .p-information__button {
  width: 100%;
  margin-top: 30px;
}
.p-information .p-information__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 100px;
  max-width: calc(1240px + var(--ark-padding--container) * 2);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--ark-padding--container);
  padding-right: var(--ark-padding--container);
  width: 100%;
}
@media screen and (max-width: 999px) {
  .p-information .p-information__items {
    grid-template-columns: 1fr;
    gap: 50px;
    margin-top: 80px;
    max-width: unset;
    padding-right: unset;
  }
}

.l-footer {
  background-color: #BEF1FF;
  padding-top: 120px;
  padding-bottom: 120px;
}

.p-footer {
  color: #1D3260;
}
.p-footer .p-footer__main {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .p-footer .p-footer__main {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.p-footer .p-footer__map_box .p-footer__map {
  width: 100%;
  aspect-ratio: 8/5;
  border-radius: 10px;
  overflow: hidden;
}
.p-footer .p-footer__map_box .p-footer__map_link {
  display: inline-block;
  line-height: 2;
  margin-top: 5px;
}
.p-footer .p-footer__address_box .p-footer__address_name {
  font-size: 1.35rem;
  font-weight: bold;
}
.p-footer .p-footer__address_box .p-footer__address {
  font-size: 1.15rem;
  margin-top: 10px;
}
.p-footer .p-footer__contact {
  margin-top: 40px;
}
.p-footer .p-footer__contact .p-footer__contact_text {
  text-align: center;
  line-height: 2;
}
.p-footer .p-footer__contact .p-footer__contact_buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}
.p-footer .p-footer__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-footer .p-footer__logo a {
    max-width: 200px;
  }
}
.p-footer .p-footer__links {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.p-footer .p-footer__links .p-footer__links_link {
  position: relative;
  line-height: 2;
}
.p-footer .p-footer__links .p-footer__links_link + .p-footer__links_link::before {
  content: "|";
  position: absolute;
  left: -0.6em;
}

.p-news {
  margin-top: 100px;
}
@media screen and (max-width: 999px) {
  .p-news {
    margin-top: 60px;
  }
}
.p-news .p-news__titles {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-news .p-news__titles .p-news__title {
  max-width: 50%;
}
@media screen and (max-width: 400px) {
  .p-news .p-news__titles .p-news__title .c-title__text {
    font-size: 1.2rem;
  }
}
.p-news .p-news__slide {
  margin-top: 30px;
}

.p-smile {
  margin-top: 70px;
  padding-bottom: 200px;
}
.p-smile .p-smile__titles {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-smile .p-smile__titles .p-smile__title {
  max-width: 50%;
}
.p-smile .p-smile__slide {
  margin-top: 30px;
}

.p-main_visual {
  position: relative;
}
.p-main_visual::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  aspect-ratio: 10/1;
  background-image: url(img/bg_blur.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  z-index: 2;
}
.p-main_visual .p-main_visual__slide {
  position: relative;
  height: 90vh;
}
@media screen and (max-width: 999px) {
  .p-main_visual .p-main_visual__slide {
    height: 120vw;
    max-height: 700px;
  }
}
.p-main_visual .p-main_visual__slide .swiper-area,
.p-main_visual .p-main_visual__slide .swiper {
  height: 100%;
}
.p-main_visual .p-main_visual__slide .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-bottom-right-radius: 5px;
}
@media screen and (max-width: 768px) {
  .p-main_visual .p-main_visual__slide .swiper-slide img {
    border-bottom-right-radius: unset;
  }
}
.p-main_visual .p-main_visual__catch {
  position: absolute;
  top: 5%;
  right: 5%;
  width: 10%;
  filter: drop-shadow(0px 0px 29px rgba(29, 50, 96, 0.49));
  z-index: 4;
}
.p-main_visual .p-main_visual__catch img {
  width: 100%;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .p-main_visual .p-main_visual__catch {
    width: 30%;
    max-width: 150px;
  }
}

.p-feature {
  padding-top: 80px;
  padding-bottom: 120px;
}
@media screen and (max-width: 999px) {
  .p-feature {
    padding-top: unset;
    padding-bottom: unset;
    margin-top: 100px;
  }
}
@media screen and (max-width: 999px) {
  .p-feature .p-feature__title {
    display: none;
  }
}
.p-feature .p-feature__slide {
  position: relative;
  margin-top: 80px;
}
@media screen and (max-width: 999px) {
  .p-feature .p-feature__slide {
    height: 100vh;
    margin-top: 0;
  }
}
.p-feature .p-feature__slide .p-feature__slide__item {
  height: auto;
  scale: 0.9;
  opacity: 0.3;
  transition: scale 0.2s, opacity 0.2s;
}
.p-feature .p-feature__slide .p-feature__slide__item.swiper-slide-active {
  scale: 1;
  opacity: 1;
}
@media screen and (max-width: 999px) {
  .p-feature .p-feature__slide .p-feature__slide__item {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    scale: 1;
    opacity: 1;
  }
}
.p-feature .p-feature__slide .c-slide_nav {
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
@media screen and (max-width: 999px) {
  .p-feature .p-feature__slide .c-slide_nav {
    display: none;
  }
}
.p-feature .p-feature__slide .c-slide_nav.--prev {
  left: 30%;
}
@media screen and (max-width: 1440px) {
  .p-feature .p-feature__slide .c-slide_nav.--prev {
    left: 18%;
  }
}
.p-feature .p-feature__slide .c-slide_nav.--next {
  right: 30%;
}
@media screen and (max-width: 1440px) {
  .p-feature .p-feature__slide .c-slide_nav.--next {
    right: 18%;
  }
}

.p-recruit {
  display: grid;
  justify-content: space-between;
  align-items: center;
  grid-template-columns: 22rem 35% 26%;
  margin-top: 120px;
}
@media screen and (max-width: 999px) {
  .p-recruit {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 20px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 999px) {
  .p-recruit .p-recruit__text_box {
    text-align: center;
  }
}
.p-recruit .p-recruit__text {
  line-height: 2.5;
  margin-top: 70px;
}
@media screen and (max-width: 999px) {
  .p-recruit .p-recruit__text {
    margin-top: 20px;
  }
}
.p-recruit .p-recruit__slide {
  width: 100%;
}
@media screen and (max-width: 999px) {
  .p-recruit .p-recruit__slide {
    width: 80%;
  }
}
.p-recruit .p-recruit__img {
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}
.p-recruit .p-recruit__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 999px) {
  .p-recruit .p-recruit__buttons {
    width: 80%;
  }
}

.p-special__bg {
  background-size: 100% 80%;
  background-repeat: no-repeat;
}

.p-special {
  margin-top: 240px;
  padding-top: 80px;
}
@media screen and (max-width: 999px) {
  .p-special {
    margin-top: 100px;
    padding-top: 40px;
  }
}
.p-special .p-special__title {
  display: flex;
  align-items: center;
  text-align: center;
}
.p-special .p-special__slide {
  margin-top: 50px;
}
@media screen and (max-width: 999px) {
  .p-special .p-special__slide {
    margin-top: 20px;
  }
}
@media screen and (max-width: 999px) {
  .p-special .p-special__slide .c-special_slide {
    padding-left: 70px !important;
    padding-right: 70px !important;
  }
}
.p-special .p-special__slide .c-slide_nav {
  top: 50%;
  z-index: 1;
}
@media screen and (max-width: 999px) {
  .p-special .p-special__slide .c-slide_nav {
    width: 45px;
  }
}
.p-special .p-special__slide .c-slide_nav.--prev {
  left: calc(29.5% - 30px);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 999px) {
  .p-special .p-special__slide .c-slide_nav.--prev {
    left: 15px;
    transform: translate(0, -50%);
  }
}
.p-special .p-special__slide .c-slide_nav.--next {
  right: calc(29.5% - 30px);
  transform: translate(50%, -50%);
}
@media screen and (max-width: 999px) {
  .p-special .p-special__slide .c-slide_nav.--next {
    right: 15px;
    transform: translate(0, -50%);
  }
}

.p-aboutus {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-top: 200px;
  margin-bottom: 30px;
}
@media screen and (max-width: 999px) {
  .p-aboutus {
    grid-template-columns: 1fr;
    margin-top: 60px;
  }
}
.p-aboutus .p-aboutus__text_box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-left: auto;
  margin-top: 60px;
}
.p-aboutus .p-aboutus__text_box .p-aboutus__link {
  margin-top: 20px;
}
@media screen and (max-width: 999px) {
  .p-aboutus .p-aboutus__text_box {
    align-items: flex-start;
    margin-top: 40px;
  }
  .p-aboutus .p-aboutus__text_box .p-aboutus__link {
    margin-left: auto;
  }
}
.p-aboutus .p-aboutus__text {
  font-size: 1.125rem;
  line-height: 2.5;
}
.p-aboutus .p-aboutus__deco {
  --deco1-w: calc( var(--content-width) * .24 );
  --deco2-w: calc( var(--content-width) * .32 );
  --deco3-w: calc( var(--content-width) * .32 );
  --deco1-h: calc( (var(--deco1-w) * 3) / 5);
  --deco2-h: calc( (var(--deco2-w) * 3.5) / 5);
  --deco3-h: var(--deco3-w);
  position: relative;
  height: calc(var(--deco1-h) + var(--deco2-h) + var(--deco3-h) + 80px - 50px);
  z-index: 1;
}
@media screen and (max-width: 999px) {
  .p-aboutus .p-aboutus__deco {
    width: 100%;
    height: unset;
    aspect-ratio: 5/7;
  }
}
.p-aboutus .p-aboutus__deco .p-aboutus__img_box {
  position: absolute;
}
.p-aboutus .p-aboutus__deco .p-aboutus__img_box.--deco-1 {
  top: 0;
  left: 15%;
  width: var(--deco1-w);
  aspect-ratio: 5/3;
}
.p-aboutus .p-aboutus__deco .p-aboutus__img_box.--deco-2 {
  top: calc(var(--deco1-h) + 40px);
  right: 0;
  width: var(--deco2-w);
  aspect-ratio: 5/3.5;
}
.p-aboutus .p-aboutus__deco .p-aboutus__img_box.--deco-3 {
  top: calc(var(--deco1-h) + var(--deco2-h) + 80px);
  left: 0;
  width: var(--deco3-w);
  aspect-ratio: 1/1;
}
@media screen and (max-width: 999px) {
  .p-aboutus .p-aboutus__deco .p-aboutus__img_box.--deco-1 {
    top: 0;
    left: 0;
    width: calc(50% - 5px);
    aspect-ratio: 4/3;
  }
  .p-aboutus .p-aboutus__deco .p-aboutus__img_box.--deco-2 {
    top: 0;
    right: 0;
    width: calc(50% - 5px);
    aspect-ratio: 4/3;
  }
  .p-aboutus .p-aboutus__deco .p-aboutus__img_box.--deco-3 {
    top: unset;
    left: 0;
    bottom: 0;
    width: 100%;
  }
}
.p-aboutus .p-aboutus__img_box {
  border-radius: 24px;
  overflow: hidden;
}
@media screen and (max-width: 999px) {
  .p-aboutus .p-aboutus__img_box {
    border-radius: 16px;
  }
}
.p-aboutus .p-aboutus__img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-aboutus .p-aboutus__img_box.--deco-main {
  width: 30%;
  aspect-ratio: 3/2;
}
@media screen and (max-width: 999px) {
  .p-aboutus .p-aboutus__img_box.--deco-main {
    display: none;
  }
}

.p-top_header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  top: -10vw;
  margin-bottom: -10vw;
  z-index: 2;
}
.p-top_header .p-top_header__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-top_header .p-top_header__logo {
  text-align: center;
  max-width: calc(100vw - 200px);
}
.p-top_header .p-top_header__text {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  margin-top: 30px;
}
@media screen and (max-width: 999px) {
  .p-top_header .p-top_header__text {
    font-size: 1.3rem;
    margin-top: 10px;
  }
}
@media screen and (max-width: 400px) {
  .p-top_header .p-top_header__text {
    font-size: 1.2rem;
  }
}

.p-top_header__open {
  position: absolute;
  top: 30%;
  right: 3%;
  width: 70px;
  height: 70px;
  padding: 0;
  background: transparent;
  border: unset;
  transition: opacity 0.2s;
}
@media screen and (max-width: 999px) {
  .p-top_header__open {
    width: 50px;
    height: 50px;
  }
}
.p-top_header__open img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.menu_fix .p-top_header__open {
  position: fixed;
  top: 6%;
}
@media screen and (max-width: 999px) {
  .snap .p-top_header__open {
    opacity: 0;
    visibility: hidden;
  }
}

.p-top_nav {
  margin-top: 50px;
  max-width: 800px;
}
@media screen and (max-width: 999px) {
  .p-top_nav {
    margin-top: 30px;
  }
}

.p-drawer {
  background-color: #FFFFFF;
  background-image: url(img/bg_white.png);
  background-repeat: repeat;
  padding: 1rem 0 1rem;
  z-index: 200 !important;
}
.p-drawer::before {
  width: 100vw !important;
}

.p-drawer__inner {
  width: 100vw !important;
}

.p-main_drawer__close {
  position: absolute;
  top: 1rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  padding: 0;
  background: transparent;
  border: unset;
}
@media screen and (max-width: 999px) {
  .p-main_drawer__close {
    right: 5vw;
  }
}
.p-main_drawer__close img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-main_drawer__logo {
  display: flex;
  align-items: center;
  width: 50%;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}

.p-main_drawer__menu {
  margin-top: 40px;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px 24px;
  max-width: unset;
}

.p-main_drawer__buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 40px;
}

.p-main_drawer__links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}
.p-main_drawer__links .p-main_drawer__link {
  color: #1D3260;
  font-weight: bold;
  transition: 0.2s;
}
.p-main_drawer__links .p-main_drawer__link:hover {
  opacity: 0.8;
}

.l-header {
  background-image: url(img/bg_white.png);
  background-repeat: repeat;
}

.l-header__body {
  position: static;
}

.l-header__center {
  display: flex;
  justify-content: center;
  padding: 1rem 0;
}
@media screen and (max-width: 999px) {
  .l-header__center {
    padding: 0.5rem 0;
  }
}

.l-header__drawerBtn {
  position: absolute;
  right: var(--ark-padding--container);
  width: 70px;
  height: 70px;
  z-index: 1;
}
@media screen and (max-width: 999px) {
  .l-header__drawerBtn {
    width: 50px;
    height: 50px;
  }
}
.l-header__drawerBtn .c-iconBtn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.l-header__drawerBtn .c-iconBtn__icon .arkhe-svg-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.l-header__drawerBtn .c-iconBtn__icon .arkhe-svg-menu img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.l-header__logo {
  width: 200px;
  aspect-ratio: 2/1;
}
@media screen and (max-width: 999px) {
  .l-header__logo {
    width: 120px;
  }
}
.l-header__logo .c-headLogo {
  width: 100%;
  height: 100%;
}
.l-header__logo .c-headLogo .c-headLogo__img {
  width: 100%;
}

.p-fix_bottom {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: translateY(100%);
  transition: 0.2s;
}
@media screen and (max-width: 999px) {
  .p-fix_bottom {
    display: block;
  }
  [data-scrolled=true] .p-fix_bottom {
    transform: translateY(0);
  }
  [data-scrolled=true] .p-fix_bottom .p-fix_bottom__button {
    box-shadow: 0px -9px 10px 0px rgba(29, 50, 96, 0.06);
  }
  .snap .p-fix_bottom {
    transform: translateY(100%) !important;
  }
}
.p-fix_bottom .p-fix_bottom__button {
  display: inline-block;
  font-size: 1.125rem;
  text-align: center;
  border-radius: 24px 24px 0px 0px;
  padding: 1.2em 1em;
  width: 100%;
  background-color: #FFFFFF;
}
.p-fix_bottom .p-fix_bottom__button .p-fix_bottom__button__text {
  position: relative;
  padding-left: 2.6em;
}
.p-fix_bottom .p-fix_bottom__button .p-fix_bottom__button__text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 2.5em;
  aspect-ratio: 4/3;
  background-image: url(img/icon_document.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.p-fix_side {
  --to_top: calc( 6% + 42px );
  position: fixed;
  bottom: calc(var(--to_top) + 20px);
  right: 0;
  width: 150px;
  aspect-ratio: 3/2;
  transform: translateX(100%);
  transition: 0.2s;
}
[data-scrolled=true] .p-fix_side {
  transform: translateX(0);
}
@media screen and (max-width: 999px) {
  .p-fix_side {
    display: none;
  }
}
.p-fix_side .p-fix_side__button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 24px 0px 0px 24px;
  background: #FFFFFF;
  box-shadow: 0px 2px 10px 0px rgba(29, 50, 96, 0.06);
}
.p-fix_side .p-fix_side__button .p-fix_side__button_img {
  width: 30%;
  aspect-ratio: 1/1;
  object-fit: contain;
}

/* Utility
----------------------------------------------------------------- */
@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
@media screen and (max-width: 999px) {
  .ar {
    display: none !important;
  }
}
/* Block
----------------------------------------------------------------- */
/*--------------------------------
    継承元
--------------------------------*/
/*------ 見出しH2 -------*/
/*------ 見出しH3 -------*/
/*------ 見出しH4 -------*/
/*------ リンク -------*/
.post_content a:not(a[class]), .editor-styles-wrapper a:not(a[class]),
.block-editor-block-preview__content a:not(a[class]) {
  color: var(--color_link);
  text-decoration: underline;
}
.post_content a:hover:not(a[class]), .editor-styles-wrapper a:hover:not(a[class]),
.block-editor-block-preview__content a:hover:not(a[class]) {
  text-decoration: none;
}

/*--------------------------------
    出力
--------------------------------*/
.p-top_area {
  position: relative;
  display: grid;
  grid-template-columns: 35% 1fr;
}
.p-top_area::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  aspect-ratio: 10/1;
  background-image: url(img/bg_blur.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}
@media screen and (max-width: 999px) {
  .p-top_area {
    grid-template-columns: 1fr;
  }
}
.p-top_area .p-top_area__body {
  display: flex;
  align-items: center;
  padding-left: var(--ark-padding--container);
  padding-right: var(--ark-padding--container);
}
@media screen and (max-width: 999px) {
  .p-top_area .p-top_area__body {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.p-top_area .p-top_area__title {
  z-index: 1;
}
.p-top_area .p-top_area__img {
  aspect-ratio: 1.7/1;
  border-top-left-radius: 40px;
  overflow: hidden;
}
@media screen and (max-width: 999px) {
  .p-top_area .p-top_area__img {
    margin-left: var(--ark-padding--container);
  }
}
.p-top_area .p-top_area__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
