


body{
	padding: 0;
	margin: 0;
	font-size: 16px;
	line-height: 1.6;
	overflow-x: hidden;
	/*letter-spacing: 1.5px;*/
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%; /* iPhoneだけ文字が大きくなる現象を防ぐ */
	/*font-feature-settings: "palt";*/ /* 文字詰め（フォントにカーニング情報が含まれる場合） */
}

::-webkit-input-placeholder{ color: #aaa; }
:-moz-placeholder          { color: #aaa; }
:-ms-input-placeholder     { color: #aaa; }

html.pc     .sp:not(.pc){ display: none !important; }
html.pc     .tablet:not(.pc){ display: none !important; }
html.sp     .pc:not(.sp){ display: none !important; }
html.sp     .tablet:not(.sp){ display: none !important; }
html.tablet .pc:not(.tablet){ display: none !important; }
html.tablet .sp:not(.tablet){ display: none !important; }

html.pc     .pc_hide{ display: none !important; }
html.sp     .sp_hide{ display: none !important; }
html.tablet .tablet_hide{ display: none !important; }

h2{
	text-align: center;
}

img{
	vertical-align: bottom;
	max-width: 100%;
}

p{
	text-align: justify;
}

a img{
	transition: opacity 0.2s linear;
}
a:hover img{
	opacity: 0.7;
}


.page_width{
	width: 1000px;
	padding: 0 50px;
	margin: 0 auto;
}
html.sp .page_width{
	width: 440px;
	padding: 0;
}
.page_width2{
	width: 940px;
	margin: 0 auto;
}
html.sp .page_width2{
	width: 440px;
}


header{
	background-image: url(img/common/bg1.jpg);
	background-size: cover;
	background-position: 50% 100%;
	z-index: 1000;
}
header a,
footer a{
	display: flex;
	align-items: center;
	height: 100px;
}
header a img,
footer a img{
	transition: none;
}
header .inner,
footer .line1{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header nav,
footer nav{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header nav a,
footer nav a{
	box-sizing: border-box;
	padding: 5px 17px 0;
	transition: background-color 0.2s linear;
	/* border: 3px solid rgba(255,255,255,0.0); */
}
header nav a:hover{
	/* background-color: rgba(255,255,255,0.5); */
	/* background-color: rgb(0 87 162 / 0.2); */
	background-color: #fff;
	/* border: 3px solid #33779f; */
}
header nav a:hover img{
	opacity: 1;
}
header .sns,
footer .sns{
	display: flex;
	margin-left: 27px;
}
header .sns a,
footer .sns a{
	padding: 0 5px;
}
header .sns a:hover,
footer .sns a:hover{
	background-color: transparent;
}
header .sns a:hover img,
footer .sns a:hover img{
	opacity: 0.7;
}
header .nav_knob{
	display: none;
}
html.sp header .inner,
html.sp footer .line1{
	flex-wrap: wrap;
	justify-content: space-between;
}
html.sp footer .line1{
	justify-content: center;
}
html.sp header nav,
html.sp footer nav{
	flex-wrap: wrap;
	justify-content: center;
	padding-bottom: 0px;
	transition: padding 0.2s linear;
}
html.sp header input:checked ~ nav,
html.sp footer nav{
	padding-bottom: 20px;
}
html.sp header nav a,
html.sp footer nav a{
	overflow: hidden;
	justify-content: center;
	width: 33%;
	height: 0px;
	padding: 0;
	transition: height 0.2s linear;
}
html.sp header input:checked ~ nav a,
html.sp footer nav a{
	height: 60px;
}
html.sp header .sns,
html.sp footer .sns{
	justify-content: space-around;
	margin-left: 0;
	flex-basis: 200px;
}
html.sp header .sns a,
html.sp footer .sns a{
	/* padding: 0 20px; */
}
html.sp header .sns a img,
html.sp footer .sns a img{
	width: 35px;
}
html.sp header .nav_knob{
	display: block;
}
html.sp header .nav_knob img{
	width: 30px;
}
html.sp header .nav_knob .close{
	display: none;
}
header input[type="checkbox"]{
	display: none;
}
html.sp header input:checked ~ .nav_knob .open{
	display: none;
}
html.sp header input:checked ~ .nav_knob .close{
	display: inline-block;
}


footer{
	background-color: #dfe8f0;
	z-index: 1000;
	padding: 30px 0 0;
}
footer .copyright{
	text-align: center;
	font-size: 14px;
	letter-spacing: 1px;
	color: #4f769c;
	padding: 70px 0 80px;
}


.breadcrumb{
	margin: 50px 0;
}
.breadcrumb,
.breadcrumb a{
	font-size: 14px;
	font-weight: bold;
	color: #4f769c;
	text-decoration: none;
}
.breadcrumb a:hover{
	text-decoration: underline;
}



/* ページネーションの基本設定 ***************************************************** */

.pagination h2{
	display: none;
}
.nav-links{
	display: flex;
	justify-content: center;
}
.nav-links .page-numbers{
	text-align: center;
	text-decoration: none;
	color: #000;
	background-color: #d6d7d8;
	width: 35px;
	padding: 6px 0;
	margin: 0 4px;
}
.nav-links .page-numbers.current{
	color: #fff;
	background-color: #0078a2;
}
.nav-links .page-numbers.next,
.nav-links .page-numbers.prev{
	color: #0078a2;
	background-color: transparent;
}
.nav-links .page-numbers.next{
	margin-left: 20px;
}
.nav-links .page-numbers.prev{
	margin-right: 20px;
}



/* トップページ ***************************************************** */

.top_page{
	margin: 0px 0 0 0;
}

.top_page .slide{
	position: relative;
}

.top_page .soliloquy-container{
	max-width: none !important;
	max-height: none !important;
}
.top_page .soliloquy-container .soliloquy-image{
	max-width: none;
	width: 100%;
}
.top_page .soliloquy-container .soliloquy-controls{
	display: none !important;
}

.top_page .slide .front{
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
html.sp .top_page .slide .front img{
	width: 30%;
}

.top_page .area2{
	background-image: url(img/top/2_1.jpg);
	background-size: 105%;
	background-position: 80% 55%;
	height: 49vw;
}
.top_page .area2 .inner{
	background-image: url(img/top/2_2.svg);
	background-size: 105%;
	background-position: 80% 55%;
	height: 49vw;
}

.top_page .top_news{
	background-image: url(img/common/bg2.jpg);
	background-position: 50%;
}
.top_page .top_news .inner{
	width: 760px;
	margin: 0 auto;
	padding: 30px 0 50px;
}
html.sp .top_page .top_news .inner{
	width: 100%;
}
.top_page .top_news .list{
	margin: 30px 0 35px;
}
.top_page .top_news .list a{
	display: block;
	color: #000;
	padding: 5px;
	border-bottom: 1px solid #000;
}
html.sp .top_page .top_news .list a{
	padding: 15px 5px;
}
.top_page .top_news .list a:first-child{
	border-top: 1px solid #000;
}
.top_page .top_news .list a:hover{
	background-color: rgba(255,255,255,0.1);
}
.top_page .top_news .list a .date{
	display: inline-block;
	vertical-align: middle;
	font-size: 12px;
	letter-spacing: 1px;
	width: 130px;
}
html.sp .top_page .top_news .list a .date{
	width: 110px;
}
.top_page .top_news .list a .title{
	display: inline-block;
	vertical-align: middle;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	width: 600px;
}
html.sp .top_page .top_news .list a .title{
	width: 300px;
}
.top_page .top_news .link{
	text-align: center;
}

.top_page .instagram{
	background-image: url(img/common/bg1.jpg);
	background-size: cover;
	background-position: 50%;
	padding: 50px 0;
}
.top_page .instagram h2{
	margin: 80px 0 0;
}
.top_page .instagram h2:first-child{
	margin-top: 0px;
}
html.sp .top_page .instagram h2{
	margin-bottom: 20px;
}
.top_page .instagram .list{
	display: flex;
	/*justify-content: center;*/
	flex-wrap: wrap;
	padding: 18px 0 20px 19px;
}
html.sp .top_page .instagram .list{
	justify-content: center;
	padding: 0;
}
.top_page .instagram .list a{
	background-size: cover;
	background-position: 50%;
	width: 215px;
	height: 215px;
	margin: 13px;
	transition: opacity 0.2s linear;
}
.top_page .instagram .list a:hover{
	opacity: 0.8;
}
html.sp .top_page .instagram .list a{
	width: 39vmin;
	height: 39vmin;
	margin: 2%;
}
.top_page .instagram .list img{
	object-fit: cover;
}
.top_page .instagram .link{
	text-align: center;
}
html.sp .top_page .instagram .link{
	margin-top: 30px;
}

.top_page footer{
	background-color: #b3cae0;
}


/* POLICY ポリシーページ ***************************************************** */

.policy_page{
	color: #33779f;
	background-image: url(img/common/bg3.jpg);
	background-position: 50%;
	padding: 0 0 70px;
}

.policy_page .breadcrumb{
	width: 1000px;
	/* padding: 0 50px; */
	margin: 50px auto;
}
html.sp .policy_page .breadcrumb{
	width: 90%;
}

.policy_page .page_width{
	width: 940px;
}

.policy_page h2{
	margin: 80px 0 60px;
}
html.sp .policy_page h2{
	margin: 40px 0 30px;
}
html.sp .policy_page h2 img{
	height: 37px;
}

.policy_page .area1{
	display: flex;
	align-items: center;
	text-align: center;
	background-image: url(img/policy/1_1.jpg);
	background-size: cover;
	background-position: 50%;
	box-sizing: border-box;
	height: 510px;
	padding-bottom: 60px;
}
html.sp .policy_page .area1{
	height: 400px;
	padding-bottom: 60px;
}
html.sp .policy_page .area1 img{
	width: 210px;
}

.policy_page .area2 .link{
	display: flex;
	justify-content: space-between;
	margin: 60px 0 100px;
}
html.sp .policy_page .area2 .link a{
	flex-basis: 48%;
}

.policy_page .area3 article{
	border: 1px solid #bababa;
	border-left: 0;
	border-right: 0;
	padding: 30px 0 0;
	margin: 30px 0 20px;
}
.policy_page .area3 article .date{
	font-size: 14px;
}
.policy_page .area3 article .title{
	font-size: 20px;
	font-weight: bold;
}
.policy_page .area3 .link{
	text-align: center;
}

.policy_page .area4{
	margin: 100px 0 0;
}
.policy_page .area4 .images{
	text-align: center;
	white-space: nowrap;
	margin: 0 0 50px;
}
html.sp .policy_page .area4 .images{
	white-space: normal;
	margin: 0 0 20px;
}
.policy_page .area4 img[src*="/policy/4_2."]{
	margin-right: 5px;
}
html.sp .policy_page .area4 img[src*="/policy/4_2."]{
	margin: 0 0 6px;
}
html.sp .policy_page .area4 img{
	width: 350px;
}

.policy_page .area5 h2{
	margin-bottom: 30px;
}
.policy_page .area5 .image{
	text-align: center;
}
.policy_page .area5 h3{
	text-align: center;
	font-size: 30px;
	margin-bottom: 20px;
}
html.sp .policy_page .area5 h3{
	font-size: 20px;
}


/* カスタムギャラリー ページ ***************************************************** */

.custom_gallery{
	background-image: url(img/common/bg4.jpg);
	background-position: 50% 0;
	padding-bottom: 100px;
}

.custom_gallery .main_image{
	display: flex;
	justify-content: center;
	align-items: center;
	background-image: url(img/custom_gallery/1_1.jpg);
	background-size: cover;
	background-position: 50%;
	height: 510px;
}
.custom_gallery .main_image .text{
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	line-height: 3;
	color: #fff;
	padding-top: 70px;
}
html.sp .custom_gallery .main_image{
	height: 400px;
	background-position: 62% 50%;
}
html.sp .custom_gallery .main_image .text{
	font-size: 20px;
}
html.sp .custom_gallery .main_image .text img{
	width: 80%;
}

.custom_gallery.single .columns{
	display: flex;
	padding-bottom: 100px;
}
html.sp .custom_gallery.single .columns{
	flex-wrap: wrap;
}
.custom_gallery.single .article{
	color: #33779f;
	background-color: rgba(255,255,255,0.7);
	box-sizing: border-box;
	flex-basis: 700px;
	padding: 25px;
	margin-right: 20px;
}
html.sp .custom_gallery.single .article{
	flex-basis: 100%;
	margin: 0 0 20px;
}
.custom_gallery.single .article h3.title{
	display: flex;
	align-items: center;
	align-content: center;
	text-align: left;
	font-size: 29px;
	font-weight: bold;
	/* line-height: 1.3; */
	color: #33779f;
	padding: 0 0 1px;
	border-bottom: 1px solid #33779f;
	margin: 0px 0 50px;
}
html.sp .custom_gallery.single .article h3.title{
	font-size: 25px;
}
.custom_gallery.single .article h3.title:before{
	content: "";
	flex-basis: 80px;
	display: block;
	position: relative;
	/* top: 22px; */
	background-image: url(img/custom_gallery/h3_b.png);
	background-size: contain;
	background-repeat: no-repeat;
	/* flex-basis: 88px; */
	/* min-width: 88px; */
	width: 80px;
	height: 63px;
	margin: 0 13px 0 7px;
}
html.sp .custom_gallery.single .article h3.title:before{
	/* top: 25px; */
	flex-basis: 70px;
	width: 70px;
	height: 65px;
}
.custom_gallery.single .article h3.title .text{
	flex-basis: 550px;
}
html.sp .custom_gallery.single .article h3.title .text{
	flex-basis: 340px;
}
.custom_gallery.single .article h3{
	font-size: 24px;
}
.custom_gallery.single .article .wp-block-image.before figure{
	display: block;
	max-width: 70%;
}
html.sp .custom_gallery.single .article .wp-block-image.before figure{
	max-width: 80%;
}
.custom_gallery.single .article .wp-block-image.after{
	position: relative;
	background-image: url(img/custom_gallery/after_bg.png);
	background-size: 8px;
	background-position-y: 100%;
	height: 426px;
	padding: 50px 25px 0;
	margin: 0 -25px 0;
}
html.sp .custom_gallery.single .article .wp-block-image.after{
	height: 300px;
}
.custom_gallery.single .article .wp-block-image.after figure{
	display: block;
	position: relative;
	text-align: center;
	box-sizing: border-box;
	width: 100%;
	height: 426px;
	padding: 0 41px 0;
	margin: 0 0 -426px;
}
html.sp .custom_gallery.single .article .wp-block-image.after figure{
	height: 300px;
	margin: 0 0 -300px;
	padding: 0;
}
.custom_gallery.single .article .wp-block-image.after + div{
	background-image: url(img/custom_gallery/after_bg.png);
	background-size: 8px;
	background-position-y: 0%;
	padding: 0 0 1px;
	margin: 0 -25px 0;
}
html.sp .custom_gallery.single .article .wp-block-image.after + div{
	margin-top: -1px;
}
.custom_gallery.single .article .wp-block-image.after + div figure{
	margin: 0 auto 15px;
}
.custom_gallery.single .article .wp-block-image.after + div figure img{
	position: relative;
	margin: -40px 0 0 44px;
}
html.sp .custom_gallery.single .article .wp-block-image.after + div figure img{
	width: 400px;
	margin: -28px 0 0 18px;
}

.wp-block-image img{
	height: auto;
}
.wp-block-image.after figure img{
	/* position: absolute; */
	top: 0;
	max-height: 100%;
	opacity: 0;
	transition: opacity 0.3s linear;
}
.wp-block-image.after figure img.show{
	opacity: 1;
}
.wp-block-image.after img.left{
	position: absolute;
	cursor: pointer;
	left: 5px;
	top: 50%;
	transition: 0.2s linear;
}
html.sp .wp-block-image.after img.left{
	width: 17px;
	height: auto;
}
.wp-block-image.after img.right{
	position: absolute;
	cursor: pointer;
	right: 5px;
	top: 50%;
	transition: 0.2s linear;
}
html.sp .wp-block-image.after img.right{
	width: 17px;
	height: auto;
}
.wp-block-image.after img.left:hover,
.wp-block-image.after img.right:hover{
	filter: drop-shadow(0 0 5px #fff) drop-shadow(0 0 5px #fff);
}
.custom_gallery.single .article .wp-block-gallery{
	margin: 50px 0;
}
.custom_gallery.single .article .wp-block-gallery li{
	cursor: pointer;
	width: calc( 100% / 4 - 8px );
	margin: 4px;
	flex-grow: 0;
}
.custom_gallery.single .article .wp-block-gallery li.no_image{
	cursor: default;
}

.custom_gallery.single .side{
	flex-basis: 275px;
}
html.sp .custom_gallery.single .side{
	display: flex;
	justify-content: space-between;
	flex-basis: 100%;
}
.custom_gallery.single .side .recent_entry{
	color: #fff;
	margin-bottom: 15px;
}
html.sp .custom_gallery.single .side .recent_entry{
	flex-basis: 48%;
}
.custom_gallery.single .side .recent_entry h3{
	text-align: center;
	background-color: #0078a2;
	padding: 20px 0 ;
	margin: 0;
}
.custom_gallery.single .side .recent_entry .list a{
	display: block;
	text-decoration: none;
	/* text-indent: -10px; */
	font-size: 14px;
	font-weight: bold;
	line-height: 1.4;
	color: #fff;
	background-color: #0078a2;
	padding: 10px 10px 10px 10px;
	transition: opacity 0.2s linear;
}
.custom_gallery.single .side .recent_entry .list a:before{
	/* content: url(img/custom_gallery/3_2.svg); */
	/* display: inline-block; */
	/* margin-right: 5px; */
}
.custom_gallery.single .side .recent_entry .list a:hover{
	opacity: 0.8;
}
html.sp .custom_gallery.single .side .links{
	flex-basis: 48%;
}

.custom_gallery.archive h3{
	text-align: center;
	margin: 50px 0;
}
html.sp .custom_gallery.archive h3 img{
	height: 37px;
}
.custom_gallery.archive p{
	color: #33779f;
	padding: 0 50px;
}
.custom_gallery.archive .list_bg{
	background-color: rgba(255,255,255,0.7);
}
.custom_gallery.archive .list{
	display: flex;
	flex-wrap: wrap;
	padding: 25px;
}
.custom_gallery.archive .list a{
	flex-basis: calc(50% - 16px);
	margin: 0px 8px 40px;
	line-height: 1.4;
	color: #33779f;
	text-decoration: none;
}
.custom_gallery.archive .list a .image{
	height: 345px;
	overflow: hidden;
}
.custom_gallery.archive .list a .image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;

}
.custom_gallery.archive .list a h4{
	text-align: left;
	font-size: 18px;
	font-weight: bold;
	padding: 8px;
	margin: 0 0;
}
.custom_gallery.archive .list a .shosai{
	text-align: center;
	font-size: 14px;
	color: #fff;
	background-color: #33779f;
	padding: 3px 0;
}
html.sp .custom_gallery.archive .list a{
	flex-basis: 100%;
}
html.sp .custom_gallery.archive .list a .image{
	height: 260px;
}

.custom_gallery.archive .pagination{
	padding: 0 0 50px;
}


/* 店舗紹介 ページ ***************************************************** */

.shop_page{
	color: #fff;
	background-color: #4f769c;
	padding-bottom: 100px;
}

.shop_page .area1{
	display: flex;
	align-items: center;
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	background-image: url(img/shop/1_1.jpg);
	background-size: cover;
	background-position: 50%;
	box-sizing: border-box;
	height: 510px;
	/* padding-bottom: 60px; */
}
html.sp .shop_page .area1{
	height: 400px;
	background-position: 57% 50%;
}

.shop_page .breadcrumb,
.shop_page .breadcrumb a{
	color: #fff;
}

.shop_page h2{
	margin: 100px 0 60px;
}
.shop_page h2 img{
	margin-bottom: 10px;
}
html.sp .shop_page h2 img{
	height: 60px;
}

.shop_page .images{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.shop_page .images .image{
	margin-bottom: 20px;
}

.shop_page .area2 .center{
	text-align: center;
}

.shop_page .anshin h2{
	margin-bottom: 30px;
}
html.sp .shop_page .anshin h2{
	margin-bottom: 10px;
}
.shop_page .anshin .images{
	display: block;
	text-align: center;
	white-space: nowrap;
	margin: 0 0 50px;
}
html.sp .shop_page .anshin .images{
	white-space: normal;
	margin: 0 0 20px;
}
.shop_page .anshin img[src*="/shop/6_2."]{
	margin-right: 5px;
}
html.sp .shop_page .anshin img[src*="/shop/6_2."]{
	margin: 0 0 6px;
}
html.sp .shop_page .anshin img{
	width: 350px;
}

.shop_page .area3 .columns{
	display: flex;
	justify-content: space-between;
	width: 530px;
	margin: 0 auto;
}
html.sp .shop_page .area3 .columns{
	font-size: 14px;
	width: 100%;
}
html.sp .shop_page .area3 .columns .column{
	width: 210px;
}

.shop_page .area4 p,
.shop_page .area5 p{
	text-align: center;
	font-size: 18px;
	margin-bottom: 40px;
}

.shop_page .map iframe{
	width: 100%;
}

.shop_page img[src*="/shop/1_2."]{
	margin: 30px 0 10px;
}
.shop_page img[src*="/shop/2_3."]{
	margin: 20px 0 50px;
}
.shop_page img[src*="/shop/2_4."]{
	margin: 0px 0 40px;
}
.shop_page img[src*="/shop/3_2."]{
	margin: 0 0 15px -5px;
}


/* NEWS ページ ***************************************************** */

.news{
	background-image: url(img/common/bg5_.jpg);
	background-position: 50% 0;
	padding-bottom: 100px;
}

.news .main_image{
	display: flex;
	justify-content: center;
	align-items: center;
	background-image: url(img/news/1_1.jpg);
	background-size: cover;
	background-position: 50%;
	height: 510px;
}
.news .main_image .text{
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	line-height: 3;
	color: #fff;
	padding-bottom: 30px;
}
html.sp .news .main_image{
	height: 400px;
}
html.sp .news .main_image img{
	width: 85%;
}
html.sp .news .main_image .text{
	padding: 20px 0 0px;
}

.news .breadcrumb{
	font-weight: bold;
	color: #000;
	background-image: url(img/common/bg5.jpg);
	background-position: 50% 0;
	padding: 40px 0;
	margin: 0 0 10px;
}
.news .breadcrumb a{
	font-weight: bold;
	color: #000;
}

.news.archive .list > a{
	display: flex;
	justify-content: space-between;
	color: #000;
	text-decoration: none;
	padding: 10px;
}
.news.archive .list > a:hover{
	background-color: rgba(255, 255, 255, 0.2);
}
.news.archive .list > a:hover img{
	opacity: 1;
}
.news.archive .list > a img{
	height: auto;
}
.news.archive .list > a .image{
	flex-basis: 170px;
}
.news.archive .list > a .text{
	flex-basis: 730px;
	width: 730px;
}
html.sp .news.archive .list > a .image{
	flex-basis: 150px;
}
html.sp .news.archive .list > a .text{
	flex-basis: 250px;
	width: 250px;
}
.news.archive .list > a .text h4{
	font-size: 24px;
	margin: 9px 0;
}
html.sp .news.archive .list > a .text h4{
	font-size: 18px;
	margin: 5px 0;
}
.news.archive .list > a .text .content{
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	width: 100%;
}
.news.archive .pagination{
	padding: 50px 0;
}

.news.single .date{
	font-size: 14px;
	letter-spacing: 1px;
	margin: 20px 0 0;
}
.news.single h2{
	text-align: left;
	margin: 10px 0 20px;
}
.news.single p{
	line-height: 2.2;
}


/* お問合せ ページ ***************************************************** */

.contact_page,
.contact_page a{
	color: #33779f;
}

.contact_page .area1{
	display: flex;
	align-items: center;
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	background-image: url(img/contact/1_1.jpg);
	background-size: cover;
	background-position: 50%;
	box-sizing: border-box;
	height: 510px;
	padding-bottom: 60px;
}
html.sp .contact_page .area1{
	height: 400px;
}

.contact_page p{
	line-height: 1.9;
	margin: 50px 30px;
}
.contact_page table.contact{
	border-collapse: collapse;
	width: 100%;
}
.contact_page table.contact th,
.contact_page table.contact td{
	text-align: left;
	font-weight: normal;
	background-color: #fcfcfc;
}
.contact_page table.contact tr:nth-of-type(2n) th,
.contact_page table.contact tr:nth-of-type(2n) td{
	background-color: #e5ebf2;
}
.contact_page table.contact th{
	vertical-align: top;
	padding: 15px 25px;
}
.contact_page table.contact td{
	padding: 8px 30px 8px 0;
}
html.sp .contact_page table.contact th{
	padding: 10px 10px;
}
html.sp .contact_page table.contact td{
	padding: 8px 10px 8px 0;
	width: 300px;
}

.contact_page input[type="text"],
.contact_page input[type="email"],
.contact_page input[type="number"],
.contact_page textarea{
	font-size: 16px;
	font-weight: normal;
	box-sizing: border-box;
	border: 1px solid #33779f;
	width: 100%;
	padding: 6px 8px;
	outline: 0;
}
.contact_page input[type="text"].nenrei{
	width: 170px;
}
html.sp .contact_page input[type="text"].nenrei{
	width: 100px;
}
.contact_page input[type="text"].wpcf7c-conf,
.contact_page input[type="email"].wpcf7c-conf,
.contact_page input[type="number"].wpcf7c-conf,
.contact_page textarea.wpcf7c-conf,
.contact_page select.wpcf7c-conf{
	background-color: #fcfcfc;
	border: 0;
	padding: 0px 8px;
}
.contact_page tr:nth-of-type(2n) input[type="text"].wpcf7c-conf,
.contact_page tr:nth-of-type(2n) input[type="email"].wpcf7c-conf,
.contact_page tr:nth-of-type(2n) input[type="number"].wpcf7c-conf,
.contact_page tr:nth-of-type(2n) textarea.wpcf7c-conf,
.contact_page tr:nth-of-type(2n) select.wpcf7c-conf{
	background-color: #e5ebf2;
}
.contact_page input.wpcf7c-conf:-webkit-autofill {
	-webkit-box-shadow: 0 0 0px 1000px #fcfcfc inset;
}
.contact_page tr:nth-of-type(2n) input.wpcf7c-conf:-webkit-autofill {
	-webkit-box-shadow: 0 0 0px 1000px #e5ebf2 inset;
}

.contact_page .submit_area{
	text-align: center;
}
.contact_page input[type="button"],
.contact_page input[type="submit"]{
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	font-size: 29px;
	font-weight: bold;
	border: 0;
	border-radius: 100px;
	color: #fff;
	background-color: #4f769c;
	height: 160px;
	width: 160px;
	margin: 30px auto;
	outline: 0;
}
.contact_page input[type="button"]:hover,
.contact_page input[type="submit"]:hover{
	opacity: 0.8;
}
.contact_page input.wpcf7-back{
	margin-bottom: 0;
}


/* プライバシーポリシー ページ ***************************************************** */

.privacy_policy_page{
	padding: 0 0 100px;
}

.privacy_policy_page .area1{
	display: flex;
	align-items: center;
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	background-color: #4f769c;
	box-sizing: border-box;
	height: 510px;
}
html.sp .privacy_policy_page .area1{
	height: 400px;
}

.privacy_policy_page p,
.privacy_policy_page a{
	color: #33779f;
}
.privacy_policy_page p{
	line-height: 2.4;
	margin: 30px;
}





