@charset "UTF-8";
/*============================
	- html5 reset style
	- text
	- box
	- display
	- list
	- table
	- form parts
	- icon
	- clearfix
============================*/
/*============================
	html5 reset style
============================*/
html,body,div,span,object,iframe,
h1,h2,h3,h4,h5,h6,p,pre,address,code,
a,em,img,
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,canvas,figcaption,figure,
footer,header,menu,nav,main,section,
input,mark,audio,video,
time,mark,audio,video {
margin:0;
padding:0;
border:0;
outline:0;
font-size:100%;
vertical-align:baseline;
background:transparent;
}
body {
line-height:1;
}
article,aside,figcaption,figure,
footer,header,menu,nav,section {
display:block;
}
ul,ol {
list-style:none;
}
a {
text-decoration: none;
color: var(--font-color);
}
img {
vertical-align:top;
}
em {
font-style:normal;
}
table {
border-collapse:collapse;
border-spacing:0;
}
input,select {
vertical-align:middle;
}
input,select,textarea,button {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
font:inherit;
border:0;
border-radius: 0;
box-shadow:none;
}
input:focus,select:focus,textarea:focus,button:focus {
outline:0;
box-shadow: none;
}
label {
cursor: pointer;
}
/*----------------------------
	base layout
-----------------------------*/
body {
	-webkit-text-size-adjust: 100%;
	font: var(--fs-14) / 1.7 var(--notosansjp);
	color: var(--font-color);
	background-color: var(--white);
}
.inner {
	width: calc(100% - 64px);
	max-width: 1120px;
	margin-left: auto;
	margin-right: auto;
}
/*----------------------------
	fadein
-----------------------------*/
.fadein {
	opacity: 0;
	transform: translateY(50px);
	transition: 1.5s;
}
.fadein.is--animated {
	opacity: 1;
	transform: translateY(0);
}
.fade {
	opacity: 0;
	transition: 1.5s;
}
.fade.is--animated {
	opacity: 1;
}
/*----------------------------
	header
-----------------------------*/
.header {
	position: fixed;
	z-index: 10;
	font-family: var(--abhaya);
	display: flex;
	align-items: center;
	width: 100%;
	padding: 12px 2.083% 12px 32px;
	box-sizing: border-box;
	transition: .5s;
	z-index: 100;
}
/* .header.is--change {
	mix-blend-mode: difference;
} */
.is--change .sitetitle {
	mix-blend-mode: difference;
}
.bg--nav {
	opacity: 0;
	transition: .5s;
}
.is--active .bg--nav {
	position: fixed;
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, .3);
	top: 0;
	left: 0;
	cursor: pointer;
	opacity: 1;
}
.nav {
	background: var(--main-color);
	padding: 32px 20px 60px;
	box-sizing: border-box;
	font-size: var(--fs-32);
	line-height: 1;
	position: fixed;
	opacity: 0;
	visibility: hidden;
	top: 0;
	right: -100%;
	min-width: 516px;
	height: 100vh;
	transition: .5s;
	z-index: 1;
}
.is--active .nav {
	opacity: 1;
	visibility: visible;
	right: 0;
}
.list--nav {
	max-width: 320px;
	margin: 0 auto 60px;
}
.list--nav__item + .list--nav__item {
	margin-top: 32px;
}
.list--nav__item.logo {
	margin-bottom: 60px;
}
.logo .link--nav {
	max-width: max-content;
	margin: auto;
}
.link--nav {
	color: var(--white);
	display: block;
}
.nav .list--white {
	max-width: 320px;
	margin: 0 auto 48px;
	line-height: 1;
	flex-direction: column;
	align-items: center;
	gap: 32px;
}
.nav .list--white__item {
	width: 100%;
}
.nav .list--white .link--white {
	width: 100%;
	font-size: var(--fs-32);
	text-align: center;
	border-radius: 1.5rem;
	box-sizing: border-box;
	margin-right: 0;
}
.nav .list--sns {
	display: flex;
	justify-content: center;
	gap: 20px;
}
.list--white {
	display: flex;
	line-height: 1;
}
.header > .list--white {
	margin-left: auto;
}
.link--white {
	background-color: rgba(255, 255, 255, .3);
	color: var(--white);
	font-size: var(--fs-32);
	display: block;
}
.list--white .link--white {
	font-size: var(--fs-14);
	padding: 8px 24px;
	border-radius: 1rem;
	margin-right: 22px;
}
.link--white .en {
	margin-right: .5em;
}
.link--white .ja {
	font-size: var(--fs-12);
	font-family: var(--notosansjp);
	margin-left: .5em;
}
.header > .list--sns {
	position: fixed;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 1.944%;
	max-height: max-content;
}
.header > .list--sns .list--sns__item + .list--sns__item {
	margin-top: 24px;
}
.menu__outer {
	font-size: 0;
	color: transparent;
	position: relative;
	width: 26px;
	height: 12px;
	cursor: pointer;
	z-index: 1;
}
.menu__outer::before,.menu__outer::after {
	content: "";
	width: 100%;
	height: 1px;
	background-color: var(--white);
	position: absolute;
	left: 0;
	top: 0;
	transition: .5s;
}
.menu__outer::after {
	top: 10px;
}
.is--active .menu__outer::before {
	transform: rotate(45deg);
	top: 0;
	bottom: 0;
	margin: auto;
}
.is--active .menu__outer::after {
	transform: rotate(-45deg);
	top: 0;
	bottom: 0;
	margin: auto;
}
/*----------------------------
	contents
-----------------------------*/
.sec__title {
	font-family: var(--allura);
	font-size: var(--fs-120);
	color: var(--main-color);
	font-weight: normal;
	line-height: 1;
}
.title--line {
	font-family: var(--mincho);
	position: relative;
	padding-bottom: 16px;
}
.title--line::after {
	content: "";
	width: 5.625rem;
	height: 1px;
	background: var(--main-color);
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}
.contents--campaign {
	padding: 56px 16px;
	box-sizing: border-box;
	margin-bottom: 126px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.contents--campaign .title--line {
	font-size: var(--fs-32);
	text-align: center;
	color: var(--main-color);
	width: 100%;
	margin-bottom: 56px;
}
.contents--campaign__item {
	text-align: center;
	font-weight: bold;
	padding: 0 32px;
	box-sizing: border-box;
	position: relative;
}
.contents--campaign__item.second {
	margin-left: 2rem;
}
.contents--campaign__item.last {
	margin-left: 3.75rem;
}
.contents--campaign__item.second::before {
	content: "＋";
	font-size: var(--fs-32);
	position: absolute;
	top: 0;
	bottom: 0;
	left: -2rem;
	margin: auto;
	height: max-content;
}
.contents--campaign__item.last::before {
	content: "";
	background: url(../img/icon_arrow_right.png) center / 100% no-repeat;
	width: 3.75rem;
	height: 2rem;
	position: absolute;
	top: 0;
	bottom: 0;
	left: -3.75rem;
	margin: auto;
}
.contents--campaign__item .text {
	font-size: var(--fs-16);
	margin-top: 12px;
	margin-bottom: 12px;
}
.contents--campaign__item.last .text {
	margin-bottom: 0;
}
.contents--campaign__item .em {
	font-size: var(--fs-40);
}
.contents--campaign__item .c--accent-blue {
	font-size: var(--fs-56);
}
.contents--campaign__item .small {
	font-size: var(--fs-12);
	text-align: right;
	font-weight: normal;
	width: 100%;
	display: block;
	margin-top: -.625rem;
}
.contents--sns {
	display: flex;
	width: 100%;
}
.contents--sns .img--sns {
	width: 50%;
	height: auto;
	display: block;
}
.contents--sns .text__outer {
	width: 50%;
	background: var(--white);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.contents--sns .text__outer .text {
	margin-bottom: 32px;
}
.contents--sns .list {
	display: flex;
	gap: 8.333%;
	font-size: var(--fs-12);
}
.contents--sns .list__item {
	width: 8rem;
}
.contents--sns .list__item .text {
	margin-top: 20px;
	margin-bottom: 0;
}
.contents--form {
	padding: 168px 0 90px;
}
.contents--form .title--line {
	font-size: var(--fs-32);
	text-align: center;
	color: var(--main-color);
	margin-bottom: 56px;
}
.contents--form .contents__text {
	margin: 0 auto 96px;
	max-width: max-content;
}
/* option */
.option .title--line {
	font-size: var(--fs-20);
	color: var(--main-color);
	text-align: center;
	margin-bottom: 120px;
}
.option .title--line em {
	font-size: var(--fs-32);
}
.option__text {
	max-width: 600px;
	margin: 0 auto 180px;
}
.list--option {
	display: flex;
	flex-wrap: wrap;
	gap: 120px 4%;
}
.list--option__item {
	width: 48%;
	display: flex;
	align-items: flex-start;
	gap: 4.444%;
}
.img--option {
	width: 33.703%;
	height: auto;
	margin-top: auto;
	margin-bottom: auto;
}
.list--option__item .title__outer {
	display: flex;
	align-items: center;
	color: var(--main-color);
	font-weight: bold;
	margin-bottom: 24px;
}
.list--option__item .title {
	color: var(--main-color);
	font-size: var(--fs-20);
	line-height: 1;
	padding: 8px 26px;
	position: relative;
	z-index: 1;
	max-width: max-content;
	margin-right: 16px;
}
.list--option__item .title::before {
	content: "";
	width: 100%;
	height: 100%;
	background-color: var(--white);
	position: absolute;
	left: 5px;
	top: 5px;
	z-index: -1;
}
.list--option__item .title::after {
	content: "";
	width: 100%;
	height: 100%;
	border: 1px solid var(--main-color);
	position: absolute;
	top: 0;
	left: 0;
}
.list--option__item .text__outer {
	padding-top: 20px;
}
.list--option__item .price {
	font-size: var(--fs-16);
}
/*----------------------------
	footer
-----------------------------*/
.footer {
	background-color: var(--main-color);
	color: #fff;
	padding: 64px 24px 32px 0;
}
.footer .inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.footer .logo__outer {
	max-width: 18.125rem;
}
.footer .link--logo {
	margin-bottom: 30px;
	display: block;
}
.footer .def {
	display: flex;
	flex-wrap: wrap;
}
.footer .def__title {
	width: 3.75rem;
	padding-right: .5em;
	position: relative;
}
.footer .def__title::after {
	content: ":";
	position: absolute;
	right: .25em;
	top: 0;
}
.footer .def__data {
	width: calc(100% - (3.75rem + .5em));
}
.link__outer {
	/* width: calc(100% - (379px + 14%) ); */
	min-width: max-content;
	padding-top: 60px;
}
.list--footer {
	display: flex;
	gap: 40px;
	margin-bottom: 30px;
}
.footer .link {
	color: #fff;
	font-family: var(--abhaya);
	font-size: var(--fs-18);
}
.footer .list--white {
	margin-bottom: 30px;
}
.footer .list--sns {
	display: flex;
	gap: 20px;
}
.company__outer {
	padding-top: 60px;
}
.company__outer .title {
	font-size: var(--fs-20);
	margin-bottom: 8px;
}
.copyright__outer {
	width: 100%;
	text-align: center;
	font-size: var(--fs-12);
	margin-top: 80px;
}
/*----------------------------
	media query
-----------------------------*/
@media screen and (max-width: 768px){
	/*----------------------------
		header
	-----------------------------*/
	.header {
		padding: 12px 16px;
	}
	.nav {
		min-width: auto;
		width: 100%;
	}
	.header > .list--white,.header > .list--sns {
		display: none;
	}
	.menu__outer {
		margin-left: auto;
	}
	/*----------------------------
		contents
	-----------------------------*/
	/* campaign */
	.contents--campaign {
		width: 100%;
	}
	/* sns */
	.contents--sns {
		flex-wrap: wrap;
	}
	.contents--sns .list {
		width: 100%;
	}
	.contents--sns .list__item {
		width: 33%;
	}
	.contents--sns .img--sns {
		width: 100%;
	}
	.contents--sns .text__outer {
		width: 100%;
		padding: 60px 16px;
	}
	/* form */
	.contents--form {
		padding: 140px 0;
	}
	.contents--form .contents__text {
		width: calc(100% - 64px);
	}
	.contents--campaign__item.first,
	.contents--campaign__item.second {
		width: calc(50% - 1rem);
		padding: 0;
	}
	.contents--campaign__item.last {
		width: 100%;
		padding: 0;
		margin-left: 0;
		padding-top: 2rem;
		margin-top: 2rem;
	}
	.contents--campaign__item.last::before {
		left: 0;
		right: 0;
		top: -1rem;
		bottom: auto;
		transform: rotate(90deg);
	}
	/* option */
	.option .title--line {
		margin-bottom: 60px;
	}
	.option__text {
		margin-bottom: 80px;
	}
	.list--option__item {
		width: 100%;
	}
	/*----------------------------
		footer
	-----------------------------*/
	.footer {
		padding-right: 0;
	}
	.footer .inner {
		flex-direction: column;
		align-items: center;
	}
	.footer .link--logo img {
		width: 140px;
		height: auto;
	}
	.link__outer {
		width: 100%;
		min-width: auto;
		max-width: max-content;
	}
	.list--footer {
		flex-wrap: wrap;
		gap: 24px;
	}
	.list--footer__item {
		width: 100%;
	}
	.footer .list--white {
		flex-direction: column;
		gap: 24px;
	}
	.footer .link--white {
		max-width: max-content;
	}
}
@media screen and (max-width: 500px){
	.list--option__item {
		flex-wrap: wrap;
		flex-direction: column;
		align-items: center;
	}
	.img--option {
		width: 60%;
	}
	.list--option__item .text__outer {
		width: 100%;
	}
}