@charset "UTF-8";

/* -----------------------
         基本情報
 -----------------------*/

* {
	box-sizing: border-box;
}
html,body{	height:100%;}
html{
	font-size:62.5%;
    overflow-y: scroll;
}
body, h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd,
table, th, td, img, form {
	margin: 0;
	padding: 0;
	border: none;
	line-height: 100%;
	list-style-type: none;
	font-style: normal;
	font-weight: normal;
	font-family:"メイリオ",Meiryo,"Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","ＭＳ Ｐゴシック",Arial,Verdana,sans-serif;
	text-align: left;
	color:#000000;
	letter-spacing: 1px;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	line-height: 1.8;
}
img {
	max-width: 100%;
	vertical-align: bottom;
}
@media (min-width: 769px) { 
	a:hover img {
		opacity: 0.7;
	}
	a img {
		transition: opacity 0.3s ease-out;
	}
}

.only-pc {
	display: block;
}
.only-sp {
	display: none;
}
@media (max-width: 768px) { 
	.only-pc {
		display: none;
	}
	.only-sp {
		display: block;
	}
}
.inner {
	max-width: 1280px;
	width: 90%;
	margin: auto;
}
/* ------------------------------------------
        contents
 ------------------------------------------*/

.header {
	z-index: 9999;
	position: relative;
}
@media (max-width: 768px) {
	.header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 0 20px;
		height: 60px;
		position: fixed;
		top: 0;
		left: 0;
		background-color: #fff;
	}
}
.header .link{
	display: flex;
	align-items: center;
}
.header .link a {
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.3s;
}
@media (min-width: 769px) {
	.header .link a:hover {
		opacity: 0.7;
		transition: 0.3s;
	}
}
.header .link a.link__register {
	text-align: center;
    text-decoration: none;
    color: #fff;
    background-color: #d80c18;
    line-height: 1.4;
    font-weight: bold;
    flex-direction: column;
    font-size: 14px;
}
.header .link a .link__register--icon {
    font-size: 12px;
}
@media (max-width: 768px) {
	.header {
        box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.3);
	}
	.header .logo {
		width: 50%;
	}
	.header .logo img {
		max-height: 100%;
	}
	.header .link {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		width: 30%;
		gap: 20px;
	}
	.header .link a img {
		max-height: 30px;
	}
	.header .link a.link__register {
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		padding: 10px;
		flex-direction: row;
	}
	.header .link a .link__register--icon {
		margin-right: 20px;
	}
}

@media (min-width: 769px) {
	.header .logo {
		display: none;
	}
	.header .link{
		position: fixed;
		top: 100px;
		right: 0;
		flex-direction: column;
		gap: 20px;
	}
	.header .link a {
		background-color: #fff;
		border-radius: 100px 0 0 100px;
		width: 94px;
		height: 80px;
		box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.5);
	}
	.header .link a img {
		height: 35px;
	}
}

@media (max-width: 768px) {
	.contents {
		padding-top: 60px;
	}
}
.contents__item {
	position: relative;
}
.contents__img img {
	width: 100%;
}
@media (min-width: 769px) { 
	.contents__btn {
		position: absolute;
		z-index: 100;
		display: block;
	}
	.contents__btn.btn01 {
        right: 10%;
        bottom: 10%;
        width: 20%;
	}
	.contents__btn.btn02 {
        left: 7%;
        bottom: 2%;
        width: 23%;
	}
}
@media (max-width: 767px) { 
	.contents__btn img {
		width: 100%;
	}
}
.contents__anchor {
	margin-top: -150px;
	padding-top: 150px;
}
@media (max-width: 767px) { 
	.contents__anchor {
		margin-top: -200px;
		padding-top: 200px;
	}
}
.item__wrap {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
}
.item__wrap .contents__img {
	width: 32%;
}
@media (max-width: 767px) { 
	.item__wrap {
		gap: 10px;
	}
	.item__wrap .contents__img {
		width: 48%;
	}
}
.footer__contact {
	padding: 80px 0;
	background-color: #000;
}
@media (max-width: 767px) { 
	.footer__contact {
		padding: 60px 10px;
	}
}
.footer__contact h2 {
	text-align: center;
}
.footer__contact p {
	font-size: 20px;
	color: #fff;
	margin-top: 65px;
	text-align: center;
	font-weight: bold;
}
@media (max-width: 767px) { 
	.footer__contact p {
		font-size: 17px;
		margin-top: 40px;
	}
}
.footer__contact ul {
	margin-top: 20px;
}
.footer__contact li {
	font-size: 14px;
	color: #fff;
	margin-top: 10px;
	line-height: 1.5;
	padding-left: 20px;
	position: relative;
}
@media (min-width: 769px) {
	.footer__contact li {
		display: flex;
		justify-content: center;
		text-align: center;
		font-size: 16px;
	}
}
.footer__contact li::before {
	content: "・";
	display: block;
}
@media (max-width: 768px) {
	.footer__contact li::before {
		content: "・";
		position: absolute;
		top: 0;
		left: 8px;
		display: block;
	}
}
.footer__contact a {
	color: #FFF738;
	text-decoration: underline;
}
.footer__btn {
	display: block;
	margin: 60px auto 0;
	text-align: center;
}
@media (max-width: 768px) {
	.footer__btn {
		margin: 40px auto 0;
	}
}

.footer__nav ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
@media (max-width: 768px) {
	.footer__nav {
		padding: 20px 0;
	}
	.footer__nav ul {
		flex-wrap: wrap;
		justify-content: center;
		gap: 10px;
	}
	.footer__nav ul li {
		width: 30%;
		text-align: center;
	}
}
.footer__nav a {
	color: #000;
	font-size: 16px;
	text-decoration: none;	
}
@media (min-width: 769px) {
	.footer__contents {
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-wrap: wrap;
		max-width: 1280px;
		margin: auto;
		padding: 60px 0 40px;
		max-width: 90%;
	}
	.footer__info {
		order: 1;
        width: 40%;
        max-width: 400px;
	}
	.footer__nav {
		order: 2;
        width: 60%;
        max-width: 600px;
	}
	.footer__nav a:hover {
		text-decoration: underline;
	}
}
@media (max-width: 768px) {
	.footer__contents {
		width: 100%;
		padding: 20px 0 60px;
	}
}
.footer__info {
	max-width: 400px;
}
@media (max-width: 768px) {
	.footer__info {
		padding: 0 20px;
		margin: auto;
	}
	.footer__info__logo {
		width: 100%;
		max-width: unset;
	}
}
.footer__info--nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0 0;
}
.footer__info--nav a {
	text-decoration: none;
	color: #000;
	font-size: 12px;
}
@media (min-width: 769px) {
	.footer__info--nav a:hover {
		text-decoration: underline;
	}
}
@media (max-width: 767px) { 
	.footer__info--nav a {
		font-size: 10px;
	}
}
.footer__copy {
	font-size: 12px;
	width: 100%;
	text-align: right;
	order: 3;
}
@media (max-width: 767px) { 
	.footer__copy {
		text-align: center;
		font-size: 10px;
		padding-top: 20px;
	}
}