/* ==============================
   Base
============================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #333;
  font-family:
    "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
  line-height: 1.8;
}

html,
body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

main {
  padding-top: 193px;
}

.sp-img {
  display: none !important;
}

@media (max-width: 768px) {
  main {
    padding-top: 140px;
  }
}

@media (max-width: 480px) {
  .pc-img {
    display: none !important;
  }

  .sp-img {
    display: block !important;
  }
}


/* ==============================
   Layout
============================== */

.l-container {
  width: min(1100px, calc(100% - 40px));
  margin-inline: auto;
}

.p-section {
  padding: 100px 0;
}

/* ==============================
   header
============================== */

.l-fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
}

.l-header {
  position: relative;
}

.l-header p {
  text-align: center;
  font-size: 18px;
}

.l-header__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  height: 110px;
  margin: 0 auto;
}

.l-header__logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 70px;
  margin: 0;
}

.l-header__logo a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.l-header__logo img {
  display: block;

  width: 180px;
  max-width: 80%;
  height: auto;
}

.l-header__logo::before,
.l-header__logo::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 1px;
  height: 55px;
  border-right: 1px dashed #ccc;
  transform: translateY(-50%);
}

.l-header__logo::before {
  left: 0;
}

.l-header__logo::after {
  right: 0;
}

/* ========================================
   Navigation
======================================== */

.l-header__nav {
  width: 100%;
  height: 100%;
}

.p-global-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-global-nav__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: 0;
}

.p-global-nav__item > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 15px 10px;
  color: #333;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  transition:
    color 0.3s ease,
    opacity 0.3s ease;
}

.p-global-nav__item > a:hover {
  opacity: 0.65;
}

/* ========================================
   Navigation Icon
======================================== */

.p-global-nav__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 7px;
}

.p-global-nav__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ========================================
   メニュー間の破線
======================================== */

.l-header__nav--left
.p-global-nav__item:first-child::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 55px;
  border-right: 1px dashed #ccc;
  transform: translateY(-50%);
}

.l-header__nav--right
.p-global-nav__item:first-child::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 55px;
  border-right: 1px dashed #ccc;
  transform: translateY(-50%);
}

/* ========================================
   2階層メニュー
======================================== */

.p-global-nav__sub {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 100;
  width: 265px;
  margin: 0;
  padding: 18px 24px;
  list-style: none;
  background: #d9efdf;
  border-radius: 18px;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease;
}

.p-global-nav__sub::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
}

/* ========================================
   サブメニュー項目
======================================== */

.p-global-nav__sub li {
  position: relative;
  width: 100%;
  padding: 0;
}

.p-global-nav__sub li + li {
  border-top: 1px dashed #9fd3ae;
}

/* ========================================
   サブメニューリンク
======================================== */

.p-global-nav__sub li a {
  position: relative;
  display: block;
  width: 100%;
  padding: 16px 5px 16px 20px;
  color: #4a433f;
  font-size: 17px;
  line-height: 1.5;
  text-align: left;
  transition:
    color 0.3s ease,
    opacity 0.3s ease;
}

.p-global-nav__sub li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  background: #79cf99;
  border-radius: 50%;
  transform: translateY(-50%);
}

.p-global-nav__sub li a:hover {
  background: transparent;
  opacity: 0.65;
}

/* ========================================
   サブメニュー表示
======================================== */

.p-global-nav__item.has-child:hover
.p-global-nav__sub {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

/* ========================================
   2階層メニューありの矢印
======================================== */

.p-global-nav__item.has-child > a::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: 4px;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  transform: rotate(45deg);
}

/* オレンジ系サブメニュー */

/* ヒナタバのサブメニューだけオレンジ系 */
.p-global-nav__item.has-child.is-orange > .p-global-nav__sub {
  background: #fff3cf;
}

/* 丸もオレンジ */
.p-global-nav__item.has-child.is-orange > .p-global-nav__sub li a::before {
  background: #f5a23f;
}

/* 区切り線もオレンジ系 */
.p-global-nav__item.has-child.is-orange > .p-global-nav__sub li + li {
  border-top-color: #f2c978;
}

.p-sp-nav,
.l-header-sp {
  display: none;
}

/* 見学予約バー */

.p-reservation-bar {
  width: 100%;
  background: #ffe066;
}

.p-reservation-bar__inner {
  width: 100%;
  /* min-height: 96px; */
  padding: 14px 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* 左側 */

.p-reservation-bar__content {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
}

/* 開所前 先行受付 */

.p-reservation-bar__label {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 20px;
  color: #fff;
  background: #f39a35;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
}

/* テキスト */

.p-reservation-bar__text {
  margin: 0;
  color: #654f20;
  /* font-size: 18px; */
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.p-reservation-bar__text strong {
  font-weight: 700;
}

/* 見学予約ボタン */

.p-reservation-bar__btn {
  flex-shrink: 0;
  min-width: 285px;
  height: 50px;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: #fff;
  /* color: #b96122; */
  border-radius: 100px;
  text-decoration: none;
  /* font-size: 18px; */
  font-weight: 700;
  letter-spacing: 0.05em;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.p-reservation-bar__icon {
  width: 20px;
  height: auto;
}

@media (max-width: 1440px) {
  .l-header__inner {
    padding-inline: 20px;
  }
}

@media (max-width: 1200px) {

  .l-header__inner {
    height: 100px;
  }

  .l-header__logo img {
    width: 160px;
  }

  .p-global-nav__item > a {
    font-size: 13px;
  }

  .p-global-nav__icon {
    width: 28px;
    height: 28px;
  }

  .l-header__logo::before,
  .l-header__logo::after,
  .l-header__nav--left
  .p-global-nav__item:first-child::after,
  .l-header__nav--right
  .p-global-nav__item:first-child::after {
    height: 50px;
  }
}

@media (max-width: 1024px) {
  .l-header__inner {
    height: 90px;
    padding-inline: 15px;
  }
  
  .l-header__logo img {
    width: 140px;
  }

  .p-global-nav__item > a {
    padding: 10px 5px;
    font-size: 12px;
  }

  .p-global-nav__icon {
    width: 25px;
    height: 25px;
    margin-bottom: 5px;
  }

  .p-global-nav__sub {
    width: 190px;
  }
}

@media (max-width: 768px) {
  .l-header__nav,
  .l-header__logo,
  .l-header > p {
    display: none;
  }

  .l-header__inner {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
    margin: 0;
    padding: 0;
  }

  .l-header-sp {
    position: relative;
    display: grid;
    grid-template-columns: 90px 1fr 60px;
    align-items: center;
    width: 100%;
    height: 96px;
    padding: 8px 15px;
    background: transparent;
    box-sizing: border-box;
    max-width: none;
    z-index: 1001;
  }

  .l-header-sp__logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .l-header-sp__logo img {
    display: block;
    width: 100px;
    height: auto;
  }

  .l-header-sp__title {
    margin: 0;
    color: #453f3a;
    font-size: clamp(14px, 4vw, 19px);
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
  }

  .c-hamburger {
    position: relative;
    z-index: 1002;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 55px;
    height: 55px;
    margin-left: auto;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
  }

  .c-hamburger span {
    display: block;

    width: 36px;
    height: 5px;

    background: #f5a23f;

    border-radius: 10px;

    transition:
      transform 0.3s ease,
      opacity 0.3s ease;
  }

  .c-hamburger.is-active span:nth-child(1) {
    transform:
      translateY(12px)
      rotate(45deg);
  }

  .c-hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }

  .c-hamburger.is-active span:nth-child(3) {
    transform:
      translateY(-12px)
      rotate(-45deg);
  }

  .p-sp-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    display: block;
    width: 100%;
    height: 100dvh;
    background: #fff8d9;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    transition:
      opacity 0.4s ease,
      visibility 0.4s ease;
  }

  .p-sp-nav.is-open {
    opacity: 1;
    visibility: visible;
  }

  .p-sp-nav__inner {
    width: 300px;
    margin: 0 auto;
    padding: 105px 0 70px;
  }

  .p-sp-nav__section {
    margin-bottom: 68px;
  }

  .p-sp-nav__heading {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .p-sp-nav__heading-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
  }

  .p-sp-nav__heading-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .p-sp-nav__heading-text {
    color: #453f3a;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.3;
  }

  .p-sp-nav__sub-list {
    margin: 15px 0 0;
    padding: 0;
    list-style: none;
  }

  .p-sp-nav__sub-list a {
    position: relative;
    display: block;
    padding: 12px 0 12px 20px;
    color: #453f3a;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
  }

  .p-sp-nav__sub-list a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 12px;
    height: 12px;
    background: #86d39f;
    border-radius: 50%;
    transform: translateY(-50%);
  }

  .p-sp-nav__section--education
  .p-sp-nav__sub-list li + li {
    border-top: 2px dotted #a7dcb6;
  }

  .p-sp-nav__section--hinataba
  .p-sp-nav__sub-list a::before {
    background: #f5a23f;
  }

  .p-sp-nav__single {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #453f3a;
    text-decoration: none;
  }

  .p-sp-nav__single-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
  }

  .p-sp-nav__single-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .p-sp-nav__single-text {
    font-size: 29px;
    font-weight: 500;
    line-height: 1.3;
  }

  body.is-menu-open {
    overflow: hidden;
  }

  body.is-menu-open
  .l-header-sp__logo,
  body.is-menu-open
  .l-header-sp__title {
    opacity: 0;
    visibility: hidden;
  }

  .l-header-sp__logo,
  .l-header-sp__title {
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease;
  }
	
  .p-reservation-bar__inner {
    min-height: auto;
    padding: 12px 15px;
    flex-direction: column;
    gap: 10px;
  }

  .p-reservation-bar__content {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .p-reservation-bar__label {
    padding: 7px 14px;
    font-size: 12px;
  }

  .p-reservation-bar__text {
    font-size: 13px;
    line-height: 1.6;
  }

  .p-reservation-bar__btn {
    width: 100%;
    min-width: 0;
    height: 48px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .l-header p {
    font-size: 14px;
  }

  .l-header-sp {
    position: relative;
    z-index: 1001;
    display: grid;
    grid-template-columns: 90px 1fr 60px;
    align-items: center;
    width: 100%;
    height: 96px;
    padding: 8px 15px;
    background: transparent;
    box-sizing: border-box;
    max-width: none;
  }
}

/* ==============================
   FV
============================== */

.p-fv {
  width: 100%;
  padding-top: 100px;
}

.p-fv img {
  display: block;
  width: 90%;
  height: auto;
  margin: 0 auto;
}

@media (max-width: 480px) {
  .p-fv {
    padding-top: 130px;
  }
}

/* ==============================
   Section Title
============================== */

.c-section-title {
  text-align: center;
  margin-bottom: 50px;
}

.c-section-title__ja {
  margin: 0;
  color: #f2aa51;
  font-size: 36px;
  /* font-size: clamp(22px, 2.5vw, 40px); */
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.c-section-title__en {
  margin: 8px 0 0;
  color: #4a433f;
  font-size: clamp(15px, 1.5vw, 24px);
  line-height: 1.2;
  letter-spacing: 0.01em;
}



.c-section-title2 {
  text-align: center;
  margin-bottom: 50px;
}

.c-section-title2__ja {
  margin: 0;
  /* color: #f2aa51; */
  font-size: 36px;
  /* font-size: clamp(22px, 2.5vw, 40px); */
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.c-section-title2__ja span {
  display: inline-block;
  color: #f2aa51;
  font-size: 44px;
  padding: 0 10px;
}

.c-section-title2__en {
  margin: 8px 0 0;
  color: #4a433f;
  font-size: clamp(15px, 1.5vw, 24px);
  line-height: 1.2;
  letter-spacing: 0.01em;
}


.c-section-title3 {
  margin-bottom: 0;
}

.c-section-title3__ja {
  margin: 0;
  color: #fff;
  font-size: 36px;
  /* font-size: clamp(22px, 2.5vw, 40px); */
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.c-section-title3__en {
  margin: 8px 0 0;
  color: #4a433f;
  font-size: clamp(15px, 1.5vw, 24px);
  line-height: 1.2;
  letter-spacing: 0.01em;
}


.c-section-title4 {
  text-align: center;
  margin-bottom: 50px;
}

.c-section-title4__ja {
  margin: 0;
  color: #fff;
  font-size: 36px;
  /* font-size: clamp(22px, 2.5vw, 40px); */
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.c-section-title4__en {
  margin: 8px 0 0;
  color: #4a433f;
  font-size: clamp(15px, 1.5vw, 24px);
  line-height: 1.2;
  letter-spacing: 0.01em;
}

/* ==============================
   Button
============================== */

.c-more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  padding: 20px 40px;
  background: #ffa83d;
  border-radius: 999px;
  color: #fff;
  font-size: clamp(16px, 1.3vw, 22px);
  line-height: 1.4;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

/* 矢印アイコン */

.c-more-btn::after {
  content: "";
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  background-image: url("../img/btb_arrow.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* hover */

.c-more-btn:hover {
  /* opacity: 0.8; */
  transform: translateY(-2px);
  background: #ff8617;
}

/* ========================================
   Breadcrumb
======================================== */

.p-breadcrumb {
  width: 100%;
  padding: 120px 0 20px;
  background: #fff;
}

.p-breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-breadcrumb__item {
  display: flex;
  align-items: center;
  color: #4a433f;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.p-breadcrumb__item a {
  color: #4a433f;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.p-breadcrumb__item a:hover {
  opacity: 0.6;
}

.p-breadcrumb__item + .p-breadcrumb__item::before {
  content: "";
  width: 0;
  height: 0;
  margin-right: 14px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #f5a23f;
}

@media (max-width: 480px) {
  .p-breadcrumb {
    padding: 130px 0 20px;
  }
}

/* ==============================
   ABOUT US
============================== */

.p-top-about {
  background: url(../img/top_about_bg.png) no-repeat top center;
  background-size: contain;
}

.p-top-about-inner {
  position: relative;
}

.p-top-about__text {
  max-width: 800px;
  margin-inline: auto;
  font-size: 16px;
  text-align: center;
  line-height: 2.5;
}

.p-sub-service__box {
  margin-top: 80px;
}

.p-top-about__bgIcon1 {
  position: absolute;
  top: 120px;
  right: 10%;
  width: 10%;
  height: auto;
}

.p-top-about__bgIcon2 {
  position: absolute;
  bottom: -150px;
  left: 10%;
  width: 10%;
  height: auto;
}

.p-break {
  display: none;
}

/* Column */

.p-top-reason {
  margin-top: 250px;
}

.p-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.p-card {
  overflow: hidden;
}

.p-card__image {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
  padding: 20px;
  object-fit: cover;
}

.p-card__image img {
  width: 100%;
  height: 100%;
}

.p-card__body {
  padding: 25px;
}

.p-card__title {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 15px;
}

.p-card__title::before {
  content: "";
  width: 20px;
  height: 20px;
  margin-top: 6px;
  background: #f5a23f;
  border-radius: 50%;
  flex-shrink: 0;
}

.p-card__text {
  margin-bottom: 25px;
  line-height: 2.5;
  padding-left: 30px;
}

@media (max-width:768px) {
  .p-top-about__text {
    padding: 0 20px;
  }

  .p-card-grid {
    grid-template-columns: 1fr;
  }

  .p-top-about__bgIcon1 {
    position: absolute;
    top: 50px;
    right: 10%;
    width: 15%;
    height: auto;
  }

  .p-top-about__bgIcon2 {
    position: absolute;
    bottom: -120px;
    left: 10%;
    width: 12%;
    height: auto;
  }
}

@media (max-width:480px) {
  .p-top-about {
    background: url(../img/top_about_bg_sp.png) no-repeat top center;
    background-size: contain;
    padding-bottom: 0;
  }

  .p-top-about__bgIcon1 {
    top: -140px;
    right: -30px;
    width: 40%;
  }

  .p-top-about__bgIcon2 {
    bottom: -150px;
    left: -7%;
    width: 35%;
  }

  .p-break {
    display: block;
  }

  .p-card__image {
    padding: 0;
  }

  .p-card__body {
    padding: 25px 0;
  }
}

/* ==============================
   PHILOSOPHY
============================== */

.p-top-philosophy {
  background: #6fcf97;
  border-radius: 50px;
}

.p-top-philosophy-inner {
  display: flex;
  align-items: center;
  gap: 100px;
  position: relative;
}

.p-top-philosophy-inner__text {
  flex: 1;
}

.p-top-philosophy-inner__text p {
  margin-bottom: 30px;
  line-height: 2.5;
}

.p-top-philosophy-inner__text h3 {
  font-size: 24px;
  font-weight: 400;
}

.p-top-philosophy__title {
  width: 100%;
  padding-bottom: 5px;
  border-bottom: 3px solid #d7df35;
}

.p-top-philosophy-inner__image {
  flex: 1;
}

.c-philosophy-more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  padding: 20px 40px;
  background: #ffa83d;
  border-radius: 999px;
  color: #fff;
  font-size: clamp(16px, 1.3vw, 22px);
  line-height: 1.4;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.c-philosophy-more-btn::after {
  content: "";
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  background-image: url("../img/btb_arrow.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.c-philosophy-more-btn:hover {
  transform: translateY(-2px);
  background: #ff8617;
}

@media(max-width: 768px) {
  .p-top-philosophy-inner {
    gap: 10px;
    padding: 80px 0;
  }

  .c-philosophy-more-btn {
    position: absolute;
  }
}

@media (max-width: 480px) {
  .p-top-philosophy-inner {
    flex-direction: column;
  }

  .p-top-philosophy-inner__image {
    padding-bottom: 50px;
  }

  .c-philosophy-more-btn {
    bottom: 0;
  }
}


/* ==============================
   SERVICE
============================== */ 

.p-top-service {
  padding-top: 100px;
  text-align: center;
}

.p-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.p-service {
  overflow: hidden;
}

.p-service__image {
  overflow: hidden;
  padding: 20px;
}

.p-service__image img {
  width: 100%;
  height: 100%;
}

@media (max-width: 480px) {
  .p-service-grid {
    grid-template-columns: 1fr;
  }
}


/* ========================================
   News
======================================== */

.p-news {
  padding: 90px 0;
  background: #fff;
}

.p-news__inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  align-items: center;
  gap: 80px;
  position: relative;
}

.p-news__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.p-news__heading {
  margin-bottom: 65px;
}

.p-news__title {
  margin: 0;
  color: #f5a23f;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
}

.p-news__en {
  margin: 5px 0 0;
  color: #403b37;
  font-size: clamp(15px, 1.5vw, 24px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.03em;
}

.p-news__right {
  width: 100%;
}

.p-news__item {
  display: grid;
  grid-template-columns:
    110px
    90px
    1fr;
  align-items: center;
  gap: 20px;
  width: 100%;
  color: #403b37;
  text-decoration: none;
  padding: 30px 0;
  border-bottom: 1px solid #eee;
}

.p-news__date {
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}

.p-news__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 85px;
  min-height: 28px;
  padding: 4px 10px;
  background: #f7dc56;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.p-news__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

.p-news__item:hover .p-news__text {
  opacity: 0.7;
}

.c-news-more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  padding: 20px 40px;
  background: #ffa83d;
  border-radius: 999px;
  color: #fff;
  font-size: clamp(16px, 1.3vw, 22px);
  line-height: 1.4;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.c-news-more-btn::after {
  content: "";
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  background-image: url("../img/btb_arrow.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.c-news-more-btn:hover {
  transform: translateY(-2px);
  background: #ff8617;
}


@media (max-width: 1024px) {
  .p-news__inner {
    grid-template-columns: 300px 1fr;
    gap: 50px;
  }

  .p-news__item {
    grid-template-columns: 100px 85px 1fr;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .p-news {
    padding: 60px 0 150px;
  }

  .p-news__inner {
    display: block;
  }

  .p-news__heading {
    margin-bottom: 30px;
  }

  .p-news__title {
    font-size: 30px;
  }

  .p-news__en {
    font-size: 14px;
  }

  .p-news__item {
    display: grid;
    grid-template-columns:
      auto
      1fr;
    gap: 10px 15px;
  }

  .p-news__date {
    font-size: 14px;
  }

  .p-news__category {
    justify-self: start;
    min-width: auto;
    font-size: 12px;
  }

  .p-news__text {
    grid-column: 1 / -1;
    font-size: 15px;
  }

  .c-news-more-btn {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
  }
}


/* ==============================
   FLOW
============================== */

.p-top-flow {
  background: #faedb7;
  position: relative;
}

.p-top-flow__bgIcon {
  position: absolute;
  top: 60px;
  right: 150px;
  width: 10%;
  height: auto;
}

.p-top-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 30px;
}

.p-top-flow__box {
  overflow: hidden;
}

.p-top-flow__image {
  overflow: hidden;
  padding: 5px;
}

.p-top-flow__image img {
  width: 100%;
  height: 100%;
}

@media (max-width: 480px) {
  .p-top-flow-grid_sp {
    padding-bottom: 50px;
  }
}

/* ==============================
   sub philosophy
============================== */

.p-sub-philosophy-header {
  padding: 70px 0;
  background-color: #fff6d3;
  text-align: center;
  position: relative;
　scroll-margin-top: 120px;
}

.p-sub-philosophy-header__title {
  margin: 0;
  color: #4a433f;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.5;
}

.p-sub-philosophy-header__title span {
  color: #f5a23f;
}

.p-sub-philosophy h2 {
  font-size: 36px;
}

.p-sub-philosophy h2 span {
  color: #f2aa51;
}

.p-sub-philosophy_head_icon01 {
  position: absolute;
  bottom: 10px;
  right: 30%;
  width: 5%;
  height: auto;
}

.p-sub-philosophy-inner {
  display: flex;
  gap: 70px;
}

.p-sub_philosophy-inner__text {
  flex: 1;
}

.p-sub_philosophy-inner__text p {
  margin-bottom: 30px;
  line-height: 2.5;
}

.p-sub-philosophy-inner__image {
  flex: 1;
}

.p-sub-philosophy-inner__image img {
  width: 100%;
}

.p-sub-philosophy-message {
  position: relative;
}

.p-sub-philosophy-message__bgIcon1 {
  position: absolute;
  top: 200px;
  left: 70px;
  width: 10%;
  height: auto;
}

.p-sub-philosophy-message__bgIcon2 {
  position: absolute;
  bottom: 100px;
  left: 0;
  width: 10%;
  height: auto;
}

.p-sub-philosophy-promise h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 80px;
}

.p-sub-philosophy-promise h2 span {
  color: #f2aa51;
}

.c-text-line {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.c-text-line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 8px;
  background: #f8df6a;
  border-radius: 999px;
  z-index: -1;
}

.p-sub-philosophy-message__box {
  width: 80%;
  margin: 0 0 0 auto;
}

.p-sub-philosophy-message h2 {
  font-size: 36px;
  color: #f2aa51;
}

.p-sub-philosophy-message h3 {
  font-size: 24px;
  color: #f2aa51;
  font-weight: 400;
}

.c-director {
  font-weight: 600;
  text-align: right;
}

.p-sub-philosophy-promise__box,
.p-sub-philosophy-promise__box2 {
  display: flex;
  align-items: center;
  gap: 50px;
  padding-bottom: 100px;
}

.p-sub-philosophy-promise__box h3,
.p-sub-philosophy-promise__box2 h3 {
  font-size: 22px;
  font-weight: 400;
  color: #f2aa51;
  width: 100%;
  padding-bottom: 5px;
  border-bottom: 3px dashed #6fcf97;
}

.p-sub-philosophy-promise__image {
  flex: 1;
}

.p-sub-philosophy-promise__text {
  flex: 2;
}

.p-sub-philosophy-promise__image img {
  width: 40%;
  height: auto;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .p-sub-philosophy_head_icon01 {
    right: 20%;
    width: 8%;
  }

  .p-sub-philosophy-inner {
    flex-direction: column;
  } 

  .p-sub-philosophy-message h2 {
    margin-bottom: 10px;
  }

  .p-sub-philosophy-message img {
    display: none;
  }

  .p-sub-philosophy-message__box {
    width: 100%;
    margin: 0;
  }

  .p-sub-philosophy-promise__box,
  .p-sub-philosophy-promise__box2 {
    gap: 0;
    padding-bottom: 70px;
  }
}

@media (max-width: 480px) {
  .p-sub-philosophy h2 {
    font-size: 28px;
  }

  .p-sub-philosophy_head_icon01 {
    right: 5%;
    width: 12%;
  }

  .p-sub-philosophy-inner {
    gap: 0;
  }

  .p-sub-philosophy-promise__box {
    flex-direction: column;
  }

  .p-sub-philosophy-promise__box2 {
    flex-direction: column-reverse;
  }

  .p-sub-philosophy-promise__image img {
    width: 60%;
    padding-bottom: 20px;
  }
}

/* ==============================
   sub service
============================== */

.p-sub-service-header {
  padding: 70px 0;
  background-color: #fff6d3;
  text-align: center;
  position: relative;
}

.p-sub-service-header p {
  width: 50%;
  margin: 40px auto 0;
}

.p-sub-service-header__title {
  margin: 0;
  color: #4a433f;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.5;
}

.p-sub-service-header__title span {
  color: #f5a23f;
}

.p-sub-service h2 {
  font-size: 36px;
  color: #f2aa51;
}

.p-sub-service h3 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 0;
}

.p-sub-service_head_icon01 {
  position: absolute;
  top: 40%;
  right: 18%;
  width: 5%;
  height: auto;
}

.p-sub-service_head_icon02 {
  position: absolute;
  bottom: 20%;
  left: 22%;
  width: 4%;
  height: auto;
}

.p-sub-service-inner {
  display: flex;
}

.p-sub-service-inner__text {
  flex: 1;
}

.p-sub-service-inner__text p {
  margin-bottom: 30px;
  line-height: 2.5;
}

.p-sub-service-inner__image {
  flex: 1;
}

.p-sub-service-inner__image img {
  width: 50%;
  margin: 0 auto;
}

/* 3カード */

.p-serviceCard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.p-serviceCard {
  overflow: hidden;
}

.p-serviceCard__image {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
  padding: 20px;
  object-fit: cover;
}

.p-serviceCard__image img {
  width: 100%;
  height: 100%;
}

.p-serviceCard__body {
  padding: 25px;
}

.p-serviceCard__title1,
.p-serviceCard__title2,
.p-serviceCard__title3 {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 15px;
}

.p-serviceCard__title1::before {
  content: "";
  width: 20px;
  height: 20px;
  margin-top: 6px;
  background: #f5a23f;
  border-radius: 50%;
  flex-shrink: 0;
}

.p-serviceCard__title2::before {
  content: "";
  width: 20px;
  height: 20px;
  margin-top: 6px;
  background: #6fcf97;
  border-radius: 50%;
  flex-shrink: 0;
}

.p-serviceCard__title3::before {
  content: "";
  width: 20px;
  height: 20px;
  margin-top: 6px;
  background: #ffe066;
  border-radius: 50%;
  flex-shrink: 0;
}

.p-serviceCard__text {
  margin-bottom: 25px;
  line-height: 2.5;
  padding-left: 30px;
}

/* program */

.p-sub-service-program h2 {
  font-size: 36px;
  color: #f2aa51;
  text-align: center;
  margin-bottom: 50px;
}

/* activity */

.p-activity {
  background: #f8e2c4;
  text-align: center;
  padding: 50px 0;
  border-radius: 50px;
  margin-bottom: 50px;
}

.p-activity__title {
  position: relative;
  width: fit-content;
  margin: 0 auto 30px;
  padding: 12px 24px 12px 58px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  color: #433b35;
}

.p-activity__title::before {
  content: "";
  position: absolute;
  left: -25%;
  top: 70%;
  transform: translateY(-50%);
  width: 121px;
  height: 115px;
  background-image: url("../img/page/sub_service_motionIcon.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.p-activity__inner {
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.p-activity__item {
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 0 32px;
  text-align: center;
}

.p-activity__item:not(:last-child) {
  border-right: 3px dotted #fff;
}

.p-activity__sub-title {
  width: fit-content;
  margin: 0 auto 30px;
  padding: 8px 24px;
  background: #fff;
  border-radius: 9999px;
  font-weight: 400;
  line-height: 1.4;
  color: #433b35;
}

.p-activity__text {
  margin: 0 0 30px;
  line-height: 2.4;
  color: #433b35;
}

.p-activity__image {
  overflow: hidden;
  border-radius: 30px;
}

.p-activity__image img {
  display: block;
  width: 100%;
  height: auto;
}

/* study */

.p-study {
  background: #d6ecdd;
  text-align: center;
  padding: 50px 0;
  border-radius: 50px;
  margin-bottom: 50px;
}

.p-study__title {
  position: relative;
  width: fit-content;
  margin: 0 auto 30px;
  padding: 12px 24px 12px 58px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  color: #433b35;
}

.p-study__title::before {
  content: "";
  position: absolute;
  left: -25%;
  top: 70%;
  transform: translateY(-50%);
  width: 121px;
  height: 115px;
  background-image: url("../img/page/sub_service_studyIcon.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.p-study__inner {
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.p-study__item {
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 0 32px;
  text-align: center;
}

.p-study__item:not(:last-child) {
  border-right: 3px dotted #483f36;
}

.p-study__sub-title {
  width: fit-content;
  margin: 0 auto 30px;
  padding: 8px 24px;
  background: #fff;
  border-radius: 9999px;
  font-weight: 400;
  line-height: 1.4;
  color: #433b35;
}

.p-study__text {
  margin: 0 0 30px;
  line-height: 2.4;
  color: #433b35;
}

.p-study__image {
  overflow: hidden;
  border-radius: 30px;
}

.p-study__image img {
  display: block;
  width: 100%;
  height: auto;
}

/* sst */

.p-sst {
  background: #faf2d2;
  text-align: center;
  padding: 50px 0;
  border-radius: 50px;
  margin-bottom: 100px;
}

.p-sst__title {
  position: relative;
  width: fit-content;
  margin: 0 auto 30px;
  padding: 12px 24px 12px 58px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  color: #433b35;
}

.p-sst__title::before {
  content: "";
  position: absolute;
  left: -20%;
  top: 70%;
  transform: translateY(-50%);
  width: 121px;
  height: 115px;
  background-image: url("../img/page/sub_service_sstIcon.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.p-sst__inner {
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.p-sst__item {
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 0 32px;
  text-align: center;
}

.p-sst__item:not(:last-child) {
  border-right: 3px dotted #483f36;
}

.p-sst__sub-title {
  width: fit-content;
  margin: 0 auto 30px;
  padding: 8px 24px;
  background: #fff;
  border-radius: 9999px;
  font-weight: 400;
  line-height: 1.4;
  color: #433b35;
}

.p-sst__text {
  margin: 0 0 30px;
  line-height: 2.4;
  color: #433b35;
}

.p-sst__image {
  overflow: hidden;
  border-radius: 30px;
}

.p-sst__image img {
  display: block;
  width: 100%;
  height: auto;
}

.p-sub-service-inner__image2 {
  flex: 1;
}

.p-sub-service-inner__image2 img {
  width: 70%;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .p-activity__read {
    text-align: left;
    padding: 0 10px;
  }

  .p-sub-service_head_icon01 {
    top: 40%;
    right: 10%;
    width: 6%;
  }

  .p-sub-service_head_icon02 {
    bottom: 20%;
    left: 18%;
    width: 5%;
  }
}

@media (max-width: 768px) {
  .p-sub-service-header p {
    width: 90%;
  }

  .p-sub-service_head_icon01 {
    top: 30%;
    right: 10%;
    width: 9%;
  }

  .p-sub-service_head_icon02 {
    bottom: 8%;
    left: 15%;
    width: 7%;
  }

  .p-sub-service-inner {
    align-items: center;
  }

  .p-serviceCard-grid {
    grid-template-columns: 1fr;
  }

  .p-sub-service h3 {
    font-size: 28px;
  }

  .p-serviceCard__title1::before {
    margin-top: 12px;
  }

  .p-activity__item,
  .p-study__item,
  .p-sst__item {
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .p-sub-service_head_icon01 {
    top: 40%;
    right: 10%;
    width: 14%;
  }

  .p-sub-service_head_icon02 {
    bottom: 5%;
    left: 10%;
    width: 10%;
  }

  .p-sub-service-inner {
    flex-direction: column;
  }

  .p-sub-service-header p {
    width: 100%;
  }

  .p-serviceCard__image {
    overflow: hidden;
    aspect-ratio: 4 / 3;
    position: relative;
    padding: 20px 0;
    object-fit: cover;
  }

  .p-serviceCard__body {
    padding: 0;
  }

  .p-activity__title {
    padding: 12px 0 12px 58px;
    font-size: 22px;
  }

  .p-activity__title::before {
    width: 111px;
    height: 105px;
  }

  .p-activity__inner {
    grid-template-columns: 1fr;
  }

  .p-activity__item {
    padding: 32px;
  }

  .p-study__title {
    padding: 12px 0 12px 58px;
    font-size: 22px;
  }

  .p-study__title::before {
    width: 111px;
    height: 155px;
  }

  .p-study__inner {
    grid-template-columns: 1fr;
  }

  .p-study__item {
    padding: 32px;
  }

  .p-sst__title {
    font-size: 22px;
  }

  .p-sst__title::before {
    left: -25%;
    top: 50%;
    width: 111px;
    height: 105px;
  }

  .p-sst__inner {
    grid-template-columns: 1fr;
  }

  .p-sst__item {
    padding: 32px;
  }

  .p-sub-service-inner__image2 img {
    width: 90%;
    padding-bottom: 80px;
  }

  .p-activity__item:not(:last-child),
  .p-study__item:not(:last-child),
  .p-sst__item:not(:last-child) {
    border-right: none;
  }
}


/* ==============================
   sub schedule
============================== */

.p-sub-schedule_head_icon01 {
  position: absolute;
  top: 40%;
  right: 18%;
  width: 5%;
  height: auto;
}

.p-sub-schedule_head_icon02 {
  position: absolute;
  bottom: 20%;
  left: 22%;
  width: 4%;
  height: auto;
}

.p-sub_schedule-weekdays {
  position: relative;
}

.p-sub_schedule-weekdays h2 {
  font-size: 36px;
  color: #f2aa51;
  text-align: center;
}

.schedule-weekdays__text {
  text-align: center;
}

.p-sub-schedule-weekdays__bgIcon1 {
  position: absolute;
  top: 350px;
  right: 0;
  width: 10%;
  height: auto;
}

.p-sub-schedule-weekdays__bgIcon2 {
  position: absolute;
  bottom: 100px;
  right: 0;
  width: 10%;
  height: auto;
}

/* schedule weekdays */

.p-schedule {
  padding: 60px 20px;
}

.p-schedule__inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.p-schedule__inner::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 0;
  width: 2px;
  background: #555;
}

.p-schedule__item {
  position: relative;
  display: grid;
  grid-template-columns: 100px 30px 1fr;
  column-gap: 20px;
  padding-bottom: 42px;
}

.p-schedule__item:last-child {
  padding-bottom: 0;
}

.p-schedule__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: #f5a343;
  border-radius: 50%;
  transform: translateX(-9px);
}

.p-schedule__time {
  padding-left: 20px;
  font-size: 18px;
  font-weight: 600;
  color: #f5a343;
  line-height: 1.4;
}

.p-schedule__line {
  width: 28px;
  height: 1px;
  margin-top: 10px;
  background: #aaa;
}

.p-schedule__title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: #443d37;
}

.p-schedule__text {
  margin: 0;
  line-height: 2;
  color: #443d37;
}

@media (max-width: 1024px) {
  .p-sub-schedule_head_icon01 {
    top: 40%;
    right: 10%;
    width: 6%;
  }

  .p-sub-schedule_head_icon02 {
    bottom: 20%;
    left: 18%;
    width: 5%;
  }
}

@media(max-width: 768px) {
  .p-sub-schedule_head_icon01 {
    top: 30%;
    right: 10%;
    width: 9%;
  }

  .p-sub-schedule_head_icon02 {
    bottom: 8%;
    left: 15%;
    width: 7%;
  }

  .p-schedule {
    padding: 40px 20px;
  }

  .p-schedule__inner::before {
    left: 22px;
    top: 0;
    bottom: 0;
    width: 2px;
  }

  .p-schedule__item {
    display: grid;
    grid-template-columns: 1fr;
    padding-left: 62px;
    padding-bottom: 55px;
  }

  .p-schedule__item::before {
    left: 22px;
    top: 0;
    width: 22px;
    height: 22px;
  }

  .p-schedule__time {
    margin-bottom: 18px;
    padding-left: 0;
    font-size: 22px;
    line-height: 1.2;
  }

  .p-schedule__line {
    width: 32px;
    height: 1px;
    margin: 0 0 16px;
  }

  .p-schedule__content {
    width: 100%;
  }

  .p-schedule__title {
    margin-bottom: 14px;

    font-size: 22px;
    line-height: 1.6;
  }

  .p-schedule__text {
    font-size: 16px;
    line-height: 2;
  }
}

@media (max-width: 480px) {
  .p-schedule {
    padding: 40px 0;
  }

  .p-sub-schedule_head_icon01 {
    top: 80%;
    right: 10%;
    width: 14%;
  }

  .p-sub-schedule_head_icon02 {
    bottom: 5%;
    left: 10%;
    width: 10%;
  }

  .p-schedule__item {
    padding-left: 50px;
  }

  .p-sub_schedule-weekdays h2 {
    font-size: 28px;
  }

  .p-sub-schedule-weekdays__bgIcon1 {
    top: 500px;
    right: 0;
    width: 25%;
  }

  .p-sub-schedule-weekdays__bgIcon2 {
    bottom: -20px;
    right: 0;
    width: 20%;
  }
}

/* schedule holiday */

.p-sub_schedule-holiday {
  position: relative;
}

.p-sub_schedule-holiday h2 {
  font-size: 36px;
  color: #6fcf97;
  text-align: center;
  margin-top: 80px;
}

.schedule-holiday__text {
  text-align: center;
}

.p-sub-schedule-holiday__bgIcon1 {
  position: absolute;
  top: 350px;
  right: 0;
  width: 10%;
  height: auto;
}

.p-sub-schedule-holiday__bgIcon2 {
  position: absolute;
  bottom: 100px;
  right: 40px;
  width: 10%;
  height: auto;
}

.p-schedule-h__time {
  padding-left: 20px;
  font-size: 18px;
  font-weight: 600;
  color: #6fcf97;
  line-height: 1.4;
}

.p-schedule-h__item {
  position: relative;
  display: grid;
  grid-template-columns: 100px 30px 1fr;
  column-gap: 20px;
  padding-bottom: 42px;
}

.p-schedule_-h_item:last-child {
  padding-bottom: 0;
}

.p-schedule-h__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: #6fcf97;
  border-radius: 50%;
  transform: translateX(-9px);
}

@media (max-width: 768px) {
  .p-schedule-h__item {
    display: grid;
    grid-template-columns: 1fr;
    padding-left: 62px;
    padding-bottom: 55px;
  }

  .p-schedule-h__item::before {
    left: 22px;
    top: 0;
    width: 22px;
    height: 22px;
  }

  .p-schedule-h__time {
    margin-bottom: 18px;
    padding-left: 0;
    font-size: 22px;
    line-height: 1.2;
  }

  .p-sub-schedule-holiday__bgIcon1 {
    top: 400px;
  }
}

@media (max-width: 480px) {
  .p-sub_schedule-holiday h2 {
    font-size: 28px;
  }

  .p-schedule-h__item {
    padding-left: 50px;
  }

  .p-sub-schedule-holiday__bgIcon1 {
    top: 500px;
    right: 0;
    width: 25%;
  }

  .p-sub-schedule-holiday__bgIcon2 {
    bottom: -20px;
    right: 40px;
    width: 25%;
  }
}

/* events */

.p-sub-events {
  margin-bottom: 80px;
}

.p-sub-events h2 {
  font-size: 36px;
  color: #f2aa51;
  text-align: center;
}

.p-sub-events__inner {
  background: #fff5cf;
  border-radius: 40px;
}

.p-event-list {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 80px 30px;
  background: #fff8d9;
  border-radius: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 60px;
  row-gap: 50px;
  position: relative;
}

.p-event-list__item {
  position: relative;
  min-height: 210px;
}

.p-event-list__item:not(:nth-child(3n))::after {
  content: "";
  position: absolute;
  top: 60px;
  right: -30px;
  bottom: 0;
  border-right: 1px dashed #8b8378;
}

.p-event-list__title {
  margin: 0 0 32px;
  padding: 8px 10px;
  background: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
}

.p-event-list__contents {
  margin: 0;
  padding: 0 30px;
  list-style: none;
}

.p-event-list__contents li {
  position: relative;
  margin-bottom: 25px;
  padding-left: 30px;
  font-size: 16px;
  line-height: 1.6;
}

.p-event-list__contents li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 15px;
  height: 15px;
  background: #51483f;
  border-radius: 50%;
}

.p-event-list__note {
  grid-column: 2 / 4;
  margin: 0;
  text-align: right;
  font-size: 13px;
}

/* 季節ごとの文字色 */
.p-event-list__item--spring .p-event-list__title {
  color: #e77eb1;
}

.p-event-list__item--summer .p-event-list__title {
  color: #5265db;
}

.p-event-list__item--autumn .p-event-list__title {
  color: #f47b2b;
}

.p-event-list__item--winter .p-event-list__title {
  color: #4ba9b4;
}

.p-event-list__item--all .p-event-list__title {
  color: #51483f;
}

.p-sub-event__bgIcon1 {
  position: absolute;
  bottom: 150px;
  right: 100px;
  width: 15%;
  height: auto;
}

@media (max-width: 768px) {
  .p-event-list {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 22px 8px 30px;
    border-radius: 30px;
  }

  .p-event-list__item {
    min-height: auto;
    padding: 0 25px 25px;
    margin-bottom: 23px;
    border-bottom: 1px dashed #8b8378;
  }

  .p-event-list__item--all {
    padding-bottom: 100px;
  }

  .p-event-list__item::after {
    display: none;
  }

  .p-event-list__title {
    margin: 0 5px 25px;
    padding: 4px 10px;
    /* font-size: 17px; */
    line-height: 1.4;
  }

  .p-event-list__contents {
    padding: 0 25px;
  }

  .p-event-list__contents li {
    margin-bottom: 22px;
    padding-left: 28px;
    /* font-size: 14px; */
    line-height: 1.6;
  }

  .p-event-list__contents li::before {
    top: 0.55em;
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 480px) {
  .p-sub-event__bgIcon1 {
    bottom: 150px;
    right: 100px;
    width: 35%;
  }

  .p-event-list__item--all {
    padding-bottom: 200px;
  }
}

/* ==============================
   sub infomation
============================== */

.p-sub-infomation-header {
  padding: 70px 0;
  background-color: #fff6D3;
  text-align: center;
  position: relative;
}

.p-sub-infomation-header p {
  width: 50%;
  margin: 40px auto 0;
}

.p-sub-infomation-header__title {
  margin: 0;
  color: #4a433f;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.5;
}

.p-sub-info_head_icon01 {
  position: absolute;
  top: 20%;
  right: 28%;
  width: 5%;
  height: auto;
}

.p-sub-info_head_icon02 {
  position: absolute;
  bottom: 10%;
  left: 26%;
  width: 4%;
  height: auto;
}

.p-subject h2 {
  font-size: 36px;
  color: #f2aa51;
}

.p-target {
  display: grid;
  grid-template-columns: 32% 1fr;
  max-width: 1480px;
  margin: 0 auto;
  border: 1px solid #f5a623;
  border-radius: 40px;
  overflow: hidden;
  background: #fff;
}

.p-target__label {
  display: flex;
  align-items: flex-start;
  padding: 40px 50px;
  background: #f8ad4d;
}

.p-target__label h3 {
  margin: 0;
  font-size: 20px;
  color: #453d35;
}

.p-target__content {
  padding: 40px 30px;
}

.p-target__content p {
  margin: 0;
  line-height: 2.2;
  color: #453d35;
}

.p-target__content p + p {
  margin-top: 25px;
}

@media (max-width: 768px) {
  .p-sub-infomation-header p {
    width: 80%;
    margin: 40px auto 0;
  }

  .p-sub-info_head_icon01 {
    top: 20%;
    right: 15%;
    width: 10%;
  }

  .p-sub-info_head_icon02 {
    bottom: 8%;
    left: 15%;
    width: 7%;
  }

  .p-target {
    display: block;
    margin: 0 20px;
    border-radius: 30px;
  }

  .p-target__label {
    padding: 20px 25px;
  }

  .p-target__label h3 {
    font-size: 22px;
  }

  .p-target__content {
    padding: 25px;
  }

  .p-target__content p {
    font-size: 16px;
    line-height: 2;
  }

  .p-target__content p + p {
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .p-sub-infomation-header p {
    width: 100%;
  }

  .p-sub-info_head_icon01 {
    top: 20%;
    right: 8%;
    width: 15%;
  }

  .p-sub-info_head_icon02 {
    bottom: 8%;
    left: 8%;
    width: 10%;
  }

  .p-subject h2 {
    text-align: center;
  }
}

/* worries */

.p-worries {
  position: relative;
}

.p-worries h2 {
  font-size: 36px;
  text-align: center;
}

.p-worries h2 span {
  color: #f2aa51;
}

.p-worries p {
  text-align: center;
}

.p-worries h3 span{
  display: inline-block;
  border-bottom: 3px solid #ffa63a;
}

.p-worries-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-worries-list li {
  position: relative;
  padding-left: 30px;
  /* font-size: 28px;
  font-weight: 600; */
  line-height: 1.8;
  color: #4a433d;
}

.p-worries-list li + li {
  margin-top: 25px;
}

.p-worries-list li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 18px;
  height: 14px;
  background: url("../img/page/checkIcon.png") no-repeat center / contain;
}

.p-worries__box-01 {
  background: url(../img/page/sub_info_bg01.png) no-repeat;
  background-size: contain;
  background-position: center center;
  width: 50%;
  padding: 30px;
  margin-top: 50px;
}

.p-worries__box-02 {
  background: url(../img/page/sub_info_bg02.png) no-repeat;
  background-size: contain;
  background-position: center left;
  width: 50%;
  padding: 30px;
  margin: 0 0 0 auto;
}

.p-worries__box-03 {
  background: url(../img/page/sub_info_bg03.png) no-repeat;
  background-size: contain;
  background-position: center center;
  width: 50%;
  padding: 30px;
  margin-bottom: 100px;
}

.p-worries__bgIcon1 {
  position: absolute;
  top: 350px;
  right: 200px;
  width: 12%;
  height: auto;
}

.p-worries__bgIcon2 {
  position: absolute;
  bottom: 0;
  right: 300px;
  width: 12%;
  height: auto;
}

/* price */

.p-price h2 {
  font-size: 36px;
  color: #f2aa51;
}

.p-income-table {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 40px;
}

.p-income-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

.p-income-table th,
.p-income-table td {
  width: 50%;
  vertical-align: middle;
  color: #453f39;
}

.p-income-table th {
  padding: 30px;
  background: #f7ad4e;
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid #fff;
}

.p-income-table td {
  padding: 30px 30px 30px 80px;
  font-weight: 500;
}

.p-income-table tbody td:first-child {
  background: #fff0d8;
}

.p-income-table tbody td:last-child {
  background: #f1f1f1;
}

.p-income-table th:first-child,
.p-income-table td:first-child {
  border-right: 2px solid #fff;
}

.p-income-table tbody tr:not(:last-child) td {
  border-bottom: 2px solid #fff;
}

.p-income-table tbody tr:last-child td:first-child {
  border-radius: 0 0 0 40px;
}

.p-income-table tbody tr:last-child td:last-child {
  border-radius: 0 0 40px 0;
}

.p-income-table p {
  font-size: 14px;
  padding: 20px 0 0 20px;
}


@media (max-width: 768px) {
  .p-worries__box-01,
  .p-worries__box-02,
  .p-worries__box-03 {
    width: 100%;
  }

  .p-worries__bgIcon1 {
    position: absolute;
    top: 350px;
    right: 100px;
    width: 15%;
    height: auto;
  }

  .p-worries__bgIcon2 {
    position: absolute;
    bottom: 0;
    right: 20px;
    width: 15%;
    height: auto;
  }

  .p-income-table {
    border-radius: 20px;
  }

  .p-income-table th {
    padding: 20px 10px;
    font-size: 16px;
  }

  .p-income-table td {
    padding: 24px 10px;
    font-size: 14px;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .p-worries__box-01,
  .p-worries__box-02,
  .p-worries__box-03 {
    padding: 20px 0;
  }

  .p-worries__bgIcon1 {
    top: 700px;
    right: 10px;
    width: 25%;
  }

  .p-worries__bgIcon2 {
    bottom: -100px;
    right: 20px;
    width: 25%;
  }
}

/* pickup */

.p-pickup h2 {
  font-size: 36px;
  color: #f2aa51;
}

.p-pickup h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 0;
}

.p-pickup-table {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  border-radius: 40px;
  overflow: hidden;
}

.p-pickup-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

.p-pickup-table th,
.p-pickup-table td {
  width: 50%;
  vertical-align: middle;
  color: #4a433d;
}

.p-pickup-table th {
  background: #f2ab4b;
  padding: 30px;
  font-size: 20px;
  font-weight: 700;
}

.p-pickup-table td {
  padding: 30px 30px 30px 80px;
  line-height: 1.6;
}

.p-pickup-table tbody td:first-child {
  background: #f7ecd9;
}

.p-pickup-table tbody td:last-child {
  background: #eeeeee;
}

.p-pickup-table th:first-child,
.p-pickup-table td:first-child {
  border-right: 2px solid #f5f5f5;
}

.p-pickup-table tbody tr:not(.p-pickup-table__space):not(:last-child) td {
  border-bottom: 2px solid #f5f5f5;
}

.p-pickup-table__space td {
  height: 34px;
  padding: 0;
  background: transparent !important;
  border: none !important;
}

.p-pickup-table__space + tr td {
  border-top: none;
}

.p-pickup-table tbody tr:last-child td:first-child {
  border-radius: 0 0 0 40px;
}

.p-pickup-table tbody tr:last-child td:last-child {
  border-radius: 0 0 40px 0;
}

.p-pickup-table p {
  font-size: 14px;
  padding: 20px 0 0 20px;
}


@media (max-width: 767px) {
  .p-pickup-table {
    border-radius: 20px;
  }

  .p-pickup-table th {
    padding: 20px 10px;
    font-size: 18px;
  }

  .p-pickup-table td {
    padding: 24px 12px;
    font-size: 14px;
    line-height: 1.6;
  }

  .p-pickup-table__space td {
    height: 16px;
  }

  .p-pickup-table tbody tr:last-child td:first-child {
    border-radius: 0 0 0 20px;
  }

  .p-pickup-table tbody tr:last-child td:last-child {
    border-radius: 0 0 20px 0;
  }
}


/* ==============================
   sub introduction
============================== */

.p-sub-introduction-header {
  padding: 70px 0;
  background-color: #fff6d3;
  text-align: center;
  position: relative;
}

.p-sub-introduction-header p {
  width: 50%;
  margin: 40px auto 0;
}

.p-sub-introduction-header__title {
  margin: 0;
  color: #4a433f;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.5;
}

.p-introduction h2 {
  font-size: 36px;
  color: #f2aa51;
  text-align: center;
  margin-bottom: 80px;
}

.p-introduction-inner,
.p-introduction-inner2 {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
}

.p-introduction-inner__text {
  flex: 2;
  line-height: 2.5;
}

.p-introduction-inner h3 {
  margin-bottom: 0;
}

.p-introduction-inner__image {
  flex: 3;
}

.p-introduction-box {
  display: flex;
  gap: 60px;
}

.p-introduction-box__item {
  flex: 1;
}

.p-introduction-box__item h3 {
  margin: 30px 0 0;
}

.p-introduction-box__item p {
  line-height: 2.5;
}

/* access */

.p-access {
  position: relative;
}

.p-access h2 {
  font-size: 36px;
  color: #f2aa51;
}

.p-map-area {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
  align-items: stretch;
}

.p-map-area__map,
.p-map-area__image {
  overflow: hidden;
  border-radius: 40px;
}

.p-map-area__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
}

.p-map-area__image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: contain;
}

.p-info {
  padding: 60px 20px 100px;
}

.p-info__inner {
  max-width: 80%;
}

.p-info__list {
  margin: 0;
  padding: 0;
}

.p-info__row {
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: center;
  gap: 30px;
  padding: 42px 0;
  border-top: 2px dashed #ffea66;
}

.p-info__row:last-child {
  border-bottom: 2px dashed #ffea66;
}

.p-info__title,
.p-info__text {
  margin: 0;
  line-height: 1.6;
}

.p-info__title {
  color: #f59a23;
}

.p-info__text {
  color: #222;
}

.p-sub-introduction__bgIcon1 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 15%;
  height: auto;
}

@media (max-width: 768px) {
  .p-sub-introduction-header p {
    width: 80%;
  }

  .p-introduction h2 {
    margin-bottom: 50px;
  }

  .p-introduction-inner {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
  }

  .p-introduction-inner2 {
    flex-direction: column-reverse;
    gap: 20px;
    margin-bottom: 50px;
  }

  .p-introduction-box {
    flex-direction: column;
    gap: 60px;
  }

  .p-introduction-box__item img {
    width: 80%;
    margin: 0 auto;
  }

  .p-map-area {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .p-map-area__map,
  .p-map-area__image {
    border-radius: 20px;
  }

  .p-map-area__map iframe {
    min-height: 300px;
  }

  .p-map-area__image img {
    min-height: 0;
    height: auto;
  }

  .p-info {
    padding: 60px 20px 150px;
  }

  .p-info__inner {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .p-sub-introduction-header p {
    width: 100%;
  }

  .p-info {
    padding: 60px 0 250px;
  }

  .p-info__row {
    grid-template-columns: 120px 1fr;
    gap: 10px;
  }

  .p-sub-introduction__bgIcon1 {
    position: absolute;
    bottom: 40px;
    right: 0;
    left: 0;
    margin: auto;
    width: 40%;
    height: auto;
  }
}


/* ==============================
   FAQ
============================== */

.p-sub-faq-header {
  padding: 70px 0;
  background-color: #fff6d3;
  text-align: center;
  position: relative;
}

.p-sub-faq-header p {
  width: 50%;
  margin: 40px auto 0;
}

.p-sub-faq-header__title {
  margin: 0;
  color: #4a433f;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.5;
}

.p-sub-faq_head_icon01 {
  position: absolute;
  top: 20%;
  right: 28%;
  width: 5%;
  height: auto;
}

.p-sub-faq_head_icon02 {
  position: absolute;
  bottom: 10%;
  left: 26%;
  width: 4%;
  height: auto;
}

.p-faq-inner-r,
.p-faq-inner-l {
  display: flex;
  margin-bottom: 80px;
}

.p-faq-inner__head-r,
.p-faq-inner__head-l {
  flex: 1;
}

.p-faq-inner__text-r,
.p-faq-inner__text-l {
  flex: 2;
}

.c-faq-inner-header-r {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 28px;
}

.c-faq-inner-header-r::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background: #ffa63a;
  border-radius: 3px;
  flex-shrink: 0;
}

.c-faq-inner-header-l {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  font-size: 28px;
}

.c-faq-inner-header-l::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background: #6fcf97;
  border-radius: 3px;
  flex-shrink: 0;
}

.p-faq-inner__text-r p,
.p-faq-inner__text-l p {
  border-bottom: 1px dashed #000;
  line-height: 2.5;
  padding-bottom: 20px;
}

.p-faq-inner__text-r > div:last-child p,
.p-faq-inner__text-l > div:last-child p {
  border-bottom: none;
}

@media (max-width: 768px) {
  .p-sub-faq-header p {
    width: 80%;
  }

  .p-sub-faq_head_icon01 {
    top: 20%;
    right: 15%;
    width: 10%;
  }

  .p-sub-faq_head_icon02 {
    bottom: 8%;
    left: 15%;
    width: 7%;
  }

  .p-faq-inner-r {
    flex-direction: column;
    margin-bottom: 30px;
  }

  .p-faq-inner-l {
    flex-direction: column-reverse;
    margin-bottom: 30px;
  }

  .c-faq-inner-header-l {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .p-sub-faq-header p {
    width: 100%;
  }

  .p-sub-faq_head_icon01 {
    top: 7%;
    right: 8%;
    width: 15%;
  }

  .p-sub-faq_head_icon02 {
    bottom: 8%;
    left: 8%;
    width: 10%;
  }
}


/* ==============================
   step
============================== */

.p-sub-step-header {
  padding: 70px 0;
  background-color: #fff6d3;
  text-align: center;
  position: relative;
}

.p-sub-step-header p {
  width: 50%;
  margin: 40px auto 0;
}

.p-sub-step-header__title {
  margin: 0;
  color: #4a433f;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.5;
}

.p-sub-step-header__title span {
  color: #f2aa51;
  display: inline-block;
  padding: 0 5px;
  font-size: 40px;
}

.p-sub-step_head_icon01 {
  position: absolute;
  top: 20%;
  right: 25%;
  width: 7%;
  height: auto;
}

.p-step {
  padding: 80px 20px;
  background: #fff;
}

.p-step__inner {
  width: min(100%, 1100px);
  margin: 0 auto;
}

.p-step__item {
  display: grid;
  grid-template-columns: 120px 1fr;
  column-gap: 50px;
  position: relative;
}

.p-step__item:not(:last-child) {
  padding-bottom: 70px;
}

.p-step__side {
  position: relative;
  display: flex;
  justify-content: center;
}

.p-step__side::after {
  content: "";
  position: absolute;
  top: 120px;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #f5a142;
  transform: translateX(-50%);
}

.p-step__item--last .p-step__side::after {
  display: none;
}

.p-step__icon {
  position: relative;
  z-index: 2;
  width: 92px;
  height: 92px;
  border: 2px solid #f5a142;
  border-radius: 50%;
  background: #fff;

  display: flex;
  align-items: center;
  justify-content: center;
}

.p-step__icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.p-step__content {
  padding-top: 10px;
}

.p-step__number {
  margin: 0 0 4px;
  color: #f39a35;
  font-size: 14px;
  font-weight: 700;
}

.p-step__title {
  margin: 0;
  color: #333;
  font-size: clamp(24px, 2.5vw, 32px);
  line-height: 1.4;
}

.p-step__lead {
  margin: 24px 0 12px;
  color: #333;
  font-size: 18px;
  font-weight: 400;
}

.p-step__lead--orange {
  color: #f39a35;
  font-weight: 700;
}

.p-step__text {
  margin: 0;
  color: #555;
  font-size: 15px;
  line-height: 2;
}

.p-step__contact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  margin-top: 28px;
}

.p-step__contact-label {
  margin: 0 0 8px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

.p-step__btn {
  min-height: 82px;
  border-radius: 50px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  text-align: center;

  transition:
    opacity 0.3s,
    transform 0.3s;
}

.p-step__btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.p-step__btn--orange {
  background: #f7a53f;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
}

.p-step__btn--green {
  background: #8fd3ab;
  color: #333;
}

.p-step__btn--green strong {
  font-size: 23px;
  line-height: 1.3;
}

.p-step__btn--green span {
  margin-top: 3px;
  font-size: 12px;
}

.p-step__boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 28px;
}

.p-step__box {
  padding: 28px 30px;
  border-radius: 14px;
  background: #fff7dc;
}

.p-step__box h5 {
  margin: 0 0 12px;
  color: #f39a35;
  font-size: 15px;
}

.p-step__box p {
  margin: 0;
  color: #555;
  font-size: 14px;
  line-height: 1.9;
}

.p-step__note {
  margin: 20px 0 0;
  color: #666;
  font-size: 12px;
  line-height: 1.8;
}

@media (max-width: 1024px) {
  .p-sub-step_head_icon01 {
    top: 20%;
    right: 15%;
    width: 7%;
  }
}


@media (max-width: 768px) {
  .p-sub-step-header p {
    width: 80%;
  }

  .p-sub-step_head_icon01 {
    top: 20%;
    right: 8%;
    width: 9%;
  }

  .p-step {
    padding: 50px 18px;
  }

  .p-step__item {
    grid-template-columns: 65px 1fr;
    column-gap: 18px;
  }

  .p-step__item:not(:last-child) {
    padding-bottom: 55px;
  }

  .p-step__icon {
    width: 58px;
    height: 58px;
  }

  .p-step__icon img {
    width: 30px;
    height: 30px;
  }

  .p-step__side::after {
    top: 60px;
  }

  .p-step__content {
    padding-top: 0;
  }

  .p-step__number {
    font-size: 12px;
  }

  .p-step__title {
    font-size: 21px;
  }

  .p-step__lead {
    margin-top: 18px;
    font-size: 16px;
  }

  .p-step__text {
    font-size: 14px;
    line-height: 1.9;
  }

  .p-step__contact {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .p-step__boxes {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .p-step__box {
    padding: 22px 20px;
  }

  .p-step__btn {
    min-height: 72px;
  }

  .p-step__btn--green strong {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .p-sub-step-header p {
    width: 100%;
  }

  .p-sub-step_head_icon01 {
    top: 25%;
    right: 1%;
    width: 15%;
  }

  .p-step {
    padding: 50px 0;
  }

  .p-step__item {
    column-gap: 0;
  }

  .p-step__number {
    font-size: 16px;
    margin: 0;
  }

  .p-step__title {
    font-size: 24px;
  }
}



/* ==============================
   Contact
============================== */

.p-top-contact {
  background: url(../img/top_contact_bg.png) no-repeat;
  background-size: cover;
  text-align: center;
  position: relative;
}

.p-top-contact h2 {
  font-size: 36px;
}

.p-contact__text {
  margin-bottom: 40px;
}

.p-contact__buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.c-contact--mail {
  background: #ffa63a;
  padding: 15px 60px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  border-radius: 50px;
}

.c-contact--phone {
  background: #6fcf97;
  padding: 15px 45px;
  font-size: 22px;
  line-height: 1.5;
  border-radius: 50px;
}

.c-contact--phone span {
  display: block;
  font-size: 16px;
}

.tel-link {
  color: inherit;
  text-decoration: none;
  cursor: default;
}

.p-top-contact__bgIcon1 {
  position: absolute;
  top: 50px;
  left: 25%;
  width: 7%;
  height: auto;
}

.p-top-contact__bgIcon2 {
  position: absolute;
  bottom: 100px;
  right: 20%;
  width: 5%;
  height: auto;
}

@media (max-width: 1024px) {
  .p-top-contact {
    background-position: center;
  }

  .p-top-contact__bgIcon1 {
    position: absolute;
    top: 50px;
    left: 20%;
    width: 7%;
    height: auto;
  }

  .p-top-contact__bgIcon2 {
    position: absolute;
    bottom: 100px;
    right: 10%;
    width: 5%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .tel-link {
    color: #333;
    cursor: pointer;
  }
	
  .p-top-contact__bgIcon1 {
    position: absolute;
    top: 50px;
    left: 5%;
    width: 10%;
    height: auto;
  }

  .p-top-contact__bgIcon2 {
    position: absolute;
    bottom: 20px;
    right: 10%;
    width: 10%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .p-top-contact {
    background: url(../img/top_contact_bg_sp.png) no-repeat center top;
    background-size: cover;
    text-align: center;
    position: relative;
    padding-bottom: 150px;
  }

  .p-contact__buttons {
    flex-direction: column;
    justify-content: center;
    gap: 20px;
  }

  .p-top-contact__bgIcon1 {
    position: absolute;
    top: 50px;
    left: 0;
    width: 18%;
    height: auto;
  }

  .p-top-contact__bgIcon2 {
    position: absolute;
    bottom: 70px;
    right: 10%;
    width: 12%;
    height: auto;
  }
}

@media (min-width: 769px) {
  .tel-link {
    pointer-events: none;
  }
}

/* ==============================
   sub Contact
============================== */

.p-sub-contact {
  background: url(../img/page/sub_contact_bg.png) no-repeat;
  background-size: cover;
  text-align: center;
  position: relative;
}

.p-sub-contact h2 {
  font-size: 36px;
}

.p-sub-contact__bgIcon1 {
  position: absolute;
  top: 50px;
  left: 25%;
  width: 7%;
  height: auto;
}

.p-sub-contact__bgIcon2 {
  position: absolute;
  bottom: 100px;
  right: 20%;
  width: 5%;
  height: auto;
}

@media (max-width: 1024px) {
  .p-sub-contact {
    background-position: center;
  }

  .p-sub-contact__bgIcon1 {
    position: absolute;
    top: 50px;
    left: 20%;
    width: 7%;
    height: auto;
  }

  .p-sub-contact__bgIcon2 {
    position: absolute;
    bottom: 100px;
    right: 10%;
    width: 5%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .p-sub-contact__bgIcon1 {
    position: absolute;
    top: 50px;
    left: 5%;
    width: 10%;
    height: auto;
  }

  .p-sub-contact__bgIcon2 {
    position: absolute;
    bottom: 20px;
    right: 10%;
    width: 10%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .p-sub-contact {
    background: url(../img/page/sub_contact_bg_sp.png) no-repeat center top;
    background-size: cover;
    text-align: center;
    position: relative;
    padding-bottom: 150px;
  }

  .p-contact__buttons {
    flex-direction: column;
    justify-content: center;
    gap: 20px;
  }

  .p-sub-contact__bgIcon1 {
    position: absolute;
    top: 50px;
    left: 0;
    width: 18%;
    height: auto;
  }

  .p-sub-contact__bgIcon2 {
    position: absolute;
    bottom: 70px;
    right: 10%;
    width: 12%;
    height: auto;
  }
}

/* ========================================
   Footer
======================================== */

.l-footer {
  width: 100%;
  padding: 70px 0 25px;
  background: #fff;
  color: #4a433f;
}

.l-footer__inner {
  width: min(1440px, calc(100% - 80px));
  margin: 0 auto;
  padding-top: 110px;
  border-top: 1px dashed #f5a23f;
}

.l-footer__main {
  display: grid;
  grid-template-columns:
    1fr
    2fr;
  align-items: start;
  gap: 120px;
  max-width: 1050px;
  margin: 0 auto;
}

.l-footer__logo {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.l-footer__logo a {
  display: block;
}

.l-footer__logo img {
  display: block;

  width: 200px;
  height: auto;
}

.l-footer__nav {
  display: grid;
  grid-template-columns:
    1fr
    1fr
    1fr;
  gap: 55px;
  width: 100%;
}

.l-footer__menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.l-footer__menu li {
  position: relative;
  padding: 15px 0 15px 18px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.l-footer__menu li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  background: #7dcf9b;
  border-radius: 50%;
  transform: translateY(-50%);
}

.l-footer__menu li.is-orange::before {
  background: #f5a23f;
}

.l-footer__menu li:not(:last-child) {
  border-bottom: 1px dashed #b7dfc5;
}

.l-footer__menu:not(.l-footer__menu--green)
li:not(:last-child) {
  border-bottom-color: #f5d2a7;
}

.l-footer__menu a {
  color: #4a433f;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.l-footer__menu a:hover {
  opacity: 0.6;
}

.l-footer__copyright {
  margin: 100px 0 0;
  text-align: center;
  font-size: 12px;
  color: #777;
}

@media (max-width: 1024px) {
  .l-footer__inner {
    width: calc(100% - 50px);
    padding-top: 80px;
  }

  .l-footer__main {
    grid-template-columns:
      180px
      1fr;
    gap: 60px;
  }

  .l-footer__nav {
    gap: 35px;
  }

  .l-footer__menu li {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .l-footer {
    padding-top: 50px;
  }

  .l-footer__inner {
    width: calc(100% - 30px);
    padding-top: 50px;
  }

  .l-footer__main {
    display: block;
  }

  .l-footer__logo {
    margin-bottom: 50px;
  }

  .l-footer__logo img {
    width: 150px;
  }

  .l-footer__nav {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .l-footer__menu {
    margin-bottom: 20px;
  }

  .l-footer__menu li {
    padding: 14px 0 14px 20px;
    font-size: 15px;
  }

  .l-footer__menu li {
    border-bottom: 1px dashed #ddd;
  }

  /* Copyright */
  .l-footer__copyright {
    margin-top: 60px;
  }
}

@media (max-width: 480px) {
  .l-footer__menu {
    padding-left: 30px;
  }
}

/* ========================================
   404
======================================== */
.p-404 {
  text-align: center;
}

.p-404 h1 {
  font-size: 150px;
  color: #f2aa51;
  margin-bottom: 20px;
}

.p-404__text {
  font-size: 24px;
}

.p-404 a {
  text-decoration: underline;
}

/* ========================================
   contact
======================================== */

.p-contact-form {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.p-contact-form__row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  padding: 30px 0;
  border-bottom: 1px solid #ddd;
}

.p-contact-form__row:first-child {
  border-top: 1px solid #ddd;
}

.p-contact-form__label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

.p-contact-form__required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 2px 8px;
  margin-top: 1px;
  background: #ffa83d;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
  border-radius: 3px;
}

.p-contact-form__field input,
.p-contact-form__field textarea {
  box-sizing: border-box;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
  transition: border-color 0.3s,
              box-shadow 0.3s;
}

.p-contact-form__field input {
  height: 52px;
}

.p-contact-form__field textarea {
  min-height: 220px;
  resize: vertical;
}

.p-contact-form__field--small input {
  max-width: 300px;
}

.p-contact-form__field input:focus,
.p-contact-form__field textarea:focus {
  outline: none;
  border-color: #333;
  box-shadow: 0 0 0 1px #333;
}

.p-contact-form__field input::placeholder,
.p-contact-form__field textarea::placeholder {
  color: #aaa;
}

.p-contact-form__note {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: #777;
}

.p-contact-form__submit {
  margin-top: 50px;
  text-align: center;
}

.p-contact-form__submit input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 320px;
  min-height: 60px;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  background: #ffa83d;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.3s;
}

.p-contact-form__submit input[type="submit"]:hover {
  opacity: 0.7;
}

.wpcf7-not-valid-tip {
  margin-top: 6px;
  font-size: 13px;
}

.wpcf7 form .wpcf7-response-output {
  margin: 30px 0 100px;
  padding: 15px;
}

/* 必須未入力エラー */
/* .p-contact-form__field input.is-error,
.p-contact-form__field textarea.is-error {
  border-color: #e85b5b;
} */


/* placeholderを赤色に変更 */
.p-contact-form__field input.is-error::placeholder,
.p-contact-form__field textarea.is-error::placeholder {
  color: #e85b5b;
}

/* =========================
   エラーメッセージ
========================= */

.p-contact-error {
  display: none;
  margin-top: 8px;
  color: #e85b5b;
  font-size: 14px;
  line-height: 1.5;
}

.p-contact-error.is-show {
  display: block;
}

/* エラー時の入力欄 */
.p-contact-form__field input.is-error,
.p-contact-form__field textarea.is-error {
  border-color: #e85b5b;
}

/* placeholder */
.p-contact-form__field input.is-error::placeholder,
.p-contact-form__field textarea.is-error::placeholder {
  color: #e85b5b;
}

@media (max-width: 768px) {
  .p-contact-form__row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px 0;
  }

  .p-contact-form__label {
    font-size: 15px;
  }

  .p-contact-form__field input,
  .p-contact-form__field textarea {
    font-size: 16px;
  }

  .p-contact-form__field--small input {
    max-width: 100%;
  }

  .p-contact-form__field textarea {
    min-height: 180px;
  }

  .p-contact-form__submit {
    margin-top: 35px;
  }

}

/* ========================================
   確認画面
======================================== */

.p-contact-confirm {
  display: none;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  scroll-margin-top: 120px;
}

.p-contact-confirm.is-active {
  display: block;
}

.p-contact-form.is-hidden {
  display: none;
}


/* 確認内容 */
.p-contact-confirm__row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  padding: 30px 0;
  border-bottom: 1px solid #ddd;
}

.p-contact-confirm__row:first-child {
  border-top: 1px solid #ddd;
}

.p-contact-confirm__label {
  font-weight: 700;
}

.p-contact-confirm__value {
  line-height: 1.8;
  white-space: pre-wrap;
}

.p-contact-confirm__text {
  margin: 0 0 40px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  color: #333;
}


/* ========================================
   入力内容を確認するボタン
======================================== */

.p-contact-form__confirm-btn {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

#confirmButton {
  display: block;
  width: 100%;
  max-width: 360px;
  height: 80px;
  margin: 0;
  padding: 0 50px 20px;
  box-sizing: border-box;
  border: none;
  border-radius: 8px;
  background: #ffa83d;
  color: #fff;
  font-family: inherit;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: opacity 0.3s;
}

#confirmButton:hover {
  opacity: 0.8;
}


@media (max-width: 768px) {

  .p-contact-form__confirm-btn {
    margin-top: 35px;
  }

  #confirmButton {
    max-width: 100%;
    height: 64px;
    font-size: 16px;
  }

}

/* ========================================
   確認画面 ボタン
======================================== */

.p-contact-confirm__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 760px;
  margin: 50px auto 0;
  gap: 30px;
}


/* 左右のボタン枠 */
.p-contact-confirm__button {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
}


/* 戻る・送信ボタン共通 */
.p-contact-confirm__button input[type="button"],
.p-contact-confirm__button input[type="submit"] {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  height: 80px !important;
  min-height: 80px !important;
  margin: 0 !important;
  padding: 0 20px !important;
  box-sizing: border-box;
  border: none !important;
  border-radius: 8px;
  font-family: inherit !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  line-height: normal !important;
  text-align: center !important;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: opacity 0.3s;
}


/* 入力内容を修正する */
#backButton {
  background: #eee !important;
  color: #333 !important;
}


/* 送信する */
.p-contact-confirm__button input[type="submit"] {
  background: #ffa83d !important;
  color: #fff !important;
}


/* hover */
#backButton:hover,
.p-contact-confirm__button input[type="submit"]:hover {
  opacity: 0.8;
}


/* Contact Form 7 ローディング */
.p-contact-confirm__button .wpcf7-spinner {
  position: absolute;
  top: 50%;
  right: 10px;
  margin: 0;
  transform: translateY(-50%);
}

@media (max-width: 768px) {

  .p-contact-confirm__buttons {
    flex-direction: column-reverse;
    max-width: 100%;
    gap: 15px;
  }

  .p-contact-confirm__button {
    width: 100%;
    flex: none;
  }

  .p-contact-confirm__button input[type="button"],
  .p-contact-confirm__button input[type="submit"] {
    width: 100% !important;
    height: 64px !important;
    min-height: 64px !important;
    font-size: 16px !important;
  }

}


/* ========================================
   news list
======================================== */

.p-sub-news-header {
  padding: 70px 0;
  background-color: #fff6d3;
  text-align: center;
  position: relative;
}

.p-sub-news-header__title {
  margin: 0;
  color: #4a433f;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.5;
}

.p-sub-news h2 {
  font-size: 36px;
}

.p-sub-news_head_icon01 {
  position: absolute;
  bottom: 10px;
  right: 30%;
  width: 5%;
  height: auto;
}

.p-archive {
  padding: 100px 0;
}

.p-archive-card {
  padding-top: 20px;
  border-bottom: 1px solid #ccc;
}

.p-archive-card time {
  color: #f2aa51;
}

@media (max-width: 768px) {
  .p-sub-news_head_icon01 {
    right: 20%;
    width: 8%;
  }
}

@media (max-width: 480px) {
  .p-sub-news_head_icon01 {
    right: 5%;
    width: 12%;
  }
}


/* ========================================
   news single
======================================== */

.p-single {
  padding: 100px 0 50px;
}

.p-single__header time {
  color: #f2aa51;
}

/* pagenation */

.p-pagination {
  margin-top:80px;
  display:flex;
  justify-content:center;
}

.p-pagination ul {
  display:flex;
  align-items:center;
  gap:35px;
  list-style:none;
  padding:0;
  margin:0;
}

.p-pagination a,
.p-pagination span {
  display:flex;
  align-items:center;
  justify-content:center;
  width:35px;
  height:50px;
  font-size:16px;
  color:#333;
  text-decoration:none;
}

.p-pagination .current {
  font-weight:bold;
}

.p-pagination .prev,
.p-pagination .next {
  width:90px;
  height:50px;
  background:#f5a23f;
  color:#fff;
  border-radius:8px;
  font-size:16px;
}


.p-pagination a:hover {
  opacity:.7;
}

/* single pagenation */

.p-single-nav {
  max-width:900px;
  margin:30px auto 120px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:30px;
}

.p-single-nav a {
  display:flex;
  align-items:center;
  justify-content:center;
  width:220px;
  height:70px;
  border-radius:8px;
  background:#69b3bd;
  color:#fff;
  font-size:16px;
  text-decoration:none;
}

.p-single-nav__list a {
  background:#f4b544;
}

.p-single-nav a:hover {
  opacity:.8;
}

@media screen and (max-width: 768px) {
  .p-single-nav {
    width:100%;
    padding:0 20px;
    gap:10px;
  }

  .p-single-nav > div {
    flex:1;
    width:auto;
  }

  .p-single-nav a {
    width:100%;
    height:55px;
    font-size:14px;
  }
}