﻿/* all page */
/* color */
.txt_color_nomal{color: #3d3d3d;}
.txt_color1{color: #caa25a;} /* メインカラー */
.txt_color2{color: #ebf1ff} /* サブカラー */
.txt_color3{color: #b3b3b3} /* アクセントカラー1 */
.txt_color4{color: #f3f3f3} /* アクセントカラー2 */

/* background-color */
.bg_color1{background-color: #caa25a;} /* メインカラー */
.bg_color2{background-color: #f1e3cb;} /* サブカラー */
.bg_color3{background-color: #706143;} /* アクセントカラー1 */
.bg_color4{background-color: #f3f3f3} /* アクセントカラー2 */

/* border-color ※!important */
.border_color1{border-color: #caa25a;}
.border_color2{border-color: #ebf1ff}
.border_color3{border-color: #706143;}
.border_color4{border-color: #f3f3f3}

.linkStyle{
    color: #333;
    text-decoration: underline;
}

/* fonts */
header #header #main_menu li a, header #header #sub_menu li a, #sc_menu li a, .ec_link a span, #main_img #catch h2 span, #intro_title p, #intro_title h3, #intro .box h4, #contents_links .square_box a p, #contents_links .square_box a h4, #contents .contents_txt h3 span, #top_cms .top_cms_title p span, #top_cms .top_cms_title h3, #top_cms .more a span, #main_nav li a span, footer #copyright, #page_title, .cate_list li a, .cate_list li .cate_no, .cate_title, .sub_cate_title, #page10 .sub_title, #page10 .title, .box_title, .box_title1, a[href^="tel:"], a[href^="mailto:"], .pager li a {
    font-family: 'Noto Serif JP', "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho","ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", "serif";
}

/*ローディングアニメーション*/
.loader.logo::before, .loader.logo::after{
	background: none;
}
#loader {
    transition: cubic-bezier(0.09, 0.09, 0.72, 0.99) 1.5s;
	animation-delay: 5s;
}
.loader.logo{
	animation-delay: 0.01s;
}

.ring{
	width: 70px;
	position: absolute;
	bottom: 20px;
	left: 80px;
}
.pika{
	width: 80px;
	position: absolute;
	bottom: 90px;
	left: 40px;
	animation: pika 1.3s cubic-bezier(0.47, 0, 0.75, 0.72) infinite;
	animation-delay: 0.01s;
	opacity: 0;
}
@keyframes pika {
  0%, 40%, 60%, 100% {
	  transform: translateY(10px) scale(0.8);
	  opacity: 0;
  }
  50%, 70% {
	  transform: translateY(0) scale(1.0);
	  opacity: 1;
  }
}
.tonkachi{
	width: 80px;
	position: absolute;
	bottom: 20px;
	right: 50px;
	transform-origin: center bottom;
	animation: konkon 1.3s cubic-bezier(0.55, 0.09, 0.68, 0.53) infinite;
	animation-delay: 0.01s;
    transform: rotate(5deg);
}
@keyframes konkon {
  0%, 40%, 60%, 100% {
    transform: rotate(5deg);
  }
  50%, 70% {
    transform: rotate(-40deg);
  }
}

/* ECサイトリンクバナー */
.ec_link{
	bottom: -20px;
	right: 3vw;
	z-index: 99;
}
.ec_link a {
    padding: 5px;
    transition: ease 0.3s;
	box-shadow: rgba(100,100,111,0.4) 0px 4px 10px 0px;
}
.ec_link a:hover {
    padding: 0;
}
.ec_link a span {
    border: 2px solid #ddc69b;
    padding: 10px 20px;
    transition: ease 0.3s;
	font-size: 18px;
	font-weight: normal;
}
.ec_link a:hover span {
    padding: 15px 25px;
}

/* top ----------------*/

/* header */
#sc_menu .logo img {
    max-width: 180px;
}
#sc_menu li.page08_link a {
    height: 75px;
}

/* main img */

/* main */
/*アニメーション*/
.animate {
  opacity: 0;
  transform: translateY(20px);
  transition: all 2s;
}
.animate.show {
  opacity: 1;
  transform: translateY(0);
}
.animate.show:nth-of-type(1) {
  transition-delay: 0s;
}
.animate.show:nth-of-type(2) {
  transition-delay: 0.3s;
}
.animate.show:nth-of-type(3) {
  transition-delay: 0.6s;
}
.animate.show:nth-of-type(4) {
  transition-delay: 0.9s;
}
.animate.show:nth-of-type(5) {
  transition-delay: 1.2s;
}
.animate.show:nth-of-type(6) {
  transition-delay: 1.5s;
}

/* intro */
#intro{
	background: none;
}
#intro_title{
	margin-bottom: 0;
}
#intro_title h3{
	font-size: 60px;
	font-family: 'PT Serif', serif;
	font-style: italic;
	line-height: 80px;
}
#intro_title p{
	border: 1px solid;
}
#intro .box_wrap{
    align-items: flex-start;
}
#intro .box_wrap .box > div {
    background: none;
    width: 100%;
    margin-left: 0;
    transform: none;
    box-shadow: none;
}
#intro .box_wrap .box > div span{
	display: none;
}
#intro .box_wrap .box {
    padding: 20px;
    box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
	position: relative;
}
#intro .box_wrap .box::before {
    content: "";
	border: 1px solid #caa25a;
	outline: solid 2px #caa25a;
    outline-offset: 5px;
	width: 90%;
	height: 90%;
	position: absolute;
	top: 5%;
	left: 5%;
}
#intro .box figure{
	width: 90%;
    margin-top: 5%;
    margin-left: 5%;
}

/* contentslinks */
#contents_links .square_box a p {
    top: auto;
    left: auto;
    bottom: 15%;
    right: 5%;
}

/* contents */

/* topcms */
#top_cms .top_cms_title h3{
    border: 2px solid;
}

/* footer */



/* under page */
#cms > div{
    position: relative;
}
#cms > div .ec_link{
	position: relative;
	bottom: auto;
    right: auto;
    z-index: 0;
	text-align: center;
    margin-top: 50px;
    box-shadow: none;
}
#cms > div .ec_link a{
    min-width: 1000px;
    text-align: center;
}
#cms > div .ec_link a:hover span {
    padding: 15px 25px;
}

/* cms1 */

/* cms2 */

/* cms3 */

/* cms4 */

/* cms5 */

/* page7 */

/* page8 */
#page08 .tel_wrap{
    border-top: 5px solid #caa25a;
}

/* page9 */

/* page10 */


/* IE */
@media all and (-ms-high-contrast: none){
    #intro .box_wrap .box::before {
        content: "";
    	border: 1px solid #caa25a;
    	outline: none;
    	width: 92%;
    	height: 92%;
    	position: absolute;
    	top: 4%;
    	left: 4%;
    }
    #intro .box_wrap .box::after {
        content: "";
    	border: 2px solid #caa25a;
    	width: 95%;
    	height: 95%;
    	position: absolute;
    	top: 2.5%;
    	left: 2.5%;
    }
    #cms_2-b .cate .cate_title{
        padding-top: 5px !important;
    }
    #cms_3-b .cate_title{
        padding-top: 5px!important;
    }
}

/* ---------- 1740px ---------- */
@media screen and (max-width: 1740px){
    #main_img #catch {
        min-width: 700px;
        padding: 30px;
    }
    #main_img #catch h2{
        top: 30px;
        left: 30px;
        font-size: 27px;
    }
    #main_img #catch p {
        padding-top: 60px;
    }
	
}
/* ---------- 1180px ---------- */
@media screen and (max-width: 1180px){
    #main_img #catch {
        top: 60%;
    }
	
}
/* ---------- タブレット ---------- */
@media screen and (max-width: 768px){
    #main_img #catch {
        min-width: 400px;
        padding: 50px;
        top: 50%;
    }
    #main_img #catch h2{
        top: 50px;
        left: 50px;
        font-size: 24px;
    }
    #main_img #catch p {
        padding-top: 0;
    }
	#intro_title h3 {
		line-height: 70px;
	}
	#contents_links .square_box a h4{
		font-weight: normal;
	}
	#cms > div .ec_link a {
        min-width: 600px;
    }
    #cms_1-e .pager li {
        margin: 0;
    }
	
}
/* ---------- スマートフォン ---------- */
@media screen and (max-width: 667px){
    #main_img #catch {
        min-width: 300px;
        padding: 30px;
    }
    #main_img #catch h2{
        font-size: 20px;
    }
    .ec_link {
        bottom: -10px;
    }
    .ec_link a span {
    	font-size: 14px;
    }
	#intro_title h3 {
		line-height: 40px;
		font-size: 30px;
	}
	#intro .box_wrap .box:nth-of-type(2) {
		margin-top: 20px;
	}
	.ring {
		width: 50px;
		left: 15px;
	}
	.pika {
		width: 60px;
		left: -20px;
	}
	.tonkachi {
		width: 60px;
		right: 0;
	}
	#cms > div .ec_link a {
        min-width: 300px;
    }
	
}

/*20211126全体修正*/
header #header #main_menu li a{
    height: 80px!important;
    font-size: 18px;
    padding: 10px 20px;
}
#sc_menu.active{
    background-color: rgba(255,237,236,0.8);
}
.ec_link {
    bottom: -35px;
}
.intro_banner a{
    position: relative;
    padding: 20px;
    transition: ease 0.3s;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
	line-height: 1;
}
.intro_banner a:hover {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transform: translateY(-3px);
}
.intro_banner a::before {
    content: "";
    border: 1px solid #fff;
    width: 95%;
    height: 80%;
    position: absolute;
    top: 8%;
    left: 2.5%;
}
#intro .box figure {
    margin-top: 10%;
}
.banner_link a {
    padding: 5px;
    transition: ease 0.3s;
	box-shadow: rgba(100,100,111,0.4) 0px 4px 10px 0px;
}
.banner_link a:hover {
    padding: 0;
}
.banner_link a span {
    border: 2px solid #ddc69b;
    padding: 10px 20px;
    transition: ease 0.3s;
	font-size: 18px;
	font-weight: normal;
}
.banner_link a:hover span {
    padding: 15px 25px;
}

.price::before{
	content: "価格";
	color: #fff;
	font-size: 21px;
	font-weight: bold;
	background-color: #c9bc9c;
	padding: 15px;
	line-height: 1;
	position: absolute;
	top: 0;
	left: 0;
	font-family: 'Noto Serif JP', "serif";
}
.option::before{
	content: "オプション";
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	background-color: #c9bc9c;
	padding: 15px;
	line-height: 1;
	position: absolute;
	top: 0;
	left: 0;
	font-family: 'Noto Serif JP', "serif";
}
#cms_2-b .sub_cate_box:nth-of-type(1) .seisaku2_1{
    display: none;
}
#cms_2-b .sub_cate_box:nth-of-type(2) .item{
    display: none;
}

/* ---------- タブレット ---------- */
@media screen and (max-width: 768px){
#cms .banner_link a span {
    padding: 10px 10px;
}
}
/* ---------- スマートフォン ---------- */
@media screen and (max-width: 667px){
.ec_link {
    bottom: -40px;
}

.price::before{
	font-size: 20px;
	padding: 10px;
}
.option::before{
	font-size: 16px;
	padding: 10px;
}
#cms_2-b .sub_cate_box:nth-of-type(2){
    margin-bottom: 0;
}
}

/*20211214全体修正*/
#info_title h3{
    font-family: 'Noto Serif JP', "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho","ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", "serif";
}
#info table {
    display: inline-block;
    margin: 50px 0 30px 0;
	border-collapse: collapse;
    border-spacing: 0;
}
#info table tr th, #info table tr td {
    text-align: left;
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
}
#info table tr th {
    padding-right: 30px;
}

/*20220114公開後修正*/
#page07 .box_wrap .box{
    background-color: #fff;
    border-bottom: 1px dotted #adadad;
    line-height: 32px;
    padding: 15px 20px;
}
.banner_link .shop_hukidasi{
    top: -120px;
    left: -300px;
    width: 100%;
}
.banner_link .shop_hukidasi img{
    max-width: 250px;
}
/* ---------- タブレット ---------- */
@media screen and (max-width: 768px){
.banner_link .shop_hukidasi {
    left: -250px;
}
.banner_link .shop_hukidasi img {
    max-width: 220px;
}
}
/* ---------- スマートフォン ---------- */
@media screen and (max-width: 667px){
#info table tr th {
    padding-right: 0;
    width: 40%;
    font-size: 14px;
}
#info table tr td {
    font-size: 14px;
}
#page07 .box_wrap .box {
    line-height: 23px;
}
.banner_link{
    margin-top: 70px;
}
.banner_link .shop_hukidasi {
    top: -100px;
    left: -80px;
}
.banner_link .shop_hukidasi img {
    max-width: 200px;
}
}

/*20220301公開後修正*/
.banner__fixed a span, #top_cms1 .top_cms_title h3, #top_cms1 .top_cms_title p span, #top_cms1 .top_cms_box .more a span{
    font-family: 'Noto Serif JP', "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho","ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", "serif";
}
.banner__fixed {
    position: fixed;
    bottom: 20px;
    right: 60px;
    z-index: 10;
	max-width: 350px;
}
.banner__fixed a {
	padding: 4px;
    transition: ease 0.3s;
}
.banner__fixed a span {
    border: 2px solid #ddc69b;
    padding: 3px 15px;
    transition: ease 0.3s;
    font-size: 18px;
    font-weight: normal;
}
.banner__fixed a:hover {padding: 0;}
.banner__fixed a:hover span {padding: 7px 19px;}
#intro_title h3 {margin-bottom: 100px;}
/* topcms-about */
#top_cms1 .top_cms_title h3{
    border: 2px solid;
}
#top_cms1 .top_cms_box .top_cms_title p {
    transform: translateY(20px);
}
#top_cms1 .top_cms_box .more a {
    padding: 5px;
    transition: ease 0.3s;
}
#top_cms1 .top_cms_box .more a span {
    border: 2px solid #fff;
    padding: 10px 20px;
    transition: ease 0.3s;
}
#top_cms1 .top_cms_box .more a:hover {padding: 0px;}
#top_cms1 .top_cms_box .more a:hover span {padding: 15px 25px;}
.topcms_about_type1 {counter-reset: box 0;}
.topcms_about_type1 .cate_box {
	padding: 25px;
	box-sizing: border-box;
    margin-top: 50px;
}
.topcms_about_type1 .cate_box::before {
	content: "";
    border: 1px solid #caa25a;
    outline: solid 2px #caa25a;
    outline-offset: 5px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.topcms_about_type1 .cate_box .box_title1{font-size: 18px;line-height: 1.6;z-index: 1}
.topcms_about_type1 .cate_box .txt_box{padding: 0 40px;}
/* topcms-news */
.topcms_news_type2 .cate_box {
	width: 46.33333%!important;
	margin-right: 1.5%;
	margin-left: 1.5%;
	cursor: pointer;
	border-bottom: 1px solid #ddd;
	margin-bottom: 30px;
	box-shadow: 0 6px 12px rgb(0 0 0 / 0);
}
.topcms_news_type2 .cate_box:hover {
	transform: translateY(-5px);
}
.topcms_news_type2 .cate_box .box_item {
	cursor: pointer;
}
.topcms_news_type2 .txt_height {
	height: 5em;
}
.topcms_news_type2 .box_img1 {
	border-radius: 5px;
}
#f_menu{
    z-index: 2;
}
#f_menu .letter_1{
    letter-spacing: 1px;
}
/* ---------- タブレット ---------- */
@media screen and (max-width: 768px){
footer{padding-bottom: 100px;}
#intro_title h3 {margin-bottom: 40px;}
.topcms_about_type1 .cate_box {
	margin: 40px auto 50px;
	width: 80%!important;
}
.topcms_about_type1 .cate_box:last-of-type {
	margin-bottom: 0;
}
.topcms_news_type2 .cate_box {width: 100%!important;}
.topcms_news_type2 .txt_height {height: 3em}
}
/* ---------- スマートフォン ---------- */
@media screen and (max-width: 667px){
#main_img #catch {transform: translateY(-10px);}
#main_img #catch p {font-size: 16px;}
.ec_link {bottom: -65px;}
.banner__fixed {
    right: 50px;
	max-width: 500px;
}
.banner__fixed a span {
    padding: 7px 80px;
    font-size: 15px;
    line-height: 1;
}
.banner__fixed a:hover span {padding: 11px 84px;}
.topcms_about_type1 .cate_box {
	width: 90%!important;
	padding: 20px 10px;
	margin: 0 auto 50px;
}
.topcms_about_type1 .cate_box .txt_box {
    padding: 0 10px;
}
#footer .mail a{
    letter-spacing: 1px;
}
}
/*20220303追加*/
.design_box{margin-left: 20%;}
.design_box .box_img{z-index: 1;}
.design_box .box_item{transform: translate(-20%,-30%);background-color: #f4efea;}
#cms_2-b #c1 .k10_box, #cms_2-b #c1 .sub_cate_box:nth-of-type(2) .design_box_wrap, #cms_2-b #c1 .sub_cate_box:nth-of-type(2) .haba_wrap, #cms_2-b #c1 .sub_cate_box:nth-of-type(2) .simple_box, #cms_2-b #c2 .design_box_wrap, #cms_2-b #c2 .k10_box, #cms_2-b #c2 .simple_box, #cms_2-b #c4 .item_wrap, #cms_2-b #c4 .k10_box, #cms_2-b #c4 .simple_box, #cms_2-b #c3 .item_wrap, #cms_2-b #c3 .haba_wrap, #cms_2-b #c3 .k10_box, #cms_2-b #c3 .simple_box, #cms_2-b #c5 .item_wrap, #cms_2-b #c5 .haba_wrap, #cms_2-b #c5 .simple_box{
    display: none;
}
/* ---------- タブレット ---------- */
@media screen and (max-width: 768px){}
/* ---------- スマートフォン ---------- */
@media screen and (max-width: 667px){
.design_box{margin-left: 0;}
.design_box .box_img{z-index: 1;}
.design_box .box_item{transform: none;}
}

/*20220418公開後修正*/
#cms_2-b #c1 .kotei, #cms_2-b #c3 .kotei, #cms_2-b #c4 .kotei, #cms_2-b #c5 .kotei, #cms_2-b #c2 .item_wrap, #cms_2-b #c2 .haba_wrap{
    display: none;
}
#cms_2-b #c2 .box_wrap .sub_cate_box:nth-of-type(2) .item_box_inner:nth-of-type(2), #cms_2-b #c1 .box_wrap .sub_cate_box:nth-of-type(2) .item_box_inner:nth-of-type(2) {
    position: relative;
    margin-bottom: 300px;
}
#cms_2-b #c2 .box_wrap .sub_cate_box:nth-of-type(2) .item_box_inner:nth-of-type(2)::before, #cms_2-b #c1 .box_wrap .sub_cate_box:nth-of-type(2) .item_box_inner:nth-of-type(2)::before {
    content: "";
    background-image: url('./Dup/img/seisaku2_1.png');
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: 100%;
    width: 100%;
    height: 300px;
    position: absolute;
    bottom: -300px;
    left: 0;
    z-index: -1;
}
/* ---------- タブレット ---------- */
@media screen and (max-width: 768px){
#cms_2-b #c2 .box_wrap .sub_cate_box:nth-of-type(2) .item_box_inner:nth-of-type(2), #cms_2-b #c1 .box_wrap .sub_cate_box:nth-of-type(2) .item_box_inner:nth-of-type(2) {margin-bottom: 250px;}
#cms_2-b #c2 .box_wrap .sub_cate_box:nth-of-type(2) .item_box_inner:nth-of-type(2)::before, #cms_2-b #c1 .box_wrap .sub_cate_box:nth-of-type(2) .item_box_inner:nth-of-type(2)::before {
    height: 250px;
    bottom: -200px;
}
}
/* ---------- スマートフォン ---------- */
@media screen and (max-width: 667px){
#cms_2-b #c2 .box_wrap .sub_cate_box:nth-of-type(2) .item_box_inner:nth-of-type(2), #cms_2-b #c1 .box_wrap .sub_cate_box:nth-of-type(2) .item_box_inner:nth-of-type(2) {margin-bottom: 330px;}
#cms_2-b #c2 .box_wrap .sub_cate_box:nth-of-type(2) .item_box_inner:nth-of-type(2)::before, #cms_2-b #c1 .box_wrap .sub_cate_box:nth-of-type(2) .item_box_inner:nth-of-type(2)::before {
    background-image: url('./Dup/img/seisaku2_1_sp.png');
    height: 330px;
    bottom: -330px;
}
}

/*20221018動画組み込み*/
.ec_link {z-index: 20;}
.banner__fixed {z-index: 50;}
#main_img #catch {
    width: 30%;
    left: 3%;
}
#main_img .slick {margin-left: 30%;}
/* ---------- タブレット ---------- */
@media screen and (max-width: 768px){
#main_img #catch {
    width: 80%;
    left: 0;
}
#main_img .slick {margin-left: 0;}
}
/* ---------- スマートフォン ---------- */
@media screen and (max-width: 667px){
#main_img #catch {width: 100%;}
#main_img .slick {
    height: 40vh;
    overflow: hidden;
    position: relative;
}
#main_img .slick .video{
    height: 40vh;
    width: auto!important;
    position: absolute;
    left: -10%;
}
}

/*20230118*/
#cms_2-b #c1 .haba_wrap, #cms_2-b #c4 .haba1_wrap, #cms_2-b #c1 .sub_cate_box:nth-of-type(2) .haba1_wrap, #cms_2-b #c2 .haba1_wrap, #cms_2-b #c3 .haba1_wrap, #cms_2-b #c5 .haba1_wrap{
    display: none;
}

/*20250502*/
#cms_4-b {
    color: #404040;
}


