@charset "UTF-8";
/*CSSDocument*/
/* html body base
===============================================================*/
/*
html ----------------------------------------------------------*/
* {
  margin: 0px;
  padding: 0px;
}

body {
  color: #3d352e;
  margin: 0;
  padding: 0;
  background: #f4f0ec;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
  font-size: 100%;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

a:link, a:visited, a:hover, a:active {
  color: #000;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  padding: 0px;
  margin: 0px;
  vertical-align: bottom;
  max-width: 100%;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

a {
  transition: all 0.5s ease-out;
}
a:hover {
  opacity: 0.7;
}

/*
html ----------------------------------------------------------*/
/* body base
===============================================================*/
.l-wrap {
  padding-top: 90px;
  box-sizing: border-box;
}

.l-inner {
  max-width: 1100px;
  margin: 0 auto;
  box-sizing: content-box;
  padding: 0 30px;
}

.l-pageHeadBlock {
  padding-top: 90px;
  box-sizing: border-box;
}

.l-pageContents {
  margin-top: -1px;
}

@media screen and (max-width: 768px) {
  .l-wrap {
    padding-top: 60px;
  }
  .l-inner {
    padding: 0 20px;
  }
  .l-pageHeadBlock {
    padding-top: 60px;
  }
}
/* ヘッダー */
.p-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  transition: all 0.4s ease-out;
}
.p-header.hidden {
  transform: translate(0%, -100%);
}

.p-headerInner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  position: relative;
  padding-left: 30px;
  box-sizing: border-box;
}

.p-header__logo {
  width: 382px;
}

.p-header__menu {
  display: flex;
}

.p-headerBtnBlock {
  margin-right: 100px;
  padding-left: 40px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
.p-headerBtnBlock > li + li {
  margin-left: 10px;
}

a.p-headerCtaBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #E8E0DB;
  width: 190px;
  height: 56px;
  border-radius: 6px;
  color: #7E6655;
  font-size: 18px;
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: 0.08em;
  text-align: center;
}
a.p-headerCtaBtn .p-headerCtaBtnInner {
  position: relative;
  padding-left: 36px;
  display: block;
  box-sizing: border-box;
}
a.p-headerCtaBtn .p-headerCtaBtnInner::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
a.p-headerCtaBtn.p-headerCtaBtn--line .p-headerCtaBtnInner::before {
  background-image: url("../images/common/cta_icon_line.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 25px;
  height: 25px;
}
a.p-headerCtaBtn.p-headerCtaBtn--web .p-headerCtaBtnInner::before {
  background-image: url("../images/common/cta_icon_web.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 28px;
  height: 24px;
}
a.p-headerCtaBtn.p-headerCtaBtn--tel .p-headerCtaBtnInner {
  font-size: 20px;
}
a.p-headerCtaBtn.p-headerCtaBtn--tel .p-headerCtaBtnInner::before {
  background-image: url("../images/common/cta_icon_tel.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 28px;
  height: 24px;
}

a.p-headerCtaBtn small {
  font-size: 10px;
}
a.p-headerMypageBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #5bb498;
  color: #fff;
  font-family: "Barlow", sans-serif;
  font-optical-sizing: auto;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: left;
  height: 90px;
  width: 100px;
}

.p-headerMenuBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  height: 100px;
  width: 100px;
  background-color: #fff;
}

.p-headerMenuBtnInner {
  position: relative;
  width: 50px;
  height: 40px;
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}
.p-headerMenuBtnInner span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #707070;
}
.p-headerMenuBtnInner span:nth-of-type(1) {
  top: 0;
}
.p-headerMenuBtnInner span:nth-of-type(2) {
  top: 19px;
}
.p-headerMenuBtnInner span:nth-of-type(3) {
  bottom: 0;
}

.p-headerMenuBtn.is-opened .p-headerMenuBtnInner span:nth-of-type(1) {
  transform: translateY(19px) rotate(-45deg);
}
.p-headerMenuBtn.is-opened .p-headerMenuBtnInner span:nth-of-type(2) {
  opacity: 0;
}
.p-headerMenuBtn.is-opened .p-headerMenuBtnInner span:nth-of-type(3) {
  transform: translateY(-19px) rotate(45deg);
}

.p-headerNaviMenu {
  background-color: #f4f0ec;
  width: 100%;
  max-width: 430px;
  height: calc(100vh - 90px);
  padding: 40px 30px 50px;
  box-sizing: border-box;
  position: fixed;
  right: -430px;
  top: 90px;
  z-index: 900;
  display: block;
  overflow-y: scroll;
  transition: all 0.4s ease-out;
}
.p-headerNaviMenu.is-opened {
  right: 0;
}

.p-headerNaviMenuInner {
  width: 100%;
}

.p-headerNaviMenuLinksFrame {
  display: flex;
  justify-content: space-between;
  text-align: left;
  /* border-top: 2px solid #5DC1A2; */
  /* padding: 0px 10px 0; */
  box-sizing: border-box;
}

.p-headerNaviMenuLinksFrame__item {
  width: calc((100% - 50px) / 2);
}
.p-headerNaviMenuLinksFrame__item + .p-headerNaviMenuLinksFrame__item {
  margin-left: 50px;
}

.p-headerNaviMenuLinks > li + li {
  margin-top: 28px;
}
.p-headerNaviMenuLinks a {
  color: #5dc1a2;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.p-headerNaviMenuCtaBlock {
  margin-top: 50px;
}
.p-headerNaviMenuCtaBlock > li + li {
  margin-top: 15px;
}

a.p-headerNaviMenuCtaBtn {
  display: flex;
  align-items: center;
  min-height: 67px;
  background-color: #fff;
  border-radius: 8px;
  padding: 10px 27px 10px;
  box-sizing: border-box;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #7e6655;
  position: relative;
}
a.p-headerNaviMenuCtaBtn.p-headerNaviMenuCtaBtn--tel span {
  font-size: 20px;
}
a.p-headerNaviMenuCtaBtn::after {
  position: absolute;
  content: "";
  right: 27px;
  top: 0;
  bottom: 0;
  margin: auto;
  background-image: url("../images/common/cta_arrow.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 35px;
  height: 35px;
}
a.p-headerNaviMenuCtaBtn span {
  position: relative;
  padding-left: 45px;
  box-sizing: border-box;
}
a.p-headerNaviMenuCtaBtn span::before {
  position: absolute;
  content: "";
  left: 0;
  top: 2px;
  bottom: 0;
  margin: auto;
}
a.p-headerNaviMenuCtaBtn.p-headerNaviMenuCtaBtn--line span::before {
  background-image: url("../images/common/cta_icon_line.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 28px;
  height: 28px;
}
a.p-headerNaviMenuCtaBtn.p-headerNaviMenuCtaBtn--web span::before {
  background-image: url("../images/common/cta_icon_web.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 28px;
  height: 24px;
}
a.p-headerNaviMenuCtaBtn.p-headerNaviMenuCtaBtn--tel span::before {
  background-image: url("../images/common/cta_icon_tel.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 26px;
  height: 26px;
}

@media screen and (max-width: 1330px) {
  .p-headerBtnBlock {
    margin-right: 90px;
  }
  a.p-headerCtaBtn {
    width: 140px;
    height: 56px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1;
  }
  .p-headerCtaBtnInner {
    padding-left: 32px;
  }
  .p-headerCtaBtnInner::before {
    /* top: 2px; */
    width: 24px;
    height: 20px;
  }
  a.p-headerMypageBtn {
    line-height: 1.3;
    height: 90px;
    width: 90px;
  }
  .p-headerMenuBtn {
    height: 90px;
    width: 90px;
  }
}
@media screen and (max-width: 1050px) {
  a.p-headerCtaBtn {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .p-headerInner {
    height: 60px;
    padding-left: 14px;
  }
  .p-header__logo {
    width: 243px;
  }
  .p-header__menu {
    display: flex;
  }
  .p-headerBtnBlock {
    margin-right: 54px;
  }
  a.p-headerMypageBtn {
    font-size: 13px;
    line-height: 1.3;
    height: 60px;
    width: 60px;
  }
  .p-headerMenuBtn {
    height: 60px;
    width: 60px;
  }
  .p-headerMenuBtnInner {
    position: relative;
    width: 26px;
    height: 22px;
  }
  .p-headerMenuBtnInner span:nth-of-type(1) {
    top: 0;
  }
  .p-headerMenuBtnInner span:nth-of-type(2) {
    top: 10px;
  }
  .p-headerMenuBtnInner span:nth-of-type(3) {
    bottom: 0;
  }
  .p-headerMenuBtn.is-opened .p-headerMenuBtnInner span:nth-of-type(1) {
    transform: translateY(10px) rotate(-45deg);
  }
  .p-headerMenuBtn.is-opened .p-headerMenuBtnInner span:nth-of-type(2) {
    opacity: 0;
  }
  .p-headerMenuBtn.is-opened .p-headerMenuBtnInner span:nth-of-type(3) {
    transform: translateY(-10px) rotate(45deg);
  }
  .p-headerNaviMenu {
    max-width: 400px;
    height: calc(100vh - 60px);
    padding: 40px 20px;
    right: -400px;
    top: 60px;
  }
  .p-headerNaviMenu.is-opened {
    right: 0;
  }
  .p-headerNaviMenuLinksFrame__item {
    width: calc((100% - 50px) / 2);
  }
  .p-headerNaviMenuLinksFrame__item + .p-headerNaviMenuLinksFrame__item {
    margin-left: 50px;
  }
  .p-headerNaviMenuLinks > li + li {
    margin-top: 28px;
  }
  .p-headerNaviMenuLinks a {
    font-size: 13px;
  }
  .p-headerNaviMenuCtaBlock {
    margin-top: 50px;
  }
  .p-headerNaviMenuCtaBlock > li + li {
    margin-top: 15px;
  }
  a.p-headerNaviMenuCtaBtn {
    min-height: 67px;
    border-radius: 5px;
    padding: 10px 27px 10px;
    font-size: 16px;
  }
  a.p-headerNaviMenuCtaBtn.p-headerNaviMenuCtaBtn--tel span {
    font-size: 20px;
  }
  a.p-headerNaviMenuCtaBtn::after {
    right: 27px;
    width: 35px;
    height: 35px;
  }
  a.p-headerNaviMenuCtaBtn span {
    padding-left: 45px;
  }
  a.p-headerNaviMenuCtaBtn span::before {
    top: 2px;
  }
  a.p-headerNaviMenuCtaBtn.p-headerNaviMenuCtaBtn--line span::before {
    width: 28px;
    height: 28px;
  }
  a.p-headerNaviMenuCtaBtn.p-headerNaviMenuCtaBtn--web span::before {
    width: 28px;
    height: 24px;
  }
  a.p-headerNaviMenuCtaBtn.p-headerNaviMenuCtaBtn--tel span::before {
    width: 26px;
    height: 26px;
  }
}
.p-footer {
  background-color: #5dc1a2;
  padding: 200px 0;
  box-sizing: border-box;
  position: relative;
}
.p-footer::before {
  position: absolute;
  content: "";
  left: 0;
  top: -6.66vw;
  background-image: url("../images/common/footer_cover.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 6.66vw;
}

.p-footerInner {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1520px;
  padding: 0 30px;
  margin: 0 auto;
  box-sizing: content-box;
}

.p-footerInner__logo {
  /* width: 53%; */
  width: calc(100% - 520px);
  text-align: left;
  padding-right: 100px;
  box-sizing: border-box;
}

.p-footerInner__menu {
  width: 520px;
}
.p-footerInner__menu a {
  color: #fff;
}

.p-footerMenuFrame {
  display: flex;
  justify-content: space-between;
  text-align: left;
  /* width: calc((100% - 20px) / 2); */
}

.p-footerMenuFrame__item {
  width: calc((100% - 20px) / 2);
}

.p-footerMenuLinks {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.05em;
}
.p-footerMenuLinks > li {
  margin-bottom: 20px;
}

.p-footerInner__subMenu {
  width: 100%;
  margin: 36px auto 50px;
}

.p-footerLegalMenuLinks {
  display: flex;
  flex-wrap: wrap;
  /* justify-content: flex-end; */
  width: 100%;
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.05em;
}
.p-footerLegalMenuLinks > li + li {
  margin-left: 30px;
}
.p-footerLegalMenuLinks > li a {
  color: #fff;
}

.p-footer__copyright {
  position: absolute;
  left: 30px;
  bottom: 0;
  /* margin-top: 160px; */
  color: #fff;
  font-family: "Barlow", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  transform: translate(0%, 100%);
}

@media screen and (max-width: 1260px) {
  .p-footerInner__logo {
    width: calc(100% - min(36.19vw, 456px) - min(2.85vw, 36px));
    padding-right: 50px;
  }
  .p-footerInner__menu {
    width: calc(min(36.19vw, 456px) + min(2.85vw, 36px));
  }
  .p-footerMenuLinks {
    font-size: min(1.58vw, 20px);
  }
  .p-footer__copyright {
    left: 30px;
    font-size: min(1.11vw, 14px);
  }
}
@media screen and (max-width: 768px) {
  .p-footer {
    background-color: #5dc1a2;
    padding: 90px 0 35px;
    box-sizing: border-box;
  }
  .p-footerInner {
    flex-direction: column;
    padding: 0 20px;
  }
  .p-footerInner__logo {
    width: 100%;
    padding-right: 0;
    margin-bottom: 60px;
  }
  .p-footerLogoLinkAnc {
    display: block;
    width: 95%;
    margin: 0 auto;
  }
  .p-footerInner__menu {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 0 auto;
  }
  .p-footerInner__menu a {
    color: #fff;
  }
  .p-footerMenuFrame {
    width: 100%;
  }
  .p-footerMenuFrame__item {
    width: calc((100% - 36px) / 2);
  }
  .p-footerMenuLinks {
    font-size: 13px;
  }
  .p-footerMenuLinks > li {
    margin-bottom: 20px;
  }
  .p-footerInner__subMenu {
    margin: 36px auto 0;
  }
  .p-footerLegalMenuLinks {
    font-size: 11px;
    justify-content: space-around;
    justify-content: center;
  }
  .p-footerLegalMenuLinks > li {
    margin-bottom: 10px;
  }
  .p-footerLegalMenuLinks > li + li {
    margin-left: 20px;
  }
  .p-footer__copyright {
    position: relative;
    margin-top: 50px;
    font-size: 10px;
    left: auto;
    bottom: auto;
  }
}/*# sourceMappingURL=main_layout.css.map */