@charset "UTF-8";
body {
  font-size: 16px;
  line-height: 1.5;
  font-family: "Honoka Shin Mincho", serif !important;
  background: #FFFFFF;
  color: #031B2A;
}

html {
  font-size: 100%;
}
@media screen and (max-width: 900px) {
  html {
    font-size: 80%;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 4.102vw;
  }
}

a {
  cursor: pointer;
  color: #031B2A !important;
}

.header {
  width: 100%;
  z-index: 9999;
  background: #FFFFFF;
  position: fixed;
  top: 0;
}

.header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1240px) {
  .header_inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media screen and (max-width: 1200px) {
  .header_inner {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
@media screen and (max-width: 768px) {
  .header_inner {
    margin-left: auto;
    margin-right: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 13px;
    padding-right: 13px;
  }
}

.header_logo img {
  width: 4.3rem;
  display: block;
}
@media screen and (max-width: 768px) {
  .header_logo img {
    width: 3.3rem;
  }
}

.header_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.35rem;
}
@media screen and (max-width: 1200px) {
  .header_nav {
    gap: 15px;
  }
}
@media screen and (max-width: 1000px) {
  .header_nav {
    gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  .header_nav {
    display: none;
  }
}

.header_link {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  font-size: 0.75rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 400;
}
.header_link:hover {
  opacity: 0.7;
}

.header_link_contact {
  font-size: 0.75rem;
  font-weight: 400;
  padding: 6px 11px;
  border: 0.5px solid #031B2A;
}
@media screen and (max-width: 768px) {
  .header_link_contact {
    border: 1px solid #599BB2;
  }
}

@media screen and (max-width: 768px) {
  .sp-hidden {
    display: none;
  }
}

.sp-header {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.2rem;
  }
}

.header_open {
  display: none;
}
@media screen and (max-width: 768px) {
  .header_open {
    display: block;
  }
}

.drawer-icon {
  width: 24px;
  height: 24px;
  padding-right: 15px;
  position: relative;
  z-index: 999;
  background-color: #FFFFFF;
  border: none;
}
.drawer-icon.is-checked {
  position: absolute;
  top: 6%;
  right: 8%;
  background-color: transparent;
}
.drawer-icon.is-checked .drawer-icon_bar {
  width: 16px;
}
.drawer-icon.is-checked .drawer-icon_bar:nth-of-type(1) {
  display: none;
}

.header_logo_img.is-hidden {
  display: none;
}

.drawer-icon_bar {
  position: absolute;
  top: 12px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 14px;
  height: 2px;
  border-radius: 6px;
  background: #599BB2;
  -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer-icon_bar:nth-of-type(1) {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
.drawer-icon_bar:nth-of-type(2) {
  top: 12.7px;
}

.drawer_content {
  width: 70%;
  height: 100svh;
  position: fixed;
  top: 0;
  right: 0;
  background: url(../img/Sp-menu.png) no-repeat top center/cover;
  z-index: 9999;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer_content.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drower_content_inner {
  padding: 100px 0px 70px 0px;
  position: relative;
  width: 75%;
  margin-left: auto;
  margin-right: auto;
}

.drower_content__nav {
  position: relative;
}

.drower_content_link {
  display: block;
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  font-size: 12px;
  position: relative;
}
.drower_content_link::before {
  position: absolute;
  content: "";
  background: url(../img/buttom_arrow.png) no-repeat center center/cover;
  width: 9px;
  height: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 6px;
}
.drower_content_link:hover, .drower_content_link:focus {
  color: #00A8C8;
  border-bottom: 1px solid #00A8C8;
}

.drower-contact {
  margin-top: 12px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 16px;
  font-size: 12px;
}

/* =========================
   FV
========================= */
.fv {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  top: 70px;
}

@media screen and (max-width: 768px) {
  .fv {
    height: 100svh;
    top: 47px;
  }
}
/* =========================
   Swiper 基本
========================= */
.fv-swiper,
.swiper-wrapper,
.swiper-slide {
  width: 100%;
  height: 100%;
}

/* =========================
   スライドのトランジション
   ※ creativeEffect と競合しないよう
     opacityとtransformはSwiperに任せる
========================= */
.swiper-slide {
  position: relative;
  overflow: hidden;
}

/* =========================
   動画
========================= */
.swiper-slide video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-filter: brightness(0.92);
          filter: brightness(0.92);
}

/* =========================
   オーバーレイ
========================= */
/* =========================
   FV テキスト
========================= */
.fv-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .fv-content {
    width: 90%;
  }
}

.fv-small {
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .fv-small {
    font-size: 1.25rem;
  }
}

.fv-logo {
  width: 14.75rem;
  max-width: 40vw;
  margin-bottom: 32px;
}
@media screen and (max-width: 1300px) {
  .fv-logo {
    width: 10rem;
  }
}

.fv-title {
  font-size: 3rem;
  font-family: "02UtsukushiMincho", serif;
  font-weight: 200;
  line-height: 1.5;
  letter-spacing: 0.08em;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}
@media screen and (max-width: 1300px) {
  .fv-title {
    font-size: 1.5rem;
  }
}

.fv-title.fade-out {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

.fv-sub {
  font-size: 1.25rem;
  letter-spacing: 0.2em;
  line-height: 1.8;
  font-weight: 200;
}
@media screen and (max-width: 1300px) {
  .fv-sub {
    font-size: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .fv-logo {
    width: 8rem;
    margin-bottom: 24px;
  }
  .fv-title {
    font-size: 1.5rem;
  }
  .fv-sub {
    font-size: 1rem;
  }
}
.fade-item {
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, transform 1s ease;
  transition: opacity 1s ease, transform 1s ease, -webkit-transform 1s ease;
}

.fade-item.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fade-img {
  opacity: 0;
  -webkit-transition: opacity 1.2s ease;
  transition: opacity 1.2s ease;
}

.fade-img.visible {
  opacity: 1;
}

/* 親要素にfade-imgをつけて、before/afterに opacity を連動させる */
.fade-img::before,
.fade-img::after {
  opacity: 0;
  -webkit-transition: opacity 2s ease;
  transition: opacity 2s ease;
}

.fade-img.visible::before,
.fade-img.visible::after {
  opacity: 1;
}

.mission {
  padding-top: 160px;
  padding-bottom: 160px;
  background: linear-gradient(-51deg, #F6FEFF 0%, #D5ECF4 100%);
  position: relative;
}
@media screen and (max-width: 768px) {
  .mission {
    padding-top: 125px;
    padding-bottom: 126px;
    background: -webkit-gradient(linear, right top, left top, from(#F6FEFF), to(#D5ECF4));
    background: linear-gradient(to left, #F6FEFF 0%, #D5ECF4 100%);
  }
}
.mission::before {
  position: absolute;
  content: "";
  background: url(../img/img2-2.jpg) no-repeat center center/cover;
  top: 50%;
  left: 8%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 18.75rem;
  height: 18.75rem;
}
@media screen and (max-width: 1300px) {
  .mission::before {
    width: 15.75rem;
    height: 15.75rem;
  }
}
@media screen and (max-width: 1200px) {
  .mission::before {
    width: 12.75rem;
    height: 12.75rem;
    left: 5%;
  }
}
@media screen and (max-width: 768px) {
  .mission::before {
    display: none;
  }
}
.mission::after {
  position: absolute;
  content: "";
  background: url(../img/img1.jpg) no-repeat center center/cover;
  top: 50%;
  right: 8%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 18.75rem;
  height: 18.75rem;
}
@media screen and (max-width: 1300px) {
  .mission::after {
    width: 15.75rem;
    height: 15.75rem;
  }
}
@media screen and (max-width: 1200px) {
  .mission::after {
    width: 12.75rem;
    height: 12.75rem;
    right: 5%;
  }
}
@media screen and (max-width: 768px) {
  .mission::after {
    display: none;
  }
}

.inner {
  padding-left: 6.9444444444%;
  padding-right: 6.9444444444%;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-left: 4.2666666667%;
    padding-right: 4.2666666667%;
  }
}

.title-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.title-en {
  font-size: 1.5rem;
  font-family: "Kapakana", cursive;
}

.title {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .title {
    font-size: 1.5rem;
  }
}

.mission-title {
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 2rem;
  border-bottom: 1px solid #031B2A;
  padding-bottom: 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .mission-title {
    margin-top: 45px;
    padding-left: 0;
    padding-right: 0;
  }
}
.mission-title p:nth-child(1) {
  font-size: 1rem;
}
.mission-title p:nth-child(2) {
  font-size: 1.5rem;
}

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

.mission-text {
  margin-top: 40px;
}
.mission-text p {
  line-height: 250%;
  font-size: 1rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .mission-text p {
    line-height: 260%;
  }
}
.mission-text p:nth-child(2) {
  margin-top: 40px;
}

.buttom {
  margin-top: 40px;
  line-height: 250%;
  font-size: 1rem;
  position: relative;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .buttom {
    font-size: 1.1rem;
  }
}
.buttom::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../img/bottom-line.png) no-repeat center center/cover;
  content: "";
  width: 7.9rem;
  height: 5px;
}
.buttom:hover, .buttom:focus {
  opacity: 0.7;
}

.mission-sp-img {
  display: none;
}
@media screen and (max-width: 768px) {
  .mission-sp-img {
    display: block;
    margin-top: 38px;
  }
}
@media screen and (max-width: 768px) {
  .mission-sp-img img {
    width: 16rem;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}

.mission-sp-img2 {
  display: none;
}
@media screen and (max-width: 768px) {
  .mission-sp-img2 {
    display: block;
    margin-top: 45px;
    position: relative;
    width: 16rem;
    height: 16rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.mission-sp-img2 img:nth-child(1) {
  width: 8rem;
  position: absolute;
  top: 0;
  right: 0;
}
.mission-sp-img2 img:nth-child(2) {
  width: 8rem;
  position: absolute;
  bottom: 0;
  left: 0;
}

.case {
  padding-top: 160px;
  padding-bottom: 185px;
}
@media screen and (max-width: 768px) {
  .case {
    padding-top: 118px;
    padding-bottom: 152px;
  }
}

.title-subtext {
  font-size: 1.3rem;
  text-align: center;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .title-subtext {
    font-size: 1rem;
    margin-top: 29px;
  }
}

.case-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 5rem;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .case-content {
    margin-top: 44px;
  }
}

.case-left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  .case-left {
    display: none;
  }
}
.case-right {
  width: 75%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .case-right {
    width: 100%;
  }
}

.line {
  background: #C1C3C3;
  height: 1px;
  width: 100%;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .line {
    display: none;
  }
}

.case-right2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 2.5rem;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-left: 12px;
}
@media screen and (max-width: 768px) {
  .case-right2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.case-right-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.case-right-content img {
  display: block;
}
@media screen and (max-width: 768px) {
  .case-right-content img {
    width: 16rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.case-content-text {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.case-content-text p {
  font-size: 1rem;
  line-height: 160%;
}
@media screen and (max-width: 768px) {
  .case-content-text p {
    text-align: center;
  }
}
.why {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(2%, #EAF2F5), to(#96C2D1));
  background: linear-gradient(-180deg, #EAF2F5 2%, #96C2D1 100%);
  position: relative;
  padding-top: 80px;
  padding-bottom: 90px;
}
@media screen and (max-width: 768px) {
  .why {
    padding-top: 90px;
  }
}

.title-blue {
  color: #599BB2;
}

.why-background-top {
  position: absolute;
  width: 100%;
  height: 80px;
  top: -79px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  overflow: hidden;
}

.why-background-bottom {
  position: absolute;
  width: 100%;
  height: 80px;
  bottom: -78px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.why-content {
  margin-top: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
}
@media screen and (max-width: 768px) {
  .why-content {
    margin-top: 42px;
    gap: 37px;
  }
}

.why-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1200px) {
  .why-box {
    gap: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .why-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
  }
}

.why-box-img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.why-box-img img {
  display: block;
  width: 100%;
  max-width: 37.5rem;
}

.why-box-number {
  position: absolute;
  top: -34%;
  left: 0;
  font-family: "Kapakana", cursive;
  font-weight: lighter;
  font-size: 8rem;
}
@media screen and (max-width: 1000px) {
  .why-box-number {
    top: -22%;
    font-size: 6rem;
  }
}
@media screen and (max-width: 768px) {
  .why-box-number {
    left: 4%;
    top: -16%;
  }
}

.why-box-right {
  -webkit-box-flex: 0.7;
      -ms-flex: 0.7;
          flex: 0.7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  background: #FFFFFF;
  padding: 2.5rem 4rem;
  position: relative;
  height: 17.25rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: auto;
  margin-bottom: auto;
}
@media screen and (max-width: 1200px) {
  .why-box-right {
    height: 20.25rem;
    padding: 2.5rem 3rem;
  }
}
@media screen and (max-width: 1000px) {
  .why-box-right {
    height: 22.25rem;
  }
}
@media screen and (max-width: 768px) {
  .why-box-right {
    padding: 2.8rem 1.3rem 1.9rem;
  }
}
.why-box-right h3 {
  font-size: 1.3rem;
}
@media screen and (max-width: 768px) {
  .why-box-right h3 {
    letter-spacing: 10%;
  }
}

.why-content .why-box:nth-child(2) .why-box-right {
  height: 21rem;
}
@media screen and (max-width: 1200px) {
  .why-content .why-box:nth-child(2) .why-box-right {
    height: 24rem;
  }
}
@media screen and (max-width: 1000px) {
  .why-content .why-box:nth-child(2) .why-box-right {
    height: 26rem;
  }
}

.why-box-text {
  font-size: 1rem;
  line-height: 150%;
}
@media screen and (max-width: 768px) {
  .why-box-text {
    font-weight: 200;
    letter-spacing: 10%;
  }
}

.h_hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.review {
  margin-top: 225px;
  margin-bottom: 185px;
}
@media screen and (max-width: 768px) {
  .review {
    margin-top: 168px;
    margin-bottom: 158px;
  }
}

.title-review-text {
  font-size: 1.9rem;
}
@media screen and (max-width: 768px) {
  .title-review-text {
    font-size: 1.5rem;
  }
}

.review-title {
  margin-top: 68px;
}
@media screen and (max-width: 768px) {
  .review-title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 50px;
    gap: 0;
    width: 85%;
    padding-bottom: 14px;
  }
}
.review-title p:nth-child(1) {
  font-size: 1.5rem;
}

.review-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 2.5rem;
  max-width: 46.5rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .review-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 25px;
    gap: 3.1rem;
  }
}

.review-left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  .review-left img {
    width: 9.3rem;
  }
}

.review-right {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}
.review-right p {
  line-height: 150%;
}
.review-right p:nth-child(1) {
  font-size: 1rem;
  font-weight: lighter;
}
.review-right p:nth-child(2) {
  font-size: 1rem;
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .review-right p:nth-child(2) {
    margin-top: 30px;
  }
}

.review-google {
  margin-top: 90px;
  text-align: center;
  margin-bottom: 90px;
}
@media screen and (max-width: 768px) {
  .review-google {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

.ti-widget.ti-goog {
  overflow: hidden !important;
  overflow-y: scroll;
}

.title-google {
  font-size: 1.5rem;
}

.google-text {
  margin-top: 16px;
  font-size: 1.5rem;
}

.google-content {
  border: 1px solid #031B2A;
  padding: 1.5rem 1rem;
  margin-top: 24px;
  max-width: 40.5rem;
  margin-left: auto;
  margin-right: auto;
  height: 40rem;
  overflow-y: scroll;
}
@media screen and (max-width: 768px) {
  .google-content {
    padding: 2.5rem 1rem;
  }
}

.review-text-more {
  margin-top: 20px;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .review-text-more {
    font-size: 1.2rem;
  }
}

.vision {
  background: -webkit-gradient(linear, left top, left bottom, from(#96C2D1), to(#599BB2));
  background: linear-gradient(180deg, #96C2D1 0%, #599BB2 100%);
  position: relative;
  padding-top: 70px;
  padding-bottom: 160px;
}
@media screen and (max-width: 768px) {
  .vision {
    padding-top: 47px;
    padding-bottom: 147px;
  }
}

.title-white {
  color: #FFFFFF;
}

.vision-title {
  border-bottom: 1px solid #FFFFFF;
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .vision-title {
    margin-top: 52px;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.vision-title p:nth-child(1) {
  color: #FFFFFF;
  font-size: 1.4rem;
}

.vision-content {
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 58.5rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1200px) {
  .vision-content {
    gap: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .vision-content {
    margin-top: 38px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.vision-left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.vision-left img {
  display: block;
}
@media screen and (max-width: 768px) {
  .vision-left img {
    width: 16rem;
    height: 11rem;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.vision-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  -webkit-box-flex: 1.2;
      -ms-flex: 1.2;
          flex: 1.2;
}
.vision-right p {
  color: #FFFFFF;
  font-size: 0.9rem;
  text-shadow: 0px 0px 4px rgba(255, 255, 255, 0.7019607843);
  font-weight: lighter;
}
@media screen and (max-width: 768px) {
  .vision-right p {
    line-height: 180%;
  }
}

.footer-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media screen and (max-width: 768px) {
  .footer-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer-top-box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.footer-top-box img {
  display: block;
}
.footer-top-box:hover, .footer-top-box:focus {
  opacity: 0.7;
}

.footer-bottom {
  padding-top: 80px;
  padding-bottom: 80px;
}

.footer-bottom-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
@media screen and (max-width: 768px) {
  .footer-bottom-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: normal;
        -ms-flex-align: normal;
            align-items: normal;
    gap: 1.5rem;
  }
}

.footer-logo img {
  display: block;
  width: 7.6rem;
}

.footer-bottom-text {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.footer-bottom-text p {
  font-size: 0.75rem;
}

.footer_navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.35rem;
}
@media screen and (max-width: 1200px) {
  .footer_navi {
    gap: 15px;
  }
}
@media screen and (max-width: 1000px) {
  .footer_navi {
    gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  .footer_navi {
    display: grid;
    grid-template-columns: repeat(3, 2fr);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.35rem;
    row-gap: 0.5rem;
  }
}

.page-header {
  position: relative;
  top: 0;
  background: #FFFFFF;
}

.page-header_inner {
  border-bottom: none;
  margin-left: 0;
  margin-right: 0;
}

.p-fv {
  background: url(../img/p-about-img1.jpg) no-repeat center center/cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 18.7rem;
  text-align: center;
  margin-top: 4.3rem;
}
@media screen and (max-width: 768px) {
  .p-fv {
    height: 10rem;
    margin-top: 3.25rem;
  }
}

.p-fv-content h1 {
  font-family: "02UtsukushiMincho", serif;
  color: #FFFFFF;
  font-size: 3rem;
  font-weight: 200;
  text-shadow: 0 0 14.4px rgba(175, 115, 46, 0.5);
}
@media screen and (max-width: 768px) {
  .p-fv-content h1 {
    font-size: 2rem;
  }
}
.p-fv-content p {
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 200;
}
@media screen and (max-width: 768px) {
  .p-fv-content p {
    font-size: 1rem;
  }
}

.p-about-intro {
  background: -webkit-gradient(linear, right top, left top, from(#F6FEFF), to(#D5ECF4));
  background: linear-gradient(to left, #F6FEFF 0%, #D5ECF4 100%);
  padding-top: 80px;
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .p-about-intro {
    padding-top: 120px;
    background: -webkit-gradient(linear, right top, left top, from(#F6FEFF), to(#D5ECF4));
    background: linear-gradient(to left, #F6FEFF 0%, #D5ECF4 100%);
  }
}

.pai-title {
  margin-top: 45px;
}
.pai-title p {
  text-align: center;
  font-size: 1.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 16px;
  border-bottom: 1px solid #031B2A;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .pai-title p {
    font-size: 1.25rem;
    line-height: 160%;
  }
}

.pai-img img {
  display: block;
  width: 43rem;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}

.p-about-mission {
  position: relative;
  padding-bottom: 120px;
  padding-top: 39px;
}
@media screen and (max-width: 768px) {
  .p-about-mission {
    padding-top: 97px;
  }
}

.p-title {
  font-size: 1.5rem;
  padding-bottom: 18px;
  border-bottom: 1px solid #599BB2;
}

@media screen and (max-width: 768px) {
  .title-box2 {
    width: 100%;
  }
}

.pam-text {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .pam-text {
    margin-top: 39px;
  }
}
.pam-text p {
  text-align: center;
  font-size: 1rem;
  line-height: 250%;
}
@media screen and (max-width: 768px) {
  .pam-text p {
    line-height: 260%;
  }
}

.pam-img {
  position: absolute;
  width: 15.6rem;
  height: auto;
  right: 10.5%;
  top: 43%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 1350px) {
  .pam-img {
    right: 6.5%;
  }
}
@media screen and (max-width: 1200px) {
  .pam-img {
    right: 5.5%;
    width: 12.6rem;
  }
}
@media screen and (max-width: 1050px) {
  .pam-img {
    right: 4.5%;
    width: 10.6rem;
  }
}
@media screen and (max-width: 768px) {
  .pam-img {
    margin-left: auto;
    margin-right: auto;
    margin-top: 39px;
    position: relative;
    -webkit-transform: none;
            transform: none;
    right: 0;
    width: 16.5rem;
  }
}

.p-about-Vision {
  padding-top: 120px;
  padding-bottom: 120px;
  background: #F8F8F8;
  position: relative;
}

.pav-img {
  position: absolute;
  width: 15.6rem;
  height: auto;
  left: 11.5%;
  top: 48%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 1350px) {
  .pav-img {
    left: 6.5%;
  }
}
@media screen and (max-width: 1200px) {
  .pav-img {
    left: 5.5%;
    width: 12.6rem;
  }
}
@media screen and (max-width: 1050px) {
  .pav-img {
    right: 4.5%;
    width: 10.6rem;
  }
}
@media screen and (max-width: 768px) {
  .pav-img {
    margin-left: auto;
    margin-right: auto;
    margin-top: 39px;
    position: relative;
    -webkit-transform: none;
            transform: none;
    right: 0;
    width: 16.5rem;
    left: 0;
  }
}

.p-about-Value {
  position: relative;
  padding-top: 80px;
  padding-bottom: 210px;
}
@media screen and (max-width: 768px) {
  .p-about-Value {
    padding-top: 103px;
    padding-bottom: 230px;
  }
}

.pava-img {
  position: absolute;
  width: 15.6rem;
  height: auto;
  left: 10.5%;
  top: 39%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 1350px) {
  .pava-img {
    left: 6.5%;
  }
}
@media screen and (max-width: 1200px) {
  .pava-img {
    left: 5.5%;
    width: 12.6rem;
  }
}
@media screen and (max-width: 1050px) {
  .pava-img {
    right: 4.5%;
    width: 10.6rem;
  }
}
@media screen and (max-width: 768px) {
  .pava-img {
    margin-left: auto;
    margin-right: auto;
    margin-top: 39px;
    position: relative;
    -webkit-transform: none;
            transform: none;
    right: 0;
    width: 10rem;
    left: -19%;
  }
}

.pav-img2 {
  position: absolute;
  width: 15.6rem;
  height: auto;
  right: 10.5%;
  top: 39%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 1350px) {
  .pav-img2 {
    right: 6.5%;
  }
}
@media screen and (max-width: 1200px) {
  .pav-img2 {
    right: 5.5%;
    width: 12.6rem;
  }
}
@media screen and (max-width: 1050px) {
  .pav-img2 {
    right: 4.5%;
    width: 10.6rem;
  }
}
@media screen and (max-width: 768px) {
  .pav-img2 {
    margin-left: auto;
    margin-right: auto;
    margin-top: 39px;
    position: relative;
    -webkit-transform: none;
            transform: none;
    right: 0;
    width: 10rem;
    left: 20%;
  }
}

.p-about-why {
  background: -webkit-gradient(linear, left top, left bottom, from(#96C2D1), to(#599BB2));
  background: linear-gradient(180deg, #96C2D1 0%, #599BB2 100%);
  padding-top: 10px;
  padding-bottom: 20px;
}

.p-about-text {
  margin-top: 242px;
  margin-bottom: 102px;
}
@media screen and (max-width: 1200px) {
  .p-about-text {
    margin-top: 200px;
    margin-bottom: 90px;
  }
}
@media screen and (max-width: 768px) {
  .p-about-text {
    margin-top: 170px;
  }
}
.p-about-text p {
  font-size: 1.4rem;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .p-about-text p {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .p-about-text p {
    line-height: 160%;
    font-size: 1.25rem;
  }
}
.p-about-text img {
  display: block;
  width: 56rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5px;
}
@media screen and (max-width: 1200px) {
  .p-about-text img {
    width: 46rem;
    margin-top: 10px;
  }
}

.p-price-fv {
  background: url(../img/p-price-img1.jpg) no-repeat center center/cover;
}

.p-price {
  position: relative;
  padding-top: 160px;
  padding-bottom: 160px;
}
@media screen and (max-width: 768px) {
  .p-price {
    padding-top: 90px;
  }
}

.pp-background-top {
  top: 0;
}
.pp-price-top {
  margin-top: 90px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .pp-price-top {
    margin-top: 50px;
  }
}

.pp-proce-text {
  font-size: 2rem;
  color: #599BB2;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .pp-proce-text {
    font-size: 1.3rem;
  }
}

.pp-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-top: 51px;
}

.pp-box-cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 4.9rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pp-box-cont p:nth-child(1) {
  font-size: 1rem;
  color: #FFFFFF;
  background: #599BB2;
  min-width: 7.6rem;
  height: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pp-box-cont p:nth-child(2) {
  font-size: 1.5rem;
}

.pp-price-img {
  position: absolute;
  width: 15.6rem;
  height: auto;
  left: 7.5%;
  top: 4%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 1350px) {
  .pp-price-img {
    left: 6.5%;
  }
}
@media screen and (max-width: 1200px) {
  .pp-price-img {
    left: 5.5%;
    width: 12.6rem;
  }
}
@media screen and (max-width: 1050px) {
  .pp-price-img {
    left: 4.5%;
    width: 10.6rem;
  }
}
@media screen and (max-width: 768px) {
  .pp-price-img {
    display: none;
  }
}

.pp-price-img2 {
  position: absolute;
  width: 15.6rem;
  height: auto;
  right: 7.5%;
  top: 4%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 1350px) {
  .pp-price-img2 {
    right: 6.5%;
  }
}
@media screen and (max-width: 1200px) {
  .pp-price-img2 {
    right: 5.5%;
    width: 12.6rem;
  }
}
@media screen and (max-width: 1050px) {
  .pp-price-img2 {
    right: 4.5%;
    width: 10.6rem;
  }
}
@media screen and (max-width: 768px) {
  .pp-price-img2 {
    width: 10rem;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin-top: 45px;
  }
}

.pp-special {
  margin-top: 90px;
}
@media screen and (max-width: 768px) {
  .pp-special {
    margin-top: 49px;
  }
}
.pp-special p {
  text-align: center;
  font-size: 1rem;
}

.pp-special-price {
  margin-top: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 2.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .pp-special-price {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.pp-special-price-img img {
  display: block;
  width: 35rem;
}

.pp-background-bottom {
  bottom: 0;
  height: auto;
}

.p-staff-fv {
  background: url(../img/p-staff-img1.jpg) no-repeat center center/cover;
}

.p-staff {
  position: relative;
  padding-top: 200px;
  padding-bottom: 200px;
}
@media screen and (max-width: 768px) {
  .p-staff {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.ps-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5rem;
}

.ps-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
  padding-top: 2rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .ps-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.ps-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px; /* 線の太さ */
  background: #C1C3C3;
}

.ps-img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.ps-img img {
  display: block;
  width: 19rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .ps-img img {
    width: 17rem;
  }
}

.ps-right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  .ps-right {
    text-align: center;
  }
}
.ps-right p:nth-child(1) {
  font-size: 1.25rem;
}
.ps-right p:nth-child(3) {
  margin-top: 2rem;
  font-size: 1.25rem;
}
@media screen and (max-width: 768px) {
  .ps-right p:nth-child(3) {
    font-size: 1rem;
  }
}
.ps-right h2 {
  font-size: 1.25rem;
}

.ps-buttom {
  font-size: 1rem;
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .ps-buttom {
    margin-left: auto;
    margin-right: auto;
  }
}
.ps-buttom::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../img/bottom-line-gray.png) no-repeat center center/cover;
  content: "";
  width: 7.9rem;
  height: 5px;
}

.p-staff1 {
  position: relative;
  padding-top: 200px;
  padding-bottom: 200px;
}
@media screen and (max-width: 768px) {
  .p-staff1 {
    padding-top: 120px;
    padding-bottom: 160px;
  }
}

.ps1-content {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.ps1-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding-right: 3rem;
  padding-left: 3rem;
}

.p-title-small {
  font-size: 1rem;
  padding-right: 1rem;
}

.ps1-img {
  margin-top: 40px;
}
.ps1-img img {
  display: block;
  width: 22rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .ps1-img img {
    width: 17rem;
  }
}

.ps1-text {
  margin-top: 40px;
}
.ps1-text p {
  text-align: center;
  font-size: 1rem;
  line-height: 250%;
}

.p-staff1-review {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(2%, #EAF2F5), to(#96C2D1));
  background: linear-gradient(-180deg, #EAF2F5 2%, #96C2D1 100%);
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-staff1-review {
    padding-top: 20px;
  }
}

.ps1r-content {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 5rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1200px) {
  .ps1r-content {
    gap: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .ps1r-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    grid-template-columns: repeat(1, 1fr);
  }
}

.ps1r-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ps1r-img {
  width: 100%;
}
.ps1r-img img {
  display: block;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .ps1r-img img {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}

.ps1r-text {
  font-size: 1.25rem;
  margin-top: 1rem;
  text-align: center;
}

.ps1r-buttom {
  margin-right: auto;
  color: #FFFFFF;
}

.ps1-buttom {
  margin-top: 50px;
}
.ps1-buttom::before {
  width: 10.9rem;
}

.p-company-fv {
  background: url(../img/p-company-img1.jpg) no-repeat center center/cover;
}

.p-company-content {
  position: relative;
  padding-top: 120px;
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-company-content {
    padding-top: 90px;
  }
}

.company-logo {
  margin-top: 20px;
}
.company-logo img {
  display: block;
  width: 9rem;
  margin-left: auto;
  margin-right: auto;
}

.company-table-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  margin-top: 30px;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

/* 行の下に #C1C3C3 の線を入れる設定 */
.company-table tr {
  border-bottom: 1px solid #C1C3C3;
}

/* セルのパディングと配置 */
.company-table th,
.company-table td {
  padding: 1.5rem 22px;
  text-align: left;
  font-size: 15px;
  line-height: 1.6;
}

/* 見出し（左列）のスタイル */
.company-table th {
  width: 25%;
  font-weight: bold;
  vertical-align: top;
  background-color: transparent; /* 背景色は透明 */
}

/* 内容（右列）のスタイル */
.company-table td {
  width: 75%;
}

/* レスポンシブ対応（スマホ表示で行を縦並びにする場合） */
@media screen and (max-width: 600px) {
  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
    padding: 10px 4px;
  }
  .company-table th {
    padding-bottom: 0;
  }
}
.access {
  padding-top: 30px;
  padding-bottom: 160px;
  position: relative;
}

.googlemap {
  width: 100%;
}
.googlemap iframe {
  aspect-ratio: 9/4.5;
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .googlemap iframe {
    aspect-ratio: 9/6;
  }
}

.p-qa-fv {
  background: url(../img/p-qa-img1.jpg) no-repeat center center/cover;
}

.p-qa-content {
  position: relative;
}

.faq-title {
  padding-top: 160px;
  font-size: 1.25rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .faq-title {
    padding-top: 90px;
  }
}

.faq-section {
  max-width: 800px;
  padding: 40px 20px 160px 20px;
  margin-left: auto;
  margin-right: auto;
  color: #333333;
}

.faq-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px; /* 質問同士の間隔 */
}

/* --------------------------------------
 * ① Q（質問部分）のグラデーションボーダー設定
 * ----------------------------------- */
.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 50px 18px 20px;
  font-size: 16px;
  border: 1px solid #96C2D1;
  cursor: pointer;
  position: relative;
  outline: none;
}

.faq-question:hover {
  opacity: 0.85;
}

/* Qの文字装飾 */
.faq-question::before {
  content: "Q.";
  margin-right: 8px;
  color: #599BB2; /* グラデーションに合わせたアクセントカラー */
  font-size: 18px;
}

/* 開閉を示す矢印アイコン（CSSで表現） */
.faq-question::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #599BB2;
  border-bottom: 2px solid #599BB2;
  -webkit-transform: translateY(-65%) rotate(45deg);
          transform: translateY(-65%) rotate(45deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

/* --------------------------------------
 * ② A（回答部分）のスムーズな開閉設定
 * ----------------------------------- */
.faq-answer {
  display: none;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease-out;
  transition: max-height 0.3s ease-out; /* なめらかに開閉させるアニメーション */
  border-bottom: 1px solid #C1C3C3; /* 先ほどの行下線デザインを継承 */
}

.faq-answer-content {
  padding: 18px 20px;
  font-size: 15px;
  line-height: 1.7;
  color: #4a4a4a;
  white-space: pre-wrap; /* 改行を有効にする設定 */
}

/* Aの文字装飾 */
.faq-answer-content::before {
  content: "A.";
  margin-right: 8px;
  font-weight: bold;
  color: #C1C3C3;
  font-size: 17px;
}

/* --------------------------------------
 * ③ is-open（開いた状態）のスタイル
 * ----------------------------------- */
/* 開いているときは矢印を上向きに反転 */
.faq-item.is-open .faq-question::after {
  -webkit-transform: translateY(-35%) rotate(-135deg);
          transform: translateY(-35%) rotate(-135deg);
}

/* 開いているときは回答の最大高さを確保して表示（JSで動的に制御） */
.faq-item.is-open .faq-answer {
  /* JS不具合時の保険として設定。基本はJSのインラインスタイルが優先されます */
  max-height: 1000px;
}

.faq-answer-content a {
  color: #00A8C8 !important;
}

.archive-fv {
  background: url(../img/p-blog-img1.jpg) no-repeat center center/cover;
}

.archive-review {
  background: #FFFFFF;
  padding-top: 120px;
  padding-bottom: 200px;
}
@media screen and (max-width: 768px) {
  .archive-review {
    padding-top: 90px;
    padding-bottom: 160px;
  }
}

.archive-title {
  padding-top: 60px;
}
@media screen and (max-width: 768px) {
  .archive-title {
    font-size: 1rem;
  }
}

.archive-content {
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .archive-content {
    margin-top: 50px;
  }
}

.p-researve-fv {
  background: url(../img/reseave-img1.jpg) no-repeat center center/cover;
}

.p-researve {
  position: relative;
  padding-top: 200px;
  padding-bottom: 200px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-researve {
    padding-top: 90px;
    padding-bottom: 120px;
  }
}

.re-text {
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .re-text {
    font-size: 1.25rem;
  }
}

.re-button {
  border: 1px solid #599BB2;
  font-size: 1.5rem;
  padding: 5px 10px;
  margin-top: 30px;
  height: 4rem;
  width: 330px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .re-button {
    width: 300px;
  }
}
.re-button::after {
  position: absolute;
  content: ">";
  color: #031B2A;
  font-size: 1.25rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 15%;
}
.re-button:hover, .re-button:focus {
  opacity: 0.7;
}

.re-tel {
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .re-tel {
    margin-top: 50px;
  }
}

.re-tel-text {
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .re-tel-text {
    font-size: 1.25rem;
  }
}

.re-tel-box {
  border: 1px solid #031B2A;
  font-size: 1.5rem;
  padding: 5px 10px;
  margin-top: 40px;
  height: 6rem;
  width: 330px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .re-tel-box {
    width: 300px;
    margin-top: 30px;
  }
}
.re-tel-box p:nth-child(1) {
  font-size: 1.5rem;
}
.re-tel-box p:nth-child(2) {
  font-size: 1.25rem;
}
.re-tel-box:hover, .re-tel-box:focus {
  opacity: 0.7;
}

/* ===============================
   WP-PageNavi カスタマイズ
   白文字＋グラデーション枠の丸
================================ */
/* 全体 */
.wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
@media screen and (max-width: 768px) {
  .wp-pagenavi {
    gap: 5px;
  }
}

/* 共通（数字・current・矢印） */
.wp-pagenavi a,
.wp-pagenavi span {
  position: relative;
  padding: 0.5em 1em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 60px;
  height: 60px;
  font-size: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #599BB2 !important;
  border-radius: 40px;
  color: #599BB2 !important;
}
@media screen and (max-width: 1300px) {
  .wp-pagenavi a,
  .wp-pagenavi span {
    width: 60px;
    height: 60px;
    font-size: 1rem;
  }
}

/* ホバー */
.wp-pagenavi a.page:hover {
  opacity: 0.7;
  border: 1px solid transparent !important;
}

/* 現在のページ */
.wp-pagenavi span.current {
  color: #FFFFFF !important;
  background: #599BB2;
  font-weight: 500;
  border: none;
}

/* 「…」 */
.wp-pagenavi span.extend {
  background: none;
  border: none;
  color: #fff;
}

/* 矢印共通 */
.wp-pagenavi a.previouspostslink,
.wp-pagenavi a.nextpostslink {
  text-indent: -9999px;
  overflow: hidden;
  border: none !important;
}

.wp-pagenavi a.previouspostslink:hover,
.wp-pagenavi a.nextpostslink:hover {
  border: 1px solid transparent;
}

/* 左矢印 */
.wp-pagenavi a.previouspostslink {
  background: url("../img/btn-pre.jpg") no-repeat center center/cover;
  width: 40px;
  height: 40px;
}

/* 右矢印 */
.wp-pagenavi a.nextpostslink {
  background: url("../img/btn-next.jpg") no-repeat center center/cover;
  width: 40px;
  height: 40px;
}

/* SP調整 */
@media screen and (max-width: 768px) {
  .wp-pagenavi a,
  .wp-pagenavi span {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .wp-pagenavi a.previouspostslink,
  .wp-pagenavi a.nextpostslink {
    width: 25px;
    height: 25px;
  }
}
.wp-pagenavi .pages {
  display: block;
  text-align: center;
  width: 100%;
  background: none;
  color: #333;
  font-size: 1.25rem;
}
@media screen and (max-width: 768px) {
  .wp-pagenavi .pages {
    font-size: 0.9rem;
  }
}

.pagination2 {
  margin-top: 75px;
}

.pagination2_item {
  -webkit-transform: opacity 0.3 ease;
          transform: opacity 0.3 ease;
}
.pagination2_item img {
  width: 4rem;
  padding-left: 5px;
  padding-right: 5px;
  height: 3.5rem;
}
@media screen and (max-width: 768px) {
  .pagination2_item img {
    width: auto;
    padding-left: 0;
    padding-right: 0;
    height: 3rem;
  }
}

.pagination2_item:hover {
  opacity: 0.7;
}

.pagination2_item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.pagination2_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.5rem;
}

.single2 {
  padding-top: 120px;
  padding-bottom: 200px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .single2 {
    padding-bottom: 100px;
  }
}

.single {
  padding-top: 0px !important;
}
@media screen and (max-width: 768px) {
  .single {
    padding-top: 30px !important;
  }
}

.single_date {
  color: #888888;
  font-size: 14px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .single_date {
    font-size: 0.8rem;
  }
}

.single_title {
  margin-top: 30px;
}
.single_title h1 {
  font-size: 2rem;
}

.single-content {
  margin-top: 30px;
  color: #000;
}

.single-content h2 {
  font-size: 1.625rem;
  padding: 0 0 0 1.25rem !important;
  line-height: 1.53846;
  margin: 3.125rem auto 0;
  border-left: #00A8C8 solid 5px;
  background: none;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .single-content h2 {
    font-size: 1.5rem;
  }
}

.single_content p {
  color: #FFFFFF;
  margin: 2.5rem auto 0;
}
@media screen and (max-width: 768px) {
  .single_content p {
    margin: 1.40624375rem auto 0;
  }
}

.swell-block-button {
  margin: 2.5rem auto 2rem !important;
}
@media screen and (max-width: 768px) {
  .swell-block-button {
    margin: 1.40624375rem auto 1rem !important;
  }
}

.single_title h1 {
  font-size: 32px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .single_title h1 {
    font-size: 20px;
  }
}

.single_featured_img {
  margin-top: 24px;
}

.single_featured_img img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}

.single_contents h2 {
  margin-top: 40px;
}

.wp-block-paragraph {
  margin: 2.5rem auto 0;
}
@media screen and (max-width: 768px) {
  .wp-block-paragraph {
    margin: 1.40624375rem auto 0;
  }
}

.wp-block-table > table {
  margin-bottom: 24px;
  width: 100%;
}

.box {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.wp-block-table thead th {
  background: var(--thead-color--bg);
  color: var(--thead-color--txt);
}

.wp-block-table tbody th {
  background: var(--tbody-th-color--bg) !important;
  color: var(--tbody-th-color--txt) !important;
}

.wp-pagenavi .pages {
  border: none !important;
}