@charset "utf-8";
/* -------------------------------- *\
    共通
\* -------------------------------- */
* {box-sizing: border-box;}
html {
	font-size: 62.5%;/* 10px相当 */
	overflow: scroll;
}
body{
	min-width: 1000px;
	color: #000;
	font-size: 1.5em;
	line-height: 1.75;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0;
}
img {
	width: 100%;
}
a {
	color: #000;
	text-decoration: none;
}
.text-center {
	text-align: center;
}
.container {
	max-width: 1280px;
	margin: 0 auto;
}
.wrapper {
	max-width: 1040px;
	margin: 0 auto;
	padding-right: 20px;
	padding-left: 20px;
}
@media (max-width: 768px) {
	body{
		min-width: auto;
	}
}

/* -------------------------------- *\
    コピーライト
\* -------------------------------- */
.copyright__content {
	max-width: 460px;
	margin: 0 auto;
}
@media (max-width: 768px) {
	.copyright__content {
		max-width: 310px;
	}
}

/* -------------------------------- *\
    型ボタン
\* -------------------------------- */
.shape-link {
	margin-top: 110px;
}
.shape-link__content {
	display: flex;
	flex-wrap: wrap;
	margin-right: -10px;
	margin-left: -10px;
}
.shape-link__col {
	flex-basis: 33.3333%;
	max-width: 33.3333%;
	padding: 0 10px;
}
.shape-link__col img {
	transition: all .3s ease
}
.shape-link__col a:hover img{
	transform: scale(1.1);
}
@media (max-width: 768px) {
	.shape-link {
		margin-top: 50px;
	}
	.shape-link__content {
		display: block;
		margin: 0;
	}
	.shape-link__col {
		max-width: 320px;
		margin-right: auto;
		margin-left: auto;
		padding: 0;
	}
	.shape-link__col:not(:last-child) {
		margin-bottom: 10px;
	}
}

/* -------------------------------- *\
    トップへ戻るボタン
\* -------------------------------- */
.footer {
	position: relative;
}
.pagetop {
  display: block;
  width: 84px;
  height: 80px;
  position: fixed;
	bottom: 45px;
	right: 50px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
	z-index: 999;
}
.pagetop.is-visible {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 768px) {
	.pagetop {
		width: 42px;
		height: 40px;
		bottom: 30px;
		right: 15px;
	}
}

/* -------------------------------- *\
    footer
\* -------------------------------- */
.footer {
	position: relative;
}
.footer::before {
	display: inline-block;
	position: absolute;
	top: 0;
	width: 100%;
	height: 38px;
	background-image: url(../img/line_footer.svg);
	background-position: right top;
	background-repeat: no-repeat;
	content: "";
}
.footer__content {
	margin: 14px 0 20px;
	padding-top: 38px;
}
.footer__logo {
	max-width: 216px;
	margin: 0 auto;
}
.footer__logo img {
	transition: all .3s ease
}
.footer__logo a:hover img{
	opacity: .7;
}
.footer__instagram {
	text-align: center;
}
.instagram-logo {
	display: inline-block;
	vertical-align: middle;
}
.instagram-logo img {
	max-width: 84px;
}
.instagram-btn {
	display: inline-block;
	vertical-align: middle;
}
.instagram-btn a {
	display: inline-block;
	padding: .2em 1.2em;
	border-radius: 30px;
	background: linear-gradient(270deg,#ffdd83,#f26939 25%,#cf2e92 51%,#4c64d3);
	background-position: 99% 50%;
	background-size: 200% auto;
	color: #fff;
	font-size: 1.4rem;
	transition: all .3s ease-out
}
.instagram-btn a:hover {
	background-position: 1% 50%;
}
.footer__lower {
	padding: 28px 0;
	background-image: url(../img/bg_footer.png);
}
.footer__copyright {
	margin-bottom: 0;
	text-align: center;
	font-size: 1.2rem;
}

/* -------------------------------- *\
    Display
\* -------------------------------- */
.d-none { display: none !important; }
.d-block { display: block !important; }
.d-inline { display: inline !important; }
.d-inline-block { display: inline-block !important; }

@media (max-width: 768px) {
	.d-none-sp { display: none !important; }
	.d-block-sp { display: block !important; }
	.d-inline-sp { display: inline !important; }
	.d-inline-block-sp { display: inline-block !important; }
}

/* -------------------------------- *\
    Spaces
\* -------------------------------- */
/* Margin Top */
.mt-0 { margin-top: 0 !important; }
.mt-10 { margin-top: 10px !important; }
.mt-20 { margin-top: 10px !important; }
.mt-30 { margin-top: 10px !important; }
.mt-40 { margin-top: 10px !important; }
.mt-50 { margin-top: 10px !important; }

/* Margin bottom */
.mb-0 { margin-bottom: 0 !important; }
.mb-10 { margin-bottom: 10px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-30 { margin-bottom: 30px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mb-50 { margin-bottom: 50px !important; }

/* -------------------------------- *\
    Text
\* -------------------------------- */
/* Font weight */
.font-bold {
	font-weight: bold;
}

/* Font size */
.font-size-l {
	font-size: 2em;
}
.font-size-m {
	font-size: 1.5em;
}
.font-size-s {
	font-size: .8em;
}
.font-size-xs {
	font-size: .6em;
}