@charset "utf-8";

*{
  box-sizing:border-box;
	max-width:100%;
}

body{
  margin:0;
}

html { scroll-behavior: smooth;}

/*
@media(min-width:901px){
	.sponly{
	  display:none !important;
	}
  }
@media(max-width:900px){
  .pconly{
    display:none !important;
  }
}
*/
@media(min-width:1101px){
	.tbonly{
		display:none !important;
	}
}
@media(max-width:1100px){
	.tb_2only{
	  display:none !important;
	}
}
/*変数*/
:root{
	--basecolor: #edffe9 ; /*基本色*/
	--sabcolor: #f2ffec; /*サブカラー*/
}

img{
  max-width:100%;
  vertical-align:bottom;
}


p{
	margin:0
}

h3{
	margin:0;
}

a{
  text-decoration: none;

}

a:visited{
    /* color: #000; */
}

a:hover{
  /*filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;*/
}

.center{
	margin-left:auto;
	margin-right:auto;
}

.w1000{width:1000px}
.w900{width:900px}
.w800{width:800px}
.w700{width:700px}
.w600{width:600px}
.mw1000{max-width:1000px}
.mw900{max-width:900px}
.mw800{max-width:800px}
.mw700{max-width:700px}
.mw600{max-width:600px}
.wfit{width:fit-content;}
.tac{text-align: center;}
.tal{text-align: left;}
.tar{text-align: right;}
.mg0{margin: 0 auto;}
.margin1{margin:10px}
.margin2{margin:20px}
.margin3{margin:30px}
.margin4{margin:40px}
.margin5{margin:50px}
.mgb1{margin-bottom:10px}
.mgb2{margin-bottom:20px}
.mgb3{margin-bottom:30px}
.mgb4{margin-bottom:40px}
.mgb5{margin-bottom:50px}
.mgt1{margin-top:10px}
.mgt2{margin-top:20px;}
.mgt3{margin-top:30px}
.mgt4{margin-top:40px}
.mgt5{margin-top:50px}
.mgl1{margin-left:10px}
.mgl2{margin-left:20px}
.mgl3{margin-left:30px}
.mgl4{margin-left:40px}
.mgl5{margin-left:50px}
.mgr1{margin-right:10px}
.mgr2{margin-right:20px}
.mgr3{margin-right:30px}
.mgr4{margin-right:40px}
.mgr5{margin-right:50px}
.n_mgt5{margin-top:5%}
.pd1{padding:10px}
.pd2{padding:20px}
.pd3{padding:30px}
.pd4{padding:40px}
.pd5{padding:50px}
.pdt1{padding-top:10px}
.pdt2{padding-top:20px}
.pdt3{padding-top:30px}
.pdt4{padding-top:40px}
.pdt5{padding-top:50px}
.pdt6{padding-top:60px}
.pdt7{padding-top:70px}
.pdt8{padding-top:80px}
.pdt9{padding-top:90px}
.pdt10{padding-top:100px}
.pdb1{padding-bottom:10px}
.pdb2{padding-bottom:20px}
.pdb3{padding-bottom:30px}
.pdb4{padding-bottom:40px}
.pdb5{padding-bottom:50px}
.pdb6{padding-bottom:60px}
.pdb7{padding-bottom:70px}
.pdb8{padding-bottom:80px}
.pdb9{padding-bottom:90px}
.pdb10{padding-bottom:100px}
.pdr5{padding-right:30%}
.fs1{font-size:80%}
.fs2{font-size:90%}
.fs3{font-size:100%}
.fs4{font-size:110%}
.fs5{font-size:123%}
.fs6{font-size:140%}
.fs7{font-size:160%}
.fs8{font-size:185%}
.fs9{font-size:215%}

.pokipoki span{
	display:inline-block;
}


/*----------
特殊例
-----------*/
/*----------
マーカー下線
----------*/
.marker_line {
    background: linear-gradient(transparent 60%, var(--basecolor) 0%);
}
.marker_line_oreng{
	background: linear-gradient(transparent 50%, #ffd95d9f 50%);
}
/*---------
 題字下下線
 ----------*/
.hr-green {
    border-top: 2px solid #3ca27e;
    width: 80px;
}
/*--------------
矢印が右に移動する
----------------*/
.btnarrow4{
    /*矢印と下線の基点とするためrelativeを指定*/
	position: relative;
    /*形状*/
    display:block;
    color: #333;
    text-decoration: none;
    outline: none;
}
/*矢印と下線の形状*/
.btnarrow4::before{
    content: '';
    /*絶対配置で下線の位置を決める*/
	position: absolute;
    bottom:-8px;
    left:0;
    /*下線の形状*/    
    width: 60%;
    height: 1px;
	background:#333;
    /*アニメーションの指定*/
    transition: all .3s;
}
.btnarrow4::after{
    content: '';
    /*絶対配置で矢印の位置を決める*/
	position: absolute;
    bottom:-3px;
    right:40%;
    /*矢印の形状*/    
    width: 15px;
    height:1px;
	background:#333;
    transform: rotate(35deg);
    /*アニメーションの指定*/
    transition: all .3s;
}
/*hoverした際の移動*/
.btnarrow4:hover::before{
    left:10%;
}
.btnarrow4:hover::after{
    right:30%;
}

/*-------------
ボタン共通設定
--------------*/
.btn06{
    /*矢印の基点とするためrelativeを指定*/
	position: relative;
    /*ボタンの形状*/
	text-decoration: none;
	display: inline-block;
	color:#000000;
    padding: 10px 40px 10px 30px;
    text-align: right;
    outline: none;
	border: 1px solid #83e66d ;
	background-color: #83e66d;
    /*アニメーションの指定*/
    transition: ease .2s;
}

.btn06:hover{
	background-color: #cbfcdb ;
	border: 1px solid #cbfcdb;
}
/*--------------
矢印が右に移動
--------------*/
.btnarrow1::after{
    content: '';
    /*絶対配置で矢印の位置を決める*/
	position: absolute;
    top:42%;
    right: 20px;
    /*矢印の形状*/
    width: 5px;
    height: 5px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transform: rotate(45deg);
    /*アニメーションの指定*/
    transition: all .3s;
}

/*hoverした際の移動*/
.btnarrow1:hover::after{
    right: 11px;
}

/*------------
きらっと光る
------------*/
.btnshine{
    /*キラッと光る基点とするためrelativeを指定*/
	position: relative;
    /*ボタンの形状*/	
	display:inline-block;

    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    outline: none;
    overflow: hidden;
}

/*キラッと光る*/
.btnshine::before {
	content: '';
    /*絶対配置でキラッと光るの位置を決める*/
	position: absolute;
	top: 0;
	left: -75%;
    /*キラッと光る形状*/
    width: 50%;
	height: 100%;
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	transform: skewX(-25deg);
}

/*hoverした際の移動のアニメーション*/
.btnshine:hover::before {
	animation: shine 0.7s;
}

@keyframes shine {
	100% {
		left: 125%;
	}
}

/*-------------
 文字animation
-------------*/
@-webkit-keyframes passing-bar{
	0% {
		left: 0;
		right: auto;
		width: 0;
	}
	50% {
		left: 0;
		right: auto;
		width: 100%;
	}
	51% {
		left: auto;
		right: 0;
		width: 100%;
	}
	100% {
		left: auto;
		right: 0;
		width: 0;
	}
}
@keyframes passing-bar{
	0% {
		left: 0;
		width: 0;
	}
	50% {
		left: 0;
		width: 100%;
	}
	51% {
		left: 0;
		width: 100%;
	}
	100% {
		left: 100%;
		width: 0;
	}
}
@-webkit-keyframes passing-txt{
	0% { opacity: 0; }
	50% { opacity: 0; }
	100% { opacity: 1; }
}
@keyframes passing-txt{
	0% { opacity:0; }
	50% { opacity:0; }
	100% { opacity:1; }
}
/* css */
.passing .passing-box {
	display: block;
	text-align: center;
}
.passing .passing-bar {
	position: relative;
	display: inline-block;
	/*　後ほど解説　*/
	-webkit-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.passing .passing-bar:before {
	content: '';
	display: inline-block;
	width: 0;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	/* 任意の値 */
	background: #11b319;
}
.passing .passing-txt {
	opacity: 0;
	/* 後ほど解説 */
	-webkit-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	/* 任意の値 */
	font-size: 3vw;
	font-weight: bold;
	line-height: 1.5;
}
.passing.move .passing-bar:before {
	-webkit-animation: passing-bar 1s ease 0s 1 normal forwards;
	animation: passing-bar 1s ease 0s 1 normal forwards;
}
.passing.move .passing-txt {
	-webkit-animation: passing-txt 0s ease .5s 1 normal forwards;
	animation:passing-txt 0s ease .5s 1 normal forwards;
}



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

.flex_wrap_reverse{
	display: flex;
}

/*--------------------------------
       ここまでtemplate
---------------------------------*/
/*--------- top 幅規定とか--------*/

.top_menu_bar{
    top: 0px;
    right: 0px;
	z-index: 100;
	margin-bottom: 10px;
	position: fixed;
	width: 100%;
	background-color: #fffFFF50;
	padding: 10px 25px;
	/*background-repeat:no-repeat ;
	background-position:right 60% top -15%;*/
}
.contents_box{
	width: 100%;

}
.contents_box_2{
	width: 100%;
	padding-right: 100px;

}
.contents_box_3{
	width: 100%;


}

/*--------- menu bar css --------*/

.menu_back{
	position: relative;
	display: flex;
}
.logo_design{
	width: 20%;
	padding: 0 20px 0 0px;
	text-align: right;
}
.logo_design span{
	font-size: 0.8vw;
	display: inline-block;
	letter-spacing: 3px;
	border-bottom: 1px solid;

}
.logo_design p{
	font-size: ;
	font-weight: bold;
	letter-spacing: 5;
	/*writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
	-webkit-writing-mode:vertical-rl;*/ 
}
.logo_design h2{
	margin: 0;
	font-size: 3vw;
	letter-spacing: 5px;

}

.menu_box{
	width: 80%;
	font-size: 1.4vw;
	font-weight: bold;

}
.menu_box a{
	margin: 15px 10px;
	letter-spacing: 2px;
	position: relative;
	display: inline-block;
	transition: .3s;
}
.menu_box a::after{
	position: absolute;
	bottom: 0;
	left: 50%;
	content: '';
	width: 0;
	height: 2px;
	background-color: #033d0f;
	transition: .3s;
	transform: translateX(-50%);
}
.menu_box a:hover::after{
	width: 100%;
}
.baner{
	margin-top:40px ;
}
.baner img{
	margin: 10px 0;
}
.sen_1{
	border-left:1px solid;
	height: 200px;
	position: absolute;
	bottom: -300;
	right: 50%;
}


/*--ハンバーガーメニュー--*/

nav {
	display: block;
	position: fixed;
	top: 0;
	left: -300px;/*左からmenuを出したければleftに変更*/
	bottom: 0;
	width: 300px;/*menuの幅はここで規定*/
	background: #ffffff;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	transition: all .5s;
	z-index: 3;
	opacity: 0;
  }
  .open nav {
	left: 0;/*左からmenuを出したければleftに変更*/
	opacity: 1;
  }
  nav .inner {
	padding: 25px;
  }
  nav .inner ul {
	list-style: none;
	margin: 0;
	padding: 0;
  }
  nav .inner ul li {
	position: relative;
	margin: 0;
	border-bottom: 1px solid #333;/*menuに線で区切り*/

  }
  nav .inner ul li a {
	display: block;
	color: #333;
	font-size: 14px;
	padding: 1em;
	text-decoration: none;
	transition-duration: 0.2s;
  }
  nav .inner ul li a:hover {
	background: #e4e4e4;
  }
  /*============
  .toggle_btn
  =============*/
  /*押すところのspanのcss*/
  .btn_back{
	  background-color: #55321f;
	  padding: 3px;
	  position: fixed;
	  top: 12px;
	  left: 12px;
	  z-index: 3;
	  border-radius: 5px;
  }
  .toggle_btn {
	display: block;
	position: relative;
	width: 28px;
	height: 28px;
	transition: all .5s;
	cursor: pointer;
	}
  .toggle_btn span {
	display: block;
	position: absolute;
	left: 0;
	width: 27px;
	height: 2px;
	background-color:#ffffff;
	border-radius: 4px;
	transition: all .5s;
	}
  .toggle_btn span:nth-child(1) {
	top: 5px;
	}
  .toggle_btn span:nth-child(2) {
	top: 13px;
	}
  .toggle_btn span:nth-child(3) {
	bottom: 5px;
	}
  .open .toggle_btn span {
	background-color: #fff;
  }
  .open .toggle_btn span:nth-child(1) {
	-webkit-transform: translateY(8px) rotate(-315deg);
	transform: translateY(8px) rotate(-315deg);
  }
  .open .toggle_btn span:nth-child(2) {
	opacity: 0;
  }
  .open .toggle_btn span:nth-child(3) {
	-webkit-transform: translateY(-8px) rotate(315deg);
	transform: translateY(-8px) rotate(315deg);
  }

  @media screen and (max-width: 767px) {
	nav {
	  left: -220px;/*出したときの挙動に影響*/
	  width: 220px;/*menuの幅はここで規定*/
	}
  }
  
  /*============
  #mask
  =============*/
  #mask {
	display: none;
	transition: all .5s;
  }
  .open #mask {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: .8;
	z-index: 2;
	cursor: pointer;
  }




/*----------- 横からでてくるやつ -------------*/
/*#sslink{
	cursor: pointer;
    position: fixed;
    z-index: 9999;

}
#sslink a:first-child{
	display: block;
	width: 150px;
	border-left:6px solid #ffc65d;
	background-color: #fffde6;
	padding: 20px ;
	margin-bottom: 50px;
}
#sslink a:nth-child(2){
	display: block;
	width: 150px;
	border-left:6px solid #ff5555;
	background-color: #ffeee7;
	padding: 20px ;
}
#sslink a{
	transition: all 0.2s;
}
#sslink a:hover{
	transform: translate(-50px, 0);
}*/
.vegas_center{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align:center;
    color:#fff;
}
.vegas_center h1{
	font-size: calc( 3vw + 10px );
}
#Vegas_slider {
    width: 100%;
    height: 80vh;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}
@media(max-width: 1065px){
	#Vegas_slider{
		margin-top: 0px;
	}	
}
/*== 無限に波紋が広がる */

/*波形のアニメーション*/
@keyframes pulseMotion {
  0% {
    transform: translate(-50%, -50%) scale(1, 1);
    background-color: rgb(255 255 255 / 30%)
  }
  50% {
    transform: translate(-50%, -50%) scale(4, 4);
    background-color: rgb(255 255 255 / 0%)
  }

  100% {
    transform: translate(-50%, -50%) scale(4, 4);
    background-color: rgb(255 255 255 / 0%)
  }
}

.btnripple2{
    /*波紋の基点とするためrelativeを指定*/
	position: relative;
    /*波紋の形状*/
	display:inline-block;
	margin:30px 0 0;
	width:50px;
	height:50px;
	transition: background-color cubic-bezier(0.215, 0.61, 0.355, 1) .4s;
}

.btnripple2::after{
  display: block;
  position: absolute;
  top: 92%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transition: opacity linear 1s;
  content: '';
}
.btnripple2::after{
  animation: pulseMotion 3s linear infinite ;
}





/*中央矢印*/
.btnripple2 span::after {
    content: '';
    /*絶対配置で矢印の位置を決める*/
    position: absolute;
    top: 38%;
    left: 45%;
    /*矢印の形状*/
    border: 14px solid transparent;
    border-top-width: 10px;
    border-bottom-width: 10px;
    border-left-color: #fff;
}

.contents_wrap{
	max-width: 1200px;
	margin: 0px auto;
	width: 100%;
	position: relative;
}
.top_under{
	display: flex;
	width: 500px;
	margin: 0 0 0 300px;
	list-style-type: none;
	padding: 0;
	position: absolute;
	top: -80px;
	right: -0px;
	align-items: center;
	justify-content: center;
}
.top_under li{
	/* margin: 0px 7% 0 0; */
}
/*section2*/
.taka_hin_2_back{
	position: relative;
	margin-top: 150px;
}
/*.taka_hin_2_back::after{
	content: "";
	position: absolute;
	width: 60%;
	height: 86%;
	bottom: 0;
	left: 0;
	background: #FFf0f4;
	z-index: -1;
}*/
.taka_hin_2_back .contents_wrap div{
	width: fit-content;
	padding: 8% 0 12%;
	margin: 0px auto 0;
}
.taka_hin_2_back .contents_wrap div h2{
	margin: 0px 0 37px;
	font-size: calc( 1vw + 15px );
}
@media(min-width:1100px){
	.taka_hin_2_back .contents_wrap div h2{
		margin: -60px 0 37px;
	}	
}
.taka_hin_2_back .contents_wrap div h2 span{
	border-bottom:1px solid
}
.taka_hin_2_back .contents_wrap div p{
	margin: 20px 0;
	font-size: 17px;
}
#takashin_hinsitsu_2{
	display:block;
	margin-top:-100px;
	padding-bottom:100px;
}

/*section3*/
.taka_hin_3_back{
	background: url(/images/quality/1_back.jpg)  ;
	padding: 7%;
}
.taka_hin_3_back h2{
	margin: 0 0 30px;
	text-align: center;
	font-size: calc( 1.5vw + 15px );
}
.taka_hin_3_back .contents_wrap .flex{
	align-items: center;
}
.taka_hin_3_txt .flex div{
	margin: 0 1%;
}
.taka_hin_3_img{
	width: 45%;
	padding: 0 3% 0 0%;
}
.taka_hin_3_txt{
	width: 55%;
}
.taka_hin_3_txt h4 {
    font-size: 150%;
    color: #000;
    margin: 30px 0 12px;
    border-bottom: 1px solid #000;
    line-height: 1.3;
    padding: 20px 15px 5px;
}
.taka_hin_3_txt p{
	margin: 20px;
	font-size: 17px;
}
/*section4*/
.taka_hin_4_back{
	padding: 7%;
	background: #FFf;
}
.taka_a{
	display: inline-block;
    background: #ed7895;
    border-radius: 4px;
    padding: 4px 10px 4px 10px;
    margin-bottom: 6px;
    margin-left: 5px;
    color: #fff;
    font-size: 95%;
}
.taka_hin_4_back h2{
	margin: 0 auto 30px;
	width: fit-content;
	position: relative;
	font-size: calc( 1.5vw + 15px );
}

.taka_hin_4_back h2::after{
	content: "";
	position: absolute;
	top: -20px;
	left: -55px;
	width: 300px;
	height: 100px;
	background: url(/images/quality/jyusyo_midashi.png) no-repeat;
	background-size:50% ;
}
.history_txt{
	width: 50%;
	padding-right:2%;
}
.history_txt dl{
  margin: 0px 0px 12px 0px;
  padding: 0px 0px 12px 0px;
  border-bottom: #CCC dotted 1px;
}
.history_txt dt{
	/* width:100px; */
	float:left;
}
.history_txt dd{
	margin-left:110px

}
.history_img{
	width: 50%;
	display: flex;
	align-items:center

}
.history_img div{
	margin: 0%;
}
.past_history{
	width:fit-content;
	margin:60px auto 0;
}
.past_history h3{
	text-align:center;
	display: block;
	margin: 0 0 10px;
}
.past_history .flex a{
	margin: 0 5px 0;
	color: #fff;
}
/*section5*/
.taka_hin_5_back{
	padding: 7%;
	background: #f3f1e3;

}
.taka_hin_5_back h2{
	margin: 0 0 30px;
	text-align: center;
	font-size: calc( 1.5vw + 15px );
}
.taka_hin_5_back h2 span{
	display:inline-block;	
}
.tsuyomi_img{
	width:100%;
	padding: 0 % 0 0;
	/* border:1px saddlebrown solid; */
}
.tsuyomi_txt{
	width: 100%;
	padding: 2%;
}

.tsuyomi_txt h3 {
    color: #000;
    text-align: center;
    margin: 0;
    line-height: 1;
    font-size: calc( 1vw + 15px );
    background: none;
}
.tsuyomi_txt p:nth-child(1){
	text-align: center;
	margin: 0;
}
.tsuyomi_txt p img{
	width: 70px;
}
.tsuyomi_txt h3 img{
	width: 17px;
	margin-right:25px;
}
.tsuyomi_txt h3 .pconly{
	display:inline
}
.tsuyomi_txt h3 .number_width{
	width: 35px;
	margin-right:25px;
}
.tsuyomi_txt p{
	margin: 10px 0;
	font-size: 17px;
}
.taka_hin_5_back .contents_wrap .flex{
	/*border-bottom: 1px solid #ccc;*/
	/*padding: 1% 0;
	margin: 5% 0;*/
	/* align-items: center; */
}
.ten_system{
	display:flex;
	flex-wrap:wrap
}

.ten_system_box{
	width: 48%;
	flex-wrap:wrap;
	margin: 3% 0 0 0%;

}
.ten_system div:nth-of-type(2n){
		margin: 3% 0 0 2%;
}
.ten_system_box div:nth-of-type(2n){
		margin: 0%;
}
.ten_system .flex .tsuyomi_img,.ten_system .flex .tsuyomi_txt{
	width:100%;
}
/*.taka_hin_5_back .contents_wrap .flex:nth-child(2){
	border-top: 1px solid #ccc;
}*/
/*section6*/
.taka_hin_6_back{

	padding: 7% 0 3%;
}
.flow_box,.plan_box{
	margin: 2% 0 5%;
}
/*画像拡大+caption*/
figure.snip1132 {
	position: relative;
	overflow: hidden;
	margin: 10px auto;
	width: 100%;
	color: #000;
	/*max-width: 1000px;*/
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}
  
figure.snip1132 * {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all 0.45s ease-in-out;
	transition: all 0.45s ease-in-out;
}
  
figure.snip1132 img {
	max-width: 100%;
	position: relative;
	opacity: 1;
}
figure.snip1132 a {
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	position: absolute;
	z-index: 1;
}
  
figure.snip1132 .figcaption_qo {
  position: absolute;
  bottom:10%;
  left: 5%;
  width: 90%;
}
.figcaption_qo{
	color: #fff;

}
.figcaption_qo h2{
	margin: 0 0 0px;
	line-height: 1;
	font-size: calc(4.5vw + 10px);
	transform:0.4s
}

.figcaption_qo p{
	line-height:1;
	text-align: right;
	padding: 0px 30px 25px 0;
	font-size:calc(1vw + 10px)
}
.figcaption_qo span{
	display:block;
	position:relative;
    /*リンクの形状*/ 
    text-decoration: none;
    outline: none;
}
.figcaption_qo span:before{
	content:"";
	position:absolute;
	bottom:10px;
	right:0px;
	width:40%;
	height:2px;
	background:#fff;
	transition:0.4s
}
.figcaption_qo span:after{
	content: '';
    /*絶対配置で矢印の位置を決める*/
	position: absolute;
    bottom:2px;
    right:2px;
    /*矢印の形状*/    
    width: 15px;
    height:15px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    	transition:0.4s
}
figure.snip1132:hover img,
figure.snip1132.hover img {
  opacity: 1;
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}

figure.snip1132:hover .figcaption_qo h2{
	color:#ff88bb
}
figure.snip1132:hover .figcaption_qo span:after{
	right:-10px;
	border-top: 2px solid #ff88bb;
    border-right: 2px solid #ff88bb;
}
figure.snip1132:hover .figcaption_qo span:before{
	right:-10px;
	background:#ff88bb
}
/**/
.taka_hin_7_back{
	background:  #FFf0f4;
	padding: 7%;
}
.taka_hin_7_back h2{
	margin: 0 auto 30px;
	padding: 1% 1%;
	width: fit-content;
	font-size: calc( 1.5vw + 15px );
	border-top: 2px solid #fdd5d5;
	border-bottom:2px solid #fdd5d5;
}
.taiko_midashi{
	text-align: center;
}
.taiko_midashi h3{
	color:#000;
	font-size: calc( 1.5vw + 15px );
	position: relative;
	width: fit-content;
	margin: 50px auto 30px;
	font-weight: normal;
	z-index: 2;
	background: none;
}
.taiko_midashi h3::before{
	content: "";
	position: absolute;
	top: -10px;
	left: 40px;
	background: url(/images/quality/taiko_midashi.png) no-repeat;
	background-size:70%;
	width: 300px;
	height: 300px;
	z-index: -1;
}
.taka_hin_7_back .contents_wrap .flex{
	margin: 8% 0 ;
	align-items: baseline;
}
.taka_hin_7_back .contents_wrap .flex_wrap_reverse{
		margin: 8% 0 ;
	align-items: baseline;
}
.taiko_img{
	width: 50%;

}
.taiko_txt{
	width: 48%;
	margin: 0 1% 0 1%;
}
.jyusho_kotoshi,.jyusho_kotoshi:visited{
	background:#ed7895;
	color:#fff;
	border-radius:5px;
	padding:10px;
	display:block;
	width:400px;
	max-width:90%;
	text-align:center;
	margin:40px auto 0;
}
/*--------------SP--------------■■■■■■■■■■■*/
@media(max-width:1100px){
	.contents_wrap{
		width: 95%;
	}



	/*-------- contact page ----------*/



}
@media(max-width:950px){
	/*------共通---------*/
	.flex_wrap_reverse{
		flex-wrap: wrap-reverse;
	}
	.flex{
		flex-wrap: wrap;
	}
	.margin5{
		margin:30px
	}
	/**/
	.vegas_center{
		width:90%;
	}
	.vegas_center h1{
		font-size: calc( 3vw + 10px );

	}
	#Vegas_slider {
		max-height: 75vh;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
	}
	.top_under{
		width: 75vw;
		margin: calc(170px + 10vw) 0;
		left: 50%;
		right: unset;
		/* text-align: center; */
		transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
	}
	.top_under li:nth-child(1){
		margin: 0 5% 0 0;
	}
	.taka_hin_2_back::after{
		width: 78%;
		height: 95%;
	}
	.taka_hin_2_back .contents_wrap div{
		width:95%;
		padding-left:5%;
	}
	.taka_hin_2_back .contents_wrap div h2{
		margin: 130px 0 50px;
	}
	.taka_hin_2_back .contents_wrap div p{
		font-size:16px
	}
	/*section3*/
	.taka_hin_3_back{
		padding: 8% 0;
	}
	.taka_hin_3_img{
		width: 100%;
		padding: 0%;
	}
	.taka_hin_3_txt{
		width:100%
	}
	.taka_hin_3_txt p{
		font-size: 85%;
	}
	.taka_hin_3_back .contents_wrap .flex{
		display:flex
	}
	.taka_hin_3_txt .flex div{
		width: 46%;
	}
	/*section4*/
	.taka_hin_4_back{
		padding: 13% 0;
	}
	.history_txt{
		width: 95%;
		font-size: 85%;
		padding: 0;
		margin: 0 auto;
	}
	.history_txt dd{
		margin-left: 82px;
	}
	.history_img{
		width:100%
	}
	/*section5*/
	.taka_hin_5_back{
		padding:7% 0 
	}
	.taka_hin_5_back .contents_wrap .flex{
		margin: 7% 0;
	}
	.tsuyomi_img{
		width:100%;
		margin:0px 0 0 0
	}
	.tsuyomi_txt{
		width:100%;
		margin-top: 0%;
		padding-top:0
	}
	.tsuyomi_img .sponly{
		margin:0 auto 10px;
		width:30px
	}
	
	.tsuyomi_txt h3{
		padding:0
	}
	.tsuyomi_txt p{
		font-size:85%;
		margin:0
	}
	.ten_system_box{
		width:100%;
		display:flex;
		flex-wrap:nowrap;
	}
	.ten_system h3{
		width:100%;
	    color: #000;
	    text-align: center;
	    margin: 5% 0 0% 0;
	    line-height: 1;
	    font-size: calc( 1vw + 15px );
	    background: none;
	}
	.ten_system h3:nth-child(1){
		margin:0
	}
	.ten_system h3 img {
	    width: 17px;
	    margin-right: 25px;
	}
	.ten_system .number_width{
		margin-right: 18px;
		width:30px

		
	}
	.ten_system div:nth-of-type(2n){
		margin:3% 0 0% 0
	}
	.ten_system_box div:nth-of-type(2n){
		margin:0
	}


	
	/**/
	.taiko_midashi h3{
		margin:0
	}
	.taka_hin_7_back{
		padding:7% 0
	}
	.taiko_midashi h3::before{
		width:200px;
		height:200px
	}
	.taiko_img{
		width:100%
	}
	.taiko_txt{
		width:100%;
		margin:10px 0;
	}
	.taka_hin_7_back .contents_wrap .flex_wrap_reverse{
		margin:15% 0

	}

}

/*after*/
.after{
	font-size:calc(12px + 0.3vw);
	width:1000px;
	max-width:95%;
	margin:0 auto;
}
.after .intro{
	margin-top:calc(25px + 2.5vw);
	font-size:105%;
	margin-bottom:calc(10px + 1vw);
}

.after h4 {
    font-size: 200%;
    color: #000;
    margin: calc(30px + 4vw) 0 15px;
    border-bottom: 1px solid #000;
    line-height: 1.3;
    letter-spacing:0.2em;
    padding: 20px 5px 5px 5px;
}
.after h4 span{
	font-size:50%;
	color:#ee819c;
	display:inline-block;
	letter-spacing:0;
	margin-bottom:0.3em;
}

.after h5{
    margin: calc(30px + 4vw) 0 calc(12px + 1vw);
    padding: 10px 5px 11px 30px;
    color:#000;
    font-size:160%;
    background:linear-gradient(90deg, #f19aa3, #f19aa3 10px, #fce4e4 10px);
}
.ownersclub > div:first-child{
	width: 240px;
	padding-right:35px
}
.ownersclub > div:last-child{
	width:calc(100% - 240px);	
}
.ownersclub p{
	margin-bottom:0.5em;
}
.ownersclub big{
	font-weight:bold;
}
.ownerstokuten{
	flex-wrap:wrap;
	margin-top:12px;
}
.ownerstokuten > p{
	width:22%;
	margin-right:4%;
	background:#cb9900;
	color:#fff;
	text-align:center;
	padding: 12px 18px;
	display:flex;
	align-items:center;
	justify-content: center;
	outline: 2px solid #fff;
	outline-offset: -6px;
}
.ownerstokuten > p:last-child{
	margin-right:0;
}
.hoshosetsubi{
	flex-wrap:wrap;
}
.hoshosetsubi > div{
	width:33.3%;
	margin:0;
	padding:0.5em;
	display:flex;
	flex-wrap:wrap;
	border-bottom:1px dotted #666;
	border-right:1px dotted #666;
}
.hoshosetsubi > div:nth-child(3n){
	border-right:0px;
}
.hoshosetsubi > div:nth-child(n+4){
	border-bottom:0px;
}
.hoshosetsubi > div:nth-child(3n){
	margin-right:0;
}
.hoshosetsubi > div > p:first-child{
	width: 32%;
	padding-right:10px;
}
.hoshosetsubi > div > p:last-child{
	width:68%;
	font-size:82%;
}
.hoshosetsubi > div > p b{
	display:block;
	font-size:120%;
}
.taisho_gray{
	background:#f3f3f3;
	padding: 10px 15px 10px;
}

@media(max-width:800px){
	.flex.ownersclub{
		display:block;
	}
	.ownersclub > div:first-child{
		width:100%;
		text-align:center;
		padding-bottom:1.2em;
	}
	.ownersclub > div:first-child img{
		max-height:350px
	}
	.ownersclub > div:last-child{
		width:100%;
	}
	.hoshosetsubi > div,
	.hoshosetsubi > div:nth-child(3n),
	.hoshosetsubi > div:nth-child(n+4){
		width:50%;
		border-bottom:1px dotted #666;
		border-right:1px dotted #666;
	}
	.hoshosetsubi > div:nth-child(2n){
		border-right:0px;
	}
	.hoshosetsubi > div:nth-child(n+5){
		border-bottom:0px;
	}
}
@media(max-width:500px){
	.ownerstokuten > p{
		width:48%;
		margin-right:4%;
	}
	.ownerstokuten > p:nth-child(2n){
		margin-right:0;
	}
	.hoshosetsubi > div{
		display:block;
	}
	.hoshosetsubi > div > p:first-child,
	.hoshosetsubi > div > p:last-child{
		width:100%;
		font-size:92%;
	}
	.hoshosetsubi > div > p:first-child{
	text-align:center;
	}
	.hoshosetsubi > div > p b{
	text-align:center;
	}
	.hoshosetsubi img{
		max-width:70px;
	}
	.hoshosetsubi > div:nth-child(odd){
		padding:1em 1em 1em 0.5em;
	}
	.hoshosetsubi > div:nth-child(even){
		padding:1em 0.5em 1em 1.5em;
	}
	.hoshosetsubi > div > p:first-child{
		padding-right:0;
	}
}



.zutto_anshin > div{
	width:23%;
	margin-right:2.66%;
}
.zutto_anshin > div:nth-child(4){
	margin-right:0;
}
.zutto_anshin > div > p:first-child{
	font-size:130%;
	font-weight:bold;
	border-bottom:2px solid;
	padding-bottom:0.4em;
	min-height:3.5em;
	line-height:1.4;
	text-indent:-1em;
	padding-left:1em
}
.zutto_anshin > div > p:nth-child(2){
	font-size:90%;
	padding:0.5em 0.2em 1em;
	min-height:3.5em;
	line-height:1.5;
}
.zutto_anshin small{
	font-size:70%;
	vertical-align:0.1em;
}
.zutto_anshin img{
	box-shadow:3px 3px 7px #0006;
}

@media(max-width:800px){
	.zutto_anshin > div{
		width:48%;
		margin-right:4%;
		margin-bottom:1.5em
	}
	.zutto_anshin > div:nth-child(2n){
		margin-right:0;
	}
}

.after_topmsg{
	margin-top:50px;
	font-size:calc(7px + 0.7vw);
	line-height:1.7;
}
.taka_hin_2_back .contents_wrap div.pan_quality{
	width:auto;
	margin-top:-230px	
}
@media(max-width:1200px){
	.taka_hin_2_back .contents_wrap div.pan_quality{
		margin-top: calc(-7vw - 140px);
	}	
}