@charset "UTF-8";
/* CSS Document */

html{
	font-family: 'Ysabeau Infant', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

.ysabeau{
	font-family: 'Ysabeau Infant', sans-serif;
	font-weight: 200;
}

/*==============================*/
/*文字周りの指定ー基本*/

h1,h2,h3,h4,h5,h6,
h1 span.ysabeau,
h2 span.ysabeau,
h3 span.ysabeau,
h4 span.ysabeau,
h5 span.ysabeau,
h6 span.ysabeau{
	font-weight: 700;
/*	background: #efefef;*/
	color: var(--color-title);
}

h1#logo{
	font-size: 7rem;
	letter-spacing: 0.25rem;
	line-height: 1.5;
	margin-bottom: 0.5rem;
	z-index: 5;
}
h1,h1 span.ysabeau{
	font-size: 1.75rem;
	letter-spacing: 6.4px;
	margin-bottom: 17px;
/*	color: #5B8078;*/
	color: #72AAAB;
}
h2, h2 span.ysabeau{
	font-size: 2.23rem;
	letter-spacing: 4.6px;
	line-height: 1.0;
	margin-bottom: 27px;
/*	font-weight: 400; */
	color:#CCB8B1;
}
h3, h3 span.ysabeau{
	font-size: 1.5rem;
	letter-spacing: 4.6px;
	line-height: 1.67;
	margin-bottom: 7px;
}
h4, h4 span.ysabeau{
	font-size: 1.125rem;
	letter-spacing:0.5px ;
	margin-bottom: 16px;
	font-weight: 400;
}

h5, h5 span.ysabeau{
	font-size: 1.5rem;
	letter-spacing: 0.2rem;
	margin-bottom: 16px;
}

p,li{
	font-size: 1rem;
	letter-spacing: 1.3px;
	color:var(--color-text);
	margin-bottom: 16px;
}


/*==============================*/
/*汎用デザインの指定*/

/*行頭文字の指定*/
ul{
	list-style:disc;
}

ol{
	list-style: decimal;
}

/*行頭文字を削除*/
.ls-none{
	list-style: none;
}

/*左寄せにしたままリスト全体を中央配置*/
.ls-center{
	width: fit-content;
    margin: auto;
}

/*インデント*/
.indent{
	text-indent: 1.1rem;
}

/*テキストの揃え位置*/
.ta-c{
	text-align: center;
}
.ta-l{
	text-align: left;
}
.ta-r{
	text-align: right;
}
.callout{
    margin: -20px;
    background-color: #fffcfa;
    padding: 33px 24px 36px 24px;
    font-size: 14px;
    border-radius: 13px;
    color: #947365;
}
.callout h4{
	letter-spacing: 3px;
	position: relative;
  	text-align: center;
	margin-bottom: 11px;
	}

.title-1,.title-2{
	display: inline-block;
	color: #FFFFFF;
    padding: 20px 40px 20px 40px;
    /* font-size: 14px; */
    border-radius: 13px;
    margin-bottom: 24px;
    font-size: 18px;
}
.title-1{
	background-color: var(--color-title);
}

.title-2{
/*	color: #EAF7ED;*/
	background-color: #72AAAB;
}

/*==============================*/

/*Google Mapのレスポンシブ化*/
.google-map {
    position: relative;
    padding: 20%;
    height: 0;
    overflow: hidden;
}
.google-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}




/*==============================*/

/*YouTube動画のレスポンシブ化*/
.youtube {
    position: relative;
    width: 100%;
    padding-top: 56.25%;    /*9:16=x:100*/
    margin-bottom: 2rem;
}
.youtube iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}




/*==============================*/

/*画像の設定*/
img{
	display: block;
	max-width: 100%;
	height: auto;
	padding-bottom: 5px;
	margin: auto;
	border-radius: 15px;
}
#header-logo img{
	padding-bottom: 0;
}

/*ドロップシャドウをつけたい時*/
img.dropshadow{
	color: #333333;
	box-shadow: 3px 3px 10px -4px rgba(0, 0, 0, 0.15);
	border-radius: 0px;
}


/*==============================*/
/*リンク周りの設定*/

/*基本*/
a{
	text-decoration: underline solid 0.5px;
    /* color: #ED8F26; */
    color: #72AAAB;
    text-underline-offset: 0.6ex;
}

a.td-none,
a.hvr-td-none{
	text-decoration: none;
	color: var(--color-text);
}
a.hvr-td-none:hover{
	background: var(--color-hover);
}

/*下線がひかれるホバーアニメーション*/

/*基本*/
a.hvr-underline,
a.hvr-underline-LR{
	position: relative;
	display: inline-block;
}

a.hvr-underline::after,
a.hvr-underline-LR::after{
	position: absolute;
	left: 25%;
	transform: scale(0, 1);
	content: '';
	width: 50%;
	height: 2.5px;
	background: var(--color-hover);
	transition: transform 0.3s ease-in;   /*変形の時間*/
}
a.hvr-underline-LR::after{
	left: 0;
	transform: scale(0, 1);
	content: '';
	width: 100%;
	height: 0.5px;
	background: var(--color-hover);
}



/*中央から左右へ*/
a.hvr-underline::after{
	bottom: -5px;
	transform-origin: center top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
}
a.hvr-underline:hover::after {
transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
}

/*左から右へ*/
a.hvr-underline-LR::after{
	bottom: 10px;
	background: var(--color-text);
	transform-origin: right top;
}
a.hvr-underline-LR:hover::after{
	transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
	transform-origin: left top;
}

/*文字間が広がる*/
a.hvr-textExtend{
	letter-spacing: inherit;
	transition:0.3s;
}
a.hvr-textExtend:hover,
button:has(a.hvr-textExtend):hover a{ /*子要素にhvr-textExtendをクラス属性に持つa要素を含むbuttonタグにホバーした時の指定*/
	letter-spacing: 0.3rem;
}
	

/*==============================*/

/*縦線で区切られた表*/
.table_design05 {
  border-collapse: collapse;
  width: 100%;
  max-width: 700px;
}
.table_design05 th, .table_design05 td {
  padding: 1em;
}
.table_design05 th {
/*  color: #4d9bc1;*/
  color: #72AAAB;
	font-weight: bold;
  text-align: left;
  width: 20%;
  min-width: 4em;
  position: relative;
}
.table_design05 th::after {
  content: '';
  background-color: #c1c7c6;
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
}





/*==============================*/

/*詳細ボタン*/

.l-btn_a,
.l-btn_b,
.l-btn_c,
.l-btn_d,
.l-btn_e,
.l-btn_f{
	padding: 0.825rem 0;
    background: var(--color-title);
    border-radius: 9px;
    text-align: center;
    margin: 0 auto;
    width: 250px;
}

.l-btn_b,
.l-btn_d{
	background: #72AAAB;
}
.l-btn_e{
	background: #8ba98b;
}
.l-btn_f{
	background: #c09ebf;
}

.l-btn_a a,
.l-btn_b a,
.l-btn_c a,
.l-btn_d a,
.l-btn_e a,
.l-btn_f a,
.l-btn_f{
	font-weight: 700;
	letter-spacing: 3px;
	color: #FFFFFF;
	transition: 0.3s ease-in-out;   /*変形の時間*/
}

.l-btn_a:after,
.l-btn_b:after,
.l-btn_c:after,
.l-btn_d:after,
.l-btn_e:after{
	content: "\f0da";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	color: #fff;
	padding-left: 0.5rem;
	transition: 0.3s ease-in-out;
}
#tera-no-omise #kitchen .l-btn_a{
	background: #d8ad99;
}

.l-btn_e:after{
	content: "\f16d";
	font-family: "Font Awesome 6 Brands";
	font-weight: 700;
	font-size: 22px;
}
.l-btn_f:before{
	content: "\f879";
	font-family: "Font Awesome 6 Free";
	font-weight: 700;
	font-size: 22px;
}

.l-btn_a:hover,
#tera-no-omise #kitchen .l-btn_a:hover,
.l-btn_b:hover,
.l-btn_e:hover{
	background: #F1EFE8;
}

.l-btn_a:hover a,
.l-btn_a:hover:after
{
	color: var(--color-title);
}

.l-btn_b:hover a,
.l-btn_b:hover:after{
	color: #72AAAB;
}

.l-btn_e:hover a,
.l-btn_e:hover:after
{
	color: #8ba98b;
}
/*
.l-btn_f:hover,
.l-btn_f:hover:after
{
	background: #F1EFE8;
	color: #c09ebf;
}
*/

#gnavi_4 button{
	padding: 0.625rem 0;
    background: #72AAAB;
/*    border-radius: 5px;*/
    text-align: center;
    margin: 0 auto;
    width: 168px;
}
#gnavi_4 ul li:last-child button{
	background: var(--color-head);
}

#gnavi_4 button a{
	color: #FFFFFF;
	letter-spacing: 0.05rem;
}

#gnavi_4 button a:after{
	content: "\f54f";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	color: #fff;
	padding-left: 0.5rem;
}

#gnavi_4 ul li:last-child button a:after{
	content: "\f07a";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	color: #fff;
	padding-left: 0.5rem;
}

/*==============================*/
/*header*/
/*gnavi*/
#gnavi_1{
	margin: 1rem;
}
.menu-gnavi ul li a{
	font-size: 0.875rem;
	letter-spacing: 0.2rem;
}
#gnavi_2 ul li a,
#gnavi_3 ul li a{
	font-size: 1.23125rem;
	letter-spacing: 0.2rem;
	margin-bottom: 9px;
}

#gnavi_3 ul li:nth-child(1) a{
	margin: 0 2px 0 40px;
}#gnavi_3 ul li:nth-child(2) a{
	margin: 0 5px 0 10px;
}
#gnavi_2 .ysabeau,
#gnavi_3 .ysabeau,
#gnavi_4 .ysabeau{
	font-weight: 400;
}


#gnavi_1 .gnavi-item:not(:last-child){
    border-right: 0.2px dotted var(--color-text);
    /* margin-right: 16px; */
    /* padding-right: 13px; */
    padding: 0px 40px 0 0px;
}
	
#gnavi_3{
	max-width: 600px;
	margin: 11.25rem auto 2.5rem;
}

#gnavi_4>ul>li{
	margin-left: 1rem;
}

/*==============================*/
/*#image*/
#front-image{
    max-width: 824px;
    height: 476px;
    margin: 0 auto 6.8125rem;
}
#front-image:after{
	content: '';
    display: block;
    max-width: 824px;
    height: 476px;
    margin: 0 auto;
    background-image: url("../img/World_Harmony_Tera6.jpg");
    background-size: 110%;
    background-position: top;
    overflow: hidden;
    background-repeat: no-repeat;
    border-radius: 15px;
}

.teraseikatu #front-image:after{
	background-image: url("../img/teraseikatu2.jpg");
	background-position: 95% -13%;
	max-width: 660px;

}

/*==============================*/
/*#lead*/
#lead{
	padding-bottom: 4.125rem;
	margin: 0 auto 1rem;
	max-width: 620px;
}

#lead p{
/*	padding-bottom: 42px;*/
	font-size: 1.125rem;
	letter-spacing: 0.075rem;
	line-height: 2;
}
#lead p:not(:last-child){
	padding-bottom: 1.5rem;
}


/*==============================*/
/*#news*/
#news {
/*	background: url("../img/asa.jpg") no-repeat;*/
/*
	margin: 50px auto 0;
	padding-bottom: 50px;
*/
}
#news .wrapper{
	margin: 0 1rem;
	padding: 50px 0 36px 0;
}
.news-area{
	background: #fff;
	border-radius: 15px;
	max-width: 824px;
	margin: 0 auto;
	padding: 30px;
}

.news-list-area{
	max-width: 599px;
	margin: 0 auto;
	padding-top: 15px;
}

#news h3{
	color: #72AAAB;
	font-weight: 400;
}

#news .flex-bp600{
	justify-content: flex-start;
}

#news a{
	color: var(--color-text);
}
#news .entry-box-three{
	padding-left: 3rem;
}


/*==============================*/
/*#blog*/
#blog img{
	padding: 6.5rem 0;
	
}


/*==============================*/
/*footer*/
footer{
    background: #fffbf7;
    padding: 3rem 0 0 0;
/*	background: url("../img/asa.jpg") no-repeat;*/
}

#footer-navi{
	max-width: 800px;
	display: flex;
	justify-content: space-around;
	margin: auto;
	padding:1rem 0 2rem;
    border-bottom: 0.5px solid var(--color-hover);
}
#footer-navi ul{
	display: block;
	padding: 1rem 0 1rem 2rem;
}
#footer-navi ul>li span{
	font-size: 0.67rem;
	display: block;
}

footer .ysabeau{
	font-size: 15px;
	padding: 0.5rem 0;
}

#footer-navi i{
	padding-left: 0.4rem;
}


/*==============================*/
/*  ウィジット*/

.module-set ul{
	list-style:none;
}

/*==============================*/
/*下層ページ*/
/*タイトルエリア*/
#title{
/*	background: url("../img/asa.jpg") no-repeat;*/
/*	padding: 8.1875rem 0 4.8125rem;*/
	padding: 4.1875rem 0;
/*	margin-bottom: 10rem;*/
}
#title p{
	color: var(--color-head);
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	
}
#title .ysabeau{
	font-weight: 700;
}
/*#isyokujuu*/
#isyokujuu .wrapper{
	max-width: 824px;
	margin: 0 auto;
}

#isyokujuu .wrapper img{
	width: 220px;
	margin: 0 auto 32px 0;
}

#isyokujuu .wrapper p{
	padding: 23px 0 23px 10px;
}

#isyokujuu .flex-bp600{
	align-items: flex-end;
	margin-bottom: 15.1875rem;
}
#isyokujuu .flex-bp600 .entry-box-two:nth-child(2){
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
#isyokujuu button,
#tera-no-omise button{
	margin-bottom: 2rem;
}




/*#kaisyagaiyou*/

/*#enkaku*/
#enkaku{
	max-width: 600px;
}
#enkaku table{
	font-size: 0.875rem;
}

/*#tenpojouhou*/
#tenpojouhou .google-map{
	padding: 37%;
	border-radius: 15px;
}

/*#Teracommunity*/
#Teracommunity .flex-bp600{
	margin-bottom: 2.5rem;
}
#Teracommunity .entry-box-three{
/*	font-size: 18px;*/
	font-weight: 700;
	color: #72AAAB;	
}
#Teracommunity h2{
	color: var(--color-title);}

/*#terastory*/
/*
#TeraStory.pagebody{
	width: 728px;
}

#TeraStory .flex-bp600 {
    padding-bottom: 3rem;
    padding-left: 1rem;
}

#TeraStory p{
	line-height: 2;
	letter-spacing: 1.8px;
	margin-bottom: 20px;
}

#TeraStory h3{
	 margin-bottom: 32px;
}

#TeraStory .wrapper{
	margin: 0 auto 96px;
}

#TeraStory .wrapper {
    margin: 0 auto 96px;
    border-left: 0.5px solid var(--color-hover);
    padding-left: 0.85rem;
}
#TeraStory .wrapper>h4 {
    position: relative;
    font-weight: bold;
}
#TeraStory .wrapper>h4::before {
    content: "";
    position: absolute;
    top: 7.5px;
    left: -22px;
    background: var(--color-title);
    width: 15px;
    height: 15px;
    border-radius: 10px;
}

#TeraStory #next{
	border: none;
}
*/

/*#tera-no-omise*/
#tera-no-omise .title-img{
	margin-left: 0;
	margin-bottom: 1rem;
	border-radius: 0;
	width: 90%;
}

#tera-no-omise h1,
#tera-no-omise h1 .ysabeau{
	font-size: 2.4rem;
    letter-spacing: 7.2px;
}

#tera-no-omise h4{
	color: var(--color-text);
	font-size: 1.125rem;
	letter-spacing: 1px;
}

#tera-no-omise p{
	margin-bottom: 1.5rem;
}

#story{
	padding-bottom: 5rem;
}

/*個別記事ページ*/
.page .flex-bp600{
    padding-top: 16px;
    padding-bottom: 3px;
    margin-bottom: 16px;
}

/*レスポンシブデバイス対応*/

@media screen and (max-width: 599px){
	h2, h2 span.ysabeau{
		font-size: 1.8rem;
		letter-spacing: 3.6px;
	}
	img{
		padding: 10px 10px 15px 10px;
		border-radius: 22px;
	}
	
	#tera-no-omise img{
		padding: 24px 24px 40px 5px;
	}
	
	#tera-no-omise h1,
	#tera-no-omise h1 .ysabeau{
	font-size: 1.75rem;
    letter-spacing: 6.4px;
}

	
	.l-btn_a{
		width: 300px;
	}
	
	#lead{
		padding-bottom: 0rem;
		margin: 0 auto 1rem;
		max-width: 350px;	
	}

	#lead p{
		font-size: 1rem;
	}
	
	
	#title{
		padding: 10.1875rem 0 0.8125rem;
	}
	#front-image{
		margin: 9.1685rem 0 3rem;
		height: 250px;
	}	
	#front-image:after{
		height: 241px;
		background-size: 125%;
	}
	
	#news .entry-box-three{
		padding-left: 0rem;
	}
	
	#isyokujuu .wrapper p{
		padding: 0;
	}
	#isyokujuu .flex-bp600{
		padding: 1rem;
		margin-bottom: 7.1875rem;
	}
	#isyokujuu button{
		margin-top:1.8rem;
		margin-bottom: 0;
	}
	
	#TeraStory .flex-bp600 {
    	padding-left: 0.3rem;
	}
	
	#footer-navi{
		margin: 2rem;
		display: block;
	}
}



@media screen and (min-width: 600px){
	#isyokujuu .entry-box-two{
		padding-left: 2rem;
	}
	
		
	#blog img{
		width: 584px;	
	}
}

@media screen and (max-width: 727px){
	
	#gnavi_1 .gnavi-item:not(:last-child){
		border-right: none;
		margin-right: 0;
		padding-right: 0;
	}
	
	#TeraStory.pagebody{
		margin: 0 2rem;
		width: fit-content;
	}
	
	#gnavi_4 button{
		margin: 0;
	}
	#gnavi_4>ul>li{
		margin-left: 0;
	}

}

@media screen and (min-width: 728px){
	
	/*==============================*/


}
