@charset "UTF-8";

@import url('https://fonts.googleapis.com/css?family=Noto+Serif+JP:400,700&display=swap');

/*-----------------------------------

	base

-----------------------------------*/
html {
    overflow-y: auto;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-size: 62.5%;
	overflow-x: hidden;
}
body {
    font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 14px;
    font-size: 1.4em;
	color: #333333;
    line-height: 1.8em;
	letter-spacing:0.05em;
	font-weight: 400;
	background: #fff;
	margin:0 !important;
	width: 100%;
	overflow: hidden;
	box-sizing: border-box;
}
*, *: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;
}
.contents_inner{
	width: 1000px;
	margin: 0 auto;
}
img {
    max-width: 100%;
    height: auto;
}
a, a:link, a:visited {
    color: #333333;
	text-decoration:none;
    cursor: pointer;
}
a:hover {
	color:#a57d55;
	text-decoration:none;
}
.sp{
	display:none;
}
.pc{
	display:block;
}
@media screen and (max-width: 1000px) {
	.contents_inner{
		width: 95%;
		margin: 0 auto;
	}
}
@media screen and (max-width: 640px) {
	body {
		font-size: 12px;
		font-size: 1.2em;
		line-height: 1.6em;
		font-weight: normal;
		letter-spacing: 0.05rem;
	}
	.pc{
		display:none;
	}
	.sp{
		display:block;
	}
}

/*-----------------------------------

	clearfix

-----------------------------------*/
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.clearfix {
    display: inline-block;
}
* html .clearfix {
    height: 1%;
}
.clearfix {
    display: block;
}
/*-----------------------------------

	header

-----------------------------------*/
header {
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    width: 100%;
    z-index: 999;
    border-bottom: 5px solid #c59b6d;
}
header .contents_inner{
    height: 100px;
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    -webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
    -webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
header h1 {
    width: 340px;
    display: block;
}
header h1 a{
}
header nav {
    display: block;
}
header nav ul li{
    float: left;
}
header nav ul li a{
    padding: 0 15px;
    font-family: 'Noto Serif JP', serif;
}
@media screen and (max-width: 1000px) {
    header nav ul li a{
        font-size: 1vw;
    }
}
@media screen and (max-width: 840px) {
    header .contents_inner{
        height: 60px;
    }
    header h1 {
        width: 50%;
        display: block;
    }
    .menu_btn_wrap {
		width: 60px;
		height: 60px;
		cursor:pointer;
		background: #a57d55;
		position: absolute;
		top: 0;
		right: 0;
		z-index: 999;
	}
	.menu_btn {
		width: 30px;
		height: 25px;
		display: block;
		position: absolute;
		top: 16px;
		right: 14px;
		background: #fff;
		border-top: 12px solid #a57d55;
		border-bottom: 10px solid #a57d55;
		box-sizing: border-box;
		-moz-transition: all 0.3s;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
		z-index:999;
	}
	.menu_btn:before {
		content:'';
		position:absolute;
		width: 30px;
		height: 3px;
		background: #fff;
		top:-9px;
		-moz-transition:all 0.3s;
		-webkit-transition:all 0.3s;
		transition:all 0.3s;
	}
	.menu_btn:after {
		content:'';
		position:absolute;
		width: 30px;
		height: 3px;
		background: #fff;
		bottom:-9px;
		-moz-transition:all 0.3s;
		-webkit-transition:all 0.3s;
		transition:all 0.3s;
	}
	.menu_btn.active {
		background:#a57d55;
	}
	.menu_btn.active:before{
		-moz-transform:rotate(-135deg);
		-webkit-transform:rotate(-135deg);
		transform:rotate(-135deg);
		top:0;
		right:0;
	}
	.menu_btn.active:after {
		-moz-transform:rotate(135deg);
		-webkit-transform:rotate(135deg);
		transform:rotate(135deg);
		bottom:0;
		right:0;
	}
}
@media screen and (max-width: 640px) {
}
/*-----------------------------------

	nav

-----------------------------------*/
#nav_sp{
	display:none;
}
@media screen and (max-width: 840px) {
	#nav_pc{
		display:none;
	}
	#nav_sp{
		width: 100%;
		height: 100%;
		overflow: auto;
		-webkit-overflow-scrolling: touch;
		background: #a57d55;
		position: fixed;
		top:60px;
		right: -100%;
		padding: 20px 2.5% 0;
		display:inline-block;
		z-index: 999;
		box-sizing: border-box;
		-webkit-overflow-scrolling: touch;
		transition: 0.3s;
		-webkit-transition: 0.3s;
		-moz-transition: 0.3s;
		-o-transition: 0.3s;
		-ms-transition: 0.3s;
	}
	#nav_sp a{
		color:#fff;
	}
	#nav_sp.toggle{
		right: 0 !important;
	}
	#nav_sp_menu li{
		border-bottom: solid 1px #fff;
	}
	#nav_sp_menu li a{
		font-size: 15px;
		display:block;
		padding: 10px 2.5%;
		position: relative;
	}
	#nav_sp_menu li a.arrow:after {
    	font-size: 13px;
		top: 25%;
	}
	#nav_sp_menu li a:hover{
		background:#a57d55;
	}
	#nav_sp_menu li ul li:last-child{
		border-bottom:none;
	}
	#nav_sp_menu li ul li:first-child{
		border-top:1px solid #fff;
		margin-top: 8px;
	}
}

/*-----------------------------------

	mainvisual

-----------------------------------*/
#mainvisual {
    margin-top: 100px;
    border-top: 5px solid #c59b6d;
    border-bottom: 5px solid #c59b6d;
    position: relative;
    z-index: 99;
}
#mainvisual img{
    width: 100%;
}
@media screen and (max-width: 840px) {
    #mainvisual {
        margin-top: 60px;
    }
    #mainvisual img{
        width: 100%;
        height: 43vw;
        object-fit: cover;
    }
}
/*-----------------------------------

	contents

-----------------------------------*/
section {
    background: url(../img/contents_bg.png) no-repeat;
    background-position: right bottom;
    padding: 170px 0 70px;
    margin-top: -100px;
    text-align: center;
}
section h2 {
    font-size: 24px;
    letter-spacing: 0.2em;
    display:inline-block;
    position: relative;
    margin-bottom: 50px;
    font-family: 'Noto Serif JP', serif;
}
section h2::before{
    content: url(../img/title_bg_l.png);
    margin-right: 30px;
    position: absolute;
    left: -70px;
    top: -20px;
}
section h2::after{
    content: url(../img/title_bg_r.png);
    margin-left: 30px;
    position: absolute;
    right: -70px;
    top: -20px;
}
section h3 {
    background: #dbc2ad; /* Old browsers */
    background: url(../img/title_h3_bg.png) no-repeat, -moz-linear-gradient(0deg, rgba(197,155,109,1) 0%, rgba(219,194,173,1) 100%);
    background: url(../img/title_h3_bg.png) no-repeat, -webkit-linear-gradient(0deg, rgba(197,155,109,1) 0%, rgba(219,194,173,1) 100%);
    background: url(../img/title_h3_bg.png) no-repeat, linear-gradient(0deg, rgba(197,155,109,1) 0%, rgba(219,194,173,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#c59b6d",endColorstr="#dbc2ad",GradientType=1);
    font-size: 18px;
    letter-spacing: 0.2em;
    padding: 10px 30px;
    text-align: left;
    font-family: 'Noto Serif JP', serif;
    overflow: hidden;
    background-position: 101% center;
    position: relative;
    margin-bottom: 30px;
}
section h3::before {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 10px;
    margin: auto;
    width: 10px;
    height: 30px;
    background: #fff;
}
section h4 {
    font-size: 21px;
    border-bottom: 3px solid #c59b6d;
    line-height: 1;
    padding-bottom: 5px;
    position: relative;
    font-family: 'Noto Serif JP', serif;
    margin-bottom: 30px;
}
section h4::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -7px;
    left: 0;
    background: #c59b6d;
}
section h5 {
    font-size: 18px;
    color: #ad1212;
    font-family: 'Noto Serif JP', serif;
    margin-bottom: 20px;
}
section .copy {
    font-size: 24px;
    font-family: 'Noto Serif JP', serif;
    font-weight: 700;
    color: #a57d55;
    line-height: 1.6;
    margin-bottom: 30px;
}
section .red {
    color: #ad1212;
}
section .blue {
    color: #1515af;
}
@media screen and (max-width: 640px) {
    section {
        padding: 110px 0 50px;
        margin-top: -60px;
    }
    section h2 {
        font-size: 18px;
        margin-bottom: 40px;
    }
    section h2::before{
        left: -50px;
    }
    section h2::after{
        right: -50px;
    }
    section h3 {
        margin-bottom: 20px;
    }
    section h4 {
        font-size: 16px;
        margin-bottom: 20px;
    }
    section h5 {
        font-size: 14px;
    }
    section .copy {
        font-size: 16px;
        margin-bottom: 20px;
    }
}
/*-- greeting_block --*/
#greeting_block {
}
#greeting_block ul{
    text-align: left;
    padding: 30px 70px;
    border: 1px solid #f8e3b8;
    display: inline-block;
    margin: 30px 0;
    background: #fff;
    background-image: url(../img/decoration_bg_lt.png),url(../img/decoration_bg_rt.png),url(../img/decoration_bg_lb.png),url(../img/decoration_bg_rb.png);
    background-position: left top,right top,left bottom, right bottom;
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
}
#greeting_block ul li{
    font-size: 18px;
    letter-spacing: 0.1em;
    line-height: 1.8;
    font-family: 'Noto Serif JP', serif;
    counter-increment: greeting;
    margin-left: 1em;
    text-indent: -1em;
}
#greeting_block ul li::before{
    content: counter(greeting)'.';
}
@media screen and (max-width: 840px) {
    #greeting_block ul{
        padding: 20px 30px;
    }
    #greeting_block ul li{
        font-size: 14px;
    }
}
/*-- original_block --*/
#original_block {
}
#original_block p {
    margin-bottom: 30px;
}
#original_block .wrap_pink {
    background: #ffe4e1;
    border: 2px solid #fff;
    padding: 35px;
    box-shadow:0px 0px 0px 1px #ffe4e1;
    width: 96%;
    margin: 0 auto 50px;
    text-align: left;
}
#original_block .wrap_pink .effect{
    background: #fff;
    padding: 30px;
}
#original_block .wrap_pink .effect h5{
    margin-bottom: 10px;
}
#original_block .wrap_pink .effect ul li{
    float: left;
    list-style-type: decimal;
    list-style-position: inside;
    margin-right: 40px;
    font-size: 18px;
    font-family: 'Noto Serif JP', serif;
}
#original_block .wrap {
    text-align: left;
    padding-bottom: 30px;
}
#original_block .wrap .box{
    padding-bottom: 30px;
}
#original_block .wrap .box .left{
    width: 23%;
    text-align: center;
}
#original_block .wrap .box .left span{
    display: block;
    letter-spacing: 0;
}
#original_block .wrap .box .right{
    width: 77%;
}
#original_block .wrap .box .right ul{
    margin-bottom: 20px;
}
#original_block .wrap .box .right ul li{
    list-style: square inside;
    margin-left: 1.5em;
    text-indent: -1.5em;
}
#original_block .wrap .box .right h5{
    margin-bottom: 10px;
}
#original_block .wrap .box .right a {
    background: #c59b6d;
    padding: 15px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Noto Serif JP', serif;
    display: inline-block;
}
#original_block .wrap .box .right .subbox .left{
    width: auto;
    margin-right: 20px;
}
#original_block .wrap_pink .clearfix {
    margin-bottom: 20px;
}
#original_block .wrap_pink .right {
    margin-left: 20px;
}
#original_block .wrap_pink .effectimg{
    display: block;
    margin: 0 auto;
}
#original_block .wrap .box ul.list{
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    -ms-flex-wrap: wrap;
  	flex-wrap: wrap;
}
#original_block .wrap .box ul.list li{
    width: 25%;
    display: block;
    text-align: center;
    margin-bottom: 30px;
}
#original_block .wrap .box ul.list li img{
    display: block;
    margin: 0 auto;
    width: 80%;
    height: 100px;
    object-fit: contain;
}
#original_block .wrap .box ul.list li h5{
    margin-bottom: 0;
}
#original_block .wrap .box2 {
    margin: 0 auto 30px;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
    -webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
#original_block .wrap .box2 img{
    margin-right: 20px;
}
#original_block .wrap .box2 div h5{
    margin-bottom: 0;
}
#original_block .wrap .box3 {
    text-align: center;
    margin-bottom: 30px;
}
#original_block .wrap .box3 dl {
    font-family: 'Noto Serif JP', serif;
    font-size: 18px;
    display: inline-block;
    text-align: left;
    padding-left: 1em;
}
#original_block .wrap .box3 dl dt{
    color: #ad1212;
    font-weight: 700;
}
#original_block .wrap .box3 dl dt{
    text-indent: -1em;
}
@media screen and (max-width: 840px) {
    #original_block .wrap .box ul.list li{
        width: 33.3%;
    }
}
@media screen and (max-width: 640px) {
    #original_block p {
        margin-bottom: 20px;
    }
    #original_block .wrap_pink {
        padding: 20px;
    }
    #original_block .wrap_pink .effect{
        padding: 15px;
    }
    #original_block .wrap_pink .effect ul li{
        font-size: 14px;
    }
    #original_block .wrap .box .left,
    #original_block .wrap .box .right{
        float: none !important;
        width: 100%;
        margin-bottom: 20px;
    }
    #original_block .wrap .box .right .subbox .left{
        display: block;
        margin: 0 auto 10px;
    }
    #original_block .wrap_pink .right {
        float: none !important;
        display: block;
        margin: 0 auto 20px;
    }
    #original_block .wrap .box ul.list li{
        width: 50%;
    }
    #original_block .wrap .box2 {
        -webkit-box-orient: vertical;
      	-webkit-box-direction: normal;
      	-ms-flex-direction: column;
      	flex-direction: column;
        margin-bottom: 0;
    }
    #original_block .wrap .box2 img{
        margin-right: 0;
    }
    #original_block .wrap .box3 dl {
        font-size: 14px;
    }
}
/*-- oem_block --*/
#oem_block{
}
#oem_block ul{
    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;
}
#oem_block ul li{
    width: 31%;
    text-align: left;
    margin-bottom: 20px;
}
#oem_block ul li h5{
    margin-bottom: 5px;
}
#oem_block ul li img{
    width: 100%;
    margin-bottom: 10px;
}
#oem_block ul li p{
    line-height: 1.2;
}
@media screen and (max-width: 640px) {
    #oem_block ul li{
        width: 48%;
    }
}
/*-- shipping_block --*/
#shipping_block {
    position: relative;
    z-index: -1;
}
#shipping_block .box{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
    -webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
#shipping_block .box p{
    text-align: left;
    font-size: 18px;
    width: 58%;
}
#shipping_block .box img{
    width: 40%;
}
@media screen and (max-width: 640px) {
    #shipping_block .box{
        -webkit-box-orient: vertical;
      	-webkit-box-direction: normal;
      	-ms-flex-direction: column;
      	flex-direction: column;
    }
    #shipping_block .box p{
        width: 100%;
        margin-bottom: 20px;
        font-size: 14px;
    }
    #shipping_block .box img{
        width: 100%;
    }
}
/*-- company_block --*/
#company_block {
    position: relative;
    z-index: -2;
    background: -moz-linear-gradient(0deg, rgba(244,234,217,1) 0%, rgba(255,255,255,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(244,234,217,1) 0%, rgba(255,255,255,1) 100%);
    background: linear-gradient(0deg, rgba(244,234,217,1) 0%, rgba(255,255,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f4ead9",endColorstr="#ffffff",GradientType=1);
}
#company_block .wrap {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
#company_block .wrap .box{
    width: 48%;
    text-align: left;
    padding: 30px;
    border: 1px solid #f8e3b8;
    background: #fff;
    background-image: url(../img/decoration_bg_lt.png),url(../img/decoration_bg_rt.png),url(../img/decoration_bg_lb.png),url(../img/decoration_bg_rb.png);
    background-position: left top,right top,left bottom, right bottom;
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
    font-size: 16px;
    font-family: 'Noto Serif JP', serif;
}
#company_block .wrap .box dl dt{
    width: 5em;
    float: left;
    display: block;
    clear: both;
}
#company_block .wrap .box dl dd{
    padding-left: 5em;
    display: block;
}
#company_block .wrap .box:nth-child(2) dl dt{
    width: 8em;
    float: left;
    display: block;
    clear: both;
    letter-spacing: 0;
}
#company_block .wrap .box:nth-child(2) dl dd{
    padding-left: 8em;
    display: block;
    letter-spacing: 0;
}
@media screen and (max-width: 840px) {
    #company_block .wrap{
        -webkit-box-orient: vertical;
      	-webkit-box-direction: normal;
      	-ms-flex-direction: column;
      	flex-direction: column;
    }
    #company_block .wrap .box{
        width: 100%;
        margin-bottom: 20px;
        font-size: 14px;
        letter-spacing: 0;
    }
}
/*-----------------------------------

	pagetop

-----------------------------------*/
#pagetop{
    position: fixed;
    right: 20px;
    bottom: 100px;
    cursor: pointer;
    z-index: 999;
    width: 80px;
    height: 80px;
    background: #c59b6d;
    border-radius: 50%;
    transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
}
#pagetop:after{
    font-size: 40px;
	color:#fff;
    font-family: "Font Awesome 5 Free";
    content: '\f077';
    font-weight: bold;
	text-align: center;
    line-height: 80px;
    display: block;
}
#pagetop:hover:before{
    background: #c59b6d;
}
#pagetop_sp{
	display:none;
}
@media screen and (max-width: 640px) {
	#pagetop{
		display:none !important;
	}
	#pagetop_sp{
		height: 50px;
		background:#c59b6d;
		transition-duration: 0.3s;
		-moz-transition-duration: 0.3s;
		-ms-transition-duration: 0.3s;
		-o-transition-duration: 0.3s;
		-webkit-transition-duration: 0.3s;
		padding-top: 15px;
		cursor: pointer;
		display:block;
		box-sizing:border-box;
	}
	#pagetop_sp:hover{
		background:#c59b6d;
	}
	#pagetop_sp:after{
		font-size: 24px;
		color:#fff;
		font-family: "Font Awesome 5 Free";
		content: '\f077';
		font-weight: bold;
		text-align: center;
		display: block;
		transition-duration: 0.3s;
		-moz-transition-duration: 0.3s;
		-ms-transition-duration: 0.3s;
		-o-transition-duration: 0.3s;
	}
}


/*-----------------------------------

	btn

-----------------------------------*/
.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

.btn-wrap-pc-sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  max-width: 435px;
  margin: 0 auto 20px;

  -webkit-box-pack: justify;

  -ms-flex-pack: justify;

  justify-content: space-between;
}

a.btn-pc-sp {
  line-height: 1.4;

  width: 49.5%;
  padding: 1.25rem 0;

  border-radius: 100vh;

  color: #ffff;
}

a.btn-pc-sp--contact {
  color: #fff;
  background: #d20010;
}

a.btn-pc-sp--tel {
  color: #fff;
  background: #094;
}

.fa-position-right {
  position: absolute;
  top: calc(50% - 0.5em);
  right: 1rem;
}


/*-----------------------------------

	footer

-----------------------------------*/
footer {
    text-align: center;
}
footer small {
    width: 100%;
    font-size: 16px;
    padding: 5px 0;
    color: #fff;
    background: #c59b6d;
    display: block;
}
@media screen and (max-width: 840px) {
}
@media screen and (max-width: 640px) {
}


