@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,500,700&display=swap&subset=japanese");
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@1,500&display=swap');


/*
Light 300
Regular 400
Medium 500
Bold 700
Black 900
*/

/* ---------------------------------------
  基本情報
-----------------------------------------*/
html,
body {
	height: 100%;
}

html {
	font-size: 62.5%;
	overflow-y: scroll;
}

*,
*:after,
*:before {
	box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
address,
ul,
ol,
li,
dl,
dt,
dd,
table,
th,
td,
img,
form,
figure {
	margin: 0;
	padding: 0;
	border: none;
	line-height: 100%;
	list-style-type: none;
	font-family: 'Noto Sans JP', sans-serif;
	font-style: normal;
	font-weight: 400;
	text-align: left;
	color: #323232;
	letter-spacing: 0;
}

input,
select,
button,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
}

select::-ms-expand {
	display: none;
}

textarea {
	resize: vertical;
}

button {
	cursor: pointer;
}

@media screen and (max-width: 768px) {

	.ipad body,
	.android body,
	.iphone body {
		-webkit-text-size-adjust: 100%;
	}

	.android h2,
	.android h3,
	.android ul,
	.android dl dt,
	.android dl dd,
	.android p {
		max-height: 999999px;
	}
}



/* ---------------------------------------
  base
-----------------------------------------*/
body {
	position: relative;
	word-wrap: break-word;
	min-width: 1200px;
}

main {
	display: block;
}

section {
	position: relative;
}

a {
	color: #000000;
	text-decoration: none;
}


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

.eb {
	font-family: 'EB Garamond', serif;
	font-style: italic;
}


@media screen and (max-width: 768px) {
	body {
		padding-top: 50px;
		min-width: inherit;
	}

	img {
		width: 100%;
	}
}




/* ---------------------------------------
  汎用
-----------------------------------------*/
.wrap {
	width: 1100px;
	margin: 0 auto;
	position: relative;
}

.flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.left {
	float: left;
}

.right {
	float: right;
}

.center {
	display: block;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.tal {
	text-align: left;
}

.tar {
	text-align: right;
}

.tac {
	text-align: center;
}

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

.blue {
	color: #274c60;
}

.red {
	color: #910000;
}

.small {
	font-size: 1.4rem !important;
}

.link_txt {
	text-decoration: underline;
}


.fixed {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.fade {
	transition: opacity .3s;
}

.fade:hover {
	opacity: .6;
}

@media screen and (max-width: 768px) {

	.wrap {
		width: 92%;
	}

	.small {
		font-size: 3.2vw !important;
	}
}

/* ---------------------------------------
  レスポンシブ
-----------------------------------------*/

@media screen and (min-width: 769px) {
	.sp {
		display: none !important;
	}
}

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


/* ---------------------------------------
  scroll
-----------------------------------------*/
.fadeup {
	opacity: 0;
	transform: translate(0, 30px);
	transition: opacity 1s, transform 1s;
}

.fadein {
	opacity: 0;
	transition: opacity 1s;
}

.scroll.is-show.fadeup,
.scroll.is-show .fadeup {
	opacity: 1;
	transform: translate(0, 0);
}

.scroll.is-show.fadein,
.scroll.is-show .fadein {
	opacity: 1;
}



.passing {
	position: relative;
}

.passing::before {
	content: "";
	width: 100%;
	height: 0;
	background-color: #274c60;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
}

.passing img {
	opacity: 0;
	transition-delay: .5s;
}

.scroll.is-show .passing img,
.scroll.is-show.passing img {
	opacity: 1;
}

.scroll.is-show .passing::before,
.scroll.is-show.passing::before {
	-webkit-animation: passing 1s ease 0s 1 normal forwards;
	animation: passing 1s ease 0s 1 normal forwards;
}

.delay-half {
	transition-delay: .25s !important;
}

.delay1 {
	transition-delay: .5s !important;
}

.delay1-half {
	transition-delay: .75s !important;
}

.delay2 {
	transition-delay: 1s !important;
}

.delay2-half {
	transition-delay: 1.25s !important;
}

.delay3 {
	transition-delay: 1.5s !important;
}

.delay3-half {
	transition-delay: 1.75s !important;
}

.delay4 {
	transition-delay: 2s !important;
}

.delay4-half {
	transition-delay: 2.25s !important;
}

.delay5 {
	transition-delay: 2.5s !important;
}

.delay5-half {
	transition-delay: 2.75s !important;
}

.delay6 {
	transition-delay: 3s !important;
}

.delay6-half {
	transition-delay: 3.25s !important;
}

.delay7 {
	transition-delay: 3.5s !important;
}

.delay7-half {
	transition-delay: 3.75s !important;
}

.delay8 {
	transition-delay: 4s !important;
}

.delay8-half {
	transition-delay: 4.25s !important;
}

.delay9 {
	transition-delay: 4.5s !important;
}

.delay9-half {
	transition-delay: 4.75s !important;
}

.delay10 {
	transition-delay: 5s !important;
}

.delay10-half {
	transition-delay: 5.25s !important;
}

.delay11 {
	transition-delay: 5.5s !important;
}

.delay11-half {
	transition-delay: 5.75s !important;
}

.delay12 {
	transition-delay: 6s !important;
}

.delay12-half {
	transition-delay: 6.25s !important;
}

.delay13 {
	transition-delay: 6.5s !important;
}

.delay13-half {
	transition-delay: 6.75s !important;
}

.delay14 {
	transition-delay: 7s !important;
}

.delay14-half {
	transition-delay: 7.25s !important;
}

.btn a {
	margin-top: 10px;
	display: block;
	width: 220px;
	height: 50px;
	border: 2px solid #000;
	background-color: rgba(255,255,255,.5);
	position: relative;
	transition: all .5s cubic-bezier(.4, .8, .74, 1) 0s;
	margin: 0 auto;
	cursor: pointer;
}

.btn a img {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	transition: all .5s cubic-bezier(.4, .8, .74, 1) 0s;
}

.btn a img.on {
	opacity: 0;
}


.btn a:hover img.on {
	opacity: 1;
}

.btn a:hover img.off {
	opacity: 0;
}

.btn a:hover {
	background-color: #000;
	color: #fff;
}

.btn a:hover::before,
.btn a:hover::after {
	background-color: #fff;
}


@media screen and (max-width: 768px) {

	.btn a {
		margin-top: 0;
		width: 44vw;
		height: 10vw;
	}

	.btn a img {
		width: auto;
		height: 3.2vw;
	}


}



/* ----------------------------------------------------------------------------------------------------
*  ヘッダー
* --------------------------------------------------------------------------------------------------*/

#header {
	position: relative;
	background-color: #fff;
	width: 100%;
	z-index: 999;
	height: 100px;
}

#header .wrap {
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#header .logo {
	width: 290px;
	margin-bottom: 4px;
}

#header .contact_btn {
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 0;
	width: calc(50% - 550px + 194px);
	height: 100px;
}

#header .contact_btn a {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	padding-left: 70px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	transition: .3s ease;
}

#header .contact_btn a::before {
	content: "";
	width: calc(100% - 194px);
	height: 100%;
	background-color: #000;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
	background: url(../img/common/bg_highlight.png) repeat-x 0 0;
}

#header .contact_btn a .line {
	right: calc(100% - 208px);
	top: 0;
	width: 2px;
	height:100%;
	background-image: url(../img/common/contact_btn_line.png);
	background-repeat: no-repeat;
	background-size: 2px 100%;
	z-index: 2;
	position: absolute;
}

#header .contact_btn a::after {
	content: "";
	width: 524px;
	height: 81px;
	background-image: url(../img/common/contact_btn_bg.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center;
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	transition: .3s ease;
}

#header .contact_btn a span {
	position: relative;
	z-index: 2;
}

#header .contact_btn a span::after {
	content: "";
	display: block;
	position: absolute;
	bottom: -10px;
	width: 100%;
	height: 2px;
	background: #000;
	transform: scale(1);
	transform-origin: left top;

}

#header .contact_btn a:hover {
	padding-left: 60px;
}

#header .contact_btn a:hover::after {
	left: 0;
}

#header .contact_btn a:hover span::after {
	animation: line-anime .6s ease-out forwards;
}

@media screen and (max-width: 768px) {
	#header {
		position: fixed;
		left: 0;
		top: 0;
		height: 50px;
	}

	#header .wrap {
		height: 100%;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	#header .logo {
		width: 150px;
		margin-bottom: 0;
	}

	#header .contact_btn {
		width: 130px;
		height: 50px;
	}

	#header .contact_btn a {
		padding-left: 30px;
	}

	#header .contact_btn a::before {
		width: 28px;
		background-size: 2px 100%;
		background-position: 7px 0;
	}
	#header .contact_btn a .line {
		right: 19px;
	}

	#header .contact_btn a::after {
		width: 120px;
		height: 40px;
		left: 10px;
		background-size: auto 100%;
		background-position: left center;
	}

	#header .contact_btn a span {
		width: 59px;
		padding-bottom: 2px;
	}

	#header .contact_btn a span::after {
		bottom: -2px;
		height: 1px;

	}

		#header .contact_btn a:hover {
		padding-left: 20px;
	}

	#header .contact_btn a:hover span::after {
		animation: line-anime .6s ease-out forwards;
	}

}


/* ----------------------------------------------------------------------------------------------------
*  フッター
* --------------------------------------------------------------------------------------------------*/

footer .f_btn {
	padding: 55px;
	text-align: center;
}

footer .f_btn a {
	display: inline-block;
	box-shadow: 0 0 20px rgba(0, 0, 0, .2);
	border-radius: 16px;
}

footer .copyright {
	background-color: #323232;
	text-align: center;
	color: #fff;
	font-weight: 300;
	font-size: 1.4rem;
	padding: 1.3em 0;
}

@media screen and (max-width: 768px) {
	footer{
		padding-bottom: 20vw;
	}
	footer .f_btn {
		padding: 9vw 0;
	}

	footer .f_btn a {
		width: 62vw;
		box-shadow: 0 0 2.6vw rgba(0, 0, 0, .2);
		border-radius: 3vw;
	}

	footer .copyright {
		font-size: 2.8vw;
		padding: 1.3em 0;
	}
}




/* ------------------------------
    モーダル
------------------------------ */
/*popup-modal*/
.popup-modal {
	position: fixed;
	right: 0;
	bottom: 30px;
	width: 380px;
	height: 120px;
	box-shadow: 0 0 10px rgba(0, 0, 0, .2);
	background: linear-gradient(90deg, rgba(255, 224, 232, 1) 34.73%, rgba(255, 204, 219, 1) 73.55%, rgba(255, 197, 214, 1) 99.92%);
	display: block;
	z-index: 1000;
}

.popup-modal .inner {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	padding-left: 12px;
	position: relative;
}

.popup-modal .inner .txt {
	color: #323232;
	font-size: 1.8rem;
	line-height: 1.77;
	position: relative;
	margin-left: .3em;
	letter-spacing: 0.03em;
}

.popup-modal .inner::before {
	content: "";
	width: 47px;
	height: 1px;
	position: absolute;
	right: 0;
	bottom: 44px;
	background-color: #323232;
}

/**/
.mfp-container {
	padding: 0;
}

button.mfp-close {
	display: none !important;
}

#inline-wrap {
	width: 100%;
	height: 100%;
	position: relative;
	background: #ffe0e8;
}

.modal_cnt {
	opacity: 0;
	transition: all .4s ease;
}

.mfp-ready .modal_cnt {
	opacity: 1;
}

.application {
	width: 800px;
	padding: 80px 0 70px;
	text-align: center;
}

.application .logo {
	width: 396px;
	margin: 0 auto 40px;
}

.application .logo img {
	width: 100%;
}

.application .ttl span {
	position: relative;
	display: inline-block;
	line-height: 1;
	font-weight: 700;
	font-size: 3.8rem;
	letter-spacing: 0.14em;
	padding: 0 2em;
	margin-bottom: 1.1em;
}

.application .ttl span::before,
.application .ttl span::after {
	content: "";
	width: 48px;
	height: .8em;
	background: url(../img/common/application_ttl.png) no-repeat center / 100% auto;
	position: absolute;
	bottom: 0;
}

.application .ttl span::before {
	left: 0;
}

.application .ttl span::after {
	right: 0;
}

.application .txt {
	font-weight: 700;
	font-size: 2.8rem;
	letter-spacing: 0.2em;
	line-height: 1.6;
	margin-bottom: 1em;
	margin-top: .1em;
}

.application .app_list {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.application .app_list li {
	margin-right: 25px;
}


.application .qr {
	margin-left: -14px;
	margin-top: 15px;
}


.application .popup-close {
	display: block;
	width: 220px;
	height: 50px;
	border: 2px solid #000;
	background-color: rgba(255,255,255,.5);
	position: relative;
	transition: all .5s cubic-bezier(.4, .8, .74, 1) 0s;
	margin: 20px auto 0;
	cursor: pointer;
}

.application .popup-close img {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	transition: all .5s cubic-bezier(.4, .8, .74, 1) 0s;
}

.application .popup-close img.on {
	opacity: 0;
}

.application .popup-close::before,
.application .popup-close::after {
	content: "";
	position: absolute;
	margin: auto;
	display: block;
	background-color: #000;
	width: 2em;
	height: 2px;
	top: 50%;
	right: 1.5em;
	transition: all .5s cubic-bezier(.4, .8, .74, 1) 0s;
}

.application .popup-close::before {
	transform: translateY(-50%)rotate(-45deg);
}

.application .popup-close::after {
	transform: translateY(-50%)rotate(45deg);
}


.application .popup-close:hover img.on {
	opacity: 1;
}

.application .popup-close:hover img.off {
	opacity: 0;
}

.application .popup-close:hover {
	background-color: #000;
	color: #fff;
}

.application .popup-close:hover::before,
.application .popup-close:hover::after {
	background-color: #fff;
}

@media screen and (max-width: 768px) {

	/*popup-modal*/
	.popup-modal {
		bottom: 0;
		width: 100%;
		height: 20vw;
		box-shadow: 0 0 2.66vw rgba(0, 0, 0, .2);
	}

	.popup-modal .inner {
		padding-left: 13vw;
	}

	.popup-modal .inner .logoimg {
		width: 21vw;
	}

	.popup-modal .inner .txt {
		font-size: 4vw;
		line-height: 1.46;
	}

	.popup-modal .inner::before {
		width: 19vw;
		bottom: 7vw;
	}

	/**/
	.application {
		width: 74%;
		margin: 0 auto;
		padding: 16vw 0 13vw;
	}

	.application .logo {
		width: 73.46vw;
		margin: 0 auto 12vw;
	}

	.application .flex{
		position: relative;
	}

	.application .flex .img {
		width: 42vw;
		margin-left: -8vw;
		margin-bottom: 0;
		position: absolute;
		left: 0;
		top: -1vw;
	}

	.application .ttl span {
		display: block;
		width: 44vw;
		margin-left: auto;
		margin-right: 0;
		font-size: 6.5vw;
		line-height: 1.36;
		margin-bottom: 0;
		padding: 4.5vw 0;
		text-align: left;
		letter-spacing: 0.1em;
		margin-bottom: .2em;
	}

	.application .ttl span::before,
	.application .ttl span::after {
		width: 100%;
		height: 2.8vw;
		background: url(../img/common/application_ttl.png) repeat-x center / auto 100%;
		bottom: 0;
	}

	.application .ttl span::before {
		bottom: auto;
		top: 0;
	}

	.application .txt {
		width: 44vw;
		margin-left: auto;
		margin-right: 0;
		margin-bottom: 6vw;
		font-size: 4.4vw;
		letter-spacing: 0.1em;
		position: relative;
		line-height: 1.5;
	}

	.application .app_list{
		justify-content: space-between;
	}
	.application .app_list li{
		width: auto;
		height: 10.6vw;
		position: relative;
		margin: 0;
	}

	.application .app_list li img{
		width: auto;
		height: 100%;
	}

	.application .qr {
		width: 106%;
		margin-left: -3%;
		margin-top: 2vw;
	}


	.application .popup-close {
		margin-top: 10vw;
		width: 44vw;
		height: 10vw;
	}

	.application .popup-close::before,
	.application .popup-close::after {
		width: 1.4em;
		right: 1.5em;
	}
	.application .popup-close img {
		width: auto;
		height: 3.2vw;
	}

}


/* ------------------------------
    animation
------------------------------ */
@keyframes line-anime {
	0% {
		transform: scale(1);
		transform-origin: right top
	}

	50% {
		transform: scaleX(0);
		transform-origin: right top
	}

	65% {
		transform: scaleX(0);
		transform-origin: left top
	}

	to {
		transform: scale(1);
		transform-origin: left top
	}
}

/* ------------------------------
    clearfix
------------------------------ */

.cf:after {
	content: ".";
	display: block;
	height: 0;
	font-size: 0;
	clear: both;
	visibility: hidden;
}

.cf {
	display: inline-block;
}

/* Hides from IE Mac */
* html .cf {
	height: 1%;
}

.cf {
	display: block;
}

/* End Hack */
