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

/* リセットCSS */

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
margin:0;
padding:0;
border:0;
outline:0;
font-size:100%;
vertical-align:baseline;
background:transparent;
list-style: none;
}

body {
line-height:1;
font-family: 'Noto Sans JP', sans-serif;
width: 100%;
-webkit-text-size-adjust: 100%;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
display:block;
}

nav ul {
list-style:none;
}

blockquote, q {
quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
content:'';
content:none;
}

a {
margin:0;
padding:0;
font-size:100%;
vertical-align:baseline;
background:transparent;
text-decoration: none;
color: black;
}


/* change colours to suit your needs */
ins {
background-color:#ff9;
color:#000;
text-decoration:none;
}

/* change colours to suit your needs */
mark {
background-color:#ff9;
color:#000;
font-style:italic;
font-weight:bold;
}

del {
text-decoration: line-through;
}

abbr[title], dfn[title] {
border-bottom:1px dotted;
cursor:help;
}

table {
border-collapse:collapse;
border-spacing:0;
}



@media all and (min-width: 768px) {
.pc { display: block !important; }
.sp { display: none!important; }
}

@media all and (max-width: 768px) {
.pc { display: none !important; }
.sp { display: block!important; }
}


body {
	// PC用の横幅を指定
	min-width: 1150px;
}
// スマートフォンのブレイクポイント
@media screen and (max-width: 769px){
	body {
		// 初期化
		min-width: initial;
	}
}


/*メニュー*/
.menu {
	position: relative;
}

.menu-bar {
	position: fixed;
	z-index: 9999;
	right: 0;
	top: 0;
	width: 70px;
	height: 100vh;
	background-color:#728088;
}


.menu-logo {
	position: absolute;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}


.yajirushi {
	width: 60%;
	position: absolute;
	bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}



/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
	top:0;
    right: -120%;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:#728088;
    /*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    text-align: center; 
}

#g-nav li a{
	color: #fff;
	text-decoration: none;
	padding:20px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-family: 'Red Hat Display', sans-serif;
	font-size: 24px;font-weight: 700;
	letter-spacing: 0.15em;
}

#g-nav li a span{
	font-size: 15px;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
}



/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:10px;
	right: 12.5px;
	cursor: pointer;
    width: 45px;
    height:50px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 0px;
    height: 2px;
	background-color: #fff;
  	width: 100%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:32px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 0px;
    transform: translateY(6px) rotate(-45deg);
    width: 100%;
}

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

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 0px;
    transform: translateY(-6px) rotate(45deg);
    width: 100%;
}



@media screen and (max-width: 769px){
	.menu-bar {height: 60px; width: 100%;}
	.menu-logo {width: 50%;}
	.openbtn span:nth-of-type(1){top: 10px;}
	.openbtn span:nth-of-type(2){top: 20px;}
	.openbtn span:nth-of-type(3){top: 30px;}
}




/*トップイメージ*/
.top-logo {
	position: relative;
}

.top-logo img {
	position: absolute;
	left: 30px;
	top: 25px;
	z-index: 100;
}



.tophaikei img {
	width: 100%;
}


.topimg {
	width: 100%;
	position: relative;
}


.topimg img {
	position: absolute;
	z-index: 100;
	position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
	width: 77%;
	min-width: 850px;
	margin-top: -20px;
}



.backgaround {
	background: #e6e5d2;
}



.title {
	width: 100%;
	position: relative;
	z-index: 100;
}



.title h1 {
	display: inline-block;
	font-family: 'Red Hat Display', sans-serif;
	text-align: left;
	font-size: clamp(60px, 6vw, 150px);
	font-weight: 900;
	color: #354a55;
	margin-top: 6%;
	padding-left: 10%;
}


.title h1 span {
	font-size: clamp(30px, 3vw, 150px);
}


.title img {
	position: absolute;
	left: 30px;
	bottom: 10px;
}




@media screen and (max-width: 769px){
	.topimg img {width: 100%; min-width: inherit; margin-top: 55px;}
	.tophaikei img {margin-top: 50px;}
	.title h1 {margin-top: 20%; font-size: 11vw;}
	.title h1 span {font-size: 5.5vw;}
}





/*コンセプト*/

.concept {
	overflow: hidden;
	margin-bottom: 3%;
	position: relative;
	z-index: 5;
}

.concept-2 {
	display: flex;
	margin-top: 100px;
	padding-left: 10%;
	padding-bottom: 9%;
	position: relative;
	z-index: 4;
}

.concept-3 {
	z-index: 3;
}

.concept-3 h3 {
	font-family: 'Red Hat Display', sans-serif;
	font-size: clamp(60px, 4vw, 85px);
	color: #354a55;
	font-weight: 900;
	line-height: 1.2em;
	margin-bottom: 2%;
}


.concept-3 h4 {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: clamp(30px, 2vw, 50px);
	font-weight: 800;
	color: #354a55;
	margin-bottom: 4%;
}

.concept-3 h5 {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: clamp(24px, 1.5vw, 50px);
	font-weight: 800;
	color: #354a55;
	line-height: 1.4em;
	margin-bottom: 1%;
}

.concept-3 p {
	font-family: 'Red Hat Display', sans-serif;
	font-weight: 900;
	color: #354a55;
	font-size: clamp(15px, 1vw, 22px);
	line-height: 1.8em;
	white-space: nowrap;
	margin-bottom: 2%;
	z-index: 3;
}


.concept-3 img { 
	margin-top: 10%;
	width: 70%;
}


.concept-4 {
	position: relative;
	z-index: 3;
}


/*

.concept-4 img {
	width: 50vw;
	min-width: 750px;
	max-width: 1200px;
}
*/

.wood img {
	width: 100%;
	position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
	bottom: 0;
}


@media screen and (max-width: 769px){
	.concept-2 {margin-top: 40px; display: block; padding-left: 0; width: 100%; text-align: center; padding-bottom: 15%;}
	.concept-3 {width: 80%; display: inline-block; text-align: left;}
	.concept-3 h3 {font-size: 9vw; line-height: 1em; margin-bottom: 10px;}
	.concept-3 h4 {font-size: 6vw; line-height: 1.4em;}
	.concept-3 p {font-size: 16px; width: 100%; white-space: normal; line-height: 1.7em; font-weight: 400;}
	.concept-3 img {width: 100%;}
	.concept-3 br {display: none;}
	.concept-4 img {width: 80%; min-width: inherit; margin-top: 10px;}
}



/*TXシリーズについて*/

/*
.about {
	text-align: center;
}

*/

.subtitle-about {
	width: 80%;
	display: inline-block;
}



.subtitle-about ul {
	display: flex;
}


.subtitle-about h3 {
	font-family: 'Red Hat Display', sans-serif;
	color: #354a55;
	font-weight: 900;
	font-size: clamp(30px, 3vw, 60px);
	text-align: left;
	margin-bottom: 5px;
}


.subtitle-about h3 span {
	font-size: clamp(16px, 1vw, 22px);
	color: #354a55;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 600;
	padding-left: 20px;
}



.border-about {
	width: 100%;
	height: 5px;
	background-color: #555555;
	position: relative;
}


.border-about2 {
	width: 31%;
	max-width: 500px;
	height: 5px;
	position: absolute;
	background-color: #354a55;
}




@media screen and (max-width: 769px){
	.subtitle-about ul{display: block;}
	.subtitle-about h3 {font-size: 8vw;}
	.subtitle-about h3 span {padding-left: 0; font-size: 4vw;}
}


/*

.about-tx {
	margin-top: 40px;
	overflow: hidden;
}
*/


/*
.about-tx img {
	width: 100%;
	min-width: 1200px;
}
*/


/*
@media screen and (max-width: 769px){
	.about-tx img {min-width: inherit;}
}
*/


/*
.about-tx2 {
	position: relative;
}
*/

/*
.about-tx2 ul {
	position: absolute;
	z-index: 10;
	text-align: left;
	top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	margin-left: 10%;
	width: 50%;
	max-width: 700px;
	min-width: 530px;
}
*/


/*
.about-tx2 h4 {
	font-family: 'Red Hat Display', sans-serif;
	font-weight: 900;
	font-size: 40px;
	color: white;
	margin-bottom: 20px;
}
*/



.border {
	width: 100%;
	height: 3px;
	background-color: #555555;
	position: relative;
}



.border-2 {
	position: absolute;
	top: 0;
	left: 0;
	width: 10%;
	height: 3px;
	background-color: #354a55;
}

/*
.about-tx2 p {
	width: 100%;
	color: white;
	line-height: 1.7em;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	font-size: 16px;
	margin-top: 15px;
}
*/


/*
@media screen and (max-width: 769px){
	.about-tx2 ul{width: 80%; min-width: inherit;}
	.about-tx2 h4 {font-size: 8vw;}
}
*/



/*
.about-li {
	text-align: center;
	overflow: hidden;
}


.about-li2 {
	display: inline-block;
}


.about-li3 {
	display: flex;
	width: 100%;
	padding-left: 10%;
	margin-top: 7%;
}


.about-li4 {
	width: 38%;
	margin-right: 4%;
}


.about-li4 h4 {
	font-size: 2.3vw;
	color: #354a55;
	font-family: 'Red Hat Display', sans-serif;
	font-weight: 900;
	text-align: left;
	margin-top: 25px;
	margin-bottom: 20px;
}



.about-li4 p {
	font-size: 16px;
	color: #354a55;
	line-height: 1.8em;
	text-align: left;
	width: 100%;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	margin-top: 15px;
}


.about-li4 span {
	font-size: 14px;
	text-align: left;
	color: #354a55;
}


.about-li4 img {
	width: 100%;
}

*/


/*
@media screen and (max-width: 769px){
	.about-li3 {display: block;}
	.about-li4 {width: 80%; margin-right: 0; margin-bottom: 40px;}
	.about-li4 h4 {font-size: 7vw;}
}
*/




/*ベース*/

.base {
	text-align: center;
	z-index: 50;
	position: relative;
}


.base2 {
	margin-top:-100px;
}

.base3 {
	z-index: 30;
	top: 0;
    display: inline-block;
	background-color: white;
	width: 80%;
	/* border-radius: 15px; */
	margin-top: 10%;
	margin-bottom: -3%;
}



.subtitle-base {
	width: 90%;
	display: inline-block;
	padding-top: 3%;
}


.subtitle-base ul {
	display: flex;
}


.subtitle-base h3 {
	font-family: 'Red Hat Display', sans-serif;
	color: #354a55;
	font-weight: 900;
	font-size: clamp(30px, 3vw, 60px);
	text-align: left;
	margin-bottom: 5px;
}


.subtitle-base h3 span {
	font-size: clamp(16px, 1vw, 22px);
	color: #354a55;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 600;
	padding-left: 20px;
}


/* .border-base {
	width: 100%;
	height: 5px;
	background-color: #555555;
	position: relative;
}

*/


.border-base {
  height: 8px;
  background-image: repeating-linear-gradient(45deg, #ccc 0, #ccc 1px, transparent 0, transparent 50%);
  background-size: 8px 8px;
}


/* .border-base2 {
	width: 11.5%;
	max-width: 170px;
	height: 5px;
	position: absolute;
	background-color: #354a55;
}
*/



@media screen and (max-width: 769px){
	.subtitle-base ul{display: block;}
	.subtitle-base h3 {font-size: 8vw;}
	.subtitle-base h3 span {padding-left: 0; font-size: 4vw;}
	.wood-back {top: 0;}

}




.base-spec {
	display: flex;
	padding-top: 2%;
	padding-left: 5%;
	padding-bottom: 5%;
}


.base-spec img {
	width: 100%;
	/* border-radius: 15px; */
}


.base-spec2 {
	width: 80%;
	margin-left: 5%;
}


.base-spec2 li {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 15px;
	color: #354a55;
	font-weight: 500;
	text-align: left;
	width: 100%;
	padding-top: 3%;
	padding-bottom: 3%;
	line-height: 1.5em;
	border-bottom: solid 1px #354a55;
}



@media screen and (max-width: 769px){
	.base-spec {display: block; width: 100%; padding: 0;}
	.base-spec img {margin-top: 15px;}
	.base-spec3 {width: 85%; display: inline-block;}
	.base-spec2 {width: 100%; margin-left: 0; padding-bottom: 40px;}
}



/* 外装一覧 */

.soubi-all {
	background-color: #e6e5d2;
	padding-bottom: 100px;
}


.soubi {
	background-color: #e6e5d2;
	text-align: center;
	position: relative;
}



.soubi2 {
	z-index: 10;
	padding-top: 15%;
	position: relative;
}



.soubi-top {
	position: absolute;
	z-index: 0;
	top: -4%;
}



.soubi-top {
	width: 100%;
}


.soubi-top img {
	width: 100%;
}



.subtitle-out {
	width: 80%;
	display: inline-block;
	margin-bottom: 5%;
}


.subtitle-out ul {
	display: flex;
}


.subtitle-out h3 {
	font-family: 'Red Hat Display', sans-serif;
	color: #354a55;
	font-weight: 900;
	font-size: clamp(30px, 3vw, 60px);
	text-align: left;
	margin-bottom: 5px;
}


.subtitle-out h3 span {
	font-size: clamp(16px, 1vw, 22px);
	color: #354a55;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 600;
	padding-left: 20px;
}


/* .border-out {
	width: 100%;
	height: 5px;
	background-color: #555555;
	position: relative;
} */
.border-out {
  height: 8px;
  background-image: repeating-linear-gradient(45deg, #354a55 0, #354a55 1px, transparent 0, transparent 50%);
  background-size: 8px 8px;
}

/* .border-out2 {
	width: 17%;
	max-width: 500px;
	height: 5px;
	position: absolute;
	background-color: #354a55;
} */



@media screen and (max-width: 769px){
	.subtitle-out {margin-bottom: 30px;}
	.subtitle-out ul{display: block;}
	.subtitle-out h3 {font-size: 8vw;}
	.subtitle-out h3 span {padding-left: 0; font-size: 4vw;}
	.soubi-top {margin-top: -50px;}
	.inside-soubi .sp {margin-top: -70px}
}



.out-bun {
	text-align: center;
}


.out-bun p {
	width: 80%;
	text-align: left;
	display: inline-block;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	line-height: 1.6em;
	color: white;
	margin-bottom: 30px;
}


.bed {
	text-align: center;
	overflow: hidden;
	margin-bottom: 3%;
}


.bed3 {
	display: flex;
	justify-content: center;
	margin-bottom: 2%;
}

.bed3 h4 {
	text-align: left;
	color: #354a55;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 2vw;
	font-weight: 600;
	padding-top: 5px;
	padding-bottom: 3px;
	line-height: 1.4em;
}

.bed4 {
	width: 38%;
	margin-right: 4%;
}


.bed4 img {
	width: 100%;
}

.bedkit {
	margin-bottom: 3%;
}



@media screen and (max-width: 769px){
	.bed {margin-bottom: 10%;}
	.bed3 {display: block; margin-bottom: 40px;}
	.bed4 {width: 80%; display: inline-block; margin-right: 0;}
	.bed4 img {margin:0 auto;}
}



.bed5 {
	width: 38%;
	text-align: left;
}

.bed5 h3 {
	font-size: 2vw;
	color: #354a55;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 800;
	padding-bottom: 3%;
	line-height: 1.4em;
}

.name-tax h3 {
	font-size: 2vw;
	color: #354a55;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 800;
	padding-bottom: 0;
}

.name-tax h5 {
padding-bottom: 3%;
}


.bed5 h4 {
	font-size: 2vw;
	padding-bottom: 2%;
}

.bed5 h4 span {
	font-size: 1.6vw;
}

.bed5 p {
	font-size: 14px;
	color: #354a55;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	line-height: 1.8em;
	width: 100%;
	max-width: 600px;
	min-width: 400px;
	margin-bottom: 3%;
}



.bed5 h5 {
	text-align: left;
	color: #354a55;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 26px;
	font-weight: 600;
	margin-bottom: 3%;
}



.bed5 h5 span {
	font-size: 15px;
	color: #354a55;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
}

h6 {
	font-size: 1.6vw;
	color: #354a55;
	line-height: 1.6;
}

.sub-text {
	margin-bottom: 20px;
}

.sub-text h4 {
	padding-left:2em;
}


@media screen and (max-width: 769px){
	.bed5 {width: 80%; display: inline-block; margin-top: 10px;}
	.bed5 h3 {font-size: 5.5vw;}
	.bed5 p {width: 100%; min-width: inherit;}
	.bed5 h4 {font-size: 5.5vw;}
	.bed5 h4 span {font-size: 3.5vw;}
	h6 {font-size: 3.5vw;}
}


.bed6 {
	display: flex;
	justify-content: center;
	margin-right: -1.5%;
	/* margin-bottom: 4%; */
}

.bed6 li {
	width: 18.5%;
	margin-right: 1.5%;
}

.bed6 img {
	width: 100%;
	/* border-radius: 10px; */
}

.bed7 {
	display: flex;
	justify-content: center;
	/* margin-right: 50%; */
	/* margin-bottom: 4%; */
}

.bed7 li {
	width: 18.5%;
	margin-right: 1.5%;
}

.bed7 img {
	width: 100%;
	/* border-radius: 10px; */
}


/* .bed-border {
	text-align:center;
}

.bed-border2 {
	height: 1.5px;
	width: 80%;
	display: inline-block;
	background-color: #4E4E4E;
	margin-bottom: 4%;
}
*/


@media screen and (max-width: 769px){
	.bed6 {margin-right: -2.5%; margin-bottom: 2.5%;}
	.bed6 li {width: 38%; margin-right: 2.5%;}
	.bed7 {margin-right: -2.5%; margin-bottom: 2.5%;}
	.bed7 li {width: 38%; margin-right: 2.5%;}
	.bed-border2 {margin-top: 7%; margin-bottom: 9.5%;}
	.bed8 {margin-top: -40px;}

}





.subtitle-in {
	width: 80%;
	display: inline-block;
	margin-bottom: 3%;
}


.subtitle-in ul {
	display: flex;
}


.subtitle-in h3 {
	font-family: 'Red Hat Display', sans-serif;
	color: #354a55;
	font-weight: 900;
	font-size: clamp(30px, 3vw, 60px);
	text-align: left;
	margin-bottom: 5px;
}


.subtitle-in h3 span {
	font-size: clamp(16px, 1vw, 22px);
	color: #354a55;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 600;
	padding-left: 20px;
}


.border-in {
  height: 8px;
  background-image: repeating-linear-gradient(45deg, #354a55 0, #354a55 1px, transparent 0, transparent 50%);
  background-size: 8px 8px;
}

/* .border-in {
	width: 100%;
	height: 5px;
	background-color: #555555;
	position: relative;
} */



/* .border-in2 {
	width: 12.5%;
	max-width: 200px;
	height: 5px;
	position: absolute;
	background-color: #354a55;
} */



@media screen and (max-width: 769px){
	.subtitle-in {margin-bottom: 30px;}
	.subtitle-in ul{display: block;}
	.subtitle-in h3 {font-size: 8vw;}
	.subtitle-in h3 span {padding-left: 0; font-size: 4vw;}
}



.soubi3 {
	display: flex;
	padding-left: 10%;
	padding-bottom: 3%;
}


.soubi4 {
	width: 28%;
	margin-right: 2.5%;
}


.soubi3 img {
	width: 100%;
	/* border-radius: 10px; */
}


.soubi3 h4 {
	text-align: left;
	color: #354a55;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 19px;
	font-weight: 600;
	padding-top: 5px;
	padding-bottom: 3px;
	line-height: 1.4em;
}

.soubi3 h5 {
	padding-bottom: 8px;
}

.soubi4 p {
	font-size: 14px;
	color: #354a55;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 300;
	text-align: left;
	padding-bottom: 8px;
	line-height: 1.5em;
}


.soubi4 h5 {
	text-align: left;
	color: #354a55;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 22px;
	font-weight: 600;
}



.soubi4 h5 span {
	font-size: 15px;
	color: #354a55;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
}


@media screen and (max-width: 769px){
	.soubi-all {padding-bottom: 40px;}
	.soubi-top {top: 0;}
	.soubi2 {padding-top: 20%;}
	.soubi3 {display: block; padding: 0;}
	.soubi4 {width: 80%; display: inline-block; margin-right: 0; margin-bottom: 50px;}
	.soubi4 h4  {font-size: 5.5vw; line-height: 1.2em;}
	.name-tax li {font-size: 5.5vw; line-height: 1.2em;}
	.bed5 h3 {line-height: 1.2em;}
}



.kiji {
	text-align: center;
	margin-top: 5%;
	margin-bottom: 5%;
}


.kiji2 {
	width: 80%;
	display: inline-block;
	border: solid 2px #354a55;
	/* border-radius: 15px; */
}


.kiji3 {
	display: flex;
	padding: 2% 5% 5% 5%;
}


.kiji4 {
	width: 100%;
	margin-right: 2%;
	text-align: left;
}


.kiji4 img {
	width: 100%;
	min-width: 230px;
	/* border-radius: 10px; */
}


.kiji4 h5 {
	font-size: 15px;
	font-weight: 400;
	font-family: 'Noto Sans JP', sans-serif;
	color: #354a55;
	padding-top: 5px;
}


.kiji5 p {
	font-size: 15px;
	color: #354a55;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	text-align: left;
	line-height: 1.6em;
}



@media screen and (max-width: 769px){
	.kiji3 {display: block; padding:2% 8% 8% 8%; }
	.kiji4 {margin-bottom: 30px;}
}




.subtitle-material {
	width: 90%;
	display: inline-block;
	padding-top: 4%;
}


.subtitle-material ul {
	display: flex;
}


.subtitle-material h3 {
	font-family: 'Red Hat Display', sans-serif;
	color: #354a55;
	font-weight: 900;
	font-size: clamp(30px, 3vw, 60px);
	text-align: left;
	margin-bottom: 5px;
}


.subtitle-material h3 span {
	font-size: clamp(16px, 1vw, 22px);
	color: #354a55;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 600;
	padding-left: 20px;
}


.border-material {
	width: 100%;
	height: 2px;
	background-color: #555555;
	position: relative;
}


@media screen and (max-width: 769px){
	.subtitle-material {margin-bottom: 20px; width: 84%;}
	.subtitle-material ul{display: block;}
	.subtitle-material h3 {font-size: 6vw;}
	.subtitle-material h3 span {padding-left: 0; font-size: 4vw;}
}



/*フッター*/


.es-banner {
	padding-top: 80px;
}


.es-banner img {
	width: 80%;
	max-width: 1000px;
	display: inline-block;
}



.shiryo {
	text-align: center;
	background-color: #354a55;
}


.shiryo2 {
	width: 80%;
	max-width: 1000px;
	display: inline-block;
	border: solid 3px #fff;
	margin-top: 70px;
}


.shiryo2 ul {
	display: flex;
	justify-content: center;
	padding: 30px;
}

.shiryo2 p {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 600;
	font-size: 35px;
	color: #fff;
	padding-top: 15px;
	padding-left: 30px;
}



.chuuki {
	text-align: center;
}


.chuuki p {
	color: #fff;
	font-size: 14px;
	width: 80%;
	max-width: 1000px;
	text-align: left;
	display: inline-block;
	line-height: 1.7em;
	padding-top: 20px;
	padding-bottom: 70px;
}


.copy {
	font-size: 13px;
	color: #fff;
	padding-bottom: 30px;
	
}



@media screen and (max-width: 769px){
	.es-banner {padding-top: 60px;}
	.es-banner img {width: 80%;}
	.shiryo2 {margin-top: 35px;}
	.shiryo2 ul {padding: 3%;}
	.shiryo2 img {width: 7vw;}
	.shiryo2 p {font-size: 4vw; padding-left: 10px; padding-top: 4%;}
}


