@charset "UTF-8";


:root {
  --primary-gray: #5F4A42;
  --primary-pink: #D78A92;
  --primary-pailpink: #FAE9E9;
  --green: #72B08F;
  --primary-white: #fdfdfd;
  --bg-cream: #FAF7F3;
  --sp-contentPadding: 6.4vw;
  --sp-contantWidht: 87.2vw;
  --sp-margin32: 8.5333vw;
  --sp-padding40: 10.6666vw;
  --sp-padding60: 16vw;
  --pc-padding40: 2.7777vw;
  --pc-padding64: 4.4444vw;
  --pc-padding80: 5.5555vw;
  --pc-padding100: 6.9444vw;
  --sp-fontsize-12px: 0.8571rem;
  --sp-fontsize-14px: 1rem;
  --sp-fontsize-16px: 1.1428rem;
  --sp-fontsize-20px: 1.4285rem;
  --sp-sectionTitle: 1.7142rem;
  --pc-fontsize-14px: 0.875rem;
  --pc-fontsize-16px: 1rem;
  --pc-fontsize-20px: 1.25rem;
  --pc-fontsize-24px: 1.5rem;
  --pc-sectionTitle: 2rem;
  --pc-hpTitle-first: 4rem;
  --pc-hpTitle: 2.5rem;
  --sp-border-radius12: 3.2vw;
  --sp-border-radius24: 6.4vw;
  --sp-border-radius40: 10.6666vw;
  --pc-border-radius50: 3.4722vw;

}

html {
  font-size: clamp(12px, 3.7333vw, 16px);
  letter-spacing: 0.05em;
}

body {
  font-family:
    "Zen Kaku Gothic New",
    'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-style: normal;
  color: var(--primary-gray);
  background-color: var(--primary-white, #fdfdfd);
  line-height: 2;
  font-weight: normal;
  font-size: 1rem;
}

img {
  width: 100%;
  /* max-width: 100%; */
  height: auto;
}

.pcBr {
  display: none;
}

@media screen and (min-width: 768px) {
  html {
    font-size: clamp(14px, 1.11vw, 64px);
  }

  body {
    line-height: 1.8;
  }


  .spBr {
    display: none;
  }

  .pcBr {
    display: block;
  }


}

/* pc 2カラム　横幅設定 ========================== */
@media screen and (max-width: 767px) {
  .container {
    position: relative;
    overflow: hidden;
  }
}

@media screen and (min-width: 768px) {
  .container {
    position: relative;
    width: 62vw;
    min-height: 100vh;
  }

  @media (max-width: 1440px) {
    .container {
      width: 100%;
      max-width: 900px;
    }
  }
}


/* 2カラム　スライドショー ====================*/
@keyframes display {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }

  10% {
    transform: translateX(0);
    opacity: 1;
  }

  20% {
    transform: translateX(0);
    opacity: 1;
  }

  70% {
    transform: translateX(-100px);
    opacity: 0;
  }

  100% {
    transform: translateX(-100px);
    opacity: 0;
  }
}

.slideSidebar {
  position: relative;
  width: 38vw;
  height: auto;
  z-index: -100;
  overflow: hidden;
}

.slideSidebar img {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  animation: display 48s infinite;
}

img:nth-child(2) {
  animation-delay: 8s;
}

img:nth-child(3) {
  animation-delay: 16s;
}

img:nth-child(4) {
  animation-delay: 24s;
}

img:nth-child(5) {
  animation-delay: 32s;
}

img:nth-child(6) {
  animation-delay: 40s;
}

@media screen and (min-width: 768px) {
  .slideSidebar {
    position: fixed;
    top: 0;
    right: 0;
    left: 62vw;
    width: 38vw;
    height: 100vh;
  }

  .slideSidebar img {
    height: 100vh;
    object-fit: cover;
    object-position: center bottom;
  }

  @media screen and (max-width: 1440px) {
    .slideSidebar {
      left: 900px;
      width: calc(100% - 900px);
      min-width: 360px;
    }
  }
}

/* アニメーション　====================================*/
.box {
  opacity: 0;
}

.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn.animated {
  /* transform: translate(0, 0); */
  opacity: 1;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.blur {
  animation-name: blurAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }

  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}

.blurTrigger {
  opacity: 0;
}

/*アニメーション*/


/* header ============================================== */
.header {
  padding: 24px 6.4% 16px;
}

.header__topic img {
  width: clamp(100px, 53.3vw, 240px);
  height: auto;
  text-align: center;
  padding: 0 48px;
}

.header__topic,
.nav__topic {
  color: var(--primary-gray);
  font-size: var(--sp-fontsize-14px);
  font-weight: 700;
  text-align: center;
}

/*  .nav初期表示 */
.nav {
  font-size: 1em;
  background: rgba(255, 255, 255, 0.9);
  width: 100%;
  height: 100vh;
  align-content: center;
  padding: 80px var(--sp-contentPadding) 100px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transform: translateY(-200%);
  transition: 0.4s;
}

.nav__topic img {
  width: min(53.3vw, 240px);
  height: auto;
  text-align: center;
}

.nav__header {
  width: 100%;
  max-width: 400px;
  display: block;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
}

.nav__btn {
  width: min(12.8vw, 48px);
  height: auto;
}

.nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: center;
}

.nav__item {
  display: flex;
  width: 45%;
  padding: 0.5em;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 10px;
  background: var(--bg_pink, #FAE9E9);
  text-align: center;
  margin: 0 auto;
}

.nav__item:hover {
  border: solid var(--primary-pink) 3px;
}

.nav__item:nth-child(7),
.nav__item:last-child {
  display: none;
}

.nav__item p {
  margin-top: 0.5em;
  line-height: 1;
}

.nav__item img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  display: inline-block;
  margin: 0 auto;
}

.btn {
  font-size: 1rem
}

.btn img {
  width: 1.2em;
  height: 1.2em;
  object-fit: contain;
}

.btn__text {
  margin-top: 3rem;
  text-align: center;
  font-size: var(--sp-fontsize-14px);
}

.btn a {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  column-gap: 1em;
  width: clamp(15em, 240px, 20em);
  padding: 1em;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background: var(--primary-pink, #D78A92);
  color: #ffffff;
  font-size: var(--sp-fontsize-16px);
  line-height: 1;
  margin: 1rem auto 2rem;
}

.btn a:hover {
  opacity: 0.9;
  color: var(--primary-gray);
  font-size: min(4.3vw, 1.8rem);
  font-weight: 700;
  transition: 0.3s;
}

.phone {
  text-align: center;
  font-family: "Noto Sans";
  font-size: var(--sp-fontsize-20px);
}

.phone img {
  width: 16px;
  height: auto;
  vertical-align: middle;
  margin-right: 16px;
}

.time {
  text-align: center;
  font-family: "Noto Sans";
  font-size: var(--sp-fontsize-12px);
  margin-top: 0.5rem;
}

/*  .nav.active表示　*/
.nav.active {
  transform: translateY(0);
}

.pc__header {
  display: none;
}

/* 新ハンバーガーメニューボタン */
/*activeなし  */
.openbtn {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 9999;
  background: var(--primary-pink);
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
}

.openbtn span:nth-last-of-type(1),
.openbtn span:nth-last-of-type(3) {
  height: 2px;
  background: #fff;
  width: 62%;
  left: 10px;
}

.openbtn span:nth-of-type(1) {
  top: 13px;
}

.openbtn span:nth-of-type(2) {
  font-size: 0.85em;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-transform: uppercase;
  color: #FFF;
}

.openbtn span:nth-of-type(3) {
  top: 36px;
}

/* activeあり */
.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

@media screen and (min-width: 1200px) {
  .header__topic {
    text-align: left;
  }

  .nav__topic {
    text-align: center;
    margin-top: 3 rem;
  }

  .header__topic img {
    width: 13.8888vw;
    max-width: none;
    height: auto;
    text-align: center;
    padding: 0;
  }

  .nav {
    background: rgba(255, 255, 255, 0.7);
    width: 32vw;
    height: 100vh;
    padding: 0;
    top: 0;
    left: calc(100% - 32vw);
    z-index: 120;
    transform: translateY(-120%);
    transition: 0.4s;
    align-content: inherit;
  }

  .gnav {
    display: inline-flex;
    grid-template-columns: 3fr 1fr;
    background-color: var(--primary-pink);
  }

  .nav__header {
    display: block;
    max-width: 60vw;
  }

  .nav__list {
    gap: 1em;
    padding: var(--pc-padding100) var(--pc-padding40);
  }

  .nav__item {
    display: flex;
    flex-wrap: wrap;
    width: clamp(160px, 10em, 12vw);
    padding: 0.5em 0;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 10px;
    background: var(--bg_pink, #FAE9E9);
    text-align: center;
    margin: 0 auto;
  }

  .nav__item img {
    display: block;
    width: 1.5em;
    height: 1.5em;
    object-fit: contain;
    margin: 0 auto
  }

  .nav__btn {
    width: fit-content;
    height: auto;
    padding: 0.5em 1em;
    position: fixed;
    top: 0;
    right: 0;
  }

  .btn {
    padding: var(--pc-padding40);
  }

  .btn__text {
    margin-top: 0;
    text-align: center;
    font-size: var(--pc-fontsize-16px);
  }

  .btn a {
    display: flex;
    width: clamp(15em, 320px, 100%);
    color: #ffffff;
    font-size: var(--pc-fontsize-20px);
    line-height: 1.3;
    padding: 0.5em 1.5em;
    justify-content: center;
    align-items: center;
    gap: 1em;
    border-radius: 10px;
    background: var(--primary-pink, #D78A92);
    margin: 0.5em auto 1em;
  }

  .header__btn {
    position: fixed;
    top: 0;
    right: 0;
    background-color: var(--primary-pink);
    width: 64px;
  }

  .header__btn:hover {
    background-color: var(--green);
  }

  .phone {
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: var(--pc-fontsize-20px);
  }

  .time {
    font-size: var(--pc-fontsize-16px);
  }

  /* 新ハンバーガーメニューボタン */
  /*activeなし  */
  .openbtn {
    width: 3.4722vw;
    height: 3.4722vw;
  }

  .openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
  }

  .openbtn span:nth-last-of-type(1),
  .openbtn span:nth-last-of-type(3) {
    height: 2px;
    background: #fff;
    width: 62%;
    left: 0.69vw;
  }

  .openbtn span:nth-of-type(1) {
    top: 0.9vw;
  }

  .openbtn span:nth-of-type(2) {
    font-size: 0.85em;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-transform: uppercase;
    color: #FFF;
  }

  .openbtn span:nth-of-type(3) {
    top: 2.5vw;
  }

  /* activeあり */
  .openbtn.active span:nth-of-type(1) {
    top: 50%;
    left: 50%;
    transform: translate(-50%) rotate(-45deg);
    width: 30%;
  }

  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }

  .openbtn.active span:nth-of-type(3) {
    top: 50%;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    width: 30%;
  }
}

/*pc 1200px*/


/* footer ========================================== */
.footer {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 480px;
  padding: var(--sp-padding60) var(--sp-contentPadding) var(--sp-margin32);
  text-align: center;
  position: relative;
  font-size: 1rem;
  background-color: rgba(246, 235, 235, 0.30);
  margin-top: var(--sp-padding60);
}

/* .footer::before {
  content: '';
  display: inline-block;
  width: 66.6vw;
  height: 1px;
  background-color: var(--primary-pink);
  position: absolute;
  top: 0;
  left: calc(50% - 33.3vw);
} */

.footer .logo {
  width: 53.3vw;
  max-width: 240px;
  position: relative;
}

.footer__title {
  color: var(--primary-gray, #524141);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 2rem;
}

.footer address {
  color: var(--primary-gray, #524141);
  font-size: var(--sp-fontsize-12px);
  /* sp 12px*/
  margin-top: 0.5rem;
}

.footer address::before {
  content: '';
  display: inline-block;
  width: 1.14em;
  height: 1.14em;
  background-image: url(./images/mdi_address-marker-outline.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(15%);
}

.tel {
  color: var(--primary-gray, #524141);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--sp-fontsize-20px);
  /* sp 20px*/
  margin-top: 2rem;
}

.tel::before {
  content: '';
  display: inline-block;
  width: 1.14em;
  height: 1.14em;
  background-image: url(./images/mingcute_phone-call-line.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(15%);
}

.footer__text {
  color: var(--primary-gray, #524141);
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: var(--sp-fontsize-12px);
  /* sp 12px*/
  margin-top: 0.5em;
}

.sns__list {
  display: flex;
  justify-content: space-evenly;
  margin: 2rem auto 0;
  align-items: center;
}

.sns__list img {
  width: clamp(2rem, 5.3vw, 2.4rem);
}

.footer__picup {
  text-align: start;
}

.footer__picup dt {
  font-size: var(--sp-fontsize-16px);
  /*sp 16px*/
}

.footer__picup dd {
  color: var(--primary-gray, #524141);
}

.footer__picup dd:first-of-type,
.footer__picup dd:last-of-type {
  font-family: "Noto Sans JP";
  font-size: var(--sp-fontsize-20px);
  /* pc 20px*/
  font-weight: 500;
  line-height: 1.7rem;
  /* 34px */
  margin-top: 1rem;
}

.footer__picup dd:nth-of-type(2) {
  font-size: var(--sp-fontsize-20px);
  margin-top: 0.8em;
}

.copy {
  margin: 3.2em 0 64px 0;
}

.spfooterNav {
  display: none;
}

@media screen and (max-width: 767px) {
  .footer__picup {
    display: none;
  }

  .spfooterNav {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 2rem;
    max-width: none;
    padding: 4rem var(--pc-padding100);
    text-align: center;
    background-color: rgba(246, 235, 235, 0.30);
    margin-top: 64px;
  }

  .footer::before {
    display: none;
  }

  .footer__logo {
    grid-area: 1 / 1 / 2 / 2;
    align-self: center;

  }

  .footer .logo {
    width: 50%;
    max-width: none;
  }

  .footer__contents {
    padding: 0;
    text-align: start;
  }

  .footer address {
    font-size: var(--pc-fontsize-16px);
    /*pc 16px*/
  }

  .tel {
    text-align: start;
    font-size: var(--pc-fontsize-20px);
    /* pc 20px*/
  }

  .footer__text {
    text-align: start;
    margin-top: 0.5em;
  }

  .sns__list {
    gap: 11.7%;
    justify-content: start;
    margin: 2rem 0 0;
    width: 18.5vw;
  }

  .sns__list img {
    width: 1.5em;
    height: 1.5em;
    object-fit: contain;
  }

  .footer__title {
    font-size: var(--pc-fontsize-16px);
    /*pc 16px*/
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-top: 0;
  }

  .copy {
    grid-area: 1 / 1 / 2 / 2;
    align-self: end;
    margin: 0;
  }

  .footer__picup dt {
    font-size: var(--pc-fontsize-16px);
    /*pc 16px*/
  }

  .footer__picup dd:first-of-type,
  .footer__picup dd:last-of-type {
    font-family: "Noto Sans JP";
    font-size: var(--pc-fontsize-20px);
    /* pc 20px*/
  }

  .footer__picup dd:nth-of-type(2) {
    font-size: var(--pc-fontsize-14px);
    margin-top: 0.5rem;
  }

}

/*  footer */
/*  body ====================================== */
.underline {
  background: linear-gradient(transparent 70%, rgba(114, 176, 143, 0.5));
}

/* about + read more　ボタン========================= */
.section__btn {
  position: relative;
  display: flex;
  width: fit-content;
  justify-content: center;
  margin: 2rem auto 0;
  color: var(--primary-gray, #5F4A42);
  font-family: "Noto Sans JP";
  font-size: var(--sp-fontsize-14px);
  line-height: 1;
  padding-right: 1.5em;
}

.section__btn:hover {
  background-color: var(--primary-pailpink);
  padding: 0 1em;
  border-radius: 3px;
  transform: scale(1.1);
  transition: 0.3s;
}

.section__btn::before {
  position: absolute;
  display: block;
  content: '';
  width: 100%;
  height: 1px;
  background: var(--primary-pink);
  bottom: -0.2em;
}

.section__btn::after {
  position: absolute;
  display: inline-block;
  content: '';
  background-image: url(./images/arrow_read_more.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 1em;
  height: 1em;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  margin-left: 4.26vw;
  /* sp 16px*/
}

/* sp 追従ボタン ================================ */
@media screen and (max-width: 767px) {
  .spfooterNav__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    padding: 0;
    position: fixed;
    bottom: 0;
    z-index: 1111;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .spfooterNav__item {
    background-color: var(--primary-pink);
    display: grid;
    grid-row: span 2;
    grid-template-rows: subgrid;
    padding: 0.5em 1em;
    border-left: solid #fff 0.25px;
  }

  .spfooterNav__item:first-of-type {
    border-left: none;
  }

  .spfooterNav__item img {
    width: min(5vw, 2em);
    height: fit-content;
  }

  .spfooterNav__item p {
    color: #FFF;
    font-size: var(--sp-fontsize-12px);
    /* sp 12px*/
    margin-top: 0.33em;
  }
}

/* 下層　セクションmv ================================ */
.second__mv {
  padding: var(--sp-contentPadding);
  width: 100%;
  margin: 0 auto;
}

.second__mv figure {
  display: block;
  margin: 0 auto;
  width: 100%;
  aspect-ratio: 3 / 2;
  max-width: 560px;
  position: relative;

}

/* mv 円形背景 */
.second__mv figure::after {
  position: absolute;
  display: inline-block;
  content: '';
  width: 53.3333vw;
  height: 8.5333vw;
  background-image: url(./images/bg-underpage-title.svg);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: -1px;
  left: 50%;
  transform: translate(-50%, 0);
}

.second__mv figure>img {
  width: 100%;
  border-radius: 6.4vw;
}

.wrapper--underpageTitle {
  text-align: center;
  font-size: 1rem;
  margin-top: -1.5em;
  position: relative;
  z-index: 5;
}

.wrapper--underpageTitle p::first-letter {
  font-size: var(--sp-fontsize-16px);
  color: var(--green);
  font-weight: 600;
}

.second__mvTitle {
  color: var(--primary-gray, #524141);
  font-family: "Zen Kaku Gothic New";
  font-size: var(--sp-fontsize-16px);
  font-weight: 700;
}

@media screen and (max-width: 260px) {
  .second__mvTitle {
    font-size: 1rem;
    top: 8px;
  }
}

@media screen and (min-width: 767px) {
  .second__mv {
    padding: 0 var(--pc-padding100);
    width: 100%;
    margin: 0 auto;
  }

  .second__mv figure {
    display: block;
    width: 86.2068%;
    max-width: none;
  }

  /* mv 円形背景 */
  .second__mv figure::after {
    width: 22.2222vw;
    height: 3.3333vw;
  }

  .second__mv figure>img {
    border-radius: var(--pc-border-radius50);
  }

  .second__mvTitle {
    font-size: var(--pc-sectionTitle);
    top: 0.5em;
    left: 4%;
  }
}


/*下層　セクションmv */


/* 下層　セクションリード =============================== */

.second__lead h3 {
  color: var(--green);
  font-size: var(--sp-fontsize-16px);
  font-weight: 500;
  line-height: 1.68em;
  /* 27.2px */
  margin-top: var(--sp-margin32);
  text-align: center;
}

.second__leadText {
  margin-top: 2.5em;
  color: var(--primary-gray, #524141);
  font-size: var(--sp-fontsize-14px);
  letter-spacing: 0.1em;
  text-align: justify;
}

.second__leadText p {
  margin-top: 1.5em;
  font-size: var(--sp-fontsize-14px);
}

.second__lead span {
  color: var(--primary-gray, #524141);
  font-size: var(--sp-fontsize-14px);
  font-weight: 500;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
  .second__lead h3 {
    font-size: var(--pc-fontsize-20px);
    margin-top: var(--pc-padding64);
  }

  .second__lead {
    margin: 0 auto;
    width: 100%;
  }

  .second__leadText {
    padding: 0;
    margin: 2.5em auto 0;
    font-size: var(--pc-fontsize-16px);
    text-align: center;
  }
}


/* 下層　タイトルスタイル */
.second_title {
  color: var(--primary-gray, #524141);
  font-family: "Noto Sans JP";
  font-size: var(--sp-sectionTitle);
  /*32px*/
  font-weight: 700;
  padding: 0 6.4vw;
  /*sp左右余白24px*/
}

.second_title::first-letter {
  color: var(--green, #72B08F);
  font-size: 1.3333em;
  font-weight: 700;
  line-height: normal;
}

.second_titleJa {
  color: var(--green);
  font-family: "Noto Sans JP";
  font-size: var(--sp-fontsize-14px);
  line-height: 160%;
  /* 22.4px */
  padding: 0 6.4vw;
  /*sp左右余白24px*/
  margin-bottom: 2.85em;
}

@media screen and (min-width: 767px) {
  .second_title {
    color: var(--primary-gray, #524141);
    font-family: "Noto Sans JP";
    font-size: var(--pc-sectionTitle);
    /*32px*/
    font-weight: 700;
    padding: 0 6.4vw;
    /*sp左右余白24px*/
  }

  .second_title::first-letter {
    color: var(--green, #72B08F);
    /* font-size: var(--pc-hpTitle-first); */
    font-weight: 700;
    line-height: normal;
  }

  .second_titleJa {
    color: var(--green);
    font-family: "Noto Sans JP";
    font-size: var(--pc-fontsize-14px);
    line-height: 160%;
    /* 22.4px */
    padding: 0 6.4vw;
    /*sp左右余白24px*/
    margin-bottom: 2.85em;
  }
}

@media screen and (min-width: 1440px) {
  .second_title {
    margin: 0 0 0 var(--pc-padding100);
    padding: 0;
    width: clamp(680px, 35.2vw, 900px);
  }

  .second_titleJa {
    margin: 0 0 0 var(--pc-padding100);
    padding: 0;
    width: clamp(680px, 35.2vw, 900px);
  }
}


/*  送迎エリア ======================================*/
.picup {
  margin-top: 2em;
}

.picup h2 {
  font-size: var(--sp-fontsize-16px);
  font-weight: 500;
  text-align: center;
  background-color: var(--primary-pailpink);
  margin-bottom: 1em;
}

.picup ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.picup li {
  margin-bottom: 0.5em;
  font-size: var(--sp-fontsize-16px);
}

@media screen and (min-width:768px) {
  .picup {
    margin-top: 2em;
  }

  .picup h2 {
    font-size: var(--pc-fontsize-20px);
    margin-bottom: 1em;
  }
}

/* 料金表　================================= */
.price__list {
  margin-top: 4em;
}

.price__list dt {
  font-size: var(--sp-fontsize-16px);
  font-weight: 500;
  line-height: 2;
  text-align: center;
  background-color: var(--primary-pailpink);
  margin: 1em 0;
}

.price__list dd {
  font-family: "Noto Sans JP";
  font-size: var(--sp-fontsize-14px);
  line-height: 1.3;
  /* 20.8px */
  margin-top: 0.5em;
  text-align: center;
}

.price__list dd:first-of-type {
  margin-top: 1em;
}

.price__list dd span {
  font-family: "Noto Sans JP";
  font-size: var(--sp-fontsize-20px);
  font-weight: 500;
  line-height: 1.7;
}

@media screen and (min-width:768px) {
  .price__list dt {
    font-size: var(--pc-fontsize-20px);
    margin: 2em 0 1em;
  }

  .price__list dd {
    font-size: var(--sp-fontsize-16px);
  }
}


/* 下層　チェック付リスト　=====================*/
.checklist__list {
  width: 100%;
  margin: var(--sp-margin32) auto 0;
  padding: var(--sp-contentPadding);
  width: fit-content;
  background-color: var(--primary-pailpink);
  border-radius: var(--sp-border-radius24);
  position: relative;

}

.checklist__item {
  color: var(--primary-gray, #524141);
  font-size: var(--sp-fontsize-14px);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 1em;
  padding-left: 1.5em;
  position: relative;
}

.checklist__item::before {
  position: absolute;
  display: inline-block;
  content: "";
  width: 1.2em;
  height: 1.2em;
  background-image: url(./images/icon_check.svg);
  background-size: contain;
  background-repeat: no-repeat;
  box-sizing: content-box;
  background-position: center;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.checklist__item:first-of-type {
  margin-top: 0;
}


.checklist__img {
  display: none;
}

/*  pc*/
@media screen and (min-width: 768px) {
  .checklist__list {
    margin: var(--pc-padding64) auto 0;
    padding: 1.5em;
    border-radius: 1.5rem;
  }

  .checklist__item {
    font-size: var(--pc-fontsize-16px);
    letter-spacing: 0.1em;
    padding-left: 1.5em;
    margin-top: 1.5em;
  }

  .checklist__item::before {
    width: 1.4em;
    height: 1.4em;
  }
}


/* 幼稚園・ペットホテル　リード下　スライドショー  =================== */
.slick-slider {
  overflow: hidden;
  margin: 0 auto var(--sp-padding60);
}


.slider {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
}

.slider__item {
  width: 70%;
  max-width: 400px;
  margin: 3em 1em 0;
  text-align: center;
}

.slider__img {
  width: 100%;
  border-radius: 0.5em;
}


@media screen and (min-width: 768px) {
  .slick-slider {
    margin: 0 auto var(--pc-padding80);
  }

  .slider__item {
    width: 24.2%;
    max-width: none;
    margin: 4em 2em 0;
  }

  .slider__img {
    border-radius: 1.5rem;
  }

  .slider__item p {
    font-size: var(--pc-fontsize-14px);
  }
}

/* end スライドショー */

/* パンくずリスト */
.c-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  font-size: var(--sp-fontsize-12px);
  padding-left: var(--sp-contentPadding);
}

.c-breadcrumbs>li:not(:last-of-type)::after {
  content: ">";
  display: inline-block;
  margin-right: 0.5em;
  margin-left: 0.5em;
}

@media screen and (min-width:768px) {
  .c-breadcrumbs {
    font-size: var(--pc-fontsize-14px);
    margin-top: 2.5em;
    padding-left: 6.4vw;
  }

}

/* ブログ一覧　ページナビゲーション =====================================*/
.wp-pagenavi {
  display: flex;
  justify-content: flex-end;
  margin-top: 42px;
}

.wp-pagenavi span,
.wp-pagenavi a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--primary-gray);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: 0.3s ease-in;
}

.wp-pagenavi span:not(:last-child),
.wp-pagenavi a:not(:last-child) {
  margin-right: 2.622%;
}

@media screen and (max-width: 768px) {

  .wp-pagenavi span,
  .wp-pagenavi a {
    font-size: 0.875rem;
  }
}

.wp-pagenavi span:hover,
.wp-pagenavi a:hover {
  background-color: var(--green);
  color: #FFFFFF;
}

.wp-pagenavi span.current {
  background-color: var(--green);
  color: #FFFFFF;
}

.wp-pagenavi a {
  color: var(--primary-gray);
}

.wp-pagenavi a.nextpostslink,
.wp-pagenavi a.previouspostslink {
  width: auto;
  padding: 5px 1.2em;
}

/* ブログ一覧　ページナビゲーション */


/*カテゴリーマーク */
.cat-list {
  text-align: end;
}

.cat-list>li {
  font-size: var(--sp-fontsize-12px);
  display: inline-block;
  min-width: 40px;
  padding: 5px;
  margin-bottom: 0.5em;
  background-color: #F3F3F3;
  border-radius: 5px;
  text-align: center;
  line-height: 1;
}

/* ページナビゲーション */

.page-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px;
  margin-top: 6.4vw;
  border-top: 1px dashed #5F4A42;
  border-bottom: 1px dashed #5F4A42;
  font-size: var(--sp-fontsize-12px);
  font-weight: 500;
}

/* サイドバー */
.sidebar .box-white {
  padding-right: 8.376%;
  padding-left: 8.376%;
}

.sidebar .item {
  padding: 0 3.773%;
  padding-bottom: 36px;
}

.sidebar .item:not(:last-of-type) {
  border-bottom: 1px solid #5F4A42;
  margin-bottom: 42px;
}

.sidebar-list {
  font-weight: 500;
}

.sidebar-list a {
  display: inline-block;
  font-size: var(--sp-fontsize-12px);
  padding-right: 1em;
  line-height: 2.562;
}

.news-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

@media screen and (max-width: 768px) {
  .news-wrapper {
    display: block;
  }
}

.news-wrapper>.main-content>.box-white {
  padding: 26px var(--pc-padding40) 50px var(--pc-padding100);
}

.sidebar>.box-white {
  padding: 26px 2em 50px 0;
}

.news-wrapper .main-content {
  width: 72%;
}

@media screen and (max-width: 768px) {
  .news-wrapper>.main-content>.box-white {
    padding: 26px var(--sp-contentPadding) 50px;
  }

  .sidebar>.box-white {
    padding: 26px var(--sp-contentPadding) 50px;
  }

  .news-wrapper .main-content {
    width: 100%;
    margin: 0 auto;
  }
}

.news-wrapper .sidebar {
  width: 24%;
}

@media screen and (max-width: 768px) {
  .news-wrapper .sidebar {
    width: 50%;
  }
}

/* 404タイトル下　lead文 */
.privacy-wrapper {
  margin: 0 auto;

}

.privacy__contents p {
  font-size: var(--sp-fontsize-14px);
  margin: 0 auto;
}

.is-page404 {
  margin: var(--sp-padding40) 0;
  padding: 0 var(--sp-contentPadding);
}

@media screen and (min-width:768px) {
  .is-page404 {
    margin-top: var(--pc-padding64);
    padding: 0 0 0 var(--pc-padding100);
  }

}