@charset "utf-8";
/* CSS Document */
a:hover {
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    opacity: 0.7;
    filter: alpha(opacity=70);
    -ms-filter: "alpha(opacity=70)";
}
.sp_only{
	display: none;
}

.inner {
    width: 85%;
    margin: 0 auto;
}
.mb40{
	margin-bottom: 40px;
}
 /* スクロールバー非表示 */
 .center-scroll::-webkit-scrollbar {
  display: none;
}
.layout {
  display: grid;
  grid-template-columns: 1fr 375px 1fr;
  height: 100vh;
  background-image: url(../img/pc-bk.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;

}
main.center-scroll {
    background-color: #fff;
	height: 100vh;
    overflow-y: auto; /* ←ここだけスクロール */
    overflow-x: hidden;
	
}

.left-fixed {
	position: relative;
}
.pc-logo {
    max-width: 276px;
    position: absolute;
    top: 20%;
    right: 10%;
}
.right-fixed {
    position: relative;
}
.nav {
    position: absolute;
    top: 12%;
    left: 10%;
}
.g-nav {
  width: 280px;
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.g-nav li:last-child a{
    background: #815E46;
    color: #fff;
}

.g-nav li a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(0,0,0,0.2);
}
.head-wrap {
    display: none;
}
.sp-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto 0;
  min-height: 56px;
  background: #fff;
   overflow: visible;
}

.sp-header__brand {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 5px 10px;
  color: #333;
  text-decoration: none;
}

.sp-header__logo {
  width: 32px;
  flex: 0 0 auto;
}

.sp-header__logo img {
  display: block;
  width: 100%;
  height: auto;
}

h1 {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.08em;
  white-space: nowrap;
  color:#815E46;
}

.sp-hamburger {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  margin: 0;
  flex: 0 0 65px;
  background: #fff;
  border-radius: 0 0 16px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}

.sp-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #815E46;
  transition: transform .3s ease;
  transform-origin: center;
}

/* 上の線 */
.sp-hamburger.is-active span:nth-child(1) {
  transform: translateY(3.5px) rotate(45deg);
}

/* 下の線 */
.sp-hamburger.is-active span:nth-child(2) {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* ここ大事 */
.sp-menu {
  width: 100%;
  margin: 0 auto;
  background: #F9F4EB;
  border-radius: 0 0 6px 6px;
  position: relative;
  z-index: 10;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: max-height .4s ease, opacity .3s ease, transform .3s ease, visibility .3s ease;
  pointer-events: none;
}

.sp-menu.is-open {
  max-height: 500px; /* メニューが収まる十分な高さ */
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.sp-menu__inner {
  padding: 18px;
}

.sp-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sp-menu__list li + li {
  margin-top: 12px;
}
ul.sp-menu__list li:last-child a{
  background: #815E46;
    color: #fff;
}
.rounded-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    box-sizing: border-box;
    border-radius: 9999px;
    background: #eac982;
    color: #323232;
    text-decoration: none;
    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}
/* 左アイコン */
.rounded-btn__left-icon {
  position: absolute;
  left: 30px;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.rounded-btn__text {
    font-family: "Shippori Mincho", serif;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.2em;
    line-height: 1;
}

.rounded-btn:hover {
    background: #815e46;
    color: #fff;
}

.rounded-btn:hover .rounded-btn__icon {
    transform: translate(5px, -50%);
}
.rounded-btn__icon {
    position: absolute;
    top: 50%;
    right: 29px;
    width: 20px;
    height: auto;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}
.rounded-btn:hover .rounded-btn__icon {
    transform: translate(5px, -50%);
}
section#reazon {
    background-color: #815E46;
    padding: 64px 0 40px 0;
}
.tit-box h3 {
    text-align: center;
    color: #EAC988;
    font-family: Corinthia;
    font-size: 28px;
    margin-bottom: 8px;
    line-height: 1;
    letter-spacing: 0.08em;
}
.tit-box h2 {
    color: #fff;
    text-align: center;
    font-size: 32px;
    line-height: 1.7;
    letter-spacing: 0.2em;
}
.tit-box hr {
    margin: 24px auto 40px;
    width: 80px;
    height: 1px;
  background: #fff;
}
p.nomal-text {
    text-align: center;
    color: #fff;
    letter-spacing: 0.3em;
    line-height: 2;
    margin-bottom: 40px;
}
.tit-box {
  background-image:url(../img/h2-bk.png); 
  background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
}
.tit-box4 h3 {
    text-align: center;
    color: #815E46;
    font-family: Corinthia;
    font-size: 28px;
    margin-bottom: 8px;
    line-height: 1;
}
.tit-box4 h2 {
    color: #815E46;
    text-align: center;
    font-size: 32px;
    line-height: 1.7;
    letter-spacing: 0.2em;
}
.tit-box4 hr {
    margin: 24px auto 40px;
    width: 80px;
    height: 1px;
  background: #815E46;
}
section.staff {
    padding: 64px 0;
    background-image:url(../img/staff-bk.png); 
  background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
}

p.img-l {
    margin-bottom: 16px;
}
p.img-l img{
   max-width: 351px;
}
.img-r{
    text-align: right;
    margin-bottom: 16px;
}

.img-r img{
    display: inline-block;
    max-width: 351px;
}
video {
    width: 100%;
}
section.movie {
    background-color: #815E46;
    padding: 0 0 64px 0;
}
p.number {
    width: 84%;
    margin: 0 auto;
    font-size: 64px;
    color: #EAC988;
    font-family: Corinthia;
    line-height: 0.6;
}
h4{
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    width: 84%;
    margin: 0 auto;
    letter-spacing: 0.2em;
    margin-bottom: 16px;
}
p.left-text{
    width: 84%;
    margin: 0 auto;
    color: #fff;
    margin-bottom: 40px;
}
p.left-text2{
    width: 84%;
    margin: 0 auto;
    color: #fff;
}

.slider-arrow-wrap {
  overflow: visible;
}

.arrowSlider {
  position: relative;
  overflow: visible;
}

.arrowSlider .swiper-wrapper {
  overflow: visible;
}

.arrowSlider .swiper-slide {
  overflow: visible;
}


.arrowSlider .slide-frame {
  overflow: hidden;
  background: #fff;
}

.arrowSlider .slide-frame a {
  display: block;
}

.arrowSlider .slide-frame img {
  display: block;
  max-width: 343px;
  height: auto;
}
.arrowSlider .slide-frame {
  max-width: 343px;  
  margin: 0 auto;    
}
/* デフォルト矢印を消す */
.arrowSlider .swiper-button-prev::after,
.arrowSlider .swiper-button-next::after {
  content: none;
}


.arrowSlider .slider-arrow-btn {
  width: 56px;
  height: 56px;
  background: #CAA864;
  position: absolute;
  top: 150px;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-arrow-wrap,
.arrowSlider,
.arrowSlider .swiper-wrapper {
  overflow: visible;
}
/* 左 */
.arrowSlider .swiper-button-prev {
  left: 0;
  transform: translate(-0%, -50%);
}

/* 右 */
.arrowSlider .swiper-button-next {
  right: 0;
  transform: translate(0%, -50%);
}

/* 矢印の中身（白） */
.arrowSlider .slider-arrow-btn::before {
  content: "";
  width: 20px;
  height: 20px;
  
}

/* 左矢印 */
.arrowSlider .swiper-button-prev::before {
   background-image:url("../img/a-l.svg");
   background-repeat: no-repeat;
   background-position: center center;
}

/* 右矢印 */
.arrowSlider .swiper-button-next::before {
  background-image:url("../img/a-r.svg");
  background-repeat: no-repeat;
  background-position: center center;
}

/* ページャー */
.arrowSlider .swiper-pagination {
  position: static;
  margin-top: 12px;
  text-align: center;
}

.arrowSlider .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  margin: 0 10px !important;
  background: #fff;
  opacity: 1;
  border: 1px solid #CAA864;
}

.arrowSlider .swiper-pagination-bullet-active {
  background: #CAA864;
}
section.slider-arrow-wrap {
    margin: 5% 0;
}

section.menu {
    padding:64px 0;
}
.tit-box2 h3 {
    text-align: center;
    color: #613C0F;
    font-family: Corinthia;
    font-size: 28px;
    margin-bottom: 8px;
    line-height: 1;
}
.tit-box2 h2 {
    color: #613C0F;
    text-align: center;
    font-size: 32px;
    line-height: 1.7;
    letter-spacing: 0.2em;
}
.tit-box2 hr {
    margin: 24px auto 40px;
    width: 80px;
    height: 1px;
  background: #613C0F;
}

.tit-box2 {
  background-image:url(../img/h2-bk.png); 
  background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
}
.menu-slide{
  background-color:#EFECDB ;
  padding: 5% 0;
  height: 427px;
}
.menu-tit{
  background-color: #815E46;
  color:#fff ;
  font-size: 20px;
  padding: 10px 0 10px 5px;
  margin-bottom: 16px;
  line-height: 1;
  font-weight: 700;
}
.menu-tit2{
  background-color: #8A8958;
  color:#fff ;
  font-size: 21px;
  padding: 10px 0 10px 5px;
  margin-bottom: 16px;
  line-height: 1;
  font-weight: 700;
}
.menu-tit3{
  background-color: #DE9393;
  color:#fff ;
  font-size: 21px;
  padding: 10px 0 10px 5px;
  margin-bottom: 16px;
  line-height: 1;
  font-weight: 700;
}
.menu-tit4{
  background-color: #815E46;
  color:#fff ;
  font-size: 21px;
  padding: 10px 0 10px 5px;
  margin-bottom: 16px;
  line-height: 1;
  font-weight: 700;
}
.menu-tit5{
  background-color: #EAC988;
  color:#613C0F ;
  font-size: 21px;
  padding: 10px 0 10px 5px;
  margin-bottom: 16px;
  line-height: 1;
  font-weight: 700;
}
.shampoo-list{
  list-style-type: disc !important;
}
.m-inner{
  width: 90%;
  margin: 0 auto;
}
.menu-sub{
  display: block;
  font-size: 14px;
  color: #fff;
  margin-bottom: 8px;
  font-weight: 900;
}
.menu-sub2{
  display: block;
  font-size: 14px;
  color: #fff;
  margin-top: 8px;
  font-weight: 900;
  line-height: 1.5;
}
.menu-sub3{
  display: block;
  font-size: 14px;
  color: #613C0F;
  margin-bottom: 8px;
  font-weight: 900;
}
.option-list{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:18px 8px;
    margin:0;
    padding:0;
    list-style:none;
    margin-top: 16px;
}

.option-list li{
    display:flex;
    align-items:center;
    gap:4px;
}

.option-list img{
    width:22px;
    height:auto;
    flex-shrink:0;
}

.option-list span{
    font-family:"Shippori Mincho", serif;
    font-size:16px;
    font-weight:900;
    color: #323232;
}
.menu-price{
  text-align: right;
  font-size: 20px;
  font-weight:900;
  color: #613C0F;
}
p.menu-info{
  margin-bottom: 16px;
}
.btn{
  margin: 40px auto 0;
  width: 90%;
}
section.flow {
    padding: 64px 0;
    background-color: #EFECDB;
}
.flow-card__head{
    display:grid;
    grid-template-columns:auto 1fr;
}

.flow-card__number{
    position: relative;

    width: 80px;
    aspect-ratio: 1 / 1;

    background: #90694E;

    display: flex;
    justify-content: center;
    align-items: center;
}

/* Flow */
.flow-card__label{
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    font-family: "Corinthia", cursive;
    font-size: 18px;
    line-height: 1;
    color: #EAC988;
    white-space: nowrap;
}

/* 数字 */
.flow-card__num{
    margin: 0;
    font-family: "Corinthia", cursive;
    font-size: 64px;
    line-height: 1;
    color: #fff;
    transform: translateY(8px);
}

/* タイトル */
.flow-card__title{
    display:flex;
    align-items:center;
    margin:0;
    padding:0 0 0 10px;
    font-family:"Shippori Mincho", serif;
    font-size:20px;
    font-weight:900;
    color:#323232;
    background-color: #fff;
}

/* ========================
   画像
======================== */
.flow-card__image{
    width:100%;
    margin-bottom: 16px;
}

.flow-card__image img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
}

/* ========================
   説明文
======================== */
.flow-card__text{
    color:#323232;
}
p.flow-text {
    margin-bottom: 40px;
    text-align: center;
}
p.down {
    /* text-align: center; */
    width: 7px;
    margin: 24px auto;
}
.first-customer{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom: 16px;
}

.first-customer__icon{
    width:40px;
    height:40px;
    flex-shrink:0;
    display:block;
}

.first-customer__title{
    margin:0;
    font-family:"Shippori Mincho";
    font-size:20px;
    color:#323232;
}
.check {
    background-color: #fff;
    border-radius: 8px;
    margin-top: 40px;
    padding: 24px 0;
    border: 1px solid #C9BCBC;
}
.check-inner {
    width: 85%;
    margin: 0 auto;
}
p.staff-text {
    text-align: center;
    margin-bottom: 40px;
}
.menu-slide2 {
    background-color: #EFECDB;
    padding: 5% 0;
}
.position{
  color: #815E46;
}
.name{
  font-size: 24px;
  font-family:"Shippori Mincho";
    font-weight:900;
    color:#323232;
}
.name-en{
  font-size: 14px;
  font-family:"Shippori Mincho";
    font-weight:900;
    color:#F3B12D;
}
.menu-slide2 {
    background-color: #EFECDB;
    padding: 5% 0;
}
section#access {
    padding: 64px 0;
    background-color: #815E46;
}
.ac-inner {
    width: 90%;
    margin: 0 auto;
    border-radius: 8px;
    background-color: #fff;
    padding:24px 0;
}
.ac-inner2 {
    width: 90%;
    margin: 0 auto;
}
p.ac-tit {
    font-size: 20px;
    text-align: center;
    font-weight: 900;
    color: #815E46;
    margin-bottom: 24px;
}
dl.ac-info dt{
 border-left: 1px solid #EAC988;
 font-weight: 900;
 padding-left: 24px;
 margin-bottom: 16px;
}
dl.ac-info dd{
  padding-left: 24px
}
dl.ac-info {
    margin-bottom: 40px;
}
.gmap {
    margin-bottom: 24px;
}
dl.ac-flow dt{
  margin-bottom: 8px;
}
dl.ac-flow2 dt{
  margin-bottom: 8px;
}
dl.ac-flow{
  margin-bottom: 40px;
}
dl.ac-flow2{
  margin-bottom: 0px;
}
section.ig {
    padding: 64px 0;
}
/* SNSリスト */
.sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding: 40px 0 0 0;
  background-color: #815E46;
}

/* アイコンリンク */
.sns li a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  width: 40px;
}

/* コピーライト */
.copy {
  font-size: 12px;
  color: #fff;
  background-color: #815E46;
  padding: 24px 0 ;
	text-align: center;
  letter-spacing: 0;
}

.fixed-btn{
    display:flex;
    width:100%;
}

.fixed-btn__item{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    text-decoration:none;
    padding: 15px 0;
}

.fixed-btn__item--reserve{
    background:#8C684C;
}

.fixed-btn__item--tel{
    background:#E6C777;
}

.fixed-btn__item img{
    width:24px;
    height:24px;
    display:block;
}

.fixed-btn__item span{
    color:#fff;
    font-family:"Shippori Mincho";
    font-size:18px;
    font-weight:900;
    line-height:1;
}
.fixed-btn__item .tel-w{
    color:#323232;
    font-family:"Shippori Mincho";
    font-size:18px;
    font-weight:900;
    line-height:1;
}

.fixed-btn__item--reserve span{
    color:#fff;
}
.lower-fv {
    background: linear-gradient(
  90deg,
  #F7F5EC 0%,
  #F3F0E4 45%,
  #EFECDB 100%
);
    padding: 40px 0;
}
.lower-fv img{
  max-width: 351px;
}
h5{
  font-size: 20px;
  color: #323232;
  font-family:"Shippori Mincho";
  font-weight: 900;
  width: 90%;
  margin: 0 auto;
}
.breadcrumb{
    padding:24px 0;
    width: 90%;
    margin: 0 auto;
}

.breadcrumb__list{
    display:flex;
    align-items:center;
    margin:0;
    padding:0;
    list-style:none;
}

.breadcrumb__item{
    display:flex;
    align-items:center;
    font-family:"Shippori Mincho";
    font-size:14px;
    gap: 8px;
}

.breadcrumb__item a{
    display:flex;
    align-items:center;
    gap:10px;
    color:#815E46;
    text-decoration:underline;
}

.breadcrumb__home{
    width:15px;
    height:15px;
    display:block;
}

.breadcrumb__arrow{
    margin:0 18px;
    display:flex;
    align-items:center;
}

.breadcrumb__arrow img{
    width:6px;
    height:auto;
    display:block;
}

.breadcrumb__item[aria-current="page"]{
    color:#333;
}
/* ==========================================
アンカーナビ
========================================== */

.anchor-nav{
    background:#815E46;
    padding:40px 30px;
}

.anchor-nav__list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
    margin:0;
    padding:0;
    list-style:none;
}

.anchor-nav__list a {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 45px;
    padding: 0 14px;
    background: #fff;
    color: #323232;
    text-decoration: none;
    transition: .3s;
}

.anchor-nav__list a:hover{
    background:#F8F4EF;
}

.anchor-nav__list img{
    width:12px;
    display:block;
}

.anchor-nav__list span{
    font-family:"Shippori Mincho",serif;
    font-weight:900;
}
.menu-slide2 {
    background-color: #EFECDB;
    padding: 5% 0;
}
/* ==========================================
アコーディオン
========================================== */

.accordion__item{
    border:2px solid #D3B26A;
    border-radius:8px;
    overflow:hidden;
    margin-top: 16px;
}

.accordion__btn{
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
    width:100%;
    min-height:48px;
    background:#fff;
    border:none;
    cursor:pointer;
}

.accordion__title{
    font-family:"Shippori Mincho",serif;
    font-weight:900;
    color: #323232;
    font-size: 16px;
    letter-spacing: 0.2em;
}

.accordion__icon{
    position:absolute;
    right:35px;
    width:12px;
    height:12px;
}

.accordion__icon::before,
.accordion__icon::after{
    content:"";
    position:absolute;
    top:50%;
    left:50%;
    width:12px;
    height:2px;
    background:#333;
    transform:translate(-50%,-50%);
}

.accordion__icon::after{
    transform:translate(-50%,-50%) rotate(90deg);
    transition:.3s;
}

/* 開いた時 */

.accordion__item.is-open .accordion__icon::after{
    opacity:0;
}

.accordion__content{
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease;
    

}
.open-inner{
background:#EFECDB;
    padding: 0 4px 16px 4px;
}
.accordion__content>*{
  background-color: #EFECDB;
  
}
dl.price-info {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #815E46;
    padding: 8px 0;
}
dl.price-info dt{
  color: #323232;
  font-weight: 900;
  letter-spacing: 0.05em;
}
dl.price-info dd{
  color: #613C0F;
  font-weight: 900;
}
p.kome {
    font-size: 14px;
    margin-top: 8px;
    color: #613C0F;
    font-weight: 900;
}
.menu-list {
    margin-bottom: 40px;
}
.course-text{
  text-align: center;
  color: #613C0F;
  margin-bottom: 40px;
}
dl.price-info2 {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #EAC988;
    margin-bottom: 8px;
}
dl.price-info2 dt,dd{
color: #323232;
}
p.op-text {
    color: #fff;
    width: 90%;
    margin: 40px auto 0;
}
section#transfar {
    padding: 64px 0;
    background-color: #EFECDB;
}
dl.price-info3 {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid;
    padding: 8px 0;
    font-weight: 900;
}
dl.price-info3 dt{
  color: #613C0F;
}
.t-img{
  margin: 16px 0;
}
section#hotel {
    padding: 64px 0;
}
p.bring {
    font-weight: 900;
    margin-top: 40px;
}
p.hotel-price {
    font-weight: 900;
    font-size: 20px;
    color: #613C0F;
    margin: 16px 0 8px 0;
}
p.hotel-info{
  font-weight: 900;
  color: #613C0F;
}
h6 {
    text-align: center;
    font-size: 16px;
    font-weight: 900;
    background-color: #815E46;
    color: #fff;
    margin-bottom: 4px;
}
.open-inner2{
  background-color: #fff;
  padding: 0 0 12px 0;
}
.open-inner3{
  width: 90%;
  margin: 0 auto;
}
p.plof {
    margin-bottom: 12px;
}
p.st-tit {
    font-size: 18px;
    font-weight: 900;
    color: #815E46;
    margin-bottom: 16px;
    letter-spacing: 0.06em;
}
section.est {
    padding: 0 0 64px 0;
}
section.care-wrap {
    padding: 64px 0;
}
p.op-img {
    margin: 20px 0 0 0;
}
#sb_instagram #sbi_images {
    display: grid;
    padding: 0 !important;
    width: 100%;
}
div#sb_instagram {
  padding-bottom: 0 !important;
}
/* ■02.横幅1280px以上（PC用）
--------------------------------------------------- */
@media screen and (min-width:768px) and (max-width:1200px) {
    /* ▼PC用================================================================== */

/* ▲PC用================================================================== */
}
/* ■02.横幅1280px以上（PC用）
--------------------------------------------------- */
@media screen and (min-width:1024px) and (max-width:1280px) {
    /* ▼PC用================================================================== */
  /* ▲PC用================================================================== */
}   

/* ■03.横幅768px以上、1299px以下（Tab用）スクロールバー対策で+20pxを指定する
--------------------------------------------------- */
@media screen and (min-width:1280px) and (max-width:1024px) {
    /* ▼tab用================================================================= */


    /* ▲tab用================================================================== */
}
/* ■05.横幅767px以下（SP用）
--------------------------------------------------- */
@media screen and (min-width:0px) and (max-width:768px) {
/* ▼SP用================================================================ */
.sp_only{
		display: block;
	}
.pc_only{
		display: none;
	}
.inner {
    width: 90%;
}
  body {
    overflow: auto;
  }
.layout {
    display: block;
    height: auto;
  }	   
.left-fixed,
  .right-fixed {
    display: none;
  }
	.center-scroll {
  overflow-y: scroll; /* ←常に表示 */
}
	main.center-scroll {
    height: auto;
    border-left: none;
    border-right: none;
}
.head-wrap {
    display: block;
}
	.fixed-btn {
    bottom: 0;
    position: fixed;
    display: flex;
    width: 100%;
    z-index: 10;
}
.copy {
    padding: 24px 0 60px 0;
}

/* ▲sp用================================================================== */
}


















