/* ==============================
  base
============================== */
@import url("https://fonts.googleapis.com/css?family=EB+Garamond:400,400i");
@import url("https://fonts.googleapis.com/css2?family=Julee&display=swap");
body{
    font-family: 'Zen Old Mincho', Osaka, arial, sans-serif;
    margin: 0;
    background: #f3f1eb;
}
img{
    width: 100%;
    vertical-align: bottom;
}
p {
    margin: 0;
}
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}:where([hidden]:not([hidden='until-found'])){display:none!important}:where(html){-webkit-text-size-adjust:none;tab-size:2}@media (prefers-reduced-motion:no-preference){:where(html:focus-within){scroll-behavior:smooth}}:where(body){line-height:1.5;font-family:system-ui,sans-serif;-webkit-font-smoothing:antialiased}:where(button){all:unset}:where(input,button,textarea,select){font:inherit;color:inherit}:where(textarea){resize:vertical;resize:block}:where(button,label,select,summary,[role='button'],[role='option']){cursor:pointer}:where(:disabled){cursor:not-allowed}:where(label:has(>input:disabled),label:has(+input:disabled)){cursor:not-allowed}:where(a){color:inherit;text-underline-offset:.2ex}:where(ul,ol){list-style:none}:where(img,svg,video,canvas,audio,iframe,embed,object){display:block}:where(img,picture,svg,video){max-inline-size:100%;block-size:auto}:where(p,h1,h2,h3,h4,h5,h6){overflow-wrap:break-word}:where(h1,h2,h3){line-height:calc(1em + 0.5rem);text-wrap:balance}:where(hr){border:none;border-block-start:1px solid;color:inherit;block-size:0;overflow:visible}:where(:focus-visible){outline:3px solid CanvasText;box-shadow:0 0 0 5px Canvas;outline-offset:1px}:where(:focus-visible,:target){scroll-margin-block:8vh}:where(.visually-hidden:not(:focus-within,:active)){clip-path:inset(50%)!important;height:1px!important;width:1px!important;overflow:hidden!important;position:absolute!important;white-space:nowrap!important;border:0!important}



/*=== 9-1-2 丸が動いてスクロールを促す ====*/

.scrolldown2 {
    position: absolute;
    bottom: 38%;
    left: 50%;
}

@media screen and (max-width:375px){

/*スクロールダウン全体の場所*/
.scrolldown2{
    /*描画位置※位置は適宜調整してください*/
  position:absolute;
  bottom:30%;
  left:50%;
}
}

/*Scrollテキストの描写*/
.scrolldown2 span{
    /*描画位置*/
  position: absolute;
  left:10px;
  bottom:10px;
    /*テキストの形状*/
  color: #333;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

/* 丸の描写 */
.scrolldown2:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom:0;
    left:-4px;
    /*丸の形状*/
  width:10px;
  height:10px;
  border-radius: 50%;
  background:#333;
    /*丸の動き1.6秒かけて透過し、永遠にループ*/
  animation:
    circlemove 1.6s ease-in-out infinite,
    cirlemovehide 1.6s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove{
      0%{bottom:45px;}
     100%{bottom:-5px;}
 }

/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide{
      0%{opacity:0}
     50%{opacity:1;}
    80%{opacity:0.9;}
  100%{opacity:0;}
 }

/* 線の描写 */
.scrolldown2:after{
  content:"";
    /*描画位置*/
  position: absolute;
  bottom:0;
  left:0;
    /*線の形状*/
  width:2px;
  height: 50px;
  background:#333;
}

#left_wrap,
#right_wrap{
    display: none;
}

@media screen and (max-width:768px){

    #header,
    #header:before{
  height: 90vh;    
    }
    
}

p.store_select_intro_txt {
    position: absolute;
    top: 16%;
    text-align: right;
    right: 10px;
}
.store_select_intro {
    position: relative;
    margin-bottom: 10%;
}
p.store_category_caution {
    margin-bottom: 3%;
    font-size: 14px;
}
.store_directry {
    padding: 10% 0;
    background: #f6f6f8;
}
.store_directry_intro {
    position: relative;
    margin-bottom: 10%;
}
p.store_directry_intro_txt {
    position: absolute;
    top: 14%;
    text-align: left;
    left: 10px;
}
.ggmap {
position: relative;
padding-bottom: 56.25%;
padding-top: 30px;
height: 0;
overflow: hidden;
    margin: 0 auto;
}

.ggmap iframe,
.ggmap object,
.ggmap embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.movie-box {
    position: relative;
}
video.intro-movie {
    width: 95%;
    margin: 0 auto 4%;
}
.fixed-cv     {
    position: fixed;
    bottom: 0px;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 10;
}
.fixed-cv a.cvbt {
    text-decoration: none;
    display: block;
    background: #202033;
    width: fit-content;
    padding: 12px 1em;
    color: #fff;
    font-weight: 600;
    margin: 0 auto;
    width: 80%;
    background: -moz-linear-gradient(top, #c7af60, #c29e43);
    background: -webkit-linear-gradient(top, #c7af60, #c29e43);
    background: linear-gradient(to bottom, #c7af60, #c29e43);
    text-shadow: 1px 1px 15px rgba(95, 76, 21, 0.4);
    text-align: center;
}
.is-hidden {
  visibility: hidden;
  opacity: 0;
}
/*スクロールダウン全体の場所*/
.scrolldown1 {
    position: absolute;
    right: 7%;
    bottom: 10%;
    height: 90px;
    z-index: 100;
}
/*Scrollテキストの描写*/
.scrolldown1 span {
    position: absolute;
    left: -7px;
    top: -38px;
    color: #eee;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    writing-mode: vertical-rl;
}

/* 線の描写 */
.scrolldown1::after{
    content: "";
    /*描画位置*/
    position: absolute;
    top: 0;
    /*線の形状*/
    width: 1px;
    height: 60px;
    background: #eee;
    /*線の動き1.4秒かけて動く。永遠にループ*/
    animation: pathmove 1.4s ease-in-out infinite;
    opacity:0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
    0%{
        height:0;
        top:0;
        opacity: 0;
    }
    30%{
        height:60px;
        opacity: 1;
    }
    100%{
        height:0;
        top:90px;
        opacity: 0;
    }
}
/* スクロールアニメーション */
.fadeIn{
  filter:blur(4px);
  opacity: 0;
  transform: scale(1) translate3d(0, 10px, 0);
  transition: all 1s ease-in-out ;
}

.left{
   transform: scale(1) translate3d(-50px, 0px, 0);
   transition: all 1s ease-in-out ;
}

.right{
    transform: scale(1) translate3d(50px, 0px, 0);
}

.on{
  filter:blur(0);
  opacity: 1;
  transform: scale(1) translate3d(0, 0, 0);
  transition: all 0.8s ease-in-out;
}
/*-- CSSここから --*/
section#mainv {
    position: relative;
    background: #f1f0ec;
    /*padding-bottom:10%;*/
}
p.top_badge {
    position: absolute;
    width: 30%;
    top: 5%;
    left: 3%;
    z-index: 10;
    display: none;
}
p.top_text {
    width: 30%;
    position: absolute;
    bottom: 16%;
    right: 1%;

    z-index: 10;
}
p.top_text_catch {
    position: absolute;
    top: 25%;
    z-index: 10;
    width: 100%;
    z-index: 10;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
p.top_text_logo {
    position: absolute;
    top: 2%;
    left: 2%;
    z-index: 10;
    width: 36%;
    z-index: 10;
}
p.top_logo {
    position: absolute;
    top: 2%;
    left: 2%;
    z-index: 10;
    width: 36%;
    z-index: 15;
}
.infinite-slider {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: absolute;
    bottom: 20px;
    z-index: 10;
    /* background-color: rgba(0, 0, 0, 0.5); */
}
/* 2. アニメーションさせる中身（テキスト）の設定 */
.slider-content {
    display: inline-block;
    color: #ffffff;
    /* font-size: 65px; */
    font-weight: bold;
    letter-spacing: 0.1em;
    padding-right: 0.4em;
    /* height: 160%; */
    animation: flowText 10s linear infinite;
}

/* アニメーションの具体的な動きの定義 */
@keyframes flowText {
    0% {
        /* アニメーション開始時：テキストを右に100%移動させた状態 */
        transform: translateX(0%);
    }
    100% {
        /* アニメーション終了時：テキストを左に100%移動させた状態 */
        transform: translateX(-100%);
    }
}
p.top_text_icon {
    position: absolute;
    bottom: 3%;
    left: 2%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 70%;
    z-index: 10;
    display: none;
}


.slide_radius{
    /*border-radius: 0 0 60px 60px/ 0 0 30px 30px;*/
    height: 78vh;
}

p.gladcover {
    background: linear-gradient(rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 0.2) 95%);
    width: 100%;
    height: 100%;
    z-index: 10;
    position: absolute;
    /*border-radius: 0 0 60px 60px / 0 0 30px 30px;*/
}

.swiper-slide-active .swiper-slide__item,
.swiper-slide-duplicate-active .swiper-slide__item,
.swiper-slide-prev .swiper-slide__item {
    animation: zoomanime 10s linear 0s normal both;
}

@keyframes zoomanime {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.3);
    }
}
section.fair_bnrarea {
    padding: 5%;
}
p.fair_bnr {
    margin-bottom: 5%;
}
p.fair_caution {
    font-size: 12px;
    color: #7c5851;
    margin-bottom: 5%;
            text-align: center;
}
p.fair_caution span{
    color: #f00;
}
p.cvbt_fukidashi {
    width: 160px;
    margin: 0 auto -9px;
}

.fair {
  position: relative; /* 基準をここにする */
  background-color: #fff; /* 外側のベージュ */
  padding: 20px 0 0; /* 下のパディングを0にするか調整 */
  overflow: hidden; /* 斜めのはみ出しをカット */
}



/* ★擬似要素の基準を .fair に変更 */
.fair::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    bottom: 0;
    background-color: #dcd9d1;
    z-index: 0;
    clip-path: polygon(0 60vw, 100% 0, 100% 100%, 0 100%);
    -webkit-clip-path: polygon(0 60vw, 185% 0, 100% 100%, 0 100%);
}
.fair_inner {
  position: relative;
  z-index: 1; /* 白い板の上にコンテンツを出す */
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  /* padding-bottom を入れると、最後のボタン下の余白を調整できます */
  padding-bottom: 80px; 
}

p.fair_badge {
    width: 150px;
    position: absolute;
    top: -35px;
    display: none;
}
dl.fair_head2_dl {
    margin: 0 auto 10%;
    text-align: center;
}
dt.fair_head2_dt img {
    display: block;
    margin: 0 auto;
}
p.fair_catch {
    margin-bottom: 5%;
}
p.fair_mv {
    width: 90%;
    margin: 0 auto 5%;
}
p.fair_img {
    width: 90%;
    margin: 0 auto 5%;
}
p.txt_caution {
    width: 95%;
    margin: 0 auto 10%;
    background: #f6f3ee;
    padding: 10px;
    font-size: 11px;
    text-align: center;
}
p.txt_caution span {
    color: #f00;
}
ul.fair_ul {
    width: 90%;
    margin: 0 auto 5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
}
li.fair_li {
    margin-bottom: 3%;
    width: 32%;
    margin-right: 2%;
}
li.fair_li:nth-of-type(3n) {
    margin-right: 0%;
}
dl.fair_txt_dl {
    text-align: center;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 5%;
    color: #7c5751;
    font-size: 18px;
}
dd.fair_txt_dt span {
    color: #ca6e79;
}
dd.fair_txt_dt span {
    font-size: 32px;
}
/*-- swiper2 --*/
.swiper_outdress {
    overflow: hidden;
}
.swiper2 {
    margin-top: 20px;
    padding-left: 8vw;
    padding-right: 20px;
    margin-bottom: 10%;
    overflow: visible;
}
/* スライド画像のサイズ */
.swiper2 .swiper-slide img {
  height: auto;
  width: 100%;
}

.fair_tokuten_box {
    width: 95%;
    margin: 0 auto;
    text-align: center;
}
p.fair_tokuten_txt {
    margin-bottom: 5%;
}
h3.fair_tokuten_head3 {
    font-size: 30px;
    color: #ca6e79;
    margin-bottom: 5%;
}
h3.fair_tokuten_head3 span{
    font-size: 36px;]
}
h4.fair_tokuten_head4 {
    font-size: 20px;
    margin-bottom: 6%;
}
h4.fair_tokuten_head4 span{
    font-size: 20px;
    color: #ca6e79;
    background:linear-gradient(transparent 60%, #d7ccb7 60%);
}
dl.fair_tokuten_dl {
    border: solid 1px #ca6e79;
    padding: 1.5em;
    margin-bottom: 10%;
}
dt.fair_tokuten_dt {
    color: #ca6e79;
    border-bottom: solid 1px #ca6e79;
    padding-bottom: 5px;
    margin-bottom: 10px;
}
dd.fair_tokuten_dd {
    font-size: 14px;
    text-align: left;
}
a.cvbt {
    text-decoration: none;
    display: block;
    width: 85%;
    color: #fff;
    margin: 0 auto 10px;
}
p.cvbt_caution {
    width: 80%;
    margin: 0 auto;
    text-align: center;
    font-size: 14px;
}

/*-- intro --*/
h3.intro_head3 {
    font-weight: normal;
    margin-bottom: 3%;
    font-size: 16px;
}
p.intro_txt {
    font-size: 16px;
    margin-bottom: 3%;
    line-height: 1.55em;
}

/*-- point --*/
section#point {
    background: #f1f0ec;
    position: relative;
    padding-bottom: 20%;
}
h2.point_head2 {
    text-align: center;
    color: #7c5851;
    position: absolute;
    top: 200px;
    left: 50%;
    font-size: 20px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 90%;
}
.pointbox_inner {
    background: #fdfdfd;
    padding-bottom: 6px;
    border-radius: 0px 0px 190px 25px / 0px 0px 200px 25px;
    padding-top: 100px;
}

.point01_txt {
/*    position: absolute;
    bottom: 10%;
    right: 5%;*/
    font-size: 20px;
    font-weight: 600;
    padding-left: 10px;
    color: #555;
}
p.point_txtbar {

}
.point_img_radius {
    width: 75%;
    border-radius: 0 100px 0 0;
    overflow: hidden;
}
.parallax-img01 {
        isolation: isolate;
    display: block;
    height: 0px;
    width: 83%;
    border-radius: 0 96px 0 0;
    overflow: hidden;
    height: 233px;
    margin-bottom: 12%;
}
.parallax-img01 img {
    object-fit: cover;
    min-height: 240px;
}
@media screen and (max-width:375px){
    .parallax-img01 {
            isolation: isolate;
    display: block;
    height: 0px;
    width: 84%;
    border-radius: 0 98px 0 0;
    overflow: hidden;
    height: 224px;
    margin-bottom: 5%;
}
.parallax-img01 img {
    object-fit: cover;
    min-height: 240px;
}
}
@media screen and (max-width:325px){
    .parallax-img01 {
            isolation: isolate;
    display: block;
    height: 0px;
    width: 84%;
    border-radius: 0 98px 0 0;
    overflow: hidden;
    height: 224px;
    margin-bottom: 5%;
}
.parallax-img01 img {
    object-fit: cover;
    min-height: 240px;
}
}
.pointbox01 {

    position: relative;
    margin-bottom: 20%;
}
p.point01_num {
    width: 170px;
    position: absolute;
    left: 1%;
    bottom: 25%;
}

.parallax-img02 {
    isolation: isolate;
    display: block;
    width: 83%;
    border-radius: 96px 0 0 0;
    overflow: hidden;
    height: 233px;
    margin-bottom: 5%;
    margin-left: 17%;
}
.parallax-img02 img {
    object-fit: cover;
    min-height: 240px;
}
@media screen and (max-width:375px){
.parallax-img02 {
    isolation: isolate;
    display: block;
    width: 84%;
    border-radius: 98px 0 0 0;
    overflow: hidden;
    height: 224px;
    margin-bottom: 5%;
}
.parallax-img02 img {
    object-fit: cover;
    min-height: 240px;
}
}
@media screen and (max-width:325px){
.parallax-img02 {
    isolation: isolate;
    display: block;
    width: 84%;
    border-radius: 98px 0 0 0;
    overflow: hidden;
    height: 224px;
    margin-bottom: 5%;
}
.parallax-img02 img {
    object-fit: cover;
    min-height: 240px;
}
}
.pointbox02 {
/*    display: flex;
    justify-content: space-between;*/
    position: relative;
    margin-bottom: 20%;
    flex-direction: row-reverse;
}
p.point02_num {
    width: 170px;
    position: absolute;
    right: 25px;
    bottom: 17%;
}
.point02_txt {
    text-align: right;
    padding-right: 1em;
    color: #555;
}
.point02_txt {
/*    position: absolute;
    bottom: 10%;
    left: 5%;*/
    font-size: 20px;
    font-weight: 600;
    text-align: right;
}
@media screen and (max-width:325px){
p.point02_num {
    width: 170px;
    position: absolute;
    right: 5px;
    bottom: 17%;
}
}
.parallax-img03 {
    isolation: isolate;
    display: block;
    width: 83%;
    border-radius: 0 96px 0 0;
    overflow: hidden;
    height: 233px;
    margin-bottom: 5%;
}
.parallax-img03 img {
    object-fit: cover;
    height: 240px;
}
@media screen and (max-width:375px){
.parallax-img03 {
    display: block;
    height: 0px;
    width: 84%;
    border-radius: 0 98px 0 0;
    overflow: hidden;
    height: 224px;
    margin-bottom: 5%;
}
.parallax-img03 img {
    object-fit: cover;
    height: 240px;
}
}
@media screen and (max-width:325px){
.parallax-img03 {
    display: block;
    height: 0px;
    width: 84%;
    border-radius: 0 98px 0 0;
    overflow: hidden;
    height: 224px;
    margin-bottom: 5%;
}
.parallax-img03 img {
    object-fit: cover;
    height: 240px;
}
}
.pointbox03 {
/*    display: flex;
    justify-content: space-between;*/
    position: relative;
    margin-bottom: 10%;
}
p.point03_num {
    width: 170px;
    position: absolute;
    right: 25px;
    left: 1%;
    bottom: 18%;
}
.point03_txt {
 /*   position: absolute;
    bottom: 4%;
    right: 10%;*/
    font-size: 20px;
    font-weight: 600;
    padding-left: 10px;
    color: #555;
}
.loc_parabox {
    position: relative;
}
.parallax-content {
    isolation: isolate;
    display: block;
    overflow: hidden;
    margin-bottom: 5%;
}
p.studio_subttl {
    /* margin-bottom: 5%; */
    width: 70%;
    position: absolute;
    bottom: 1%;
    right: 0;
}

/*.parallax-content img {
    object-fit: cover;
    min-height: 240px;
}*/
/*@media screen and (max-width:375px){
.parallax-content {
    display: block;
    height: 0px;
    width: 95%;
    border-radius: 0 95px 0 0;
    overflow: hidden;
    height: 200px;
    margin-bottom: 5%;
}
.parallax-content img {
    object-fit: cover;
    min-height: 210px;
}
}
@media screen and (max-width:325px){
.parallax-content {
    display: block;
    height: 0px;
    width: 95%;
    border-radius: 0 95px 0 0;
    overflow: hidden;
    height: 200px;
    margin-bottom: 5%;
}
.parallax-content img {
    object-fit: cover;
    min-height: 210px;
}
}*/
/*-- studio --*/
section#studio {
    padding: 0% 0 10%;
    background: #fff;
}
p.studio_subttl {
    margin-bottom: 5%;
}

h2.studio_head2 {
    text-align: center;
    line-height: 2em;
    margin-bottom: 3%;
        font-size: 22px;
}
h2.studio_head2 span {
    background: linear-gradient(transparent 60%, #ffcfd4 60%);
}
p.studio_txt {
    text-align: center;
    margin-bottom: 10%;
    font-size: 13px;
    line-height: 1.8em;
    width: 90%;
    margin: 0 auto 10%;
}

/*-- location --*/
section#location {
    padding-bottom: 20%;
}
p.location_subttl {
    margin-bottom: 5%;
}
h2.location_head2 {
    text-align: center;
    line-height: 1.8em;
    margin-bottom: 5%;
    font-size: 18px;
}
h2.location_head2 span{
    background: linear-gradient(transparent 60%, #ffcfd4 60%);
}
p.location_txt {
    text-align: center;
    margin-bottom: 10%;
    font-size: 13px;
    width: 85%;
    margin: 0 auto 10%;
}
p.location_bnr {
    width: 80%;
    margin: 0 auto 15%;
}
p.location_txt2 {
    text-align: center;
    font-size: 14px;
}
/*-- brand --*/

p.dress_txt {
    width: 90%;
    margin: 0 auto 5%;
    font-size: 14px;
    text-align: justify;
    font-weight: 600;
}


section#brand {
   position: relative;
    background: #f6eded;
    padding-bottom: 1%;
}
.brandinfo {
    position: absolute;
    top: 340px;
    width: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
p.brand_sub {
    background: rgba(255,255,255,0.8);
    font-size: 18px;
    padding: 1em 1em;
    text-align: center;
    margin-bottom: 5%;
    width: 180px;
    position: relative;
}
p.brand_sub span {
    font-size: 30px;
    letter-spacing: 7px;
    color: #b1975d;
    font-weight: 600;
}
p.brand_sub::after {
   position: absolute;
    content: "";
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    bottom: -15px;
    width: 1px;
    height: 30px;
    background: #000;
    border-radius: 3px;
    transform: rotate(324deg);
}

.brand_top {
    margin-bottom: 10%;
    height: 620px;
}
dt.brand_head2_dt {
    font-size: 28px;
    text-align: center;
    color: #000;
}
dt.brand_head2_dt span {
    font-size: 50px;
    color: #b1975d;
}
dd.brand_head2_dd {
    font-size: 14px;
    text-align: center;
    color: #b1975d;
    margin-bottom: 7%;
}
p.brand_infotxt {
    text-align: center;
    line-height: 2em;
    font-size: 13px;
}
h3.brand_head3 {
    margin-bottom: 5%;
}

.swiper_outbrand {
    margin-bottom: 10%;
}

p.brand_txt {
    width: 90%;
    margin: 0 auto 15%;
    font-size: 13px;
    line-height: 1.8em;
}
/*-- plan --*/
section#plan {
    padding-top: 10%;
}
.plan_inner {
    padding-top: 12%;
    /* border-radius: 130px 130px 0 0; */
    background: #f3f1eb;
}
dl.plan_head2 {
    margin: 0 auto 5%;
}
dt.plan_head2_dt {
    width: 100%;
    margin: 0% auto 0%;
}

dd.plan_head2_dd {
    text-align: center;
}
h3.plan_head3_txt {
    text-align: center;
    width: 80%;
    margin: 0 auto 10%;
    font-size: 26px;
    line-height: 1.6em;
    padding-bottom: 5%;
    border-bottom: solid 2px #967974;
}
h3.plan_head3_txt span {
    color: #c6a851;
}
h4.plan_head4 {
    background: #7C5850;
    text-align: center;
    color: #fff;
    padding: 10px;
     position: relative;
     margin-bottom: 10%;
}
h4.plan_head4::before {
  content: "";
  border: 10px solid transparent;
  border-top: 10px solid #7C5850;
  margin-left: -10px;
  top: 100%;
  left: 50%;
  position: absolute;
}
h5.plan_head5 {
    text-align: center;
    font-size: 18px;
    width: fit-content;
    margin: 0 auto 10%;
    padding-bottom: 10px;
    border-bottom: dotted 2px #7c5851;
    color: #7c5851;
}
p.plan_txt {
    text-align: center;
    margin-bottom: 10%;
}
p.plan_img {
    width: 90%;
    margin: 0 auto;
    padding-bottom: 10%;
}

ul.plan_tab {
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 10%;
}
li.plan_tab_li {
    border: solid 1px #7c5851;
    color: #7c5851;
    padding: 5px 1.5em;
    border-radius: 30px;
}
li.plan_tab_li.active {
    background: #7c5851;
    color: #fff;
}
/*-- plan_gaiyo --*/
section#plan_gaiyo {
        position: relative;
    background: #f3f1eb;
        padding: 8% 0;
}
dl.plan_gaiyo_dl {
    text-align: center;
    margin-bottom: 10%;
  position: relative;
  margin-bottom: 1em;
}
dl.plan_gaiyo_dl:before {
    content: '';
    position: absolute;
    bottom: -9px;
    display: inline-block;
    width: 277px;
    height: 2px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #cfc5a9;
    border-radius: 2px;
}
dt.plan_gaiyo_dt {
    font-size: 16px;
}
dd.plan_gaiyo_dd {
    font-size: 26px;
}
dt.plan_gaiyo_dd span{
    background: linear-gradient(transparent 60%, #ffcfd4 60%);
}
.plan_gaiyo_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 10%;
}
dl.plan_gaiyo_box_dl {
    width: 50%;
    padding: 10% 5% 0;
    font-size: 14px;
}
p.plan_gaiyo_box_img {
    width: 50%;
}
dt.plan_gaiyo_box_dt {
    color: #fff;
    text-align: center;
    width: fit-content;
    padding: 5px 1em;
    border-radius: 3px;
    margin-bottom: 10px;
    font-size: 14px;
    background: #ad8c68;
    font-weight: 600;
    letter-spacing: 1px;
}
dt.plan_gaiyo_box_dt.retachtxt{
    font-size: 11px;
}
dd.plan_gaiyo_box_dd {
    font-size: 12px;
}
.plan_gaiyo_box.pgbreb {
    flex-direction: row-reverse;
}
p.plan_gaiyo_circle01 {
    position: absolute;
    width: 40%;
    right: 0;
    top: 18%;
    z-index: -1;
}
p.plan_gaiyo_circle02 {
    position: absolute;
    width: 40%;
    left: 0;
    top: 54%;
    z-index: -1;
}
/*-- ai_self --*/
section#ai_self {

    padding-bottom: 10%;
}
.ai_inner {
    background: #fff;
    padding-bottom: 10%;
}
p.ai_self_txt {
    text-align: center;
    padding: 5% 0;
    font-size: 12px;
}
p.ai_self_img {
    margin-bottom: 5%;
}
dl.ai_self_dl {
    width: 95%;
    background: #fff;
    border-radius: 10px;
    text-align: center;
    padding: 1em 0;
    margin: 0 auto;
}
dt.ai_self_dt {
    font-size: 17px;
    font-weight: 600;
    color: #3e3e3e;
    text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, 0 -1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
    margin-bottom: 5%;
    text-align: center;
    text-decoration: underline;
    text-decoration-thickness: 0.5em;
    text-decoration-color: rgb(245 241 233);
    text-underline-offset: -0.2em;
    text-decoration-skip-ink: none;
    line-height: 1.8em;
        letter-spacing: 1px;
}
dd.ai_self_dd {
    font-size: 14px;
}
/*-- studioset --*/
.studioset_top {
    position: relative;
}
.studioset_info {
    width: 90%;
    margin: 0 auto 5%;
}
dl.studioset_dl {
    text-align: center;
    margin-bottom: 10%;
    color: #7c5851;
}
dd.studioset_dd {
    font-size: 26px;
}
p.studioset_txt {
    text-align: center;
    width: 90%;
    margin: 0 auto 10%;
    font-size: 13px;
    line-height: 1.8em;
}
.studioset_box_flexbox {
    display: flex;
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto 10%;
    justify-content: space-between;
}
.studioset_box {
    margin-bottom: 20%;
    position: relative;
}
dl.studioset_box_flexbox_dl {
    width: 47%;
    padding-top: 20px;
}
dt.studioset_box_flexbox_dt {
    margin-bottom: 10%;
}
p.studioset_box_flexbox_pimg {
    width: 47%;
}
p.studioset_box_pimg02 {
    width: 90%;
    margin: 0 auto 10%;
}
ul.studioset_box_ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
li.studioset_box_li {
    width: 30%;
}
p.studioset_box_bg {
    width: 48%;
    position: absolute;
    bottom: 8%;
    right: 0;
    z-index: -1;
}
/*-- voice --*/
section#voice {
    padding: 10% 0;
    /* background-image: url(../img/voice/voice_bg.png); */
    background-position: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background: #f0ecde;
}
h2.voice_head2 {
    width: 80%;
    margin: 0 auto 10%;
    text-align: center;
    line-height: 1.8em;
    padding: 10px;
    border-top: solid 2px #c6a851;
    border-bottom: solid 2px #c6a851;
    font-size: 22px;
}
.voice_box {
    width: 95%;
    margin: 0 auto 10%;
    background: #fff;
    padding: 1.5em;
    border-radius: 15px;
}
dt.voice_dt {
    margin-bottom: 10px;
}
dd.voice_dd {
    line-height: 1.8em;
    font-size: 13px;
}
p.voice_caution {
    padding-left: 7%;
    font-size: 13px;
}
ul.voice_ul {

}
li.voice_li.voice_li_star {
    color: #ffe466;
}
li.voice_li.voice_li_name {
}
p.voice_ttl {
    margin-bottom: 15px;
    width: 80%;
    margin: -57px auto 15px;
}
/*-- report --*/
section#report {
    padding: 10% 0;
}
dl.report_head2_dl {
    margin-bottom: 10%;
}
dd.report_head2_dd {
    font-size: 24px;
    text-align: center;
}
.swiper.swiper_report {
    width: 90%;
    margin: 0 auto 10%;
}
.swiper.swiper_report.slideplanmb {
    margin-bottom: 0%;
}
p.report_box_img {
    margin-bottom: 5%;
}
dl.report_box_dl {
    padding: 0 0.5em;
    margin-bottom: 5%;
}
dt.report_box_dt {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5%;
    line-height: 1.8em;
    color: #3e3e3e;
}
dd.report_box_dd {
    line-height: 1.8em;
}
ul.report_ul {
    display: flex;
    justify-content: start;
    border-bottom: solid 1px #b1975d;
    padding-bottom: 15px;
}
li.report_li {
    color: #7C5851;
    border: solid 1px #7C5851;
    text-align: center;
    padding: 5px 0.5em;
    border-radius: 5px;
    margin: 0 5px;
}
li.report_li_name {
    margin-left: 10px;
}
li.report_li_name span {
    display: inline-block;
    width: 80px;
    padding-right: 5px;
        font-size: 21px;
    font-style: italic;
}
/*-- flow --*/
section#flow {
    padding: 10% 0 20%;
}
dl.flow_head2_dl {
    text-align: center;
    margin-bottom: 5%;
}
dd.flow_head2_dd {
    font-size: 24px;
}
p.flow_time {
    display: flex;
    width: 220px;
    margin: 0 auto 10%;
    color: #6a4c45;
}
p.flow_time span {
    width: 22px;
    margin-right: 10px;
}
.flowbox {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto 10%;
}
p.flowbox_img {
    width: 38%;
    /* padding-top: 80px; */
}
.flowbox_rightcontent {
    width: 58%;
    position: relative;
    /* border-left: solid 1px #7c5851; */
    margin-left: 3%;
    /* padding-bottom: 20%; */
}
p.flowbox_num {
    /* position: absolute; */
    width: fit-content;
    /* top: 0; */
    /* left: -25px; */
    background: #8f6131;
    color: #fff;
    font-weight: 600;
    padding: 0 1em 3px;
    border-radius: 0 40px 40px 0;
}
dl.flowbox_dl {
    /* padding-left: 1.8em; */
    padding-top: 5%;
}
dt.flowbox_dt {
    font-weight: 600;
    margin-bottom: 5%;
    color: #8f6131;
}
dd.flowbox_dd {
    font-size: 13px;
    line-height: 1.6em;
}
.flowbox_rightcontent.frlast {
    border: none;
}
/*-- store --*/
.salonborder{
  position: relative;
  margin-bottom: 1em;
}
.salonborder:before {
    content: '';
    position: absolute;
    bottom: -10px;
    display: inline-block;
    width: 186px;
    height: 2px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: black;
    border-radius: 2px;
}
.store_infobox {
    /*width: 95%;*/
    margin: 0 auto 10%;
    background: #fff;
    padding: 1em;
    /*border-radius: 10px;*/
    position: relative;
}
.store_infobox::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-top: 25px solid #fff;
    border-right: 110px solid transparent;
    border-left: 110px solid transparent;
}
dl.store_head2_dl {
    text-align: center;
    margin-bottom: 8%;
}
dt.store_head2_dt {
    width: 80px;
    margin: 0 auto;
}
button.sub-tab-button {
    color: #78554f;
    /*border-bottom: solid 2px #b9b9b9;*/
    padding-bottom: 5px;
    padding: 0px 1.5em 8px;
    font-size: 16px;
    margin-bottom: 5%;
}
button.sub-tab-button.active {
    /*border-bottom: solid 2px #7c5850;*/
}
.sub-tab-content {
    width: 95%;
    margin: 0 auto;
    background: #fff;
    margin-bottom: 10%;
    border-radius: 10px;
    padding: 5%;
}
h3.store_info_head3 {
    font-size: 18px;
    border-bottom: solid 2px #ddd;
    margin-bottom: 5%;
    padding-bottom: 10px;
    color: #3e3e3e;
}
.store_info_ul {
  margin-bottom: 5%;
}
li.store_info_li {
    width: 32%;
}
h4.store_info_head4 {
    font-size: 14px;
    border-bottom: solid 2px #ddd;
    padding-bottom: 5px;
    margin-bottom: 5%;
    color: #9c864b;
}
p.store_caution {
    text-align: center;
    font-size: 13px;
    margin-bottom: 5%;
}
p.store_info_txt {
    font-size: 14px;
    margin-bottom: 10%;
}
p.store_info_anotxt {
    font-size: 14px;
    margin-bottom: 3%;
}
p.store_info_txt.nagoyapink {
    font-size: 14px;
    margin-bottom: 10%;
    color: #cd777e;
}
dl.store_campaign_dl {
    text-align: center;
    font-size: 16px;
    margin-bottom: 10%;
    color: #7c5851;
}
dt.store_campaign_dt {
    width: fit-content;
    border-bottom: solid 1px #000;
    padding: 5px 2em;
    margin: 0 auto;
}
ul.store_campaign_ul li {
    margin-bottom: 5%;
}
/*-- swipercss --*/
.swiper_left .swiper-wrapper{
    transition-timing-function: linear;
}

.swiper_right .swiper-wrapper{
    transition-timing-function: linear;
}
.swiper.swiper_left {
    margin-bottom: 10%;
}
.swiper.swiper_right {
    margin-bottom: 10%;
}
.swiper.swiper_location_left {
    padding-left: 10vw;
    padding-right: 20px;
    margin-bottom: 10%;
    margin-top: -10px;
}
.swiper.swiper_location_right {
    padding-left: 20px;
    padding-right: 10vw;
    margin-bottom: 10%;
    margin-top: -10px;
}
.swiper.swiper_location_right.loc_reve {
    padding-left: 20px;
    padding-right: 10vw;
    margin-bottom: 10%;
    margin-top: -10px;
}
.swiper.swiper_branddress1 {
    padding-left: 5vw;
    padding-right: 20px;
}
.swiper.swiper_branddress2 {
    padding-left: 5vw;
    padding-right: 20px;
}
.swiper.swiper_branddress3 {
    padding-left: 5vw;
    padding-right: 20px;
}
.swiper_outreport {
    position: relative;
}
/* 前へボタンのスタイリング */
.swiper_outreport .swiper-button-prev {
  height: 50px; /* ボタンの高さ */
  background-image: url('../img/common/slide_mark_left.png'); /* 使用する画像へのパス */
  background-size: contain; /* 画像がボタンのサイズに合うように調整 */
  background-repeat: no-repeat; /* 画像の繰り返し無し */
  background-position: center; /* 画像をボタンの中央に配置 */
  left: 2px;
}

/* 次へボタンのスタイリング */
.swiper_outreport .swiper-button-next {
  height: 50px; /* ボタンの高さ */
  background-image: url('../img/common/slide_mark_right.png'); /* 使用する画像へのパス */
  background-size: contain; /* 画像がボタンのサイズに合うように調整 */
  background-repeat: no-repeat; /* 画像の繰り返し無し */
  background-position: center; /* 画像をボタンの中央に配置 */
  right: 2px;
}
.swiper-button-next:after, .swiper-button-prev:after{ display:none; }

.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: #000000 !important;
}

/*開閉用ボタン（ハンバーガーボタン）*/
.menu-btn {
    position: fixed;
    top: 10px;
    right: 3%;
    width: 40px;
    height:40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 102;
    background: rgba(184,170,139,0.8);
    -webkit-transition: all 3s ease-in-out;
    transition: all .3s ease-in-out;
}
.menu-btn-store {
    position: fixed;
    top: 10px;
    right: 15%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    background: rgba(184,170,139,0.8);
    -webkit-transition: all 3s ease-in-out;
    transition: all .3s ease-in-out;
}
.menu-btn-store img {
    width: 16px;
    padding: 1px;
    position: absolute;
    top: 5%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
.menu-btn-line {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
height: 2px;
width: 60%;
background: #fff;
-webkit-transition: all 3s ease-in-out;
transition: all .3s ease-in-out;
}
.menu-btn-line::before,
.menu-btn-line::after {
content: "";
height: 2px;
width: 100%;
background: #fff;
position: absolute;
left: 0;
-webkit-transition: inherit;
transition: inherit;
}
.menu-btn-line::before{
top: -7px;
}
.menu-btn-line::after{
top: 7px;
}

/* 開閉用ボタンがクリックされた時のスタイル */
.open .menu {
-webkit-transition: all .5s;
transition: all .5s;
visibility: visible;
opacity: 1;
    z-index: 101;
}
.open .menu-btn {
    background: rgba(184,170,139,0.8);
}
.open .menu-btn-line{
background-color: transparent;
}
.open .menu-btn-line::before,
.open .menu-btn-line::after {
top: 0;
background: #fff
}
.open .menu-btn-line::before {
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
}
.open .menu-btn-line::after {
-webkit-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
transform: rotate(-45deg);
}

/*開いたメニュー*/
.menu {
position: fixed;
/*display: flex;*/
justify-content: center;
top: 0;
left: 0;
width: 100%;
height: 100%;
background:#fff;
-webkit-transition: all .5s;
transition: all .5s;
visibility: hidden;
opacity: 0;
z-index: 100;
}
.menu_inner {
    padding: 5% 5%;
}
.menu ul {
/*    transform: translateY(10%);*/
    padding: 0;
    list-style-type: none;
    width: 100%;
    margin-bottom: 40px;
}
.menu li {
    width: 100%;
    height: 40px;
    line-height: 50px;
    text-align: left;
    font-size: 14px;
}
.menu li a {
        display: block;
    font-size: 18px;
    color: #000;
    text-decoration: none;
    -webkit-transition: all .2s;
    transition: all .2s;
    position: relative;
    display: inline-block;
    padding: 0 0 0 24px;
    line-height: 1;
}
.menu li a:before {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 17px;
    height: 2px;
    background-color: #b79653;
    left: 0;
}
.menu li a:hover {
transform: translateX(5px);
-webkit-transition: all .2s;
transition: all .2s;
}
p.menu_logo {
    width: 150px;
    margin-bottom: 20px;
}
p.menu_logo_foot {
    width: 200px;
}

.tab-content, .sub-tab-content {
  display: none; /* 全てのタブ内容を初期状態で非表示にする */
  opacity: 0;
  transition: opacity 0.5s;
}

.tab-content.active, .sub-tab-content.active {
  display: block; /* アクティブなタブの内容のみ表示 */
  opacity: 1;
}
button.tab-button {
    width: 48%;
    text-align: center;
    border: solid 1px #8f6131;
    border-radius: 10px;
    padding: 5px 0;
    margin-bottom: 3%;
    color: #8f6131;
}
.tab-buttons button.tab-button.active {
    background: #8f6131;
    color: #fff;
}
.sub-tab-buttons {
    width: 80%;
    margin: 0 auto 2%;
    justify-content: space-evenly;
    display: flex;
}
.sub-tab-buttons .sub-tab-button.active {
  font-weight: bold;
}

.copyright {
    border-top: solid 1px #fff;
    padding-top: 1em;
    font-size: 12px;
    text-align: center;
    margin-bottom: 0;
}
/* 初期状態での透明度と遷移効果 */
.menu-btn-store, .menu-btn {
  transition: opacity 0.5s ease-in-out;
  opacity: 1; /* 初期状態では完全に表示 */
}

/* フェードアウト用のクラス */
.hide-on-scroll {
  opacity: 0 !important; /* 完全に透明 */
  pointer-events: none; /* クリック等のイベントを無効に */
}

footer {
    background-color: #393939;
    color: #fff;
    padding: 10% 0 2%;
}
p.foot_logo {
    width: 60%;
    margin: 0 auto 10%;
}
p.foot_txt {
    text-align: center;
    margin-bottom: 10%;
    font-size: 14px;
}
p.foot_link {
    text-align: center;
    margin-bottom: 10%;
    font-size: 13px;
}
p.foot_link a {
    text-decoration: none;
}
p.foot_caution {
    font-size: 13px;
    width: 80%;
    margin: 0 auto 5%;
}


@media screen and (max-width:375px){

a.cvbt {
    width: 90%;
}
li.report_li {

    font-size: 12px;
}
button.sub-tab-button {
    font-size: 13px;
}
dt.fair_txt_dt {
    font-size: 16px;
}
dd.fair_txt_dd {
    font-size: 16px;
}
dt.plan_gaiyo_box_dt {
    font-size: 13px;
}
p.brand_infotxt {
    font-size: 11px;
}
dt.brand_head2_dt {
    font-size: 24px;
}
h2.studio_head2 {
    font-size: 18px;
}
p.studioset_txt {
    width: 94%;
    font-size: 12px;
}
li.voice_li.voice_li_name {
    font-size: 14px;
}

.voice_slider_wrapper {
  background-color: #f9f7f2; /* 背景のベージュ色 */
  padding: 40px 0;
}

/* スライダー全体の幅調整 */
.voice_slider {
  width: 100%;
  padding-bottom: 50px !important; /* 下のドット用の余白 */
}

/* カードのデザイン */
.voice_card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* 柔らかい影 */
  margin: 20px; /* 前後のカードとの間隔 */
  box-sizing: border-box;
  text-align: left;
}

.voice_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.voice_stars {
  color: #f1ca4d; /* 星のゴールド色 */
  font-size: 20px;
}

.voice_shop {
  font-size: 14px;
  color: #333;
  font-family: serif;
}

.voice_text {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin: 0;
}

/* 左右の矢印のカスタマイズ */
.swiper-button-prev,
.swiper-button-next {
  width: 50px !important;
  height: 50px !important;
  background-color: rgba(0, 0, 0, 0.3); /* 半透明の黒 */
  border-radius: 50%;
  color: #fff !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 20px !important; /* 矢印のサイズを小さく */
}

/* ページネーション（ドット）の色 */
.swiper-pagination-bullet-active {
  background: #a68c5a !important; /* アクティブなドットをゴールドに */
}

.point01_txt {
/*    position: absolute;
    bottom: 11%;
    right: 5%;*/
    font-size: 20px;
    font-weight: 600;
}
.point02_txt {
/*    position: absolute;
    bottom: 11%;
    left: 10%;*/
    font-size: 20px;
    font-weight: 600;
}
.point03_txt {
/*    position: absolute;
    bottom: 0%;
    right: 12%;*/
    font-size: 20px;
    font-weight: 600;
}
.fixed-cv a.cvbt {
    width: 85%;
}
.menu-btn-store {
    right: 17%;
}
p.location_txt2 {
    font-size: 11px;
}
}

dl.cautionbox {
    width: 90%;
    margin: 5% auto 5%;
    border: solid 1px #555;
    padding: 0.5em;
}
dt.cautionbox_dt {
    font-weight: bold;
    text-align: center;
    margin-bottom: 0.5em;
    font-size: 14px;
}
dd.cautionbox_dd {
    font-size: 12px;
    line-height: 1.8em;
}
dd.cautionbox_dd a {
 /*   text-align: center;
    display: block;*/
}

p.store_caution_txt {
    color: #c20000;
    font-size: 14px;
    margin-bottom: 5%;
}
p.store_caution_txt span{
  
    font-size: 12px;
 
}
h3.plan_head3_txt,
h2.location_head2 {
    color: #7c5851;
}
h2.studio_head2 {
    color: #050505;
}
p.store_grandopen {
    text-align: center;
    margin: -10px auto 5%;
    color: #af0101;
    font-size: 18px;
}
p.fair_licaution {
    width: 95%;
    margin: 0 auto 10%;
    font-size: 12px;
}

dt.store_facility_dt {
    font-size: 14px;
    margin-bottom: 5px;
    color: #7c5851;
}
dd.store_facility_dd {
    color: #c3a24b;
    font-weight: 700;
}
dt.store_consultation_dt {
    font-size: 14px;
    margin-bottom: 5px;
    color: #7c5851;
}
dd.store_consultation_dd {
    color: #706d64;
    font-weight: 700;
}
ul.store_category_ul {
    justify-content: center;
    color: #c29e43;
    display: flex
;
    gap: 5px;
    font-weight: 600;
}
li.store_category_li {
        border: solid 1px;
    padding: 4px 0.5em;
    font-size: 12px;
    margin: 0 0.3em 3% 0;
    border-radius: 5px;
}

/* --- フォトウェディングと前撮りタブ切り替えセクション専用設定 --- */

/* --- レイアウト全体の設定 --- */
.reason_tab_wrapper {
    display: flex;
    flex-wrap: wrap; /* コンテンツを下に行かせるために必須 */
    justify-content: center;
    background-color: #f3f1eb;
    padding: 20px 0;
}

/* ラジオボタンは常に非表示 */
.reason_tab_wrapper input[type="radio"] {
    display: none;
}

/* --- タブボタンのデザイン（画像再現） --- */
.reason_tab_btn {
    width: 45%; /* 2つ並べて少し余白を持たせる */
    max-width: 300px;
    text-align: center;
    cursor: pointer;
    color: #333;
    font-size: 1.1rem;
    font-family: serif;
    position: relative;
    padding: 10px 0 25px;
    margin-bottom: 30px; /* コンテンツとの間隔 */
}

/* 下線（共通） */
.reason_tab_btn::after {
    content: "";
    position: absolute;
    bottom: 12px;
    left: 5%;
    right: 5%;
    height: 1px;
    background-color: #ccc;
    transition: all 0.3s;
}

/* 三角形（共通） */
.reason_tab_btn::before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    border-style: solid;
    border-width: 8px 8px 0 8px;
    border-color: transparent;
    transition: border-color 0.3s;
}

/* --- 選択時のデザイン変化 --- */
#tab_photo_wedding:checked + .reason_tab_btn,
#tab_maedori:checked + .reason_tab_btn {
    color: #a68c5a;
}

#tab_photo_wedding:checked + .reason_tab_btn::after,
#tab_maedori:checked + .reason_tab_btn::after {
    background-color: #a68c5a;
    height: 2px;
}

#tab_photo_wedding:checked + .reason_tab_btn::before,
#tab_maedori:checked + .reason_tab_btn::before {
    border-top-color: #a68c5a;
}

/* --- コンテンツの切り替えロジック --- */
.reason_box_ul {
    display: none; /* 初期状態はすべて非表示 */
    width: 100%;   /* コンテンツは横幅いっぱいに */
    list-style: none;
    padding: 0;
}

/* チェックされているボタンに対応するコンテンツを表示 */
#tab_photo_wedding:checked ~ .content_photo_wedding,
#tab_maedori:checked ~ .content_maedori {
    display: block;
}
/* モーダル背景（オーバーレイ） */
.modal_overlay {
  display: none; /* 初期は非表示 */
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

/* モーダル本体 */
.modal_content {
  background: #fff;
  width: 90%;
  max-width: 600px;
  position: relative;
  padding: 40px 20px;
}

/* 閉じるボタン */
.modal_close {
  position: absolute;
  top: 0px; right: 15px;
  font-size: 30px;
  cursor: pointer;
  color: #333;
}

/* 装飾テキスト (Wedding Fairの部分) */
.modal_deco_text {
    position: absolute;
    top: -31px;
    left: -8px;
    font-family: 'Georgia', serif;
    font-style: italic;
    font-size: 40px;
    color: rgba(180, 150, 100, 0.5);
    pointer-events: none;
    width: 42%;
}

.modal_img_area {/* 前へボタンのスタイリング */
.swiper_outreport .swiper-button-prev {
  height: 50px; /* ボタンの高さ */
  background-image: url('../img/common/slide_mark_left.png'); /* 使用する画像へのパス */
  background-size: contain; /* 画像がボタンのサイズに合うように調整 */
  background-repeat: no-repeat; /* 画像の繰り返し無し */
  background-position: center; /* 画像をボタンの中央に配置 */
  left: 2px;
}

/* 次へボタンのスタイリング */
.swiper_outreport .swiper-button-next {
  height: 50px; /* ボタンの高さ */
  background-image: url('../img/common/slide_mark_right.png'); /* 使用する画像へのパス */
  background-size: contain; /* 画像がボタンのサイズに合うように調整 */
  background-repeat: no-repeat; /* 画像の繰り返し無し */
  background-position: center; /* 画像をボタンの中央に配置 */
  right: 2px;
}
  position: relative;
  margin-bottom: 20px;
  text-align: center;
}

.modal_img_area img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
}

.modal_ttl {
  font-size: 24px;
  text-align: center;
  margin-bottom: 15px;
  border-bottom: 1px dotted #ccc;
  padding-bottom: 10px;
}

.modal_txt {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
}
.fair_li {
  cursor: pointer; /* マウスを乗せると指マークになる */
  transition: opacity 0.3s ease;
}

.fair_li:hover {
  opacity: 0.8; /* 重なった時に少し薄くなる */
}

/* タブ全体のコンテナ */
.plan_tab_container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 500px; /* お好みで調整 */
  margin: 0 auto;
}

/* ラジオボタンは隠す */
input[name="plan_switch"] {
  display: none;
}

/* タブボタンのデザイン */
.plan_tab_label {
  flex: 1;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: #fff;
  color: #b49664; /* ゴールドっぽい色 */
  border: 1px solid #b49664;
  cursor: pointer;
  transition: 0.3s;
  font-weight: bold;
}

/* 選択中のタブ（左側） */
#plan_studio:checked + .plan_tab_label {
  background: #b49664;
  color: #fff;
}
/* 選択中のタブ（右側） */
#plan_chapel:checked + .plan_tab_label {
  background: #b49664;
  color: #fff;
}

/* --- 修正版：コンテンツの切り替え --- */
.plan_content {
    width: 100%;
    order: 10;

    margin: 0 auto ;
    
    /* display: none をやめて、存在はさせるが隠す設定にする */
    height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    position: relative;
}

/* 選択中のタブを表示する */
#plan_studio:checked ~ .content_studio,
#plan_chapel:checked ~ .content_chapel {
    height: auto;           /* 中身に合わせて高さを出す */
    overflow: visible;
    opacity: 1;
    visibility: visible;
    display: block;         /* ここだけ block に戻して配置を確定させる */
}
/* Swiperの矢印が「無効」になったら消す */
.swiper-button-disabled {
    opacity: 0 !important;
    pointer-events: none; /* クリックもできないようにする */
    transition: opacity 0.3s ease;
}

/* 念のため、初期状態の「スタジオ」以外の「チャペル」の矢印も
   タブ切り替えまで正しく制御されるようにします */
.plan_content .swiper-button-prev,
.plan_content .swiper-button-next {
    transition: opacity 0.3s ease;
}

/* 矢印の位置を左右対称に固定 */
.swiper_outreport .swiper-button-prev {
    left: 10px !important; /* 左端からの距離 */
}

.swiper_outreport .swiper-button-next {
    right: 10px !important; /* 右端からの距離 */
}

/* --- スライダー外枠の強制リセット --- */
.swiper_outreport {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    overflow: hidden !important; /* はみ出し（前のvw設定など）をカット */
}

/* --- Swiper本体の設定（左右対称に） --- */
.swiper_report_studio,
.swiper_report_chapel {
    padding: 0 !important;
    margin: 0 auto !important; /* 中央寄せ */
    width: 100% !important;
    overflow: hidden !important;
}
.swiper-pagination.sp-chapel {
    bottom: -30px !important;
}
.swiper-pagination.sp-studio {
    bottom: -30px !important;
}
/* --- スライドの中身（画像）を親の幅に合わせる --- */
.report_box_img {
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
}

.report_box_img img {
    width: 100%;
    height: auto;
    display: block;
}
/* 1. タブ全体の器：ここで左右に余白（スキマ）を作る */
.plan_tab_container {
    display: flex;
    justify-content: center; /* 中央に寄せる */
    gap: 10px;               /* ★重要：ボタン同士の間の余白 */
    width: 90%;              /* 両端を空けるために幅を少し絞る */
    max-width: 500px;        /* 広がりすぎないように制限 */
    margin: 0 auto 15%;     /* 中央配置し、下に余白を作る */
}

/* 2. タブボタン（ラベル）自体の修正 */
.plan_tab_label {
    flex: 1;                 /* 2つのボタンを同じ幅にする */
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #fff;
    color: #b49664;
    border: 1px solid #b49664;
    cursor: pointer;
    transition: 0.3s;
    font-weight: bold;
    
    /* 以前の設定で width: 100% などが入っていたら打ち消す */
    width: auto !important; 
}

/* 3. 中身のコンテンツエリア：以前のvw指定などが残っていたら完全に消す */
.plan_content {
    width: 100% !important;
    padding: 0 5% !important; /* コンテンツの両端にほどよい余白を作る */
}
/* --- コンテンツエリア自体の配置 --- */
.plan_content {
    text-align: center; /* 中身のテキストを中央に */
    padding-left: 0 !important; /* 以前のvw指定を消す */
    padding-right: 0 !important;
}

/* 矢印の共通設定 */
.swiper_outreport .swiper-button-prev,
.swiper_outreport .swiper-button-next {
    top: 50%; /* 画像の高さ中央付近 */
    transform: translateY(-50%);
    z-index: 10;
}

/* 左矢印 */
.swiper_outreport .swiper-button-prev {
    left: 10px !important;
}

/* 右矢印 */
.swiper_outreport .swiper-button-next {
    right: 10px !important;
}
p.plan_txt_keisai {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10%;
}
section#intro_area {
    position: relative;
}
p.intro_imgbg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
}
.intro_concept {
    text-align: center;
    padding: 15% 0;
    position: relative;
}

p.intro_img {
    width: 90%;
    margin: 3% auto 5%;
}
p.intro_concept_txt {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10%;
}
.intro_concept:before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background-image: url(../img/intro_area/intro_txt_mark.png);
    background-size: contain;
    vertical-align: middle;
    margin-bottom: 3%;
}
.intro_concept:after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background-image: url(../img/intro_area/intro_txt_mark.png);
    background-size: contain;
    vertical-align: middle;
    margin-top: 1%;
}
p.intro_imgbg img {
    height: 48vh;
    object-fit: cover;
}

p.reason_headimg {
    margin-bottom: 10%;
}
h2.reason_head2 {
    text-align: center;
    margin-bottom: 10%;
    letter-spacing: 1px;
    font-weight: normal;
}
h2.reason_head2 span {
    font-size: 12px;
}
p.reason_ttl_img {
    margin-bottom: 5%;
}
.reason_box_div {
    width: 90%;
    margin: 0 auto 10%;
    display: flex;
}
.reason_box_div.box_rev {
    flex-direction: row-reverse;
}
p.reason_box_left {
    width: 45%;
}
.reason_box_right {
    width: 55%;
    padding: 3%;
    position: relative;
    background: #fff;
}
p.reason_box_num {
    /* position: absolute; */
    font-size: 30px;
    top: 0;
    left: 10px;
    z-index: 0;
    color: #ddd;
}
dl.reason_box_dl {
    z-index: 5;
    position: relative;
}
dt.reason_box_dt {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4em;
    margin-bottom: 5%;
}
dd.reason_box_dd {
    font-size: 12px;
}
.studio_box {
    position: relative;
    min-height: 360px;
    margin-bottom: 10%;
}
p.studio_bg {
    position: absolute;
    top: 40px;
}
p.studio_cat_ttl {
    margin-bottom: 2%;
}
.studio_box.elegantbox {
    position: relative;
    min-height: 390px;
}
.studio_box.elegantbox p.studio_bg {
    position: absolute;
    top: 80px;
}

section#about_spp {
    background: #f3f1eb;
}
.about_spp_inner {
    background: #fff;
    width: 90%;
    margin: 0 auto 5%;
    padding: 5%;
    background: linear-gradient(0deg, #fff 0%, #fff 70%, #f3f1eb 70%, #f3f1eb 100%);
}
p.about_spp_img {
    margin-bottom: 5%;
}
dl.about_spp_ttl {
    text-align: center;
    margin-bottom: 5%;
}
dd.about_spp_ttl_dd {
    font-size: 24px;
}
h3.about_spp_head3 {
    text-align: center;
    font-weight: normal;
    color: #a28d56;
    margin-bottom: 3%;
}
h4.about_spp_head4 {
    text-align: center;
    font-size: 18px;
    margin-bottom: 4%;
}
p.about_spp_txt {
    width: 97%;
    margin: 0 auto;
}
p.store_info_subtxt {
    text-align: center;
    margin-bottom: 10%;
}
section#movie {
    padding: 0% 0 10%;
}
p.movie_img {
    width: 90%;
    margin: 0 auto 5%;
}
h3.movie_head3 {
    text-align: center;
    font-weight: normal;
    margin-bottom: 5%;
}
p.movie_txt {
    width: 90%;
    margin: 0 auto;
    text-align: justify;
}
/* 前へボタンのスタイリング */
.voice_slider .swiper-button-prev {
      height: 40px;
    width: 40px;
  background-image: url('../img/common/slide_mark_left.png'); /* 使用する画像へのパス */
  background-size: contain; /* 画像がボタンのサイズに合うように調整 */
  background-repeat: no-repeat; /* 画像の繰り返し無し */
  background-position: center; /* 画像をボタンの中央に配置 */
  left: 10px;
}

/* 次へボタンのスタイリング */
.voice_slider .swiper-button-next {
      height: 40px;
    width: 40px;
  background-image: url('../img/common/slide_mark_right.png'); /* 使用する画像へのパス */
  background-size: contain; /* 画像がボタンのサイズに合うように調整 */
  background-repeat: no-repeat; /* 画像の繰り返し無し */
  background-position: center; /* 画像をボタンの中央に配置 */
  right: 10px;
}

/* slider2専用：動きを線形（一定速度）にする */
.slider2 .swiper-wrapper {
  transition-timing-function: linear !important;
}

/* 画像のサイズ調整（任意） */
.slider2 .swiper-slide {
  width: auto; /* slidesPerView: 'auto' の場合に必要 */
}

.slider2 .swiper-slide img {
  display: block;
  height: auto;
  width: 100%;
}
.swiper-container.slider2 {
    overflow: hidden;
}
#gallery {
    padding: 10% 0;
}
h2.voice_head2 span {
    color: #c6a851;
}
.swiper_right .swiper-wrapper {
  transition-timing-function: linear !important;
}
.swiper_left .swiper-wrapper {
  transition-timing-function: linear !important;
}

.swiper.slide_radius img {
    margin-top: -100px;
}
/*-- PC --*/
@media screen and (min-width: 769px) {
div#lp-main {
    max-width: 40.5rem;
    margin: 0 auto;
}


#left_wrap {
    display: block;
    width: calc((100% - 40.5rem) / 2);
    /* width: calc((100% - 50rem) / 2); */
    margin: 0;
}
#right_wrap {
    display: block;
    width: calc((100% - 40.5rem) / 2);
    /* width: calc((100% - 50rem) / 2); */
    margin: 0;
}
#left_wrap .left_image-wrap {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    position: absolute;
}
#left_wrap {
    /* padding: 10rem 8rem 9rem 8rem; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    padding: 2.5rem;
}
#right_wrap {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        right: 0;
        top: 0;
        bottom: 0;
}
#right_wrap .right_image-wrap {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    position: absolute;
}
#left_wrap .left_image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
#left_wrap .left_image:nth-of-type(1) {
    background-image: url(../img/pc_side/lp_bg_left.jpg);
}
#left_wrap .left_image:nth-of-type(2) {
    background-image: url(../img/pc_side/lp_bg_left2.jpg);
}
#left_wrap .left_image:nth-of-type(3) {
    background-image: url(../img/pc_side/lp_bg_left3.jpg);
}
#left_wrap .left_image:nth-of-type(4) {
    background-image: url(../img/pc_side/lp_bg_left4.jpg);
}
#left_wrap .left_image {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    opacity: 0;
    transition: 1s all ease-in-out;
}
#right_wrap .right_image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
#right_wrap .right_image:nth-of-type(1) {
    background-image: url(../img/pc_side/lp_bg_right.jpg);
}
#right_wrap .right_image:nth-of-type(2) {
    background-image: url(../img/pc_side/lp_bg_right2.jpg);
}
#right_wrap .right_image:nth-of-type(3) {
    background-image: url(../img/pc_side/lp_bg_right3.jpg);
}
#right_wrap .right_image:nth-of-type(4) {
    background-image: url(../img/pc_side/lp_bg_right4.jpg);
}
#right_wrap .right_image {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    opacity: 0;
    transition: 1s all ease-in-out;
}
#left_wrap .left_image.on,
#right_wrap .right_image.on {
    opacity: 1;
}

    dt.top_intro_dt {
    font-size: 28px;
    font-weight: bold;
    color: #202033;
    margin-bottom: 15px;
    }
    dd.top_intro_dd {
        line-height: 1.8em;
        color: #202033;
        font-size: 20px;
    }
    dt.head2_dt {
    font-family: "Times New Roman";
    font-style: italic;
    font-size: 18px;
    }
    dd.head2_dd h2 {
        font-size: 14px;
        letter-spacing: 1px;
        font-style: normal;
    }
    p.palette_intro_txt {
    position: absolute;
    top: 0;
    text-align: left;
    line-height: 1.8em;
    left: 1em;
    font-size: 16px;
}
a.cvbt {
    text-decoration: none;
    display: block;
       width: 60%;
    padding: 12px 1em;
    color: #fff;
    font-weight: 600;
    margin: 0 auto 10px;


}

p.store-liimg03 {
    margin-bottom: 15%;
}
p.store-litxt {
    text-align: left;
    line-height: 1.8em;
    font-size: 14px;
    color: #202033;
    font-weight: 600;
}
.store-infobox {
    background: #fff;
    position: relative;
    width: 85%;
    margin: 0 auto 15%;
}
h3.store-infobox-head3 {
    width: fit-content;
    padding: 2px;
    color: #000;
    font-weight: bold;
    font-size: 20px;
}
section.store {
    padding: 10% 0 3%;
    max-width: 750px;
    margin: 0 auto;
}
dl.store-infobox-dl {
    text-align: left;
    padding: 0 1em;
    font-size: 14px;
    margin-bottom: 10%;
}
.scrolldown2 {
   display: none;
}
.fixed-cv a.cvbt {
    text-decoration: none;
    display: block;
    background: #202033;
    width: fit-content;
    padding: 12px 1em;
    color: #fff;
    font-weight: 600;
    margin: 0 auto;
    width: 30%;
    background: -moz-linear-gradient(top, #c7af60, #c29e43);
    background: -webkit-linear-gradient(top, #c7af60, #c29e43);
    background: linear-gradient(to bottom, #c7af60, #c29e43);
    text-shadow: 1px 1px 15px rgba(95, 76, 21, 0.4);
    display: none;
}
.right_cvbox {
    position: relative;
    width: 70%;
    padding-bottom: 4%;
}
p.right_cvbox_badge {
    width: 120px;
    position: absolute;
    bottom: 70%;
    right: -5%;
    z-index: -1;
}
p.right_cvbox_txt {
            text-align: center;
        font-size: 13px;
        margin: 10px;
        color: #f00;
        text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, 0 -1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
    }
.right_cvbox a.cvbt {
    width: 100%;
}
.pc_nav p.menu_logo {
    position: absolute;
    top: -65px;
}
.pc_nav {
    width: 70%;
    background: #fff;
    border-radius: 20px;
    padding: 2em 2em;
    position: relative;
    font-size: 13px;
}

.pc_nav li {
    width: 100%;
    height: 40px;
    line-height: 50px;
    text-align: left;
    font-size: 14px;
}
.pc_nav li a {
    display: block;
    font-size: 18px;
    color: #000;
    text-decoration: none;
    -webkit-transition: all .2s;
    transition: all .2s;
    position: relative;
    display: inline-block;
    padding: 0 0 0 24px;
    line-height: 1;
}
.pc_nav li a:before {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 17px;
    height: 2px;
    background-color: #b79653;
    left: 0;
}
@media screen and (max-width: 1440px) {
.pc_nav {
    width: 94%;
    background: #fff;
    border-radius: 20px;
    padding: 2em 1.5em;
    position: relative;
    font-size: 13px;
}
.pc_nav li a {
    display: block;
    font-size: 16px;
    color: #000;
    text-decoration: none;
    -webkit-transition: all .2s;
    transition: all .2s;
    position: relative;
    display: inline-block;
    padding: 0 0 0 24px;
}
}
.menu-btn,.menu-btn-store{
    display: none;
}
        p.top_text {
        width: 26%;
        position: absolute;
        bottom: 18%;
        right: 1%;
        transform: inherit;
        z-index: 10;
        left: inherit;
    }
p.top_text_catch {
    position: absolute;
            top: 20%;
        z-index: 10;
        width: 72%;
    z-index: 10;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
p.intro_imgbg img {
    height: 69vh;
    object-fit: cover;
    width: 100%;
}
    p.top_text_icon {
        position: absolute;
        bottom: 4%;
        left: 2%;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
        width: 63%;
        z-index: 10;
    }
    section#mainv {
    position: relative;
    background: #f1f0ec;
    /* padding-bottom: 10%; */
    height: 100vh;
}
.slide_radius {
    /* border-radius: 0 0 60px 60px / 0 0 30px 30px; */
    height: 100vh;
}
p.gladcover {
    height: 100vh;
}
p.fair_caution {
    font-size: 15px;
    color: #7c5851;
    margin-bottom: 5%;
}

h3.intro_head3 {
    font-weight: normal;
    margin-bottom: 3%;
    font-size: 24px;
}

p.intro_txt {
    font-size: 24px;
    margin-bottom: 3%;
    line-height: 1.55em;
}

h2.reason_head2 {
    text-align: center;
    margin-bottom: 10%;
    letter-spacing: 1px;
    font-weight: normal;
    font-size: 34px;
}
h2.reason_head2 span {
    font-size: 18px;
}
p.reason_box_num {
    /*position: absolute;*/
    font-size: 65px;
    top: 0;
    left: 10px;
    z-index: 0;
    color: #ddd;
}
dt.reason_box_dt {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 5%;
}
dd.reason_box_dd {
    font-size: 18px;
}
h2.point_head2 {
    text-align: center;
    color: #7c5851;
    position: absolute;
    top: 13%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 80%;
    font-size: 30px;
    line-height: 1.8em;
}
.point01_txt {
/*    position: absolute;
    bottom: 5%;
    right: 5%;*/
    font-size: 30px;
    font-weight: 600;
    width: 91%;
            padding-left: 30px;
}
.point02_txt {
  /*  position: absolute;
    bottom: 5%;
    left: 5%;*/
    font-size: 30px;
    font-weight: 600;
            padding-right: 30px;
}
.point03_txt {
   /* position: absolute;
    bottom: 5%;
    right: 15%;*/
    font-size: 30px;
    font-weight: 600;
            padding-left: 30px;
}
h2.studio_head2 {
    text-align: center;
    line-height: 2em;
    margin-bottom: 10%;
    font-size: 26px;
}
p.studio_txt {
    text-align: center;
    margin-bottom: 10%;
    font-size: 16px;
    line-height: 1.8em;
}
h2.location_head2 {
    text-align: center;
    line-height: 1.8em;
    margin-bottom: 5%;
    font-size: 26px;
}
p.location_txt {
    text-align: center;
    margin-bottom: 10%;
    font-size: 16px;

}
dt.brand_head2_dt {
    font-size: 34px;
    text-align: center;
    color: #000;
}
p.brand_infotxt {
    text-align: center;
    line-height: 2em;
    font-size: 16px;
}
p.brand_txt {
    width: 90%;
    margin: 0 auto 15%;
    font-size: 16px;
    line-height: 1.8em;
}
h3.plan_head3_txt {
    text-align: center;
    width: 80%;
    margin: 0 auto 10%;
    font-size: 30px;
    line-height: 1.6em;
    padding-bottom: 5%;
    border-bottom: solid 2px #967974;

}
h5.plan_head5 {
    text-align: center;
    font-size: 24px;
    width: fit-content;
    margin: 0 auto 5%;
    padding-bottom: 10px;
    border-bottom: dotted 2px #7c5851;
    color: #7c5851;
}
p.plan_txt {
    text-align: center;
    margin-bottom: 10%;
    font-size: 16px;
    line-height: 1.8em;
}
li.plan_tab_li {
    border: solid 1px #7c5851;
    color: #7c5851;
    padding: 10px 1.5em;
    border-radius: 30px;
    width: 38%;
    text-align: center;
}
p.plan_gaiyo_top {
    margin-bottom: 5%;
}
dt.plan_gaiyo_dt {
    font-size: 16px;
}
dd.plan_gaiyo_dd {
    font-size: 28px;
}
dd.plan_gaiyo_dd span {
}
dt.plan_gaiyo_box_dt {
    color: #fff;
    text-align: center;
    width: fit-content;
    padding: 5px 0.8em;
    margin-bottom: 15px;
    font-size: 16px;
}
dd.plan_gaiyo_box_dd {
    font-size: 16px;
}
dd.plan_gaiyo_box_dd {
    font-size: 16px;
}
dl.studioset_dl {
    text-align: center;
    margin-bottom: 5%;
    color: #7c5851;
}
p.txt_caution {
    width: 95%;
    margin: 0 auto 10%;
    background: #f6f3ee;
    padding: 10px;
    font-size: 15px;
    text-align: center;
}
dt.voice_dt {
    margin-bottom: 10px;
    font-size: 18px;
}
dd.voice_dd {
    line-height: 1.8em;
    font-size: 16px;
}
button.sub-tab-button {
    color: #78554f;
    border-bottom: solid 2px #b9b9b9;
    padding-bottom: 5px;
    padding: 0px 1.5em 8px;
    font-size: 18px;
    margin-bottom: 5%;
    width: 38%;
    text-align: center;
}

.studio_box {
    position: relative;
    min-height: 360px;
    margin-bottom: 20%;
}
p.studio_bg {
    position: absolute;
    top: 85px;
}
.studio_box.elegantbox p.studio_bg {
    position: absolute;
    top: 120px;
}
p.point01_num {
        width: 265px;
        position: absolute;
        left: 0px;
}
p.point02_num {
    width: 265px;
        position: absolute;
        right: 0px;

}
p.point03_num {
    width: 265px;
        position: absolute;
        left: 0px;

}
    .plan_inner {
        padding-top: 12%;
        background: #fcfcfc;
    }
p.foot_logo {
    width: 40%;
    margin: 0 auto 5%;
}
p.foot_txt {
    text-align: center;
    margin-bottom: 5%;
    font-size: 14px;
}
p.foot_link {
    text-align: center;
    margin-bottom: 5%;
    font-size: 13px;
}
.swiper.slide_radius img {
    margin-top: -270px;
}

    p.top_text_logo {
        position: absolute;
        bottom: 10%;
        left: 2%;
        z-index: 10;
        width: 28%;
        z-index: 10;
    }
/*-- ai_self --*/

p.ai_self_txt {
    text-align: center;
    padding: 5% 0;
    font-size: 16px;
}
p.ai_self_img {
    margin-bottom: 5%;
}
dl.ai_self_dl {
    width: 95%;
    background: #fff;
    border-radius: 10px;
    text-align: center;
    padding: 1em;
    margin: 0 auto;
}
dt.ai_self_dt {
    font-size: 20px;
    font-weight: 600;
    color: #6a4628;
    text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, 0 -1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
       margin-bottom: 5%;
    text-align: center;
    text-decoration: underline;
    text-decoration-thickness: 0.5em;
    text-decoration-color: rgb(252 214 219);
    text-underline-offset: -0.2em;
    text-decoration-skip-ink: none;

}
dd.ai_self_dd {
    font-size: 16px;
}
li.report_li_name span {
    display: inline-block;
    width: 80px;
    padding-right: 5px;
        font-size: 21px;
    font-style: italic;
}
p.fair_licaution {
    width: 95%;
    margin: 0 auto 10%;
    font-size: 14px;
}
p.voice_ttl {
    margin-bottom: 15px;
    width: 80%;
    margin: -90px auto 15px;
}
.fair::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    bottom: 0;
    background-color: #dcd9d1;
    z-index: 0;
    clip-path: polygon(0 60vw, 100% 0, 100% 100%, 0 100%);
    -webkit-clip-path: polygon(0 18vw, 159% 0, 100% 100%, 0 100%);
}
p.plan_txt_keisai {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 9%;
}
dl.plan_gaiyo_dl {
    text-align: center;
    margin-bottom: 10%;
    position: relative;
    margin-bottom: 5em;
}
}