/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* ------------------------- */
:root{
	--navy:#0C132F;
}
/* ------------------------- */
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* common
------------------------------------------------------------*/
body {
    color: #333;
    line-height: 1.6;
    font-size: 16px;
    font-family: "Noto Serif JP", serif;
    background: #fff;
    -webkit-text-size-adjust: 100%;
	max-width: 100%;
}
a {
	color: #333;
	text-decoration: none;
}
img {
	width: 100%;
	display: block;
}
p {
	line-height: 2;
}
.f_bold {
	font-weight: 500;
}
.f_big {
	font-size: 18px;
}
.txt_center {
	text-align: center;
}

.alt_bg {
	background: #f8f8f8;
}

.inner2 {
	max-width: 640px;
	width: 90%;
	margin: 0 auto;
}
.sp {
	display: none;
}

/* btn
------------------------------------------------------------*/
.btn {
    background: #053a86;
    color: rgb(255 255 255);
    text-decoration: none;
    display: block;
    padding: 17px 10px;
    border-radius: 30px;
    width: 313px;
    box-sizing: border-box;
    position: relative;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: 500;
    margin: 50px auto 0;
    border: 1px solid #053a86;
    transition: all ease .3s;
}
.btn::before{
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 30px;
    height: 1px;
    transition: all ease .3s;
    background: #fff;
}
.btn:hover{
    background: #fff;
    color: #053a86;
}
.btn:hover::before{
    background: #053a86;
}

/* headings
------------------------------------------------------------*/
.tit_sub {
	margin-bottom: 20px;
	text-align: center;
}
.tit_sub .tit_jp {
	/* color: #1e1e1e; */
	font-size: 40px;
	font-weight: 700;
}
.tit_sub .tit_en {
	display: block;
	/* color: #BD8A00; */
	font-size: 18px;
	font-weight: 500;
	/* text-transform: uppercase; */
}
.ts_02 {
	margin-bottom: 30px;
}
.ts_02 .tit_jp,
.ts_03 .tit_jp {
	font-size: 32px;
}
.ts_03 .tit_en {
	text-transform: capitalize;
}
.ts_04 .tit_jp {
	font-size: 22px;
}

/* header
------------------------------------------------------------*/
header {
	position: relative;
	top: 0;
	left: 0;
	right: 0;
	overflow: hidden;
	padding-bottom: 5%;
	background-color: var(--navy);
}
header .slider {
	pointer-events: none;
}
header .h_nav_wrap{
	/* position: absolute; */
	top: 0;
	left: 0;
	right: 0;
	z-index: 99;
}
header .h_wrap {
	/* ヘッダー固定 */
	position: fixed; 
	top: 0;
	z-index: 99;
	display: flex;
	align-items: center;
    justify-content: space-around;
	margin: auto;
	padding: 0 1%;
	width: 100%;
	overflow: hidden;
	color: #fff;
	transition: .3s ease;
}
header .h_wrap .logo {
	max-width: 160px;
	width: 4%;
	padding: 1%;
}
header .h_nav_wrap .h_header_text{
	position: absolute;
	width: 85%;
	margin: 0 auto;
	top: 12%;
	left: 0;
	right: 0;
}
/* ヘッダー背景画僧を変更 */
header .header_color_scroll{
	background-color: rgba(255, 255, 255, 0.9);
	/* color: var(--navy) */
	transition: .3s ease;
	box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}
header .logo_after{
	display: none;
}
header .header_color_scroll .logo_before{
	display: none;
}
header .header_color_scroll .logo_after{
	display: block;
}
header .after{
	display: none;
}
header .header_color_scroll #gnav .before{
	display: none;
}
header .header_color_scroll #gnav .after{
	display: block;
}
header .header_color_scroll #gnav ul li a{
	color: var(--navy);
}
header .header_color_scroll #gnav ul li a:after{
	background-color: var(--navy);
}
header .header_color_scroll #trigger-menu .line{
	background-color: var(--navy);
}
/* gnav
------------------------------------------------------------*/
#gnav {
	float: right;
}
#gnav ul {
	display: flex;
}
#gnav ul li {
	margin: 0 20px;
	text-align: center;
}
#gnav ul li a {
	position: relative;
	display: inline-block;
	text-align: center;
	color: #fff;
	/* font-weight: 700; */
	transition: color .3s ease;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
}
#gnav ul li a::after {
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	content: '';
	width: 80%;
	height: 1px;
	background: #FFF;
	bottom: -1px;
	transform: scale(0, 1);
	transform-origin: center top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
	transition: transform 0.3s;
}

#gnav ul li a:hover::after {
	transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
}
	#trigger-menu .line {
		position: relative;
		display: block;
		width: 35px;
		height: 1px;
		box-sizing: border-box;
		background-color: #fff;
		border-radius: 10px;
		-webkit-border-radius: 10px;
		-moz-border-radius: 10px;
		-ms-border-radius: 10px;
		-o-border-radius: 10px;
		transition: all .3s ease;
		-webkit-transition: all .3s ease;
		-moz-transition: all .3s ease;
		-ms-transition: all .3s ease;
		-o-transition: all .3s ease;
	}

	#gnav_sp {
		position: fixed;
		top: 88px;
		left: 0;
		right: 0;
		z-index: 99;
		/* visibility: hidden; */
		display: none;
		/* background-color: #fff; */
	}
	#gnav_sp.visible{
		visibility: visible;
	}
	#gnav_sp #gnav {
		float: none;
	}
	#gnav_sp #gnav ul {
		display: block;
	}
	#gnav_sp #gnav ul li {
		text-align: right;
	}
	#gnav_sp #gnav ul li a {
		padding: 15px 10px;
		display: flex;
	}
	#gnav_sp #gnav ul li a div:first-child{
		margin-right: 3%;
	}
	body::before {
		content: '';
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 9;
		opacity: 0;
		visibility: hidden;
		/* background-color: rgba(0, 0, 0, .8); */
		background-color: var(--navy);
		transition: all .3s ease;
		-webkit-transition: all .3s ease;
		-moz-transition: all .3s ease;
		-ms-transition: all .3s ease;
		-o-transition: all .3s ease;
	}
	body.menu-open::before {
		opacity: 1;
		visibility: visible;
	}
	body.menu-open #trigger-menu .line:nth-child(2) {
		opacity: 0;
	}
	body.menu-open #trigger-menu .line:first-child {
		top: 11px;
		transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		-o-transform: rotate(45deg);
	}
	body.menu-open #trigger-menu .line:last-child {
		bottom: 12px;
		transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		-o-transform: rotate(-45deg);
	}
/* @media (max-width:1161px) {

} */


@media (max-width:768px) {
	header {
		overflow: hidden;
	}
	header #gnav_sp{
		padding-top: 10%;
	}
	header .h_wrap{
        align-items: center;
        justify-content: space-between;
        width: 100%;
		padding: 0;
	}
	header .h_wrap .logo {
        max-width: 140px;
        width: 15%;
        /* margin-left: 5%; */
        margin-top: 1%;
        /* margin-bottom: 3%; */
	}
	header .h_nav_wrap .h_header_text{
		margin-top: 60%;
		width: 100%;
	}
	#trigger-menu {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		float: right;
		width: 35px;
		height: 35px;
		cursor: pointer;
		transition: all ease 0.3s;
		margin-right: 5%;
	}
	header .header_color_scroll #gnav ul li a{
		color: #FFF;
	}
	}

/* common
------------------------------------------------------------*/
.col_wrap {
	display: flex;
	justify-content: space-between;
}
.col_wrap .col_item {
	max-width: 435px;
	width: 46%;
}
.t_center_wrap .txt_center {
	margin-bottom: 15px;
}
#section01{
	width: 100%;
}
#section02,
#section03,
#section04,
#section05,
#section06,
#section07,
#section08,
#section09{
	width: 80%;
	padding: 5% 10%;
	margin: 0 auto;
	margin-bottom: 5%;
	scroll-padding-top: 80px;
}
.navy{
	background-color: var(--navy);
	color: #fff;
}
.flex{
	display: flex;
}
.left, .right{
	width: 45%;
	margin: auto 2.5%;
}
@media (max-width:768px) {
	#section03,
	#section04,
	#section05,
	#section06,
	#section07,
	#section08{
		width: 90%;
		padding:10% 5%;
		margin: 0 auto;
	}
	.flex{
	display: block;
	}
	.left, .right{
		width: 100%;
		margin: 0;
	}
}
/* #section01
------------------------------------------------------------*/
#section01 .navy .tit_sub{
	margin-bottom: 8%;
	/* border-left: 2px solid #fff; */
	/* text-align: left; */
	/* padding-left: 2%; */
}
#section01 .white .tit_sub,
#section05 .tit_sub{
	margin-bottom: 8%;
	/* border-left: 2px solid #000; */
	/* text-align: left; */
	/* padding-left: 5%; */
}
#section01 .flex{
	width: 80%;
	padding: 5% 10%;
}
#section01 .flex:last-child{
	margin-bottom: 5%;
}
#section01 .flex:nth-child(2n) {
    flex-direction: row-reverse;
}
#section01 .txt_grp{
	margin-top: 5%;
}
@media (max-width:768px) {
	#section01 .white .tit_sub{
        /* border-left: none; */
        /* border-right: 2px solid #000; */
        padding-left: 0;
        text-align: right;
        padding-right: 5%;
	}
	#section01 .flex{
		width: 90%;
        padding: 10% 5% 5% 5%;
	}
	#section01 .flex .jp{
		margin-top: 5%;
	}
	#section01 .flex .txt_grp:first-child{
		margin-top: 5%;
	}
}
/* #section02
------------------------------------------------------------*/
#section02 h2{
    width: 35%;
    margin: 0 auto 50px auto;
}
#section02 h3{
	width: 10%;
	margin: 0 auto 5% auto;
}
#section02 .menu_wrap{
	justify-content: space-between;
	width: 100%;
	margin: 0 auto;
}
#section02 .menu_item{
	width: 27%;
	/* margin: 5% auto; */
}
#section02 .ts_03{
	margin-bottom: 20px;
    text-align: center;
    margin-top: 5%;
}
#section02 h4{
    width: 52%;
    margin: 5% auto 20px auto;
}
#section02 .pack .menu_wrap h4 .tit_en{
    font-size: 20px;
    margin-top: 3%;
}
#section02 .price_jp{
	font-size: 24px;
    margin-top: 3%;
    display: inline-block;
}
#section02 .menu_wrap .img_menu_item{
	width: 100%;
}
#section02 .menu_wrap .menu_item p:last-child{
	margin-top: 10%;
}
@media (max-width:768px) {
#section02{
		padding: 10% 10% 5% 10%;
	}
	#section02 h2{
		width: 100%;
	}
	#section02 h3{
		width: 50%;
	}
	#section02 .menu_item{
		width: 100%;
		margin: 10% 0;
	}
	#section02 h4{
		width: 60%;
	}
}
/* #section03
------------------------------------------------------------*/
/* #section04
------------------------------------------------------------*/
#section04 h2{
	width: 35%;
	margin:0 auto ;
}
#section04 .interior_img_wrapper{
	width: 80%;
    margin: 5% auto;
}
#section04 .flex{
	align-items: flex-start;
	justify-content: space-between;
	width: 80%;    
	margin: 5% auto;
}
#section04 .flex .left,
#section04 .flex .right{
	margin: 0 ;
	width: 48%;
}
@media (max-width:768px) {
	#section04 .interior_img_wrapper,
	#section04 .flex,
	#section04 h2{
		width: 100%;
	}
	#section04 .flex .right{
		margin-top: 5%;
	}
	#section04 .owner_text_box{
		margin-top: 5%;
	}
}
/* #section05
------------------------------------------------------------*/
#section05 .tit_sub{
	margin-bottom: 3%;
	padding: 0;
    width: 18%;
}
#section05 .flex{
	align-items: flex-start;
	justify-content: space-between;
}
#section05 .left,
#section05 .right{
	margin: 0 1%;
}
#section05 p:last-child{
	margin-top: 3%;
}
@media (max-width:768px) {
	#section05 .flex{
		display: flex;
		flex-direction: column-reverse;
	}
	#section05 .tit_sub{
		text-align: center;
        border-left: none;
		width: 50%;
	}
}

    #section05 .owner_text_box img {
      float: right; /* 画像を右に配置 */
      margin: 0 0 1em 1em;
      max-width: 40%;
      height: auto;
    }
    /* #section .owner_text_box {
		font-size: 1rem;
		line-height: 1.8;
	} */
	#section05 .no_wrap{
		clear: both;   /* 巻き込まれないようにfloatの解除 */
	}

/* #section06
------------------------------------------------------------*/
#section06 h2{
	width: 35%;
	margin: 0 auto;
}
#section06 .video_wrapper{
	margin: 5% auto;
    border-radius: 20px;
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
}
#section06 .inner2 .video_wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 20px;
}
#section06 .inner2 p{
	line-height: 2;
	margin: 10% 0;
	text-align: center;
}
#section06 .inner2 p:last-child{
	font-size: 12px;
}
@media (max-width:768px) {
	#section06 h2{
		width: 100%;
	}
	#section06 .inner2 p{
		line-height: 2;
	}
}
/* #section07
------------------------------------------------------------*/
/* #section08
------------------------------------------------------------*/
#section08 h2{
	width: 35%;
	margin: 5% auto;
}
#section08 .flex .left,
#section08 .flex .right{
	margin: 0 1%;
}
#section08 .flex .left{
	width: 50%;
	margin: 0 auto;

}
#section08 .flex .right .tit_sub{
	text-align: left;
}
#section08 .right ul li{
	margin: 2%;
	align-items: center;
}
#section08 .right ul li div:first-child{
    border: 1px solid #000;
    padding: 0 2%;
    margin-right: 3%;
    width: 15%;
    text-align: center;
}
#section08 .map_wrapper{
	margin: 5% auto;
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 0;
    padding-bottom: 30%;
}
#section08 .map_wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
@media (max-width:768px) {
	#section08 h2{
		width: 100%;
	}
	#section08 .flex .left{
		width: 100%;
	}
	#section08 .flex .right{
		margin: 5% 1%;
	}
	#section08 .right ul li{
		display: flex;
	}
	#section08 .right ul li div:first-child{
		width: 25%;
	}
	#section08 .map_wrapper{
		padding-bottom: 70%;
	}
}
/* #section09
------------------------------------------------------------*/
#section09{
	margin-bottom: 0;
	width: 70%;
    padding: 5% 15%;
}
#section09 h2{
	width: 35%;
    margin: 2% auto;
}
#section09 h3,
#section09 .list_news li{
	width: 100%;
	border-bottom: 2px solid #fff;
	color: #FFF;
    font-size: 18px;
}
#section09 h3{
	padding: 1% 0;
}
#section09 h3 span:first-child{
	margin-right: 2%;
}
#section09 .list_news li{
	padding: 2% 0;
}
#section09 .list_news a{
	align-items: center;
	color: #FFF;
}
#section09 .list_news a .category{
	border: 1px solid #FFF;
	padding: 0 1%;
	margin-right: 2%;
	display: inline-block;
}
#section09 .list_news li a .date{
	margin-right: 2%;
}
@media (max-width:768px) {
	#section09 h2{
		width: 100%;
	}
	#section09 h3{
		margin-top: 5%;
	}
	#section09 .list_news li{
		padding: 5% 0;
	}
	#section09 .list_news li a{
		display: flex;
		font-size: 12px;
	}
	#section09{
        width: 90%;
        padding: 5% 5% 10% 5%;
	}
}

/* footer
------------------------------------------------------------*/
footer{
	background-color: var(--navy);
}
/* footer .logo {
	padding-bottom: 10px;
	margin: 0 auto 10px;
	max-width: 90px;
	width: 100%;
}
*/
footer .container {
	width: 100%;
	text-align: center;
	padding: 2% 0;
}
footer .copyright {
	font-size: 10px;
	text-align: center;
	color: #FFF;
}

/* pagetop
------------------------------------------------------------*/
#pagetop {
	position: fixed;
	z-index: 9999;
	width: 80px;
	bottom: 87px;
	right: 20px;
}
#pagetop a {
	display: block;
}
#pagetop a img {
	width: 100%;
	display: block;
}
#pagetop a:hover {
	opacity: 1;
	text-decoration: none;
}
#pagetop a:hover img {
	opacity: 1;
	text-decoration: none;
}

/* contact
------------------------------------------------------------*/
#contact form .input_wrap {
	margin-bottom: 40px;
}
#contact form .input_wrap label {
	display: block;
	margin-bottom: 10px;
}
#contact form .input_wrap label span {
	position: relative;
	display: inline-block;
	padding-right: 10px;
	font-weight: bold;
}
#contact form .input_wrap label span.req::before {
	content: '*';
	position: absolute;
	top: 0;
	right: 0;
	color: #AA0000;
}
#contact form .input_wrap input,
#contact form .input_wrap textarea {
	padding: 16px;
	width: 100%;
	border: 1px solid #979797;
	box-sizing: border-box;
}
#contact form .input_wrap textarea {
	height: 195px;
}
#contact form .input_wrap input::placeholder,
#contact form .input_wrap textarea::placeholder {
	color: rgba(0, 0, 0, .5);
	font-size: 14px;
}
#contact form .input_wrap input:focus,
#contact form .input_wrap textarea:focus {
	outline: 0;
	border-color: #BD8A00;
}
#contact form .btn_submit {
	position: relative;
}
#contact form .btn_submit input {
	position: relative;
	display: block;
	padding: 15px 16px;
	margin: 0 auto;
	max-width: 240px;
	width: 90%;
	color: #fff;
	text-align: center;
	box-sizing: border-box;
	background: url('../img/common/btn_border.png') no-repeat center / 230px;
	background-color: #BD8A00;
	border: 0;
	cursor: pointer;
	transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
}
#contact form .btn_submit input:hover {
	background-color: #9c7301;
}
.wpcf7-spinner {
	display: block !important;
	margin: 10px auto 0 !important;
}

/* wp-pagenavi
---------------------------------------------------------- */
.wp-pagenavi {
	margin-top: 40px;
	text-align: center;
}
.wp-pagenavi a {
	color: #0772ba;
	font-weight: 700;
	padding: 0 10px !important;
	border-radius: 30px;
	margin: 0 2px 10px 2px !important;
	text-align: center;
	box-sizing: border-box;
	transition: all ease 0.3s;
	min-width: 44px;
	height: 44px;
	line-height: 44px;
	background-color: #fff;
	border: 1px solid #0772ba;
	display: inline-block;
	text-decoration: none;
}
.wp-pagenavi a:hover {
	color: #fff;
	background-color: #0772ba;
}
.wp-pagenavi .current {
	color: #fff;
	background-color: #0772ba;
	border: 1px solid #0772ba;
}
.wp-pagenavi span {
	color: #0772ba;
	font-weight: 700;
	font-family: Arial, Helvetica, sans-serif;
	padding: 0 10px !important;
	border-radius: 30px;
	margin: 0 2px 10px 2px !important;
	text-align: center;
	box-sizing: border-box;
	transition: all ease 0.3s;
	min-width: 44px;
	height: 44px;
	line-height: 44px;
	background-color: #fff;
	border: 1px solid #0772ba;
	display: inline-block;
}
.wp-pagenavi .previouspostslink {
	display: inline;
	font-family: "Poppins", sans-serif;
	margin-right: 24px !important;
	background-position: center left 20px;
	background-image: url(../img/common/ico_arrow05_alt.png);
	background-size: 15px;
	background-repeat: no-repeat;
	padding: 10px 18px 9px 51px !important;
}
.wp-pagenavi .previouspostslink:hover {
	background-image: url(../img/common/ico_arrow05.png);
}
.wp-pagenavi .nextpostslink {
	display: inline;
	font-family: "Poppins", sans-serif;
	margin-left: 24px !important;
	background-position: center right 20px;
	background-image: url(../img/common/ico_arrow_alt.png);
	background-size: 15px;
	background-repeat: no-repeat;
	padding: 10px 51px 9px 18px !important;
}
.wp-pagenavi .nextpostslink:hover {
	background-image: url(../img/common/ico_arrow.png);
}

@media screen and ( max-width : 980px ) {
	/* common
	------------------------------------------------------------*/
	.container .inner,
	.container .inner2 {
		max-width: none;
		width: 100%;
	}
	/* .pc {
		display: none;
	}
	.sp {
		display: block;
	} */

	/* headings
	------------------------------------------------------------*/
	.tit_sub, .ts_02 {
		margin-bottom: 15px;
	}
	.tit_sub .tit_jp {
		font-size: 210%;
	}
	/* .tit_sub .tit_en {
		font-size: 75%;
	} */
	.ts_02 .tit_jp,
	.ts_03 .tit_jp {
		font-size: 170%;
	}
	.ts_04 .tit_jp {
		font-size: 120%;
	}
	
}
	/* header
	------------------------------------------------------------*/



@media screen and ( max-width : 768px ) {
	/* common
	------------------------------------------------------------*/

	.container .inner,
	.container .inner2 {
		max-width: none;
		width: 100%;
	}
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
	/* headings
	------------------------------------------------------------*/
	.tit_sub, .ts_02 {
		margin-bottom: 15px;
	}
	.tit_sub .tit_jp {
		font-size: 180%;
	}
	/* .tit_sub .tit_en {
		font-size: 70%;
	} */
	.ts_02 .tit_jp,
	.ts_03 .tit_jp {
		font-size: 150%;
	}
	.ts_04 .tit_jp {
		font-size: 110%;
	}

	/* contact
	------------------------------------------------------------*/
	#contact form .input_wrap {
		margin-bottom: 30px;
	}
	#contact form .input_wrap input,
	#contact form .input_wrap textarea {
		padding: 13px;
	}
	#contact form .input_wrap textarea {
		height: 175px;
	}
	#contact form .btn_submit input {
		padding: 11px 15px;
		max-width: 180px;
		background-size: 170px;
	}

	/* footer
	------------------------------------------------------------*/
	/* footer .logo {
		max-width: 60px;
	} */
}





/* concept
------------------------------------------------------------*/
#concept .col_concept {
	overflow: hidden;
	background: url(../img/index/bg_concept.png) no-repeat left 10% top 70% / 40%;
	background-blend-mode: lighten;
	background-color: rgba(255, 255, 255, 0.8);
}
#concept .col_concept .img_concept {
	margin-top: 10%;
	margin-left: 5%;
	float: right;
	max-width: 350px;
	width: 47%;
}
#concept .col_concept .txt_concept {
	overflow: hidden;
}
#concept .col_concept .txt_concept .tit_sub {
	text-align: left;
}
#concept .col_concept .txt_concept .txt_grp {
	margin-bottom: 20px;
}
#concept .col_concept .txt_concept .txt_grp:last-child {
	margin-bottom: 0;
}

/* menu
------------------------------------------------------------*/
#menu .img_menu {
	margin: 0 auto 30px;
	/* max-width: 950px; */
	width: 100%;
}
#menu .case .pack {
	padding: 75px 0;
}
#menu .case .pack:first-child {
	padding-top: 0;
}
#menu .case .pack:last-child {
	padding-bottom: 0;
}
#menu .case .pack .col_menu {
	overflow: hidden;
}
#menu .case .pack .col_menu .menu_item {
	padding: 0 30px;
	margin: 0 6.8% 9% 0;
	float: left;
	max-width: 345px;
	width: 28.5%;
	box-sizing: border-box;
}
#menu .case .pack .col_menu .menu_item:last-child,
#menu .case .pack .col_menu .menu_item:nth-last-child(2),
#menu .case .pack .col_menu .menu_item:nth-last-child(3) {
	margin-bottom: 0;
}
#menu .case .pack .col_menu .menu_item:nth-child(3n) {
	margin-right: 0;
}
#menu .case .pack h4.tit_sub .tit_jp {
	font-size: 22px;
}
#menu .case .pack p {
	margin-bottom: 15px;
}
#menu .case .pack .price_menu span {
	display: block;
	color: #E84646;
	font-weight: 600;
}
#menu .case .pack .price_menu span small{
	font-size: 12px;
}

/* store information
------------------------------------------------------------*/
#store .img_store {
	margin-bottom: 30px;
}

/* news
------------------------------------------------------------*/
#news .list_news li {
	margin-bottom: 20px;
}
#news .list_news li:last-child {
	margin-bottom: 0;
}
#news .list_news li a {
	display: flex;
	line-height: 1;
	align-items: baseline;
}
#news .list_news li a .date {
	display: inline-block;
	margin-right: 30px;
	color: #BD8A00;
}
#news .list_news li a:hover p {
	text-decoration: underline;
}


@media screen and ( max-width : 980px ) {
	/* common
	------------------------------------------------------------*/
	.col_wrap {
		display: block;
	}
	.col_wrap .col_item {
		margin: 0 auto 40px;
		max-width: none;
		width: 100%;
	}
	.col_wrap .col_item:last-child {
		margin-bottom: 0;
	}
	.t_center_wrap .txt_center {
		margin-bottom: 10px;
	}

	/* mvisual
	------------------------------------------------------------*/
	.mvisual {
		/* padding-top: 75%; */
		margin-top: 85px;
		/* height: 720px; */
		/* height: 90vh; */
		height: 70vh;
		padding: 0;
		background-image: url(../img/index/mvisual_sp.jpg);
	}
	.mvisual img {
		max-width: 230px;
		width: 100%;
	}

	/* craftsman
	------------------------------------------------------------*/
	#craftsman p {
		text-align: center;
	}

	/* concept
	------------------------------------------------------------*/
	#concept .img_concept.sp {
		margin: 0 auto 30px;
	}
	#concept .col_concept {
		background-size: 80%;
		background-position: center;
	}
	#concept .col_concept .txt_concept .tit_sub {
		text-align: center;
	}

	/* menu
	------------------------------------------------------------*/
	#menu .img_menu {
		margin-bottom: 20px;
	}
	#menu .case .pack {
		padding: 35px 0;
	}
	#menu .case .pack .col_menu .menu_item,
	#menu .case .pack .col_menu .menu_item:nth-child(3n),
	#menu .case .pack .col_menu .menu_item:nth-last-child(2),
	#menu .case .pack .col_menu .menu_item:nth-last-child(3) {
		padding: 0 20px;
		margin: 0 auto 40px;
		float: none;
		max-width: none;
		width: 90%;
	}
	#menu .case .pack .col_menu .menu_item:last-child {
		margin-bottom: 0;
	}
	#menu .case .pack .col_menu .menu_item .img_menu_item {
		margin: 0 auto 20px;
		max-width: 300px;
		width: 100%;
	}
	#menu .case .pack h4.tit_sub .tit_jp {
		font-size: 130%;
	}
	#menu .case .pack p {
		margin-bottom: 10px;
	}

	/* news
	------------------------------------------------------------*/
	#news .list_news li a .date {
		margin-right: 20px;
	}

	/* contact
	------------------------------------------------------------*/
	#contact .t_center_wrap .txt_center {
		text-align: left;
	}
}