﻿@charset "utf-8";
/* CSS Document */


/* ---------------------------------------------------------------------------------------------

   Reset

--------------------------------------------------------------------------------------------- */
*{
	padding:0;
	margin:0;
}
 
/*要素のフォントサイズやマージン・パディングをリセットしています*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    border:0;
    vertical-align:baseline;
    background: transparent;
	color: #000;
	font-size:100%;
	line-height: 2;
	font-family: 'Noto Serif JP', serif;
	transition: opacity 0.3s ease;
}

html{
	height:100%;
	scroll-behavior: smooth;
}
 
/*行の高さをフォントサイズと同じにしています*/
body {
    line-height:1;
	height:100%;
	-webkit-text-size-adjust: 100%;/*スマホやタブレットを横サイズにした場合に変動してしまうフォントサイズを維持（阻止）するための記述*/
	position:relative;
}

@keyframes fadein { /*ページふわっと切替*/
	0% {opacity: 0}
	100% {opacity: 1}
}
 
/*新規追加要素のデフォルトはすべてインライン要素になっているので、section要素などをブロック要素へ変更しています*/
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}
 
/*nav要素内ulのマーカー（行頭記号）を表示しないようにしています*/
nav ul {
    list-style:none;
}
ul li{
	list-style:none;
}

 
/*引用符の表示が出ないようにしています*/
blockquote, q {
    quotes:none;
}
 
/*blockquote要素、q要素の前後にコンテンツを追加しないように指定しています*/
blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

 
/*a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を親要素のベースラインに揃えるようにしています*/
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
	transition: opacity 0.5s ease;
	font-family: 'Noto Serif JP', serif;
}

*, *:before, *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box
}

a img{
	border:0;
}

a:link{
	text-decoration:none;
	color: #000;
}

a:active{
	color: #000;
}

a:visited{
	color: #000;
}

a:hover{
	text-decoration:none;
}
 
/* ins要素のデフォルトをセットし、色を変える場合はここで変更できるようにしています */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}
 
/* mark要素のデフォルトをセットし、色やフォントスタイルを変える場合はここで変更できるようにしています
また、mark要素とは、文書内の検索結果で該当するフレーズをハイライトして、目立たせる際に使用するようです。*/
mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}
 
/*テキストに打ち消し線が付くようにしています*/
del {
    text-decoration: line-through;
}
 
/*IEではデフォルトで点線を下線表示する設定ではないので、下線がつくようにしています
また、マウスオーバー時にヘルプカーソルの表示が出るようにしています*/
abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}
 
/*隣接するセルのボーダーを重ねて表示し、間隔を0に指定しています*/
table {
    border-collapse:collapse;
    border-spacing:0;
	width:100%;
}
 
/*水平罫線のデフォルトである立体的な罫線を見えなくしています*/
hr {
    display:block;
    height:1px;
    border:0;  
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}
 
/*縦方向の揃え位置を中央揃えに指定しています*/
input, select {
    vertical-align:middle;
}

img {
	vertical-align: top;
	font-size:0;
	line-height: 0;
    display:block;
}

.clearfix:after {
	content: "."; 
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
.clearfix {
	min-height: 1px;
}
* html .clearfix {
	height: 1px;
	/*¥*//*/
	height: auto;
	overflow: hidden;
	/**/
}


/* ---------------------------------------------------------------------------------------------

   Pc-side-navBar

--------------------------------------------------------------------------------------------- */
.pc-side-navBar{
    position: fixed;
    top: 0;
    left: 0;
    width: 15%;
    height: 100vh;
    background: #fff;
    padding: 2.5%;
}

.logo{
    width: 100%;
}

.pc-nav{
    width: 100%;
    margin-top: 75px;
}

.pc-nav ul li{
    text-align: center;
	font-size: clamp(16px, 3vw, 18px);
    line-height: 1;
    margin-top: 40px;
}

.pc-sns-wrap{
    position: absolute;
    bottom: 15px;
    left: 42.5%;
    width: auto;
}

.pc-sns-wrap .sns-svg-icon{
    width: 37.5px;
    height: 37.5px;
    display: block;
}
a:hover .sns-svg-icon{
    opacity: 0.75;
}

@media screen and (max-width:1200px) {
    
.pc-side-navBar{
    display: none;
}
}


/* ---------------------------------------------------------------------------------------------

   Sp-head-navBar(header)

--------------------------------------------------------------------------------------------- */
header{
    display: none;
}

@media screen and (max-width:1200px) {
    
header {
  display: block;
  position: fixed; 
  top: 0; 
  transition: top .5s; /* アニメーション効果を追加 */
  width: 100%;
    height: 75px;
    z-index: 999;
    background: #fff;
}

.header-wrap{
    width: 100%;
    height: 100%;
    position: relative;
    background: #fff;
}

.header-list {
  align-items: center; /* 垂直方向中央揃え */
  display: flex; /* 横並びに配置 */
  height: 75px; 
  justify-content: center; /* 左右中央寄せ */
}

.header-item a {
  color: #000; /* テキスト色 */
  padding: 10px 15px; /* 内側の余白 */
  text-decoration: none; /* デフォルトの下線を消す */
	font-size: clamp(12px, 2vw, 14px);
    font-weight: bold;
}
.header-item a:hover {
    color: #e60012;
}

.head-logo a img{
    position: absolute;
    top: 12.5px;
    left: 5%;
	z-index: 500;
    width: 125px;
    height: auto;
}
}


/* ---------------------------------------------------------------------------------------------

   navi（ハンバーガー）ボタンのためのCSS

--------------------------------------------------------------------------------------------- */
.openbtn1{
	position:fixed;
	top: 0%;
	right: 1%;
	z-index: 9000;/*ボタンを最前面に*/
	cursor: pointer;
    width: 125px;/*ハンバーガー&カーソルエリア指定*/
    height: 75px;/*カーソルエリア指定*/
	display: none;
    /* button要素デフォルトスタイルリセット */
    background: transparent;
    border: none;
    padding: 0;
    -webkit-appearance: none;
    appearance: none;
}
/*×に変化*/	
.openbtn1 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 1px;
	background-color: #000;/*ハンバーガー色*/
  	width: 65%;
    box-shadow: 0 0 3px #fff,0 0 3px #fff,0 0 3px #fff;
}

@media screen and (max-width:1200px) {
    
.openbtn1{
	display: block;
}
}

@media screen and (max-width:700px) {
  
.openbtn1{
	top: 0%;
	right: 0;
    width: 100px;
    height: 50px;
}
}

.openbtn1 span:nth-of-type(1) {
	top:25.5px;	
}

.openbtn1 span:nth-of-type(2) {
	top:35.5px;
}

.openbtn1 span:nth-of-type(3) {
	top:45.5px;
}

.openbtn1.active span:nth-of-type(1) {
    top: 30px;
    left: 15px;
    transform: translateY(6px) rotate(-45deg);
    width: 65%;
}

.openbtn1.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn1.active span:nth-of-type(3){
    top: 42px;
    left: 15px;
    transform: translateY(-6px) rotate(45deg);
    width: 65%;
}


/* Sp-menu---------------------------------------------------------------------------------------------

   ナビゲーションのためのCSS Nav

--------------------------------------------------------------------------------------------- */
/*アクティブになったエリア*/
#sp-nav.panelactive{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
	top: 25px;
	width: 100%;
    height: 100vh;
}

/*丸の拡大*/
.circle-bg{
    position: fixed;
	z-index: 75;
    /*丸の形*/
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fff;
    /*丸のスタート位置と形状*/
	transform: scale(0);/*scaleをはじめは0に*/
	right:-50px;
    top:-50px;
    transition: all .9s;/*0.9秒かけてアニメーション*/
}

.circle-bg.circleactive{
	transform: scale(50);/*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーションの縦スクロール*/
#sp-nav-list{
    display: none;/*はじめは表示なし*/
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
#sp-nav.panelactive #sp-nav-list{
     display: block; /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
#sp-nav .sp-nav-wrap {
	opacity: 0;/*はじめは透過0*/
    /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
    position: absolute;
    z-index: 999;
    top: 0;
    left: 30%;
	width: 40%;
    height: auto;
}

.sp-nav-inner{
    width: 100%;
}

.sp-nav-inner ul li{
    text-align: center;
    font-size: 24px;
    letter-spacing: 0.25em;
    margin-top: 20px;
}

.sp-nav-inner ul li:first-child{
    margin-bottom: 20px;
}

.sp-nav-inner ul li img{
    width: 10%;
    margin: auto;
}

.sp-sns-wrap{
    position: absolute;
    bottom: 50px;
    left: 45%;
    width: auto;
}
.sp-sns-wrap .sns-svg-icon{
    width: 45px;
    height: 45px;
    display: block;
}
a:hover .sns-svg-icon{
    opacity: 0.75;
}

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

#sp-nav .sp-nav-wrap {
    top: 100px;
    left: 15%;
	width: 70%;
}
}

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

#sp-nav .sp-nav-wrap {
    left: 10%;
	width: 80%;
}
}

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

#sp-nav .sp-nav-wrap {
    top: 50px;
}
}

/*背景が出現後にナビゲーションを表示*/
#sp-nav.panelactive {
    opacity:1;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#sp-nav.panelactive .sp-nav-wrap{
animation-name:gnaviAnime;
animation-duration:1s;
animation-delay:.2s;/*0.2秒遅らせて出現*/
animation-fill-mode:forwards;
opacity:0;
}
@keyframes gnaviAnime{
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}


/* ---------------------------------------------------------------------------------------------

   Main-visual-wrap

--------------------------------------------------------------------------------------------- */
.main-visual01{
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.main-visual01 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.scrollbar-text_05 {
  display: inline-block;
  position: absolute;
  bottom: 0;
  padding: 10px 10px 110px;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.2em;
  font-size: clamp(16px, 3vw, 18px);
  /*text-transform: uppercase;*/
  /*writing-mode: vertical-lr;*/
  left: 50%;
  transform: translateX(-50%);
}

.scrollbar-text_05 span{
    color: #fff;
}

.scrollbar_05 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1px;
}

.scrollbar_05::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 100px;
  background: #fff;
  animation: liner 2.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes liner {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  30% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  70% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}


.main-visual02{
    display: none;
    width: 100%;
    height: 47.5vh;
    background-image: url("../images/main-visual02.webp");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

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

.main-visual-wrap{
    margin-top: 75px;
}
    
.main-visual01{
    height: 47.5vh;
}
    
.main-visual02{
    display: block;
    background-image: url("../images/main-visual02-sp.webp");
}
}


/* ---------------------------------------------------------------------------------------------

   Wrap

--------------------------------------------------------------------------------------------- */
.wrap{
    width: 100%;
    overflow: hidden;
}

.whole-wrap{
    width: 100%;
}

/* ---------------------------------------------------------------------------------------------

   Contents-wrap

--------------------------------------------------------------------------------------------- */
.contents-wrap{
    float: right;
    width: 85%;
    background: #fff;
    border-left: 0.5px solid #999;
    padding: 0 2.5%;
}

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

.contents-wrap{
    float: none;
    width: 90%;
    border-left: 0;
    padding: 0;
    margin: auto;
}
}

/* ---------------------------------------------------------------------------------------------

   Corner-wrap

--------------------------------------------------------------------------------------------- */
.corner-wrap{
    width: 95%;
    padding: 96px 0 0 0;/*6.25% 0 0 0*/
}

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

.corner-wrap{
    width: 100%;
}
}


/* ---------------------------------------------------------------------------------------------

   H2

--------------------------------------------------------------------------------------------- */
.icon-text {
    display: flex;
    align-items: center; /* 縦の中央揃え */
    gap: 10px; /* 画像とテキストの間の余白 */
    margin-bottom: 20px;
}

.icon-text img {/*------*/
    width: 30px;/*#c99f63*/
}

h2{
    font-weight: normal;
	font-size: 30px;
    letter-spacing: 0.15em;
    line-height: 1.5;
}

@media screen and (max-width:1200px) {
    
.icon-text img{
    display: none;
}
}


/* ---------------------------------------------------------------------------------------------

   Contents

--------------------------------------------------------------------------------------------- */
.contents{
    width: 100%;
    margin-left: 2.5em;
}

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

.contents{
    margin-left: 0;
}
}


/* ---------------------------------------------------------------------------------------------

   H3 ※各コーナー別指定はstyle.css

--------------------------------------------------------------------------------------------- */
h3{
    text-align: center;
	font-size: 18px;
    letter-spacing: 0.05em;
    border: 1px solid #767676;
    line-height: 1;
    font-weight: normal;
    border-radius: 50px;
    padding: 10px 25px;
    margin-bottom: 15px;
}


/* ---------------------------------------------------------------------------------------------

   文章テキスト

--------------------------------------------------------------------------------------------- */
.corner-wrap .text-18{
    letter-spacing: 0.15em;
    font-size: 18px;
    line-height: 2.25;/*------*/
}


/* ---------------------------------------------------------------------------------------------

   Fadeアニメーション設定

--------------------------------------------------------------------------------------------- */
 .fade{
  opacity: 0;
   transform: translate3d(0, 0, 0);
  transition: opacity 3s ease, transform 3s ease;
  &.full {
   transition: opacity 0.8s ease, transform 0.8s ease;
  }
}

 .top_fade{
  opacity: 0;
   transform: translate3d(0, -70px, 0);
  transition: opacity 2s ease, transform 2s ease;
  &.full {
   transition: opacity 0.8s ease, transform 0.8s ease;
  }
}

 .left_fade{
  opacity: 0;
   transform: translate3d(-75px, 0, 0);
  transition: opacity 2s ease, transform 2s ease;
  &.full {
   transition: opacity 0.8s ease, transform 0.8s ease;
  }
}

 .right_fade{
  opacity: 0;
   transform: translate3d(75px, 0, 0);
  transition: opacity 2s ease, transform 2s ease;
  &.full {
	  
   transition: opacity 0.8s ease, transform 0.8s ease;
  }
}

 .bottom_fade{
  opacity: 0;
   transform: translate3d(0, 75px, 0);
  transition: opacity 2s ease, transform 2s ease;
  &.full {
   transition: opacity 0.8s ease, transform 0.8s ease;
  }
}

.fade-content .anm_mod.active {
 opacity: 1;
 transform: translate3d(0, 0, 0);
}

/* ---------------------------------------------------------------------------------------------

   スキップナビゲーション (WCAG 2.4.1)

--------------------------------------------------------------------------------------------- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: #000;
    color: #fff;
    padding: 8px 16px;
    z-index: 10000;
    text-decoration: none;
    font-size: 14px;
}
.skip-link:focus {
    top: 0;
}

/* ---------------------------------------------------------------------------------------------

   フォーカス可視性 (WCAG 2.4.7)

--------------------------------------------------------------------------------------------- */
:focus-visible {
    outline: 3px solid #005fcc;
    outline-offset: 2px;
    border-radius: 2px;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid #005fcc;
    outline-offset: 3px;
}

/* ---------------------------------------------------------------------------------------------

   フォントサイズ (font.css より統合)

--------------------------------------------------------------------------------------------- */
.text-18-fluctuation {
	font-size: clamp(16px, 3vw, 18px);
}

/* ---------------------------------------------------------------------------------------------

   改行ブレークポイント制御 (font.css より統合)

--------------------------------------------------------------------------------------------- */
.br-1920 { display: block; }
.br-1400 { display: none; }
.br-1200 { display: none; }
.br-1000 { display: none; }
.br-1000cancellation { display: block; }
.br-700  { display: none; }
.br-500  { display: none; }
.br-400  { display: none; }
.br-350  { display: none; }

@media screen and (max-width: 1400px) {
    .br-1400 { display: block; }
}
@media screen and (max-width: 1200px) {
    .br-1200 { display: block; }
}
@media screen and (max-width: 1000px) {
    .br-1000 { display: block; }
    .br-1000cancellation { display: none; }
}
@media screen and (max-width: 700px) {
    .br-700 { display: block; }
}
@media screen and (max-width: 500px) {
    .br-500 { display: block; }
}
@media screen and (max-width: 400px) {
    .br-400 { display: block; }
}
@media screen and (max-width: 350px) {
    .br-350 { display: block; }
}

/* ---------------------------------------------------------------------------------------------

   モーション削減 (WCAG 2.3 内記載, prefers-reduced-motion)

--------------------------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .scrollbar_05::after {
        animation: none !important;
    }
}


/* ---------------------------------------------------------------------------------------------

   Ph-only

--------------------------------------------------------------------------------------------- */
#ph-only{
    display: none;
}

@media screen and (max-width:700px) {
    
#ph-only{
    display: block;
}
    
#ph-only img{
    width: 100%;
    height: auto;
}
}


/* ---------------------------------------------------------------------------------------------

   料金システム

--------------------------------------------------------------------------------------------- */

/*PC-table
-----------------------------------------------------------*/
table.sistem-pc01{
    width: 100%;/*95%*/
}
table.sistem-pc02{
    width: 60%;/*57%*/
    margin-top: 40px;
}

table.sistem-pc caption{
    text-align: center;
	font-size: 18px;
    letter-spacing: 0.05em;
    border: 1px solid #767676;
    line-height: 1;
    border-radius: 50px;
    padding: 10px 25px;
    width: 12em;
}

table.sistem-pc th,table.sistem-pc td{
    letter-spacing: 0.05em;
	font-size: 18px;
    font-weight: normal;
    width: 20%;
    text-align: center;
    vertical-align: middle;
    line-height: 1;
    padding: 20px;
}

tr.line th,tr.line td{
    border-bottom: 1px solid #767676;
}

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

table.sistem-pc{
    display: none;
}    
}

/*SP-table
-----------------------------------------------------------*/
table.sistem-sp{
    display: none;
}

@media screen and (max-width:700px) {
    
table.sistem-sp{
    display: block;
    width: 100%;
}
    
table.sistem-sp02{
    margin-top: 40px;
}

table.sistem-sp caption{
    text-align: center;
	font-size: 18px;
    letter-spacing: 0.05em;
    border: 1px solid #767676;
    line-height: 1;
    border-radius: 50px;
    padding: 10px 25px;
    width: 12em;
}

table.sistem-sp th,table.sistem-sp td{
    letter-spacing: 0.05em;
	font-size: 18px;
    font-weight: normal;
    vertical-align: middle;
    line-height: 1;
    padding: 20px;
    width: 100%;
}
table.sistem-sp th{
    text-align: left;
}
table.sistem-sp td{
    text-align: right;
}
}


/* ---------------------------------------------------------------------------------------------

   ギャラリー

--------------------------------------------------------------------------------------------- */
h3.main-room,h3.vip-room{
    width: 12em;
	font-size: 18px;
}

.gallery-ph{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.gallery-ph li{
    width: 32.6%;
}
.gallery-ph li img{
    width: 100%;
    height: auto;
}

.main-gallery{
    margin: 16px 0 56px 0;
}
.vip-gallery{
    margin: 16px 0 0 0;
}

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

.gallery-ph li{
    width: 100%;
}
}


/* ---------------------------------------------------------------------------------------------

   アクセス

--------------------------------------------------------------------------------------------- */
table.access-table{
    float: left;
    width: 50%;
}

table.access-table th,table.access-table td{
    letter-spacing: 0.05em;
	font-size: 18px;
    font-weight: normal;
    text-align: left;
    line-height: 1.5;
}

table.access-table th{
    padding: 15px 5px;
    width: 25%;
}

table.access-table td{
    padding: 15px 5px;
    width: 75%;
}

table.access-table td.tel-link a{
    color: #c0390b;
    text-decoration: underline;
}
table.access-table td.tel-link a:hover{
    text-decoration: none;
}

table.access-table td.map-link a{
    color: #c0390b;
    text-decoration: underline;
}
table.access-table td.map-link a:hover{
    text-decoration: none;
}

.google-map{
    float: right;
    width: 45%;
    height: 285px;
}

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

table.access-table{
    float: none;
    width: 100%;
}
.google-map{
    float: none;
    width: 100%;
    margin-top: 25px;
}
}


    
/* ---------------------------------------------------------------------------------------------

   求人情報

--------------------------------------------------------------------------------------------- */
.recruitment{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    margin-top: 50px;
}

.recruitment li{
    width: 32%;
}

.recruitment li h3{
    width: 10em;
    
}

@media screen and (max-width:700px) {
    
.recruitment{
    margin-top: 0;
}

.recruitment li{
    width: 100%;
    margin-top: 50px;
}
}


/* ---------------------------------------------------------------------------------------------

   よくある質問

--------------------------------------------------------------------------------------------- */
.slide-box {
    overflow: hidden;
    height: 0;
    transition: height 0.4s ease;
    padding: 0;
}

.btn {
    width: 15em;
    padding: 10px 20px;
    background: #7a6035;
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    letter-spacing: 0.05em;
    font-size: 18px;
    font-family: 'Noto Serif JP', serif;
}

#innerBox h3{
    width: 12em;
}

.qa{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}
.qa li{
    width: 31%;
    margin-bottom: 60px;
}

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

.qa li{
    width: 46%;
}
}

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

.qa li{
    width: 100%;
    margin-bottom: 35px;
}
}


/* ---------------------------------------------------------------------------------------------

   © 会員制絲紋 All Rights Reserved.

--------------------------------------------------------------------------------------------- */
.copy{
    text-align: center;
    margin: 75px auto 25px auto;
}
