@charset "utf-8";
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:0;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}[hidden],template{display:none}


/* ==========================================================================
	 base
========================================================================== */
* {
	box-sizing: border-box;
}

html, body {
	width: 100%;
}

html {
	font-size: 62.5%;
	color: #152f40;
	line-height: 1.6;
	overflow-y: scroll;
	height: -webkit-fill-available;
}

@media screen and (min-width: 768px) {
	html {
		line-height: 1.75;
	}
}

body {
	position: relative;
	padding: 0;
	font-family: YakuHanJP,YakuHanMP,'Noto Sans JP','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,sans-serif;
	font-size: 1.6rem;
	font-weight: 300;
	overflow-wrap: break-word;
	word-wrap: break-word;
	-webkit-print-color-adjust: exact;
	-webkit-font-smoothing: antialiased;
	letter-spacing: .08em;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
	margin-top: 0;
	margin-bottom: 0;
	font-weight: normal;
}

p {
	margin-top: 0;
	margin-bottom: 0;
	letter-spacing: .08em;
}

ol, ul, dl {
	margin: 0;
	padding: 0;
}

ol, ul {
	list-style-type: none;
}

dd {
	margin-left: 0;
}

th {
	font-weight: 300;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

cite {
	font-style: normal;
}

figure {
	margin: 0;
	padding: 0;
	overflow: hidden;
}

figcaption {
	margin-top: 0;
}

picture {
	display: block;
}

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

@media screen and (max-width: 768px) {
	img {
		max-width: 100%;
		height: auto;
	}
}

img.zoom {
	transition: transform .3s ease-out;
}

img.zoom:hover {
	transform: scale(1.05);
	opacity: .85;
}

a {
	color: inherit;
	text-decoration: none;
	outline: none;
	transition: all .4s ease-out;
}

a:hover {
	text-decoration: none;
}

a:visited {
	text-decoration: none;
}

:focus {
	-moz-outline-style: none;
}

::selection {
	background: rgba(0, 123, 199, .1);
}
::-moz-selection {
	background: rgba(0, 123, 199, .1);
}

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

.pc {
	display: none;
}

.sp {
	display: block;
}

@media screen and (min-width: 769px) {
	a[href^="tel:"] {
		pointer-events: none;
	}
	.pc {
		display: block;
	}
	.sp {
		display: none;
	}
}


/* ==========================================================================
	 header
========================================================================== */
.header {
	position: fixed;
	z-index: 101;
	width: 100%;
	background-color: rgba(255, 255, 255, .7);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}
.header.is-active {
	background-color: rgba(255, 255, 255, 1);
	-webkit-backdrop-filter: blur(0);
	backdrop-filter: blur(0);
}
.header__container {
	position: relative;
	height: 65px;
}

@media screen and (min-width: 768px) {
	.header__container {
		height: 95px;
	}
}

@media screen and (min-width: 1129px) {
	.header__container {
		margin-right: auto;
		margin-left: auto;
		padding-right: 30px;
		padding-left: 30px;
		height: 95px;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
}


.header__logo {
	padding-top: 11px;
	padding-bottom: 11px;
	padding-left: 20px;
}
.header__logo-link {
	display: block;
	width: 177px;
	height: 43px;
	background-image: url(/assets/common/img/logo_kidsprep_blue.svg);
	background-repeat: no-repeat;
	background-size: contain;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
}

@media screen and (min-width: 768px) {
	.header__logo-link {
		width: 287px;
		height: 70px;
	}
}


.header__nav-switch {
	position: absolute;
	z-index: 103;
	top: 0;
	right: 0;
	width: 65px;
	height: 65px;
}
.header__nav-switch:hover {
	cursor: pointer;
}
.header__nav-switch--line {
	width: 25px;
	height: 2px;
	display: block;
	background-color: #152f40;
	position: absolute;
	left: 53%;
	top: 40%;
	margin-top: 5px;
	margin-left: -14px;
	transition: .3s;
}
.header__nav-switch--line:nth-child(1) {
	transform: translateY(-9px) scale(1);
}
.header__nav-switch--line:nth-child(2) {
	background: none;
	position: relative;
}
.header__nav-switch--line:nth-child(2)::before,
.header__nav-switch--line:nth-child(2)::after {
	transition: .3s;
	content: "";
	width: 25px;
	height: 2px;
	background-color: #152f40;
	display: block;
	transform: rotate(0deg);
	position: absolute;
}
.header__nav-switch--line:nth-child(3) {
	transform: translateY(9px) scale(1);
}
.header__nav-switch.is-active .header__nav-switch--line:nth-child(1) {
	transform: translateY(0px) scale(0);
}
.header__nav-switch.is-active .header__nav-switch--line:nth-child(3) {
	transform: translateY(0px) scale(0);
}
.header__nav-switch.is-active .header__nav-switch--line:nth-child(2)::before {
	transform: rotate(45deg);
}
.header__nav-switch.is-active .header__nav-switch--line:nth-child(2)::after {
	transform: rotate(-45deg);
}

@media screen and (min-width: 768px) {
	.header__nav-switch {
		width: 95px;
		height: 95px;
	}
}


@media screen and (min-width: 1129px) {
	.header__nav-switch {
		display: none;
	}
}

@media screen and (max-width: 1130px) {
	.header__nav-sp {
		display: none;
		position: fixed;
		z-index: 102;
		padding-top: 20px;
		padding-right: 30px;
		padding-left: 30px;
		padding-bottom: 100vh;
		width: 100%;
		height: 100vh;
		overflow-y: scroll;
		background-color: #fff;
	}
	.header__nav {
		margin-bottom: 60px;
	}
	.header__nav-item {
		border-bottom: 1px solid #e8eaec;
	}
	.header__nav-item:last-child {
		margin-bottom: 0;
	}
	.header__nav-link {
		position: relative;
		padding-top: .95em;
		padding-right: 1.3em;
		padding-bottom: .95em;
		padding-left: 1.3em;
		display: block;
		font-size: 1.6rem;
		font-weight: 500;
		letter-spacing: .1em;
	}
	.header__nav-link--accordion::after {
		position: absolute;
		top: 43%;
		right: 7%;
		content: '';
		display: inline-block;
		width: 15px;
		height: 9px;
		background-image: url(/assets/common/img/icon_arrow_down_blue.svg);
		background-position: center;
		background-repeat: no-repeat;
		background-size: contain;
		transition: .4s;
	}
	.header__nav-link--accordion.is-active::after {
		background-image: url(/assets/common/img/icon_arrow_up_blue.svg);
	}
	.header__subnav-list {
		display: none;
		padding-top: 1em;
		padding-bottom: 1em;
		border-top: 1px solid #e8eaec;
	}
	.header__subnav-link {
		padding-right: 2.3em;
		padding-bottom: 1em;
		padding-left: 2.3em;
		display: block;
		font-size: 1.6rem;
		font-weight: 500;
		letter-spacing: .1em;
	}
	.header__subnav-item:last-child .header__subnav-link {
		padding-bottom: 0;
	}
	.header__subnav-link::before {
		content: '';
		display: inline-block;
		width: 18px;
		height: 18px;
		margin-right: .6em;
		vertical-align: -2px;
		background-image: url(/assets/common/img/icon_circle_right_blue.svg);
		background-position: center;
		background-repeat: no-repeat;
		background-size: contain;
	}
	.header__btn-item:not(:last-child) {
		margin-bottom: 10px;
	}
	.header__btn-link {
		position: relative;
		margin-right: auto;
		margin-left: auto;
		padding-top: 1em;
		padding-right: 1em;
		padding-bottom: 1.1em;
		padding-left: 1em;
		display: block;
		border-radius: 30px;
		max-width: 250px;
		font-size: 1.4rem;
		font-weight: 500;
		text-align: center;
		color: #fff;
		line-height: 1.5;
		transition: .4s;
		letter-spacing: .2em;
	}
	.header__btn-link:hover {
		opacity: .7;
	}
	.header__btn-item--member .header__btn-link {
		background-color: #1d5ba9;
	}
	.header__btn-item--request .header__btn-link {
		background-color: #ed6e35;
	}
	.header__btn-item--member .header__btn-link::after {
		content: '';
		display: inline-block;
		width: 13px;
		height: 14px;
		margin-left: .4em;
		vertical-align: -1px;
		background-image: url(/assets/common/img/icon_member_white.svg);
		background-position: center;
		background-repeat: no-repeat;
		background-size: contain;
	}
	.header__btn-item--request .header__btn-link::after {
		content: '';
		display: inline-block;
		width: 14px;
		height: 17px;
		margin-left: .4em;
		vertical-align: -2px;
		background-image: url(/assets/common/img/icon_request_white.svg);
		background-position: center;
		background-repeat: no-repeat;
		background-size: contain;
	}
	.header__btn-link::before {
		position: absolute;
		top: 35%;
		right: 7%;
		content: '';
		display: inline-block;
		width: 7px;
		height: 12px;
		background-image: url(/assets/common/img/icon_arrow_right_white.svg);
		background-position: center;
		background-repeat: no-repeat;
		background-size: contain;
	}
}


.header__nav-pc {
	display: none;
}

@media screen and (min-width: 1129px) {
	.header__nav-sp {
		display: none !important;
	}
	.header__nav-pc {
		padding-right: 115px;
		padding-left: 20px;
		display: block;
	}
	.header__nav-list {
		position: relative;
		display: flex;
		justify-content: flex-end;
	}
	.header__nav-item {
		position: relative;
		margin-left: 25px;
	}
	.header__nav-item:first-child {
		margin-left: 0;
	}
	.header__nav-link {
		padding-top: 36px;
		padding-bottom: 36px;
		font-size: 1.5rem;
		font-weight: 500;
		text-align: center;
		line-height: 1.6;
		transition: .4s;
	}
	.header__nav-link:hover {
		opacity: .7;
	}
	.header__nav-item--dropdown .header__nav-link::after {
		content: '';
		display: inline-block;
		width: 14px;
		height: 7px;
		margin-left: .2em;
		vertical-align: 1px;
		background-image: url(/assets/common/img/icon_arrow_down_blue.svg);
		background-position: center;
		background-repeat: no-repeat;
		background-size: contain;
		transition: .4s;
	}
	.header__nav-item--dropdown .header__nav-link:hover::after {
		vertical-align: -1px;
	}
	.header__nav-item--member::after {
		content: '';
		display: inline-block;
		width: 16px;
		height: 16px;
		margin-left: .1em;
		vertical-align: -2px;
		background-image: url(/assets/common/img/icon_member_blue.svg);
		background-position: center;
		background-repeat: no-repeat;
		background-size: contain;
	}
	.header__subnav-list {
		display: none;
		position: absolute;
		top: 61px;
		left: 50%;
		transform: translateX(-50%);
		padding-top: 17px;
		padding-right: 15px;
		padding-bottom: 17px;
		padding-left: 15px;
		width: 100%;
		background-color: rgba(255, 255, 255, .9);
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px);
		border-bottom-right-radius: 10px;
		border-bottom-left-radius: 10px;
	}
	.header__nav-item:nth-child(1) .header__subnav-list,
	.header__nav-item:nth-child(2) .header__subnav-list {
		width: 220px;
	}
	.header__subnav-item:not(:last-child) {
		margin-bottom: 15px;
	}
	.header__subnav-link {
		display: block;
		width: 100%;
		font-size: 1.4rem;
		font-weight: 500;
		line-height: 1.6;
		transition: .4s;
	}
	.header__subnav-link:hover {
		opacity: .7;
	}
	.header__subnav-link::before {
		content: '';
		display: inline-block;
		width: 16px;
		height: 16px;
		margin-right: .5em;
		vertical-align: -2px;
		background-image: url(/assets/common/img/icon_circle_right_blue.svg);
		background-position: center;
		background-repeat: no-repeat;
		background-size: contain;
	}
	.header__request {
		position: absolute;
		top: 0;
		right: 0;
	}
	.header__request-link {
		padding-top: 20px;
		padding-bottom: 20px;
		display: inline-block;
		width: 130px;
		background-color: #ed6e35;
		border-bottom-left-radius: 10px;
		font-size: 1.4rem;
		font-weight: 500;
		text-align: center;
		color: rgba(255, 255, 255, 1);
		line-height: 1.5;
		transition: .4s;
	}
	.header__request-link:hover {
		color: rgba(255, 255, 255, .7);
	}
	.header__request-link:before {
		margin-right: auto;
		margin-left: auto;
		content: '';
		display: block;
		width: 30px;
		height: 35px;
		margin-bottom: 10px;
		background-image: url(/assets/common/img/icon_request_white.svg);
		background-position: center;
		background-repeat: no-repeat;
		background-size: contain;
	}
}

@media screen and (min-width: 1200px) {
	.header__nav-pc {
		padding-right: 125px;
	}
}


@media print {
	.header {
		display: none;
	}
}


/* ==========================================================================
	 main
========================================================================== */
.main {
	position: relative;
	width: 100%;
}

@media screen and (max-width: 767px) {
	.main {
		padding-top: 65px;
	}
}

@media screen and (min-width: 768px) {
	.main {
		padding-top: 95px;
	}
}


/* ==========================================================================
	 * local-nav
========================================================================== */
.local-nav {
	margin-bottom: 50px;
	padding-right: 30px;
	padding-left: 30px;
}
.local-nav__item {
	margin-bottom: 10px;
	display: flex;
	align-items: center;
}
.local-nav__link {
	position: relative;
	padding-top: 1em;
	padding-left: 2em;
	padding-bottom: 1em;
	display: block;
	background-image: url(/assets/common/img/bg_nav_01.jpg);
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
	border-radius: 5px;
	width: 100%;
	font-size: 4.5333333333vw;
	color: rgb(255, 255, 255);
	line-height: 1.6;
	letter-spacing: 0.15em;
	transition: 0.4s;
}
.local-nav__link span {
	display: block;
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-size: 3.0666666667vw;
}
.local-nav__link:hover {
	color: rgba(255, 255, 255, 0.7);
}
.local-nav__link::after {
	position: absolute;
	top: 38%;
	right: 10%;
	content: "";
	display: inline-block;
	width: 10px;
	height: 18px;
	background-image: url(/assets/common/img/icon_arrow_right_white.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	transition: 0.4s;
}
.local-nav__link:hover::after {
	right: 8%;
}
.local-nav__item:nth-child(2) .local-nav__link {
	background-image: url(/assets/common/img/bg_nav_02.jpg);
}
.local-nav__item:nth-child(3) .local-nav__link {
	background-image: url(/assets/common/img/bg_nav_03.jpg);
}

@media screen and (min-width: 768px) {
	.local-nav {
		margin-right: auto;
		margin-left: auto;
		margin-bottom: 100px;
		padding-right: 50px;
		padding-left: 50px;
		max-width: 1220px;
	}
	.local-nav__list {
		margin-bottom: 0;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.local-nav__item {
		margin-bottom: 0;
		width: 30.5%;
	}
	.local-nav__link {
		font-size: 1.8rem;
	}
	.local-nav__link span {
		font-size: 1.2rem;
	}
	.local-nav__link::after {
		width: 12px;
		height: 20px;
	}
}
@media screen and (min-width: 1200px) {
	.local-nav__container {
		padding-right: 80px;
		padding-left: 80px;
		max-width: 1280px;
	}
}


/* ==========================================================================
	 request
========================================================================== */
.request {
	position: relative;
	margin-bottom: 30px;
	background-color: #ed6e35;
	color: #fff;
}
.request::after {
	position: absolute;
	top: 75px;
	right: 0;
	content: '';
	display: inline-block;
	width: 84px;
	height: 140px;
	background-image: url(/assets/common/img/bg_kidsprep_sp.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}
.request__container {
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 30px;
	padding-left: 20px;
}
.request__flexbox {
	margin-bottom: 30px;
}
.request__text {
	margin-bottom: 25px;
}
.request__title {
	margin-bottom: 10px;
	font-size: 4.2666666667vw;
	font-weight: 700;
	line-height: 2;
	letter-spacing: .08em;
}
.request__bodycopy {
	font-size: 3.2vw;
	line-height: 2;
}
.request__link {
	margin-right: auto;
	margin-left: auto;
	padding-top: .9em;
	padding-right: 1em;
	padding-bottom: 1em;
	padding-left: 1em;
	display: block;
	background-color: #fff;
	border-radius: 50px;
	max-width: 315px;
	font-size: 4.5333333333vw;
	font-weight: 700;
	text-align: center;
	color: rgba(237, 110, 53 ,1);
	line-height: 1.5;
	transition: .4s;
	letter-spacing: .2em;
}
.request__link--pc {
	display: none;
}
.request__link--sp {
	display: block;
}
.request__link:before {
	content: '';
	display: inline-block;
	width: 20px;
	height: 25px;
	margin-right: .6em;
	vertical-align: -5px;
	background-image: url(/assets/common/img/icon_request_orange.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}
.request__link:hover {
	color: rgba(237, 110, 53 ,.8);
}

@media screen and (min-width: 768px) {
	.request {
		margin-bottom: 20px;
	}
	.request::after {
		top: 0;
		right: 0;
		width: 200px;
		height: 300px;
		background-image: url(/assets/common/img/bg_kidsprep.png);
	}
	.request__container {
		margin-right: auto;
		margin-left: auto;
		max-width: 1120px;
		padding-top: 40px;
		padding-right: 50px;
		padding-bottom: 40px;
		padding-left: 50px;
	}
	.request__flexbox {
		margin-bottom: 0;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
	}
	.request__text {
		margin-top: -10px;
		margin-bottom: 0;
		width: 48%;
	}
	.request__title {
		font-size: 1.8rem;
	}
	.request__bodycopy {
		margin-bottom: 20px;
		font-size: 1.6rem;
	}
	.request__link {
		margin-left: 0;
		max-width: 370px;
		font-size: 1.8rem;
	}
	.request__link--pc {
		display: block;
	}
	.request__link--sp {
		display: none;
	}
	.request__link:before {
		width: 25px;
		height: 30px;
		vertical-align: -8px;
	}
	.request__picture {
		width: 48.5%;
	}
	.request__picture img {
		margin-left: -10px;
	}
}

@media screen and (min-width: 1200px) {
	.request__link {
		font-size: 2rem;
	}
	.request__title {
		font-size: 1.9rem;
	}
}


/* ==========================================================================
	 footer
========================================================================== */
.footer {
	margin-top: auto;
	width: 100%;
	background-color: #152f40;
	color: #fff;
}
.footer__container {
	padding-top: 35px;
	padding-right: 20px;
	padding-bottom: 35px;
	padding-left: 20px;
}
.footer__info {
	margin-bottom: 20px;
}
.footer__info-office {
	margin-bottom: 10px;
	font-size: 3.7333333333vw;
	font-weight: 700;
}
.footer__info-address {
	margin-bottom: 12px;
	font-size: 2.9333333333vw;
	line-height: 2;
}
.footer__info-sns {
	display: block;
	width: 25px;
	height: 25px;
	transition: .4s;
}
.footer__info-sns:hover {
	opacity: .7;
}

@media screen and (min-width: 768px) {
	.footer__container {
		margin-right: auto;
		margin-left: auto;
		max-width: 1220px;
		padding-top: 50px;
		padding-right: 50px;
		padding-bottom: 50px;
		padding-left: 50px;
	}
	.footer__flexbox {
		display: flex;
		justify-content: space-between;
	}
	.footer__info {
		margin-bottom: 35px;
		/* width: 30%; */
	}
	.footer__info-office {
		font-size: 1.6rem;
	}
	.footer__info-address {
		margin-bottom: 15px;
		font-size: 1.2rem;
	}
	.footer__info-sns {
		width: 30px;
		height: 30px;
	}
}

@media screen and (min-width: 1200px) {
	.footer__container {
		padding-right: 80px;
		padding-left: 80px;
		max-width: 1280px;
	}
	.footer__info {
		width: 35%;
	}
}


.footer__nav {
	display: none;
}

@media screen and (min-width: 768px) {
	.footer__nav-list {
		display: flex;
		justify-content: space-between;
	}
	.footer__nav-item {
		margin-left: 25px;
	}
	.footer__nav-item:first-child {
		margin-left: 0;
	}
	.footer__nav-item:nth-child(3) {
		margin-left: 15px;
	}
	.footer__category {
		margin-bottom: 15px;
		font-size: 1.3rem;
		font-weight: 700;
	}
	.footer__category-link {
		display: block;
		transition: .4s;
	}
	.footer__category-link:hover {
		opacity: .7;
	}
	.footer__subnav-item {
		margin-bottom: 5px;
	}
	.footer__subnav-link {
		display: block;
		font-size: 1.2rem;
		font-weight: 300;
		line-height: 1.6;
		transition: .4s;
	}
	.footer__subnav-link:hover {
		opacity: .7;
	}
}

@media screen and (min-width: 1025px) {
	.footer__nav {
		display: block;
		width: 58%;
	}
}

@media screen and (min-width: 1200px) {
	.footer__nav {
		width: 52%;
	}
}


.footer__foot-list {
	margin-bottom: 20px;
}
.footer__foot-item {
	margin-bottom: 5px;
	margin-right: 1em;
	padding-right: 1em;
}
.footer__foot-link {
	display: block;
	font-size: 3.2vw;
	line-height: 1.6;
	transition: .4s;
}
.footer__foot-link:hover {
	opacity: .7;
}
.footer__foot-link::after {
	content: '';
	display: inline-block;
	width: 2.6666666667vw;
	height: 2.6666666667vw;
	margin-left: .5em;
	background-image: url(/assets/common/img/icon_external_white.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}
.footer__foot-copyright {
	font-size: 2.6666666667vw;
	line-height: 1.6;
}

@media screen and (min-width: 768px) {
	.footer__foot-list {
		margin-bottom: 5px;
		display: flex;
		flex-wrap: wrap;
	}
	.footer__foot-item {
		margin-bottom: 8px;
		border-right: 1px solid #fff;
	}
	.footer__foot-item:last-child {
		border-right: none;
	}
	.footer__foot-link {
		font-size: 1.2rem;
		line-height: 1;
	}
	.footer__foot-link::after {
		width: 10px;
		height: 10px;
	}
	.footer__foot-copyright {
		font-size: 1rem;
	}
}


.footer__pagetop {
	position: fixed;
	z-index: 50;
	right: 3%;
	bottom: 2%;
}
.footer__pagetop-link {
	display: block;
	width: 45px;
	height: 45px;
	background-image: url(/assets/common/img/icon_pagetop.svg);
	background-repeat: no-repeat;
	background-size: contain;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
}
.footer__pagetop-link:hover {
	opacity: .6;
}

@media screen and (min-width: 768px) {
	.footer__pagetop {
		right: 1.2%;
		bottom: 1.2%;
	}
}


@media print {
	.footer {
		display: none;
	}
}