@charset "UTF-8";


/*
基本
---------------------------------*/
body {
  margin: 0;
  background-color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  color: #2d2d2d;
}

img,
iframe {
  width: 100%;
  height: auto;
}

p {
  font-size: 15px;
  line-height: 1.7;
  color: #2d2d2d;
}

.text-bold {
  font-weight: bold;
}


/*
ヘッダー
---------------------------------*/

.header__container {
  margin: 2% 3%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

h1 {
  width: 80%;
  max-width: 330px;
}

.nav__pc-wrap {
  display: none;
}

/*
ハンバーガーメニュー
---------------------------------*/
.burger-btn {
  display: block;
  height: 43px;
  position: relative;
  width: 43px;
  z-index: 3;
  background: #fff;
  border-radius: 13px 0px 13px 0px;
  border: solid 2px #a39d88;
  filter: drop-shadow(2px 2px 0px #a39d88);
}

.bar {
  background-color: #a39d88;
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 21px;
}

.bar-top {
  top: 9px;
}

.bar-mid {
  top: 40%;
  transform: translate(-50%, -50%);
}

.bar-bottom {
  bottom: 16px;
}

.burger-btn.close .bar-top {
  transform: translate(-50%, 5px) rotate(45deg);
  transition: transform .3s;
  background-color: #a39d88;
}

.burger-btn.close .bar-mid {
  opacity: 0;
  transition: opacity .3s;
  background-color: #a39d88;
}

.burger-btn.close .bar-bottom {
  transform: translate(-50%, -7px) rotate(-45deg);
  transition: transform .3s;
  background-color: #a39d88;
}

.burger-btn::after {
  content: "MENU";
  position: absolute;
  left: 20%;
  font-size: 9px;
  font-weight: 500;
  color: #a39d88;
  bottom: 4px;
}

.burger-btn.close::after {
  content: "CLOSE";
  color: #a39d88;
  left: 15%;
}

.noscroll {
  overflow: hidden;
}

.nav__sp-wrap {
  visibility: hidden;
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100vw;
  opacity: 0;
  transition: opacity .3s, visibility .3s;
  z-index: 2;
}


.nav__sp {
  background-color: #7f7773;
  height: 100%;
  width: 100%;
  z-index: 2;
}


.nav__sp__list {
  display: block;
  left: 50%;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);

}

.nav__sp__item a {
  display: block;
  margin-bottom: 40px;
  margin-right: 0;
  font-size: 18px;
  color: #fff;
  border: solid 1px #fff;
  padding: 10px;
  width: 250px;
  filter: drop-shadow(2px 2px 3px #4d4d4d);
  border-radius: 40px;
}


.nav__pc__item {
  margin-bottom: 10px;
}

/* メニューオープン時 */
.nav__sp-wrap.fade {
  opacity: 0.95;
  visibility: visible;

}

.nav__sp-wrap.close {
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s linear;

}

/*
トップページ
---------------------------------------*/

/*
メイン
---------------------------------*/

.top-mv {
  margin-bottom: 9%;
}

/* 事業内容 */
.puroject__container {
  background-image: url(../images/house_sp.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.project__btn-wrap {
  padding: 59% 0 12% 25%;
  display: grid;
  gap: 9px;
  grid-template-columns: 32% 32%;
}

.project__btn-wrap img {
  filter: drop-shadow(2px 4px 2px #aeaba6);
  cursor: pointer;
}

.project__btn-wrap img:hover {
  opacity: 0.7;
  transition: 0.2s;
}

/* けやきの杜事業所について */
.about {
  background: #FAEFC8;
  padding: 13% 6%;
}

.section__img {
  width: 90%;
  max-width: 400px;
  margin: 0 auto 10%;
  filter: drop-shadow(10px 7px 0px #fff);
}

.thought__img {
  filter: drop-shadow(10px 7px 0px #e7cc73);
}

.section__heading {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 22px;
  color: #7B663E;
  font-weight: 500;
  padding-bottom: 5px;
  position: relative;
  width: 85%;
  max-width: 370px;
  border-bottom: 3px solid transparent;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.section__heading::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 70px;
  height: inherit;
  border-bottom: 3px solid #fbd655;
}


.section__heading::after {
  content: '';
  position: absolute;
  left: 70px;
  bottom: -3px;
  width: 0%;
  height: 3px;
  background: #CCD1CF;
  z-index: -1;
  transition: all 2.0s;
}

.section__heading.isActive::after {
  width: 80%;
}

/* 私たちの想い */
.thought {
  background: #faf9f5;
  padding: 13% 6%;
  display: grid;
  gap: 30px;
}


.text-b {
  font-weight: 600;
}

.thought__sub-heading {
  font-size: 17px;
  font-weight: 600;
  position: relative;
  z-index: 1;
  margin-left: 10px;
  border-bottom: 2px solid #CCD1CF;
  margin-bottom: 15px;
  width: 90%;
  max-width: 500px;
}


.thought__sub-heading:after {
  content: "";
  position: absolute;
  background: #ffe89e;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  top: 58%;
  left: -12px;
  transform: translateY(-50%);
  z-index: -1;
}

.thought__sub-heading span {
  font-size: 27px;
  color: #dba538;
  display: inline-block;
  margin: 0 3px 0 1px;
}

/* ボタン */
.btn-link {
  background: #faf9f5;
  display: grid;
  gap: 25px;
  padding-bottom: 13%;
}

.btn {
  font-size: 18px;
  color: #fff;
  padding: 17px;
  width: 80%;
  max-width: 370px;
  border-radius: 50px;
  text-align: center;
  display: block;
  margin: auto;
  position: relative;
  cursor: pointer;
  transition-duration: 0.2s;
}

.btn__green {
  background: #42a25e;
  border: solid 2px #42a25e;
  filter: drop-shadow(0 5px 0 #327a47);
}

.btn__orange {
  background: #dba538;
  border: solid 2px #dba538;
  filter: drop-shadow(0 5px 0 rgb(164, 121, 36));
}

.btn::after {
  position: absolute;
  top: 50%;
  right: 1em;
  width: 0.5em;
  height: 0.5em;
  transform: translateY(-50%) rotate(45deg);
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  content: "";
}

/* YouTube */
.youtube {
  background-color: #faf9f5;
  padding: 0 6% 7%;
}

.youtube__bnr {
  width: 100%;
  max-width: 400px;
  margin: auto;
}


/*
フッター
--------------------------------- */
footer {
  background: #ede8e0;
}

.footer-container {
  padding: 13% 6%;
  display: grid;
  gap: 10px;
}

.information {
  max-width: 500px;
}

.information__logo {
  width: 100%;
  margin-bottom: 30px;
}

.information__tel-wrap {
  display: flex;
  margin-bottom: 20px;
  align-items: center;
}

.information__tel-wrap img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.information__icon-tel {
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
  color: #2d2d2d;
}

.tel:hover {
  color: #727272;
}

.information__Email-wrap {
  display: flex;
}

.information__icon-Email {
  width: 18px;
  margin-right: 8px;
  padding-top: 5px;
}

.information>div {
  margin-left: 5px;
}

.Google-map iframe {
  height: 250px;
  margin-bottom: 5px;
}


.Copyright {
  background: #807867;
  height: 70px;
  color: #fff;
  font-size: 12px;
  text-align: center;
  padding: 25px;
}

/*
お問合せページ
---------------------------------------*/
.contact-mv {
  position: relative;
}

.text-h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 22px;
}

.contact__way-tel {
  display: none;
}

.bg-yellow {
  background: #faf9f5;
}

.content-container {
  display: grid;
}

.content-wrap {
  display: grid;
  gap: 30px;
  max-width: 780px;
  margin: auto;
  padding: 50px 6%;
}

.contact__way {
  display: grid;
  gap: 30px;
  margin: auto;
}

.contact__way-wrap {
  display: flex;
  background: #dba538;
  padding-left: 20px;
  width: 280px;
  height: 60px;
  border-radius: 30px;
  margin: auto;
  justify-content: center;
  align-items: center;
  position: relative;
}

.share-BASE__logo {
  width: 90px;
  height: auto;
  display: block;
  margin: auto;
}

.contact__way-wrap p {
  color: #fff;
  font-size: 16px;
}

.contact__copy {
  display: flex;
  margin-left: 15px;
  justify-content: center;
}

.contact__copy-text {
  color: #dba538;
  padding: 5px;
  border-radius: 5px;
  border: solid 2px #dba538;
  margin-left: 10px;
  font-size: 15px;
  background-color: transparent;
}


.contact__success-msg {
  display: none;
  position: fixed;
  width: 300px;
  height: 40px;
  line-height: 40px;
  background-color: #29aba4;
  color: #fff;
  top: 100px;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  border-radius: 5px;
}

.triangle {
  background: #dba538;
  height: calc(tan(60deg) * 16px / 2);
  width: 16px;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  margin: -2px auto 5px;
}

.contact__btn {
  display: block;
  margin: auto;
  position: relative;
  width: 280px;
  border-radius: 50px;
  margin: auto;
  cursor: pointer;
  transition-duration: 0.2s;
  height: 50px;
  align-items: center;
  display: flex;
  justify-content: center;
  color: #fff;
  padding-left: 10px;
}

.contact__btn img {
  position: absolute;
  top: 50%;
  left: 13%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: auto;
  margin-right: 6%;
}

.contact__way-wrap img {
  position: absolute;
  top: 50%;
  left: 13%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: auto;
  margin-right: 6%;
}

.bg-white {
  background: #fff;
  position: relative;
}


.base_out-line img {
  width: 20%;
  display: block;
  margin: 0 auto 20px;
}

.content-container br {
  display: none;
}

.text-link {
  color: #3CAFCB;
  text-decoration: underline;
  text-align: center;
}

.text-link {
  color: #3CAFCB;
}

.advance-rsv__content li {
  display: flex;
  align-items: center;
}

.advance-rsv__content li p {
  margin-right: 5px;
}

.advance-rsv__content li img {
  width: 1.1rem;
  height: 1.1rem;
  margin-left: 7px;
}

.BASE-circle {
  display: flex;
  background: #BDE9E9;
  border: solid 2px #BDE9E9;
  padding: 10px;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(3px 5px 0 #7fa1a1);
  margin-bottom: 25px;
}

.BASE-circle img {
  width: 1.1rem;
  height: 1.1rem;
  margin-left: 7px;
}

.text-em {
  position: relative;
}

.text-em:before,
.text-em:after {
  position: relative;
  display: inline-block;
  content: "";
  background: #2d2d2d;
  width: 1.5px;
  height: 1.5em;
  margin: 0 1em;
  margin-top: -.2em;
  vertical-align: middle;
}

.text-em:before {
  transform: rotate(-35deg);
}

.text-em:after {
  transform: rotate(35deg);
}

.BASE-head__title .text-em {
  margin-bottom: 8px;
}

.BASE-head__title p {
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.text-red {
  color: red;
}

.text-marker {
  margin-bottom: 20px;
}

.text-marker span {
  background: linear-gradient(transparent 60%, #ff6 60%);
}

.base_content {
  text-align: center;
}

.MOD-down {
  display: block;
  color: #333;
  line-height: 1;
  width: 1em;
  height: 1em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
  margin: auto;
}

.advance-rsv {
  display: grid;
  gap: 5px;
  max-width: 600px;
  margin: auto;
}

.advance-rsv__wrap {
  border-radius: 25px 25px 0 0;
  background: #fff;
  text-align: center;
  border: solid 2px #42a25e;
}

.advance-rsv__title {
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
  background: #42a25e;
  padding: 10px;
  border-radius: 22px 22px 0 0;
}

.margin-M {
  padding-bottom: 20px;
}

.advance-rsv__period p {
  font-size: 1.1rem;
  font-weight: bold;
}

.advance-rsv__content {
  padding: 7% 3%;
}

.advance-rsv__guide {
  text-align: left;
}

.MOD-plus {
  font-weight: bold;
  font-size: 50px;
  text-align: center;
}

.new-user__wrap {
  border-radius: 25px 25px 0 0;
  background: #fff;
  border: solid 2px #dba538;
  margin-bottom: 25px;
}

.new-user__title {
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
  background: #dba538;
  padding: 10px 15px;
  border-radius: 22px 22px 0 0;
  text-align: center;
}

.new-user__title br {
  display: block;
}

.new-user__title span {
  display: block;
  font-size: 1rem;
}

.advance-rsv .text-em {
  text-align: center;
}

/* ------------------ */

/* 微調整 */

/* ------------------ */
@media screen and (min-width:500px) {
  .project__btn-wrap {
    padding: 59% 0 12% 25%;
    display: grid;
    gap: 12px;
    grid-template-columns: 32% 32%;
  }
}

/* ------------------ */

/* タブレット以上 */

/* ------------------ */
@media screen and (min-width:768px) {

  /*基本  */
  h1 {
    width: 45%;
    max-width: 450px;
  }

  p {
    font-size: 16px;
  }

  /*ヘッダー  */
  .header__container {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin: 2% 4%;
  }

  .nav {
    display: none;
  }

  /* メニューバー */
  .nav__pc-wrap {
    display: block;
  }

  .nav__pc__list {
    display: grid;
    grid-template-columns: auto auto auto auto;
    gap: 35px;
    text-align: center;
  }

  .nav__pc__list li {
    position: relative;
  }

  .nav__pc__list li a::after,
  .nav__pc__list li a::before {
    display: block;
    content: "";
    position: absolute;
  }

  .nav__pc__list li a::after {
    bottom: -80%;
    left: 44%;
    width: 7px;
    height: 7px;
    background-color: #f8d44f;
    border-radius: 100%;
    /*中央を基点にアニメーション*/
    transform-origin: center top;
    /*アニメーションの速度設定*/
    transition: all 0.3s ease;
  }


  .nav__pc__list li a:hover {
    color: #88827b;
  }


  .nav__pc__list li a:hover::after {
    background-color: #f8d44f;
    width: 100%;
    left: 0;
    border-radius: 7px;
    height: 3px;
  }

  .nav__pc__list li a {
    text-decoration: none;
    color: #5b4823;
  }

  /*-----　トップページ：---------------------------------*/

  /*
メイン
--------------------------------- */
  .top-mv {
    margin-bottom: 7%;
  }

  .puroject__container {
    background-image: url(../images/house_pc.png);
    background-size: 85%;
    background-repeat: no-repeat;
    background-position: 50% 0;
    max-width: 1100px;
    margin: auto;
  }

  .project__btn-wrap {
    padding: 24.5% 0px 11% 37%;
    display: grid;
    gap: 10px;
    grid-template-columns: 21% 21%;
  }

  .puroject__back {
    width: 100%;
    height: auto;
    background: linear-gradient(180deg, #fff 0%, #fff 81%, #FAEFC8 83%, #FAEFC8 100%);
  }

  /* けやきの杜事業所について */

  .section__heading {
    font-size: 24px;
    width: 92%;
  }

  .about {
    padding: 2% 10% 6%;
  }

  .about__wrap {
    display: grid;
    gap: 30px;
    grid-template-columns: 45% 52%;
    max-width: 870px;
    margin: auto;
  }

  .section__img {
    width: 100%;
    max-width: 350px;
    margin: auto;
  }


  /* 私たちの想い */
  .thought {
    padding: 6% 10%;
    gap: 20px;
  }

  .thought__wrap {
    display: grid;
    gap: 30px;
    grid-template-columns: 52% 45%;
    max-width: 870px;
    margin: auto;
  }

  .thought__img {
    order: 2;
  }

  .about_about__text-wrap {
    order: 1;
  }

  .thought__sub {
    max-width: 870px;
    margin: auto;
  }

  .thought__sub p {
    text-align: left;
    display: inline-block;
  }

  /* ボタン */
  .btn-link {
    display: grid;
    gap: 50px;
    grid-template-columns: auto auto;
    place-content: center;
    padding-bottom: 6%;
  }

  .btn {
    width: 280px;
    margin: auto;
    font-size: 19px;
    padding: 15px;
  }

  .btn__green:hover {
    border: solid 2px #327a47;
    background: #fff;
    color: #327a47;
  }

  .btn__orange:hover {
    border: solid 2px rgb(164, 121, 36);
    background: #fff;
    color: rgb(164, 121, 36);
  }

  /* フッター */

  .footer-container {
    padding: 8% 8% 7%;
    display: grid;
    gap: 7%;
    grid-template-columns: 1fr 1fr;
    max-width: 1100px;
    margin: auto;
  }

  .information__icon-Email {
    padding-top: 8px;
  }

  .information__logo {
    margin-bottom: 50px;
  }

  .Google-map__text p {
    font-size: 15px;
  }

  /*
お問合せページ
---------------------------------------*/
  .text-h2 {
    font-size: 25px;
  }

  .contact__way-tel {
    display: block;
  }

  .contact__btn-tel {
    display: none;
  }

  .contact__copy-text:hover {
    background-color: #dba538;
    color: #fff;
    transition: 0.2s;
  }

  .advance-rsv__title {
    font-size: 1.2rem;
  }

  .content-wrap,
  .bg-white {
    padding: 60px 6%;
  }

  .advance-rsv__content {
    padding: 5% 3%;
  }

  .contact {
    max-width: 1000px;
    gap: 45px;
  }

  .advance-rsv__period {
    display: flex;
    justify-content: center;
  }

  .advance-rsv__period p {
    font-size: 1.1rem;
  }

  .contact__btn-tel {
    pointer-events: none;
  }

  .contact__btn-tel a {
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .contact__btn.btn__green a {
    font-size: 17px;
  }

  .bg-white {
    background: #faf9f5;
  }

  .contact__btn:hover img:nth-child(2) {
    opacity: 0;
    transition: opacity 0.2s;
  }

  .BASE {
    background: #fff;
    border: solid 3px #3d3d3d;
    border-radius: 30px;
    position: relative;
    padding: 70px 6%;
    width: 90%;

  }

  .share-BASE__logo {
    position: absolute;
    top: -70px;
    right: 0;
    left: 0;
    background: linear-gradient(#faf9f5 54%, #fff 42%);
    padding: 15px;
    width: 130px;
  }

  .BASE-circle:hover {
    cursor: pointer;
    background: #fff;
    border: solid 2px #698787;
    transition: 0.2s;
  }

  .new-user__title {
    font-size: 1.2rem;
  }

}

/* ------------------ */
/* PC */
/* ------------------ */
@media screen and (min-width:1280px) {

  /*-----　トップページ　---------------------------------*/

  /* 基本 */
  .top_h2_head h2 {
    font-size: 24px;
  }

  /* ヘッダー */
  .header__container {
    margin: 2% 6%;
  }

  /* メニュー */
  .nav__pc__list {
    gap: 45px;
  }

  /* けやきの杜事業所について */
  .about__wrap {
    gap: 50px;
  }

  /* ボタン */
  .btn-link {
    gap: 70px;
  }

  .btn {
    width: 330px;
  }

  .information__icon-tel {
    pointer-events: none;
    cursor: default;
  }

  /*
お問合せページ
---------------------------------------*/

  .content-wrap,
  .bg-white {
    padding: 70px 6%;
  }

  /* .content-wrap {
    max-width: 1000px;
  } */

}