@charset "utf-8";

/***************************************************
	common.css
	共通レイアウトスタイル定義
***************************************************/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500&family=Zen+Old+Mincho:wght@500&display=swap');

/* Base
------------------------------------------------------------ */
html {
	font-size: 62.5%;
}
body {
	line-height: 1.78;
	color: #101010;
	font-size: 1.6rem;
	margin: 0;
	padding: 0;
	min-width: 1040px;
	background: #ffffff;
	font-family: 'Zen Old Mincho', serif;
	word-wrap: break-word;
}
@media only screen and (max-width: 767px) {
	body {
		line-height: 2;
		font-size: 1.4rem;
		min-width: inherit;
	}
}

img {
	vertical-align: top;
	max-width: 100%;
	height: auto;
	image-rendering: -webkit-optimize-contrast;
}

.innerBox {
	max-width: 1000px;
	margin: 0 auto;
}
@media only screen and (max-width: 767px) {
	.innerBox {
		/* padding: 0 45px; */
		padding: 0 20px;
	}
}


/* Link
------------------------------------------------------------ */
a { outline: none; }
a:link {
	color: #101010;
	text-decoration: none;
}
a:visited {
	color: #101010;
	text-decoration: none;
}
a:hover {
	color: #101010;
	text-decoration: none;
}

/*a img {
	transition: 0.2s;
}
a:hover img {
	opacity: 0.7;
	filter: alpha(opacity=70);
}*/
a em {
	font-style: normal;
	text-decoration: underline;
}

/* wrapper
-------------------------------------------------------------------*/
.wrapper {
}

/* header
-------------------------------------------------------------------*/
.header {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	background:rgba(255,255,255,0.85);
}
.header .logo {
	margin: 25px 0 25px 50px;
	width: 301px;
	line-height: 0;
}
.header .btnContact {
	margin: 0;
}
.header .btnContact a {
	position: fixed;
	top: 25px;
	right: 0;
	display: block;
	color: #ffffff;
	font-size: 2rem;
	text-align: center;
	line-height: 1;
	writing-mode: vertical-rl;
	letter-spacing: 0.5em;
	padding: 1em 0.8em;
	background: #101010;
}
@media only screen and (max-width: 767px) {
	.header {
		position: fixed;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.header .logo {
		margin: 0 0 0 15px;
		width: 188px;
	}
	.header .btnContact {
	}
	.header .btnContact a {
		position: relative;
		top: auto;
		right: auto;
		font-size: 1.4rem;
		writing-mode: horizontal-tb;
		letter-spacing: 0;
	}
}


/* main
-------------------------------------------------------------------*/
.main {
	display: block;
	clear: both;
	margin: 0 auto;
	padding: 0;
}
@media only screen and (max-width: 767px) {
	.main {
	}
}

/* common */
.commonHeadEng01 {
	margin: 0;
	color: #B18B14;
	font-size: 1.8rem;
	font-family: 'Cormorant Garamond';
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.38;
}
.commonHead01 {
	margin: 0.8em 0;
	font-size: 3.8rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.31;
}
.commonHead02 {
	margin: 2em 0 0.8em 0;
	font-size: 2.8rem;
	font-weight: 500;
}
@media only screen and (max-width: 767px) {
	.commonHeadEng01 {
		font-size: 1.4rem;
		line-height: 1.42;
	}
	.commonHead01 {
		font-size: 2.8rem;
		line-height: 1.78;
	}
	.commonHead02 {
		font-size: 1.8rem;
		line-height: 1.66;
	}
}

/* mainSec */
.mainSec {
	position: relative;
}
.mainSec .mvBox {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100vh;
}
.mainSec .mvBox.sp{
	display:none;
}
@media only screen and (max-width: 767px) {
	.mainSec .mvBox {
		height: 95vh;
	}
	.mainSec .mvBox.sp{
		display:block;
	}
	.mainSec .mvBox.pc{
		display:none;
	}
}
.mainSec .mvBox .mv {
	position: absolute;
	top: 50%;
	left: 50%;
	/*width: 100%;*/
	min-width: 100%;
	min-height: 100%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
@media only screen and (max-width: 767px) {
	.mainSec .mvBox .mv {
		min-width:auto;
		height:100%;
	}
}
.mainSec .btnScroll {
	margin: 0;
	position: absolute;
	bottom: 15px;
	left: 30px;
	width: 45px;
	height: 110px;
	z-index: 1;
}
.mainSec .btnScroll a {
	display: block;
	width: 100%;
	height: 100%;
}
.mainSec .btnScroll .txt {
	display: block;
	width: 15px;
	position: absolute;
	right: 0;
	bottom: 0;
}
.mainSec .btnScroll a::before ,
.mainSec .btnScroll a::after {
	content: "";
	display: block;
	position: absolute;
}
.mainSec .btnScroll a::before {
	width: 1px;
	height: 110px;
	bottom: 0;
	left: 16px;
	/* background: #101010; */
	background: #cccccc;
	transition: 0.2s;
}
.mainSec .btnScroll a::after {
	width: 20px;
	height: 20px;
	bottom: 3px;
	left: 7px;
	/* border-bottom: 1px solid #101010; */
	border-bottom: 1px solid #cccccc;
	transform: rotate(45deg);
}
.mainSec .btnScroll a:hover::before {
	height: 140px;
}
@media only screen and (max-width: 767px) {
	.mainSec .btnScroll {
		left: 18px;
	}
}

/* cont01 */
.cont01Sec {
	height: 730px;
	padding: 100px 0;
	background: url("../img/cont01_bg01_pc.jpg") center bottom no-repeat;
	background-size: cover;
	box-sizing: border-box;
}
.cont01Sec .head {
	margin: 0 0 0 60px;
	width: 246px;
}
@media only screen and (max-width: 767px) {
	.cont01Sec {
		height: 730px;
		padding: 140px 0;
		background: url("../img/cont01_bg01_sp.jpg") center bottom no-repeat;
		background-size: cover;
	}
	.cont01Sec .head {
		margin: 0 auto;
		width: 200px;
	}
}

/* cont02 */
.cont02Sec {
}
.cont02Sec .box01 {
	margin: 180px auto;
	display: flex;
	align-items: center;
	column-gap: 60px;
}
.cont02Sec .box01 > .clm01 {
	flex-shrink: 0;
	width: 455px;
	text-align: center;
}
.cont02Sec .box01 > .clm02 {

}
.cont02Sec .box02 {
	margin: 180px auto;
	border-right: 1px solid #B18B14;
	position: relative;
}
.cont02Sec .box02Inner {
	max-width: 736px;
	margin: 0 auto;
}
.cont02Sec .box02HeadEng01 {
	writing-mode: vertical-rl;
	line-height: 1;
	position: absolute;
	top: 0;
	right: -0.9em;
}
.cont02Sec .box03 {
	margin: 180px auto;
	display: flex;
	align-items: center;
	column-gap: 60px;
}
.cont02Sec .box03 > .clm01 {
	order: 2;
	flex-shrink: 0;
	width: 455px;
	text-align: center;
}
.cont02Sec .box03 > .clm02 {
	order: 1;
}
@media only screen and (max-width: 767px) {
	.cont02Sec .box01 ,
	.cont02Sec .box02 ,
	.cont02Sec .box03 {
		padding: 0 25px;
	}
	.cont02Sec .box01 {
		margin: 60px auto;
		display: block;
	}
	.cont02Sec .box01 > .clm01 {
		width: auto;
	}
	.cont02Sec .box01 > .clm02 {
		margin-top: 3em;
	}
	.cont02Sec .box02 {
		margin: 60px auto;
	}
	.cont02Sec .box02Inner {
		max-width: none;
	}
	.cont02Sec .box02HeadEng01 {
		writing-mode: vertical-rl;
		line-height: 1;
		position: absolute;
		top: 0;
		right: -0.9em;
	}
	.cont02Sec .box03 {
		margin: 60px auto;
		display: block;
	}
	.cont02Sec .box03 > .clm01 {
		width: auto;
	}
	.cont02Sec .box03 > .clm02 {
		margin-top: 3em;
	}
}

/* cont03 */
.cont03Sec {
	position: relative;
	box-sizing: border-box;
}
.cont03Sec .bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100lvh;
	z-index: -1;
	background: url("../img/cont03_bg01_pc.jpg") bottom center no-repeat;
	background-size: cover;
}
.cont03Sec.fixed .bg {
	position: fixed;
}
.cont03Sec.over .bg {
	position: absolute;
	top: auto;
	bottom: 0;
}
.cont03Sec .cont03Inner {
	padding: 160px 0 80px 0;
	position: relative;
}
.cont03Sec .headBox {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: calc(50% + 50lvh);
	margin-top: -50lvh;
}
.cont03Sec .head {
	margin: 0;
	/*padding: 0.8em 0 0 0;*/
	writing-mode: vertical-rl;
	white-space: nowrap;
	color: #ffffff;
	font-size: 3.8rem;
	font-weight: 500;
	letter-spacing: 0.8em;
	line-height: 1;
	position: sticky;
	top: 0;
	left: 50%;
	min-height: 100lvh;
	display: flex;
	justify-content: center;
	align-items: center;
	transform: translateX(-50%);
	box-sizing: border-box;
}
.cont03Sec .headInner.transition {
	transition: 1.0s;
}
/*@media only screen and (min-width: 768px) and (max-height: 680px) {
	.cont03Sec .head {
		font-size: 5.4vh;
	}
}
.cont03Sec .headBox.fixed .head {
	position: fixed;
	top: 0;
}
.cont03Sec .headBox.over .head {
	position: absolute;
	top: auto;
	bottom: 0;
}*/
.cont03Sec .imgList01 {
	margin: 0;
	padding: 0;
	list-style-type: none;
	overflow: hidden;
}
.cont03Sec .imgList01 > li {
	margin: 0;
	width: 37.8%;
}
.cont03Sec .imgList01 > li:nth-child(odd) {
	float: left;
}
.cont03Sec .imgList01 > li:nth-child(even) {
	float: right;
}
.cont03Sec .imgList01 > li:nth-of-type(1) {
}
.cont03Sec .imgList01 > li:nth-of-type(2) {
	margin-top: 110px;
}
.cont03Sec .imgList01 > li:nth-of-type(3) {
	margin-top: 180px;
}
.cont03Sec .imgList01 > li:nth-of-type(4) {
	margin-top: 180px;
}
@media only screen and (max-width: 767px) {
	.cont03Sec {
	}
	.cont03Sec .bg {
		background: url("../img/cont03_bg01_sp.jpg") center center no-repeat;
		background-size: cover;
	}
	.cont03Sec .cont03Inner {
		/* margin: 0 -45px; */
		margin: 0 -20px;
		padding: 50px 0;
	}
	.cont03Sec .head {
		font-size: 2.5rem;
	}
	.cont03Sec .imgList01 > li {
		width: 45%;
	}
	.cont03Sec .imgList01 > li:nth-of-type(2) {
		margin-top: 60%;
	}
	.cont03Sec .imgList01 > li:nth-of-type(3) {
		margin-top: 47%;
	}
	.cont03Sec .imgList01 > li:nth-of-type(4) {
		margin-top: 47%;
	}
}

/* contact */
.contactSec {
	padding: 180px 0;
}
.contactSec .contactHead {
	text-align: center;
	margin: 0;
}
.contactSec .txt01 {
	font-size: 2rem;
	text-align: center;
}
.contactSec .mailAddress {
	font-size: 2rem;
	text-align: center;
	font-family: 'Cormorant Garamond';
}
.contactSec .mailAddress a {
	line-height: 1;
}
.contactSec .mailAddress a i {
	display: inline-block;
	width: 27px;
	vertical-align: middle;
	margin: 0 0.5em 0 0;
}
.contactSec .formWrapper {
	text-align: center;
}
.contactSec .tbl01 {
	margin: 2em auto;
	border-collapse: collapse;
	border-spacing: 0;
}
.contactSec .tbl01 th ,
.contactSec .tbl01 td {
	text-align: left;
	vertical-align: top;
	font-weight: normal;
	padding: 0.6em 0;
}
.contactSec .tbl01 th {
	padding-top: 1em;
	padding-right: 3em;
}
.contactSec .tbl01 th .required {
	font-size: 1rem;
	vertical-align: super;
}
.contactSec .tbl01 input[type="text"] ,
.contactSec .tbl01 input[type="tel"] ,
.contactSec .tbl01 input[type="email"] ,
.contactSec .tbl01 textarea {
	width: 100%;
	box-sizing: border-box;
}
.contactSec .tbl01 input ,
.contactSec .tbl01 textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: 1px solid #8B8B8B;
	border-radius: 0;
	font: inherit;
	outline: none;
	padding: 0.4em 1em;
}
.contactSec .tbl01 ::placeholder {
	color: #A2A2A2;
}
.contactSec .btn {
	margin: 4em auto 0;
}
.contactSec .btn input {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: #3B4043;
	border: none;
	border-radius: 100px;
	font: inherit;
	outline: none;
	padding: 0.6em 1em;
	color: #ffffff;
	width: 380px;
	cursor: pointer;
}
.contactSec .notionList01 {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.contactSec .notionList01 > li {
	margin: 0;
	display: inline;
}
.contactSec .notionList01 > li + li {
	margin-left: 1em;
}
@media only screen and (max-width: 767px) {
	.contactSec {
		padding: 120px 0;
	}
	.contactSec .contactHead {
		font-size: 3.4rem;
	}
	.contactSec .txt01 {
		font-size: 1.8rem;
	}
	.contactSec .mailAddress {
		font-size: 1.8rem;
	}
	.contactSec .mailAddress a i {
		width: 21px;
	}
	.contactSec .tbl01 th ,
	.contactSec .tbl01 td {
		display: block;
		font-size: 1.6rem;
	}
	.contactSec .tbl01 th {
		padding-right: 0;
	}
	.contactSec .tbl01 td {
		padding-top: 0;
		padding-bottom: 0;
	}
	.contactSec .btn input {
		width: 100%;
		max-width: 315px;
	}
	.contactSec .notionList01 > li {
		display: block;
	}
	.contactSec .notionList01 > li + li {
		margin-left: 0;
	}
}

/* footer
-------------------------------------------------------------------*/
.footer {
	padding: 80px 0;
}
.footer .list01 {
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	justify-content: center;
}
.footer .list01 > dt {
	width: 264px;
	flex-shrink: 0;
	margin: 0;
}
.footer .list01 > dd {
	margin: 0 0 0 2em;
}
.footer .cr {
	margin: 1em 0 0 0;
	text-align: center;
}
@media only screen and (max-width: 767px) {
	.footer {
		padding: 30px 0;
	}
	.footer .list01 {
		display: block;
	}
	.footer .list01 > dt {
		margin: 0 auto;
		text-align: center;
	}
	.footer .list01 > dd {
		font-size: 1.6rem;
		text-align: center;
		margin: 1em 0 0 0;
	}
}
