@charset "UTF-8";
/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
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, dialog, figure, footer, header, button,
hgroup, menu, nav, section,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 1em;
}

html {
    font-size: 62.5%;
}

body, table,
input, textarea, select, option, button,
h1, h2, h3, h4, h5, h6 {
    line-height: 1.1;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
}

table,
input, textarea, select, option {
    line-height: 1.1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

:focus {
    outline: 0;
}

ins {
    text-decoration: none;
}

del {
    text-decoration: line-through;
}

img {
    vertical-align: top;
}

a {
    text-decoration: none;
}

/* SPへ切り替え */
@media only screen and (max-width: 767px) {
    img {
        max-width: 100%;
        height: auto;
    }
}

/*------------------------------------------------------------
	書式設定
------------------------------------------------------------*/
/* テキストの位置 */
.taLeft {
    text-align: left !important;
}

.taCenter {
    text-align: center !important;
}

.taRight {
    text-align: right !important;
}

.vTop {
    vertical-align: top !important;
}

.vMiddle {
    vertical-align: middle !important;
}

/* フォントの太さ */
.fwNormal {
    font-weight: normal !important;
}

.fwBold {
    font-weight: bold !important;
}

/*------------------------------------------------------------
	微調整用クラス（※多用しないこと）
------------------------------------------------------------*/
.mt0 {
    margin-top: 0 !important;
}

.mb0 {
    margin-bottom: 0 !important;
}

/*------------------------------------------------------------
	clearfix（float解除）
------------------------------------------------------------*/
.clearfix {
    *zoom: 1;
}

.clearfix:after {
    display: block;
    clear: both;
    content: "";
}

/*------------------------------------------------------------
	トラッキングタグの余計なスペースを削除
------------------------------------------------------------*/
.trackTags {
    display: none;
}

/*------------------------------------------------------------
	アニメーション
------------------------------------------------------------*/
.Anime {
	-webkit-transition: all 0.15s ease-out;
	-ms-transition: all 0.15s ease-out;
	transition: all 0.15s ease-out;
}
.Popup {
	opacity: 0;
	-webkit-transform: translateY(50px);
	transform: translateY(50px);
	
	-webkit-transition: -webkit-all 1s ease-out;
	-ms-transition: -ms-all 1s ease-out;
	transition: all 1s ease-out;
}
.Popup.show {
	opacity: 1;
	-webkit-transform: translateY(0px);
	transform: translateY(0px);
}

/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {
    min-width: 1280px;
    line-height: 1.8;
    text-align: center;
    font-size: 1.4rem;
    -webkit-text-size-adjust: 100%;
}

#container {
    background-color: #fff;
    overflow-x: hidden;
    text-align: left;
}

/* W1280以上へ切り替え */
@media only screen and (min-width: 1280px) {
    #container {
        min-width: 100%;
    }
}

/* SPへ切り替え */
@media only screen and (max-width: 767px) {
    html.fix, body.fix {
        overflow: hidden;
        height: 100%;
    }
    body {
        min-width: 100vw;
    }
    #container {
        position: relative;
        min-width: 100%;
    }
}

/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/
#header {
    width: 100%;
    height: 180px;
    position: fixed;
    top: 0;
    left: 0;
	background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0)); /* IE */
    background: -moz-linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0)));
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
	font-weight: 600;
    z-index: 100;
	pointer-events: none;
}

#header .inner {
    box-sizing: border-box;
    padding: 56px 7.81% 0;
    width: 100%;
	min-width: 1280px;
	pointer-events: auto;
}

#header .inner .logo {
    display: inline-block;
}

#header .inner #gNav {
    float: right;
}

#header .inner #gNav .pc {
    width: 800px;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

#header .inner #gNav .pc li {
    position: relative;
}

@keyframes show {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes hide {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

#header .inner #gNav .pc li .subNav {
    position: absolute;
	padding-top: 10px;
    top: 23px;
    left: 0;
    opacity: 0;
    display: none;
    -webkit-transition: display 0.3s ease;
    -moz-transition: display 0.3s ease;
    -ms-transition: display 0.3s ease;
    transition: display 0.3s ease;
    animation: hide 0.3s ease 0s;
    z-index: 150;
}

#header .inner #gNav .pc li .subNav li {
    margin-left: 0;
    border-bottom: 1px solid #fff;
    float: none;
}

#header .inner #gNav .pc li .subNav li a {
    padding: 6px 10px;
    display: block;
    background-color: rgba(255, 255, 255, 0.7);
    color: #000;
    font-size: 1.4rem;
}

#header .inner #gNav .pc li .subNav li a:before {
    background-color: transparent;
}

#header .inner #gNav .pc li .subNav li a:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

#header .inner #gNav .pc li .subNav li:last-child {
    border-bottom: none;
}

#header .inner #gNav .pc li .subNav li:hover {
    transform: scale(1);
}

#header .inner #gNav .pc li:nth-child(4):hover .subNav {
    display: block;
    opacity: 1;
    -webkit-transition: display 0.3s ease;
    -moz-transition: display 0.3s ease;
    -ms-transition: display 0.3s ease;
    transition: display 0.3s ease;
    animation: show 0.3s ease 0s;
    z-index: 150;
}

#header .inner #gNav .pc li a {
    display: inline-block;
    position: relative;
    font-size: 1.8rem;
	letter-spacing: 0.08em;
    color: #fff;
}

#header .inner #gNav .pc li a:before {
    position: absolute;
    left: 0;
    bottom: 1px;
    width: 100%;
    height: 2px;
    background: #fff;
    transform: scale(0, 1);
    transform-origin: left;
    transition: 0.4s;
    content: "";
}

#header .inner #gNav .pc li a:hover:before {
    transform: scale(1);
}
#header .inner #gNav .spMenu {
	display: none;
}

/* SPへ切り替え */
@media only screen and (max-width: 767px) {
    #header {
        height: 83px;
        position: relative;
        top: 0;
        left: 0;
        background: -moz-linear-gradient(transparent, transparent);
        background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent));
        background-color: #fff;
        z-index: 1000;
    }
    #header .inner {
        padding: 29px 20px 27px 29px;
		min-width: initial;
    }
    #header .inner button {
        border: transparent;
        background-color: transparent;
        cursor: pointer;
    }
    #header .inner .menu {
        margin-top: 4px;
        display: block;
        float: right;
		position: fixed;
		top: 29px;
		right: 20px;
    }
    #header .inner #gNav {
        margin-top: 0;
        position: fixed;
		z-index: 999;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        float: none;
        display: none;
        overflow: auto;
    }
	#header .inner #gNav .pc {
		display: none;
	}
    #header .inner #gNav .spMenu {
        box-sizing: border-box;
        padding: 0 20px 20px;
        width: 100%;
        height: 100%;
        display: none;
        background-color: rgba(150, 167, 140, 1);
        overflow: auto;
    }
	#header .inner #gNav.open .spMenu {
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		/* 縦並び */
		-webkit-flex-direction: column;
		flex-direction: column
	}
    #header .inner #gNav .spMenu .menuHeader {
        margin-bottom: auto;
        padding: 27px 0 0 13px;
    }
    #header .inner #gNav .spMenu .menuHeader .logo {
        display: inline-block;
        margin-left: -1%;
        margin-top: 0.7%;
    }
    #header .inner #gNav .spMenu .menuHeader .close {
        margin-top: 4px;
        float: right;
    }
}

@media only screen and (max-width: 767px) and (orientation: landscape) {
    #header .inner #gNav .spMenu .menuHeader {
        padding: 24px 0 27px 16px;
    }
    #header .inner #gNav .spMenu .close {
        margin-top: 6px;
    }
}

@media only screen and (max-width: 767px) {
    #header .inner #gNav .spMenu .wrap {
        margin: 0 auto auto;
        width: 74.667vw;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		/* 左右均等 */
		-ms-flex-pack: justify;
		-webkit-justify-content: space-between;
		justify-content: space-between;
    }
    #header .inner #gNav .spMenu .wrap ul {
        margin-left: 0;
        float: none;
    }
	#header .inner #gNav .spMenu .wrap ul.spMenu02 {
	}
    #header .inner #gNav .spMenu .wrap ul .subMenu {
        margin-left: 0;
        float: none;
    }
    #header .inner #gNav .spMenu .wrap ul .small a, #header .inner #gNav .spMenu .wrap ul .subMenu a {
        font-size: 1.8rem;
    }
    #header .inner #gNav .spMenu .wrap ul li a {
		color: #FFF;
        font-size: 2.7rem;
    }
    #header .inner #gNav .spMenu .wrap ul li a.current {
        color: #c7d6be;
    }
}

/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/
#footer {
    width: 100%;
    background-color: #3C3C3C;
}

#footer .inner {
    box-sizing: border-box;
    padding: 50px 93px;
    width: 100%;
}

#footer .inner .leftBox {
    float: left;
    position: relative;
}

#footer .inner .leftBox .logo {
    margin-left: -59.69%;
}

#footer .inner .leftBox .socialBox a {
    margin-top: 127px;
    margin-right: 12.12%;
    float: left;
    display: block;
}

#footer .inner .leftBox .copyrights {
    margin-top: 20px;
    display: inline-block;
    color: #fff;
    font-size: 1.2rem;
	letter-spacing: 0.12em;
}

#footer .inner .ftrNav {
    width: 684px;
    float: right;
    text-align: left;

	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	/* 左右均等 */
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
#footer .inner .ftrNav .EN {
	letter-spacing: 0.08em;
}
#footer .inner .ftrNav ul {
}

#footer .inner .ftrNav ul li a {
    display: inline-block;
    position: relative;
    color: #fff;
}

#footer .inner .ftrNav ul li a:before {
    position: absolute;
    left: 0;
    bottom: 3px;
    width: 100%;
    height: 1px;
    background: #fff;
    transform: scale(0, 1);
    transform-origin: left;
    transition: 0.4s;
    content: "";
}

#footer .inner .ftrNav ul li a:hover:before {
    transform: scale(1);
}

#footer .inner .ftrNav ul li .subMenu {
    margin-left: 0;
    margin-top: 10px;
    float: none;
}

#footer .inner .ftrNav ul li .subMenu li a {
    font-size: 1rem;
    line-height: 1.8;
}
#footer .inner .ftrNav ul li .subMenu li a,
#footer .inner .ftrNav ul.nav05 a {
	color: #9FA0A0;
}

#footer .top {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 50;
}

/* PCのみ */
@media only screen and (min-width: 768px) {
	#footer .top {
		-webkit-transition: all 0.15s ease-out;
		-ms-transition: all 0.15s ease-out;
		transition: all 0.15s ease-out;
	}

	#footer .top:hover {
		opacity: 0.7;
	}
}

/* SPへ切り替え */
@media only screen and (max-width: 767px) {
    #footer {
        position: relative;
    }
    #footer .inner {
        box-sizing: border-box;
        padding: 27px 2.34% 90px;
        position: relative;
    }
    #footer .inner .leftBox {
        float: none;
    }
    #footer .inner .leftBox .logo {
        margin-left: -2.6%;
    }
    #footer .inner .leftBox .socialBox {
        margin: 0 auto;
        width: 96px;
    }
    #footer .inner .leftBox .socialBox a {
        margin-top: 24px;
        margin-right: 16.08%;
        margin-left: 16.08%;
        float: left;
    }
    #footer .inner .leftBox .copyrights {
        margin-top: 50px;
        padding-top: 20px;
        width: 100%;
        border-top: 1px solid #B3B3B3;
        color: #B3B3B3;
        font-size: 2.4vw;
    }
    #footer .inner .ftrNav {
        margin-top: -73px;
        width: 50%;
        min-width: 100%;
        float: none;
        text-align: center;
    }
    #footer .inner .ftrNav ul {
        margin-left: 0;
        float: none;
    }
    #footer .inner .ftrNav ul.nav05 {
		font-size: 3.2vw;
		letter-spacing: 0.08em;
		width: 80vw;
		margin: 0 auto;
        display: -webkit-flex;
        display: -ms-flex;
        display: flex;
		/* 左右均等 */
		-ms-flex-pack: justify;
		-webkit-justify-content: space-between;
		justify-content: space-between;
    }
	#footer .inner .ftrNav ul.nav05 a {
		color: #FFF;
	}
    #footer .inner .ftrNav ul li {
        margin: 0 auto 0;
    }
    #footer .inner .ftrNav ul li a:hover:before {
        transform: scale(0);
    }
    #footer .top:hover {
        opacity: 1;
    }
}

/*------------------------------------------------------------
	PC/SP切り替え
------------------------------------------------------------*/
/* PCへ切り替え */
@media only screen and (min-width: 768px) {
    .pc {
        display: block;
    }
    .sp {
        display: none;
    }
}

/* SPへ切り替え */
@media only screen and (max-width: 767px) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
}

/*------------------------------------------------------------
	メインイメージ
------------------------------------------------------------*/
.mainImg {
    position: relative;
    height: 100vh;
	height: 500px;
    overflow: hidden;
    z-index: 50;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
}

.mainImg .scroll {
	display: none;
    box-sizing: border-box;
    margin-left: 105px;
    margin-right: 105px;
    padding: 1.5%;
    width: 83.6%;
    min-width: calc(100% - 210px);
    position: absolute;
    bottom: 0;
}

/* W1280以上へ切り替え */
@media only screen and (min-width: 1280px) {
    .mainImg {
        position: relative;
        height: 100vh;
		height: 500px;
        overflow: hidden;
    }
    .mainImg img {
        width: 100%;
        height: auto;
    }
}

/* SPへ切り替え */
@media only screen and (max-width: 767px) {
    .mainImg {
        margin-top: 83px;
		margin-top: 0;
        width: 100%;
        height: 72.667vw;
        background-size: cover;
    }
}

/*------------------------------------------------------------
	タイトル
------------------------------------------------------------*/
.ttl01 {
    margin-bottom: 37px;
    font-size: 5.2rem;
}

/* SPへ切り替え */
@media only screen and (max-width: 767px) {
    .ttl01 {
        font-size: 4rem;
        text-align: center;
    }
}

.ttl02 {
    margin-bottom: 56px;
    font-size: 4.4rem;
    text-align: center;
    vertical-align: middle;
    line-height: 1;
}

.pageTtl {
    position: absolute;
    bottom: 0;
	padding-bottom: 13.409%; /* 177px */
	padding-bottom: 85px;
    left: 170px;
    font-size: 7.6rem;
    color: #fff;
}
.shadow {
	text-shadow:0px 0px 5px #333333;
}

/* SPへ切り替え */
@media only screen and (max-width: 767px) {
    .pageTtl {
        bottom: 32.9%;
		padding-bottom: 0;
        left: 5.21%;
        font-size: 4rem;
    }
}

/*------------------------------------------------------------
	ボタン
------------------------------------------------------------*/
.more {
    padding: 17px 65px;
    display: inline-block;
    background-color: #96A78D;
    font-size: 1.2rem;
	letter-spacing: 0.1em;
    color: #fff;
}

/* PCのみ */
@media only screen and (min-width: 768px) {
	.more {
		opacity: 1;
		
		-webkit-transition: all 0.15s ease-out;
		-ms-transition: all 0.15s ease-out;
		transition: all 0.15s ease-out;
	}

	.more:hover {
		opacity: 0.7;
	}
}

/* SPへ切り替え */
@media only screen and (max-width: 767px) {
    .more {
        box-sizing: border-box;
        width: 200px;
		padding-left: 0;
		padding-right: 0;
        display: block;
        text-align: center;
    }
    .more:hover {
        opacity: 1;
    }
}
