@charset "UTF-8";

@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Readex+Pro:wght@300;500&display=swap);

:root {
	--c-primary: #f03;
	--c-secondary: #19b2b0;
	--c-bg-light: #f9f8ee;
	--c-border: #cecbb4;
	--c-text-gray: #757575;
	--c-accent-gray: #9a9780;
	--c-black: #000;
	--c-white: #fff;
	--f-readex: 'Readex Pro', sans-serif;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */

a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
	display: block;
}

body {
	line-height: 1;
}

main {
	display: block;
}

ol,ul {
	list-style: none;
}

blockquote,q {
	quotes: none;
}

blockquote:after,blockquote:before,q:after,q:before {
	content: '';
	content: none;
}

table {
	border-spacing: 0;
}

a {
	text-decoration: none;
}

img {
	margin: 0;
	padding: 0;
	vertical-align: bottom!important;
}

button,input,select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding: 0;
	margin: 0;
	border: 0;
	border-radius: 0;
}

body,html {
	margin: 0 auto;
	font-family: 'Noto Sans JP', sans-serif;
	-webkit-overflow-scrolling: touch;
	-webkit-text-size-adjust: 100%;
	color: var(--c-black);
	font-weight: 400;
	overflow-x: hidden;
	word-wrap: break-word;
}

br.is--pc {
	display: inline;
}

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

br.is--sp {
	display: none;
}

@media screen and (max-width:768px) {
	br.is--sp {
		display: inline;
	}
}

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

@media all and (-ms-high-contrast:none) {
	img {
		width: 100%;
	}
}

img.is--pc {
	display: inline!important;
}

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

img.is--sp {
	display: none!important;
}

@media screen and (max-width:768px) {
	img.is--sp {
		display: inline!important;
	}
}

a {
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	display: block;
}

@media screen and (min-width:769px) {
	a:hover {
		opacity: .6;
	}
}

@media screen and (min-width:768px) {
	.pc {
		display: inline;
	}
	.sp {
		display: none;
	}
}

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

.readex {
	font-family: var(--f-readex);
	font-weight: 500;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn__primary a {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	color: var(--c-white);
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-weight: 700;
	position: relative;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}

.btn__primary a:after {
	content: '';
	display: inline-block;
	width: 8px;
	height: 8px;
	border-right: 2px solid var(--c-white);
	border-bottom: 2px solid var(--c-white);
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	right: 15px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

@media screen and (max-width:768px) {
	.btn__primary a:after {
		-webkit-transform: rotate(315deg);
		-ms-transform: rotate(315deg);
		transform: rotate(315deg);
	}
}

.btn__445 {
	width: 445px;
	margin: 0 auto;
}

.btn__445 a {
	height: 80px;
	border-radius: 40px;
	background-color: var(--c-primary);
	font-size: 22px;
	letter-spacing: calc(50 * .001em);
	padding-left: 77px;
}

.btn__445 a:after {
	border-right: 3px solid var(--c-white);
	border-bottom: 3px solid var(--c-white);
	right: 30px;
	top: -1px;
	width: 13px;
	height: 13px;
}

/* ==========================================================================
   Header
   ========================================================================== */

.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
	background-color: var(--c-white);
}

.header__inner {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	max-width: 1372px;
	margin: 0 auto;
	padding: 20px 11px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

@media screen and (max-width:768px) {
	.header__inner {
		padding: 17px 15px;
		width: auto;
		position: relative;
	}
}

.header__button {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.header__logo {
	width: 166px;
	text-align: center;
}

.header__overflow {
	display: none;
	-webkit-animation-name: fadeInAnime;
	animation-name: fadeInAnime;
	-webkit-animation-duration: .5s;
	animation-duration: .5s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	opacity: 0;
}

.header__overflow.show {
	display: block;
	opacity: 1;
}

@-webkit-keyframes fadeInAnime {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

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

.header__body {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

@media screen and (max-width:768px) {
	.header__body {
		display: none;
		background-color: var(--c-bg-light);
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		padding: 0 15px;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		overflow-y: scroll;
	}
}

@media screen and (max-width:1150px) {
	.header__logo {
		width: 190px;
	}
}

@media screen and (max-width:768px) {
	.header__logo {
		width: 130px;
	}
}

.header__info {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

@media screen and (max-width:768px) {
	.header__info {
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
		margin-top: 30px;
		display: none;
	}
}

.header__info.sp {
	display: none;
}

@media screen and (max-width:768px) {
	.header__info.sp {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		padding-bottom: 79px;
	}
}

.header__btn {
	width: 160px;
}

@media screen and (max-width:768px) {
	.header__btn {
		width: 170px;
	}
}

.header__btn a {
	height: 44px;
	border-radius: 22px;
	position: relative;
	font-size: 15px;
}

@media screen and (max-width:768px) {
	.header__btn a {
		height: 55px;
		border-radius: 27px;
		font-size: 16px;
		padding-bottom: 3px;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

.header__btn a:after {
	right: 15px;
}

@media screen and (max-width:768px) {
	.header__btn a:after {
		right: 15px;
		top: -2px;
	}
}

.header__btn--first {
	margin-right: 3px;
}

.header__btn--first a {
	background-color: var(--c-secondary);
	padding-left: 15px;
	letter-spacing: .06em;
}

@media screen and (max-width:768px) {
	.header__btn--first a {
		padding-right: 8px;
		padding-left: 0;
	}
}

.header__btn--first a .lead {
	display: none;
}

@media screen and (max-width:768px) {
	.header__btn--first a .lead {
		font-size: 10px;
		display: block;
		padding-top: 14px;
		padding-bottom: 4px;
		letter-spacing: 0;
	}
}

@media screen and (max-width:768px) {
	.header__btn--first a .main {
		display: block;
		font-size: 13px;
		padding-left: 12px;
	}
}

.header__btn--second a {
	background-color: var(--c-primary);
	padding-left: 35px;
	letter-spacing: .14em;
}

@media screen and (max-width:768px) {
	.header__btn--second a {
		padding-left: 0;
		letter-spacing: 0;
		white-space: nowrap;
	}
}

@media screen and (max-width:768px) {
	.header__btn--second a .dots {
		margin-left: -3px;
		margin-right: -3px;
	}
}

.header__btn--second a .hide {
	display: none;
}

@media screen and (max-width:768px) {
	.header__btn--second a .hide {
		display: inline-block;
		width: 81px;
	}
}

@media screen and (max-width:768px) {
	.header__btn--second a .entry {
		margin-left: -3px;
	}
}

/* ==========================================================================
   Navigation
   ========================================================================== */

@media screen and (max-width:768px) {
	.gNav {
		padding: 90px 0 0;
	}
}

.gNavList {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 10px;
}

@media screen and (max-width:768px) {
	.gNavList {
		display: block;
		margin-top: 0;
	}
}

.gNavList__item {
	margin-left: 36px;
}

@media screen and (max-width:768px) {
	.gNavList__item {
		border-bottom: 1px solid var(--c-border);
		margin-left: 0;
	}
}

.gNavList__item:first-child {
	margin-left: 0;
}

@media screen and (max-width:768px) {
	.gNavList__item:first-child {
		border-top: 1px solid var(--c-border);
	}
}

.gNavList__item a {
	color: var(--c-black);
	font-size: 16px;
	letter-spacing: .05em;
}

@media screen and (max-width:768px) {
	.gNavList__item a {
		text-align: center;
		padding: 21px 0;
	}
}

.spNav {
	display: none;
}

@media screen and (max-width:768px) {
	.spNav {
		width: 68px;
		height: 54px;
		position: absolute;
		top: 0;
		right: 0;
		display: block;
	}
}

.spNav span {
	display: inline-block;
	width: 30px;
	height: 1px;
	background-color: var(--c-black);
	position: absolute;
	left: 18px;
	-webkit-transform: rotate(0);
	-ms-transform: rotate(0);
	transform: rotate(0);
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}

.spNav span:first-child {
	top: 22px;
}

.spNav span:nth-child(2) {
	top: 29px;
}

.spNav span:last-child {
	top: 35px;
}

.is-active-drawer .spNav span {
	display: inline-block;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}

.is-active-drawer .spNav span:first-child {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 28px;
	left: 13px;
	width: 39px;
}

.is-active-drawer .spNav span:nth-child(2) {
	display: none;
}

.is-active-drawer .spNav span:last-child {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	top: 28px;
	left: 13px;
	width: 39px;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
	position: relative;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 50px 0;
	background-color: var(--c-white);
}

@media screen and (max-width:768px) {
	.footer {
		padding: 32px 0 55px;
	}
}

.footer__logo {
	text-align: center;
}

@media screen and (max-width:768px) {
	.footer__logo {
		margin: 0 auto;
		width: 130px;
	}
}

.footerNav__list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 39px;
	margin-bottom: 30px;
}

@media screen and (max-width:768px) {
	.footerNav__list {
		margin-top: 26px;
		margin-bottom: 20px;
	}
}

.footerNav__item {
	margin-left: 36px;
}

@media screen and (max-width:768px) {
	.footerNav__item {
		margin-left: 29px;
	}
}

.footerNav__item:first-child {
	margin-left: 0;
}

.footerNav__item a {
	color: var(--c-black);
	font-size: 14px;
}

@media screen and (max-width:768px) {
	.footerNav__item a {
		font-size: 12px;
	}
}

.footerNav__item:nth-child(2) {
	margin-left: 36px;
}

.footer__copyright {
	text-align: center;
	font-size: 12px;
	letter-spacing: .04em;
}

@media screen and (max-width:768px) {
	.footer__copyright {
		font-size: 11px;
		letter-spacing: .05em;
	}
}