@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@200;300;400;500;600;700;800;900&display=swap');

html {
  font-family: var(--ff01);
  line-height: 1.8;
  letter-spacing: 1px;
  color: var(--color01);
  background: var(--color02);
}

.txt {
  /* line-height: 2; */
}

button {
  background: none;
  border: none;
}

:root {
  --color01: #4a3d33;
  --color02: #efe4dc;
  --color03: #f3ebe5;
  --bgc01: linear-gradient(175deg, #73462f, #4a3d34);
  --bgc02: linear-gradient(230deg, #73462f, #4a3d34);
  --ff01: 'Noto Sans JP', sans-serif;
  --ff99: "font awesome 5 free";
}

@media (max-width: 1024px) {

  .inner,
  .inner1100,
  .inner1200,
  .inner1300,
  .inner1400,
  .inner1500,
  .inner500,
  .inner600,
  .inner700,
  .inner800,
  .inner900 {
    width: 94%;
  }
}

/*===================================
  基本設定
===================================*/
.color-cmn-01 {
  color: var(--color01);
}

.bgc-cmn-01 {
  background: var(--bgc01);
}

.bgc-cmn-02 {
  background: var(--bgc02);
}

.bgc-cmn-03 {
  background: var(--color03);
}

/* bgi-cmn */
.bgi-cmn-00 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  filter: brightness(0.6);
}

.bgi-cmn-00+* {
  position: relative;
  z-index: 2;
}

.bgi-cmn-01 {
  background: url(/upload/tenant_2/bgi01.webp) no-repeat;
  background-size: cover;
  background-position: top right 60%;
}

.bgi-cmn-02 {
  background: url(/upload/tenant_2/bgi02.webp) no-repeat;
  background-size: cover;
}

/* ttl-cmn */
.ttl-cmn-01 {
  display: flex;
  flex-direction: column;
}

.ttl-cmn-01>span {
  font-size: 54px;
  letter-spacing: .2em;
  margin-right: -0.2em;
  display: block;
  line-height: 1.5;
}

.ttl-cmn-01 span.ja {
  font-size: 100%;
}

.ttl-cmn-01 span.ja02 {
  font-size: 50px;
}


@media(max-width:1024px) {
  .ttl-cmn-01 span {
    font-size: 48px;
    letter-spacing: .1em;
  }

  .ttl-cmn-01 span.ja02 {
    font-size: 40px;
  }
}

@media(max-width:599px) {
  .ttl-cmn-01 span {
    font-size: 38px;
    line-height: 1.5;
  }

  .ttl-cmn-01 span.ja02 {
    font-size: 30px;
  }
}

.ttl-cmn-02 span {
  font-size: 30px;
  letter-spacing: 0.3em;
}

.ttl-cmn-02.type02 span {
  font-size: 26px;
}

@media(max-width:1024px) {
  .ttl-cmn-02 span {
    font-size: 24px;
    letter-spacing: .2em;
    font-weight: 400;
  }

  .ttl-cmn-02.type02 span {
    font-size: 22px;
  }
}

@media(max-width:599px) {
  .ttl-cmn-02 span {
    font-size: 20px;
    letter-spacing: .1em;
  }

  .ttl-cmn-02.type02 span {
    font-size: 20px;
  }
}

.ttl-cmn-03 {
  display: flex;
  flex-direction: column;
  font-size: 20px;
  letter-spacing: .2em;
}

.ttl-cmn-03 .en {
  font-size: 150%;
  line-height: 1;
}

.ttl-cmn-03 .ja {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.ttl-cmn-03 .ja::before {
  content: "";
  width: 2em;
  height: 2px;
  background-color: #fff;
  display: block;
  margin-right: 10px;
}

@media(max-width:1024px) {
  .ttl-cmn-03 {
    font-size: 18px;
  }
}

/* opacity */
.opa-05 img {
  opacity: .5;
}

.brightness-01 img {
  filter: brightness(.5);
}

/* btn-type */
.btn-type-01 {
  position: relative;
  transition: all 0.3s;
}

.btn-type-01.white {
  color: #fff;
}

.btn-type-01 span {
  /* transition: all 0.3s;
  transform: scale(1, 1); */
  z-index: 2;
  position: relative;
}

.btn-type-01 a,
.btn-type-01 button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  max-width: 100%;
  padding: 10px 20px;
  font-size: 18px;
  letter-spacing: .2em;
  font-weight: 500;
}

.btn-type-01.big a {
  width: 280px;
  padding: 15px 20px;
}

.btn-type-01.up-w-100\% a {
  width: 100%;
}

.btn-type-01 a:hover,
.btn-type-01 button:hover {
  opacity: 1;
}

.btn-type-01 a::before,
.btn-type-01 a::after,
.btn-type-01 button::before,
.btn-type-01 button::after {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 5px;
}

.btn-type-01 a::before,
.btn-type-01 button::before {
  opacity: 0;
  background: #e4dcd1;
  transform: scale(1, 0.1);
}

.btn-type-01.white a::before {
  background: rgba(255, 255, 255, 0.1);
}

.btn-type-01 a:hover::before,
.btn-type-01 button:hover::before {
  opacity: 1;
  transform: scale(1, 1);
}

.btn-type-01 a::after,
.btn-type-01 button::after {
  transition: all 0.3s;
  border: 1px solid var(--color01);
}

.btn-type-01.white a::after {
  border: 1px solid #fff;
}

.btn-type-01 a:hover::after,
.btn-type-01 button:hover::after {
  transform: scale(1, .1);
  opacity: 0;
}

.btn-type-01.reverse a::before {
  background: none;
  border: 1px solid var(--color01);
}

.btn-type-01.reverse a::after {
  border: none;
  background: rgb(148 23 2 / 10%);
}

@media(max-width:1024px) {
  .btn-type-01 a {
    width: 200px;
    font-size: 16px;
  }
}

@media(max-width:599px) {
  .btn-type-01.min button {
    width: 150px;
  }
}

/* line-cmn */
.line-cmn-01 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.line-cmn-02 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}


/* 共通コンテンツ間隔 */

[class*="section-m"],
[class*="section-p"] {
  --section-xlarge: 170px;
  --section-large: 120px;
  --section-medium: 100px;
  --section-small: 80px;
  --section-xsmall: 60px;
}

.section-my-xlarge {
  margin-top: var(--section-xlarge);
  margin-bottom: var(--section-xlarge);
}

.section-mt-xlarge {
  margin-top: var(--section-xlarge);
}

.section-mb-xlarge {
  margin-bottom: var(--section-xlarge);
}

.section-my-large {
  margin-top: var(--section-large);
  margin-bottom: var(--section-large);
}

.section-mt-large {
  margin-top: var(--section-large);
}

.section-mb-large {
  margin-bottom: var(--section-large);
}

.section-my-medium {
  margin-top: var(--section-medium);
  margin-bottom: var(--section-medium);
}

.section-mt-medium {
  margin-top: var(--section-medium);
}

.section-mb-medium {
  margin-bottom: var(--section-medium);
}

.section-my-small {
  margin-top: var(--section-small);
  margin-bottom: var(--section-small);
}

.section-mt-small {
  margin-top: var(--section-small);
}

.section-mb-small {
  margin-bottom: var(--section-small);
}

.section-my-xsmall {
  margin-top: var(--section-xsmall);
  margin-bottom: var(--section-xsmall);
}

.section-mt-xsmall {
  margin-top: var(--section-xsmall);
}

.section-mb-xsmall {
  margin-bottom: var(--section-xsmall);
}

@media (max-width: 1024px) {
  .section-my-xlarge {
    margin-top: calc(var(--section-xlarge) * 0.8);
    margin-bottom: calc(var(--section-xlarge) * 0.8);
  }

  .section-mt-xlarge {
    margin-top: calc(var(--section-xlarge) * 0.8);
  }

  .section-mb-xlarge {
    margin-bottom: calc(var(--section-xlarge) * 0.8);
  }

  .section-my-large {
    margin-top: calc(var(--section-large) * 0.8);
    margin-bottom: calc(var(--section-large) * 0.8);
  }

  .section-mt-large {
    margin-top: calc(var(--section-large) * 0.8);
  }

  .section-mb-large {
    margin-bottom: calc(var(--section-large) * 0.8);
  }

  .section-my-medium {
    margin-top: calc(var(--section-medium) * 0.8);
    margin-bottom: calc(var(--section-medium) * 0.8);
  }

  .section-mt-medium {
    margin-top: calc(var(--section-medium) * 0.8);
  }

  .section-mb-medium {
    margin-bottom: calc(var(--section-medium) * 0.8);
  }

  .section-my-small {
    margin-top: calc(var(--section-small) * 0.8);
    margin-bottom: calc(var(--section-small) * 0.8);
  }

  .section-mt-small {
    margin-top: calc(var(--section-small) * 0.8);
  }

  .section-mb-small {
    margin-bottom: calc(var(--section-small) * 0.8);
  }

  .section-my-xsmall {
    margin-top: calc(var(--section-xsmall) * 0.8);
    margin-bottom: calc(var(--section-xsmall) * 0.8);
  }

  .section-mt-xsmall {
    margin-top: calc(var(--section-xsmall) * 0.8);
  }

  .section-mb-xsmall {
    margin-bottom: calc(var(--section-xsmall) * 0.8);
  }
}

@media (max-width: 599px) {
  .section-my-xlarge {
    margin-top: calc(var(--section-xlarge) * 0.6);
    margin-bottom: calc(var(--section-xlarge) * 0.6);
  }

  .section-mt-xlarge {
    margin-top: calc(var(--section-xlarge) * 0.6);
  }

  .section-mb-xlarge {
    margin-bottom: calc(var(--section-xlarge) * 0.6);
  }

  .section-my-large {
    margin-top: calc(var(--section-large) * 0.6);
    margin-bottom: calc(var(--section-large) * 0.6);
  }

  .section-mt-large {
    margin-top: calc(var(--section-large) * 0.6);
  }

  .section-mb-large {
    margin-bottom: calc(var(--section-large) * 0.6);
  }

  .section-my-medium {
    margin-top: calc(var(--section-medium) * 0.6);
    margin-bottom: calc(var(--section-medium) * 0.6);
  }

  .section-mt-medium {
    margin-top: calc(var(--section-medium) * 0.6);
  }

  .section-mb-medium {
    margin-bottom: calc(var(--section-medium) * 0.6);
  }

  .section-my-small {
    margin-top: calc(var(--section-small) * 0.6);
    margin-bottom: calc(var(--section-small) * 0.6);
  }

  .section-mt-small {
    margin-top: calc(var(--section-small) * 0.6);
  }

  .section-mb-small {
    margin-bottom: calc(var(--section-small) * 0.6);
  }

  .section-my-xsmall {
    margin-top: calc(var(--section-xsmall) * 0.6);
    margin-bottom: calc(var(--section-xsmall) * 0.6);
  }

  .section-mt-xsmall {
    margin-top: calc(var(--section-xsmall) * 0.6);
  }

  .section-mb-xsmall {
    margin-bottom: calc(var(--section-xsmall) * 0.6);
  }
}

.section-py-xlarge {
  padding-top: var(--section-xlarge);
  padding-bottom: var(--section-xlarge);
}

.section-pt-xlarge {
  padding-top: var(--section-xlarge);
}

.section-pb-xlarge {
  padding-bottom: var(--section-xlarge);
}

.section-py-large {
  padding-top: var(--section-large);
  padding-bottom: var(--section-large);
}

.section-pt-large {
  padding-top: var(--section-large);
}

.section-pb-large {
  padding-bottom: var(--section-large);
}

.section-py-medium {
  padding-top: var(--section-medium);
  padding-bottom: var(--section-medium);
}

.section-pt-medium {
  padding-top: var(--section-medium);
}

.section-pb-medium {
  padding-bottom: var(--section-medium);
}

.section-py-small {
  padding-top: var(--section-small);
  padding-bottom: var(--section-small);
}

.section-pt-small {
  padding-top: var(--section-small);
}

.section-pb-small {
  padding-bottom: var(--section-small);
}

.section-py-xsmall {
  padding-top: var(--section-xsmall);
  padding-bottom: var(--section-xsmall);
}

.section-pt-xsmall {
  padding-top: var(--section-xsmall);
}

.section-pb-xsmall {
  padding-bottom: var(--section-xsmall);
}

@media (max-width: 1024px) {
  .section-py-xlarge {
    padding-top: calc(var(--section-xlarge) * 0.8);
    padding-bottom: calc(var(--section-xlarge) * 0.8);
  }

  .section-pt-xlarge {
    padding-top: calc(var(--section-xlarge) * 0.8);
  }

  .section-pb-xlarge {
    padding-bottom: calc(var(--section-xlarge) * 0.8);
  }

  .section-py-large {
    padding-top: calc(var(--section-large) * 0.8);
    padding-bottom: calc(var(--section-large) * 0.8);
  }

  .section-pt-large {
    padding-top: calc(var(--section-large) * 0.8);
  }

  .section-pb-large {
    padding-bottom: calc(var(--section-large) * 0.8);
  }

  .section-py-medium {
    padding-top: calc(var(--section-medium) * 0.8);
    padding-bottom: calc(var(--section-medium) * 0.8);
  }

  .section-pt-medium {
    padding-top: calc(var(--section-medium) * 0.8);
  }

  .section-pb-medium {
    padding-bottom: calc(var(--section-medium) * 0.8);
  }

  .section-py-small {
    padding-top: calc(var(--section-small) * 0.8);
    padding-bottom: calc(var(--section-small) * 0.8);
  }

  .section-pt-small {
    padding-top: calc(var(--section-small) * 0.8);
  }

  .section-pb-small {
    padding-bottom: calc(var(--section-small) * 0.8);
  }

  .section-py-xsmall {
    padding-top: calc(var(--section-xsmall) * 0.8);
    padding-bottom: calc(var(--section-xsmall) * 0.8);
  }

  .section-pt-xsmall {
    padding-top: calc(var(--section-xsmall) * 0.8);
  }

  .section-pb-xsmall {
    padding-bottom: calc(var(--section-xsmall) * 0.8);
  }
}

@media (max-width: 599px) {
  .section-py-xlarge {
    padding-top: calc(var(--section-xlarge) * 0.6);
    padding-bottom: calc(var(--section-xlarge) * 0.6);
  }

  .section-pt-xlarge {
    padding-top: calc(var(--section-xlarge) * 0.6);
  }

  .section-pb-xlarge {
    padding-bottom: calc(var(--section-xlarge) * 0.6);
  }

  .section-py-large {
    padding-top: calc(var(--section-large) * 0.6);
    padding-bottom: calc(var(--section-large) * 0.6);
  }

  .section-pt-large {
    padding-top: calc(var(--section-large) * 0.6);
  }

  .section-pb-large {
    padding-bottom: calc(var(--section-large) * 0.6);
  }

  .section-py-medium {
    padding-top: calc(var(--section-medium) * 0.6);
    padding-bottom: calc(var(--section-medium) * 0.6);
  }

  .section-pt-medium {
    padding-top: calc(var(--section-medium) * 0.6);
  }

  .section-pb-medium {
    padding-bottom: calc(var(--section-medium) * 0.6);
  }

  .section-py-small {
    padding-top: calc(var(--section-small) * 0.6);
    padding-bottom: calc(var(--section-small) * 0.6);
  }

  .section-pt-small {
    padding-top: calc(var(--section-small) * 0.6);
  }

  .section-pb-small {
    padding-bottom: calc(var(--section-small) * 0.6);
  }

  .section-py-xsmall {
    padding-top: calc(var(--section-xsmall) * 0.6);
    padding-bottom: calc(var(--section-xsmall) * 0.6);
  }

  .section-pt-xsmall {
    padding-top: calc(var(--section-xsmall) * 0.6);
  }

  .section-pb-xsmall {
    padding-bottom: calc(var(--section-xsmall) * 0.6);
  }
}

/* fead */

.fead-mv.mv {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.fead-up.mv {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.fead-order>* {
  opacity: 0;
}

.fead-order>.mv {
  opacity: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.fead-text>* {
  opacity: 0;
}

.fead-text .mv {
  opacity: 1;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.fead-clip {
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: 1.6s;
  transition-delay: .5s;
  filter: blur(20px);
}

[data-element-id] .fead-clip {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  filter: blur(0px);
}

.fead-clip.mv {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  filter: blur(0px);
}

.fead-blur {
  filter: blur(5px);
  transition: 0.5s;
}

[data-element-id] .fead-blur {
  filter: blur(0px);
}

.fead-blur.mv {
  filter: blur(0px);
}

.fead-slide-left {
  transform: translateX(100%);
  transition: 1s;
}

[data-element-id] .fead-slide-left {
  transform: translateX(0%);
}

.fead-slide-left.mv {
  transform: translateX(0%);
}

.fead-slide-right {
  transform: translateX(-100%);
  transition: 1s;
}

[data-element-id] .fead-slide-right {
    transform: translateX(0%);
    position: relative;
    bottom: auto;
    left: auto;
    z-index: 250;
    width: auto;
    max-width: 30%;
}

.fead-slide-right.mv {
  transform: translateX(0%);
}

/* show hide */

.show\@pc {
  display: block;
}

.hide\@pc {
  display: none;
}

[data-element-id] .show\@tb {
  display: block;
  border: solid 4px green;
  position: relative;
}

[data-element-id] .show\@tb:after {
  display: block;
  content: "モバイル用";
  color: #fff;
  font-weight: 700;
  background: green;
  padding: 5px;
  text-align: center;
  text-shadow: none;
}

[data-element-id] .show\@tb.indention:after {
  content: "モバイル用はここで改行";
}

[data-element-id] .show\@pc.indention:after {
  content: "PC用はここで改行";
  display: block;
  color: #fff;
  font-weight: 700;
  background: blue;
  padding: 5px;
  text-align: center;
  text-shadow: none;
  font-size: 12px;
}

[data-element-id] .show\@sp {
  display: block;
  border: solid 4px green;
  position: relative;
}

[data-element-id] .show\@sp:after {
  display: block;
  content: "モバイル用";
  color: #fff;
  font-weight: 700;
  background: green;
  padding: 5px;
  text-align: center;
  text-shadow: none;
}

[data-element-id] .show\@sp.indention:after {
  content: "モバイル用はここで改行";
}

@media (max-width: 1024px) {
  .show\@tb {
    display: block;
  }

  .hide\@tb {
    display: none;
  }
}

@media (max-width: 599px) {
  .show\@sp {
    display: block;
  }

  .hide\@sp {
    display: none;
  }
}

/* ##### フロート float ##### */
.up-fl-left {
  float: left;
}

.up-fl-right {
  float: right;
}

.up-fl-none {
  float: none;
}

.up-flc-left {
  clear: left;
}

.up-flc-rigjt {
  clear: right;
}

.up-flc-both {
  clear: both;
}

.float-box {
  display: block;
}

.float-box-img {
  float: right;
}

.float-box-title {
  float: left;
}

.float-box-content {
  float: left;
}

.float-box-wrap.-noinner .float-box:nth-child(odd) .noinner {
  margin-left: auto;
}

.float-box-wrap.-noinner .float-box:nth-child(odd) [class*=btn] {
  margin-right: 0;
}

.float-box-wrap.-noinner .float-box:nth-child(even) .noinner {
  margin-right: auto;
}

.float-box-wrap.-noinner .float-box:nth-child(even) [class*=btn] {
  margin-left: 0;
}

.float-box-wrap.-rowr .float-box:nth-of-type(odd) .float-box-img {
  float: left;
}

.float-box-wrap.-rowr .float-box:nth-of-type(odd) .float-box-title {
  float: right;
}

.float-box-wrap.-rowr .float-box:nth-of-type(odd) .float-box-content {
  float: right;
}

.float-box-wrap.-rowr .float-box:nth-of-type(even) .float-box-img {
  float: left;
}

.float-box-wrap.-rowr .float-box:nth-of-type(even) .float-box-title {
  float: right;
}

.float-box-wrap.-rowr .float-box:nth-of-type(even) .float-box-content {
  float: right;
}

.float-box-wrap.-rowr.-noinner .float-box:nth-child(odd) .noinner {
  margin-left: 0;
  margin-right: auto;
}

.float-box-wrap.-rowr.-noinner .float-box:nth-child(odd) [class*=btn] {
  margin-left: 0;
  margin-right: 0;
}

.float-box-wrap.-rowr.-noinner .float-box:nth-child(even) .noinner {
  margin-left: auto;
  margin-right: 0;
}

.float-box-wrap.-rowr.-noinner .float-box:nth-child(even) [class*=btn] {
  margin-left: 0;
  margin-right: 0;
}

.float-box-wrap.-alternate .float-box:nth-of-type(odd) .float-box-img {
  float: right;
}

.float-box-wrap.-alternate .float-box:nth-of-type(odd) .float-box-title {
  float: left;
}

.float-box-wrap.-alternate .float-box:nth-of-type(odd) .float-box-content {
  float: left;
}

.float-box-wrap.-alternate .float-box:nth-of-type(even) .float-box-img {
  float: left;
}

.float-box-wrap.-alternate .float-box:nth-of-type(even) .float-box-title {
  float: right;
}

.float-box-wrap.-alternate .float-box:nth-of-type(even) .float-box-content {
  float: right;
}

.float-box-wrap.-alternate.-rowr .float-box:nth-of-type(odd) .float-box-img {
  float: left;
}

.float-box-wrap.-alternate.-rowr .float-box:nth-of-type(odd) .float-box-title {
  float: right;
}

.float-box-wrap.-alternate.-rowr .float-box:nth-of-type(odd) .float-box-content {
  float: right;
}

.float-box-wrap.-alternate.-rowr .float-box:nth-of-type(even) .float-box-img {
  float: right;
}

.float-box-wrap.-alternate.-rowr .float-box:nth-of-type(even) .float-box-title {
  float: left;
}

.float-box-wrap.-alternate.-rowr .float-box:nth-of-type(even) .float-box-content {
  float: left;
}

@media (max-width: 1024px) {
  .up-fl-left\@tb {
    float: left;
  }

  .up-fl-right\@tb {
    float: right;
  }

  .up-fl-none\@tb {
    float: none;
  }

  .up-flc-left\@tb {
    clear: left;
  }

  .up-flc-rigjt\@tb {
    clear: right;
  }

  .up-flc-both\@tb {
    clear: both;
  }
}

@media (max-width: 599px) {
  .up-fl-left\@sp {
    float: left;
  }

  .up-fl-right\@sp {
    float: right;
  }

  .up-fl-none\@sp {
    float: none;
  }

  .up-flc-left\@sp {
    clear: left;
  }

  .up-flc-rigjt\@sp {
    clear: right;
  }

  .up-flc-both\@sp {
    clear: both;
  }

  .float-box-wrap.-alternate.-rowr .float-box:nth-of-type(odd) .float-box-title {
    float: right;
    width: 100%;
  }
}

/*===================================
  共通要素
===================================*/
/*h1ページタイトル */
.header .pagettl {
  font-size: 10px;
  padding: 0 5px;
  color: #fff;
  transition: .3s;
}

.header.active .pagettl {
  opacity: 0;
  visibility: hidden;
  height: 0;
}

@media(max-width:1024px) {
  .header .pagettl {
    padding: 0 40px 0 0;
  }
}

/**
ヘッダー
header
*/
.header {
  padding: 10px 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  transition: .5s;
}

[data-element-id] .header{
  position: relative;
}

.header.active {
  background: rgb(109 68 48 / 60%);
}

.header .contents {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    flex-direction: column;
}

.header.active .contents {
  justify-content: center;
}

.header.active .left {
  position: absolute;
  visibility: hidden;
  opacity: 0;
}

.header .logo img {
    max-height: 60px;
}

.header .right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  width: 100%;
}

.header .right .txt {
  margin-right: 10px;
  line-height: 120%;
}

.header .right .txtin {
  display: block;
}

.header .right .tel a {
  font-weight: bold;
  font-size: 30px;
}

.header .right .tel a:before {
  margin-right: 5px;
  content: '\f879';
  font-weight: 600;
  font-size: 24px;
  font-family: 'Font Awesome 5 Free';
}

@media (max-width: 1024px) {
  .header {
    padding: 5px 0;
  }

  .header.active {
    padding: 0;
    background: none;
  }

  .header .left {
    display: none;
  }

  .header .logo img {
    max-height: 32px;
  }
}

/* 下部固定コンテンツ */
.fix-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 250;
    width: 260px;
}

.fix-btn.-top {
    top:15%;
    bottom: auto;
}

.fix-btn.-center {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
}

.fix-btn.-bottom {
    bottom: 5%;
}

.fix-btn .item {
  margin-bottom: 10px;
}

.fix-btn .item:last-child {
  margin-bottom: 0;
}

.fix-btn .item>* {
  background: var(--color02);
  width: 100%;
  height: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  font-size: 14px;
  box-shadow: 3px 3px 7px #483931;
}

[data-element-id] .fix-btn .item>*{
  height: auto;
}

.fix-btn .item.hpb>*>*{
  width: 100%;
  height: 100%;
}

.abtest-a,.ttl.abtest-b {
    height: 50px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.abtest-b{
  background:#d5c6b5;border-radius: 0 5px 5px 0;
}

[data-element-id] .abtest-a,[data-element-id] .abtest-b {
    display: flex;
    flex-direction: column-reverse;
    height: auto;
}

[data-element-id] .abtest-a{
    border: 4px solid #ee4c36;
}

[data-element-id] .abtest-b{
    border: 4px solid #3671ee;
}

[data-element-id] .abtest-a::after,[data-element-id] .abtest-b::after{
  text-align: center;
  padding: 5px;
  font-size: 12px;
  width: 100%;
  color: #fff;
}

[data-element-id] .abtest-a::after{
  content: "Aパターン";
  background: #ee4c36;
}

[data-element-id] .abtest-b::after{
  content: "Bパターン";
  background: #3671ee;
}


.hover-shine {
    position: relative;
    display: inline-block;
    outline: none;
    overflow: hidden;
}

.hover-shine a:hover {
    opacity: 1;
}

/*キラッと光る*/
.hover-shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    transform: skewX(-25deg);
}

/*hoverした際の移動のアニメーション*/
.hover-shine::before {
    animation: shine 3s infinite;
}

@keyframes shine {
    50% {
        left: 125%;
    }
    
    100%{
      left: 125%;
    }
}

.fix-btn .item .activebox {
    position: absolute;
    bottom: -5%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    padding: 30px 20px;
    z-index: 2;
    border-radius: 0 0 5px 0;
        min-height: 370px;
    transition: .5s;
}

.fix-btn.-center .item .activebox {
    bottom: auto;
    top: 0%;
    transform: translate(-50%, -50%);
}

.fix-btn.-top .item .activebox {
    bottom: auto;
    top:0;
}

[data-element-id] .fix-btn .item .activebox {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
}

.fix-btn .item.active .activebox {
  opacity: 1;
  visibility: visible;
  cursor: auto;
}

.fix-btn .item .activebox .sub {
  margin-bottom: 20px;
  text-align: center;
  font-size: 14px;
  border-bottom: 1px solid;
  padding-bottom: 5px;
}

.fix-btn .item .activebox .shop {
  margin-bottom: 20px;
}

.fix-btn .item .activebox .shop:last-child {
  margin-bottom: 0;
}

.fix-btn .item .activebox .shop .name {
  font-size: 14px;
}

.fix-btn .item .activebox a {
  background: var(--color03);
  padding: 10px;
  display: flex;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  height: auto;
}

@media (max-width: 1024px) {
  .fix-btn {
    bottom: 0;
    width: 100%;
    height: 50px;
    display: flex;
    gap: 2px;
  }
  
  .fix-btn.-bottom {
    bottom: 0;
}
  
  .fix-btn>* {
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

  .fix-btn .item {
    width: calc((100% - 2px) / 2);
    text-align: center;
    margin-bottom: 0;
}

  .fix-btn .item>* {
    font-size: 12px;
    letter-spacing: 0;
    border-radius: 5px 5px 0 0;
  }

  .fix-btn .item .activebox {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    border-radius: 5px;
        height: fit-content;
  }
  
  .abtest-b{
    border-radius: 5px 5px 0 0;
  }
}

@media (max-width: 599px) {
  .fix-btn .item a {
    font-size: 12px;
    letter-spacing: 0;
    line-height: 1.5;
  }
}

/**
グローバルナビ
gnav
*/
.gnav {
  position: relative;
  z-index: 100;
  padding: 10px 0;
  color: #fff;
  width: 80%;
}

[data-element-id] .gnav{
  color: var(--color01);
}

.gnav .wrap {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.gnav .navlogo img {
  max-height: 40px;
}

.gnav .list01 {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 90%;
}

[data-element-id] .gnav .list01{
  align-items: flex-start;
}

.gnav .item01 {
  text-align: center;
  font-size: 16px;
}

.gnav .item01>a,
.gnav .item01 .itemin {
  display: block;
  cursor: pointer;
  padding: 5px;
}

.gnav .item01>a, .gnav .item01.-parent .itemin {
    position: relative;
    transition: .3s;
    width: fit-content;
    margin: 0 auto;
}

.gnav .item01>a:hover{
  opacity: 1;
}

.gnav .item01>a::after,.gnav .item01.-parent .itemin::after{
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: .3s;
}

.gnav .item01>a:hover::after,.gnav .item01.-parent:hover .itemin::after{
  width: 100%;
}

.gnav .item01.-parent {
  position: relative;
}

.gnav .item01.-parent:hover .list02 {
  visibility: visible;
  opacity: 1;
}

.gnav .list02 {
  position: absolute;
  top: 100%;
  left: 50%;
  visibility: hidden;
  padding-top: 10px;
  width: 200px;
  background: rgba(255, 255, 255) content-box;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  color: var(--color01);
}

.gnav .list02.type02{
  width:400px;
}

[data-element-id] .gnav .list02{
    position: relative;
    top: auto;
    left: auto;
    visibility: visible;
    opacity: 1;
    transform: none;
}

.gnav .list02.type02 .list02box {
    display: flex;
    padding: 20px;
    justify-content: space-between;
}

.gnav .list02.type02 .list02box img {
    max-width: 100px;
    max-height: 30px;
}

.gnav .list02.type02 a:hover{
  opacity: 1;
  transform: scale(1.2);
}

.gnav .item02 a {
    display: block;
    padding: 10px;
    position: relative;
    width: fit-content;
    margin: 0 auto;
}

.gnav .item02>a:hover{
  opacity: 1;
}

.gnav .item02>a::after {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    content: '';
    width: 0;
    height: 1px;
    background-color: var(--color01);
    transition: .3s;
}

.gnav .type02 .item02>a::after{
  content: none;
}

.gnav .item02>a:hover::after{
  width: 100%;
}

@media (max-width: 1024px) {
  body.overlay {
    overflow: hidden;
    -ms-touch-action: none;
    touch-action: none;
  }

  .header .right {
    position: fixed;
    top: 0;
    right: 0;
    overflow-y: scroll;
    overflow-x: hidden;
    width: 100%;
    max-width: 300px;
    height: 100%;
    background: var(--color02);
    -webkit-transition: -webkit-transform ease 0.5s;
    transition: -webkit-transform ease 0.5s;
    transition: transform ease 0.5s;
    transition: transform ease 0.5s, -webkit-transform ease 0.5s;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    -webkit-overflow-scrolling: touch;
  }

  .header .right.action {
    z-index: 260;
    -webkit-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
  }

  .header .right .sns-box {
    width: 80%;
    margin: 0 auto;
    padding-bottom: 50px;
  }

  .header .right .sns-box ul {
    justify-content: center;
  }
  
  .header .right .sns-box> ul {
    padding-bottom: 100px;
  }

  .gnav {
    width: 80%;
    margin: 20px auto 0;
    color: var(--color01);
    font-weight: 500;
  }

  .gnav .navlogo img {
    max-height: 70px;
    filter: invert(1);
  }

  .gnav .navlogo {
    display: block;
    margin-bottom: 20px;
    padding-right: 40px;
    width: 100%;
    font-weight: bold;
    font-size: 20px;
  }

  .gnav .item01 {
    margin: 0 0 10px 0;
    min-height: 40px;
    width: 100%;
    text-align: left;
  }

  .gnav .list02 {
    position: relative;
    top: 0;
    left: 0;
    visibility: visible;
    padding-left: 20px;
    padding-top: 0;
    background: none;
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }

  .gnav .list02 a {
    position: relative;
    padding: 2px 0 2px 20px;
  }
  
  .gnav .item01>a, .gnav .item01.-parent .itemin,.gnav .item02 a{
    margin: 0;
  }

  .gnav .list02 a:before {
    position: absolute;
    top: 13px;
    left: 0;
    display: block;
    width: 10px;
    height: 1px;
    background: #000;
    content: '';
  }
  
  .gnav .list02.type02 .list02box {
    padding: 0;
    gap: 10px;
    flex-direction: column;
}
}

[data-element-id] .gnav.fixed {
  position: relative;
}

.header .right .sns-box {
  width: fit-content;
  flex-shrink: 0;
}

.header .right .sns-box ul {
  display: flex;
  column-gap: 15px;
  row-gap: 20px;
  font-size: 34px;
  line-height: 1;
}

.header .right .sns-box ul .instagram .a{
  transition: .5s;
  cursor: pointer;
}

.header .right .sns-box ul .instagram .activebox, .header .right .sns-box ul .line .activebox {
    position: absolute;
    top: 50px;
    right: 0;
    left: auto;
    background: rgb(255 255 255 / 80%);
    border-radius: 5px;
    padding: 20px;
    width: 210px;
    opacity: 0;
    visibility: hidden;
    transition: .5s;
    white-space: nowrap;
}

.header .right .sns-box ul .instagram.active .activebox,[data-element-id] .header .right .sns-box ul .instagram .activebox,.header .right .sns-box ul .line.active .activebox,[data-element-id] .header .right .sns-box ul .line .activebox{
  opacity: 1;
  visibility: visible;
}

[data-element-id] .header .right .sns-box ul .instagram .activebox,[data-element-id] .header .right .sns-box ul .line .activebox{
  position: relative;
}

.header .right .sns-box ul .instagram .activebox a,.header .right .sns-box ul .line .activebox a span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.header .right .sns-box ul .instagram .activebox a span, .header .right .sns-box ul .line .activebox a span {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.header .right .sns-box ul .instagram .activebox a,.header .right .sns-box ul .line .activebox a{
  font-size: 26px;
    display: flex;
    gap: 5px;
}

.header .right .sns-box ul .instagram i{
  background: linear-gradient(45deg, #ecb91f 20%, #f50103 45%, #da004f 75%, #c20295 85%);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: bold;
}

.header .right .sns-box ul .x {
  color: #000;
  line-height: 1;
  padding: 0px 0px 4px 1px;
  position: relative;
}

.header .right .sns-box ul .x::before {
  content: "";
  width: 24px;
  height: 24px;
  background: #fff;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

[data-element-id] .header .right .sns-box ul .x::before{
  content: none;
}

.header .right .sns-box ul .x a {
  position: relative;
  z-index: 2;
}

.header .right .sns-box ul .line {
  color: #45b345;
  line-height: 1;
  padding: 0px 0px 4px 1px;
  position: relative;
}

.header .right .sns-box ul .line::before {
  content: "";
  width: 28px;
  height: 28px;
  background: #fff;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

[data-element-id] .header .right .sns-box ul .line::before{
  content: none;
}

.header .right .sns-box ul .line .a {
  position: relative;
  z-index: 2;
  cursor:pointer;
}

.header .right .sns-box ul .instagram .activebox a:hover,.header .right .sns-box ul .line a:hover,.header .right .sns-box ul .facebook a:hover,.header .right .sns-box ul .x a:hover,.header .right .sns-box ul .instagram .a:hover{
  opacity: 1;
    transform: scale(1.1);
   /*  display: block; */
}

[data-element-id] .header .right .sns-box ul .instagram .activebox a:hover,[data-element-id] .header .right .sns-box ul .line a:hover{
  transform: none;
}

.header .right .sns-box ul .facebook {
  color: #1878f3;
  line-height: 1;
  padding: 0px 0px 4px 1px;
  position: relative;
}

.header .right .sns-box ul .facebook::before {
  content: "";
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

[data-element-id] .header .right .sns-box ul .facebook::before{
  content: none;
}

.header .right .sns-box ul .facebook a {
  position: relative;
  z-index: 2;
}

@media(max-width:1024px){
  .header .right .sns-box ul .instagram .activebox {
    left: 50%;
    transform: translateX(-50%);
}
}

/* ハンバーガーメニュー  */
.toggle {
  position: fixed !important;
  top: 0px;
  right: 0px;
  z-index: 261;
  width: 42px;
  height: 42px;
  background: #70452f;
  cursor: pointer;
  display: none;
}

.toggle .bar {
  position: absolute;
  top: 50%;
  left: 7px;
  display: block;
  margin-top: -1px;
  padding: 0;
  width: 28px;
  height: 2px;
  background: #fff;
  text-indent: 9999px;
  transition: ease 0.4s;
  -webkit-transition: ease 0.4s;
}

.toggle .bar:before,
.toggle .bar:after {
  position: absolute;
  left: 0;
  display: block;
  width: 28px;
  height: 2px;
  background: #fff;
  content: '';
}

.toggle .bar:before {
  top: -10px;
}

.toggle .bar:after {
  top: 10px;
}

.toggle.active .bar {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
}

.toggle.active .bar:after,
.toggle.active .bar:before {
  top: 0;
  left: 0;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
}

@media (max-width: 1024px) {
  .toggle {
    display: block !important;
  }
}

.overlay:after {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100vh;
  background: #000;
  content: '';
  opacity: 0.3;
  transform: translate3d(0, 0, 0) !important;
  -webkit-transform: translate3d(0, 0, 0) !important;
}

/*トップへ戻る*/
.totop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background: var(--color01);
  color: #fff;
  text-align: center;
  font-size: 15px;
  line-height: 40px;
  cursor: pointer;
}

.totop:before {
  content: '\f077';
  font-weight: bold;
  font-family: 'Font Awesome 5 Free';
}

@media (max-width: 1024px) {
  .totop {
    right: 10px;
    bottom: 60px;
  }
}

/**
フッター
footer
*/

footer {
  background: var(--bgc02);
}

.footer .copy {
  padding: 5px 0;
  color: #fff;
  text-align: center;
}

.footer .inner{
  padding-bottom: 100px;
}

@media (max-width: 1024px) {
  .footer .copy {
    padding-bottom: 50px;
  }
  
  .footer .inner{
    padding-bottom: 50px;
  }
}

.footer-shoplist ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px;
}

.footer-shoplist ul li {
  width: calc((100% - 100px) / 3);
  color: #fff;
}

.footer-shoplist ul li .name {
  font-size: 28px;
  text-align: center;
  margin-top: 5px;
}

.footer-shoplist ul li .address {
  text-align: center;
}

.footer-shoplist ul li .telbox {
  text-align: center;
}

.footer-shoplist ul li .telbox .tel {
  font-size: 180%;
  letter-spacing: .1em;
}

.footer-shoplist ul li .btn {
  margin-top: 15px;
}

.footer-shoplist ul li .btn a {
  width: 100%;
  display: block;
  background: var(--color02);
  color: var(--color01);
  font-weight: 500;
  padding: 20px;
  text-align: center;
  border-radius: 5px;
}

@media(max-width:1024px) {
  .footer-shoplist ul {
    gap: 20px;
  }

  .footer-shoplist ul li {
    width: calc((100% - 40px) / 3);
  }

  .footer-shoplist ul li .name {
    font-size: 22px;
  }

  .footer-shoplist ul li .address {
    font-size: 12px;
  }

  .footer-shoplist ul li .telbox {
    font-size: 13px;
  }

  .footer-shoplist ul li .btn a {
    padding: 15px 10px;
    font-size: 14px;
  }
}

@media(max-width:599px) {
  .footer-shoplist ul {
    gap: 80px;
  }

  .footer-shoplist ul li {
    width: 100%;
  }

  .footer-shoplist ul li .map {
    padding-top: 40%;
  }
}

.fnav {
  padding: 80px 0 50px;
  color: #fff;
  border-top: 1px solid #7e736d;
  margin-top: 80px;
}

.fnav .wrap {
  display: flex;
}

.fnav .list01 {
  width: 50%;
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
}

.fnav .item {
  margin-bottom: 10px;
  padding-right: 10px;
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
  break-inside: avoid;
}

.fnav .item a {
  display: block;
}

.fnav .list02 {
  width: 25%;
}

.fnav .datattl {
  position: relative;
  margin-bottom: 10px;
  padding-left: 12px;
}

.fnav .data {
  margin-bottom: 5px;
  padding-right: 10px;
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
  break-inside: avoid;
}

.fnav .data a {
  position: relative;
  display: flex;
  align-items: center;
}

.fnav .data a:before {
  content: '';
  display: block;
  width: 0.8em;
  height: 1px;
  background: #fff;
  margin-right: 10px;
}

@media (max-width: 1024px) {
  .fnav .wrap {
    flex-wrap: wrap;
    font-size: 14px;
  }
}

@media (max-width: 599px) {
  .fnav .list01 {
    margin-bottom: 10px;
    width: 100%;
  }

  .fnav .list02 {
    width:50%;
    margin-top: 30px;
  }
}

/**
2カラムページ
*/
.column2 .inner {
  display: -webkit-box;
  display: flex;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.column2 .side {
  width: 200px;
}

.column2 .mainwrap {
  width: calc(100% - 250px);
}

@media (max-width: 1024px) {
  .column2 .inner {
    flex-wrap: wrap;
  }

  .column2 .side {
    -webkit-box-ordinal-group: 4;
    order: 3;
    width: 100%;
  }

  .column2 .mainwrap {
    -webkit-box-ordinal-group: 3;
    order: 2;
    margin-bottom: 50px;
    width: 100%;
  }
}

/* サイドメニュー */
.side .list {
  margin-bottom: 30px;
}

.side .list:last-child {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .side {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .side .list {
    width: 48%;
  }
}

@media (max-width: 599px) {
  .side .list {
    width: 100%;
  }
}

.list-side .datattl {
  position: relative;
  margin-bottom: 20px;
  padding: 10px;
  background: #4a3d33;
  color: #fff;
  font-weight: 300;
  letter-spacing: 5px;
  text-align: center;
  font-size: 20px;
}

.list-side .data {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #7e736d;
}

[data-element-id] .list-side.staff .data:nth-child(n + 4) {
    display: none;
}

.list-side a {
  position: relative;
  display: inline-block;
  padding-left: 15px;
  font-weight: 400;
}

.type-archive.list-side .data:nth-of-type(even) a {
    border-left: 1px solid;
}

@media (max-width: 1024px) {
  .list-side.type-archive .datawrap {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }

  .list-side.type-archive .datawrap .datattl {
    width: 100%;
  }

  .list-side.type-archive .datawrap .data {
    width: 48%;
  }
  
  .type-archive.list-side .data:nth-of-type(even) a {
    border-left: 1px solid;
    margin-left: -8px;
}
}

/*===================================
  各個別コンテンツ
===================================*/
/**トップ*/
/*homevisual*/
.home-wrap {
  background: var(--bgc01);
}

.homevisual {
  position: relative;
  padding: 150px 0 100px;
}

.homevisual .img {
  position: relative;
  min-height: 300px;
  height: 70vh;
  max-height: 700px;
  margin-left: calc(50% - 550px);
}

.homevisual .img:before {
  position: relative;
  z-index: -1;
  display: block;
  /* padding-top: 40%; */
  content: '';
}

.homevisual .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-family: 'object-fit: cover; object-position: 50% 50%;';
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
}

.homevisual .head {
  position: absolute;
  bottom: 20%;
  right: 5%;
  font-weight: 400;
  font-size: 36px;
  letter-spacing: .1em;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-shadow: 3px 3px 5px rgb(142 137 133 / 80%);
}

.homevisual .head .big {
  font-size: 200%;
  letter-spacing: 15px;
  margin-right: -15px;
}

@media(max-width:1024px) {
  .homevisual {
    padding: 80px 0 80px;
  }

  .homevisual .img {
    margin-left: 10%;
  }

}

@media (max-width: 599px) {
  .homevisual .head {
    font-size: 20px;
  }

  .homevisual .head .big {
    font-size: 200%;
    letter-spacing: 5px;
    margin-right: -5px;
  }

  .homevisual .img img {
    -o-object-position: 10% 50%;
    object-position: 10% 50%;
  }
}

/* uk */
.uk-slidenav-position {
    position: relative;
    height: 100% !important;
}

.uk-slideshow {
    height: 100% !important;
}

.uk-slideshow>li {
    height: 100% !important;
}

[data-element-id] .uk-slideshow>li{
  opacity: 1 !important;
}

/* index-news-area */
.index-news-area .txtbox li a {
  display: flex;
  padding: 20px 20px 20px 0;
  border-bottom: 1px solid #7e736d;
  font-size: 18px;
  position: relative;
}

.index-news-area .txtbox li:last-child a {
  border: none;
}

.index-news-area .txtbox li a::before {
  content: "\f054";
  font-family: var(--ff99);
  font-weight: bold;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.index-news-area .txtbox li a .date {
  flex-shrink: 0;
  margin-right: 40px;
}

@media(max-width:599px) {
  .index-news-area .ttlbox {
    display: contents;
  }

  .index-news-area .ttlbox .ttl {
    order: 1;
  }

  .index-news-area .ttlbox .btn {
    order: 3;
  }

  .index-news-area .txtbox {
    order: 2;
  }

  .index-news-area .txtbox li a {
    font-size: 16px;
  }

  .index-news-area .txtbox li a::before {
    font-size: 12px;
  }

  .index-news-area .txtbox li a .date {
    margin-right: 20px;
  }
}

/* index-concept-area */
.index-concept-area .txt {
  font-size: 18px;
  letter-spacing: .3em;
  font-weight: 500;
  margin-top: 30px;
  text-align: center;
  line-height: 2.5;
}

.index-concept-area.type02 .txt {
  font-size: 16px;
  letter-spacing: .1em;
  text-align: left;
  line-height: 2;
}

.index-concept-area.type02 .txt li {
  display: flex;
  background: #fbf8f5;
  width: 90%;
  border-radius: 100px;
  padding: 10px;
  justify-content: center;
  margin-bottom: 20px;
  flex-direction: column;
  align-items: center;
}

.index-concept-area.type02 .txt li:nth-of-type(even) {
  margin-left: auto;
}

@media(max-width:1024px) {
  .index-concept-area .txt {
    font-size: 16px;
  }
}

@media(max-width:599px) {
  .index-concept-area.type02 .txt li {
    width: 100%;
    font-size: 13px;
    letter-spacing: 0;
  }

  .index-concept-area .txt {
    text-align: left;
  }
}

/* index-reason-area */
.index-reason-area .shoplist {
  transform: translateY(-70px);
}

.index-reason-area .shoplist ul {
  gap: 50px;
}

.index-reason-area .shoplist .item {
  width: calc((100% - 100px) / 3);
}

.index-reason-area .shoplist .item>* {
  background: #fff;
  padding: 50px 20px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.index-reason-area .shoplist .item .logo-img {
  background: #fff;
  width: 200px;
  height: 200px;
  border: 1px solid var(--color02);
  display: flex;
  align-items: center;
  justify-content: center;
}

.index-reason-area .shoplist .item .logo-img img {
  max-width: 90%;
  max-height: 70px;
}

.index-reason-area .shoplist .item .name {
  font-size: 26px;
  letter-spacing: 0.1em;
  margin-top: 10px;
}

.index-reason-area .shoplist .item .address {
  text-align: center;
  font-weight: 500;
  margin-top: 10px;
  letter-spacing: 0;
}

.index-reason-area .shoplist .item .tel {
  font-size: 160%;
}

.index-reason-area .shoplist .item .btn.hpb {
  margin-top: 20px;
}

.index-reason-area .shoplist .item .btn.hpb a {
  font-size: 16px;
  letter-spacing: 1px;
  padding: 10px;
}

.index-reason-area .shoplist .item .btn.more {
  margin-top: 10px;
}

.index-reason-area .shoplist .item .btn.more a {
  font-size: 16px;
  letter-spacing: 3px;
  padding: 10px;
}

.index-reason-area .reasonlist .list .item {
  margin-top: 30px;
}

.index-reason-area .reasonlist .list .item .ttl {
  display: flex;
  align-items: baseline;
  font-size: 20px;
  letter-spacing: .2em;
  margin-bottom: 10px;
  font-weight: 500;
}

.index-reason-area .reasonlist .list .item .ttl .num {
  background: var(--color01);
  color: #fff;
  font-size: 120%;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  margin-right: 10px;
  text-align: center;
  line-height: 40px;
  letter-spacing: 0;
}

@media(max-width:1024px) {
  .index-reason-area .shoplist ul {
    gap: 10px;
  }

  .index-reason-area .shoplist .item {
    width: calc((100% - 20px) / 3);
  }

  .index-reason-area .shoplist .item>* {
    padding: 30px 20px 30px;
  }

  .index-reason-area .shoplist .item .logo-img img {
    max-width: 80%;
    max-height: 60px;
  }

  .index-reason-area .shoplist .item .name {
    font-size: 22px;
    letter-spacing: 1px;
  }

  .index-reason-area .shoplist .item .address {
    font-size: 12px;
  }

  .index-reason-area .shoplist .item .telbox {
    font-size: 14px;
  }

  .index-reason-area .shoplist .item .btn.hpb a {
    font-size: 14px;
    letter-spacing: 0px;
  }

  .index-reason-area .shoplist .item .btn.more a {
    font-size: 14px;
  }

  .index-reason-area .reasonlist .list .item .ttl {
    font-size: 16px;
  }

  .index-reason-area .reasonlist .list .item .ttl .num {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }

  .index-reason-area .reasonlist .imgbox {
    position: absolute;
    top: -5%;
    right: -3%;
    opacity: .2;
    width: 80%;
    z-index: 1;
  }
}

@media(max-width:599px) {
  .index-reason-area .shoplist .item {
    width: 80%;
  }

  .index-reason-area .shoplist .item .logo-img {
    height: 150px;
  }

  .index-reason-area .shoplist .item .address {
    font-size: 16px;
    margin-top: 5px;
  }

  .index-reason-area .shoplist .item .btn.hpb {
    margin-top: 10px;
  }
}

/* index-menu-area */
.index-menu-area .menulist .box.type02 {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.index-menu-area .menulist .box.type02 .item {
  width: calc((100% - 40px) / 2);
}

.menulist .box.type03 .item {
  margin-bottom: 30px;
}

.menulist .box.type03 .item:last-child {
  margin-bottom: 0;
}

.menulist .box .item a,.menulist .box .item .a {
  position: relative;
  display: block;
  padding: 20px;
  overflow: hidden;
}

.menulist .box.type03 .item ,.menulist .box.type03 .item .a {
  padding: 0;
}

.menulist .box .item a:hover {
  opacity: 1;
}

.menulist .box .item .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: brightness(0.6);
  transition: .5s;
}

.menulist .box .item a:hover .img,.menulist .box .item .a:hover .img {
  scale: 1.2;
}

.menulist .box .item .img+* {
  min-height: 260px;
  border: 2px solid #fff;
  z-index: 2;
  position: relative;
  color: #fff;
  padding: 30px 60px;
}

.menulist .box.type03 .item .img+* {
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 50px 50px;
  min-height: 240px;
}

.menulist .box.type02 .item .img+* {
  padding: 30px;
}

[data-element-id] .menulist .box.type03 .item .img+*, [data-element-id] .menulist .box.type02 .item .img+*{
  padding: 0;
  margin: 30px;
}

.menulist .box .item .btn {
  display: flex;
  align-items: center;
  letter-spacing: .3em;
  font-weight: 500;
}

.menulist .box .item .btn::before {
  content: "";
  width: 3em;
  height: 2px;
  background-color: #fff;
  display: block;
  margin-right: 1em;
}

.menulist .box .item .txt {
  margin-top: 20px;
}

.menulist .box.type03 .item .txt {
  margin-top: 0;
}

.menulist .box.type03 .item .activebox {
    background: #6d4530;
    color: #fff;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: .5s;
    padding: 10px;
}

.menulist .box.type03 .item.active .activebox{
  opacity: 1;
  visibility: visible;
}

[data-element-id] .menulist .box.type03 .item .activebox{
  opacity: 1;
  visibility: visible;
  position: relative;
}

.menulist .box.type03 .item .activebox ul li {
    width: calc((100% - 60px) /3);
}

.menulist .box.type03 .item .activebox ul li a {
    background: #fff;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

.menulist .box.type03 .item .activebox ul li a img{
  transition: .5s;
}

.menulist .box.type03 .item .activebox ul li a:hover img{
  transform: scale(1.1);
}

@media(max-width:1024px) {
  .menulist .box .item .img+* {
    padding: 30px;
  }

  .index-menu-area .menulist .box.type02 {
    gap: 20px;
    margin-top: 20px;
  }

  .index-menu-area .menulist .box.type02 .item {
    width: calc((100% - 20px) / 2);
  }

  .menulist .box .item .txt {
    font-size: 14px;
  }
}

@media(max-width:599px) {
  .menulist .box .item a,.menulist .box .item .a {
    padding: 10px;
  }

  .menulist .box .item .img+* {
    padding: 20px;
    min-height: 220px;
  }

  .menulist .box.type02 .item .img+* {
    padding: 20px;
  }

  .index-menu-area .menulist .box.type02 {
    flex-wrap: wrap;
  }

  .index-menu-area .menulist .box.type02 .item {
    width: 100%;
  }
}

/* index-gallery */
.index-gallery-area .gallerylist .btn-slick {
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background: var(--color01);
  color: #fff;
  border-radius: 5px;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.index-gallery-area .gallerylist .btn-slick.btn-back {
  right: 60px;
}

.index-gallery-area .gallerylist .btn-slick.btn-back::before {
  content: "\f177";
}

.index-gallery-area .gallerylist .btn-slick.btn-next {
  right: 0;
}

.index-gallery-area .gallerylist .btn-slick.btn-next::before {
  content: "\f178";
}

.gallerylist .item .info {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  transform: translate(-50%, -50%);
  color: #fff;
  opacity: 0;
  transition: .5s;
  text-align: center;
}

.gallerylist .item a {
  background: var(--bgc02);
  position: relative;
  margin: 0 10px;
}

.gallerylist .item a:hover {
  opacity: 1;
}

.gallerylist .item a:hover .info {
  opacity: 1;
}

.gallerylist .item a img {
  transition: .5s;
}

.gallerylist .item a:hover img {
  opacity: 0.5;
}

.gallerylist .item a .info .head {
  font-weight: 500;
  font-size: 120%;
}

@media(max-width:599px) {
  .gallerylist .item a {
    background: var(--bgc02);
  }
}

/* index-blog */
.index-blog-area .bloglist .list .item {
  margin-bottom: 50px;
}

.index-blog-area .bloglist .list .item:last-child {
  margin-bottom: 0;
}

.index-blog-area .bloglist .list .item a {
  display: block;
  font-size: 18px;
  font-weight: 500;
}

.index-blog-area .bloglist .list .item a .img {
  overflow: hidden;
}

.index-blog-area .bloglist .list .item a img {
  transition: .5s;
}

.index-blog-area .bloglist .list .item a:hover img {
  scale: 1.2;
}

.index-blog-area .bloglist .list .item a .date {
  margin-top: 10px;
}

/* index-contact */
.index-contact-area .bgi-cmn-00 img {
  object-position: 50% 30%;
}

.index-contact-area .txt {
  font-size: 20px;
  letter-spacing: .5em;
  color: #fff;
  font-weight: 400;
  margin-top: 30px;
}

.index-contact-area .btn-box {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-top: 50px;
}

.index-contact-area .btn-box .btn {
  position: relative;
  width: calc((100% - 100px) / 3);
}

.index-contact-area .btn-box .btn>* {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 25px 10px;
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 400;
  cursor: pointer;
  color: #fff;
}

[data-element-id] .index-contact-area .btn-box .btn>*{
  display: flex;
    gap: 30px;flex-direction: column;
}

.index-contact-area .btn-box .btn>*:hover {
  opacity: 1;
}

.index-contact-area .btn-box .btn>*::before,
.index-contact-area .btn-box .btn>*::after {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 5px;
}

.index-contact-area .btn-box .btn>*::before {
  opacity: 0;
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1, 0.1);
}

.index-contact-area .btn-box .btn>*:hover::before {
  opacity: 1;
  transform: scale(1, 1);
}

.index-contact-area .btn-box .btn>*::after {
  transition: all 0.3s;
  border: 1px solid #fff;
}

.index-contact-area .btn-box .btn>*:hover::after {
  transform: scale(1, .1);
  opacity: 0;
}

.index-contact-area .btn-box .btn.btn-toggle .activebox {
  visibility: hidden;
  opacity: 0;
  background: #fff;
  border-radius: 5px;
  padding: 30px;
  width: 100%;
  color: var(--color01);
  z-index: 2;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: .5s;
}

[data-element-id] .index-contact-area .btn-box .btn.btn-toggle .activebox {
    visibility: visible;
    opacity: 1;
    cursor: auto;
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    transform: none;
}

.index-contact-area .btn-box .btn.btn-toggle.active .activebox {
  visibility: visible;
  opacity: 1;
  cursor: auto;
}

.index-contact-area .btn-box .btn.btn-toggle .activebox a {
  padding: 10px;
  background: var(--color02);
  display: block;
  text-align: center;
  border-radius: 5px;
  margin: 5px 0 20px;
  letter-spacing: 1px;
}

.index-contact-area .btn-box .btn .activebox li:last-child a {
  margin: 5px 0 0;
}

.close-btn {
  width: 35px;
  height: 35px;
  background: var(--color01);
  color: #fff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
  line-height: 35px;
  position: absolute;
  top: -16px;
  right: -16px;
  border: 2px solid;
  cursor: pointer;
}

@media(max-width:1024px) {
  .index-contact-area .btn-box {
    gap: 20px;
  }

  .index-contact-area .btn-box .btn>* {
    font-size: 14px;
    letter-spacing: 0px;
  }

  .index-contact-area .btn-box .btn {
    width: calc((100% - 40px) / 3);
  }
}

@media(max-width:599px) {
  .index-contact-area .txt {
    font-size: 16px;
    letter-spacing: 2px;
    text-align: center;
  }

  .index-contact-area .btn-box .btn {
    width: 80%;
  }

  .index-contact-area .btn-box .btn>* {
    padding: 15px 10px;
  }
}

/**下層共通*/
/* トップビジュアル（下層共通） */
.topvisual {
  position: relative;
}

.topvisual .img {
  position: relative;
  min-height: 200px;
  max-height: 500px;
}

.topvisual .img:before {
  position: relative;
  z-index: -1;
  display: block;
  padding-top: 30%;
  content: '';
}

.topvisual .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-family: 'object-fit: cover; object-position: 50% 50%;';
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
  filter: saturate(0.6) brightness(0.6);
}

.topvisual .head {
  position: absolute !important;
  width: 96%;
  max-width: 1000px;
  text-align: center;
  top: 60%;
  left: 50%;
  font-weight: 400;
  font-size: 50px;
  letter-spacing: 10px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-shadow: 3px 3px 5px rgb(142 137 133 / 80%);
  color: #fff;
}

@media (max-width: 1024px) {
  .topvisual .head {
    top: 50%;
  }
}

@media (max-width: 599px) {
  .topvisual .head {
    font-size: 40px;
  }

  .topvisual .head.long {
    font-size: 26px;
    letter-spacing: 5px;
  }
}

/* ##### パンくずリスト breadcrumbs ##### */
.breadcrumbs {
  padding: 30px 0 0;
  font-weight: 400;
}

.breadcrumbs-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
}

.breadcrumbs-list li {
  display: inline;
  font-size: 14px;
  letter-spacing: 1px;
}

.breadcrumbs-list li.breadcrumbs-home,
.breadcrumbs-list li.breadcrumbs-prevpage {
  font-weight: bold;
  color: var(--color01);
}

.breadcrumbs.white .breadcrumbs-list li.breadcrumbs-home,
.breadcrumbs.white .breadcrumbs-list li.breadcrumbs-prevpage {
  color: #fff;
}

.breadcrumbs.white {
  color: var(--color02);
}

.breadcrumbs-list li+li::before {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  margin: 0 10px;
  border-top: 1px solid var(--color01);
  border-right: 1px solid var(--color01);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.breadcrumbs.white .breadcrumbs-list li+li::before {
  border-top: 1px solid var(--color02);
  border-right: 1px solid var(--color02);
}

@media (max-width: 1024px) {
  .breadcrumbs {
    padding: 20px 0;
    font-size: 14px;
  }

  .breadcrumbs-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .breadcrumbs-list {
    width: 90%;
    margin-top: 1em;
  }

  .breadcrumbs li {
    font-size: 12px;
  }

  .breadcrumbs li+li::before {
    width: 8px;
    height: 8px;
    margin: 0 5px 1px;
  }
}

@media (max-width: 599px) {
  .breadcrumbs {
    padding: 15px 0;
    font-size: 12px;
  }

  .breadcrumbs li+li::before {
    width: 6px;
    height: 6px;
  }
}

/* ##### パンくずリスト breadcrumbs ここまで ##### */

/* ページネーション */
.pagenation {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}

.pagenation .item {
  margin: 0 10px;
}

.pagenation .prev {
  position: relative;
  margin-right: 20px;
}

.pagenation .prev a:before {
  content: "\f053";
  font-weight: 600;
  font-size: 12px;
  font-family: "Font Awesome 5 Free";
}

.pagenation .next {
  position: relative;
  margin-left: 20px;
}

.pagenation .next a:before {
  content: "\f054";
  font-weight: 600;
  font-size: 12px;
  font-family: "Font Awesome 5 Free";
}

.pagenation .number a,
.pagenation .now,
.pagenation .prev a,
.pagenation .next a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2px 8px;
  padding: 20px;
  width: 30px;
  height: 30px;
  text-align: center;
  font-size: 20px;
  line-height: 26px;
  color: var(--color01);
  font-weight: 300;
  border: 1px solid transparent;
}

.pagenation .number a:hover,
.pagenation .now,
.pagenation .prev a:hover,
.pagenation .next a:hover {
  border: 1px solid;
  opacity: 1;
}

@media (max-width: 599px) {
  .pagenation .item {
    margin: 0 5px;
  }

  .pagenation .prev {
    margin-right: 10px;
  }

  .pagenation .next {
    margin-left: 10px;
  }
}

/**
各下層ページ
*/
/* 02.concept-area */
.concept-area .txt {
  font-size: 16px;
  letter-spacing: .1em;
  font-weight: 400;
  margin-top: 30px;
  line-height: 2;
  color: #fff;
}

.concept-area.black .txt {
  color: var(--color01);
}

.concept-area .txtbox {
  border-bottom: 1px solid #fff;
  padding-bottom: 50px;
  border-top: 1px solid #fff;
  padding-top: 50px;
  padding-left: 20px;
  padding-right: 20px;
  width: fit-content;
  margin: 0 auto;
}

.concept-area.type02 .txtbox {
  width: 100%;
}

.concept-area .addbox {
  background: rgb(255 255 255 / 30%);
  padding: 10px 30px 30px;
  border-radius: 10px;
  text-align: center;
}

.concept-area.black .addbox {
  background: rgb(242 229 222 / 50%);
}

.concept-area.black.black02 .addbox {
  background: rgb(255 255 255 / 50%);
}

.concept-area .txt li {
  display: flex;
  margin-bottom: 10px;
}

.concept-area .addbox.type02 .txt li {
  margin-bottom: 0;
}

.concept-area .txt li:last-child {
  margin-bottom: 0;
}

.concept-area .txt li::before {
  content: "・";
}

.concept-area .txt li img {
    height: auto;
    max-height: 50px;
    max-width: 180px;
}

.concept-area .addbox.type02 .txt li::before {
  content: none;
}

.concept-area.black .txtbox {
  border-bottom: 1px solid var(--color01);
  border-top: 1px solid var(--color01);
}

.reason-area .reasonlist li {
  margin-bottom: 50px;
}

.reason-area .reasonlist li:last-child {
  margin-bottom: 0;
}

.reason-area .reasonlist li:nth-of-type(even)>* {
  flex-direction: row-reverse;
}

.reason-area .reasonlist .titbox {
  display: flex;
  align-items: baseline;
  font-size: 24px;
  font-weight: 400;
}

.reason-area .reasonlist .txtbox .titbox .num {
  background: var(--color01);
  color: #fff;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  margin-right: 20px;
}

.reason-area .reasonlist .txtbox .tit-add {
  font-size: 20px;
  padding-left: 60px;
  margin-top: 5px;
  position: relative;
}

.reason-area .reasonlist .txtbox .tit-add::before {
  content: "";
  width: 50px;
  height: 1px;
  background-color: var(--color01);
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -0.5px;
}

.reason-area .reasonlist .txtbox .txt {
  margin-top: 10px;
}

@media(max-width:1024px) {
  .concept-area .txtbox {
    padding-bottom: 30px;
    padding-top: 30px;
  }

  .concept-area .txt {
    font-size: 14px;
    margin-top: 20px;
  }

  .concept-area .addbox {
    padding: 20px 20px 30px;
  }

  .reason-area .reasonlist .titbox {
    font-size: 20px;
  }

  .reason-area .reasonlist .txtbox .tit-add {
    font-size: 17px;
  }
}

@media(max-width:599px) {
  .concept-area .imgbox {
    position: relative;
    opacity: 1;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
  }

  .concept-area .txt {
    letter-spacing: 1px;
  }

  .concept-area .txtbox,
  .concept-area.black .txtbox {
    padding-bottom: 0;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    border: none;
  }

  .concept-area .txt li img {
    max-height: 40px;
    max-width: 80px;
  }

  .reason-area .reasonlist li {
    margin-bottom: 50px;
  }

  .reason-area .reasonlist li:nth-of-type(even)>* {
    flex-direction: row;
  }

  .reason-area .reasonlist li .txtbox {
    display: contents;
  }

  .reason-area .reasonlist .txtbox .titbox .num {
    margin-right: 10px;
  }

  .reason-area .reasonlist li .titbox {
    order: 1;
    font-size: 18px;
    letter-spacing: 0;
    margin-bottom: 10px;
  }

  .reason-area .reasonlist li .imgbox {
    order: 2;
  }

  .reason-area .reasonlist li .tit-add {
    order: 3;
  }

  .reason-area .reasonlist li .txt {
    order: 4;
  }
}

.voice-area .voicelist {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #fff;
}

.voice-area .voicelist .item {
  width: 48%;
}

.voice-area .voicelist .item .tit {
  font-size: 22px;
  display: flex;
  align-items: baseline;
}

.voice-area .voicelist .item .tit::before {
  content: "\f007";
  font-family: var(--ff99);
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  opacity: .3;
  margin-right: -25px;
  line-height: 1;
}

.voice-area .voicelist .item .txt {
  border: 1px solid;
  padding: 20px;
  margin-top: 10px;
}

@media(max-width:599px) {
  .voice-area .voicelist .item {
    width: 100%;
    margin-bottom: 30px;
  }

  .voice-area .voicelist .item:last-child {
    margin-bottom: 0;
  }

  .voice-area .voicelist .item:nth-of-type(even) .tit {
    margin-left: auto;
    width: fit-content;
  }
}

/* tab */
.tabItem {
  display: none;
}

[data-element-id].tabItem {
  display: block;
}

[data-element-id].tabItem>* {
    display: block;
    border: 5px solid #85daff;
    padding: 20px;
    margin: 0 0 50px!important;
}

[data-element-id].tabItem:nth-of-type(2)>*{
    border: 5px solid #ff8591;
}

[data-element-id].tabItem:nth-of-type(3)>*{
    border: 5px solid #ffb285;
}

.tabItem.active {
  display: block;
}

.tabBtn ul {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 10px;
}

.tabBtn ul .tab_class {
  width: calc((100% - 20px) / 3);
  text-align: center;
  font-weight: 600;
}

.tab_class .btn-txt {
  border: 1px solid #fff;
  padding: 10px 20px;
  color: #fff;
  font-size: 20px;
  font-weight: 300;
}

.tab_class.active .btn-txt {
  color: var(--color01);
  background: #fff;
}

.about-shop-area .shoplist table {
  color: #fff;
  width: 100%;
}

.about-shop-area .shoplist table tr {
  padding: 20px;
  display: flex;
  border-bottom: 1px solid #7e736d;
  align-items: baseline;
  font-weight: 300;
  letter-spacing: 2px;
}

.about-shop-area .shoplist table tr th {
  width: 20%;
  flex-shrink: 0;
}

@media(max-width:599px) {
  .tab_class .btn-txt {
    padding: 10px 5px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0;
  }

  .about-shop-area .shoplist table tr {
    padding: 10px;
    font-size: 14px;
  }

  .about-shop-area .shoplist table tr th {
    width: 25%;
    text-align: left;
  }
}

/* 03.coty01 */
[data-element-id] .staff-area .stafflist ul li:nth-of-type(n+4){
  display: none;
}

.staff-area .stafflist ul li .block-txt {
  color: #fff;
  text-align: center;
  margin-top: 10px;
  font-weight: 300;
}

.staff-area .stafflist ul li .block-txt .cate span{
  font-size: 15px;
}

.staff-area .stafflist ul li .block-txt .cate span::after{
  content: ",";
}

.staff-area .stafflist ul li .block-txt .cate span:last-child::after{
  content:none;
}

.coupon-area .item{
  position: relative;
}

.coupon-area .item .item-inner {
    background: #fff;
    padding: 30px 20px;
    box-shadow: 4px 4px 0 #988e86;
    height: 100%;
}

.coupon-area .item .tit {
    font-size: 20px;
    letter-spacing: -1px;
    padding-left: 100px;
}

.coupon-area .item .sub {
    padding-left: 60px;
    position: relative;
    margin-bottom: 10px;
    font-size: 14px;
    letter-spacing: 0;
        margin-top: 10px;
}

.coupon-area .item .sub::before {
  content: "";
  width: 50px;
  height: 1px;
  background: var(--color01);
  display: block;
  position: absolute;
  top: 1em;
  left: 0;
  margin-top: -0.5px;
}

.coupon-area .item ul {
  margin-bottom: 10px;
}

.coupon-area .item ul li {
  display: flex;
}

.coupon-area .item ul li::before {
  content: "・";
}

.coupon-area .item .name {
    font-size: 24px;
    letter-spacing: 0;
}

.coupon-area .item .price {
  text-align: right;
  font-size: 20px;
  margin-top: -30px;
}

.coupon-area .item .box {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 20px;
}

.coupon-area .item .box .txt {
  background: var(--color02);
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  text-align: center;
}

.coupon-area .item .coupon-tag {
    position: absolute;
    top: -40px;
    left: -10px;
    z-index: 2;
}

.coupon-area .add-title {
    color: #fff;
    padding: 5px 20px;
    width: fit-content;
    max-width: 100%;
    margin-bottom: 5px;
    font-size: 16px;
    position: relative;
    scale: .9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coupon-area .add-title.type02 {
    color: #4a3d33;
    background-color: var(--color02);
    border-radius: 50%;
    aspect-ratio: 1/1;
    scale: .8;
    border: 0px solid;
}

.coupon-area .add-title.type03 {
    color: #4a3d33;
    background-color:#D8AFA7;
    border-radius: 50%;
    aspect-ratio: 1/1;
    scale: .8;
    border: 0px solid;
}

.add-title .title-inner {
    position: relative;
    z-index: 2;
    line-height: 1.1;
    text-align: center;
    letter-spacing: 2px;
}

.add-title .title-inner .ttl {
    font-size: 12px;
    letter-spacing: 1px;
}

.add-title .title-inner .num {
    font-family: serif;
    margin-top: 5px;
}

.add-title::before {
    content: "";
    background-image: url(/upload/tenant_2/1409815.png);
    background-size: contain;
    display: block;
    width: 150px;
    aspect-ratio: 834/838;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.add-title.type02::before,
.add-title.type03::before{
    background-image: url(/upload/tenant_2/1414806.png);
    aspect-ratio: 852/800;
    width: 180px;
}

@media(max-width:1024px) {
  .coupon-area .item .name {
    font-size: 20px;
  }

  .coupon-area .item .tit {
    font-size: 18px;
  }
}

@media(max-width:599px){
  .coupon-area .item .coupon-tag{
        top: -50px;
    left: 5px;
  }
  
  .coupon-area .item .coupon-tag.type02 {
    top: -60px;
}
  
  .coupon-area .add-title {
    scale: .8;
  }
  .coupon-area .add-title.type02 {
    scale: .68;
}
}

.menu-area .menulist {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
}

[data-element-id] .tabItem .menulist::before {
    content: "HairBalance Coty";
    background: #85daff;
    color: #fff;
    padding: 5px;
    font-size: 12px;
    width: calc(100% + 100px);
    margin-left: -20px;
    margin-right: -20px;
    text-align: center;
    margin-top: -25px;
    margin-bottom: 20px;
}

[data-element-id] .tabItem:nth-of-type(2) .menulist::before {
    content: "Jedis Coty";
    background: #ff8591;
}

[data-element-id] .tabItem:nth-of-type(3) .menulist::before {
    content: "FLOWERS";
    background: #ffb285;
}

.menu-area .menulist .item {
  width: 100%;
  margin-bottom: 50px;
  border: 1px solid var(--color01);
  padding: 30px;
}

.menu-area .menulist .item.white {
    border: 1px solid #ffffff;
    color: #fff;
}

[data-element-id] .menu-area .menulist .item{
  margin-bottom: 0;
}

.menu-area .menulist .item .ttl {
  font-size: 30px;
  letter-spacing: 5px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 20px;
}

.menu-area .menulist .item dl {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid #9E9E9E;
  margin-bottom: 10px;
}

.menu-area .menulist .item.white dl{
  border-bottom: 1px solid #fff;
}

.menu-area .menulist .item dl dd {
  display: flex;
  align-items: flex-end;
      flex-shrink: 0;
      margin-left: 20px;
}

@media(max-width:599px) {
  .menu-area .menulist .item {
    padding: 20px;
  }

  .menu-area .menulist .item .ttl {
    font-size: 26px;
    display: flex;
    row-gap: 10px;
    flex-wrap: wrap;
    align-items: baseline;
  }

  .menu-area .menulist .item .ttl span {
    letter-spacing: 1px;
  }
  
  .menu-area .menulist .item dl{
    flex-direction: column;
  }

  .menu-area .menulist .item dl dt {
    display: flex;
    flex-direction: column;
  }

  .menu-area .menulist .item dl dd {
    margin-left: auto;
}
}

/* 06.staff */
.staff-detail-area .stafflist .txtbox {
  padding: 30px;
  background: #fff;
}

.staff-detail-area .stafflist .txtbox dl {
  display: flex;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #9E9E9E;
}

.staff-detail-area .stafflist .txtbox dl:last-child {
  margin-bottom: 0px;
  padding-bottom: 0px;
  border-bottom: none;
}

.staff-detail-area .stafflist .txtbox dl dt {
  width: 30%;
  flex-shrink: 0;
  margin-right: 10px;
}

.written-staff-box {
  background-color: #f8f2ef;
  padding: 1em;
  border-radius: 1em;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
}

.written-staff-box .shop {
    background: var(--color01);
    display: block;
    color: #fff;
    text-align: center;
    width: fit-content;
    padding: 5px 10px;
    margin-left: auto;
    font-size: 14px;
    border-radius: 3px;
}

.written-staff-box .job {
    margin: 5px 0;
    display: block;
}

.written-staff-box .job span {
    display: inline;
    border-bottom: 1px solid;
}

.written-staff-box .job span::after{
  content: "/";
}

.written-staff-box .job span:last-child::after{
  content: none;
}

@media(max-width:599px) {
  .staff-detail-area .stafflist .txtbox {
    padding: 20px;
    font-size: 14px;
  }
  
  .written-staff-box .job {
    text-align: center;
}

.written-staff-box .shop{
  margin: 0 auto;
}
}

.contact-banner a {
  display: flex;
  position: relative;
  min-height: 200px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
}

.contact-banner a:hover {
  opacity: 1;
}

.contact-banner a .bgi {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--bgc01);
}

.contact-banner a .bgi img {
  opacity: .2;
  transition: 1s;
}

.contact-banner a:hover .bgi img {
  scale: 1.1;
}

.contact-banner a .tit {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 30px;
  font-weight: 300;
}

@media(max-width:599px) {
  .contact-banner a .tit {
    font-size: 24px;
  }

  .contact-banner a {
    min-height: 150px;
  }
}

/* 11.products */
.productlist .btn-slick {
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background: var(--color01);
  color: #fff;
  border-radius: 5px;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.productlist .btn-slick.btn-back {
  right: 60px;
}

.productlist .btn-slick.btn-back::before {
  content: "\f177";
}

.productlist .btn-slick.btn-next {
  right: 0;
}

.productlist .btn-slick.btn-next::before {
  content: "\f178";
}

.productlist .ttlbox {
  display: flex;
  position: relative;
  justify-content: space-between;
  width: 96%;
  margin: 0 auto 50px;
}

.productlist .item {
  margin: 0 10px;
}

.productlist .item .name {
  color: #fff;
}

.black .productlist .item .name {
  color: var(--color01);
}

/* 記事一覧ページ */
.list-article .cate span {
  display: inline-block;
  border: 1px solid var(--color01);
  font-size: 13px;
  border-radius: 3px;
  padding: 0 5px;
  margin: 0 5px 2px 0px;
}

/* 記事詳細ページ */
.articledtl01 .cate span {
  display: inline-block;
  border: 1px solid var(--color01);
  border-radius: 3px;
  font-size: 13px;
  padding: 0 5px;
  margin: 0 5px 2px 0px;
}

.articledtl01 .head {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color01);
}

.articledtl01 .txt h2 {
  margin: 1em 0;
  padding: 0.5em 0;
  font-weight: 600;
  font-size: 22px;
  line-height: 1;
}

.articledtl01 .txt h2::first-letter {
  color: var(--color01);
}

.articledtl01 .txt h3 {
  margin: 1em 0;
  padding: 0.5em;
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  border-left: solid 10px var(--color01);
}

.articledtl01 .txt h4 {
  margin: 1em 0;
  padding-bottom: 0.5em;
  font-weight: 600;
  font-size: 18px;
  border-bottom: dotted 2px var(--color01);
}

.articledtl01 .txt ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  align-items: baseline;
  -ms-flex-align: baseline;
  -webkit-column-gap: 5px;
  -moz-column-gap: 5px;
  column-gap: 5px;
}

.articledtl01 .txt ul li::before {
  content: "■";
  color: var(--color01);
}

.articledtl01 .txt ol li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  align-items: baseline;
  -ms-flex-align: baseline;
  list-style-type: none;
  counter-increment: cnt;
}

.articledtl01 .txt ol li::before {
  content: ""counter(cnt)".";
  margin-right: 10px;
  font-weight: bold;
  font-size: 120%;
  color: var(--color01);
}

.articledtl01 iframe[src*="youtube"] {
  aspect-ratio: 16 / 9;
  margin-top: 1em;
  margin-bottom: 1em;
}

[data-element-id] time {
    flex-shrink: 1;
}

.slick-btn-type01 .btn-slick {
  border: 1px solid var(--color01);
  color: var(--color01);
  width: 40px;
  height: 40px;
  font-size: 14px;
  font-weight: bold;
  display: flex !important;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 40%;
  z-index: 2;
}

.slick-btn-type01 .btn-slick.btn-back {
  left: -10px;
}

.slick-btn-type01 .btn-slick.btn-next {
  right: -10px;
}

@media(max-width:599px) {
  .articledtl02 .list-article .item a {
    margin: 0 10px;
  }
}

/* 13.blog(下層) */
.blog-area .list-article .item a {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.blog-area .list-article .item a:hover {
  opacity: 1;
}

.blog-area .list-article .item a .blocktxt {
  transition: .5s;
}

.blog-area .list-article .item a:hover .blocktxt {
  opacity: .5;
}

.blog-area .list-article .item a .img {
  border: 1px solid var(--color01);
  overflow: hidden;
}

.blog-area .list-article .item a .img img {
  transition: .5s;
}

.blog-area .list-article .item a:hover .img img {
  scale: 1.2;
}

/* 14.news(下層) */
.news-area .list-article .item a {
  border-bottom: 1px solid #7e736d;
  display: block;
  padding-bottom: 20px;
  margin-bottom: 20px;
}


/* ギャラリー */
.list-gallery01 a {
  display: block;
  position: relative;
}

.list-gallery01 .img {
  opacity: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.list-gallery01 .block-txt {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding: 10px;
  overflow: hidden;
  visibility: hidden;
  color: #fff;
}

.list-gallery01 .cate {
  font-size: 12px;
  margin-bottom: 5px;
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.list-gallery01 .cate span {
  border: 1px solid;
  padding: 2px 10px;
}

.list-gallery01 .cate.js-span span>span{
  display: none;
}

.list-gallery01 .head {
  font-size: 20px;
}

.list-gallery01 a:hover {
  opacity: 1;
  background: var(--bgc02);
  color: var(--color01);
  font-weight: 400;
}

.list-gallery01 a:hover .img {
  opacity: 0.5;
}

.list-gallery01 a:hover .block-txt {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 599px) {
  .list-gallery01 .block-txt {
    display: none;
  }

  .list-gallery01 .head {
    font-size: 14px;
  }
}

/* ギャラリー詳細 */
.gallerydtl01 .thumbnail {
  cursor: pointer;
}

.gallerydtl01 .box .head01 {
  border-bottom: 1px solid var(--color01);
  padding-bottom: 10px;
}

/* フォーム */
.form .list {
  background: #fff;
  padding: 50px;
  box-shadow: 3px 3px 0 #ccc;
}

.form .box {
  display: -webkit-box;
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;
  padding: 20px 0;
}

.form .datattl {
  display: -webkit-box;
  display: flex;
  flex-shrink: 0;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  align-items: baseline;
  width: 200px;
  font-weight: bold;
}

.form .require {
  display: inline-block;
  margin-left: 10px;
  padding: 2px 10px;
  background: var(--color02);
  font-size: 12px;
  line-height: 1.6em;
  font-weight: 500;
}

.form .data {
    padding-left: 50px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

.form .data input {
  box-sizing: border-box;
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 5px;
  width: 100%;
  border: 1px solid #999;
}

.form .data input[type='radio'],.form .data input[type='checkbox'] {
  display: none;
}

.form .data input[type='radio']+label,.form .data input[type='checkbox']+label {
  position: relative;
  box-sizing: border-box;
  margin-right: 20px;
  padding-left: 25px;
  line-height: 200%;
}

.form .data input[type='radio']+label::before, .form .data input[type='checkbox']+label::before {
    position: absolute;
    top: 0.55em;
    left: 0;
    display: block;
    width: 15px;
    height: 15px;
    border: 2px solid var(--color01);
    border-radius: 50%;
    background: #fff;
    content: '';
}

.form .data input[type='radio']:checked+label::after, .form .data input[type='checkbox']:checked+label::after {
    position: absolute;
    top: 0.75em;
    left: 3px;
    display: block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--color01);
    content: '';
}

.form .data input[type='radio']:checked+label,.form .data input[type='checkbox']:checked+label {
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.form .data input[type='checkbox']:checked+label .attention {
    display: flex;
    flex-direction: column-reverse;
}

.form .data input[type='checkbox']:checked+label .attention::before {
    content: "※お急ぎの方はお電話にてご予約下さい";
    color: red;
    display: block;
    position: relative;
    line-height: 1;
    margin: 5px 0 10px;
    font-size: 14px;
}

.form .data input[type='number'] {
  margin-right: 10px;
  width: 70px;
}

.form .data select {
  box-sizing: border-box;
  padding: 5px;
  border: 1px solid #999;
  color: inherit;
}

.form .data textarea {
  box-sizing: border-box;
  padding: 5px;
  width: 100%;
  height: 170px;
  border: 1px solid #999;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
}

.form .data01 div {
  display: inline-block;
}

@media (max-width: 1024px) {
  .form .item {
    flex-wrap: wrap;
  }

  .form .datattl {
    display: block;
    margin-bottom: 10px;
  }

  .form .data {
    padding-left: 0;
  }
}

@media(max-width:599px) {
  .form .list {
    padding: 30px;
  }

  .form .box {
    flex-wrap: wrap;
  }
}

[data-element-id] .slick-track,[data-element-id] .slick-track>*{
  width: 100% !important;
  transform: none !important;
}

[data-element-id] .slick-initialized .slick-slide {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

[data-element-id] .productlist .item {
    width: 22% !important;
}

[data-element-id] .productlist .item .img{
  width: 100%;
}

[data-element-id] .productlist .item:nth-of-type(n+5) {
    display: none;
}

[data-element-id] .productlist.not-cuscon .item:nth-of-type(n+5){
  display: block;
}

/* slick01 */
[data-element-id] .slick01>*{
    display: flex;
    flex-wrap: wrap;
}

[data-element-id] .slick01>* li{
    width: 30%;
}

[data-element-id] .slick01>* li:nth-of-type(n+4),[data-element-id] .articledtl02 li:nth-of-type(n+4) {
display: none;
}

[data-element-id] .slick02,[data-element-id] .slick02>* {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* パンくずリスト用 */
.breadcrumbs-list li.breadcrumbs-prevpage .breadcrumb-link-wrap.Hair.Balance.COTY .breadcrumb-link:nth-child(n+2) {
    display: none;
}

.breadcrumbs-list li.breadcrumbs-prevpage .breadcrumb-link-wrap.Jedis.coty .breadcrumb-link:nth-child(1),
.breadcrumbs-list li.breadcrumbs-prevpage .breadcrumb-link-wrap.Jedis.coty .breadcrumb-link:nth-child(3) {
    display: none;
}

.breadcrumbs-list li.breadcrumbs-prevpage .breadcrumb-link-wrap.FLOWERS .breadcrumb-link:nth-child(1),
.breadcrumbs-list li.breadcrumbs-prevpage .breadcrumb-link-wrap.FLOWERS .breadcrumb-link:nth-child(2) {
    display: none;
}

/* order */
@media(max-width:599px){
  .sp-order .sp-d-content{
  /* autoprefixer: ignore next */
  display: contents;
}

.sp-order .order1{
  order: 1;
}

.sp-order .order2{
  order: 2;
}

.sp-order .order3{
  order: 3;
}

.sp-order .order4{
  order: 4;
}
}

[data-ab-test-block] [data-ab-test-contents]+[data-ab-test-contents] {display: none;}

/*レンタルギャラリーモーダル*/
.modalArea {
  display: none;
  position: fixed;
  z-index: 10; /*サイトによってここの数値は調整 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modalBg {
  width: 100%;
  height: 100%;
  background-color: rgba(30,30,30,0.9);
}

.modalWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform:translate(-50%,-50%);
  width: 70%;
  max-width: 600px;
  padding: 30px;
  background-color: #fff;
}

.modalWrapper .price {
  display: flex;
  margin-bottom: 5px;
}

.closeModal {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  cursor: pointer;
}

.modalContents .center {
  align-items: center;
  margin: 0 auto;
  margin-bottom: 2em;
}
.modalContents .center .img {
  width: 60%;
  margin: auto;
}
.modalContents ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.modalContents li {
  /* flex: 1 1 auto; */
  margin-left: 0.5em;
  cursor: pointer;
  width: 24%;
}
.modalContents li:first-child {
  margin-left: 0;
}
.side-txt span {
  font-weight: bold;
}

@media(max-width:1024px){
  .modalWrapper {
    width: 70%;
  }
}

@media(max-width:599px){
  .modalWrapper {
    width: 90%;
  }
  .modalContents .txt {
    font-size: 14px;
  }
}

/**ニュースページのcouponリンクボタン**/
.couponbox {
  margin-top: 50px;
}
.couponbox ul {
  display: flex;
  flex-wrap: wrap;
}
.couponbox ul li {
  width: 30%;
  margin: auto;
}

.border_btn01 {
  display: inline-block;
  width: 100%;
  max-width: 350px; /* ボタン幅 */
  color: #fff; /* 文字色 */
  background: #4a3d33;
  border: 1px solid #4a3d33; /* 線幅・種類・色 */
  padding: 3%;
  font-weight: bold; /* 文字の太さ */
  text-decoration: none;
  text-align: center;
  transition: 0.3s;
  border-radius: 10px;
}

/* マウスオーバーした際のデザイン */
.border_btn01:hover {
  color: #4a3d33; /* 文字色 */
  background:  #efe4dc; /* 背景色 */
}

@media (max-width: 599px){
  .couponbox ul li {
    width: 60%;
    margin: 5px auto;
  }
}


.bb-none{
  border-bottom: none !important;
}

.flow04{
  width: 47%;
}

.flow-block{
  display: flex;
    flex-wrap: wrap;
}

.flow-box{
  padding: 5rem 0;
}

.flow04 {
    width: 50%;
    padding: 2rem 1rem;
}
.flow-p4{
  color: #fff;
    margin-top: 10px;
}

.flow-p1{
  background: #fff;
    padding: 10px 10px;
    width: 100px;
    text-align: center;
    border-radius: 30px;
    color: #73462f;
}

.flow-h3{
  margin-bottom: 2rem;
}

.p-flex{
  display: flex;
    margin-bottom: 12px;
}

.flow-p2{
  color: #fff;
    font-size: 22px;
    margin-left: 10px;
    display: flex;
    align-items: center;
}

@media (max-width: 599px){
  .flow-block {
    display: block;
  }

.flow04 {
    width: 100%;
    padding: 1.5rem 0rem;
}

.flow-p2 {
    font-size: 20px;
}
}

/* 2026/06/05 */

#testtop #footer .name .ja{
  font-size: 14px;
}

#testtop #footer .name{
  margin-top: 15px;
  line-height: 1em;
} 

