@charset "utf-8";


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

ブレイクpoint　640
font-size 320-640

--------------------------------------------------------------------*/	
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 {
   margin: 0;
   padding: 0;
   border: 0;
   outline: 0;
   font-size: 100%;
   vertical-align: baseline;
   background: transparent;
   font-style: normal; list-style: none;}
a{text-decoration: none; color:#b08a2a; transition: 0.3s}
a:hover{ color:#b08a2a; }
img{vertical-align: bottom;}

h1, h2, h3, h4, h5, h6{font-weight: 500; }

body{color: #333a3d; background: #fbf1e6; font-family: "Noto Sans JP", sans-serif; font-weight: 600; 
font-feature-settings: "pwid"; letter-spacing: 1px}
 body * { box-sizing : border-box; }

.goshi{font-family: "Noto Sans JP", sans-serif; font-weight: 500; }
.min{ font-family: "Noto Serif JP", serif; font-weight: 600;}
.en {font-family: "Cormorant Unicase", serif; font-weight: 500; font-optical-sizing: auto;}
.imp{font-weight: bold}
.red{color: #dc0032}
.pink{color:#cc8092 }
.gold{color: #a89469}
.yellow{color: #ffc600}

.tate  { writing-mode: vertical-rl;  text-align: left;}

.line{display: inline ; background: linear-gradient(transparent 50%, #f4dcd5 50%); font-weight: 600}

a.btn-border {
  border: 1px solid #c0aa72; 
  border-radius: 5px; padding: 0 10px;
  background: #fff;
  -webkit-box-shadow: 4px 4px 0 #c0aa72;
  box-shadow: 4px 4px 0 #c0aa72;
}

a.btn-border:hover {
  -webkit-box-shadow: 0px 0px 0 #c0aa72;
  box-shadow: 0px 0px 0 #c0aa72;
}


/* フェードイン　*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/*== 扉開く */

.openl{
animation-name:aopenl;
animation-duration:1.5s;
animation-fill-mode:forwards;
transform-origin: left center; 
}
@keyframes aopenl{
  from {
transform: rotate3d(0, 0, 0, 0deg);
-webkit-transform: rotate3d(0, 0, 0, 0deg);
  }

  to {
transform: rotate3d(0, 1, 0, 180deg);
-webkit-transform: rotate3d(0, 1, 0, 180deg);
  }}

.openr{
animation-name:aopenr;
animation-duration:1.5s;
animation-fill-mode:forwards;
transform-origin: right center; 
}

@keyframes aopenr{
  from {
transform: rotate3d(0, 0, 0, 0deg);
-webkit-transform: rotate3d(0, 0, 0, 0deg);
  }

  to {
transform: rotate3d(0, 1, 0, 180deg);
-webkit-transform: rotate3d(0, -1, 0, 180deg);
  }}





/*== 波紋がふわっと広がる */

.btnripple3{
    /*波紋の基点とするためrelativeを指定*/
  position: relative;
}

/*波形の設定*/
.btnripple3:hover::before {
    content: '';
    /*絶対配置で波形の位置を決める*/
    position: absolute;
    left:30%;
    top:0;
    /*波形の形状*/
    border: 1px solid #b08a2a;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    /*はじめは不透明*/
  opacity:1;
    /*アニメーションの設定*/
    animation:1s circleanime2 forwards;
}



/*波形が広がるアニメーション*/
@keyframes circleanime2{
  0%{
    transform: scale(0);
  }
  100%{
    transform:scale(2);
    opacity: 0;
  }
}

.arrow{
	position: relative;
	display: inline-block;
	padding: 0 0 0 16px;
	color: #b08a2a;
	vertical-align: middle;
	text-decoration: none;
	font-size: 15px;
}
.arrow::before,
.arrow::after{
	position: absolute;
	top: 0;
	bottom: 0;
	right: -15px;
	margin: auto;
	content: "";
	vertical-align: middle;
}
.maruya::before{
	width: 12px;
	height: 12px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background: #b08a2a;
}
.maruya::after{
	right: -10px;
	width: 3px;
	height: 3px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.balloon2 {
  position: relative;
  display: inline-block;
  background: #FFF;
  border: solid 1px #555;
  padding: 5px; 
  box-sizing: border-box;
}
.balloon2:before {
  content: "";
  position: absolute;
  bottom: -27px;
  left: 50%;
  margin-left: -16px;
  border: 14px solid transparent;
  border-top: 14px solid #FFF;
  z-index: 2;
}

.balloon2:after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  margin-left: -17px;
  border: 15px solid transparent;
  border-top: 15px solid #555;
  z-index: 1;
}

/* 下へ */
.fadeinn{
 animation-name:fadeinn;
  animation-duration:1s;
  animation-fill-mode:forwards;
    transform-origin:left;
  opacity:0;
}

@keyframes fadeinn{
  from {
transform:translate3d(0, 20%, 0) skewY(12deg);
  opacity:0;
  }

  to {
  transform:translate3d(0, 0, 0) skewY(0);
  opacity:1;
  }
}

body{ line-height:1.8; font-size:clamp(0.813rem, 0.375rem + 2.19vw, 1.25rem)}/*13-20*/


.hh1{font-size:clamp(1rem, 0.821rem + 0.89vw, 1.25rem); border-left: solid 5px #dc0032; padding:0 0 10px 10px; border-bottom: solid 1px #dc0032; font-weight: 700 }
.hh2{font-size:clamp(1rem, 0.821rem + 0.89vw, 1.25rem); padding:10px 15px;/*内側余白*/
	background-image: linear-gradient(0deg, transparent 19px, #ccc 20px),linear-gradient(90deg,  transparent 19px, #ccc 20px);
	background-size: 20px 20px; font-weight: 700}
.hh2:before{ content:none}

.style3b { padding:1.1em .9em 1em; font-size:clamp(1rem, 0.821rem + 0.89vw, 1.25rem); border-top:2px solid #dc0032; border-bottom:1px solid #ddd; background:#fafafa; box-shadow:0px 1px 2px #f7f7f7; font-weight: 600}

.style4a { padding:.3em 0 .3em .8em; font-size:clamp(1rem, 0.821rem + 0.89vw, 1.25rem); border-bottom:none; border-left:2px solid #dc0032; font-weight: 700}

.balloon { position:relative; display:block; padding:.5em 18px .5em; width:auto; min-width:115px; color:#fff; text-align:left; font-size:16px !important;font-weight: 700; background:#dc0032; z-index:0; border-bottom:0; }
.balloon:after { content:""; position:absolute; bottom:-10px; left:30px; margin-left:-10px; display:block; width:0px; height:0px; border-style:solid; border-width:10px 10px 0 10px; border-color:#dc0032 transparent transparent transparent; }

.style5a { padding:.5em .8em .3em 1em; font-size:16px !important; background:#fbf1e6; box-shadow:0px 2px 0px 0px #f2f2f2; }
.style5b { padding:.5em .8em .4em 1em; font-weight:400; font-size:16px !important; color:#fff; background:#dc0032; border-radius:4px; box-shadow:0px 2px 0px 0px #f2f2f2; }

.well { min-height:20px; padding:19px; background-color:#fbf1e6; border-radius:4px; }
.well2 { padding:1em 1.5em; line-height:2; border:1px solid #cdcdcd;}
.wel3{
	padding:1em 1.5em;
	background-color:#fbf1e6;/*背景色*/
	position:relative;
}

.wel3:after{
	position: absolute;
	content: '';
	right: 0px;
	top: 0px;
	border-width: 0 15px 15px 0;
	border-style: solid;
	border-color: #e2d6ca #fff  #e2d6ca;
	box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15);
}

a.q_button{padding:15px 40px; border-radius:30px; background:#b08a2a;  font-size:16px; color:#fff !important} 
a.q_button:hover{background: #bfa666 } 

.youtube{position: relative;
height: 0;
margin: 40px 0 10px;
padding: 30px 0 56.25%;
overflow: hidden;
}

.youtube iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}




.head{position: relative}

    .fukidashi-01-04 {line-height: 1.5;
      position: relative;
      width: fit-content;
      padding: 0 0 10px;
      border-bottom: 1px solid #b7b2a6;
    }
    .fukidashi-01-04::before {
      content: "";
      position: absolute;
      bottom: -5px;
      left: 50%;
      width: 15px;
      height: 15px;
      box-sizing: border-box;
      background-color: #fbf1e6; /* 背景色と同じ色を指定 */
      rotate: 135deg;
      translate: -50%;
    }
    .fukidashi-01-04::after {
      content: "";
      position: absolute;
      top: calc(100% + 5px);
      left: calc(50% - 4px);
      z-index: -1;
      width: 30px;
      height: 1px;
      transform: rotate(50deg);
      box-sizing: border-box;
      background-color: #b7b2a6;
      box-shadow: 0 1px 0 #fbf1e6, 0 -1px 0 #fbf1e6; /* 背景色と同じ色を指定 */
    }


.headslid{padding-top: 30px; position: relative}
.headslid a .titpic {display: block; position: relative; z-index: 5}
.headslid .titpic{margin: 0px 8% ; width: 70%; padding-bottom: 30px }


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

.sumcont

--------------------------------------------------------------------*/
.sumcont{text-align: center; position: relative}
.sumcontin{ position: relative; z-index: 1; padding: 60px 8%}
.sumcont a.btn-border{display: block; padding: 20px 0}

/*波形の設定*/
.sumcont .btnripple3:hover::before {
    content: '';
    /*絶対配置で波形の位置を決める*/
    position: absolute;
    left:45%;
    top:30%;
    /*波形の形状*/
    border: 1px solid #b08a2a;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    /*はじめは不透明*/
  opacity:1;
    /*アニメーションの設定*/
    animation:1s circleanime2 forwards;
}

.sumcont .matome .text02{margin-bottom: 30px; }

.sumcont .text01{letter-spacing: normal;font-weight:500; line-height: 1.4 }
.sumcont .text01{font-size:clamp(0.688rem, 0.25rem + 2.19vw, 1.125rem) }/*11-18*/

.sumcont .text011{margin-bottom: 10px ; font-size:clamp(0.688rem, 0.25rem + 2.19vw, 1.125rem) }/*11-18*/
.sumcont .text011 img{width: 15px; vertical-align: middle}
.sumcont .text02{ font-size:clamp(1.25rem, 0.5rem + 3.75vw, 2rem)}/*20-32*/
.sumcont .text02 span{ font-size:clamp(0.688rem, 0.5rem + 0.94vw, 0.875rem) }/*11-14*/
.sumcont .text02 img {
    width: 68px;
    margin-left: -68px;
    margin-top: -15px;
    position: relative;
    top: 9px;
}


.sumcont .text03{font-size:clamp(0.688rem, 0.5rem + 0.94vw, 0.875rem) }/*11-14*/




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

footer

--------------------------------------------------------------------*/
footer{text-align: center}

/* メニュー背景　*/
footer .globalMenuall{
  color: #fff;
  background: rgba( 220,0,50,1 );
  text-align: left;
  padding: 40px 0 60px;
  width: 100%;
  position: relative;
}

footer .globalMenuall .pctbox{position: absolute; top: -60px; right: 12%; z-index: 1}
footer .globalMenuall .pctit{position: relative; width: 96px}
footer .globalMenuall .door{position: absolute; left: 0; width: 96px;  z-index: -1;  }
footer .globalMenuall .openll{position: absolute; left: 0px; width: 40px; z-index: -1;  }
footer .globalMenuall .openrr{position: absolute; left: 55px; width: 40px; z-index: -1;  }

footer .globalMenuall h1 a{color: #fff; display: block ; border-bottom: 1px solid #fff; padding-bottom: 20px; text-align: center}
footer .globalMenuall h1 a:hover{background :#c0aa72;}

footer .globalMenuall ul {
  margin: 0 auto;
  width: 100%;
}

footer .globalMenuall ul li {
  padding: 0 0 0 8%;
  width: 100%;
  transition: .4s all;
  border-bottom: 1px solid #fff
}
footer .globalMenuall .min{font-size:20px }
footer .globalMenuall .minif{font-size: 17px; letter-spacing: normal;}

footer .globalMenuall ul li.mb10{margin-bottom:20px}
footer .globalMenuall ul li.btdash{border-bottom: 1px solid #fff}
footer .globalMenuall ul li.bono{border: none; line-height: 1.4; }


footer .globalMenuall ul li ul li{ list-style: none; background: url( "../img/bgsen.png") no-repeat left 13px; background-size: 12px ; padding-left: 20px; border: none }
footer .globalMenuall ul li ul li:last-child{padding-bottom: 5px}
footer .globalMenuall ul li ul{padding: 0}
footer .globalMenuall ul li ul li span{font-size: 11px}

footer .globalMenuall ul li:last-child {
  padding-bottom: 0;
}
footer .globalMenuall ul li:hover{
  background :#c0aa72;
}

footer .globalMenuall ul li a {
  display: block;
  color: #fff;
  padding: 12px 0;
  text-decoration :none;
}

footer .globalMenuall ul li .mini{font-size: 13px}

footer .globalMenuall ul li img{width: 40%; max-width:338px }

footer .copy{font-size: 11px; background:#dc0032; color: #fff; padding-top: 0 }
footer .fh1{text-align: center;}
footer .fh1 a{ color: #fff}

footer .address{background:#dc0032 ; color: #fff ; text-align: left; padding: 0 8%}
footer .text01{margin-bottom: 10px; font-size: clamp(1.25rem, 0.625rem + 3.13vw, 1.875rem)}/*20-30*/
footer .text01 span{font-size: 15px}
footer .ad span{font-size: 12px; display: block}
footer .ad {font-size:clamp(0.875rem, 0.625rem + 1.25vw, 1.125rem) }/*14-18*/
footer .ad a{display: block; margin-top: 10px }
footer .ad a.btn-border{display: inline-block; padding: 10px 50px; margin-bottom: 60px}

.copy{font-size: 14px; padding: 40px 0 150px;}


@media screen and (max-width: 639px) {
.smtno{display: none !important}
img{width: 100%; height: auto ; }

/*　ハンバーガーメニューボタン　*/
.hamburger {
  display : block;
  position: fixed;
  z-index : 100;
  right : 20px;
  top   : 20px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
  background: #c0aa72;
   border-radius: 5px
}
.hamburger .menutext{position: absolute; font-size: 12px; bottom: -20px; left: 0 ; font-weight: 600 ;letter-spacing: 2px ; color: #c0aa72}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 2px ;
  left    : 6px;
  background : #fff;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 12px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 28px;
}

/* スマホメニューを開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 20px;
  left: 6px;
  background :#fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  background :#fff;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg); top: 20px;
}

/* メニュー背景　*/
nav.globalMenuSp  {
  position: fixed;
  z-index : 99;
  top  : 0;
  left : 0;
  color: #fff;
  background: rgba( 220,0,50,1 );
  text-align: left;
  padding: 40px 0;
  width: 100%;
  transform: translateY(-100%);
  transition: all 0.6s;
}

nav.globalMenuSp h1 a{color: #fff; display: block ; padding-left: 8% }
nav.globalMenuSp h1 a:hover{background :#c0aa72;}
nav.globalMenuSp .ink{ border-bottom: 1px solid #fff; padding-bottom: 20px; padding-left: 8%; font-size: 13px }

nav.globalMenuSp ul {
  margin: 0 auto;
  width: 100%;
}

nav.globalMenuSp ul li {
  list-style-type: disc;
  padding: 0 0 0 8%;
  width: 100%;
  transition: .4s all;
  border-bottom: 1px solid #fff
}
nav.globalMenuSp .min{font-size:20px }
nav.globalMenuSp .minif{font-size:17px ; letter-spacing: normal}

nav.globalMenuSp ul li.mb10{margin-bottom:20px}
nav.globalMenuSp ul li.btdash{border-bottom: 1px dashed #fff}
nav.globalMenuSp ul li.bono{border: none; line-height: 1.4}

nav.globalMenuSp ul li ul li{ list-style: none; background: url( "../img/bgsen.png") no-repeat left 13px; background-size: 12px ; padding-left: 20px; border: none }
nav.globalMenuSp ul li ul{padding: 0}
nav.globalMenuSp ul li ul li span{font-size: 11px}

nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}
nav.globalMenuSp ul li:hover{
  background :#c0aa72;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #fff;
  padding: 12px 0;
  text-decoration :none;
}

nav.globalMenuSp ul li .mini{font-size: 13px}

nav.globalMenuSp ul li img{width: 40%; max-width:338px }

/* クリックでjQueryで追加・削除 */
nav.globalMenuSp.active {
  opacity: 100;
  display: block;
   transform: translateY(0%);
}

}

.sumcont a{margin-bottom: 30px}
.sumcont a img{width: 70% ; max-width:338px; margin-top: 5px }
.sumcont a:nth-child(3){padding-bottom: 20px !important}

@media screen and (min-width: 640px) {

html{font-size: 14px ; }
img{height: auto ; max-width: 100%}
.pcno{display: none !important}
.bg01{position: absolute; bottom:10%; left: 50%; margin-left: 330px; width: 20%; }

.pcbox{position: relativel; height: 100vh ;}
.pcboxin{position:fixed; bottom: 0; left: 0; width: 100%;  }


#main{position: relative; }
.slinecontbg{width: 580px; box-sizing: content-box; position: absolute; top: 0; border-right: 6px #fff solid; border-left: 6px solid #fff ; z-index: 100  ;  background:#fbf1e6;  right: calc(100% * 80 / 1200);}}

.smcont .smile{position: absolute; top: -30px; width:182px }


/*このクラスが付与されると表示する*/
.active{
  opacity: 1;
  visibility: visible;
}



address{text-align: left}




.area{
    background: #fbf1e6;  
    background: -webkit-linear-gradient(to left, #fbf1e6, #fbf1e6);  
    width: 100%;
    height:100vh;   
}

.circles{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circles li{
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(233, 219, 204, 0.4);
    animation: animate 25s linear infinite;
    bottom: -150px;
    
}

.circles li:nth-child(1){
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}


.circles li:nth-child(2){
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3){
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4){
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5){
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6){
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7){
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8){
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9){
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10){
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}



@keyframes animate {

    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 100%;
    }

 }



@media screen and (max-width: 969px) {
.headpc{display: none}

.kotei{
  position: fixed;
  bottom: 0;
  color: #fff;
  cursor: pointer;
  transition: .3s;
  /*デフォルトで非表示にする*/
  opacity: 0;
  visibility: hidden;
  z-index: 88; text-align: center; width: 100%; max-width: 580px
}

/*このクラスが付与されると表示する*/
.active{
  opacity: 1;
  visibility: visible;
}

.kotei ul{display: flex; padding: 0 4% 10px ; align-items: stretch; justify-content: space-between}
.kotei li{width: 70% ;
}

.kotei li:nth-child(2){width:25%}


.kotei li:nth-child(2) p{font-size: 12px; padding-top: 5px}

.kotei a{padding: 10px 0; line-height: 1.6; display: block; height: 100%; position: relative; background: #fff; color: #c0aa72; font-size:clamp(1rem, 0.909rem + 0.45vw, 1.25rem)}/*16-20*/
.kotei a span{display: block}
.kotei img{width: 29px}


}

@media screen and (min-width: 970px) {
.headslid .titpic{display: none !important}

.headslid{padding-top: 0 !important}
.headslid .slick-track{line-height: 1}



/*pc menu*/
.pcmenu{position: absolute; bottom: 150px ; width: 340px}
.headpc{position: absolute; top: 10%; width: 20%; height: 100vh;
  right: calc(100% * 700 / 970); z-index: 100
}
.headpc .pctit{position: relative}
.headpc .pctit .door{position: absolute; top: 0; left: 0; width: 96px;  z-index: -1;  }
.headpc .pctit .openll{position: absolute; top: 0; left: 0px; width: 40px; z-index: -1;  }
.headpc .pctit .openrr{position: absolute; top: 0; left: 55px; width: 40px; z-index: -1;  }



.headpc .menu01 a{color:#dc0032 }
.headpc .menu01 .me012 a{color:#2cb8ac }

.headpc .menu01 dl{display: flex; justify-content: space-between}
.headpc .menu01 dt{width: 10%; background:#dc0032; color: #fff ; line-height: 1.6;
        font-size: 10px;
        letter-spacing: 1px;
        padding: 10px 1%; border-radius: 0 0 5px 5px}
.headpc .menu01 .me012{margin: 20px 0}
.headpc .menu01 .me012 a dt{background:#2cb8ac; }
.headpc .menu01 dd{width: 86%; font-size: 14px; margin-top: -5px}
.headpc .menu01 dd span{ font-size: 10px; display: block}
.headpc .menu01 dd .min{font-size:20px}
.headpc .menu01 dd li{position: relative; padding-left: 15px ; font-weight: 600;}
.headpc .menu01 dd li::before {
	content: "+";
	color: #dc0032;
	font-size: 10px; position: absolute;
        left: 1px;
        top: 4px;
}
.headpc .menu01 .me012 a dd li::before{ color: #2cb8ac}

.headpc .menu02{font-size: 16px}
.headpc .menu02 span.mini{font-size: 12px; display:block; margin-top: -5px; margin-bottom:10px }
.headpc .menu02 img{margin-top: -5px; max-width: 220px}
.headpc .bono{line-height: 1.4}

.headpc .menu01 .btnripple3:hover::before{top: 35%}
.headpc .bono .btnripple3:hover::before{top: 35%}

.kotei{font-size: 4vw; font-weight: bold;
  position: fixed;
  top: 5%;
  bottom: auto;
  right: 10px;
  color: #fff;
  transition: .3s; 
  z-index: 88; text-align: center;
}

.kotei a{min-width: 58px;  padding: 10px 0; line-height: 1.6; display: block; height: 100%; position: relative; background: #fff; color: #c0aa72; font-size:clamp(1rem, 0.909rem + 0.45vw, 1.25rem)}/*16-20*/
.kotei a span{display: block}
.kotei img{width: 29px}

.kotei li:first-child{writing-mode: vertical-rl;  text-align: left; margin-bottom: 20px}
.kotei p{font-size: 10px; letter-spacing: normal}


.copy{padding-bottom: 20px}



}
@media screen and (max-width: 1100px) {
.headpc .menu02 li.minif{letter-spacing: normal;font-size: 11px;}
}

@media screen and (min-width: 1200px) {
.headpc{position: absolute; top: 10%; width: 440px;
  right: calc(100% * 710 / 1200);}

.headpc .menu01 dd span{display: inline}
.headpc .menu01 dt{width: 25px}
.headpc .menu01 dd{width: 90%}

.headpc .menu02 li{margin-bottom: 5px}
.headpc .menu02 li:last-child{margin-top: 10px}
.headpc .menu02 img{margin-top: 3px}
.headpc .menu02 span.mini{display: inline; padding-left: 5px}
}

@media screen and (min-width: 1350px) {

.slinecontbg{right:auto; left: 50%; margin-left: -50px}
}
