@charset "utf-8";

/* ヘッダー
-------------------------------------*/
header {
	width: 100%;
	height: 138px;
	background-color: var(--main-color);
	position: -webkit-sticky;
	position: sticky;
	top: 0;
    left: 0;
	z-index: 10;
}

header .head-area {
	max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1rem 1.5rem;
}

.head-logo {width: clamp(164px,25vw,288px);}

header .head-nav {
	display: flex;
	justify-content: center;
	align-items: center;
}

.nav-area {padding: 0 1rem;}

.nav-area ul {
	display: flex;
	justify-content: center;
}

.nav-area ul li {
	padding: 0 .5rem;
}

.head-contact-btn {
	display: flex;
	background-color: var(--sub-color_01);
	border-radius: 100px;
	justify-content: center;
	align-items: center;
	color: var(--white);
	padding: .5rem 2rem;
}

.head-contact-btn img {
	max-width: 20px;
}

.head-contact-btn p {
	margin: 0;
	white-space: nowrap;
}

.head-contact-btn:hover {
	color: var(--white);
	opacity: .8;
}

.head-contact-btn img:hover {opacity: 1;}

/* ハンバーガーボタン */
.hamburger {display: none;}
#mobile-nav {display: none;}

/* オーバーレイ */
.overlay {display: none;}

@media screen and (max-width: 960px) {
	
	header h1 {margin-bottom: 0;}
	
	header .head-nav {padding-bottom: 1rem;}
	
	#mobile-nav {display: block;}
	
	.nav-area {
		display: none; /* クローン使用しない時はblockにする */
		position: fixed;
		left: 0;
		/*top: 0;*/ /* クローン使用しない時に使う */
		width: 100%;
		padding: 0;
		transform: translateY(-200%);
		transition: transform 0.3s ease;
		z-index: 9; /* クローン使用しない時は削除する */
	}
	.nav-area.is-open {
		transform: translateY(0);
	}
	
	.head-contact-btn {display: none;}
	
	.nav-area ul {
		display: block;
		background-color: var(--sub-color_01);
	}
	
	.nav-area ul li {
		border-bottom: 1px solid var(--white);
		text-align: center;
		padding: 1rem;
	}
	
	.nav-area li.sp-view {display: block;}
	
	.nav-area ul li:last-of-type {border-bottom: none;}
	
	.nav-area ul li a {color: var(--white);}
	
	/* ハンバーガーボタン */
	.hamburger {
		display: block;
		position: absolute;
		right: 2%;
		top: 50%;
		transform: translateY(-50%);
		background-color: var(--sub-color_01);
		border-radius: 5px;
		cursor: pointer;
		width: 50px;
		height: 50px;
	}
	
	.hamburger span {
		display: inline-block;
		transition: all .4s;
		position: absolute;
	}
	
	.hamburger span:nth-of-type(1),.hamburger span:nth-of-type(3) {
		height: 2px;
		background-color: var(--white);
		width: 62%;
		left: 10px;
	}
	
	.hamburger span:nth-of-type(1) {
		top:13px;	
	}

	.hamburger span:nth-of-type(2) {
		top:19px;
		left:11px;
		font-size:0.6rem;
		text-transform: uppercase;
		color: var(--white);
	}

	.hamburger span:nth-of-type(3) {
		top:36px;
	}

	/*activeクラスが付与されると線が回転して×になり、Menu表記をしている2つ目の要素が透過して消える*/
	.hamburger.active span:nth-of-type(1) {
		top: 18px;
		left: 18px;
		transform: translateY(6px) rotate(-45deg);
		width: 30%;
	}

	.hamburger.active span:nth-of-type(2) {
		opacity: 0;
	}

	.hamburger.active span:nth-of-type(3){
		top: 30px;
		left: 18px;
		transform: translateY(-6px) rotate(45deg);
		width: 30%;
	}
	
	/* オーバーレイ */
	.overlay {
		display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(31, 41, 55, 0.5);
		backdrop-filter: blur(4px);
		-webkit-backdrop-filter: blur(4px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
		z-index: 8;
        }
	.overlay.active {
		opacity: 1;
		visibility: visible;
        }
	body.menu-open {overflow: hidden;}
}

/* フッター
-------------------------------------*/
footer {
	padding: 1rem 1rem;
	/*background-color: var(--main-color);*/
	/*color: var(--white);*/
}

.foot-logo {
	max-width: clamp(260px,35vw,520px);
}

.copyright {font-size: 14px;text-align: center;}


/* トップページ
-------------------------------------*/
/* FV */
.fv {
    text-align: center;
    position: relative;
	margin: 2.9rem auto;
}

/* 下層ページ
-------------------------------------*/
/* FV */

/* お問い合わせ
-------------------------------------*/
input[type="email"], input[type="number"], input[type="search"], input[type="text"], input[type="tel"], input[type="url"], input[type="password"], textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
input[type="email"], input[type="number"], input[type="search"], input[type="text"], input[type="tel"], input[type="url"], input[type="password"], textarea, select {
    height: 38px;
    padding: 6px 10px;
    background-color: var(--white);
    border: 1px solid var(--dark-gray);
    box-shadow: none;
    box-sizing: border-box;
    font-size: 16px;
	border-radius: 0;
}
input,textarea,select{margin-bottom: 0;}
textarea {
    min-height: 190px;
    padding-top: 6px;
    padding-bottom: 6px;
}

.full-width {width: 100%;}

input[type="submit"],
input[type="reset"],
input[type="button"],
.btn-form-top {
	width: 200px;
	height: 50px;
	border: none;
	border-radius: 100px;
	font-size: 1.2em;
	font-weight: bold;
	transition: all .3s;
	cursor: pointer;
	margin: .25rem .5rem;
}
input[type="submit"],.btn-form-top {
	background-color: var(--main-color);
	border: 1px solid var(--main-color);
	color: var(--white);
}
input[type="reset"],input[type="button"]{
	background-color: var(--deep-dark-gray);
	border: 1px solid var(--deep-dark-gray);
	color: var(--white);
}
input[type="submit"]:hover,.btn-form-top:hover {
	background-color: var(--white);
	color: var(--main-color);
}
input[type="reset"]:hover,input[type="button"]:hover {
	background-color: var(--white);
	color: var(--deep-dark-gray);
}
.btn-form-top {
	width: 240px;
    max-width: 100%;
	display: flex;
    justify-content: center;
    align-items: center;
	margin-left: auto;
	margin-right: auto;
}

.form-contact th {
	vertical-align: text-top;
	text-align: right;
	font-size: clamp(16px, 2vw, 18px);
	padding-right: 2rem;
	padding-top: 2rem;
}
.form-mult input {margin-bottom: .5rem;}
.input-number {width: 60px;}

/* SEO用 */
fieldset {
	padding: 0;
	border: none;
}
.visually-hidden {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* 確認画面 */
/* PHP工房フォーム使用時
max-width:572px の
form input[type="submit"], form input[type="reset"], form input[type="button"]
だけは向こうでコメントアウト文にしてください */
#formWrap {
	width: 100%!important;
	max-width: 700px;
}
.tbl-form-confirm :is(th,td) {
	border: 1px solid var(--gray);
}
.tbl-form-confirm th {
	font-weight: normal;
    background: #efefef;
    text-align: left;
}
.tbl-form-confirm td {
	background-color: var(--white);
}

@media screen and (max-width: 960px) {
	.tbl-form.table960 th {text-align: left; padding-top: 0;}
	.tbl-form.table960 input:not(.input-post-code):not(.input-number):not([type="radio"]):not([type="checkbox"]),
	.tbl-form.table960 textarea {width: 100%;}
	.tbl-form.table960 input {margin: 0;}
	.tbl-form.table960 .form-mult input {margin-bottom: .5rem;}
	
	/* 確認画面 */
	.tbl-form-confirm.table960 :is(th,td) {padding: 1rem .5rem;}
	.tbl-form-confirm.table960 th {border-bottom: none;}
	.tbl-form-confirm.table960 tr:not(:first-of-type) th {border-top: none;}
}
@media screen and (max-width: 768px) {
	.tbl-form.table768 th {text-align: left; padding-top: 0;}
	.tbl-form.table768 input:not(.input-post-code):not(.input-number):not([type="radio"]):not([type="checkbox"]),
	.tbl-form.table768 textarea {width: 100%;}
	.tbl-form.table768 input {margin: 0;}
	.tbl-form.table768 .form-mult input {margin-bottom: .5rem;}
	
	/* 確認画面 */
	.tbl-form-confirm.table768 :is(th,td) {padding: 1rem .5rem;}
	.tbl-form-confirm.table768 th {border-bottom: none;}
	.tbl-form-confirm.table768 tr:not(:first-of-type) th {border-top: none;}
}
@media screen and (max-width: 560px) {
	.tbl-form.table560 th {text-align: left; padding-top: 0;}
	.tbl-form.table560 input:not(.input-post-code):not(.input-number):not([type="radio"]):not([type="checkbox"]),
	.tbl-form.table560 textarea {width: 100%;}
	.tbl-form.table560 input {margin: 0;}
	.tbl-form.table560 .form-mult input {margin-bottom: .5rem;}
	
	/* 確認画面 */
	.tbl-form-confirm.table560 :is(th,td) {padding: 1rem .5rem;}
	.tbl-form-confirm.table560 th {border-bottom: none;}
	.tbl-form-confirm.table560 tr:not(:first-of-type) th {border-top: none;}
}



/* その他
-------------------------------------*/
/* ページトップへ戻るボタン */
#page-top {
	position: fixed;
	right: 15px;
	bottom: 0;
	z-index: 4;
	transition: bottom 0.3s ease-in-out;
}

#page-top.show {
    bottom: 20px; /* 表示時の位置 */
}

#page-top a {
	display: block;
	width: 50px;
	font-weight: bold;
	background-color: var(--sub-color_01);
	color: var(--white);
	text-align: center;
	padding: 15px 5px;
	border-radius: 5px;
	transition: background-color 0.3s;
}


/*追加*/

#menu-btn {
  position: absolute;
  top: 35px;
  right: 20px;
  width: 60px;
  height: 76px;
  cursor: pointer;
  z-index: 2;
}
#menu-conts {
  display: none;
  position: absolute;
  top: 138px;
  right: 0;
  width: 100%;
  background: rgba(164,157,118,0.8);
  z-index: 1;
}
#menu-conts ul  {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-evenly;
}
#menu-conts li a {
  display: block;
  color: #fff;
  padding: 14px;
  text-decoration: none;
}
#menu-conts li a:hover {
  background: rgba(0,0,0,0.6);
}

.main-left img{
	border-radius: 30px 0 0 30px;
}

.main-right img{
	border-radius: 0 30px 30px 0;
}

.area-title{
  padding: 0.25em 0.5em;/*上下 左右の余白*/
  color: #494949;/*文字色*/
  background: #DAE3C5;/*背景透明に*/
  border-left: solid 5px #8AA95C;/*左線*/
}

.sub-title{
  padding: 0.25em 0.5em;/*上下 左右の余白*/
  color: #494949;/*文字色*/
  /*background: #f2eab6;*/
  border-bottom: dashed 2px #edd76b;/*左線*/
}


.catch-img{
	position:absolute;
	top: 5%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
	width: clamp(9.375rem, 5.515rem + 11.03vw, 18.75rem);
}

.greetings{
	text-align: center;
	font-weight: 400;
	font-size: clamp(1.25rem, 1.106rem + 0.64vw, 1.875rem);
	line-height: 1.6;
}

.greetings-text{
    text-align: left;
    line-height: 1.8;
    padding: 0 1rem;
    font-size: 18px;
}

.detail-ttl{
	font-size: clamp(1.563rem, 1.13rem + 1.92vw, 3.438rem);
	color: #a49d76;
	text-align: center;
	font-weight: 200;
	margin-bottom: 1rem;
}

.detail-sub{
	text-align: center;
	font-size: 21px;
	margin-bottom: 1rem;
}

.detail-btn a {
  position: relative;
  display: block;
  width: 200px;
  padding: 15px 0;
  border: 1px solid #a49d76;	
  background-color: #a49d76;
  border-radius: 5px;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  text-align: center;
  margin: 0 auto;
}

.detail-btn a:hover {
    border: 1px solid #a49d76;
    background-color: #fff;
    color: #a49d76;
    font-weight: 600;
}

.btn-arrow-right a::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  width: 10px;
  height: 10px;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  box-sizing: border-box;
}

.btn-arrow-right a:hover::after {
    border-top: 2px solid #a49d76;
  border-right: 2px solid #a49d76;
}

.foot-border {
    display: flex;
    align-items: center;
}

.foot-border:before,
.foot-border:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #a49d76;
	margin-top: clamp(5rem, 3.199rem + 5.15vw, 9.375rem);
}

.foot-border:before {
    margin-right: 1rem;
}

.foot-border:after {
    margin-left: 1rem;
}

.foot-tel{
	margin: 2rem auto 4rem;
	text-align: center;
}

.foot-tel a img{
	max-width: 386px;
	width: 100%;
}

.foot-px20 {
    padding-left: 2rem;
    padding-right: 2rem;
}


/*htmlページ*/

a.anchor{
    display: block;
    padding-top: 140px;
    margin-top: -140px;
}

.page-link li{
	display: inline-block;
    width: 24.5%;
    text-align: center;
    padding: 15px;
}

.box-menu {
    position: relative;
    margin: 3em 0 2em;
    padding: 1rem 2rem;
    border: solid 3px #8AA95C;
}
.box-menu .box-title {
     position: absolute;
    display: inline-block;
    top: -27px;
    left: -3px;
    padding: 0 9px;
    height: 25px;
    line-height: 25px;
    font-size: 17px;
    background: #8AA95C;
    color: #ffffff;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
}
.box-menu p {
    /*margin: 0; */
    padding: 2px 1rem;
}

.box-menu2 {
    position: relative;
    margin: 2em 0;
    padding: 7px 2rem 7px;
    border: solid 3px #edd76b;
}
.box-menu2 .box-title {
     position: absolute;
    display: inline-block;
    top: -27px;
    left: -3px;
    padding: 0 9px;
    height: 25px;
    line-height: 25px;
    font-size: 17px;
    background: #edd76b;
    color: #ffffff;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
}
.box-menu2 p {
    margin: 0; 
    padding: 2px 1rem;
}

.box-tel{
    padding: 0.2em 0.5em;
    margin: 4em 0;
    background: #ffeaea;
    box-shadow: 0px 0px 0px 10px #ffeaea;
    border: dashed 2px white;
	border-radius: 8px;
}
/*.box-tel p {
    margin: 0; 
    padding: 0;
}*/

.box-blue{
    padding: 0.5em 1em;
    margin: 2em 0;
    background: -webkit-repeating-linear-gradient(-45deg, #f0f8ff, #f0f8ff 3px,#e9f4ff 3px, #e9f4ff 7px);
    background: repeating-linear-gradient(-45deg, #f0f8ff, #f0f8ff 3px,#e9f4ff 3px, #e9f4ff 7px);
}

.border-r20{
	border-radius: 20px;
}

div.txt_2 {
    color: #222;
    font-size: 14px;
    padding: 20px 0;
    margin: 0px auto;
    line-height: 145%;
}

strong.line {
    font-weight: bold;
    color: #222;
    font-size: 16px;
    text-decoration: underline;
}

.tbl-border {
	border: 1px solid var(--light-gray);
	border-collapse: collapse;
}

/* テーブル(同色下線) */
.tbl-border tr {
	border-bottom: 1px solid var(--light-gray);
}
.tbl-border tr:first-of-type {
	border-top: 1px solid var(--light-gray);
}



.tbl-border th {
	vertical-align: text-top;
    font-size: 1.075em;
    text-align: left;
	padding-left: 2rem;
    padding-right: 2rem;
	border-right: 1px solid var(--light-gray);
	background-color: #F0EEE5
}

/* テーブル(tdタイトル) */
.tbl-td-ttl td {padding: .5rem; vertical-align: text-top;}

@media screen and (max-width: 960px) {
	/* テーブル(同色下線) */
	.tbl-border.table960 th {padding-left: .5rem; padding-right: .5rem;}
	
	/* テーブル(tdタイトル) */
	.tbl-td-ttl.table960 tr td:first-of-type {padding-bottom: 0;}
	.tbl-td-ttl.table960 tr td:not(:first-of-type) {padding-top: 0;}
}
@media screen and (max-width: 768px) {
	/* テーブル(同色下線) */
	.tbl-border.table768 th {padding-left: 1rem; padding-right: 1rem;}
	
	/* テーブル(tdタイトル) */
	.tbl-td-ttl.table768 tr td:first-of-type {padding-bottom: 0;}
	.tbl-td-ttl.table768 tr td:not(:first-of-type) {padding-top: 0;}
}
@media screen and (max-width: 560px) {
	/* テーブル(同色下線) */
	.tbl-border.table560 th {padding-left: .5rem; padding-right: .5rem;}
	
	/* テーブル(tdタイトル) */
	.tbl-td-ttl.table560 tr td:first-of-type {padding-bottom: 0;}
	.tbl-td-ttl.table560 tr td:not(:first-of-type) {padding-top: 0;}
}

/* table01 */
#table01 tr {
  vertical-align: top;
}

#table01 th,
#table01 td {
  padding: 10px 0;
  border: none;
}

#table01 th {
  width: 40%;
text-align: left;	
}

#table01 th::before{
  content: "";
  display: inline-block;  
  background-image: url('../images/common/icon.png');
  background-size: cover;
  background-repeat: no-repeat;
  width: 18px;
  height: 15px;
  margin-right: 5px;  
}

/* sp */
@media only screen and (max-width: 560px) {
  #table01 th,
  #table01 td {
    width: 100%;
    display: block;
  }

  #table01 th {
    width: 100%;
  }

  #table01 td {
    padding-top: 0;
  }
}

@media screen and (max-width: 1024px) {
.page-link li {
    width: 48.5%;
	padding: 0;
}
}

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

	.gree-ttl{
		width: 50%;
		margin: 5rem auto 1rem;
	}	
	
.area-title{
  padding: 0.25em 0.25em;/*上下 左右の余白*/
 }	
	
.box-menu {
    padding: 1rem;
   }
	
.box-menu2 {
    padding: 7px 1rem 7px;
    }
	

/*.fv {
    margin: 3rem auto;
}*/	
	
.flex {
    display: block;
    }
	
.main-left img{
	border-radius: 15px 15px 0 0;
}

.main-right img{
	border-radius: 0 0 15px 15px;
}	
	
.catch-img {
        top: 100%;
        width: 100%;
    }
	
.foot-px20 {
    padding-left: 0;
    padding-right: 0;
}	
	
.page-link{
	margin-top: 2rem;
	}	
	
.page-link li {
    width: 100%;
	}
	
}


