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

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}
:where(body) {
  block-size: 100%;
  block-size: 100dvb;
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(button) {
  border-style: solid;
}

:where(a) {
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(hr) {
  border: none;
  -webkit-border-before: 1px solid;
          border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(:focus-visible) {
  outline: 2px solid var(--focus-color, Highlight);
  outline-offset: 2px;
}

:where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@font-face {
  font-family: "honoka";
  src: url("../font/Honoka_Shin_Mincho_L_sub.woff2");
}
html {
  font-size: 62.5%;
}

body {
  color: #361502;
  background-color: #FCFAF6;
  font-family: honoka;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.205em;
  position: relative;
}

a {
  text-decoration: none;
  transition: 0.3s all ease;
  color: #361502;
  display: inline-block;
}
a:hover {
  opacity: 0.7;
}

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

.xl-up {
  display: block !important;
}
@media screen and (max-width: 1199px) {
  .xl-up {
    display: none !important;
  }
}

.xl-down {
  display: none !important;
}
@media screen and (max-width: 1199px) {
  .xl-down {
    display: block !important;
  }
}

.lg-up {
  display: block !important;
}
@media screen and (max-width: 999px) {
  .lg-up {
    display: none !important;
  }
}

.lg-down {
  display: none !important;
}
@media screen and (max-width: 999px) {
  .lg-down {
    display: block !important;
  }
}

.md-up {
  display: block !important;
}
@media screen and (max-width: 767px) {
  .md-up {
    display: none !important;
  }
}

.md-down {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .md-down {
    display: block !important;
  }
}

.sm-up {
  display: block !important;
}
@media screen and (max-width: 499px) {
  .sm-up {
    display: none !important;
  }
}

.sm-down {
  display: none !important;
}
@media screen and (max-width: 499px) {
  .sm-down {
    display: block !important;
  }
}

.xsm-up {
  display: block !important;
}
@media only screen and (max-width: 375px) {
  .xsm-up {
    display: none !important;
  }
}

.xsm-down {
  display: none !important;
}
@media only screen and (max-width: 375px) {
  .xsm-down {
    display: block !important;
  }
}

.l-header {
  width: 100%;
  padding: 0 58px;
  background-color: rgba(247, 239, 227, 0.51);
  z-index: 3;
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 1399px) {
  .l-header {
    padding: 0 40px;
  }
}
@media screen and (max-width: 1199px) {
  .l-header {
    padding: 0 20px;
  }
}
.l-header.is-active {
  position: fixed;
  -webkit-animation: DownAnime 0.3s forwards;
          animation: DownAnime 0.3s forwards;
}
.l-header.is-active .l-header__flex {
  height: 100px;
}
@media screen and (max-width: 767px) {
  .l-header.is-active .l-header__flex {
    height: 80px;
  }
}
.l-header.is-active .l-header__logo {
  width: 100px;
}
@media screen and (max-width: 767px) {
  .l-header.is-active .l-header__logo {
    width: 86px;
  }
}
.l-header.is-active .l-header__link02 {
  width: 40px;
}
.l-header.is-active .l-header__item02--contact .l-header__link02 {
  width: 197px;
  padding: 14px 0;
  border-radius: 26px;
}
@media screen and (max-width: 1199px) {
  .l-header.is-active .l-header__item02--contact .l-header__link02 {
    width: 147px;
    padding: 12px 0;
    font-size: 1.3rem;
    border-radius: 24px;
  }
}
.l-header__flex {
  height: 175px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 20px;
}
@media only screen and (max-width: 1399px) {
  .l-header__flex {
    height: 150px;
  }
}
@media screen and (max-width: 1199px) {
  .l-header__flex {
    height: 120px;
  }
}
@media screen and (max-width: 999px) {
  .l-header__flex {
    align-items: center;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .l-header__flex {
    height: 80px;
  }
}
.l-header__logo {
  width: 158px;
  height: auto;
}
@media screen and (max-width: 1199px) {
  .l-header__logo {
    width: 118px;
  }
}
@media screen and (max-width: 999px) {
  .l-header__logo {
    position: relative;
    z-index: 3;
  }
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    width: 86px;
  }
}
.l-header__list {
  display: flex;
  margin-right: 8.3333%;
}
@media only screen and (max-width: 1399px) {
  .l-header__list {
    margin-right: 0;
  }
}
@media screen and (max-width: 999px) {
  .l-header__list {
    display: none;
  }
}
.l-header__item {
  margin-right: 22px;
}
@media screen and (max-width: 1199px) {
  .l-header__item {
    margin-right: 12px;
  }
}
.l-header__item:last-child {
  margin-right: 0;
}
.l-header__link {
  font-size: 1.4rem;
  letter-spacing: 0.205em;
}
@media screen and (max-width: 1199px) {
  .l-header__link {
    font-size: 1.3rem;
  }
}
.l-header__list02 {
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 999px) {
  .l-header__list02 {
    display: none;
  }
}
.l-header__item02 {
  margin-left: 15px;
}
@media screen and (max-width: 1199px) {
  .l-header__item02 {
    margin-left: 12px;
  }
}
.l-header__item02:first-child {
  margin-left: 0;
}
.l-header__item02--contact {
  margin-left: 17px;
}
@media screen and (max-width: 1199px) {
  .l-header__item02--contact {
    margin-left: 12px;
  }
}
.l-header__item02--contact .l-header__link02 {
  width: 217px;
  padding: 17px 0;
  font-size: 1.4rem;
  letter-spacing: 0.205em;
  border: 3px solid #361502;
  border-radius: 30px;
  text-align: center;
}
@media only screen and (max-width: 1399px) {
  .l-header__item02--contact .l-header__link02 {
    width: 197px;
    padding: 14px 0;
    border-radius: 26px;
  }
}
@media screen and (max-width: 1199px) {
  .l-header__item02--contact .l-header__link02 {
    width: 147px;
    padding: 12px 0;
    font-size: 1.3rem;
    border-radius: 24px;
  }
}
.l-header__link02 {
  width: 60px;
  height: auto;
  display: block;
}
@media only screen and (max-width: 1399px) {
  .l-header__link02 {
    width: 40px;
  }
}
@media screen and (max-width: 999px) {
  .l-header__hamburger {
    cursor: pointer;
    width: 40px;
    height: 29px;
    position: relative;
    z-index: 3;
  }
}
@media screen and (max-width: 999px) and (max-width: 767px) {
  .l-header__hamburger {
    width: 30px;
    height: 23px;
  }
}
.l-header__hamburger.is-active .l-header__hamburger-border:nth-of-type(1) {
  top: 13px;
  left: 0;
  transform: rotate(-45deg);
}
.l-header__hamburger.is-active .l-header__hamburger-border:nth-of-type(2) {
  opacity: 0;
}
.l-header__hamburger.is-active .l-header__hamburger-border:nth-of-type(3) {
  top: 13px;
  left: 0;
  transform: rotate(45deg);
}
.l-header__hamburger-border {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  transition: all ease 0.3s;
  height: 3px;
  border-radius: 2px;
  background-color: #361502;
  width: 100%;
}
.l-header__hamburger-border:nth-of-type(1) {
  position: absolute;
  top: 0;
  left: 0;
}
.l-header__hamburger-border:nth-of-type(2) {
  position: absolute;
  top: 13px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .l-header__hamburger-border:nth-of-type(2) {
    top: 10px;
  }
}
.l-header__hamburger-border:nth-of-type(3) {
  position: absolute;
  top: 26px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .l-header__hamburger-border:nth-of-type(3) {
    top: 20px;
  }
}
@media screen and (max-width: 999px) {
  .l-header__gnav {
    position: absolute;
    top: -100vh;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 80vh;
    background-color: #FCFAF6;
    transition: all ease 0.3s;
  }
  .l-header__gnav.is-active {
    top: 0;
  }
}
@media screen and (max-width: 767px) {
  .l-header__gnav {
    height: 90vh;
  }
}
.l-header__gnav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
}
.l-header__gnav-item + .l-header__gnav-item {
  margin-top: 30px;
}
.l-header__gnav-item--icon .l-header__gnav-link {
  width: 40px;
  height: auto;
}
.l-header__gnav-item--icon .l-header__gnav-link:first-child {
  margin-right: 10px;
}
.l-header__gnav-item--contact .l-header__gnav-link {
  width: 217px;
  padding: 17px 0;
  letter-spacing: 0.205em;
  border: 3px solid #361502;
  border-radius: 30px;
  text-align: center;
}
.l-header__gnav-link {
  font-size: 1.6rem;
}

@-webkit-keyframes DownAnime {
  0% {
    opacity: 0;
    transform: translateY(-170px);
    background-color: rgba(247, 239, 227, 0.51);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    background-color: #FCFAF6;
  }
}

@keyframes DownAnime {
  0% {
    opacity: 0;
    transform: translateY(-170px);
    background-color: rgba(247, 239, 227, 0.51);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    background-color: #FCFAF6;
  }
}
.l-footer {
  padding: 36px 58px 29px;
  background-color: #F5F1ED;
}
.l-footer__flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media only screen and (max-width: 1299px) {
  .l-footer__flex {
    flex-direction: column;
    align-items: center;
  }
}
.l-footer__logo {
  width: 158px;
  height: auto;
}
@media only screen and (max-width: 1299px) {
  .l-footer__logo {
    margin-bottom: 40px;
  }
}
.l-footer__list {
  display: flex;
  flex-wrap: wrap;
  max-width: 900px;
}
@media only screen and (max-width: 1299px) {
  .l-footer__list {
    margin: 0 0 40px 0;
    justify-content: center;
  }
}
.l-footer__item {
  margin-right: 22px;
}
.l-footer__item:last-child {
  margin-right: 0;
}
.l-footer__item--nolink {
  font-size: 1.4rem;
  letter-spacing: 0.205em;
  margin-top: 20px;
}
.l-footer__link {
  font-size: 1.4rem;
  letter-spacing: 0.205em;
}
.l-footer__list02 {
  display: flex;
}
@media only screen and (max-width: 375px) {
  .l-footer__list02 {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.l-footer__item02 {
  margin-left: 15px;
}
.l-footer__item02:first-child {
  margin-left: 0;
}
.l-footer__item02--contact {
  margin-left: 17px;
}
@media only screen and (max-width: 375px) {
  .l-footer__item02--contact {
    margin: 20px 0 0 0;
  }
}
.l-footer__item02--contact .l-footer__link02 {
  width: 217px;
  padding: 17px 0;
  font-size: 14px;
  border: 3px solid #361502;
  border-radius: 30px;
  text-align: center;
}
.l-footer__link02 {
  width: 60px;
  height: auto;
  display: block;
}
.l-footer__textbox {
  font-size: 1.4rem;
  letter-spacing: 0.205em;
  margin-top: 28px;
}
@media only screen and (max-width: 1299px) {
  .l-footer__textbox {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.l-footer__nowrap {
  white-space: nowrap;
}
.l-footer__copyright {
  margin-top: 90px;
  font-size: 1rem;
  letter-spacing: 0.205em;
  text-align: center;
}
@media only screen and (max-width: 1299px) {
  .l-footer__copyright {
    margin-top: 50px;
  }
}

.c-about__item + .c-about__item {
  margin-top: 70px;
}
.c-about__item-title {
  font-size: 3rem;
  font-family: "Noto Serif JP", serif;
  border-bottom: 1px solid #361502;
  padding-bottom: 10px;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .c-about__item-title {
    font-size: 2.4rem;
    margin-bottom: 40px;
  }
}
.c-about__item-text {
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.205em;
}
.c-about__item-text + .c-about__item-text {
  margin-top: 28px;
}

.c-access {
  padding: 150px 0 70px;
}
@media screen and (max-width: 767px) {
  .c-access {
    padding: 100px 0 70px;
  }
}
.c-access__heading {
  width: 175px;
  height: auto;
  margin: 0 auto 130px;
}
@media screen and (max-width: 767px) {
  .c-access__heading {
    margin: 0 auto 60px;
  }
}
.c-access__flex {
  display: flex;
}
@media screen and (max-width: 767px) {
  .c-access__flex {
    flex-direction: column;
    align-items: center;
  }
}
.c-access__text {
  letter-spacing: 0.1em;
  white-space: nowrap;
  text-align: center;
  line-height: 1.6875;
}
.c-access__text:first-child {
  margin-top: 26px;
}
@media screen and (max-width: 999px) {
  .c-access__text:first-child {
    margin-top: 0;
  }
}
.c-access__text + .c-access__text {
  margin-top: 27px;
}
@media screen and (max-width: 999px) {
  .c-access__text + .c-access__text {
    margin-top: 17px;
  }
}
.c-access__text + .c-access__text--mt {
  margin-top: 81px;
}
@media screen and (max-width: 999px) {
  .c-access__text + .c-access__text--mt {
    margin-top: 61px;
  }
}
@media screen and (max-width: 499px) {
  .c-access__text + .c-access__text--mt {
    margin-top: 40px;
  }
}
.c-access__googlemap {
  max-width: 584px;
  width: 100%;
  height: auto;
  margin-left: 116px;
}
@media screen and (max-width: 999px) {
  .c-access__googlemap {
    margin-left: 30px;
  }
}
@media screen and (max-width: 767px) {
  .c-access__googlemap {
    margin: 30px 0 0 0;
  }
}
.c-access__googlemap iframe {
  width: 100%;
}

.c-breadcrumb {
  padding: 10px 0 58px;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb {
    padding: 10px 0 40px;
  }
}
.c-breadcrumb__list {
  display: flex;
  align-items: center;
}
.c-breadcrumb__item {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.205em;
}
.c-breadcrumb__item + .c-breadcrumb__item {
  margin-left: 8px;
}

.c-btn {
  width: 364px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 35px;
}
@media screen and (max-width: 499px) {
  .c-btn {
    width: 320px;
    border-radius: 30px;
  }
}
@media only screen and (max-width: 375px) {
  .c-btn {
    width: 288px;
  }
}
.c-btn__link {
  width: 100%;
  padding: 25px 0;
  background-color: #361502;
  border-radius: 35px;
  display: block;
}
@media screen and (max-width: 499px) {
  .c-btn__link {
    padding: 20px 0;
    border-radius: 30px;
  }
}
.c-btn__img {
  width: 85px;
  height: auto;
  margin: 0 auto;
}

.c-btn02__link {
  max-width: 809px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 51px 20px 75px;
  color: #fff;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 71px;
  border: 5px solid #fff;
  background-image: url("../img/lomilomi/about/bg_about.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  box-shadow: 9.33px 5.83px 24px rgba(15, 14, 14, 0.33);
}
@media screen and (max-width: 767px) {
  .c-btn02__link {
    padding: 20px;
    justify-content: center;
  }
}
@media screen and (max-width: 499px) {
  .c-btn02__link {
    flex-direction: column;
    align-items: unset;
    border: 3px solid #fff;
    padding: 14px 20px;
  }
}
.c-btn02__link:hover {
  box-shadow: none;
}
.c-btn02__left {
  font-size: 3rem;
  line-height: 1.6;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.205em;
  text-shadow: 0 0 8px #1e0e06, 0 0 8px #1e0e06, 0 0 8px #1e0e06, 0 0 8px #1e0e06, 0 0 8px #1e0e06, 0 0 8px #1e0e06, 0 0 8px #1e0e06;
}
@media screen and (max-width: 767px) {
  .c-btn02__left {
    font-size: 2.2rem;
    margin-right: 10px;
  }
}
@media screen and (max-width: 499px) {
  .c-btn02__left {
    font-size: 2rem;
    margin-right: 0;
  }
}
@media only screen and (max-width: 375px) {
  .c-btn02__left {
    font-size: 1.8rem;
  }
}
.c-btn02__right {
  font-size: 2.4rem;
  line-height: 1.25;
  letter-spacing: 0.205em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-btn02__right {
    font-size: 2rem;
  }
}
@media screen and (max-width: 499px) {
  .c-btn02__right {
    font-size: 1.8rem;
    padding-right: 30px;
    text-align: right;
    margin-top: 5px;
  }
}
.c-btn02__right:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 10px;
  width: 26px;
  height: 8px;
  background-image: url("../img/common/icon_common03.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 499px) {
  .c-btn02__right:before {
    bottom: 8px;
    right: 0;
  }
}

.c-cta {
  padding: 141px 0 133px;
  background-color: #F5F1ED;
}
@media screen and (max-width: 767px) {
  .c-cta {
    padding: 100px 0;
  }
}
.c-cta__inner {
  max-width: 1370px;
  width: 90%;
  margin: 0 auto;
}
@media only screen and (max-width: 1599px) {
  .c-cta__inner {
    max-width: 1000px;
  }
}
.c-cta__textarea {
  text-align: center;
}
.c-cta__text {
  font-size: 3rem;
  letter-spacing: 0.205em;
  position: relative;
  display: inline-block;
}
@media only screen and (max-width: 1599px) {
  .c-cta__text {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 499px) {
  .c-cta__text {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 375px) {
  .c-cta__text {
    font-size: 1.8rem;
  }
}
.c-cta__text:before, .c-cta__text:after {
  content: "";
  width: 45px;
  height: 1.5px;
  background-color: #361502;
}
@media screen and (max-width: 1199px) {
  .c-cta__text:before, .c-cta__text:after {
    width: 35px;
  }
}
@media only screen and (max-width: 375px) {
  .c-cta__text:before, .c-cta__text:after {
    width: 25px;
  }
}
.c-cta__text:before {
  position: absolute;
  top: 50%;
  left: -48px;
  transform: translateY(-50%) rotate(50deg);
}
@media screen and (max-width: 1199px) {
  .c-cta__text:before {
    left: -38px;
  }
}
@media only screen and (max-width: 375px) {
  .c-cta__text:before {
    left: -30px;
  }
}
.c-cta__text:after {
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%) rotate(-50deg);
}
@media screen and (max-width: 1199px) {
  .c-cta__text:after {
    right: -30px;
  }
}
.c-cta__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 22px auto 40px;
}
.c-cta__link-icon {
  width: 81px;
  height: auto;
  margin-right: 24px;
}
@media only screen and (max-width: 1599px) {
  .c-cta__link-icon {
    width: 61px;
    margin-right: 14px;
  }
}
@media screen and (max-width: 499px) {
  .c-cta__link-icon {
    width: 46px;
  }
}
@media only screen and (max-width: 375px) {
  .c-cta__link-icon {
    width: 40px;
  }
}
.c-cta__link-number {
  width: 407px;
  height: auto;
}
@media only screen and (max-width: 1599px) {
  .c-cta__link-number {
    width: 337px;
  }
}
@media screen and (max-width: 499px) {
  .c-cta__link-number {
    width: 230px;
  }
}
@media only screen and (max-width: 375px) {
  .c-cta__link-number {
    width: 210px;
  }
}
.c-cta__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 38px;
}
@media screen and (max-width: 999px) {
  .c-cta__list {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 499px) {
  .c-cta__list {
    grid-gap: 30px;
  }
}
.c-cta__item-link {
  width: 100%;
  height: 142px;
  border: 4px solid #361502;
  background-color: #fff;
  border-radius: 71px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  box-shadow: 0 0 10px rgba(15, 14, 14, 0.39);
  transition: 0.3s all ease;
}
@media only screen and (max-width: 1599px) {
  .c-cta__item-link {
    height: 112px;
  }
}
@media screen and (max-width: 999px) {
  .c-cta__item-link {
    max-width: 520px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 499px) {
  .c-cta__item-link {
    height: 90px;
  }
}
@media only screen and (max-width: 375px) {
  .c-cta__item-link {
    height: 80px;
  }
}
.c-cta__item-link:hover {
  opacity: 0.7;
  box-shadow: none;
}
.c-cta__item-link:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 17px;
  height: 29px;
  background-image: url("../img/common/arrow_common.svg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 499px) {
  .c-cta__item-link:before {
    right: 15px;
    width: 12px;
    height: 21px;
  }
}
.c-cta__item-link--flex {
  padding-right: 25px;
}
.c-cta__item-link--flex img {
  width: 284px;
  margin-right: 8px;
}
@media only screen and (max-width: 1599px) {
  .c-cta__item-link--flex img {
    width: 164px;
  }
}
@media screen and (max-width: 499px) {
  .c-cta__item-link--flex img {
    width: 145px;
  }
}
@media only screen and (max-width: 375px) {
  .c-cta__item-link--flex img {
    width: 120px;
    margin-right: 6px;
  }
}
.c-cta__item-text {
  font-size: 3.6rem;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 1599px) {
  .c-cta__item-text {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 499px) {
  .c-cta__item-text {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 375px) {
  .c-cta__item-text {
    font-size: 1.6rem;
  }
}

.c-fadein {
  -webkit-animation: fadeinAnime 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
          animation: fadeinAnime 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}
.c-fadein__triger {
  opacity: 0;
}

@-webkit-keyframes fadeinAnime {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeinAnime {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.c-hawaiian {
  background-color: #F5F1ED;
}
.c-hawaiian__item {
  display: flex;
  align-items: center;
  gap: 2.6%;
}
@media screen and (max-width: 767px) {
  .c-hawaiian__item {
    flex-direction: column;
    gap: 20px 0;
  }
}
.c-hawaiian__item:nth-of-type(2) {
  flex-direction: row-reverse;
  margin-top: 34px;
}
@media screen and (max-width: 767px) {
  .c-hawaiian__item:nth-of-type(2) {
    flex-direction: column;
    margin-top: 40px;
  }
}
.c-hawaiian__textarea {
  width: 47.4%;
}
@media screen and (max-width: 767px) {
  .c-hawaiian__textarea {
    width: 100%;
  }
}
.c-hawaiian__title {
  font-size: 2.8rem;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.205em;
  padding-bottom: 10px;
  border-bottom: 1px solid #361502;
  margin-bottom: 70px;
}
@media screen and (max-width: 999px) {
  .c-hawaiian__title {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .c-hawaiian__title {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 499px) {
  .c-hawaiian__title {
    font-size: 2rem;
  }
}
.c-hawaiian__text {
  font-size: 1.4rem;
  letter-spacing: 0.205em;
  line-height: 2;
}
@media only screen and (max-width: 375px) {
  .c-hawaiian__text {
    font-size: 1.3rem;
  }
}
.c-hawaiian__img {
  width: 50%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .c-hawaiian__img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}

.c-hero {
  height: 462px;
  background-image: url("../img/common/hero/bg_hero.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1399px) {
  .c-hero {
    height: 437px;
  }
}
@media screen and (max-width: 1199px) {
  .c-hero {
    height: 407px;
  }
}
@media screen and (max-width: 767px) {
  .c-hero {
    height: 327px;
  }
}
@media screen and (max-width: 499px) {
  .c-hero {
    height: 287px;
  }
}
.c-hero__heading {
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 4.8rem;
  letter-spacing: 0.205em;
  text-align: center;
  padding-top: 291px;
  font-weight: 700;
}
@media only screen and (max-width: 1399px) {
  .c-hero__heading {
    padding-top: 266px;
  }
}
@media screen and (max-width: 1199px) {
  .c-hero__heading {
    padding-top: 236px;
  }
}
@media screen and (max-width: 767px) {
  .c-hero__heading {
    padding-top: 176px;
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 499px) {
  .c-hero__heading {
    padding-top: 156px;
  }
}

.c-menu__heading {
  width: 145px;
  height: auto;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .c-menu__heading {
    width: 105px;
  }
}
.c-menu__list {
  max-width: 885px;
  margin: 0 auto 104px;
}
@media screen and (max-width: 767px) {
  .c-menu__list {
    margin: 0 auto 70px;
  }
}
.c-menu__item {
  font-weight: 700;
}
.c-menu__item + .c-menu__item {
  margin-top: 32px;
}
.c-menu__item-title {
  font-size: 6rem;
  font-family: "Tangerine", cursive;
  line-height: 1;
  color: #aba39d;
  letter-spacing: 0.205em;
}
@media screen and (max-width: 767px) {
  .c-menu__item-title {
    font-size: 4rem;
  }
}
.c-menu__item-box {
  max-width: 800px;
  margin: 0 0 0 auto;
  border: 1px solid #361502;
  border-radius: 3px;
  padding: 17px 0 25px;
}
.c-menu__item-labelarea {
  position: relative;
  width: 271px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 17px;
}
@media screen and (max-width: 767px) {
  .c-menu__item-labelarea {
    width: 230px;
    height: 38px;
  }
}
.c-menu__item-labelarea:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/top/menu/img_menu03.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.c-menu__item-label {
  position: relative;
}
.c-menu__item-flex {
  display: flex;
  justify-content: space-between;
  padding: 0 36px 0 42px;
}
@media screen and (max-width: 767px) {
  .c-menu__item-flex {
    flex-direction: column;
    padding: 0 30px;
  }
}
.c-menu__item-price {
  margin-top: 10px;
  text-align: right;
}
.c-menu__visit {
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid #422717;
  border-radius: 3px;
  font-weight: 700;
  padding: 75px 0;
}
@media screen and (max-width: 767px) {
  .c-menu__visit {
    padding: 55px 0;
  }
}
.c-menu__visit-titlearea {
  text-align: center;
}
.c-menu__visit-title {
  display: inline-block;
  position: relative;
  padding-bottom: 14px;
}
.c-menu__visit-title:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-52%);
  width: 95%;
  height: 1px;
  background-color: #361502;
}
.c-menu__visit-list {
  max-width: 687px;
  width: 90%;
  margin: 53px auto 0;
}
@media screen and (max-width: 767px) {
  .c-menu__visit-list {
    margin: 40px auto 0;
  }
}
.c-menu__visit-item {
  position: relative;
  padding-left: 30px;
}
.c-menu__visit-item:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 22px;
  height: 17px;
  background-image: url("../img/common/menu/icon_menu02.svg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.c-menu__visit-item + .c-menu__visit-item {
  margin-top: 8px;
}
.c-menu__visit-item--nocheck:before {
  display: none;
}
.c-menu__visit-textarea {
  margin-top: 32px;
  text-align: center;
}
.c-menu__visit-text {
  display: inline-block;
  position: relative;
}
.c-menu__visit-text:before, .c-menu__visit-text:after {
  content: "";
  width: 25px;
  height: 2px;
  background-color: #361502;
}
.c-menu__visit-text:before {
  position: absolute;
  top: 50%;
  left: -28px;
  transform: translateY(-50%) rotate(63deg);
}
.c-menu__visit-text:after {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%) rotate(-63deg);
}

.c-overview__item {
  display: flex;
}
@media screen and (max-width: 767px) {
  .c-overview__item {
    flex-direction: column;
  }
}
.c-overview__item + .c-overview__item {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .c-overview__item + .c-overview__item {
    margin-top: 60px;
  }
}
.c-overview__item-textarea {
  width: 45.8%;
}
@media screen and (max-width: 767px) {
  .c-overview__item-textarea {
    width: 100%;
  }
}
.c-overview__item-label {
  font-size: 2.8rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.7142;
  position: relative;
  letter-spacing: 0.205em;
  font-weight: 700;
  z-index: 1;
  margin-bottom: 80px;
}
@media screen and (max-width: 999px) {
  .c-overview__item-label {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 375px) {
  .c-overview__item-label {
    font-size: 2.1rem;
  }
}
.c-overview__item-label:before {
  content: "";
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 850px;
  height: 147px;
  z-index: -1;
}
@media screen and (max-width: 999px) {
  .c-overview__item-label:before {
    width: 578px;
    height: 100px;
  }
}
.c-overview__item-title {
  font-size: 1.8rem;
  letter-spacing: 0.205em;
  line-height: 1.7222;
  border-bottom: 1px solid #361502;
  margin-bottom: 26px;
  position: relative;
  z-index: 1;
}
.c-overview__item-title--single {
  min-height: 53px;
}
.c-overview__item-text {
  font-size: 1.4rem;
  line-height: 2;
}
.c-overview__item-img {
  margin-left: 4.2%;
  box-shadow: 9.33px 5.83px 24px rgba(15, 14, 14, 0.33);
  width: 50%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .c-overview__item-img {
    margin: 20px auto 0;
    width: 100%;
    max-width: 500px;
  }
}

.c-section__inner {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}

.c-writing .c-section__inner {
  background-image: url("../img/common/writing/bg_writing.png");
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
  border-radius: 3px;
  box-shadow: 3px 7px 20px rgba(15, 14, 14, 0.23);
  position: relative;
}
@media screen and (max-width: 499px) {
  .c-writing .c-section__inner {
    background-position: center;
  }
}
.c-writing .c-section__inner:before {
  content: "";
  position: absolute;
  top: 10%;
  right: 0;
  width: 170px;
  height: 242px;
  background-image: url("../img/common/writing/img_writing.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 999px) {
  .c-writing .c-section__inner:before {
    width: 140px;
    height: 199px;
  }
}
@media screen and (max-width: 767px) {
  .c-writing .c-section__inner:before {
    width: 100px;
    height: 142px;
  }
}
.c-writing__heading {
  font-size: 3.6rem;
  letter-spacing: 0.14em;
  font-family: "Noto Serif JP", serif;
  line-height: 1.7222;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .c-writing__heading {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 499px) {
  .c-writing__heading {
    font-size: 1.8rem;
  }
}
.c-writing__text {
  font-size: 1.4rem;
  letter-spacing: 0.205em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .c-writing__text {
    letter-spacing: 0.1em;
  }
}
@media only screen and (max-width: 375px) {
  .c-writing__text {
    font-size: 1.3rem;
  }
}
.c-writing__text + .c-writing__text {
  margin-top: 28px;
}

.l-main--concept .p-about {
  padding: 0 0 192px;
}
@media screen and (max-width: 767px) {
  .l-main--concept .p-about {
    padding: 0 0 100px;
  }
}
.l-main--concept .p-about__img {
  width: 100%;
  height: auto;
}

.l-main--concept .c-hawaiian {
  padding: 145px 0 131px;
}
@media screen and (max-width: 767px) {
  .l-main--concept .c-hawaiian {
    padding: 100px 0;
  }
}

.l-main--concept .p-message {
  padding: 220px 0 0;
}
.l-main--concept .p-message .c-section__inner {
  position: relative;
  margin: 0 auto 67px;
  padding-bottom: 240px;
}
@media screen and (max-width: 767px) {
  .l-main--concept .p-message .c-section__inner {
    padding-bottom: 330px;
    margin: 0 auto 40px;
  }
}
@media screen and (max-width: 499px) {
  .l-main--concept .p-message .c-section__inner {
    padding-bottom: 430px;
  }
}
.l-main--concept .p-message__textarea {
  width: 59.071%;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .l-main--concept .p-message__textarea {
    width: 100%;
  }
}
.l-main--concept .p-message__textarea--top {
  position: absolute;
  top: -9%;
  left: 0;
}
@media screen and (max-width: 767px) {
  .l-main--concept .p-message__textarea--top {
    top: -17%;
  }
}
@media screen and (max-width: 499px) {
  .l-main--concept .p-message__textarea--top {
    top: -20%;
  }
}
.l-main--concept .p-message__textarea--bottom {
  position: absolute;
  right: 0;
  bottom: 0;
}
.l-main--concept .p-message__text {
  font-size: 1.4rem;
  letter-spacing: 0.205em;
  line-height: 2;
  text-shadow: 0px 0px 20px #fcfaf6, 0px 0px 20px #fcfaf6, 0px 0px 20px #fcfaf6, 0px 0px 20px #fcfaf6, 0px 0px 20px #fcfaf6, 0px 0px 20px #fcfaf6, 0px 0px 20px #fcfaf6, 0px 0px 20px #fcfaf6;
}
.l-main--concept .p-message__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 21.7391%;
  position: relative;
  max-width: 851px;
  margin: 0 auto;
}
.l-main--concept .p-message__item {
  width: 39.1304%;
  height: auto;
  box-shadow: 0 0 40px rgba(54, 21, 2, 0.5), 0 0 40px rgba(54, 21, 2, 0.5);
}
.l-main--concept .p-message__item:nth-of-type(3), .l-main--concept .p-message__item:nth-of-type(4) {
  margin-top: 5.7579%;
}
.l-main--concept .p-message__item--center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.l-main--concept .p-moment {
  background-image: url("../img/concept/moment/bg_moment.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.l-main--concept .p-moment__inner {
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}
@media only screen and (max-width: 1599px) {
  .l-main--concept .p-moment__inner {
    height: 420px;
  }
}
@media screen and (max-width: 999px) {
  .l-main--concept .p-moment__inner {
    height: 320px;
  }
}
@media screen and (max-width: 767px) {
  .l-main--concept .p-moment__inner {
    justify-content: center;
    height: 220px;
  }
}
@media screen and (max-width: 499px) {
  .l-main--concept .p-moment__inner {
    height: 180px;
  }
}
.l-main--concept .p-moment__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-image: url("../img/concept/moment/img_moment.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1799px) {
  .l-main--concept .p-moment__img {
    width: 40%;
  }
}
@media screen and (max-width: 767px) {
  .l-main--concept .p-moment__img {
    width: 100%;
    background-image: url("../img/concept/moment/img_moment_sp.jpg");
  }
}
.l-main--concept .p-moment__heading {
  font-size: 4.4rem;
  line-height: 2;
  letter-spacing: 0.205em;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  margin-right: 7.8125%;
  position: relative;
}
@media only screen and (max-width: 1799px) {
  .l-main--concept .p-moment__heading {
    margin-right: 5.8125%;
  }
}
@media only screen and (max-width: 1599px) {
  .l-main--concept .p-moment__heading {
    font-size: 3.6rem;
    margin-right: 4%;
  }
}
@media screen and (max-width: 999px) {
  .l-main--concept .p-moment__heading {
    font-size: 3rem;
    letter-spacing: 0.1em;
  }
}
@media screen and (max-width: 767px) {
  .l-main--concept .p-moment__heading {
    margin-right: 0;
    letter-spacing: 0.205em;
    font-size: 2.4rem;
    text-shadow: 0px 0px 20px #fcfaf6, 0px 0px 20px #fcfaf6, 0px 0px 20px #fcfaf6, 0px 0px 20px #fcfaf6, 0px 0px 20px #fcfaf6, 0px 0px 20px #fcfaf6, 0px 0px 20px #fcfaf6, 0px 0px 20px #fcfaf6;
  }
}
@media screen and (max-width: 499px) {
  .l-main--concept .p-moment__heading {
    letter-spacing: 0.1em;
    font-size: 2rem;
  }
}
@media only screen and (max-width: 375px) {
  .l-main--concept .p-moment__heading {
    font-size: 1.8rem;
  }
}

.l-main--concept .c-writing {
  padding: 145px 0 194px;
}
@media screen and (max-width: 767px) {
  .l-main--concept .c-writing {
    padding: 100px 0;
  }
}
.l-main--concept .c-writing .c-section__inner {
  padding: 65px 20px 100px;
}
@media screen and (max-width: 767px) {
  .l-main--concept .c-writing .c-section__inner {
    padding: 60px 20px;
  }
}
.l-main--concept .c-writing__heading {
  text-align: center;
  margin-bottom: 85px;
}
@media screen and (max-width: 767px) {
  .l-main--concept .c-writing__heading {
    margin-bottom: 40px;
  }
}
.l-main--concept .c-writing__text {
  text-align: center;
}

.l-main--contact .p-contact {
  padding: 40px 0 100px;
}
.l-main--contact .p-contact__text {
  text-align: center;
}
.l-main--contact .p-contact__form {
  margin-top: 40px;
}
.l-main--contact .p-contact__item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #361502;
  padding: 15px 0 15px 20px;
}
@media screen and (max-width: 767px) {
  .l-main--contact .p-contact__item {
    flex-direction: column;
    padding: 15px 0;
  }
}
.l-main--contact .p-contact__label {
  min-width: 300px;
  display: flex;
}
@media screen and (max-width: 767px) {
  .l-main--contact .p-contact__label {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
    margin-bottom: 20px;
  }
}
.l-main--contact .p-contact__input {
  width: calc(100% - 200px);
  padding: 10px;
}
@media screen and (max-width: 767px) {
  .l-main--contact .p-contact__input {
    width: 100%;
    padding: 0;
  }
}
.l-main--contact .p-contact__input--name {
  display: flex;
  gap: 0 2%;
}
.l-main--contact .p-contact__input--name .wpcf7-form-control-wrap {
  width: 44%;
}
@media screen and (max-width: 767px) {
  .l-main--contact .p-contact__input--name .wpcf7-form-control-wrap {
    width: 49%;
  }
}
.l-main--contact .p-contact__input--name .wpcf7-form-control-wrap .p-contact__input--sm {
  width: 100%;
}
.l-main--contact .p-contact__input--xl {
  width: 90%;
}
@media screen and (max-width: 767px) {
  .l-main--contact .p-contact__input--xl {
    width: 100%;
  }
}
.l-main--contact .p-contact__input--sm {
  width: 45%;
}
@media screen and (max-width: 767px) {
  .l-main--contact .p-contact__input--sm {
    width: 50%;
  }
}
.l-main--contact .p-contact__input-textarea {
  background-color: #fafafa;
  border: 1px solid #361502;
  font-family: inherit;
  height: 200px;
  padding: 5px 10px;
  width: 90%;
}
@media screen and (max-width: 767px) {
  .l-main--contact .p-contact__input-textarea {
    width: 100%;
  }
}
.l-main--contact .p-contact__input-textarea:focus {
  border: 1px solid #898989;
  background-color: #fff;
  outline: none;
}
.l-main--contact .p-contact__input-text {
  background-color: #fafafa;
  border: 1px solid #361502;
  padding: 5px 10px;
}
.l-main--contact .p-contact__input-text + .p-contact__input-text {
  margin-left: 5px;
}
.l-main--contact .p-contact__input-text:focus {
  border: 1px solid #898989;
  background-color: #fff;
  outline: none;
}
.l-main--contact .p-contact__arb, .l-main--contact .p-contact__must {
  font-weight: 700;
  color: #fff;
  padding: 0 10px;
  border-radius: 3px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 10px;
}
.l-main--contact .p-contact__arb {
  background-color: #00479D;
}
.l-main--contact .p-contact__must {
  background-color: #E60012;
}
.l-main--contact .p-contact__caution {
  text-align: center;
  margin-top: 30px;
}
.l-main--contact .p-contact__caution-link {
  text-decoration: underline;
}
.l-main--contact .p-contact__caution-link:hover {
  text-decoration: none;
}
.l-main--contact .p-contact__submit {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 178px;
  margin: 40px auto 0;
  background-color: #fff;
  border-radius: 3px;
}
.l-main--contact .p-contact__submit-btn {
  background-color: #361502;
  border: 1px solid #361502;
  border-radius: 3px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  padding: 10px 40px;
  text-decoration: none;
  font-size: 100%;
  transition: 0.4s;
  font-size: 2rem;
  letter-spacing: 0.205em;
  transition: 0.3s all ease;
}
.l-main--contact .p-contact__submit-btn:hover {
  opacity: 0.7;
}
.l-main--contact .p-contact__submit-btn:-moz-foucus-inner {
  border: none;
  padding: 0;
}

.l-main--lomilomi .p-about {
  padding: 0 0 132px;
  background-color: #F5F1ED;
}
@media screen and (max-width: 767px) {
  .l-main--lomilomi .p-about {
    padding: 0 0 100px;
  }
}
.l-main--lomilomi .p-about .c-about__list {
  margin: 117px 0 70px;
}
@media screen and (max-width: 767px) {
  .l-main--lomilomi .p-about .c-about__list {
    margin: 60px 0 40px;
  }
}
.l-main--lomilomi .p-about .c-btn02__link {
  background-image: url("../img/lomilomi/about/bg_about.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.l-main--lomilomi .p-overview {
  padding: 164px 0 169px;
  background-color: #FCFAF6;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .l-main--lomilomi .p-overview {
    padding: 100px 0;
  }
}
@media screen and (max-width: 999px) {
  .l-main--lomilomi .p-overview .c-overview__item:nth-of-type(1) .c-overview__item-textarea {
    margin-top: -40px;
  }
}
@media screen and (max-width: 767px) {
  .l-main--lomilomi .p-overview .c-overview__item:nth-of-type(1) .c-overview__item-textarea {
    margin-top: 0;
  }
}
.l-main--lomilomi .p-overview .c-overview__item:nth-of-type(2) .c-overview__item-textarea {
  margin-top: 40px;
}
@media screen and (max-width: 999px) {
  .l-main--lomilomi .p-overview .c-overview__item:nth-of-type(2) .c-overview__item-textarea {
    margin-top: 0;
  }
}
.l-main--lomilomi .p-overview .c-overview__item:nth-of-type(3) .c-overview__item-textarea {
  margin-top: -40px;
}
@media screen and (max-width: 999px) {
  .l-main--lomilomi .p-overview .c-overview__item:nth-of-type(3) .c-overview__item-textarea {
    margin-top: 0;
  }
}
.l-main--lomilomi .p-overview .c-overview__item:nth-of-type(4) .c-overview__item-textarea {
  margin-top: 40px;
}
@media screen and (max-width: 999px) {
  .l-main--lomilomi .p-overview .c-overview__item:nth-of-type(4) .c-overview__item-textarea {
    margin-top: 0;
  }
}
.l-main--lomilomi .p-overview .c-overview__item-label:before {
  background-image: url("../img/lomilomi/overview/img_overview.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.l-main--menu .c-hawaiian {
  padding: 156px 0 96px;
}
@media screen and (max-width: 767px) {
  .l-main--menu .c-hawaiian {
    padding: 100px 0 96px;
  }
}
.l-main--menu .c-hawaiian__textarea {
  padding-bottom: 100px;
}
@media screen and (max-width: 999px) {
  .l-main--menu .c-hawaiian__textarea {
    padding-bottom: 0;
  }
}

.l-main--menu .p-menu {
  padding: 151px 0 200px;
}
@media screen and (max-width: 767px) {
  .l-main--menu .p-menu {
    padding: 100px 0;
  }
}
.l-main--menu .p-menu .c-menu__heading {
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .l-main--menu .p-menu .c-menu__heading {
    margin-bottom: 30px;
  }
}
.l-main--menu .p-menu__listbox {
  display: flex;
  margin-bottom: 123px;
}
@media screen and (max-width: 767px) {
  .l-main--menu .p-menu__listbox {
    margin-bottom: 70px;
  }
}
.l-main--menu .p-menu__list02 {
  width: 43.6%;
  margin-right: 5%;
}
.l-main--menu .p-menu__item02 {
  width: 100%;
  height: auto;
}
.l-main--menu .p-menu__item02 + .p-menu__item02 {
  margin-top: 8px;
}
@media screen and (max-width: 1199px) {
  .l-main--menu .p-menu__item02 + .p-menu__item02 {
    margin-top: 40px;
  }
}
@media screen and (max-width: 999px) {
  .l-main--menu .p-menu__item02 + .p-menu__item02 {
    margin-top: 120px;
  }
}
.l-main--menu .p-menu__list03 {
  width: 51.4%;
}
@media screen and (max-width: 767px) {
  .l-main--menu .p-menu__list03 {
    width: 100%;
  }
}
.l-main--menu .p-menu__item03 {
  font-weight: 700;
}
.l-main--menu .p-menu__item03 + .p-menu__item03 {
  margin-top: 90px;
}
@media screen and (max-width: 767px) {
  .l-main--menu .p-menu__item03 + .p-menu__item03 {
    margin-top: 40px;
  }
}
.l-main--menu .p-menu__item03:nth-last-of-type(1) .p-menu__item03-text, .l-main--menu .p-menu__item03:nth-last-of-type(3) .p-menu__item03-text {
  min-width: 68%;
}
.l-main--menu .p-menu__item03--ticket.p-menu__item03 {
  margin-top: 110px;
}
@media screen and (max-width: 767px) {
  .l-main--menu .p-menu__item03--ticket.p-menu__item03 {
    margin-top: 70px;
  }
}
.l-main--menu .p-menu__item03--ticket .p-menu__item03-title:before {
  content: "";
  position: absolute;
  bottom: 10px;
  left: calc(50% - 130px);
  transform: translateX(-50%);
  width: 54px;
  height: 51px;
  background-image: url("../img/common/menu/icon_menu.svg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.l-main--menu .p-menu__item03-title {
  font-size: 3rem;
  font-family: "Tangerine", cursive;
  line-height: 1;
  text-align: center;
  border-bottom: 1px solid #361502;
  padding-bottom: 5px;
  letter-spacing: 0.205em;
  position: relative;
}
.l-main--menu .p-menu__item03-flex {
  display: flex;
  margin: 30px auto 0;
  width: 90%;
}
@media screen and (max-width: 999px) {
  .l-main--menu .p-menu__item03-flex {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .l-main--menu .p-menu__item03-flex {
    flex-direction: unset;
  }
}
@media screen and (max-width: 499px) {
  .l-main--menu .p-menu__item03-flex {
    flex-direction: column;
  }
}
.l-main--menu .p-menu__item03-flex--column {
  flex-direction: column;
}
.l-main--menu .p-menu__item03-flex--column .p-menu__item03-price {
  padding-right: 1em;
  text-align: right;
  margin-top: 10px;
}
@media screen and (max-width: 999px) {
  .l-main--menu .p-menu__item03-flex--column .p-menu__item03-price {
    padding-right: 0;
  }
}
.l-main--menu .p-menu__item03-text {
  min-width: 55%;
}
@media screen and (max-width: 999px) {
  .l-main--menu .p-menu__item03-price {
    text-align: right;
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .l-main--menu .p-menu__item03-price {
    margin-top: 0;
  }
}
@media screen and (max-width: 499px) {
  .l-main--menu .p-menu__item03-price {
    margin-top: 10px;
  }
}
.l-main--menu .p-menu__item03-deco {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.4rem;
  letter-spacing: 0.205em;
}
.l-main--menu .p-menu__item03-deco:before, .l-main--menu .p-menu__item03-deco:after {
  content: "";
  width: 18px;
  height: 1.5px;
  background-color: #361502;
}
.l-main--menu .p-menu__item03-deco:before {
  position: absolute;
  top: 20%;
  left: -18px;
  transform: translateY(-50%) rotate(53deg);
}
.l-main--menu .p-menu__item03-deco:after {
  position: absolute;
  top: 20%;
  right: -15px;
  transform: translateY(-50%) rotate(-53deg);
}
.l-main--menu .p-menu__item03-img {
  max-width: 436px;
  margin: 0 auto;
}

.l-main--menu .c-writing {
  padding: 0 0 180px;
}
@media screen and (max-width: 767px) {
  .l-main--menu .c-writing {
    padding: 0 0 100px;
  }
}
.l-main--menu .c-writing .c-section__inner {
  padding: 82px 0 60px;
}
@media screen and (max-width: 767px) {
  .l-main--menu .c-writing .c-section__inner {
    padding: 60px 0;
  }
}
@media screen and (max-width: 767px) {
  .l-main--menu .c-writing .c-section__inner:before {
    top: 3%;
  }
}
.l-main--menu .c-writing__heading {
  max-width: 715px;
  width: 95%;
  margin: 0 auto 45px;
}
@media screen and (max-width: 767px) {
  .l-main--menu .c-writing__heading {
    margin: 0 auto 40px;
  }
}
.l-main--menu .c-writing__text {
  max-width: 715px;
  width: 95%;
  margin: 0 auto;
}
.l-main--menu .c-writing__text + .c-writing__text {
  margin-top: 28px;
}

@media screen and (max-width: 499px) {
  .l-main--policy .c-hero {
    height: 327px;
  }
}
@media only screen and (max-width: 375px) {
  .l-main--policy .c-hero__heading {
    font-size: 3.4rem;
  }
}

.l-main--policy .p-policy {
  padding: 50px 0 100px;
}
.l-main--policy .p-policy__item {
  padding: 20px 0;
  border-bottom: 1px solid #361502;
}
.l-main--policy .p-policy__label {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 5px;
  letter-spacing: 0.205em;
}
.l-main--policy .p-policy__text {
  line-height: 2;
}

.l-main--special .p-flow {
  padding: 145px 0 122px;
  background-color: #FCFAF6;
}
@media screen and (max-width: 767px) {
  .l-main--special .p-flow {
    padding: 100px 0;
  }
}
.l-main--special .p-flow__inner {
  max-width: 1023px;
  width: 90%;
  margin: 0 auto;
}
.l-main--special .p-flow__heading {
  width: 128px;
  height: auto;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-main--special .p-flow__heading {
    width: 88px;
  }
}
.l-main--special .p-flow__img {
  width: 100%;
  height: auto;
  margin: 80px auto 0;
}
@media screen and (max-width: 767px) {
  .l-main--special .p-flow__img {
    margin: 40px auto 0;
  }
}

@media screen and (max-width: 499px) {
  .l-main--special .c-hero {
    height: 327px;
  }
}
@media only screen and (max-width: 375px) {
  .l-main--special .c-hero__heading {
    font-size: 3.4rem;
  }
}

.l-main--special .p-overview {
  padding: 190px 0 176px;
  background-color: #fff;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .l-main--special .p-overview {
    padding: 100px 0;
  }
}
.l-main--special .p-overview__img {
  width: 100%;
  height: auto;
}
.l-main--special .p-overview .c-overview__list {
  margin-bottom: 80px;
}
.l-main--special .p-overview .c-overview__item:nth-of-type(1) .c-overview__item-textarea {
  margin-top: -40px;
}
@media screen and (max-width: 767px) {
  .l-main--special .p-overview .c-overview__item:nth-of-type(1) .c-overview__item-textarea {
    margin-top: 0;
  }
}
.l-main--special .p-overview .c-overview__item:nth-of-type(2) .c-overview__item-textarea {
  margin-top: 50px;
}
@media screen and (max-width: 999px) {
  .l-main--special .p-overview .c-overview__item:nth-of-type(2) .c-overview__item-textarea {
    margin-top: 0;
  }
}
.l-main--special .p-overview .c-overview__item:nth-of-type(3) {
  position: relative;
  z-index: 2;
}
.l-main--special .p-overview .c-overview__item:nth-of-type(3) .c-overview__item-textarea {
  margin-top: -70px;
}
@media screen and (max-width: 999px) {
  .l-main--special .p-overview .c-overview__item:nth-of-type(3) .c-overview__item-textarea {
    margin-top: 0;
  }
}
.l-main--special .p-overview .c-overview__item:nth-of-type(4) .c-overview__item-textarea {
  margin-top: -170px;
}
@media screen and (max-width: 999px) {
  .l-main--special .p-overview .c-overview__item:nth-of-type(4) .c-overview__item-textarea {
    margin-top: 0;
  }
}
.l-main--special .p-overview .c-overview__item-label:before {
  background-image: url("../img/special/overview/img_overview.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 499px) {
  .l-main--special .p-overview .c-overview__item-label .md-up {
    display: block !important;
  }
}

.l-main--special .p-point {
  padding: 140px 0 186px;
  background-color: #F5F1ED;
}
@media screen and (max-width: 767px) {
  .l-main--special .p-point {
    padding: 100px 0;
  }
}
.l-main--special .p-point__heading {
  font-size: 3.6rem;
  letter-spacing: 0.205em;
  line-height: 1.7222;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 107px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .l-main--special .p-point__heading {
    font-size: 2.6rem;
    margin-bottom: 70px;
  }
}
@media only screen and (max-width: 375px) {
  .l-main--special .p-point__heading {
    font-size: 2.4rem;
  }
}
.l-main--special .p-point__heading-big {
  font-size: 4.5rem;
  line-height: 1.3777;
}
@media screen and (max-width: 767px) {
  .l-main--special .p-point__heading-big {
    font-size: 3.5rem;
  }
}
.l-main--special .p-point__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 0 36px;
}
@media screen and (max-width: 767px) {
  .l-main--special .p-point__list {
    grid-template-columns: 1fr;
    grid-gap: 80px 0;
  }
}
.l-main--special .p-point__item-imgarea {
  max-width: 272px;
  margin: 0 auto;
  position: relative;
}
.l-main--special .p-point__item-imgarea img {
  position: relative;
}
.l-main--special .p-point__item-imgtext {
  font-size: 10rem;
  font-weight: 700;
  color: #e7d4c9;
  letter-spacing: -0.08em;
  position: absolute;
  top: -70px;
  left: -40px;
}
@media screen and (max-width: 767px) {
  .l-main--special .p-point__item-imgtext {
    font-size: 7rem;
    top: -50px;
  }
}
@media only screen and (max-width: 375px) {
  .l-main--special .p-point__item-imgtext {
    left: 0;
  }
}
.l-main--special .p-point__text-title {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.205em;
  text-align: center;
  margin: 31px 0 23px;
}
@media screen and (max-width: 999px) {
  .l-main--special .p-point__text-title {
    height: 54px;
  }
}
@media screen and (max-width: 767px) {
  .l-main--special .p-point__text-title {
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .l-main--special .p-point__text-title .lg-down {
    display: none !important;
  }
}
.l-main--special .p-point__item-text {
  font-size: 1.4rem;
  line-height: 2;
}

.l-main--special .p-recommended {
  padding: 70px 0 0;
  background-color: #F5F1ED;
  overflow: hidden;
}
.l-main--special .p-recommended__titlearea {
  text-align: center;
}
.l-main--special .p-recommended__title {
  font-size: 3.6rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  letter-spacing: 0.205em;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-main--special .p-recommended__title {
    font-size: 2.6rem;
  }
}
.l-main--special .p-recommended__title:before, .l-main--special .p-recommended__title:after {
  content: "";
  width: 33px;
  height: 1.5px;
  background-color: #361502;
}
.l-main--special .p-recommended__title:before {
  position: absolute;
  top: 55%;
  left: -28px;
  transform: translateY(-50%) rotate(53deg);
}
.l-main--special .p-recommended__title:after {
  position: absolute;
  top: 55%;
  right: -20px;
  transform: translateY(-50%) rotate(-53deg);
}
.l-main--special .p-recommended__heading {
  font-size: 3.6rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  letter-spacing: 0.205em;
  text-align: center;
  margin-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .l-main--special .p-recommended__heading {
    font-size: 2.6rem;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 499px) {
  .l-main--special .p-recommended__heading {
    margin-top: 5px;
  }
}
.l-main--special .p-recommended__heading-big {
  font-size: 4.5rem;
  line-height: 1.3777;
}
@media screen and (max-width: 767px) {
  .l-main--special .p-recommended__heading-big {
    font-size: 3.5rem;
  }
}
.l-main--special .p-recommended__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 0 14px;
}
@media screen and (max-width: 767px) {
  .l-main--special .p-recommended__list {
    grid-template-columns: 1fr;
    grid-gap: 20px 0;
  }
}
.l-main--special .p-recommended__item {
  position: relative;
  box-shadow: 9.33px 5.83px 24px rgba(15, 14, 14, 0.33);
}
@media screen and (max-width: 767px) {
  .l-main--special .p-recommended__item {
    max-width: 324px;
    margin: 0 auto;
  }
}
.l-main--special .p-recommended__text {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.8rem;
  font-family: "Noto Serif JP", serif;
  text-shadow: 0px 0px 10px #fcfaf6, 0px 0px 10px #fcfaf6, 0px 0px 10px #fcfaf6, 0px 0px 10px #fcfaf6, 0px 0px 10px #fcfaf6, 0px 0px 10px #fcfaf6, 0px 0px 10px #fcfaf6, 0px 0px 10px #fcfaf6, 0px 0px 10px #fcfaf6, 0px 0px 10px #fcfaf6, 0px 0px 10px #fcfaf6, 0px 0px 10px #fcfaf6, 0px 0px 10px #fcfaf6;
  white-space: nowrap;
}
.l-main--special .p-recommended__img {
  margin-top: 133px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .l-main--special .p-recommended__img {
    margin-top: 80px;
  }
}

.l-main--top .p-concept {
  position: relative;
  padding: 140px 0 200px;
  background-image: url("../img/top/concept/bg_concept.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .l-main--top .p-concept {
    padding: 100px 0;
    background-image: url("../img/top/concept/bg_concept_sp.jpg");
  }
}
.l-main--top .p-concept .c-section__inner {
  position: relative;
}
.l-main--top .p-concept__heading {
  width: 248px;
  height: auto;
  margin: 0 auto 50px;
}
@media screen and (max-width: 767px) {
  .l-main--top .p-concept__heading {
    width: 208px;
    margin: 0 auto 30px;
  }
}
.l-main--top .p-concept__label {
  font-size: 2rem;
  text-align: center;
  line-height: 2;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  letter-spacing: 0.205em;
  position: relative;
  padding: 15px 0;
  text-shadow: 0px 0px 10px #fff, 0px 0px 10px #fff, 0px 0px 10px #fff;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .l-main--top .p-concept__label {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 499px) {
  .l-main--top .p-concept__label {
    font-size: 1.6rem;
  }
}
.l-main--top .p-concept__label:before, .l-main--top .p-concept__label:after {
  content: "";
  transform: translateX(-50%);
  width: 568px;
  height: 13px;
  background-image: url("../img/top/concept/img_concept.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .l-main--top .p-concept__label:before, .l-main--top .p-concept__label:after {
    width: 449px;
  }
}
@media screen and (max-width: 499px) {
  .l-main--top .p-concept__label:before, .l-main--top .p-concept__label:after {
    width: 355px;
  }
}
@media only screen and (max-width: 375px) {
  .l-main--top .p-concept__label:before, .l-main--top .p-concept__label:after {
    width: 288px;
  }
}
.l-main--top .p-concept__label:before {
  position: absolute;
  top: 0;
  left: 50%;
}
.l-main--top .p-concept__label:after {
  position: absolute;
  bottom: 0;
  left: 50%;
}
.l-main--top .p-concept__text {
  line-height: 2;
  text-shadow: 0px 0px 5px #f7f2ec, 0px 0px 5px #f7f2ec, 0px 0px 5px #f7f2ec, 0px 0px 5px #f7f2ec, 0px 0px 5px #f7f2ec, 0px 0px 5px #f7f2ec, 0px 0px 5px #f7f2ec, 0px 0px 5px #f7f2ec, 0px 0px 5px #f7f2ec, 0px 0px 5px #f7f2ec, 0px 0px 5px #f7f2ec, 0px 0px 5px #f7f2ec, 0px 0px 5px #f7f2ec, 0px 0px 5px #f7f2ec, 0px 0px 5px #f7f2ec, 0px 0px 5px #f7f2ec, 0px 0px 5px #f7f2ec, 0px 0px 5px #f7f2ec, 0px 0px 5px #f7f2ec, 0px 0px 5px #f7f2ec, 0px 0px 5px #f7f2ec, 0px 0px 5px #f7f2ec, 0px 0px 5px #f7f2ec, 0px 0px 5px #f7f2ec, 0px 0px 5px #f7f2ec;
  text-align: center;
  font-weight: 400;
}
@media screen and (max-width: 499px) {
  .l-main--top .p-concept__text {
    font-size: 1.4rem;
    letter-spacing: 0.205em;
  }
}
.l-main--top .p-concept__text + .p-concept__text {
  margin-top: 1em;
}
.l-main--top .p-concept .c-btn {
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .l-main--top .p-concept .c-btn {
    margin-top: 40px;
  }
}
.l-main--top .p-concept .c-btn__link {
  box-shadow: 0px 0px 40px #fff;
}
.l-main--top .p-concept .c-btn__link:hover {
  box-shadow: none;
}

.l-main--top .p-flow {
  padding: 150px 0 100px;
  background-image: url("../img/top/flow/bg_flow.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .l-main--top .p-flow {
    padding: 100px 0;
  }
}
.l-main--top .p-flow__heading {
  width: 128px;
  height: auto;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-main--top .p-flow__heading {
    width: 88px;
  }
}
.l-main--top .p-flow__text {
  font-size: 2rem;
  line-height: 2;
  letter-spacing: 0.205em;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  margin: 60px 0 36px;
}
@media screen and (max-width: 767px) {
  .l-main--top .p-flow__text {
    font-size: 1.8rem;
    margin: 40px 0 36px;
  }
}
@media screen and (max-width: 499px) {
  .l-main--top .p-flow__text {
    font-size: 1.6rem;
  }
}
.l-main--top .p-flow__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 0 26px;
}
@media screen and (max-width: 767px) {
  .l-main--top .p-flow__list {
    grid-template-columns: 1fr 1fr;
    grid-gap: 26px;
  }
}
.l-main--top .p-flow__item {
  text-align: center;
}
.l-main--top .p-flow__item:nth-of-type(1) .p-flow__item-step {
  width: 132px;
}
@media screen and (max-width: 999px) {
  .l-main--top .p-flow__item:nth-of-type(1) .p-flow__item-step {
    width: 92px;
  }
}
@media screen and (max-width: 767px) {
  .l-main--top .p-flow__item:nth-of-type(1) .p-flow__item-step {
    width: 132px;
  }
}
@media screen and (max-width: 499px) {
  .l-main--top .p-flow__item:nth-of-type(1) .p-flow__item-step {
    width: 92px;
  }
}
.l-main--top .p-flow__item:nth-of-type(2) .p-flow__item-step {
  width: 143px;
}
@media screen and (max-width: 999px) {
  .l-main--top .p-flow__item:nth-of-type(2) .p-flow__item-step {
    width: 103px;
  }
}
@media screen and (max-width: 767px) {
  .l-main--top .p-flow__item:nth-of-type(2) .p-flow__item-step {
    width: 143px;
  }
}
@media screen and (max-width: 499px) {
  .l-main--top .p-flow__item:nth-of-type(2) .p-flow__item-step {
    width: 103px;
  }
}
.l-main--top .p-flow__item:nth-of-type(3) .p-flow__item-step {
  width: 146px;
}
@media screen and (max-width: 999px) {
  .l-main--top .p-flow__item:nth-of-type(3) .p-flow__item-step {
    width: 106px;
  }
}
@media screen and (max-width: 767px) {
  .l-main--top .p-flow__item:nth-of-type(3) .p-flow__item-step {
    width: 146px;
  }
}
@media screen and (max-width: 499px) {
  .l-main--top .p-flow__item:nth-of-type(3) .p-flow__item-step {
    width: 106px;
  }
}
.l-main--top .p-flow__item:nth-of-type(4) .p-flow__item-step {
  width: 142px;
}
@media screen and (max-width: 999px) {
  .l-main--top .p-flow__item:nth-of-type(4) .p-flow__item-step {
    width: 102px;
  }
}
@media screen and (max-width: 767px) {
  .l-main--top .p-flow__item:nth-of-type(4) .p-flow__item-step {
    width: 142px;
  }
}
@media screen and (max-width: 499px) {
  .l-main--top .p-flow__item:nth-of-type(4) .p-flow__item-step {
    width: 102px;
  }
}
.l-main--top .p-flow__item-imgarea {
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-main--top .p-flow__item-imgarea {
    max-width: 230px;
    margin: 0 auto;
  }
}
.l-main--top .p-flow__item-step {
  position: absolute;
  top: 5%;
  left: -8%;
  height: auto;
}
.l-main--top .p-flow__item-title {
  font-size: 2rem;
  letter-spacing: 0.205em;
  margin: 8px 0 22px;
}
@media screen and (max-width: 999px) {
  .l-main--top .p-flow__item-title {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 499px) {
  .l-main--top .p-flow__item-title {
    margin: 8px 0 12px;
  }
}
.l-main--top .p-flow__item-text {
  font-size: 1.4rem;
  letter-spacing: 0.205em;
  line-height: 1.9285;
  max-width: 162px;
  margin: 0 auto;
}

.l-main--top .p-instagram {
  padding: 146px 0 125px;
}
@media screen and (max-width: 767px) {
  .l-main--top .p-instagram {
    padding: 100px 0;
  }
}
.l-main--top .p-instagram__heading {
  width: 276px;
  height: auto;
  margin: 0 auto 90px;
}
@media screen and (max-width: 767px) {
  .l-main--top .p-instagram__heading {
    width: 236px;
    margin: 0 auto 60px;
  }
}

.l-main--top .p-menu {
  position: relative;
  padding: 151px 0 170px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .l-main--top .p-menu {
    padding: 100px 0;
  }
}
.l-main--top .p-menu__bg, .l-main--top .p-menu__bg02 {
  transform: translateX(-50%);
  width: 1920px;
  height: 837px;
  background-image: url("../img/top/menu/bg_menu.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 1920px) {
  .l-main--top .p-menu__bg, .l-main--top .p-menu__bg02 {
    width: 2560px;
  }
}
.l-main--top .p-menu__bg {
  position: absolute;
  top: 34%;
  left: 50%;
}
.l-main--top .p-menu__bg02 {
  position: absolute;
  bottom: 1%;
  left: 50%;
}
.l-main--top .p-menu__img {
  position: absolute;
  top: 37%;
  left: 0;
  width: 390px;
  height: 574px;
  background-image: url("../img/top/menu/img_menu.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
}
@media only screen and (max-width: 1749px) {
  .l-main--top .p-menu__img {
    top: 28%;
    width: 270px;
    height: 397px;
  }
}
@media screen and (max-width: 1199px) {
  .l-main--top .p-menu__img {
    width: 220px;
    height: 324px;
  }
}
@media screen and (max-width: 999px) {
  .l-main--top .p-menu__img {
    top: 57%;
    width: 180px;
    height: 265px;
  }
}
@media screen and (max-width: 767px) {
  .l-main--top .p-menu__img {
    top: 67%;
    width: 140px;
    height: 206px;
  }
}
@media screen and (max-width: 499px) {
  .l-main--top .p-menu__img {
    top: 69%;
    width: 100px;
    height: 147px;
  }
}
@media only screen and (max-width: 375px) {
  .l-main--top .p-menu__img {
    top: 66%;
  }
}
.l-main--top .p-menu__img02 {
  position: absolute;
  top: 26%;
  right: 0;
  width: 458px;
  height: 749px;
  background-image: url("../img/top/menu/img_menu02.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
}
@media only screen and (max-width: 1749px) {
  .l-main--top .p-menu__img02 {
    width: 270px;
    height: 442px;
  }
}
@media screen and (max-width: 1199px) {
  .l-main--top .p-menu__img02 {
    width: 220px;
    height: 360px;
  }
}
@media screen and (max-width: 999px) {
  .l-main--top .p-menu__img02 {
    width: 180px;
    height: 294px;
  }
}
@media screen and (max-width: 767px) {
  .l-main--top .p-menu__img02 {
    width: 140px;
    height: 229px;
  }
}
@media screen and (max-width: 499px) {
  .l-main--top .p-menu__img02 {
    width: 100px;
    height: 164px;
  }
}
.l-main--top .p-menu__inner {
  max-width: 1075px;
  width: 90%;
  margin: 0 auto;
}
.l-main--top .p-menu__content {
  margin-top: 30px;
  padding: 30px 0 36px;
  background-color: #FCFAF6;
  position: relative;
  box-shadow: 0 0 200px #FCFAF6, 0 0 200px #FCFAF6, 0 0 200px #FCFAF6, 0 0 200px #FCFAF6, 0 0 200px #FCFAF6, 0 0 200px #FCFAF6;
}
@media screen and (max-width: 767px) {
  .l-main--top .p-menu__content {
    margin-top: 0;
  }
}
.l-main--top .p-menu__list02 {
  max-width: 929px;
  margin: 0 auto 123px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0 7.8579%;
}
@media screen and (max-width: 767px) {
  .l-main--top .p-menu__list02 {
    grid-template-columns: 1fr;
    grid-gap: 60px 0;
    margin: 0 auto 60px;
  }
}
.l-main--top .p-menu__item02 {
  font-weight: 700;
  margin-top: 90px;
}
@media screen and (max-width: 767px) {
  .l-main--top .p-menu__item02 {
    margin-top: 0;
  }
}
.l-main--top .p-menu__item02:nth-of-type(1), .l-main--top .p-menu__item02:nth-of-type(2) {
  margin-top: 0;
}
.l-main--top .p-menu__item02:nth-last-of-type(1) {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .l-main--top .p-menu__item02:nth-last-of-type(2) {
    display: none;
  }
}
.l-main--top .p-menu__item02-title {
  font-size: 3rem;
  font-family: "Tangerine", cursive;
  line-height: 1;
  text-align: center;
  border-bottom: 1px solid #361502;
  padding-bottom: 5px;
  letter-spacing: 0.205em;
}
.l-main--top .p-menu__item02-flex {
  margin-top: 43px;
  display: flex;
}
@media screen and (max-width: 999px) {
  .l-main--top .p-menu__item02-flex {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .l-main--top .p-menu__item02-flex {
    flex-direction: unset;
  }
}
@media screen and (max-width: 499px) {
  .l-main--top .p-menu__item02-flex {
    flex-direction: column;
  }
}
.l-main--top .p-menu__item02-flex--column {
  flex-direction: column;
}
.l-main--top .p-menu__item02-flex--column .p-menu__item02-price {
  padding-right: 1em;
  text-align: right;
  margin-top: 10px;
}
@media screen and (max-width: 999px) {
  .l-main--top .p-menu__item02-flex--column .p-menu__item02-price {
    padding-right: 0;
  }
}
@media screen and (max-width: 499px) {
  .l-main--top .p-menu__item02-flex--column .p-menu__item02-price {
    margin-top: 5px;
  }
}
.l-main--top .p-menu__item02-text {
  min-width: 56%;
}
@media screen and (max-width: 1199px) {
  .l-main--top .p-menu__item02-text {
    min-width: 53%;
  }
}
@media screen and (max-width: 999px) {
  .l-main--top .p-menu__item02-price {
    text-align: right;
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .l-main--top .p-menu__item02-price {
    margin-top: 0;
  }
}
@media screen and (max-width: 499px) {
  .l-main--top .p-menu__item02-price {
    margin-top: 5px;
  }
}
.l-main--top .p-menu__text {
  text-align: center;
  line-height: 2.47;
  font-weight: 700;
  margin: 58px 0 71px;
}
@media screen and (max-width: 767px) {
  .l-main--top .p-menu__text {
    margin: 40px 0;
  }
}
@media screen and (max-width: 499px) {
  .l-main--top .p-menu__text {
    line-height: 1.7;
  }
}

.l-main--top .p-mv__inner {
  position: relative;
}
.l-main--top .p-mv__slider {
  display: none;
}
.l-main--top .p-mv__slider.slick-initialized {
  display: block;
}
.l-main--top .p-mv__slider-item {
  width: 100%;
}
.l-main--top .p-mv__slider-item img {
  min-height: 800px;
  max-height: 974px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .l-main--top .p-mv__slider-item img {
    min-height: 660px;
  }
}
.l-main--top .p-mv__heading {
  position: absolute;
  top: 35%;
  left: 12%;
  font-size: 4.8rem;
  font-family: "Noto Serif JP", serif;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.205em;
  text-shadow: 0 0 20px #c68447, 0 0 20px #c68447, 0 0 20px #c68447;
}
@media screen and (max-width: 1199px) {
  .l-main--top .p-mv__heading {
    font-size: 4rem;
    left: 13%;
  }
}
@media screen and (max-width: 767px) {
  .l-main--top .p-mv__heading {
    font-size: 3.4rem;
    top: 32%;
    left: 8%;
    padding: 2%;
  }
}
@media screen and (max-width: 767px) {
  .l-main--top .p-mv__heading {
    font-size: 2.9rem;
    left: 1%;
    text-shadow: 0 0 10px #c68447, 0 0 10px #c68447, 0 0 10px #c68447;
  }
}
@media only screen and (max-width: 375px) {
  .l-main--top .p-mv__heading {
    font-size: 2.5rem;
  }
}
.l-main--top .p-mv__heading--text {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  display: inline-block;
  transition: 1.4s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: -webkit-clip-path;
  transition-property: clip-path;
  transition-property: clip-path, -webkit-clip-path;
  white-space: nowrap;
}
.l-main--top .p-mv__heading--text.is-active {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
.l-main--top .p-mv__heading--text:nth-of-type(1) {
  padding: 2% 2% 0 2%;
}
.l-main--top .p-mv__heading--text:nth-of-type(2) {
  padding: 0 2% 2% 2%;
  transition-delay: 0.9s;
}

.l-main--top .p-overview {
  padding: 146px 0 130px;
}
@media screen and (max-width: 767px) {
  .l-main--top .p-overview {
    padding: 100px 0;
  }
}
.l-main--top .p-overview__heading {
  width: 255px;
  height: auto;
  margin: 0 auto 77px;
}
@media screen and (max-width: 767px) {
  .l-main--top .p-overview__heading {
    width: 215px;
    margin: 0 auto 60px;
  }
}
.l-main--top .p-overview__content {
  position: relative;
  box-shadow: 1px -1px 18px rgba(15, 14, 14, 0.39);
  background-color: #fff;
  transition: 0.3s all ease;
}
.l-main--top .p-overview__content:hover {
  box-shadow: none;
  opacity: 0.7;
}
.l-main--top .p-overview__link {
  position: absolute;
  width: 50%;
  height: 100%;
}
.l-main--top .p-overview__link--lomilomi {
  position: absolute;
  top: 0;
  left: 0;
}
.l-main--top .p-overview__link--yomogisteam {
  position: absolute;
  top: 0;
  right: 0;
}

.l-main--top .p-recommended {
  position: relative;
  background-color: #E6E0DB;
  padding: 150px 0 175px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .l-main--top .p-recommended {
    padding: 100px 0;
  }
}
.l-main--top .p-recommended__bg {
  position: absolute;
  top: 3%;
  left: 50%;
  transform: translateX(-50%);
  width: 1920px;
  height: 1393px;
  background-image: url("../img/top/recommended/bg_recommended.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 1920px) {
  .l-main--top .p-recommended__bg {
    width: 2560px;
  }
}
.l-main--top .p-recommended__bg02 {
  position: absolute;
  bottom: -15%;
  left: 50%;
  transform: translateX(-50%);
  width: 1920px;
  height: 1393px;
  background-image: url("../img/top/recommended/bg_recommended.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.l-main--top .p-recommended__img {
  position: absolute;
  top: 4%;
  left: 0;
  width: 343px;
  height: 223px;
  background-image: url("../img/top/recommended/img_recommended.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 999px) {
  .l-main--top .p-recommended__img {
    top: 0%;
    width: 250px;
    height: 163px;
  }
}
@media screen and (max-width: 767px) {
  .l-main--top .p-recommended__img {
    width: 150px;
    height: 98px;
  }
}
.l-main--top .p-recommended__img02 {
  position: absolute;
  top: 50%;
  right: 0;
  width: 211px;
  height: 182px;
  background-image: url("../img/top/recommended/img_recommended02.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
}
@media screen and (max-width: 1199px) {
  .l-main--top .p-recommended__img02 {
    top: 80%;
  }
}
@media screen and (max-width: 999px) {
  .l-main--top .p-recommended__img02 {
    width: 150px;
    height: 129px;
  }
}
@media screen and (max-width: 767px) {
  .l-main--top .p-recommended__img02 {
    top: unset;
    bottom: -1%;
  }
}
.l-main--top .p-recommended__inner {
  max-width: 1364px;
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.l-main--top .p-recommended__heading {
  width: 390px;
  height: auto;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-main--top .p-recommended__heading {
    width: 350px;
  }
}
@media screen and (max-width: 499px) {
  .l-main--top .p-recommended__heading {
    width: 310px;
  }
}
@media only screen and (max-width: 375px) {
  .l-main--top .p-recommended__heading {
    width: 288px;
  }
}
.l-main--top .p-recommended__text {
  font-size: 2rem;
  line-height: 2;
  letter-spacing: 0.205em;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  margin: 62px 0 47px;
}
@media screen and (max-width: 767px) {
  .l-main--top .p-recommended__text {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 499px) {
  .l-main--top .p-recommended__text {
    font-size: 1.6rem;
    margin: 40px 0 30px;
  }
}
.l-main--top .p-recommended__list {
  max-width: 1076px;
  margin: 0 auto 85px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 0 70px;
}
@media screen and (max-width: 1199px) {
  .l-main--top .p-recommended__list {
    grid-gap: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .l-main--top .p-recommended__list {
    grid-template-columns: 1fr;
    grid-gap: 40px 0;
    margin: 0 auto 60px;
  }
}
.l-main--top .p-recommended__item {
  background-color: #361502;
  border-radius: 3px;
}
@media screen and (max-width: 767px) {
  .l-main--top .p-recommended__item {
    max-width: 312px;
    margin: 0 auto;
  }
}
.l-main--top .p-recommended__item-top {
  position: relative;
}
.l-main--top .p-recommended__item-label {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.5);
  width: 100%;
  font-size: 1.8rem;
  letter-spacing: 0.205em;
  line-height: 1.4444;
  padding: 12px 25px;
}
@media screen and (max-width: 1199px) {
  .l-main--top .p-recommended__item-label {
    font-size: 1.6rem;
    padding: 12px 18px;
  }
}
@media screen and (max-width: 999px) {
  .l-main--top .p-recommended__item-label {
    font-size: 1.5rem;
    padding: 12px 3px;
  }
}
@media screen and (max-width: 767px) {
  .l-main--top .p-recommended__item-label {
    font-size: 1.6rem;
    padding: 12px 18px;
  }
}
.l-main--top .p-recommended__item-text {
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.7142;
  letter-spacing: 0.205em;
  padding: 30px 35px 15px 35px;
}
@media screen and (max-width: 999px) {
  .l-main--top .p-recommended__item-text {
    padding: 20px 20px 15px 20px;
  }
}
.l-main--top .p-recommended__list02 {
  max-width: 1364px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.l-main--top .p-recommended__item02 {
  width: 32.355%;
}
@media screen and (max-width: 1199px) {
  .l-main--top .p-recommended__item02 {
    width: 49.2663%;
  }
}
@media screen and (max-width: 767px) {
  .l-main--top .p-recommended__item02 {
    width: 100%;
    max-width: 441px;
  }
}
.l-main--top .p-recommended__item02:nth-of-type(1) {
  margin-right: 1.4673%;
}
@media screen and (max-width: 767px) {
  .l-main--top .p-recommended__item02:nth-of-type(1) {
    margin-right: 0;
    margin-top: 20px;
  }
}
.l-main--top .p-recommended__item02:nth-of-type(2) {
  margin-right: 1.4673%;
}
@media screen and (max-width: 1199px) {
  .l-main--top .p-recommended__item02:nth-of-type(2) {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .l-main--top .p-recommended__item02:nth-of-type(2) {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .l-main--top .p-recommended__item02:nth-of-type(3) {
    margin-top: 1.4673%;
  }
}
@media screen and (max-width: 767px) {
  .l-main--top .p-recommended__item02:nth-of-type(3) {
    margin-top: 20px;
  }
}

.l-main--top .p-reviews {
  padding: 150px 0 132px;
  background-image: url("../img/top/reviews/bg_reviews.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .l-main--top .p-reviews {
    padding: 100px 0;
  }
}
.l-main--top .p-reviews__heading {
  width: 215px;
  height: auto;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-main--top .p-reviews__heading {
    width: 175px;
  }
}
.l-main--top .p-reviews__text {
  font-size: 2rem;
  line-height: 2;
  letter-spacing: 0.205em;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  margin: 62px 0 50px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .l-main--top .p-reviews__text {
    font-size: 1.8rem;
    margin: 40px 0;
  }
}
@media screen and (max-width: 499px) {
  .l-main--top .p-reviews__text {
    font-size: 1.6rem;
  }
}
.l-main--top .p-reviews__flex {
  display: flex;
}
@media screen and (max-width: 767px) {
  .l-main--top .p-reviews__flex {
    flex-direction: column;
    align-items: center;
  }
}
.l-main--top .p-reviews__left {
  width: 48.841%;
  margin-right: 5.51%;
}
@media screen and (max-width: 1199px) {
  .l-main--top .p-reviews__left {
    width: 50.841%;
    margin-right: 3.51%;
  }
}
.l-main--top .p-reviews__img {
  width: 92.9546%;
  height: auto;
  margin-bottom: 31px;
}
@media screen and (max-width: 767px) {
  .l-main--top .p-reviews__img {
    width: 100%;
    max-width: 450px;
  }
}
.l-main--top .p-reviews__btn {
  background-color: #fff;
  border-radius: 52px;
}
@media screen and (max-width: 767px) {
  .l-main--top .p-reviews__btn {
    width: 100%;
    max-width: 450px;
  }
}
.l-main--top .p-reviews__link {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  padding: 19px 19px 19px 0;
  border-radius: 52px;
  position: relative;
}
.l-main--top .p-reviews__link:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 12px;
  height: 21px;
  background-image: url("../img/common/arrow_common.svg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.l-main--top .p-reviews__link img {
  width: 209px;
  margin-right: 22px;
}
@media screen and (max-width: 999px) {
  .l-main--top .p-reviews__link img {
    width: 164px;
    margin-right: 5px;
  }
}
@media screen and (max-width: 767px) {
  .l-main--top .p-reviews__link img {
    width: 209px;
    margin-right: 12px;
  }
}
@media screen and (max-width: 499px) {
  .l-main--top .p-reviews__link img {
    width: 150px;
  }
}
@media only screen and (max-width: 375px) {
  .l-main--top .p-reviews__link img {
    width: 120px;
    margin-right: 6px;
  }
}
.l-main--top .p-reviews__link-text {
  font-size: 2.649rem;
  letter-spacing: 0.1em;
  line-height: 1.0977;
  text-align: right;
}
@media screen and (max-width: 999px) {
  .l-main--top .p-reviews__link-text {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .l-main--top .p-reviews__link-text {
    font-size: 2.649rem;
  }
}
@media screen and (max-width: 499px) {
  .l-main--top .p-reviews__link-text {
    font-size: 1.8rem;
  }
}
.l-main--top .p-reviews__img02 {
  width: 46.1%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .l-main--top .p-reviews__img02 {
    width: 100%;
    max-width: 450px;
    margin-bottom: 31px;
  }
}

.l-main--top .p-slider {
  padding: 135px 0 207px;
  background-color: #E2DAD3;
}
@media screen and (max-width: 767px) {
  .l-main--top .p-slider {
    padding: 100px 0;
  }
}
.l-main--top .p-slider .c-section__inner {
  width: 80%;
}
@media only screen and (max-width: 1599px) {
  .l-main--top .p-slider .c-section__inner {
    max-width: 800px;
  }
}
.l-main--top .p-slider__text {
  font-size: 2rem;
  line-height: 2;
  letter-spacing: 0.205em;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .l-main--top .p-slider__text {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 499px) {
  .l-main--top .p-slider__text {
    font-size: 1.6rem;
    letter-spacing: 0.1em;
  }
}
.l-main--top .p-slider__main-list {
  display: none;
}
.l-main--top .p-slider__main-list .slick-list {
  filter: drop-shadow(0 0 6px rgba(15, 14, 14, 0.39));
}
.l-main--top .p-slider__main-list.slick-initialized {
  display: block;
}
.l-main--top .p-slider__main-item img {
  border-radius: 3px;
  height: 606px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 1599px) {
  .l-main--top .p-slider__main-item img {
    height: 485px;
  }
}
@media only screen and (max-width: 1249px) {
  .l-main--top .p-slider__main-item img {
    height: 48.48vw;
  }
}
.l-main--top .p-slider__thumbnail-list {
  margin: 0 -4.5px;
  display: none;
}
.l-main--top .p-slider__thumbnail-list.slick-initialized {
  display: block;
}
.l-main--top .p-slider__thumbnail-item {
  margin: 25px 4.5px 0;
  cursor: pointer;
  transition: 0.3s all ease;
}
@media screen and (max-width: 767px) {
  .l-main--top .p-slider__thumbnail-item {
    margin: 15px 4.5px 0;
  }
}
.l-main--top .p-slider__thumbnail-item:hover {
  opacity: 0.7;
}
.l-main--top .p-slider__thumbnail-item img {
  height: 95px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 1249px) {
  .l-main--top .p-slider__thumbnail-item img {
    height: 7.6vw;
  }
}
@media screen and (max-width: 767px) {
  .l-main--top .p-slider__thumbnail-item img {
    height: 12.6vw;
  }
}
.l-main--top .p-slider__arrow-img {
  transform: translateY(-50%);
  width: 38px;
  height: 84px;
  cursor: pointer;
  transition: 0.3s all ease;
}
@media only screen and (max-width: 1599px) {
  .l-main--top .p-slider__arrow-img {
    width: 30px;
    height: 66px;
  }
}
@media screen and (max-width: 999px) {
  .l-main--top .p-slider__arrow-img {
    width: 25px;
    height: 55px;
  }
}
@media screen and (max-width: 767px) {
  .l-main--top .p-slider__arrow-img {
    width: 18px;
    height: 40px;
  }
}
@media screen and (max-width: 499px) {
  .l-main--top .p-slider__arrow-img {
    width: 15px;
    height: 33px;
  }
}
.l-main--top .p-slider__arrow-img:hover {
  opacity: 0.7;
}
.l-main--top .p-slider__arrow-img--prev {
  position: absolute;
  top: 50%;
  left: -7%;
}
@media screen and (max-width: 499px) {
  .l-main--top .p-slider__arrow-img--prev {
    left: -8%;
  }
}
.l-main--top .p-slider__arrow-img--next {
  position: absolute;
  top: 50%;
  right: -7%;
}
@media screen and (max-width: 499px) {
  .l-main--top .p-slider__arrow-img--next {
    right: -8%;
  }
}

.l-main--yomogisteam .p-about {
  padding: 0 0 137px;
  background-color: #F5F1ED;
}
@media screen and (max-width: 767px) {
  .l-main--yomogisteam .p-about {
    padding: 0 0 100px;
  }
}
.l-main--yomogisteam .p-about__top {
  position: relative;
  padding: 73px 0 83px;
}
@media screen and (max-width: 767px) {
  .l-main--yomogisteam .p-about__top {
    padding: 60px 0;
  }
}
.l-main--yomogisteam .p-about__top:before, .l-main--yomogisteam .p-about__top:after {
  content: "";
  width: 100%;
  height: 50%;
}
.l-main--yomogisteam .p-about__top:before {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #F5F1ED;
}
.l-main--yomogisteam .p-about__top:after {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #C9B7A9;
}
.l-main--yomogisteam .p-about__top-img {
  position: absolute;
  bottom: 10%;
  left: 0;
  width: 197px;
  height: 514px;
  background-image: url("../img/yomogisteam/about/img_about.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 2;
}
.l-main--yomogisteam .p-about__top-img02 {
  position: absolute;
  top: 10%;
  right: 0;
  width: 199px;
  height: 514px;
  background-image: url("../img/yomogisteam/about/img_about02.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 2;
}
.l-main--yomogisteam .p-about__heading {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto 110px;
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.205em;
  line-height: 1.7222;
  font-family: "Noto Serif JP", serif;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .l-main--yomogisteam .p-about__heading {
    font-size: 2.6rem;
    margin: 0 auto 60px;
  }
}
@media screen and (max-width: 499px) {
  .l-main--yomogisteam .p-about__heading {
    font-size: 2.4rem;
    letter-spacing: 0.1em;
  }
}
.l-main--yomogisteam .p-about__img {
  max-width: 879px;
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.l-main--yomogisteam .p-about .c-about__list {
  margin: 144px 0 70px;
}
@media screen and (max-width: 767px) {
  .l-main--yomogisteam .p-about .c-about__list {
    margin: 60px 0 40px;
  }
}
.l-main--yomogisteam .p-about .c-btn02__link {
  background-image: url("../img/yomogisteam/about/bg_about.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

@media screen and (max-width: 767px) {
  .l-main--yomogisteam .c-hero {
    height: 367px;
  }
}
@media screen and (max-width: 499px) {
  .l-main--yomogisteam .c-hero {
    height: 327px;
  }
}
@media only screen and (max-width: 375px) {
  .l-main--yomogisteam .c-hero__heading {
    font-size: 3.4rem;
  }
}

.l-main--yomogisteam .p-overview {
  padding: 315px 0 100px;
  background-color: #FCFAF6;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .l-main--yomogisteam .p-overview {
    padding: 100px 0;
  }
}
.l-main--yomogisteam .p-overview .c-overview__item + .c-overview__item {
  margin-top: 62px;
}
.l-main--yomogisteam .p-overview .c-overview__item:nth-of-type(1) .c-overview__item-textarea {
  margin-top: -125px;
}
@media screen and (max-width: 767px) {
  .l-main--yomogisteam .p-overview .c-overview__item:nth-of-type(1) .c-overview__item-textarea {
    margin-top: 0;
  }
}
.l-main--yomogisteam .p-overview .c-overview__item-label:before {
  background-image: url("../img/yomogisteam/overview/img_overview.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.l-main--yomogisteam .p-overview .c-overview__item-title {
  margin-bottom: 15px;
}
.l-main--yomogisteam .p-overview__menu {
  display: flex;
  align-items: center;
  max-width: 938px;
  margin: 93px auto 0;
}
@media screen and (max-width: 767px) {
  .l-main--yomogisteam .p-overview__menu {
    flex-direction: column-reverse;
  }
}
.l-main--yomogisteam .p-overview__menu-img {
  width: 49.6801%;
  margin-right: 5%;
}
@media screen and (max-width: 767px) {
  .l-main--yomogisteam .p-overview__menu-img {
    width: 100%;
    max-width: 466px;
    margin: 40px auto 0;
  }
}
.l-main--yomogisteam .p-overview__menu-textarea {
  width: 45.3199%;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .l-main--yomogisteam .p-overview__menu-textarea {
    width: 100%;
  }
}
.l-main--yomogisteam .p-overview__menu-title {
  font-size: 3rem;
  font-family: "Tangerine", cursive;
  line-height: 1;
  text-align: center;
  border-bottom: 1px solid #361502;
  padding-bottom: 5px;
  letter-spacing: 0.205em;
  position: relative;
}
.l-main--yomogisteam .p-overview__menu-title:before {
  content: "";
  position: absolute;
  bottom: 10px;
  left: calc(50% - 130px);
  transform: translateX(-50%);
  width: 54px;
  height: 51px;
  background-image: url("../img/common/menu/icon_menu.svg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.l-main--yomogisteam .p-overview__menu-deco {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.4rem;
  letter-spacing: 0.205em;
}
.l-main--yomogisteam .p-overview__menu-deco:before, .l-main--yomogisteam .p-overview__menu-deco:after {
  content: "";
  width: 18px;
  height: 1.5px;
  background-color: #361502;
}
.l-main--yomogisteam .p-overview__menu-deco:before {
  position: absolute;
  top: 20%;
  left: -18px;
  transform: translateY(-50%) rotate(53deg);
}
.l-main--yomogisteam .p-overview__menu-deco:after {
  position: absolute;
  top: 20%;
  right: -15px;
  transform: translateY(-50%) rotate(-53deg);
}
.l-main--yomogisteam .p-overview__menu-flex {
  display: flex;
  margin: 30px auto 0;
  width: 90%;
}
@media screen and (max-width: 999px) {
  .l-main--yomogisteam .p-overview__menu-flex {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .l-main--yomogisteam .p-overview__menu-flex {
    flex-direction: unset;
  }
}
@media screen and (max-width: 499px) {
  .l-main--yomogisteam .p-overview__menu-flex {
    flex-direction: column;
  }
}
.l-main--yomogisteam .p-overview__menu-text {
  min-width: 68%;
}
@media screen and (max-width: 999px) {
  .l-main--yomogisteam .p-overview__menu-price {
    text-align: right;
  }
}
.l-main--yomogisteam .p-overview__bottom {
  font-weight: 700;
  max-width: 625px;
  margin: 60px auto 0;
}
.l-main--yomogisteam .p-overview__bottom-title {
  padding-bottom: 10px;
  border-bottom: 1px solid #361502;
  margin-bottom: 30px;
  text-align: center;
}
.l-main--yomogisteam .p-overview__bottom-flex {
  display: flex;
  width: 95%;
  margin: 0 auto;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .l-main--yomogisteam .p-overview__bottom-flex {
    align-items: unset;
    flex-direction: column;
  }
}
.l-main--yomogisteam .p-overview__bottom-flex + .p-overview__bottom-flex {
  margin-top: 36px;
}
.l-main--yomogisteam .p-overview__bottom-textarea {
  min-width: 80%;
}
.l-main--yomogisteam .p-overview__bottom-text + .p-overview__bottom-text {
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .l-main--yomogisteam .p-overview__bottom-price {
    text-align: right;
  }
}
/*# sourceMappingURL=style.css.map */