@charset "utf-8";

*,
*::after,
*::before {
	box-sizing: border-box;
	padding: 0;
 	margin: 0;
}
body {
	margin: 0 auto;
	padding: 0;
	font-weight: bold;
	color: #333333;
	min-width: 750px;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}
@media screen and (max-device-width: 900px){
	body{
    	-webkit-text-size-adjust: 100%;
	}
}
p, h1, h2, h3, h4, h5 {
	margin: 0;
	padding: 0;
}
a {
	color: inherit;
	text-decoration: none;
}
.flex {
	display: flex;
}
.flex-between {
	justify-content: space-between;
}
.flex-align {
	align-items: center;
}

/* ---------- ヘッダー ---------- */
.position_nav {
	position: sticky;
	z-index: 1000;
	top: 0;
	border-bottom: #006EE1 10px solid;
	background: #FFF;
	padding: 0;
	width: 100%;
}
header {
	position: relative;
	height: 125px;
	margin-top: 5px;
}
header .flex {
	width: 95%;
	max-width: 1295px;
	margin: 0 auto;
}

/* ---------- ロゴ ---------- */
.logo {
	max-width: 302px;
}

/* ---------- 電話番号 ---------- */
.tel {
	max-width: 480px;
	margin: 0 10px;
}
.tel:hover {
	opacity: 60%;
}

/* ---------- 対応エリア ---------- */
header .taioueria {
	font-size: 1.1rem;
	text-align: center;
	padding-top: 15px;
	line-height: 2.8ex;
}
header .taioueria i {
	font-size: 1.7rem;
	color: #1e9e39;
	font-style: normal;
}

/* ---------- 連絡ボタン ---------- */
.contact_btn {
	display: none;
}

/* ---------- ナビゲーション ---------- */
.position_fixed {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	display: none;
}
.navbar {
	width: 100%;
	height: 0;
	display: block;
	position: relative;
}
.navbar input[type="checkbox"] {
	position: absolute;
	display: block;
	cursor: pointer;
	height: 60px;
	width: 60px;
	top: 25px;
	right: 20px;
	z-index: 5;
	opacity: 0;
}
.menu-items {
	display: flex;
	padding: 100px 0 80px 0;
	background: #006ed6;
	box-shadow: #000 0 0 10px;
	width: 100%;
	transform: translateY(-150%);
	flex-direction: column;
	transition: transform 0.5s ease-in-out;
}
.menu-items a {
 	transition: color 0.3s ease-in-out;
	width: 80%;
	margin: auto;
	padding: 30px 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: 2rem;
	color: #FFF;
	border-bottom: #FFF 1px dashed;
}
.menu-items a:first-child {
	border-top: #FFF 1px dashed;
}
.menu-items a:hover {
	background: #c1f5ff;
	color: #006ed6;
}
.navbar .hamburger-lines {
	height: 45px;
	width: 60px;
	position: absolute;
	top: 40px;
	right: 20px;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.navbar .hamburger-lines .line {
	display: block;
	height: 6px;
	width: 100%;
	border-radius: 10px;
	background: #000;
}
.navbar .hamburger-lines .line1 {
	transform-origin: 0% 0%;
	transition: transform 0.4s ease-in-out;
}
.navbar .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
}
.navbar .hamburger-lines .line3 {
	transform-origin: 0% 100%;
	transition: transform 0.4s ease-in-out;
}
.navbar input[type="checkbox"]:checked ~ .menu-items {
   	transform: translateY(0);
}
.navbar input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
	transform: rotate(43deg);
}
.navbar input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
   	transform: scaleY(0);
}
.navbar input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
   	transform: rotate(-43deg);
}

/* ---------- キャッチコピー ---------- */
.catchphrase {
	font-size: 1.375rem;
	text-align: center;
	padding-top: 5px;
}
@media screen and (max-width: 1250px){
	header {
		height: 115px;
	}
	.logo {
		max-width: 250px;
	}
	.tel {
		max-width: 400px;
	}
	header .taioueria {
		font-size: 1rem;
	}
	header .taioueria i {
		font-size: 1.5rem;
	}
}
@media screen and (max-width: 1100px){
	header {
		height: 100px;
	}
	.logo {
		max-width: 200px;
	}
	.tel {
		max-width: 340px;
	}
	header .taioueria {
		font-size: 0.8rem;
	}
	header .taioueria i {
		font-size: 1.2rem;
	}
	.catchphrase {
		font-size: 1.1rem;
	}
}
@media screen and (max-width: 900px){
	header {
		height: 111px;
		margin: 0 auto;
	}
	header .flex {
		justify-content: flex-start;
	}
	.contact_btn {
		display: flex;
		margin-left: 2%;
	}
	.contact_btn a {
		margin: 0 1%;
	}
	.logo {
		max-width: 250px;
	}
	.tel {
		display: none;
	}
	.position_fixed {
		display: block;
	}
	header .taioueria {
		display: none;
	}
	.catchphrase {
		display: none;
	}
}

/* ---------- 対応エリア ---------- */
.taioueria_smartphone {
	font-size: 1.4rem;
	text-align: center;
	padding-top: 15px;
	line-height: 2.8ex;
	color: #FFF;
	background: #006EE1;
	padding-bottom: 10px;
	display: none;
}
.taioueria_smartphone i {
	font-size: 2.3rem;
	color: #ffff00;
	font-style: normal;
}

/* ---------- トップ画像 ---------- */
.top_img1 .PC {
	line-height: 0;
}
.top_img1 .smartphone {
	display: none;
	line-height: 0;
}
@media screen and (max-width: 900px){
	.top_img1 .PC {
		display: none;
	}
	.top_img1 .smartphone {
		display: block;
	}
	.taioueria_smartphone {
		display: block;
	}
}

/* ----- じゃぶじゃぶクリーン ----- */
#jabujabu{
	width: 100%;	
}
#jabujabu .jabujabu_btn{
	background-color: red;
	width: 90%;
	max-width: 1100px;
	position: relative;
	z-index: 500;
	padding: 5px 50px;
	display: flex;
	justify-content: center;
	align-content: center;
	border-radius: 60px;
	border: 10px solid #fff;
	margin:-20px auto 80px auto;
	box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.35);
}
#jabujabu .jabujabu_btn img{
	width: 100%;
	max-width: 900px;	
}

#jabujabu .jabujabu_btn:hover{
	transform: translateY(5px);
	box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.35);
	background-color:blue;
	cursor:pointer;
}
/*---動画モダルウィンドウ---*/
/*--チェックボックスを隠す---*/
.modal input {
  display: none;
}
.modal_BG {
	display: flex;
	align-items: center;
	justify-content: center;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);/*--半透明--*/
  opacity: 0;
  transition: opacity 0.5s, transform 0s 0.5s;
  transform: scale(0);
}
/*---モダルの後ろの背景ラベル　クリック---*/
.modal_style {
  position: absolute;
  width: 100%;
  height: 100%;
}
.modal input:checked ~ .modal_BG {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s;
}
.modal input:checked ~ .modal_BG .modal_content {
  transform: translateY(20px);
}
/* ---------- ムービー ---------- */
.movie video{
	height: 90vh;
	margin: auto;
	border-radius: 10px;
}

/* -------- 在庫セール ------- */

.zaiko_main{
	width: 90%;
	max-width: 920px;
	background-size: cover;
	background-position: center;
	background-image: url("../syouhin/images2309/zaiko_haikei.jpg");
	border: #004DFF solid 3px;
	border-radius: 20px 20px 0 0;
}
.zaiko_title{
	border-radius: 20px 20px 0 0;
}

.zaiko_syouhin{
	margin: auto;
	display: flex;
	justify-content: center;
	flex-flow: column;
	align-items: center;
}
.zaiko_syouhin img{
	margin: 10px auto;
	width: 95%;
	max-width: 895px;
}
.zaiko_smartphone {
		display: none;
	}

@media screen and (max-width: 900px){
	.zaiko_PC {
		display: none;
	}
	.zaiko_smartphone {
		display: block;
	}
}

/* ---------- 御礼 ---------- */

.kanbai{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 43px;
	width: 320px;
	background-color: #fff;
	border-radius: 30px;
	margin:0 15px 30px 15px;
	
}
.kanbai p{
	width: 160px;
	text-align: left;
	padding-left: 10px;
	font-size: 20px;
}
.kanbai_flex{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

/* ---------- 東京都補助金 ---------- */
/* ---------- トップ画像 ---------- */
.hojo15_text{
	font-size: 32px;
	background-color:#ff9500;
	color: #fff;
	padding: 8px;
	margin: 30px auto -20px auto;
	width: 95%;
	max-width: 800px;
	border-radius: 5px;
}
.hojo15_text span{
	font-size: 25px;
}
.tokyo_top_img {
	margin-top: -5px;
}
.tokyo_top_img .PC {
	background-image: url("../images_tokyo/T_top_pc_haikei.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	justify-content: center;	
}
.tokyo_top_img img{
	line-height: 0;
	max-width: 1400px;
}
.tokyo_top_img .smartphone {
	display: none;
	line-height: 0;
}

@media screen and (max-width: 900px){
	.hojo15_text{
	font-size: 40px;
	line-height: 50px
}
	.tokyo_top_img .PC {
		display: none;
	}	
	.tokyo_top_img .smartphone {
		display: block;
	}	
}

/* ---------- 東京都補助金 ---------- */
.index_tokyo_img_BG{
	background-color: #FF3969;
	display: flex;
	justify-content: center;
	flex-flow: column;
	padding: 30px 0 30px 0;
}
.index_tokyo_img_BG .text{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 92%;
	max-width: 900px;
	margin: auto;	
}
.index_tokyo_img_BG .text div{
	width: 50%;
	background-color: #fff;
	margin: 15px;
	padding: 15px 0;
	border-radius: 15px;
}
.index_tokyo_img_BG .text p{
	text-align: center;
	font-size: 18px;	
}
.index_tokyo_img_BG .text .p1{
	font-size: 22px;
	margin-bottom: 5px;
}
.index_tokyo_img_BG .text .p2{
	font-size: 25px;
	color:orangered
}
.index_tokyo_img img{
	max-width: 1400px;
	width: 90%;
	margin: auto;
	display: block;	
}

.index_tokyo_img_tel img{
	width: 90%;
	margin: auto;
	display: block;
}
.index_tokyo_img_tel{
	display: none;
	}
@media screen and (max-width: 900px){
	.index_tokyo_img{
		display: none;
	}
	.index_tokyo_img_tel{
		display: block;
	}
}
/* ----- その他の商品ページへ 追加 ----- */
#newpage{
	position: relative;
}

#newpage .newpage_btn{
	position: absolute;
	bottom: 8%;
    left: 47%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
#newpage #Image140{
	width: 115%;
}

@media screen and (max-width: 1200px){
	#newpage .PC {
		display: none;
	}
	#newpage .smartphone {
		display: block;
	}
	#newpage .newpage_btn{
	position: absolute;
	bottom: 0;
    left: 36%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);	
	}
	#newpage #Image140{
	width: 143%;
	}	
}

/* ----- 並び替え追加 ---- */
.campaign_text{
	font-size: 28px;
	margin-top: -10px;
	margin-bottom: 50px;
	color:tomato;
}

.narabi_top_img{
	background-image: url("../syouhin/keizai2312/narabi_eco.png");
	width: 100%;
	height: 412px;
	background-position: center;
	position: relative;
	background-size: cover
}
.narabi_pana{
	margin-top: 100px;
}
.margin_top{
	margin-top: -90px;
}
@media screen and (max-width: 1100px){
	.narabi_top_img{
	width: 100%;
	height: 280px;
}
	.narabi_pana{
	margin-top: 135px;
}
}

/* ----- 経済産業省補助金対象商品 ---- */
.top_img2 {
	background-color: #ffff00;
	position: relative;
}
.top_img2 img{
	margin-top: -70px;
}
.top_img2 a {
	display: block;
	max-width: 1464px;
	width: 95%;
	margin: auto;
}
.sankaku{
	width:0;
	height:0;
	border-style:solid;
	border-width: 50px 90px 0 90px;
	border-color: #FFFF00 transparent transparent transparent;
	position: absolute;
	bottom:-45px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
	z-index: 5;
}

/* -----補助金 おすすめ商品 ---- */
.Tel_900{
		display: none;
	}
.index_hojo_osususme{
	background-color:#73d7ff;
}
.index_hojo_osususme .topimg{
	margin-top: -5px;
	background-image:url("../syouhin/keizai2312/top_13img2.png");
	height: 380px; 
	width: 100%;
	background-position: center bottom;
	display: flex;
	justify-content: center;
	align-items:center;
	flex-flow: column;
	position: relative;
	
}
.sarani_maru{
	width: 150px;
	height: 150px;
	border-radius: 50%;
background: rgb(255,0,117);
background: linear-gradient(191deg, rgba(255,0,117,1) 35%, rgba(255,231,242,1) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	z-index: 0;
	top:-30px;
	left: 20%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
	padding: 10px;
	border: #fff solid 3px;
}

.index_hojo_osususme .topimg .img{
	margin: 0px auto 0 auto;
	max-width: 1073px;
	width: 95%;
	position: relative;
}
.index_hojo_osususme .topimg a{
	margin:0px auto 0 auto;
	width: 855px;
}
.index_hojo_osususme .waku{
	width: 90%;
	max-width: 920px;
	background-color: #fff;
	border: #004DFF solid 3px;
	margin:-200px auto 0 auto;
}

@media screen and (max-width: 1100px){
	.top_img2 img{
	margin-top: -50px;
}
}

@media screen and (max-width: 900px){
	.index_hojo_osususme .topimg{
	height: 300px; 
}
.sarani_maru{
	width: 130px;
	height: 130px;
	padding: 20px;
}
	.top_img2 img{
	margin-top: -50px;
}
	.index_hojo_osususme .topimg img{
	width: 700px;
}
	.PC_900{
		display: none;
	}
	.Tel_900{
		display: block;
	}
}
/* -----補助金 おすすめ商品 の中---- */
/* ----- マンション以下---- */

.mizuiro_BG{
	background-color: #73d8ff;
	padding: 30px 0;
}
.ao_BG{
	background-color: #0078e0;
	padding: 30px 0;
}
.ao_BG img{
	width: 90%;
	max-width: 1081px;
}
.moraeru_title{
	width: 90%;
	max-width: 1352px;
	margin-top: 30px;
}
.M_title{
	background-color: #0078e0;
	width: 450px;
	padding: 10px 0 2px 0;
	border-radius: 20px 20px 0 0;	
}
.mizuiro_BG .waku{
	border:2px solid #0078e0;
	background-color: #fff;
	width: 90%;
	max-width: 920px;
	padding: 30px 0;
}
.ao_BG .waku{
	border:2px solid #ffff00;
	background-color: #fff;
	width: 90%;
	max-width: 920px;
	padding: 30px 0;
}
.hokano_title{
	background-color: #ffff00;
	width: 450px;
	padding: 10px 0 2px 0;
	border-radius: 20px 20px 0 0;	
}
.hokano_title img{
	width: 253px;
}

/* ----- マイクロバブル ---- */
.micro_bubble .tel{
	display: none;
}
.micro_bubble{
	background-color:#5ca5ff;
	width: 100%;
}
.micro_bubble .title1{
	width:50%;
	min-width: 650px;
	margin: 10px 0 0 0;
}
.micro_bubble .BG_W{
	background-color: #fff;
	width: 90%;
	max-width: 920px;
	border-radius: 25px;	
}
.micro_bubble .micro_flex{
	display: flex;
	justify-content: center;
	align-items:flex-end;
}
.micro_bubble .micro_flex_c{
	display: flex;
	justify-content: center;
	align-items:center;
}
.micro_bubble .micro_corona{
	padding-bottom: 10px;
}
.micro_bubble .title2{
	margin: 10px 0;
}

/* 内容 上 */
.micro_bubble .naiyou{
	margin: -30px 50px 20px 50px;
}
.micro_bubble .text_title_B{
	color: #5ca5ff;
	font-size: 35px;
	text-align: left
}
.micro_bubble .setumei_p{
	text-align: justify;
	padding: 5px 30px;
}

/* 内容 下 */
.micro_bubble .BG_gray{
	color: #fff;
	background-color: #7a848b;
	font-size: 25px;
	padding: 5px;
	margin: 50px 0 20px 0;
}
.micro_bubble .text_B{
	color: #5ca5ff;
	font-size: 25px;
	text-align: left
}
.micro_bubble .setumei_p_2{
	text-align: justify;
	padding: 5px 0px;
}
.micro_bubble .QR{
	margin-left: 30px;
}
.micro_bubble .QR_text{
	color: #fff;
	background-color: #000;
	padding: 5px 0;
	margin-bottom: 5px;
}
.micro_bubble .QR a:hover{
	opacity: 0.7;
}
.micro_bubble .micro_flex_kahen{
	display: flex;
	justify-content: center;
	align-items:center;
}
.micro_bubble .kouka{
	margin-bottom: 30px;
	width: 100%;
}
.micro_bubble .small_p{
	text-align: left;
	font-weight: normal;
}

@media screen and (max-width: 900px){
.micro_bubble .naiyou{
	margin: -30px 20px 20px 20px;
}
.micro_bubble .text_title_B{
	font-size: 27px;
}
.micro_bubble .setumei_p,.micro_bubble .setumei_p_2{
	font-size: 20px;
}
.micro_bubble .PC{
		display: none
}
.micro_bubble .micro_flex_kahen{
	display: flex;
	justify-content: center;
	align-items:center;
	flex-flow: column;
}
.micro_bubble .kouka{
	margin-bottom: 30px;
	width: 80%;
}
.micro_bubble .tel{
	display: block;
}
}

/* ----- ウルブロ ---- */
.ulblo a img:hover{
	transform: translateY(-10px);
	opacity: 0.9;
}

/* ----- 在庫セール　リンク ---- */
.zaiko_text{
	margin: auto;
	max-width: 1184px;
	width: 90%;
}
#Image120{
	margin: auto;
	max-width: 1317px;
	width: 90%;
}
#Image120:hover{
	opacity: 0.8;
}


/* ---------- おかげ様で ---------- */
.top_img3 {
	background: linear-gradient(90deg, rgba(146,202,255,1) 0%, rgba(177,224,255,1) 20%, rgba(177,224,255,1) 80%, rgba(146,202,255,1) 100%);
	padding: 5px 0 20px 0;
}
.top_img3 img {
	display: block;
	max-width: 1464px;
	width: 95%;
	margin: auto;
}

/* ---------- 10年安心保証セット ---------- */
.top_gurantee {
	background: #0078e2;
	padding: 20px 0 10px 0;
}
.top_gurantee img {
	display: block;
	max-width: 1630px;
	width: 95%;
	margin: auto;
}

/* ---------- 超目玉商品 --------------------------- */
.medama .PC {
	max-width: 1390px;
	width: 91%;
	margin: 10px auto 20px auto;
}
.medama .smartphone {
	display: none;
}
@media screen and (max-width: 900px){
	.medama .PC {
		display: none;
	}
	.medama .smartphone {
		display: block;
		width: 95%;
		margin: auto;
	}
}

/* -------
products 商品という意味


----- */

/* ---------- 取り扱い商品 ---------- */
.products_title {
	background: url(../images/Products_title.png) no-repeat center;
	height: 238px;
}
.products_title_shadow {
	max-width: 1920px;
	margin: auto;
}
.products_title h1 {
	color: white;
	font-size: 44px;
	text-align: center;
	padding-top: 20px;
}
#products_logo {
	justify-content: center;
	max-width: 1200px;
	width: 95%;
	margin: -120px auto 20px auto;
}
#products_logo .align {
	height: 70px;
	display: flex;
	align-items: center;
}
#products_logo .maker {
	height: 108px;
}
#products_logo a {
	margin: 0 5px;
}
#products_logo a:hover {
	opacity: 60%;
}
.products_h1 {
	font-size: 3.5rem;
	text-align: center;
}
@media screen and (max-width: 1250px){
	#products_logo .maker {
		height: 95px;
	}
	#products_logo .align {
		max-width: 800px;
		height: 60px;
	}
	.products_h1 {
		font-size: 2.2rem;
	}
}
@media screen and (max-width: 1100px){
	#products_logo {
		flex-direction: column;
	}
	#products_logo .align {
		height: 70px;
	}
}

.main_blueBG {
	background: #73D9FF;
	padding: 50px 0 2px 0;
	margin-bottom: 60px;
}

/* コミコミ料金 */
#included h1 {
	text-align: center;
	font-size: 25px;
	margin: 20px 0 0 0;
}
#included h1 span {
	color: #ff3969;
}
#included .flex {
	max-width: 800px;
	width: 95%;
	margin: auto;
	flex-wrap: wrap;
	justify-content: center;
}
#included p {
	font-size: 20px;
	text-align: center;
	color: #FFF;
	background: #ff3969;
	border-radius: 10px;
	padding: 10px 0;
	width: 143px;
	margin: 5px;
}
#included p span {
	margin: 0 -5px;
}

.products {
	max-width: 920px;
	width: 90%;
	padding: 30px 20px;
	margin: 0 auto 80px auto;
	background: #FFF;
	border-radius: 20px;
}
.products i {
	font-size: 1.75rem;
	font-style: italic;
	margin-left: 10px;
}
.products i b {
	color: #006ED9;
}
.products .title {
	color: white;
	font-style: italic;
	font-size: 28px;
	width: 710px;
	padding: 5px 50px;
	margin: 40px 0 20px 0;
}
.flex_productsIMG {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 20px;
}
.flex_productsIMG img {
	margin: 0 10px 20px 10px;
	width: 392px;
}
@media screen and (max-width: 900px){
	.products i {
		display: flex;
		flex-direction: column;
	}
}
@media screen and (max-width: 1050px){
	.flex_productsIMG img {
		margin: 0 10px 20px 10px;
		width: 550px;
	}
}

/* ---------- 補助金枠 ---------- */
#hojyokin {
	position: relative;
	border-left: #0071BC 5px solid;
	border-right: #0071BC 5px solid;
	border-bottom: #0071BC 5px solid;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

/* ---------- IHクッキングヒーター ---------- */
.medama_IH {
	max-width: 955px;
	width: 90%;
	margin: auto;
}

/* ---------- 人気商品の在庫多数保有 ---------- */
.stock {
	max-width: 1310px;
	width: 90%;
	margin: auto;
}

.omakase .flex {
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 100px;
	padding: 8px 0 3px 0;
	background: #0078E3;
	color: #FFF;
}
.omakase .flex h1 {
	font-size: 2.8rem;
	width: 500px;
}
.omakase .flex h2 {
	font-size: 2.8rem;
	width: 720px;
}

/* ---------- トップ画像４ ---------- */
.top_img4 {
	background: url(../images/Top_img4.png) no-repeat center;
	height: 589px;
}
.top_img4 h1 {
	text-align: center;
	font-size: 4.625rem;
	color: #000;
	padding-top: 65px;
}
.top_img4 h2 {
	text-align: center;
	font-size: 85px;
	color: #0078E2;
	line-height: 2ex;
}
.top_img4 .circle img {
	width: 324px;
}
.top_img4 .circle h3 {
	font-size: 4.375rem;
	text-align: center;
	color: #FFFF00;
	line-height: 2ex;
	margin-top: -270px;
}
@media screen and (max-width: 1100px){
	.top_img4 {
		height: 450px;
	}
	.top_img4 h1 {
		font-size: 3rem;
	}
	.top_img4 h2 {
		font-size: 3.5rem;
	}
	.top_img4 .circle img {
		width: 250px;
	}
	.top_img4 .circle h3 {
		font-size: 3.5rem;
		margin-top: -200px;
	}
}

/* ---------- トップ画像５ ---------- */
.top_img5 {
	background: url(../images/Top_img5.png) no-repeat center;
}
.top_img5 img {
	display: block;
	max-width: 1052px;
	width: 90%;
	margin: auto;
}
.top_img5_bar {
	background: linear-gradient(90deg, rgba(0,70,228,0.5) 0%, rgba(0,70,228,1) 20%, rgba(0,70,228,1) 80%, rgba(0,70,228,0.5) 100%);
}
.top_img5_bar h1 {
	font-size: 3.625rem;
	text-align: center;
	padding: 15px 0 0 0;
	color: #FFF;
}
.top_img5_bar h1 i {
	color: #FFFF00;
	font-style: normal;
}
.top_img5_bar p {
	line-height: 2ex;
	color: #FFF;
	font-size: 1.625rem;
	text-align: center;
	padding-bottom: 15px;
}
@media screen and (max-width: 1100px){
	.top_img5_bar h1 {
		font-size: 2.4rem;
	}
}

/* ---------- トップ画像６ ---------- */
.top_img6 {
	line-height: 0;
}
.top_img6 .PC {
	max-width: 1920px;
	margin: auto;
}
.top_img6 .smartphone {
	display: none;
}
@media screen and (max-width: 900px){
	.top_img6 .PC {
		display: none;
	}
	.top_img6 .smartphone {
		display: block;
	}
}

/* ---------- 理由 ---------- */
.reasons {
	background: #B1E0FF;
	padding: 60px 0 0 0;
}
.reasons .white {
	background: #FFF;
	max-width: 1300px;
	width: 90%;
	margin: auto;
	border-radius: 30px;
	padding: 80px 0;
	position: relative;
}
.reasons .reason_flex {
	max-width: 1100px;
	width: 90%;
	margin: 10px auto;
}
.reason1 .flex img {
	height: 40px;
	margin: 10px;
}
.reasons_p {
	padding-left: 3%;
	max-width: 850px;
}
.reasons .circle {
	text-align: center;
	line-height: 4ex;
	background: #0078E2;
	color: #FFF;
	font-size: 25px;
	width: 146px;
	height: 146px;
	border-radius: 146px;
}
.reasons .circle b {
	font-size: 96px;
	font-family: 'D-DIN Condensed Bold';
}
.reasons h1 {
	font-size: 2.8rem;
}
.reasons h1 span {
	color: #FF3969;
	background: #FFFF00;
}
.reasons p {
	font-size: 1.563rem;
	padding: 10px 0 0 20px;
}
.reasons .reason2_p {
	text-align: center;
	font-size: 32px;
	color: #FF3969;
	margin: 10px 0;
}
.reasons .reason2 .reason2_img {
	flex-wrap: wrap;
	justify-content: center;
}
.reasons .reason2 .reason2_img img {
	width: 200px;
}
.reasons_character {
	position: absolute;
	background: url(../images/Reasons_character.png) no-repeat;
	width: 176px;
	height: 333px;
	bottom: -5%;
	right: 5%;
}
.reasons_img {
	max-width: 1270px;
	width: 95%;
	margin: auto;
	line-height: 0;
}
@media screen and (max-width: 1250px){
	.reasons .circle {
		margin: auto;
	}
	.reasons .reason_flex {
		flex-direction: column;
	}
	.reasons h1 {
		text-align: center;
		width: 80%;
		margin: 20px auto 0 auto;
	}
	.reason1 .flex {
		flex-wrap: wrap;
		justify-content: center;
	}
	.reasons_p {
		margin: auto;
	}
	.reasons .reason2_p {
		width: 80%;
		margin: 10px auto;
	}
	.reasons p {
		width: 82%;
		text-align: center;
		margin: auto;
	}
	.reasons .reason2 .reason2_img img {
		width: 225px;
	}
}

/* ---------- トップ画像７ ---------- */
.top_img7 .title {
	background: #ffff00;
	padding: 60px 0 120px 0;
}
.top_img7 .title img {
	max-width: 1291px;
	width: 90%;
	margin: auto;
	display: block;
}
.top_img7 .illust {
	max-width: 902px;
	width: 90%;
	margin: -110px auto 0 auto;
}
.top_img7 .medals {
	max-width: 1310px;
	width: 95%;
	margin: -50px auto 0 auto;
}
.top_img7 .photo {
	position: relative;
	/*max-width: 1300px;*/
	max-width: 900px;
	width: 90%;
	margin: 0 auto 80px auto;
}
.top_img7 .photo h3 {
	color: #0078E3;
	font-size: 3rem;
	padding: 20px 0;
}
.top_img7 .photo h3 .hide {
	display: none;
}
.top_img7 .photo h2 {
	font-size: 1.8rem;
	text-align: justify;
	/*max-width: 700px;
	width: 55%;*/
}
/*.top_img7 .photo img {
	position: absolute;
	top: -30px;
	right: -50px;
	z-index: -500;
	width: 615px;
}*/
.top_img7 .taioueria {
	background: #006ed7;
}
.top_img7 .taioueria .PC {
	max-width: 1304px;
	width: 90%;
	margin: auto;
}
.top_img7 .taioueria .smartphone {
	display: none;
	max-width: 1025px;
	width: 90%;
	margin: auto;
}
@media screen and (max-width: 1250px){
	.top_img7 .photo h1 {
		font-size: 2.6rem;
		width: 60%;
		padding: 50px 0 30px 0;
	}
	.top_img7 .photo h2 {
		font-size: 1.6rem;
		max-width: 1250px;
		width: 100%;
		margin: auto;
	}
	.top_img7 .photo img {
		width: 350px;
		top: -20px;
		right: -30px;
	}
}
@media screen and (max-width: 1000px){
	.top_img7 .taioueria .PC {
		display: none;
	}
	.top_img7 .taioueria .smartphone {
		display: block;
	}
	.top_img7 .photo h3 .hide {
		display: block;
	}
}

/* ---------- よくある質問 ---------- */
.FAQ_yellow {
	background: #ffff94;
}
.FAQ_yellow .title {
	max-width: 1235px;
	width: 90%;
	margin: auto;
}
.FAQ {
	max-width: 1300px;
	width: 95%;
	margin: auto;
	position: relative;
}
.FAQ .align {
	position: absolute;
	top: 15%;
	left: 13%;
}
#FAQ2 .align {
	top: 25%;
	left: 5%;
}
#FAQ3 .align {
	left: 18%;
}
#FAQ4 {
	margin-top: -30px;
}
#FAQ4 .align {
	top: 11%;
	left: 10%;
}
#FAQ4 .align p {
	padding: 4% 10% 0 15%;
}
.FAQ .align h1 {
	color: #FFF;
	font-size: clamp(26px, 3vw, 45px);
}
.FAQ .align p {
	color: #000;
	font-size: clamp(1.313rem, 0.551rem + 1.62vw, 2.5rem);
	padding: 6% 0 0 70px;
}
.FAQ_bottom {
	background: url(../images/FAQ_bottom.png) no-repeat center;
	height: 207px;
}

/* ---------- まずはお電話下さい!! ---------- */
.contact {
	max-width: 1380px;
	width: 95%;
	margin: -100px auto 0 auto;
	position: relative;
}
.contact .align {
	position: absolute;
	top: 0;
	width: 100%;
}
.contact h1 {
	max-width: 1230px;
	margin: auto;
	text-align: right;
	font-size: clamp(1.375rem, 0.574rem + 1.71vw, 2.625rem);
	color: #0078E3;
	padding: 8% 0 1% 0;
}
.contact h2 {
	text-align: center;
	font-size: clamp(50px, 6.5vw, 102px);
	line-height: 2.3ex;
}
.contact h3 {
	text-align: center;
	color: #FF5A24;
	font-size: clamp(25px, 3vw, 50px);
	max-width: 1015px;
	width: 75%;
	margin: auto;
	border-top: #FF5A24 solid 4px;
	border-bottom: #FF5A24 solid 4px;
}
.contact_tel {
	max-width: 1160px;
	width: 85%;
	margin: auto;
	padding: 8% 1% 0 14%;
}
#contact_btn {
	max-width: 1250px;
	width: 90%;
	margin: 0 auto;
}
#contact_btn a {
	max-width: 599px;
	margin: 10px 1%;
}

/* ---------- フッター ---------- */
footer h1 {
	font-size: clamp(24px, 3vw, 44px);
	text-align: center;
	color: #000;
	background: #FFFF00;
	padding: 20px 0 10px 0;
}
footer h1 i {
	color: #0078E2;
	font-style: normal;
}
footer nav {
	background: #0078E2;
}
footer nav ul {
	width: 315px;
	margin: auto;
	list-style-type: none;
	padding: 30px 0 20px 0;
	align-items: flex-end;
}
footer nav ul li {
	color: white;
	font-size: 35px;
	height: 45px;
	line-height: 2ex;
}
footer nav ul li a {
	color: white;
	font-size: 35px;
}
footer nav ul li a:hover {
	color: #FFFF00;
}
footer .copyright {
	color: #383838;
	font-size: 22px;
	text-align: center;
	padding: 15px 0 10px 0;
	font-weight: lighter;
}

/* ---------- バナー ---------- */
.position_sticky {
	margin-top: -600px;
	z-index: 2000;
	position: sticky;
	bottom: 0;
	lef: 0;
	width: 230px;
	display: none;
}
.position_sticky .align {
	flex-wrap: wrap;
	padding: 10px 15px;
}
.position_sticky_smartphone {
	z-index: 2000;
	position: sticky;
	bottom: 0;
	padding: 0;
	line-height: 0;
	margin-top: 600px;
	width: 100%;
	display: none;
}
.position_sticky_smartphone a{
	width: 100%;
}
@media screen and (max-width: 900px){
	.position_sticky .align {
		display: none;
	}
	.position_sticky_smartphone {
		display: flex;
	}
	.position_sticky_smartphone a {
		line-height: 0;
	}
}

.display_tel{
	display: none;	
}
.position_tel_bottm{
	z-index: 2000;
	position: fixed;
	bottom: 0;
	margin-top: 600px;
	width: 100%;
	min-width: 750px;
}
.position_sticky_smartphone_t{
	display: flex;
	justify-content: center;
	align-items: center;
}
.position_sticky_smartphone_t a{
	line-height: 0;
	width: 100%;
}

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

/*-- 使い捨てスリッパ --*/
.slippers img{
	width: 90%;
	max-width: 1300px;
	margin:30px 0;	
}

/* 対応エリア */
.taioueria_tuika .taioueria_blue {
	background: #2CB1FF;
	color: white;
	text-align: center;
	font-size: 60px;
	font-weight: bold;
	font-family: "FOT-スーラ Pro EB";
	padding: 25px 0 20px 0;
}
.taioueria_tuika .taioueria_orange {
	text-align: center;
	font-size: 35px;
	font-weight: bold;
	color: white;
	background-color: #FF6A00;
	border: #39B14A 4px solid;
	width: 90%;
	max-width: 1020px;
	margin: 0 auto 20px auto;
	padding: 10px 0 5px 0;
}
.taioueria_tuika .taioueria_orange span{
	font-size:clamp(1.75rem, 1.021rem + 1.56vw, 2.188rem);
}
.taioueria_tuika .setumei_p{
	font-size:clamp(1.188rem, 0.146rem + 2.22vw, 1.813rem);
	font-weight:bold;
	text-align:center;
	
}
.taioueria_tuika .taioueria {
	display: flex;
	justify-content: space-between;
	max-width: 1030px;
	width: 100%;
	margin: 20px auto 0 auto;
	background-color: #fff;
}
.taioueria_tuika .taioueria_map_kanto {
	background: url(../images/Taioueria_map_kanto.png) no-repeat;
	background-position: center;
	background-size:contain;
	width: 480px;
	height: 524px;
}
.taioueria_tuika .taioueria_map_kanto p {
	font-size: 30px;
	font-weight: bold;
	color: white;
	text-align: center;
	margin-top: 15px;
}
.taioueria_tuika .taioueria .blue_circle {
	background: url(../images/Taioueria_blue_circle.jpg) no-repeat;
	background-size: cover;
	width: 211px;
	height: 211px;
	padding-top: 65px;
	font-size: 24px;
	font-weight: bold;
	color: white;
	text-align: center;
	text-shadow: #0060B7 0 0 8px;
	line-height: 2ex;
}
.taioueria_tuika .taioueria .blue_circle b {
	font-size: 35px;
	line-height: 2.2ex;
}
.taioueria_tuika .taioueria .bathtub {
	background: url(../images/Taioueria_bathtub.jpg) no-repeat;
	width: 550px;
	height: 317px;
}
.taioueria_tuika .taioueria .bathtub p {
	color: white;
	font-size: 35px;
	font-weight: bold;
	text-align: center;
	width: 280px;
	padding-top: 80px;
	line-height: 2.3ex;
	margin: 0;
}
.taioueria_tuika .taioueria .bathtub p b {
	font-size: 42px;
	color: #FFFF00;
}

/*--------- 追加 ----------*/
.taioueria_tuika .tuika_taiouflex{
	margin: 20px auto 20px auto;
	display: flex;
	justify-content: center;
	align-items: center;
}
.taioueria_tuika .tuika_taiouflex .basyo{
	min-width: 270px;
	height: 100px;
	border: solid 8px #2CB1FF;
	border-radius: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color:  #FFFF00;
	margin: 10px;
}

.taioueria_tuika .tuika_taiouflex .basyo p{
	font-size: 25px;
	font-weight: bold;
	text-align: center;	
}

.taioueria_tuika .tuika_taiou{
	font-size: 30px;
	font-weight: bold;
	text-align: center;	
	border-bottom: #2CB1FF solid 5px;
	width: 700px;
	margin: auto;
}

@media screen and (max-width: 1100px){
	.taioueria_tuika .taioueria {
		flex-flow: column;
		justify-content: center;
		align-items: center;
		
	}
}
@media screen and (max-width: 1200px){
	.taioueria_tuika .tuika_taiouflex{
	margin: 20px auto 20px auto;
	display: flex;
		flex-flow: column;
	justify-content: center;
	align-items: center;	
	}
}