@charset "UTF-8";
/*-----------------------------------
	root
-----------------------------------*/
/*-----------------------------------
	base
-----------------------------------*/
html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-size: 62.5%; /*10px*/
  height: 100%;
  /*overflow-x: hidden;
  overflow-y: auto;*/
}
body {
  letter-spacing: 0.03em;
  color: #000;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  background: #FFF;
  width: 100%;
  padding: 0;
  margin: 0;
 /* overflow-x: hidden;*/
  position: relative;
  z-index: 999;
  font-family: "Noto Sans JP", sans-serif;
}
.contents_inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
a, a:link, a:visited {
  display: block;
  text-decoration: none;
  color: #000;
  transition: 0.3s;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}
a[href^='tel:'] {
  pointer-events: none;
}
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
/* device */
.pc {
  display: block!important;
}
.sp {
  display: none!important;
}
/* flexbox */
.row_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.f_Serif{
	font-family: "Noto Serif", serif;
}
.en{
	font-family: "M PLUS 1p", sans-serif;
}
.en_2{
	font-family: "din-2014", sans-serif;
}
.en_3{
	font-family: "Barlow", sans-serif;
}
.txt_shadow{
	text-shadow: 4px 4px 4px rgba(23, 40, 75, 0.65);
}
.fc_ore{
	color: #ef8100;
}

@media screen and (max-width: 840px) {
	body {
		font-size: 14px;
	}
  a[href^='tel:'] {
    pointer-events: auto;
  }
	.pc {
		display: none!important;
	}
	.sp {
		display: block!important;
	}	
}
/*-----------------------------------

	header

-----------------------------------*/
header {
  width: 100vw;
  margin: auto;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 0 0 0 100px!important;
  align-items: center;
  background: #FFF;
}
header .hd_logo {
  width: 345px;
}

header .right_wrap{
	align-items: center;
	width: calc(100% - 345px);
}
header .right_wrap .pc_nav{
	width: calc(100% - 120px);
	margin-left: 0;
	justify-content: space-between;
	padding-left: 180px;
}
header .right_wrap .pc_nav .pc_nav_list{
	align-items: center;
	font-size: 22px;
	font-weight: 700;
	gap: 50px;
}
header .right_wrap .pc_nav .pc_nav_list a{
	transition: 0.3s;
}
header .right_wrap .pc_nav .pc_nav_list a:hover{
	opacity: 1;
	color: #ef8100;
}

/*header .contact {
  overflow: hidden;
  position: relative;
}*/
header .contact a {
  display: block;
  width: 120px;
  height: 120px;
  line-height: 120px;
  background: #ef8100;
  color: #FFF;
  font-weight: 700;
  text-align: center;
  font-size: 18px;
}

/*header .hd_btn_box{
	justify-content: flex-end!important;
}*/

@media screen and (max-width: 1450px) {
	header .right_wrap .pc_nav{
		padding-left: 50px;
	}
	header .right_wrap .pc_nav .pc_nav_list{
		gap: 20px;
	}
}
@media screen and (max-width: 1200px) {
	header{
		padding: 0 0 0 40px;
	}
	header .right_wrap .pc_nav .pc_nav_list{
		font-size: 17px;
	}
}
@media screen and (max-width: 1070px) {
	header .right_wrap{
		justify-content: flex-end;
	}
	header .right_wrap .pc_nav{
		display: none;
	}
}
@media screen and (max-width: 840px) {
	header{
		padding: 0 0 0 40px!important;
	}
	header .hd_logo{
		width: 318px;
	}
	header .right_wrap{
		width: auto;
	}
}
@media screen and (max-width: 500px) {
	header{
		padding: 0 0 0 20px!important;
	}
	header .hd_logo{
		width: 240px;
	}
}


/*****hamburger menu*****/

/*btn_container*/
  header .btn_container {
    display: block;
    background: #f4f4f4;
    width: 120px;
    height: 120px;
    position: relative;
    transition: opacity 0.3s;
    z-index: 1000;
    cursor: pointer;
  }
  header .btn_container .btn_wrapper {
    width: 50px;
    height: 40px;
    position: absolute;
    top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
  }
  header .btn_container .btn_wrapper span {
    display: block;
    background: #000;
    width: 100%;
    height: 4px;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.3s;
    cursor: pointer;
  }
  header .btn_container .btn_wrapper span.ct {
    bottom: 0;
  }
  header .btn_container .btn_wrapper span.bm {
    top: auto;
    bottom: 0;
  }
  header .btn_container.active .btn_wrapper .tp {
    top: 7px;
    transform: translateY(11px) translateX(0) rotate(45deg);
  }
  header .btn_container.active .btn_wrapper .ct {
    opacity: 0;
  }
  header .btn_container.active .btn_wrapper .bm {
    top: 2px;
    transform: translateY(-1px) translateX(0) rotate(-45deg);
  }
  header .overlay {
    display: block;
    background: #FFFFFF;
    width: 100vw;
    min-height: 100svh;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    overflow: auto;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 998;
    transition: opacity 0.3s, visibility 0.3s;
  }
  header .overlay.open {
    opacity: 1;
    visibility: visible;
  }
  header .overlay .overlay_menu {
    width: calc(100% - 90px);
    padding-bottom: 50px;
    margin: auto;
    position: relative;
    top: 135px;
    left: 0;
    right: 0;
  }

/*global_menu*/
header .global_menu{
    padding: 150px 0 50px;
	background: #f7f7f7;
}
header .global_menu .spmenu_ttl{
	max-width: 217px;
	width: 90%;
	margin: 0 auto 30px;
}

/*main_menu*/
header .main_menu{
	max-width: 640px;
    width: 100%;
    margin: 0 auto 50px;
	gap: 0 20px;
}
header .main_menu li{
	width: calc((100% - 20px) / 2);
}
header .main_menu li a{
    width: 100%;
	padding: 12px 30px 12px 0;
    position: relative;
	font-size: 26px;
	font-weight: 600;
	border-bottom: 1px solid #ef8100;
	transition: 0.3s;
}
header .main_menu li a:hover{
	color: #ef8100;
	opacity: 1;
}
header .main_menu li a::before{
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	width: 24px;
	height: 24px;
	background: url("../img/common/spmenu_arrow.svg")no-repeat center/contain;
}
header .contact_box{
	max-width: 640px;
    width: 100%;
    margin: 0 auto;
}
header .contact_box .contact_ttl{
	max-width: 320px;
	width: 100%;
	margin: auto;
	text-align: center;
	font-size: 20px;
	font-weight: 900;
	background: #007451;
	color: #fff;
	border-radius: 50px;
	position: relative;
	z-index: 1;
	padding: 10px 0;
}
header .contact_box .contact_ttl::before{
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -20px;
	margin: auto;
	background: #007451;
	width: 40px;
	height: 40px;
	transform: rotate(45deg);
	z-index: -1;
}
header .contact_box .tel_box{
	margin: 40px 0 0;
}
header .contact_box .tel_box .store_name{
	font-size: 18px;
	font-weight: 600;
	padding-left: 18px;
	position: relative;
}
header .contact_box .tel_box .store_name::before,
header .contact_box .tel_box .store_name::after{
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
}
header .contact_box .tel_box .store_name::before{
	background: url("../img/common/spmenu_list.svg")no-repeat center/contain;
	width: 15px;
	height: 15px;
	left: 0;
}
header .contact_box .tel_box .store_name::after{
	background: #007451;
	height: 1px;
	right: 0;
	width: 50%;
}
header .contact_box .tel_box .tel{
	font-size: 34px;
	font-weight: 600;
}
header .contact_box .tel_box .tel a{
	display: inline-block;
}
header .sp_logo_box{
	margin: 35px auto 0;
	max-width: 280px;
	width: 90%;
}

@media screen and (max-width: 1000px) {
}

@media screen and (max-width: 840px){
	/*btn_container*/
    header .btn_container{
		width: 80px;
		height: 80px;
	}
	header .btn_container .btn_wrapper{
		width: 33px;
		height: 33px;
	}
	header .btn_container.active .btn_wrapper .tp{
		top: 5px;
	}
	header .btn_container.active .btn_wrapper .bm{
		top: 5px;
	}
	
	/*global_menu*/
	header .global_menu{
		padding: 45px 0 50px;
	}
	
	header .main_menu,
	header .contact_box{
		max-width: 320px;
	}
	header .main_menu li{
		width: 100%;
	}
	header .contact_box .tel_box{
		width: 100%;
	}
	header .contact_box .tel_box:first-of-type .store_name::after{
		width: 202px;
	}
	header .contact_box .tel_box:last-child .store_name::after{
		width: 220px;
	}
}
@media screen and (max-width: 390px){
	header .global_menu .spmenu_ttl{
		max-width: 200px;
	}
}

/*-----------------------------------

	contents

-----------------------------------*/
#fixd_menu{
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 2;
	
	opacity: 0;               /* 初期状態は非表示 */
  	transform: translateY(20px); /* 少し上にずらす */
  	transition: opacity 0.5s ease, transform 0.5s ease;
  	pointer-events: none;     /* 非表示時はクリック不可 */
}
#fixd_menu.show{
	opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
#fixd_menu a{
	background: #ef8100;
	padding: 20px 30px;
	border-radius: 15px;
	font-size: 20px;
    text-align: center;
    color: #fff;
    font-weight: 700;
}
#fixd_menu img{
	display: block;
	max-width: 180px;
	margin: auto;
}

@media screen and (max-width: 840px){
	#fixd_menu{
		right: 0;
		left: 0;
		bottom: 0;
		margin: auto;
	}
	#fixd_menu a{
		border-radius:0;
		padding: 15px;		
	}
	#fixd_menu img{
		max-width: 150px;
	}
}

/*-----------------------------------

	pagetop

-----------------------------------*/
#pagetop{
    position: fixed;
    right: 20px;
    bottom: 50px;
    cursor: pointer;
    z-index: 999;
    width: 40px;
    height: 40px;
    background: #1D9BDC;
    border-radius: 50%;
    display: none;
}
#pagetop::after {
    content: "";
    width: 12px;
    height: 12px;
    border-top: 2px solid #FFF;
    border-right: 2px solid #FFF;
    position: absolute;
    top: 17px;
    left: 14px;
    transform: rotate(-45deg);
}
@media screen and (max-width: 640px) {
  #pagetop{
    right: 10px;
    bottom: 60px;
    width: 36px;
    height: 36px;
  }
  #pagetop::after {
      width: 10px;
      height: 10px;
      top: 15px;
      left: 13.5px;
  }
}
/*-----------------------------------

	footer

-----------------------------------*/
footer{
}
footer .contact_box{
	background: url("../img/common/contact_bg.png")no-repeat center/cover;
	padding: 80px 0 55px;
}
footer .kdw_logo{
	margin: 0 auto 30px;
}
footer .footer_ttl{
	display: block;
	max-width: 566px;
	width: 100%;
	margin: 0 auto 30px;
}
footer .contact_ttl{
	max-width: 566px;
	width: 100%;
	margin: 0 auto 50px;
	text-align: center;
	font-size: 26px;
	font-weight: 900;
	color: #205281;
	background: #fff;
	border-radius: 50px;
	padding: 5px 0;
}
footer .address_box{
	gap: 70px;
}
footer .address_box .address{
	gap: 20px;
	align-items: stretch;
	justify-content: flex-start;
	width: calc((100% - 70px) /2);
	color: #fff;
	line-height: 1.3;
}
footer .address_box .address .office_name{
	text-align: center;
	background: #fff;
	width: 104px;
	height: 104px;
	color: #231815;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 700;
}
footer .address_box .address .txt .zip{
	font-size: 24px;
	font-weight: 500;
	line-height: 1;
}
footer .address_box .address .txt .add{
	font-size: 24px;
	margin: 0 0 20px;
	font-weight: 600;
}
footer .address_box .address .txt .tel{
	font-size: 34px;
	color: #fff;
	font-weight: 700;
}
footer .address_box .address .txt .tel a{
	color: #fff;
	display: inline-block;
	transition: 0.3s;
}
footer .address_box .address .txt .tel a:hover{
	text-decoration: underline;
}
footer .address_box .address .txt .fax{
	font-size: 24px;
	font-weight: 700;
	color: #fff;
}
footer .ft_logo_box{
	background: #f7f7f7;
	padding: 100px 0;
	text-align: center;
}
footer .ft_logo_box a{
	display: inline-block;
	max-width: 345px;
	width: 80%;
	margin: auto;
}

@media screen and (max-width: 1300px) {
	footer .address_box{
		gap: 20px;
	}
	footer .address_box .address{
		width: calc((100% - 20px) / 2);
	}
	footer .address_box .address .txt .zip{
		font-size: 20px;
	}
	footer .address_box .address .txt .add{
		font-size: 16px;
		margin: 0 0 10px;
	}
	footer .address_box .address .txt .fax{
		font-size: 21px;
	}
}
@media screen and (max-width: 960px) {
	footer .contact_box{
		padding: 40px 0 20px;
	}
	footer .address_box{
		flex-direction: column;
	}
	footer .footer_ttl{
		margin: 0 auto 15px;
	}
	footer .footer_ttl,
	footer .contact_ttl{
		max-width: 440px;
	}
	footer .address_box .address{
		max-width: 440px;
		width: 100%;
		margin: auto;
	}
}
@media screen and (max-width: 840px) {
	footer .ft_logo_box{
		padding: 70px 0 75px;
	}
	footer .kdw_logo{
		margin: 0 auto 10px;
	}
}
@media screen and (max-width: 500px) {
	footer .contact_ttl{
		font-size: 21px;
		margin: 0 auto 40px;
	}
	footer .address_box .address{
		gap: 15px;
		max-width: 340px;
	}
	footer .address_box .address .office_name{
		width: 70px;
        height: 70px;
		font-size: 14px;
	}
	footer .address_box .address .txt .zip{
		font-size: 16px;
	}
	footer .address_box .address .txt .add{
		font-size: 14px;
	}
	footer .address_box .address .txt .tel{
		font-size: 26px;
	}
	
	footer .ft_logo_box{
		padding: 50px 0 90px;
	}
}
