@charset "utf-8";
/*
Theme Name:風雅専用テーマ
Author:komamura
Description:風雅専用テーマ
Version:1.0
License:(C) 2024- fuuga. All Rights Reserved.
License URI:https://fuuga0619.com/
*/

@import url("css/reset.css");
@import url("css/parts.css");

body{
    background:#f3f3f3 url(img/bg_washi.png);
    background-size:48px 48px;
    font-family: 'Noto Serif JP', serif;
    letter-spacing:0.1em;
	color: #333;
	font-size:1rem;
	line-height:1.85;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%; 
	word-wrap: break-word;
}

*{box-sizing: border-box;}

ul{
	margin:0;
	padding: 0;
	list-style: none;
}

a{
	color: #333;
	text-decoration: none;
    outline: none;
}

img{
    max-width: 100%;
    height: auto;
}
a img {
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
a:hover img {
	opacity: 0.6;
	filter: alpha(opacity=60);
}

/* area */

#container{
    position: relative;
    overflow-x: hidden;
}

#header{
    position:fixed;
    top:0;
    left:0;
    width:230px;
    height: 100vh;
    background:url("img/bg_header.jpg") no-repeat center;
	background-size: cover;
    padding: 10px 0 0 0;
}

#contentarea{
    width:100%;
    padding:0 0 0 230px;
}

@media screen and (max-width:990px) {
#header{
    position: relative;
    width:100%;
    height: auto;
    padding: 0;
}
  
#contentarea{
    padding:0;
}
    
}
/* heading */
.heading-block{
    display: flex;
    justify-content: center;
	    margin: 20px auto 30px;
}

/* slider */

#slider-area{
    position: relative;
}

#slider-area .scrolldown1{
    top: inherit;
    bottom:0;
    z-index: 100;
}

/* header */

#header{
    display: flex;
    justify-content: center;
}

.headerarea{
width: 226px;
    height: 230px;
}

#header h1{
    font-size: .9rem;
    letter-spacing: 1em;
    line-height: 1.3;
    padding: 10px 0 0px 0;
    text-align: center;
}

#header h1 span{
    letter-spacing: 0.5em;
    display: block;
  font-size: 2rem;
}
#header h1 a{
    color:#fff;

}
#header .sns-link{
    position: absolute;
    left: 45px;
    bottom:25px;
}

@media screen and (max-width:990px) {

#header{
    position:absolute;
    z-index: 1000;
    background: none;
    color: #fff;
    height: 100vh;
    align-items: center;
}
    
.headerarea{
    width:auto;
    height: auto;
}

#header h1{
    color: #fff;
    white-space: nowrap;
	font-size: 1.2rem;
	position: absolute;
    top: 0;
    left: 5%;
}
.logo {
    position: absolute;
    left: 10px;
    top: 10px;
}
#header h1 span{
    font-size: 2.3rem;
}
    
    

 #header .sns-link{
left: 0px;
    bottom: 0px;
    background-color: #204500;
    padding-top: 20px;
	 padding-bottom: 10px;
    width: 100%;
	}
}


/* sns */

.sns-link li{
    display:inline-block;
    margin:0 10px;
}

.sns-link li img{
     width:20px;   
}

/* g_navi */

#main_nav{
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    align-items: center;
}

#g_nav ul{
    display: flex;
}


#g_nav ul li a{
    display: block;
padding: 19px 10px;
	position: relative;
    transition:all 0.3s;
	color: #fff;
}

#g_nav ul li.current a::before,
#g_nav ul li a:hover::before{
    content: "";
    /*描画位置*/
	position: absolute;
	top: 0;
    left:50%;
    /*線の形状*/
	width: 1px;
	height: 16px;
	background: #fff;
    /*線の動き1.4秒かけて動く。永遠にループ*/
	animation: gnavipathmove 2.4s ease-in-out infinite;
	opacity:0;
    color:#6a2e9e;
}

@media screen and (min-width:991px) {
	#g_nav ul {
    display: block;
}

#main_nav{
    display: block;
    text-align: center;
	margin-top: 50px;
}
}

@media screen and (max-width:990px) {
#g_nav ul{
    display: block;
    text-align: center;
}
#g_nav ul li a{
    padding: 15px;
    color: #fff;
}
#g_nav ul li.current a::before,
#g_nav ul li a:hover::before{
    animation: none;
    left:0;
    top:48%;
    width:10px;
    height: 1px;
    background: #fff;
    opacity: 1;
}
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes gnavipathmove{
	0%{
		height:0;
		top:0;
		opacity: 0;
	}
	30%{
		height:20px;
		opacity: 1;
	}
	100%{
		height:0;
		top:30px;
		opacity: 0;
	}
}

#main_nav dl{
    background:#204500;
    color: #fff;
    padding: 20px 40px;
    text-align: center;
}

#main_nav dl dt{
     font-size: 0.8rem;   
}

#main_nav dl a{
    color:#fff;
    font-size: 1.2vw;
}

@media screen and (max-width:990px) {
#main_nav dl{
    display: none;
    transition: all 0.5s;
	opacity: 0;
    padding: 10px 0;
}
    
#main_nav dl a{
   font-size: 1.2rem; 
}

 
#main_nav dl.telactive{
    display: block;
    position: fixed;
    z-index: 9999;
    bottom:30px;
    left:20%;
    width:60%;
    border: 1px solid rgba(255,255,255,0.8);
	animation: UpAnime 1s forwards;
}

}

@media screen and (max-width:420px) {
#main_nav dl.telactive{
    width:90%;
    left:5%;
}
    
}

/* menu */

#menuarea{
    position:relative;
}

#menuarea .menu-bg{
    position: relative;
    background:url(img/bg_04.jpg) no-repeat center;
    background-size:cover;
    background-attachment:fixed;
    width:100%;
    height:50vh;
}

#menuarea section{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
}


#leadarea .lead-bg{
    background:url(img/bg_04.jpg) no-repeat center;
    background-size:cover;
    background-attachment:fixed;
    width:100%;
    height:50vh;
}

@media screen and (max-width:768px) {
#leadarea .lead-bg{
    background-attachment: inherit;
    }
}

@media screen and (max-width:560px) {
    
#leadarea .lead-bg{
    width:100%;
    margin: 0 0 50px 0;
}
    
}



/* contact */

#contactarea{
    position:relative;
}

#contactarea .contact-bg{
    background:url(img/bg_05.jpg) no-repeat center;
    background-size:cover;
    background-attachment:fixed;
    width:100%;
    height:50vh;
}

#contactarea .contact-area{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background:#fff;
    box-shadow: 0 4px 4px #ccc;
    width:90%;
    margin: 30px auto 100px auto;
}

#contactarea .contact-area .contact-block{
    width:50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#contactarea .contact-area .contact-block h3{
    font-size: 1.2rem;
    margin: 0 0 20px 0;
}

#contactarea .contact-area .contact-block p{
    margin: 0 0 20px 0;
}

#contactarea .contact-map{
    width:50%;
}

#contactarea .iframe-wrap {
  position: relative;
  padding-bottom: 51.65%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  z-index: 2;
}

#contactarea .iframe-wrap iframe,
#contactarea .iframe-wrap object,
#contactarea .iframe-wrap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width:1040px) {
    #contactarea .contact-area .contact-block,
    #contactarea .contact-map{
        width:100%;
    }   
    #contactarea .contact-area .contact-block{
        padding:40px 20px;
    }
}


@media screen and (max-width:768px) {
#contactarea .contact-bg{
    background-attachment: inherit;
    }
}

/* reserve */

#reserve{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width:90%;
    margin: 0 auto 100px auto;
    padding:100px 30px;
    text-align: center;
}

#reserve .scrolldown1{
     top:-10vh;   
}

#reserve h2{
     font-size: 1.2rem;   
}

#reserve .tel{
    font-size: 2vw;
    margin: 0 0 20px 0;
}

#reserve p br{
     display: none;   
}

@media screen and (max-width:990px) {
#reserve h2{
     font-size: 1rem;   
}
#reserve .tel{
    font-size: 1.5rem;
}
    
}

@media screen and (max-width:540px) {

#reserve p br{
     display:block;   
}
    
}

/* footer */

#footer{
    padding:40px;
    color: #fff;
    background:#204500;
}

#footer .footer-area{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap:wrap;
}

#footer .footer-logo{
    letter-spacing: .9em;
    margin: 0 0 20px 0;
}

#footer .footer-logo span{
    font-size: 1.6rem;
    display: block;
}

#footer .footer-link{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#footer .footer-link ul{
    font-size: 0.9rem;
    margin: 0 2vw 0 0;
}

#footer .footer-link ul li{
    display: inline-block;
     margin: 0 10px;   
}

#footer .footer-link a{
     color:#fff;   
}

#footer small{
     color:#ccc;  
}

#footer #page-top span{
    position: relative;
    top:-10px;
}

#footer #page-top span::before{
     content:'';
    position: absolute;
    left:50%;
    top:-3px;
    background:#6C6C6C;
    width:1px;
    height: 30px;
}

#footer #page-top span::after{
    content:'';
    position: absolute;
    left:6px;
    top:-7px;
    background:#6C6C6C;
    width:1px;
    height: 20px; 
    transform: rotate(-45deg);
}

@media screen and (min-width:769px) {
#footer #page-top a:hover span::before,
#footer #page-top a:hover span::after{
     background:#fff;   
}
}

@media screen and (max-width:768px) {
    #footer .footer-info{
        width: 100%;
        text-align: center;
    }
    #footer .footer-logo{
        margin: 0;
    }
    
    #footer .footer-link{
        width:100%;
        display: block; 
    }

    #footer .footer-link ul{
        text-align: center;
        margin: 50px 0;
        line-height: 3;
    }
    
    #footer small{
         display: block;
        text-align: center;
    }


    
}


.heading02{ 
	position: relative;
	margin-bottom: 30px;
    font-size:2rem;
	text-align: center;
}
.heading02:before{
content: '';
position: absolute;
bottom: -8px;
display: inline-block;
width: 60px;
height: 3px;
left: 50%;
-moz-transform: translateX(-50%);
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
background-color: black;
border-radius: 2px;
}







.col2_con{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.col2_box{
	width: 48%;
}
@media (max-width: 768px){
.col2_box{
	width: 100%;
	margin-bottom: 20px;
}
}
.sec {
    max-width: 1100px;
    margin: 50px auto 0;
    padding: 20px

}
.news_top {
	display: flex;
	margin-bottom: 20px;
	padding: 10px;
	box-sizing: border-box;
	box-shadow: 0 0 5px #999;
}
.news_top  figure {
	margin-right: 20px;
	width: 150px;
	height: 100px;
}
.news_top .text_date{
	font-size: 90%;
}
.news_top h3{
	font-size: 16px;
}
.news_top p{
	font-size: 90%;
}
	.news_top  figure img {
		min-width: 150px;
		max-width: 100%;
		vertical-align:middle;
	}



#message{
    position: relative;
    padding:0 70px;
    
}


.message-area{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    
}

.message-img{
    background:url("img/pict_02.jpg") no-repeat left top;
    background-size: cover;
    height: 60vh;
    width:48%;
}

.message-content{
    display: flex;
    justify-content: center;
    padding: 50px 0 0 0;
    width:45%;
}

.message-box{
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
}

.message-content h3,
.message-content p,
.message-content .message-btn{
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;    
    text-orientation: upright;
    height: 20em;
    letter-spacing: 0.1em;
}

.message-content h3{
    font-size:1.5rem;
    line-height: 2.5;
}

_:-ms-lang(x)::-ms-backdrop, .message-content h3{/*IE11用ハック*/
    width:30%;
}

.message-content p{
    line-height: 3.5;
    margin: 0 0 0 50px;
}

_:-ms-lang(x)::-ms-backdrop, .message-content p{/*IE11用ハック*/
    width:60%;
}

_:-ms-lang(x)::-ms-backdrop, .message-content .message-btn{/*IE11用ハック*/
    width:10%;
}


@media screen and (max-width:1280px) {

.message-content h3{
    line-height: 2;
    margin: 0 0 0 10px;
}

.message-content p{
    line-height: 3;
    margin: 0 0 0 20px;
}
    
}

@media screen and (max-width:1000px) {
.message-content p{
    line-height: 2;
}
}


@media screen and (max-width:768px) {
#message{
    padding: 0 30px;
}
    
#message h2 {
    position: relative;
    right: inherit;
    top: 40px;
}
    .message-img,
    .message-content{
        width:100%;
    }
    
    .message-img{
        height:60vh;
    }

    .message-content{
    padding:50px 0 0 0;
    }
    
.message-content h3,
.message-content p,
.message-content .message-btn{
    -ms-writing-mode: lr-tb;
    -webkit-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
    height: inherit;
    margin: 0 0 20px 0;
}
    
_:-ms-lang(x)::-ms-backdrop, .message-content h3,
_:-ms-lang(x)::-ms-backdrop, .message-content p,
_:-ms-lang(x)::-ms-backdrop, .message-content .message-btn{/*IE11用ハック*/
    width:100%;
}
    
.message-content h3{
    font-size: 1.2rem;

}
    
.message-box{
    display: block;

}
    
.message-box .btn{
    padding: 10px;
    display: block;
}
        
}


@media screen and (max-width:430px) {
    .message-img{
        height:60vh;
    }
}

@media screen and (max-width:370px) {

 .message-content p br{
    display: none;
    }
}
.top_navim {
  position: relative;
  }

.top_navim p {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  margin:0;
  padding:0;
  font-size: 2rem;
	color: #fff;
  }

.top_navim img {
  width: 100%;
	filter: brightness(60%);
  }
.mar_top30{
	margin-top: 30px;
}
.logo{
	text-align: center;
}
h1 img,.logo img{
	max-width: 120px;
	height: auto;

}
.footer-logo img{
	max-width: 100px;
	height: auto;
}

.common_visual{
	background-size: cover;
	height:240px;
	width: 100%;
	max-width: 1500px;
	position: relative;
}
.common_visual h1{
position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    font-size: 28px;
    left: 0;
    margin: auto;
    width: 80%;
    height: 1rem;
    text-align: center;
	    font-family: 'M PLUS 1p', sans-serif;
	color: #fff;
}


@media screen and (max-width:990px) {

    

.logo {
    position: absolute;
    left: 10px;
    top: 10px;
}
	h1 img,.logo img{
	max-width: 100px;
	height: auto;

}

}



@media (max-width: 768px){
.common_visual{
	height:120px;
}
	.common_visual h1{
    font-size: 20px;
}
.logo img{
	max-width: 70px;
	height: auto;

}
}
.service_page{
	background-image: url("img/bg_04.jpg");
}


.breadcrumb {
  padding: 0;
  list-style: none;
  max-width: 1120px;
  margin: 0px auto;
  padding: 20px 0 0 10px;
}
.breadcrumb li {
  display: inline;
  list-style: none;
  font-weight: bold;
  color: #444;
}
.breadcrumb li:after {
  font-family: FontAwesome;
  content: '\f0da';
  padding: 0 0.2em;
  color: #666;
}
.breadcrumb li:last-child:after {
  content: '';
}
.breadcrumb li a {
  text-decoration: none;
  color: #444;
}
.breadcrumb li:first-child a:before {
  /*家アイコン*/
  font-family: FontAwesome;
  content: '\f015';
  font-weight: normal;
  font-size: 1.1em;
  color: #444;
}
.breadcrumb li a:hover {
  text-decoration: underline;
}

.contact-con {
    display: block;
    background-color: #fff;
    border: solid 1px #dcdcdc;
    width: 100%;
    margin: 0 auto;
    padding: 2em;
    border-radius: 10px;
}

.button_b a:visied {
    color: #fff;
}


input[type="submit"],
input[type="text"],
input[type="email"],
select,
textarea,
button {
  -moz-appearance: none;
  -webkit-appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  border: 1px solid #999;
}
 
 
input[type="text"],
input[type="email"],
textarea {
  background: #f8f8f8;
  display: block;
  font-size: 16px;
  padding: 12px 15px;
  width: 480px;
  transition: 0.8s;
  border-radius: 0;
}
 
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  background: #e9f5fb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
 
textarea[name="content"] {
  display: inline-block;
  width: 100%;
  height: 200px;
}
 
input::placeholder,
textarea::placeholder {
  color: #ccc;
}
 
::-webkit-input-placeholder {
  color: #ccc;
  opacity: 1;
}
 
::-moz-placeholder {
  color: #ccc;
  opacity: 1;
}
 
:-ms-input-placeholder {
  color: #ccc;
  opacity: 1;
}
 
.form-table {
  width: 100%;
}
 
.form-table th,
.form-table td {
  border-top: 1px solid #d7d7d7;
  border-bottom: 1px solid #d7d7d7;
  padding: 20px;
}
 
.form-table th {
  background: #c4c4c4;
  padding-left: 50px;
  position: relative;
  text-align: left;
  width: 300px;
}





@media screen and (max-width: 767px) {


.form-table th,
.form-table td {
  display: block;
  width: 100%;
  border-bottom: none;
	    box-sizing: border-box;
}
	input[type="text"],
input[type="email"],
textarea {
  background: #f8f8f8;
  display: block;
  font-size: 16px;
  padding: 12px 15px;
  transition: 0.8s;
  border-radius: 0;
	width: 100%;
	    box-sizing: border-box;
}
	.form-table th{
		padding-left: 5px;
	}

 }



.required-srt {
	font-size: 8pt;
	padding: 5px;
	background: #ce0000;
	color: #fff;
	border-radius: 3px;
	margin-left: 10px;
	vertical-align: middle;
}


.submit-btn input {
	background: #a90f0f;
	cursor: pointer;
	width: 60%;
	max-width: 550px;
	min-width: 220px;
	margin: 30px auto;
	display: block;
	border: 1px #a90f0f solid;
	text-align: center;
	padding: 1em;
	color: #fff;
	transition: all 0.4s ease;
}

.submit-btn input:hover {
	background: #fff;
	color: #a90f0f;
}
input.back_btn {
    background: #aaa;
    border: none;
}
input.back_btn:hover {
    border: 1px solid #aaa;
color: #aaa;
}
.select-wrap {
  position: relative;
  width: 100%;
  max-width: 250px;
}

.select-wrap:before {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%) translateX(0);
  content: '';
  width: 15px;
  height: 15px;
  background: url(https://photorevo.net/feature/graduate/estimates/image/select.png) no-repeat;
  background-size: contain;
}

.select-wrap select{
  width: 100%;
  outline:none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 40px;
  padding: 5px;
  border:1px solid #ccc;
  background-color: #fff;
  border-radius: 5px;
}

.select-wrap select::-ms-expand {
  display: none;
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}


/************************************
** お問い合わせフォームの入力
************************************/
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
select,
textarea,
.field {
	display: block;
	width: 100%;
	height: 45px;
	margin-bottom: 0;
	padding: 0 12px;
	border: 0;
	border-radius: 3px;
	background-color: #e5e5e5;
	box-shadow: none;
	color: #5c6b80;
	font-size: 1em;
	vertical-align: middle;
	line-height: 45px;
	transition: background-color 0.24s ease-in-out;
}

textarea {
	max-width: 100%;
	min-height: 120px;
	line-height: 1.5em;
	padding: 0.5em;
	overflow: auto;
}

.inquiry {
	table-layout: fixed;
	width: 100%;
}

@media(max-width:500px) {

	.inquiry td,
	.inquiry th {
		display: block !important;
		width: 100% !important;
		border-top: none !important;
		-webkit-box-sizing: border-box !important;
		-moz-box-sizing: border-box !important;
		box-sizing: border-box !important
	}

	.inquiry tr:first-child th {
		border-top: 1px solid #d7d7d7 !important
	}

	.inquiry .any,
	.inquiry .haveto {
		font-size: 10px
	}
}

.inquiry th {
	text-align: left;
	font-size: 14px;
	color: #444;
	width: 30%;
	background: #f7f7f7;
	border: solid 1px #d7d7d7
}

.inquiry td {
	font-size: 13px;
	border: solid 1px #d7d7d7
}

.entry-content .inquiry tr,
.entry-content table {
	border: solid 1px #d7d7d7
}

.haveto {
	font-size: 7px;
	padding: 5px;
	background: #ff9393;
	color: #fff;
	border-radius: 2px;
	margin-right: 5px;
	position: relative;
	bottom: 1px
}

.any {
	font-size: 7px;
	padding: 5px;
	background: #93c9ff;
	color: #fff;
	border-radius: 2px;
	margin-right: 5px;
	position: relative;
	bottom: 1px
}

.verticallist .wpcf7-list-item {
	display: block
}

#formbtn {
	display: block;
	padding: 15px;
	width: 350px;
	background: #ffaa56;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	border-radius: 2px;
	margin: 25px auto 0
}

#formbtn:hover {
	background: #fff;
	color: #ffaa56;
	border: 2px solid #ffaa56
}

th {
	font-weight: 700;
	text-transform: uppercase;
	padding: 13px
}

td {
	border-top: 1px solid #ededed;
	padding: 12px
}

input,
select,
textarea {
	border: 1px solid #dfdfdf;
	letter-spacing: 1px;
	margin: 0;
	max-width: 100%;
	resize: none
}

@media screen and (max-width : 568px) {

	.contact-con {
		padding: 1em !important;
	}
}

.wpcf7-not-valid-tip {
	color: #204500;
	font-size: 1em;
	font-weight: normal;
	display: block;
	width: 300px;
	margin-top: 4px;
	padding: 0.2em;
	border: 1px solid #204500;
}
.wpcf7 input[type="submit"] {
	width: 100%;
	padding: 15px;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border: none;
	box-shadow: 0 3px 0 #ddd;
	background: #204500;
	transition: 0.3s;
	color: #fff;
	font-weight: 700;
	margin-top: 1em;
}

.wpcf7-submit:hover {
	background: #a4dd6c;
	transform: translate3d(0px, 3px, 1px);
	-webkit-transform: translate3d(0px, 3px, 1px);
	-moz-transform: translate3d(0px, 3px, 1px);
	cursor: pointer;
}