/* ==============================
  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: "Yu Mincho", "YuMincho",
             "Hiragino Mincho ProN", "Hiragino Mincho Pro",
             "Noto Serif JP", "Source Han Serif JP",
             serif;
    font-weight: 500;
    font-style: normal;
    margin: 0;

}
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;    
    }
    
}

.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);
}
.is-hidden {
  visibility: hidden;
  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;
}
/*開閉用ボタン（ハンバーガーボタン）*/
.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;
}
.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;
}
/*-- CSSここから --*/

/* 全画面セクションが続く想定 */
section {
  position: relative;
}

/* ============================
   SCENE セクション
============================ */
#scene {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

#scene .scene-bg {
      position: absolute;
    inset: 0;
    background: url(../img/scene/scene_bg.png) center right / cover no-repeat;
    z-index: 0;
}

#scene .scene-inner {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#scene .stacked-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;   /* 中央 → 上寄せ */
  justify-content: center;
  padding-top: 0px;        /* 上からの余白（好みで調整してOK） */
      width: 95%;
    margin: 0 auto;
}

#scene .storyDtail_verticalCard {
  max-width: 900px;
  width: min(96vw, 900px);
    padding: 32px 10px 48px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);

  opacity: 0;
  transform: translateY(10%) scale(0.95);
}

/* 画像・テキストはお好みで調整 */
#scene .message_img {
  margin-bottom: 16px;
}
#scene .message_img img {
  width: 100%;
  display: block;
}
#scene .scene_dt {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: 12px;
}
#scene .scene_dd {
  font-size: 14px;
  line-height: 1.9;
}




p.mainv_video {
    width: 80%;
    margin: 10% auto 3%;
}

p.mainv_txt {
    position: absolute;
    top: -30px;
    width: 90%;
    left: 5%;
}

.mainv_catch {
    position: absolute;
    bottom: 15%;
    width: 60%;
}
p.mainv_catchtxt {
    background: #fff;
    padding: 2% 5%;
    margin-bottom: 7px;
    width: fit-content;
}
h2.mainv_ttl {
    text-align: center;
    font-size: 18px;
    margin-bottom: 10%;
    font-family: "Yu Mincho", "YuMincho",
             "Hiragino Mincho ProN", "Hiragino Mincho Pro",
             "Noto Serif JP", "Source Han Serif JP",
             serif;
    font-weight: 500;
    font-style: normal;
}

#ambassador_profile {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 1) 100%), url(../img/profile/profile_bg.png);
    background-repeat: no-repeat;
    padding: 0 0 10%;
}
dl.main_profile_dl {
    width: 85%;
    margin: 10% auto 5%;
    
}

dt.main_profile_dt {
    font-size: 26px;
    font-family: "Yu Mincho", "YuMincho",
             "Hiragino Mincho ProN", "Hiragino Mincho Pro",
             "Noto Serif JP", "Source Han Serif JP",
             serif;
    font-weight: 500;
    font-style: normal;
}
dd.main_profile_dd {
    font-size: 20px;

}
dd.main_profile_dd2 {
    font-size: 13px;
}

p.main_profile_txt {
    width: 85%;
    margin: 0 auto 10%;

}

dl.place_head2 {
    width: 85%;
    margin: 0 auto 10%;
    font-family: "Yu Mincho", "YuMincho",
             "Hiragino Mincho ProN", "Hiragino Mincho Pro",
             "Noto Serif JP", "Source Han Serif JP",
             serif;
    font-weight: 500;
    font-style: normal;
}
dt.place_head2_dt h2 {
    font-weight: normal;
}
p.place_txt {
    width: 85%;
    margin: 0 auto 10%;
    font-size: 14px;
    line-height: 1.8em;
}
p.place_img {
    margin-bottom: 10%;
}
p.place_txt2 {
    width: 85%;
    margin: 0 auto 10%;
    font-size: 14px;
    text-align: center;
    line-height: 1.8em;
}

/*.ambassador_report_box1 {
    position: relative;
}
p.ambassador_report_txtimg {
    position: absolute;
    top: 40%;
    width: 60%;
    right: 0;
}
.ambassador_report_box2 {
    position: relative;
}
p.ambassador_report_txt {
    position: absolute;
    bottom: 5%;
    width: 90%;
    left: 5%;
    color: #fff;
}*/

/* ===== ambassador_report セクション全体 ===== */
#ambassador_report {
  position: relative;
  background: #000;      /* 画像の上下に余白を出さない用の下地 */
  height: 100vh;
  padding: 0;
  overflow: hidden;
}

/* 共通レイアウト：2つのボックスを全面に重ねる */
#ambassador_report .ambassador_report_box1,
#ambassador_report .ambassador_report_box2 {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

/* ★ 最初は box1 だけ見せておく */
#ambassador_report .ambassador_report_box1 {
  opacity: 1;
}
#ambassador_report .ambassador_report_box2 {
  opacity: 0;
}

/* 背景画像を全面に敷く */
#ambassador_report .ambassador_report_img {
  position: absolute;
  inset: 0;
  margin: 0;
  height: 100vh;
}
#ambassador_report .ambassador_report_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* box1：タイトル画像（テキスト画像）は後から出すので最初は下げて非表示 */
#ambassador_report .ambassador_report_box1 .ambassador_report_txtimg {
  position: relative;
  z-index: 2;
  margin: 0;
  opacity: 0;
  transform: translateY(30px);
}
#ambassador_report .ambassador_report_box1 .ambassador_report_txtimg img {
  max-width: 420px;
  width: 80%;
  display: block;
}

/* box2：テキストも後から出すので最初は下げて非表示 */
#ambassador_report .ambassador_report_box2 {
  padding: 40px 16px;
}
#ambassador_report .ambassador_report_box2 .ambassador_report_txt {
  position: relative;
  z-index: 2;
  max-width: 720px;
  font-size: 14px;
  line-height: 1.9;
  color: #333;
  text-align: left;
  /*background: rgba(255,255,255,0.65);*/
  padding: 16px 20px;
  border-radius: 12px;
  opacity: 0;
  transform: translateY(30px);
}
#ambassador_report .white-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  height: 100vh;
}
@media (max-width: 768px) {
  #ambassador_report .ambassador_report_box2 {
    padding: 32px 16px;
    justify-content: flex-end;
  }
  #ambassador_report .ambassador_report_box2 {
  position: relative;
}


#ambassador_report .ambassador_report_box2 {
  position: relative;
}

#ambassador_report .white-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  height: 100vh;
}
#ambassador_report .ambassador_report_txt {
  position: relative;
  z-index: 2;
}
  #ambassador_report .ambassador_report_box2 .ambassador_report_txt {
    font-size: 13px;
  }
}

.gallery_img {
    padding: 10% 5%;
}
p.message_txt {
    width: 90%;
    margin: 5% auto;
    font-size: 13px;
    line-height: 1.8em;
}
dd.place_head2_dt {
    font-size: 18px;
}
dd.place_head2_dd {
    font-size: 44px;
}
.staff_box {
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 10%;
}
p.staff_img {
    flex: 0 0 10.5rem;
    position: relative;
    z-index: 2;
    transition-delay: 1s;
}
.staff_info {
    flex: 0 0 19.8rem;
    background: #f8f8f8;
    width: 30.8rem;
    min-height: 15rem;
    box-shadow: 3px 3px 6px rgba(150, 150, 150, 0.16);
}
.staff_box.rebbox {
    flex-direction: row-reverse;
}
.staff_box .staff_info {
    padding: 1.8rem 6.4rem 2rem 1.5rem;
}
.staff_box p.staff_img {
    margin-left: -5.3rem;
}
.staff_box.rebbox .staff_info {
    padding: 1.8rem 1.5rem 2rem 6.8rem;
}
.staff_box.rebbox p.staff_img {
    margin-right: -5.3rem;
}
p.staff_txt {
    margin-bottom: 5%;
}
a.instagram_link {
    display: block;
    text-decoration: none;
    border: solid 1px;
    border-radius: 90px;
    text-align: center;
    width: fit-content;
    padding: 1px 2em;
        margin: 0;
}
dl.staff_dl {
    margin-bottom: 5%;
    font-weight: 600;
}
p.staff_txt {
    font-size: 14px;
    margin-bottom: 5%;
}
footer {
    padding: 8rem 0 0;
}
.cm_footer_bannerArea {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    height: 25.2rem;
    overflow: hidden;
}
.cm_component_btn {
    margin-top: 2.4rem;
    position: relative;
    z-index: 2;
    text-decoration: none;
}
.cm_component_btn::before {
    content: "";
    display: inline-block;
    width: 4.1rem;
    background: #231815;
    height: 0.1rem;
    position: absolute;
    top: 2.8rem;
    right: -1.2rem;
    z-index: 5;
}
.cm_component_btn_inner {
    width: 22rem;
    height: 5.1rem;
    background: transparent;
    border: 1px solid #231815;
    display: flex;
    padding-top: 2rem;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
}
.cm_component_btn::after {
    content: "";
    display: inline-block;
    width: 22rem;
    height: 5.1rem;
    background: url(../img/cv/component_btn_bg.jpg) no-repeat center center / cover;
    position: absolute;
    bottom: -5px;
    right: -5px;
}
.cm_footer_bg {
    position: absolute;
    width: 100%;
    /*height: 100%;*/
}
.cm_footer_img.js_scaleElement img {
    opacity: 0.7;
}
p.cm_footer_copy {
    text-align: center;
    font-size: 13px;
    padding: 10px;
}
.cm_floating_btn {
    width: 100%;
    height: 5rem;
    bottom: -40px;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0.8rem;
    background: #231815;
    display: grid;
    position: fixed;
    z-index: 2;
    text-decoration: none;
}
        .cm_floating_btn_inner {
        padding: 0;
        width: 100%;
        height: 100%;
        background: url(../images/sp_btn_bg.jpg) no-repeat center center / cover;
        border: 1px solid #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0 2rem;
        background: #231815;
    }
        .cm_floating_btn_jp {
        font-size: 1.4rem;
        color: #fff;
    }
    #cmFloatingBtn {
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

#cmFloatingBtn.is-visible {
  opacity: 1;
  pointer-events: auto;
}
/*-- 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: flex-end;
    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;
}
.menu-btn,.menu-btn-store{
    display: none;
}
#scene .scene-bg {
      position: absolute;
    inset: 0;
    background: url(../img/scene/scene_bg.png) center / cover no-repeat;
    z-index: 0;
}

.staff_box {
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 10%;
}
p.staff_img {
    flex: 0 0 10.5rem;
    position: relative;
    z-index: 2;
    transition-delay: 1s;
}
.staff_info {
    flex: 0 0 30.8rem;
    background: #f8f8f8;
    width: 30.8rem;
    min-height: 15rem;
    box-shadow: 3px 3px 6px rgba(150, 150, 150, 0.16);
}
.staff_box.rebbox {
    flex-direction: row-reverse;
}
.staff_box .staff_info {
    padding: 1.8rem 6.4rem 2rem 1.5rem;
}
.staff_box p.staff_img {
    margin-left: -5.3rem;
}
.staff_box.rebbox .staff_info {
    padding: 1.8rem 1.5rem 2rem 6.8rem;
}
.staff_box.rebbox p.staff_img {
    margin-right: -5.3rem;
}
p.staff_txt {
    margin-bottom: 5%;
}
a.instagram_link {
    display: block;
    text-decoration: none;
    border: solid 1px;
    border-radius: 90px;
    text-align: center;
    width: fit-content;
    padding: 1px 2em;
        margin: 0 0 0 auto;
}
#scene .stacked-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0px;
    width: 85%;
    margin: 0 auto;
}
    a.cvbt {
        width: 20rem;
        height: 5.1rem;
        background: transparent;
        border: 1px solid #231815;
        display: flex;
        padding-top: 2rem;
        justify-content: center;
        text-align: center;
        position: relative;
        margin-bottom: 10%;
        text-decoration: none;
    }
    a.cvbt::after {
        content: "";
        display: inline-block;
        width: 20rem;
        height: 5.1rem;
        background: url(../img/cv/component_btn_bg.jpg) no-repeat center center / cover;
        position: absolute;
        bottom: -5px;
        right: -5px;
        z-index: -1;
    }
.cm_floating_btn {
    width: 34%;
    height: 5rem;
    bottom: -40px;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0.8rem;
    background: #231815;
    display: grid;
    position: fixed;
    z-index: 2;
    text-decoration: none;
}
.cm_component_btn_inner {
    width: 33rem;
}
.cm_component_btn::after {
    width: 33rem;
}
@media (min-width: 1024px) {
  #ambassador_report .ambassador_report_box2 .ambassador_report_txt {
    transform: translateY(0px) !important;; /* ←30px → 80pxなどにして下へ寄せる */
  }
}
}