@charset "UTF-8";
/*note: INDEXの表示は、コメントの「 index: 」でハイライト表示してください。*/
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: リセットCSS と body要素の文字（色・書体）と背景色*/
* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  font-style: normal;
  box-sizing: border-box;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: メディアクエリー*/
/* 切り替えポイントの設定 */
/* 処理 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: クリアフィックス*/
/* Class と ステークホルダー の名称設定 */
/* 処理 */
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: スクリーンリーダー*/
/* スクリーンリーダーテキスト の名称設定 */
/* 処理 */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute;
}

:root {
  --base: #009261;
}

.sp {
  display: none;
}

.pc {
  display: block;
}

@media only screen and (max-width: 768px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}
body {
  position: relative;
}

.green_txt,
.green_ttl {
  color: var(--base);
}

.maison_ttl {
  color: #d8959e;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  transition-duration: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: 0.8;
  }
}

picture {
  display: block;
  width: 100%;
}
picture img {
  width: 100%;
}

.trigger {
  box-sizing: border-box;
}

.slideTrain,
.slideUpTrain {
  opacity: 0;
}

@media print, (min-width: 1025px) {
  .l-menu {
    right: 0 !important;
  }
}
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: overlay */
#overlay {
  display: none;
}
@media only screen and (max-width: 768px) {
  #overlay.active {
    display: block;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 100;
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: main */
.bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: #fff;
  background-size: cover;
  pointer-events: none;
}

.main {
  color: #727171;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  margin-top: 80px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .main {
    margin-top: 48px;
  }
}

section {
  position: relative;
}

.container {
  margin: auto;
  max-width: 900px;
}
@media only screen and (max-width: 768px) {
  .container {
    width: 90%;
  }
}

.sec_title {
  max-width: 900px;
  margin: auto;
  width: 90%;
}
.sec_title img {
  width: 100%;
}

.sec .title {
  border: 1px dashed var(--base);
  border-width: 2px 0;
  color: var(--base);
  font-size: clamp(21px, 2.0833333333vw, 30px);
  font-weight: bold;
  line-height: 1.25;
  text-align: center;
  padding: 20px 0;
}
.sec .title span {
  display: inline-block;
  font-size: clamp(24px, 2.4305555556vw, 35px);
  padding-bottom: 0.3em;
  position: relative;
}
.sec .title span:before {
  position: absolute;
  content: "";
  top: 0;
  left: -0.5em;
  width: 2px;
  height: 90%;
  transform: rotate(-15deg);
  background: var(--base);
}
.sec .title span:after {
  position: absolute;
  content: "";
  top: 0;
  right: -0.5em;
  width: 2px;
  height: 90%;
  transform: rotate(15deg);
  background: var(--base);
}
@media only screen and (max-width: 768px) {
  .sec .title {
    font-size: clamp(14px, 4vw, 21px);
  }
  .sec .title span {
    font-size: clamp(18px, 5.6vw, 21px);
  }
}
.sec .img {
  display: block;
}
.sec .note {
  font-size: clamp(12px, 1.25vw, 18px);
  text-align: center;
  padding-left: 1em;
  text-indent: -1em;
}
@media only screen and (max-width: 768px) {
  .sec .note {
    text-align: left;
  }
}
.sec .cs_copy {
  color: #7c7c7c;
  font-size: clamp(21px, 2.9166666667vw, 42px);
  font-weight: bold;
  text-align: center;
}
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: main_visual */
.main_visual .sec_title {
  margin-bottom: -5%;
  max-width: 100%;
  width: 100%;
}
.main_visual .container {
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .main_visual .container {
    position: relative;
    z-index: 1;
  }
}
.main_visual .flex {
  display: flex;
  gap: 2rem;
  margin: 4em auto;
}
@media only screen and (max-width: 768px) {
  .main_visual .flex {
    flex-direction: column;
    gap: 1rem;
    margin: 2rem auto;
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: about */
.sec_about {
  padding: 80px 0 0;
  position: relative;
}
.sec_about .text1 {
  font-size: clamp(21px, 8vw, 30px);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
.sec_about .text1 span {
  border-bottom: 4px solid #fed63f;
  font-size: 150%;
}
.sec_about .text2 {
  font-size: clamp(18px, 7.2vw, 27px);
  line-height: 1.7;
  margin-top: 1rem;
  text-align: center;
}
.sec_about .text2 span {
  border-bottom: 4px solid #fed63f;
  font-weight: 500;
  font-size: 120%;
}
.sec_about .flex {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 50px;
}
.sec_about .flex .flex-box {
  text-align: center;
}
.sec_about .flex .flex-box p {
  line-height: 1.5;
  margin-top: 10px;
  text-align: left;
}
.sec_about .text3 {
  line-height: 1.4;
  margin-top: 50px;
  text-align: center;
}
.sec_about .text3 p {
  font-size: clamp(18px, 7.2vw, 27px);
  margin: 15px auto 25px;
}
.sec_about .text3 a {
  background-color: #aaabab;
  border-radius: 5px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  max-width: 250px;
  margin: auto;
}
.sec_about .text3 a span {
  font-size: 70%;
}
.sec_about .custom-shape {
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
}
.sec_about .custom-shape svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 100px;
}
.sec_about .custom-shape .shape-fill {
  fill: #FFFFFF;
}
.sec_about .about2 {
  background-color: #fcf7ea;
  margin-top: -100px;
  padding: 80px 0;
}
.sec_about .about2 .text6 {
  text-align: center;
}
.sec_about .about2 figure {
  margin: 30px auto 0;
  max-width: 574px;
  width: 80%;
}
.sec_about .about2 figure img {
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .sec_about {
    padding: 20px 0 0;
  }
  .sec_about .text1 {
    font-size: clamp(17px, 5.0666666667vw, 19px);
  }
  .sec_about .text2 {
    font-size: clamp(14px, 4.2666666667vw, 16px);
  }
  .sec_about .flex {
    gap: 15px;
    margin-top: 20px;
  }
  .sec_about .flex .flex-box p {
    font-size: 10px;
  }
  .sec_about .flex .flex-box:last-child {
    margin-top: -5px;
  }
  .sec_about .text3 {
    margin-top: 30px;
  }
  .sec_about .text3 p {
    font-size: clamp(14px, 4vw, 15px);
    margin: 10px auto 15px;
  }
  .sec_about .text3 a {
    padding: 5px;
  }
  .sec_about .custom-shape svg {
    height: 60px;
  }
  .sec_about .about2 {
    margin-top: -60px;
    padding: 40px 0;
  }
  .sec_about .about2 .text6 {
    max-width: 500px;
    margin: auto;
    width: 85%;
  }
  .sec_about .about2 .text6 img {
    width: 100%;
  }
  .sec_about .about2 figure {
    margin-top: 20px;
    width: 100%;
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: shop */
.sec_shop {
  background-color: #f1b71b;
  padding: 80px 0;
}
.sec_shop .container {
  background-color: #fff;
  border-radius: 30px;
  padding: 5%;
}
.sec_shop .title {
  color: #727171;
  border-top: none;
  border-bottom-color: #727171;
  padding-top: 0;
}
.sec_shop .box {
  margin-top: 30px;
}
.sec_shop .box .head {
  background-color: #f1b71b;
  border-radius: 100vw;
  color: white;
  font-size: clamp(21px, 8vw, 30px);
  text-align: center;
}
.sec_shop .box .head a {
  display: block;
}
.sec_shop .box .text {
  line-height: 1.6;
  margin-top: 20px;
}
.sec_shop .box figure {
  max-width: 570px;
  margin: 10px auto 30px;
}
.sec_shop .box figure img {
  width: 100%;
}
.sec_shop .box .button {
  background-color: #aaabab;
  border-radius: 5px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  max-width: 300px;
  margin: auto;
}
.sec_shop .box .button span {
  font-size: 70%;
}
@media only screen and (max-width: 768px) {
  .sec_shop {
    padding: 40px 0;
  }
  .sec_shop .container {
    border-radius: 15px;
  }
  .sec_shop .title {
    font-size: clamp(17px, 5.0666666667vw, 19px);
    padding-bottom: 10px;
  }
  .sec_shop .box {
    margin-top: 20px;
  }
  .sec_shop .box .head {
    font-size: clamp(17px, 5.0666666667vw, 19px);
  }
  .sec_shop .box .text {
    margin-top: 10px;
  }
  .sec_shop .box figure {
    margin: 5px auto 10px;
  }
  .sec_shop .box .button {
    padding: 5px;
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: service */
.sec_service {
  background: url(../../images/bg.jpg) no-repeat center/cover;
  padding: 100px 0 80px;
  position: relative;
}
.sec_service::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 50px;
  background: url(../../images/bf.png) repeat-x top/contain;
}
.sec_service h3 {
  color: var(--base);
  font-size: clamp(23px, 6.6666666667vw, 25px);
  line-height: 1.4;
  text-align: center;
}
.sec_service h3 span {
  font-size: 150%;
}
.sec_service .bnr {
  display: block;
  max-width: 640px;
  margin: 30px auto 50px;
}
.sec_service .title {
  margin-bottom: 30px;
}
.sec_service .title h3 {
  display: flex;
  justify-content: center;
  gap: 15px;
  font-size: 180%;
}
.sec_service .title h3 span {
  content: "";
  width: 2px;
  height: 50px;
  background-color: var(--base);
  transform: rotate(25deg);
}
.sec_service .title h3 span:nth-child(1) {
  transform: rotate(-25deg);
}
.sec_service .title h3 span::before, .sec_service .title h3 span::after {
  content: none;
}
.sec_service .button {
  background-color: var(--base);
  border-radius: 5px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  max-width: 300px;
  margin: 20px auto 0;
}
.sec_service .button span {
  font-size: 70%;
}
@media only screen and (max-width: 768px) {
  .sec_service {
    padding: 50px 0 40px;
  }
  .sec_service::before {
    height: 30px;
  }
  .sec_service h3 {
    font-size: clamp(16px, 4.5333333333vw, 17px);
  }
  .sec_service .bnr {
    margin: 10px auto 30px;
  }
  .sec_service .title {
    padding: 10px 0;
    margin-bottom: 20px;
  }
  .sec_service .title h3 {
    font-size: 150%;
    gap: 5px;
  }
  .sec_service .title h3 span {
    height: 30px;
  }
  .sec_service .title p {
    line-height: 1.5;
  }
  .sec_service .button {
    padding: 5px;
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: contact */
.sec_contact {
  padding: 80px 0;
}
.sec_contact .title {
  border-top: none;
  font-size: clamp(23px, 6.6666666667vw, 25px);
  padding-top: 0;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.sec_contact p {
  text-align: center;
}
.sec_contact a {
  background-color: var(--base);
  border-radius: 100vw;
  color: white;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 30px;
  padding: 10px;
  max-width: 250px;
  margin: 20px auto 0;
}
.sec_contact a span {
  content: "";
  width: 25px;
  height: 25px;
  background: url(../../images/arrow.png) no-repeat center/cover;
}
@media only screen and (max-width: 768px) {
  .sec_contact {
    padding: 40px 0;
  }
  .sec_contact .title {
    font-size: clamp(21px, 5.6vw, 21px);
    margin-bottom: 10px;
    padding-bottom: 5px;
  }
  .sec_contact p {
    line-height: 1.4;
    text-align: left;
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: pagetop_btn */
.pagetop_btn {
  position: relative;
}
.pagetop_btn .pagetop {
  display: block;
  padding: 20px;
  color: white;
  background: var(--base);
  border: 3px solid var(--base);
  bottom: 24px;
  right: 24px;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s;
}
.pagetop_btn .pagetop:hover {
  color: var(--base);
  background: white;
  border: 3px solid var(--base);
}
.pagetop_btn .pagetop.active {
  opacity: 1;
  visibility: visible;
}
.pagetop_btn .pagetop.absolute {
  position: absolute;
  top: -100px;
  bottom: auto;
}
.pagetop_btn .pagetop svg {
  fill: currentcolor;
}

@media only screen and (max-width: 768px) {
  .pagetop_btn .pagetop {
    right: 4%;
    padding: 0.8rem;
  }
  .pagetop_btn .pagetop.absolute {
    top: -90px;
  }
}
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: footer */
footer {
  padding: 8px 20px 10px;
  background-color: var(--base);
  color: #fff;
  font-weight: 500;
  position: relative;
}
footer .container {
  display: grid;
  grid-template: auto auto/auto 264px;
}
footer .link {
  padding-top: 0.3rem;
  font-size: 12px;
  line-height: 1.4;
  margin-right: 1rem;
}
footer .link a {
  color: white;
  text-decoration: inherit;
  text-decoration-skip-ink: auto;
  margin-right: 1rem;
}
footer .link span {
  color: white;
}
footer .banner {
  position: relative;
  display: flex;
  align-items: center;
  width: 264px;
  height: 54px;
  color: #666;
  grid-area: 1/2/3/3;
}
footer .banner img {
  position: absolute;
}
footer .banner span.t {
  position: relative;
  padding: 0.4em 1em 0;
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 0;
}
footer .copyright {
  font-size: 10px;
  margin-top: 1rem;
  line-height: 1.4;
}

@media only screen and (max-width: 768px) {
  footer {
    padding-bottom: 20px;
    text-align: center;
  }
  footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  footer .link {
    margin: 0 auto;
  }
  footer .banner {
    order: 1;
    margin-top: 8px;
  }
}/*# sourceMappingURL=style.css.map */