@charset "UTF-8";
:root {
  --base-font: "Noto Sans JP", sans-serif;
  --sub-font: "Shippori Mincho B1", serif;
  --en-font: "Cormorant SC", serif;
  --en-font2: "Cormorant Infant", serif;
  --base-color: #44413C;
  --gold: #DED092;
  --gold2: #9E8A30;
  --white: #fff;
  --light-brown: #F3F0EB;
  --brown2: #DDD2BE;
  --brown-text: #3C2D1E;
  --green: #0d6f45;
  --light-green: #d3e9e1;
}

/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* 81-LTT */
/* clearfix */
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

/* flex */
.flex, .flexA, .flexB, .flexC {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flexA {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.flexB {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flexC {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.en {
  font-family: var(--en-font);
}

.min {
  font-family: var(--sub-font);
}

/*------------------------------------------------------------
	common
------------------------------------------------------------*/
.content {
  margin: 0 auto;
  max-width: 120rem;
}
.content.wid02 {
  max-width: 110rem;
}
@media all and (max-width: 896px) {
  .content {
    margin: 0 2rem;
    max-width: inherit !important;
  }
}

/*------------------------------------------------------------
	headLine01
------------------------------------------------------------*/
.headLine01 {
  margin-bottom: 7.5rem;
  padding-bottom: 2rem;
  position: relative;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.04rem;
  line-height: 1.2;
  font-family: var(--sub-font);
  border-bottom: 1px solid var(--light-brown);
}
.headLine01:after {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 6rem;
  height: 1px;
  background-color: var(--gold2);
  content: "";
}
.headLine01 .en {
  margin-left: -0.5rem;
  display: inline-block;
  font-size: 14rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.06rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#E0D088), color-stop(98.61%, #78692B));
  background: linear-gradient(180deg, #E0D088 0%, #78692B 98.61%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media all and (max-width: 896px) {
  .headLine01 {
    margin-bottom: 6rem;
    padding-bottom: 1.3rem;
    font-size: 1.4rem;
    line-height: 1.4;
  }
  .headLine01:after {
    width: 4rem;
  }
  .headLine01 .en {
    margin: -0.1rem 0 0;
    font-size: 6rem;
    letter-spacing: 0;
  }
}

/*------------------------------------------------------------
	headLine02
------------------------------------------------------------*/
.headLine02 {
  margin-bottom: 4rem;
  font-size: 3.4rem;
  font-weight: 500;
  line-height: 1.6;
  font-family: YakuHanMP, var(--sub-font);
}
@media all and (max-width: 896px) {
  .headLine02 {
    margin-bottom: 2rem;
    font-size: 2.2rem;
  }
}

/*------------------------------------------------------------
	fixBtn
------------------------------------------------------------*/
.fixBtn {
  position: fixed;
  right: 3rem;
  bottom: 3rem;
  width: 14rem;
  background-color: var(--base-color);
  border-radius: 50%;
  z-index: 101;
}
.fixBtn a {
  padding: 2.2rem 2rem;
  height: 14rem;
  display: block;
  position: relative;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.05;
  text-align: center;
  border-radius: 50%;
  background: var(--base-color) url(../img/common/icon03.webp) no-repeat center bottom 2.5rem/0.9rem;
}
.fixBtn a .txt {
  display: inline-block;
  background: -webkit-gradient(linear, left top, left bottom, from(#E0D088), color-stop(98.61%, #867114));
  background: linear-gradient(180deg, #E0D088 0%, #867114 98.61%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.fixBtn a .large {
  font-size: 2.1rem;
  font-weight: 500;
}
.fixBtn a .enTxt {
  font-size: 2.2rem;
  font-weight: 500;
}
.fixBtn a img {
  display: block;
  margin: 0 auto 0.2rem;
  width: 3.7rem;
}
@media all and (min-width: 1025px) {
  .fixBtn a:hover {
    opacity: 0.65;
  }
}
@media all and (max-width: 896px) {
  .fixBtn {
    display: none;
  }
}

/*------------------------------------------------------------
	fadeIn
------------------------------------------------------------*/
.fadeInUp {
  opacity: 0;
  -webkit-transform: translateY(7rem);
          transform: translateY(7rem);
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}

.fadeInUp.on {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.fadeIn {
  opacity: 0;
  -webkit-transition: opacity 1.5s ease;
  transition: opacity 1.5s ease;
}

.fadeIn.on {
  opacity: 1;
}

/*------------------------------------------------------------
	comBtn
------------------------------------------------------------*/
.comBtn {
  text-align: center;
}
.comBtn a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  min-height: 5.5rem;
  padding: 0.5rem 4rem;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 5rem;
  background: var(--brown2);
}
.comBtn a .sub {
  display: inline-block;
  padding-right: 2.3rem;
  text-align: left;
  background: url(../img/common/icon07.webp) no-repeat right center/0.7rem;
}
@media all and (min-width: 1025px) {
  .comBtn a:hover {
    opacity: 0.65;
  }
}
@media all and (max-width: 896px) {
  .comBtn {
    text-align: center;
  }
  .comBtn a {
    padding: 0.5rem 3rem;
    font-size: 1.5rem;
  }
}

/*------------------------------------------------------------
    comInfo
------------------------------------------------------------*/
.comInfo {
  width: 52rem;
}
.comInfo .bgTtl {
  margin-bottom: 1.3rem;
  padding: 0.6rem 0.5rem 0.7rem;
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.12rem;
  background: -webkit-gradient(linear, left top, right top, from(rgba(130, 109, 18, 0)), color-stop(18%, rgba(130, 109, 18, 0.35)), color-stop(40%, #BEB27B), color-stop(70%, #826D12), to(rgba(130, 109, 18, 0)));
  background: linear-gradient(90deg, rgba(130, 109, 18, 0) 0%, rgba(130, 109, 18, 0.35) 18%, #BEB27B 40%, #826D12 70%, rgba(130, 109, 18, 0) 100%);
}
.comInfo .logo {
  margin: 0 auto 1.2rem;
  width: 26rem;
  -webkit-transform: translateX(-1rem);
          transform: translateX(-1rem);
}
.comInfo .addBox {
  margin-bottom: 2rem;
  padding: 0.6rem 0 1.9rem;
  border-top: 1px solid var(--gold2);
  border-bottom: 1px solid var(--gold2);
}
.comInfo .addBox p {
  margin-bottom: 0.9rem;
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 0.084rem;
}
.comInfo .addList {
  margin-left: 0.2rem;
}
.comInfo .addList li {
  color: var(--gold2);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.192rem;
  line-height: 1.44;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.comInfo .addList li:not(:last-child) {
  margin-bottom: 0.6rem;
}
.comInfo .addList li::before {
  margin: 0 0.9rem 0 0;
  width: 1.8rem;
  aspect-ratio: 18/25;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  content: "";
  background: url(../img/common/icon04.webp) no-repeat left top/100%;
}
.comInfo .addList li.car:before {
  margin: 0.4rem 0.6rem 0 -0.3rem;
  width: 2.4rem;
  aspect-ratio: 24/18;
  background-image: url(../img/common/icon05.webp);
}
.comInfo .addList li .notes {
  margin-top: 0.2rem;
  display: block;
  color: var(--base-color);
  font-size: 1.2rem;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.072rem;
  padding-left: 1.1em;
  text-indent: -1.1em;
}
.comInfo .btnList {
  margin-bottom: 2rem;
}
.comInfo .btnList li {
  width: 48%;
}
.comInfo .btnList li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 5rem;
  padding: 0.3rem 0.5rem 0.5rem 1rem;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.096rem;
  background: var(--brown2);
  border-radius: 5rem;
}
.comInfo .btnList li a .sub {
  padding-left: 1.9rem;
  display: inline-block;
  background: url(../img/common/icon06.webp) no-repeat left 0.5rem/1.3rem;
}
@media all and (min-width: 1025px) {
  .comInfo .btnList li a:hover {
    opacity: 0.65;
  }
}
.comInfo .btnList li.reserve a {
  position: relative;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-left: 2.7rem;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.08rem;
  background-color: var(--base-color);
}
.comInfo .btnList li.reserve a .sub {
  padding-left: 0;
  display: inline-block;
  background: -webkit-gradient(linear, left top, left bottom, from(#E0D088), color-stop(98.61%, #867114));
  background: linear-gradient(180deg, #E0D088 0%, #867114 98.61%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.comInfo .btnList li.reserve a .sub .space {
  margin-left: -0.2rem;
  letter-spacing: -0.5rem;
}
.comInfo .btnList li.reserve a:after {
  position: absolute;
  bottom: 0;
  right: 0;
  content: "";
  width: 7rem;
  aspect-ratio: 140/132;
  background: url(../img/common/btn_img.webp) no-repeat left top/100%;
}
.comInfo .schedule {
  padding: 1.6rem 4rem 1.5rem;
  background: var(--light-brown);
}
.comInfo .schedule table {
  width: 100%;
  border-spacing: 0;
}
.comInfo .schedule table th, .comInfo .schedule table td {
  padding: 1rem 0 0.5rem;
  font-size: 1.6rem;
  line-height: 1;
  text-align: center;
  vertical-align: middle;
}
.comInfo .schedule table th {
  font-weight: 400;
  letter-spacing: 0.096rem;
}
.comInfo .schedule table tbody th {
  width: 39.5%;
}
.comInfo .schedule table tbody td {
  width: 8%;
}
.comInfo .schedule table tbody td:last-child {
  padding-right: 2rem !important;
  width: auto;
}
.comInfo .schedule table tbody tr:last-child th, .comInfo .schedule table tbody tr:last-child td {
  padding: 0.4rem 0 1.1rem;
  border-bottom: 1px solid var(--base-color);
}
.comInfo .schedule table thead th {
  padding: 1rem 0;
  border-bottom: 1px solid var(--base-color);
}
.comInfo .schedule table thead th:last-child {
  padding-right: 2rem;
  width: auto;
}
.comInfo .schedule .notes {
  margin-top: 0.4rem;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.084rem;
  text-align: right;
}
@media all and (max-width: 896px) {
  .comInfo {
    width: auto;
  }
  .comInfo .bgTtl {
    margin-bottom: 1rem;
    padding: 0.6rem 0.5rem 0.8rem;
    font-size: 1.4rem;
    letter-spacing: 0.112rem;
  }
  .comInfo .logo {
    margin-bottom: 0.9rem;
    width: 22rem;
  }
  .comInfo .addBox {
    margin-bottom: 3rem;
    padding: 0.9rem 0 1.3rem;
  }
  .comInfo .addBox p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  .comInfo .addList li {
    font-size: 1.4rem;
    letter-spacing: 0.168rem;
    line-height: 1.2;
  }
  .comInfo .addList li:not(:last-child) {
    margin-bottom: 0.8rem;
  }
  .comInfo .addList li::before {
    margin: -0.3rem 0.9rem 0 0;
    width: 1.6rem;
  }
  .comInfo .addList li.car:before {
    margin: 0 0.6rem 0 -0.3rem;
    width: 2.2rem;
  }
  .comInfo .addList li .notes {
    margin-top: 0.4rem;
    font-size: 1.2rem;
    line-height: 1.6;
  }
  .comInfo .btnList {
    margin: 0 auto 3rem;
    gap: 2rem 0;
    width: 28rem;
  }
  .comInfo .btnList li {
    width: 100%;
  }
  .comInfo .btnList li a {
    height: 6rem;
    padding: 0.2rem 0.5rem 0.5rem 1.3rem;
    font-size: 2.8rem;
    letter-spacing: 0.112rem;
  }
  .comInfo .btnList li a .sub {
    padding-left: 2.1rem;
    background-position: left 0.6rem;
    background-size: 1.5rem;
  }
  .comInfo .btnList li.reserve a {
    padding-left: 3.1rem;
    font-size: 2.2rem;
    letter-spacing: 0.08rem;
  }
  .comInfo .btnList li.reserve a .sub .space {
    margin-left: -0.3rem;
    letter-spacing: -0.6rem;
  }
  .comInfo .schedule {
    padding: 1.7rem 2rem 1.8rem;
  }
  .comInfo .schedule table th, .comInfo .schedule table td {
    font-size: 1.4rem;
  }
  .comInfo .schedule table th {
    letter-spacing: 0.084rem;
  }
  .comInfo .schedule table tbody td {
    width: 8.4%;
  }
  .comInfo .schedule table tbody td:last-child {
    padding-right: 0.5rem !important;
    width: auto;
  }
  .comInfo .schedule table thead th:last-child {
    padding-right: 0.5rem;
  }
  .comInfo .schedule .notes {
    margin-top: 0.2rem;
  }
}

/*------------------------------------------------------------
    comContact
------------------------------------------------------------*/
.comContact {
  position: relative;
  z-index: 1;
}
.comContact .lBox {
  padding: 8.9rem 2rem 8rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(#D8D3BD), color-stop(39.44%, #FFFCF0));
  background: linear-gradient(180deg, #D8D3BD 0%, #FFFCF0 39.44%);
}
.comContact .lBox:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  background: url(../img/common/com_bg.webp) repeat left top/25rem;
  content: "";
}
.comContact .comInfo {
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.comContact .map {
  width: 50%;
}
.comContact .map iframe {
  display: block;
  width: 100%;
  height: 100%;
}
@media all and (max-width: 896px) {
  .comContact {
    display: block;
  }
  .comContact .lBox {
    padding: 6rem 2rem 5rem;
  }
  .comContact .map {
    width: auto;
    aspect-ratio: 375/300;
  }
}

/*------------------------------------------------------------
    spFixdBtn
------------------------------------------------------------*/
.spFixdBtn {
  position: sticky;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}
.spFixdBtn li {
  width: 25%;
}
.spFixdBtn li:not(:last-child) {
  border-right: 1px solid var(--gold2);
}
.spFixdBtn li a {
  padding: 1.2rem 0.5rem 1.1rem;
  display: block;
  color: var(--gold2);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  background-color: var(--white);
}
.spFixdBtn li a img {
  height: 1.9rem;
}
.spFixdBtn li a span {
  margin-top: 0.3rem;
  display: block;
}

/*------------------------------------------------------------
    wave
------------------------------------------------------------*/
.wave {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.wave img {
  width: 100%;
}

/*------------------------------------------------------------
    comTreatment
------------------------------------------------------------*/
.comTreatment {
  padding: 16.6rem 0 24.5rem;
  position: relative;
  background: #282100;
}
.comTreatment:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  background: url(../img/common/treatment_bg.webp) no-repeat center top/cover;
  content: "";
}
.comTreatment .wave {
  z-index: 1;
  top: -9.259vw !important;
}
.comTreatment .wave02 {
  top: auto !important;
  bottom: -24.802vw;
}
.comTreatment .content {
  position: relative;
  z-index: 2;
}
.comTreatment .headLine01 {
  margin-bottom: 10rem;
  padding-bottom: 4rem;
  color: var(--white);
  text-align: center;
  letter-spacing: 0.14rem;
  border-color: #4E462A;
}
.comTreatment .headLine01:after {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.comTreatment .headLine01 .en {
  margin-top: -1.1rem;
}
.comTreatment .listUl {
  margin-bottom: 8rem;
  gap: 3rem;
}
.comTreatment .listUl li {
  width: 38rem;
}
.comTreatment .listUl li a {
  position: relative;
  display: block;
  height: 100%;
}
@media all and (min-width: 1025px) {
  .comTreatment .listUl li a:hover {
    opacity: 0.65;
  }
}
.comTreatment .listUl li a .tag {
  position: absolute;
  left: -2rem;
  top: -5rem;
  width: 12rem;
  height: 12rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2rem 1rem;
  color: var(--white);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02rem;
  text-align: center;
  border-radius: 50%;
  z-index: 1;
  background: url(../img/common/treatment_txt_bg.webp) no-repeat left top/100%;
}
.comTreatment .listUl li a .pho {
  position: relative;
}
.comTreatment .listUl li a .pho img {
  width: 100%;
}
.comTreatment .listUl li a .pho .sml {
  position: absolute;
  left: -3.8rem;
  bottom: -1.5rem;
  width: 21.9rem;
  z-index: 2;
}
.comTreatment .listUl li a .pho .logo {
  position: absolute;
  width: 42.3%;
  left: 5.2%;
  top: 46%;
}
.comTreatment .listUl li a .txtBox {
  height: calc(100% - 20rem);
  padding: 2.4rem 1rem 8rem;
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(#A0860F), color-stop(98.61%, #463B0B));
  background: linear-gradient(180deg, #A0860F 0%, #463B0B 98.61%);
}
.comTreatment .listUl li a .txtBox:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  background: url(../img/common/com_bg.webp) repeat left top/25rem;
  content: "";
}
.comTreatment .listUl li a .txtBox:after {
  position: absolute;
  left: 50%;
  bottom: 3rem;
  width: 3.6rem;
  aspect-ratio: 1/1;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../img/common/icon08.webp) no-repeat left top/100%;
  content: "";
}
.comTreatment .listUl li a .txtBox .headLine02 {
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: 3rem;
  line-height: 1.1;
  text-align: center;
}
.comTreatment .listUl li a .txtBox .headLine02 .lineTxt {
  margin-bottom: 1.1rem;
  padding-bottom: 0.9rem;
  display: block;
  position: relative;
  color: var(--gold);
  font-size: 2.4rem;
  line-height: 1.4;
  letter-spacing: 0.04rem;
}
.comTreatment .listUl li a .txtBox .headLine02 .lineTxt:after {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
  width: 34rem;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(130, 109, 18, 0)), color-stop(11%, rgba(130, 109, 18, 0)), color-stop(40%, #BEB27B), color-stop(70%, #826D12), to(rgba(130, 109, 18, 0)));
  background: linear-gradient(90deg, rgba(130, 109, 18, 0) 0%, rgba(130, 109, 18, 0) 11%, #BEB27B 40%, #826D12 70%, rgba(130, 109, 18, 0) 100%);
  content: "";
}
.comTreatment .listUl li a .txtBox .headLine02 .large {
  margin: 0.2rem 0 0.1rem;
  display: inline-block;
  font-size: 4.8rem;
}
.comTreatment .listUl li a .txtBox .headLine02 .en {
  display: inline-block;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.4rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#E0D088), color-stop(98.61%, #78692B));
  background: linear-gradient(180deg, #E0D088 0%, #78692B 98.61%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.comTreatment .linkList {
  gap: 4rem 0;
}
.comTreatment .linkList li {
  width: 20%;
  border-right: 1px solid #4E462A;
}
@media all and (min-width: 897px) {
  .comTreatment .linkList li:nth-child(5n-4) {
    border-left: 1px solid #4E462A;
  }
}
.comTreatment .linkList li a {
  display: block;
  height: 100%;
  padding: 2rem 1.8rem 7.2rem;
  background: url(../img/common/icon08.webp) no-repeat center bottom 2rem/3rem;
}
@media all and (min-width: 1025px) {
  .comTreatment .linkList li a:hover {
    opacity: 0.65;
  }
}
.comTreatment .linkList li a .listImg {
  margin: 0 auto 0.8rem;
  width: 7.2rem;
}
.comTreatment .linkList li a p {
  min-height: 7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: 0.084rem;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  text-align: center;
}
.comTreatment .linkList li a p .large {
  margin-top: 0.5rem;
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#E0D088), color-stop(98.61%, #78692B));
  background: linear-gradient(180deg, #E0D088 0%, #78692B 98.61%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media all and (max-width: 896px) {
  .comTreatment {
    padding: 8.2rem 0 8.2rem;
  }
  .comTreatment:after {
    background-image: url(../img/common/treatment_bg_sp.webp);
    background-position: center top 55%;
  }
  .comTreatment .wave {
    top: -7vw !important;
  }
  .comTreatment .wave02 {
    top: auto !important;
    bottom: -24vw;
  }
  .comTreatment .headLine01 {
    margin-bottom: 4rem;
    padding-bottom: 1.9rem;
    letter-spacing: 0.14rem;
  }
  .comTreatment .headLine01 .en {
    margin-top: 0;
  }
  .comTreatment .listUl {
    margin-bottom: 6.2rem;
    gap: 4rem 0;
  }
  .comTreatment .listUl li {
    width: 100%;
  }
  .comTreatment .listUl li a .tag {
    left: -2rem;
    top: -2rem;
    width: 10rem;
    height: 10rem;
    padding: 1rem 0.5rem;
  }
  .comTreatment .listUl li a .pho {
    aspect-ratio: 335/180;
  }
  .comTreatment .listUl li a .pho > img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .comTreatment .listUl li a .pho .sml {
    left: -2.5%;
    bottom: -7%;
    width: 58.2%;
  }
  .comTreatment .listUl li a .pho .logo {
    width: 47.7%;
    left: 4.5%;
    top: 48%;
  }
  .comTreatment .listUl li a .txtBox {
    padding: 2rem 1rem 8rem;
    height: auto;
  }
  .comTreatment .listUl li a .txtBox .headLine02 {
    font-size: 2.4rem;
  }
  .comTreatment .listUl li a .txtBox .headLine02 .lineTxt {
    margin-bottom: 0.9rem;
    font-size: 2rem;
  }
  .comTreatment .listUl li a .txtBox .headLine02 .large {
    font-size: 4.2rem;
  }
  .comTreatment .linkList {
    gap: 2rem 0;
  }
  .comTreatment .linkList li {
    width: 33.3333333333%;
  }
  .comTreatment .linkList li:nth-child(3n-2) {
    border-left: 1px solid #4E462A;
  }
  .comTreatment .linkList li a {
    padding: 1rem 0.1rem 4rem;
    min-height: 17rem;
    background-position: center bottom 1rem;
  }
  .comTreatment .linkList li a .listImg {
    margin-bottom: 0.6rem;
    width: 6.1rem;
  }
  .comTreatment .linkList li a p {
    min-height: 6.1rem;
    font-size: 1.1rem;
    letter-spacing: 0.066rem;
  }
  .comTreatment .linkList li a p .large {
    margin-top: 0.4rem;
    font-size: 1.6rem;
    line-height: 1.1;
  }
  .comTreatment .linkList li a p .large.large02 {
    font-size: 1.4rem;
    letter-spacing: -0.06rem;
  }
  .comTreatment .linkList li a p .large.line02 {
    margin-top: 0;
  }
  .comTreatment .linkList li a p .large.large03 {
    margin-top: 0.1rem;
  }
}

/*------------------------------------------------------------
    comVisit
------------------------------------------------------------*/
.comVisit {
  padding: 7.1rem 0 14.1rem;
  position: relative;
  background: -webkit-gradient(linear, left top, right top, from(#4E420D), color-stop(40%, #4A3F0D), color-stop(80%, #807231), to(#4E420D));
  background: linear-gradient(90deg, #4E420D 0%, #4A3F0D 40%, #807231 80%, #4E420D 100%);
}
.comVisit::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0.4;
  mix-blend-mode: multiply;
  background: url(../img/common/visit_bg.webp) no-repeat center center/cover;
}
.comVisit::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0.05;
  background: url(../img/common/com_bg.webp) repeat left top/25rem;
}
.comVisit .content {
  position: relative;
  z-index: 1;
}
.comVisit .headLine01 {
  margin-bottom: 1.6rem;
  color: var(--white);
  font-size: 2.4rem;
  letter-spacing: 0.144rem;
  text-align: center;
  border-bottom: none;
}
.comVisit .headLine01:after {
  display: none;
}
.comVisit .headLine01 .en {
  margin: 0 0 0.4rem 1.8rem;
  font-size: 10rem;
  letter-spacing: 2rem;
}
.comVisit .linkUl {
  gap: 4.6rem;
}
.comVisit .linkUl li {
  width: 24rem;
}
.comVisit .linkUl a {
  padding: 3.4rem 2rem 3rem;
  display: block;
  height: 100%;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.132rem;
  text-align: center;
  background: url(../img/common/visit_link_bg.webp) no-repeat left top/100% 100%;
}
.comVisit .linkUl a img {
  margin: 0 auto 1.4rem;
  height: 5.5rem;
}
.comVisit .linkUl a span {
  padding-bottom: 3.4rem;
  display: block;
  background: url(../img/common/icon03.webp) no-repeat center bottom/0.9rem;
}
@media all and (min-width: 1025px) {
  .comVisit .linkUl a:hover {
    opacity: 0.65;
  }
}
@media all and (max-width: 896px) {
  .comVisit {
    padding: 5.2rem 0 8rem;
  }
  .comVisit::after {
    background-image: url(../img/common/visit_bg_sp.webp);
  }
  .comVisit .headLine01 {
    margin-bottom: 2rem;
    font-size: 2rem;
    letter-spacing: 0.1rem;
  }
  .comVisit .headLine01 .en {
    margin: 0 0 0.6rem 0.3rem;
    font-size: 6rem;
    letter-spacing: 0;
  }
  .comVisit .linkUl {
    margin: 0 auto;
    max-width: 33.5rem;
    gap: 2rem 1.5rem;
  }
  .comVisit .linkUl li {
    width: calc((100% - 1.5rem) / 2);
  }
  .comVisit .linkUl a {
    padding: 2.5rem 2rem 3rem;
    font-size: 1.8rem;
    line-height: 1.2;
    letter-spacing: 0.132rem;
    background-image: url(../img/common/visit_link_bg_sp.webp);
  }
  .comVisit .linkUl a img {
    margin-bottom: 0.8rem;
  }
  .comVisit .linkUl a span {
    min-height: 6.2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-bottom: 1.8rem;
  }
}

/*------------------------------------------------------------
    parallax
------------------------------------------------------------*/
.parallax {
  --y: 0px;
  --distance: 0px;
  -webkit-transform: translateY(var(--y)) translateZ(0);
          transform: translateY(var(--y)) translateZ(0);
  will-change: transform;
}
.parallax img {
  isolation: isolate;
}/*# sourceMappingURL=common.css.map */