@charset 'utf-8';

/*PC用CSS(ipad mini 7.9インチ対応)*/
@media only screen and (min-width: 768px) {
	.pc_none{
		display: none!important;
	}
}
/*SP用CSS(ipad mini 7.9インチ未対応)*/
@media only screen and (max-width: 767px) {
	.sp_none{
		display: none!important;
	}
}

/*リキッドの場合に使用*/
html {
	font-size: 0.782vw;
}
@media only screen and (max-width: 1366px) {
	/*1366px- 画面幅1366px閲覧で1px=0.1rem可変*/
	html{
		/* font-size: 0.782vw; */
	}
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1319px) {
	/*iPadの縦横両方の記述 safariのdevモードipadair2横画面幅1219px閲覧で1px=0.1rem可変*/
	html{
		font-size: 0.65vw;
	}
}
@media only screen and (max-width: 767px){
	/*-767px 画面幅375px閲覧で1px=0.1rem可変*/
	html{
			font-size: 2.67vw;
		}
}
@media only screen and (max-width: 375px){
	/*-375px 画面幅320pxで1px=0.1rem固定*/
	html{
		/* font-size: 62.5%; */
	}
}
/*@media only screen and (max-width: 1280px){
1280px- 画面幅1280pxで1px=0.1rem固定
	html{
		font-size: 62.5%;
	}
}*/

/* @font-faceルールでフォントを定義 */
@font-face {
    font-family: 'Gotu';
    src: url('../fonts/Gotu-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'InterMedium';
    src: url('../fonts/Inter-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

.font01 {
	font-family: "Gotu", sans-serif;
	font-weight: 400;
	font-style: normal;
}
.font02 {
	font-family: "Inter", sans-serif;
	font-weight: 400;
}
.font02_mid {
    font-family: "Inter", sans-serif;
	font-weight: 500;
}
.font02_bold {
    font-family: "Inter", sans-serif;
	font-weight: 700;
}
.font03 {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 500;
}


* {
	box-sizing: border-box;
	word-break: break-all;
}


@media only screen and (max-width: 767px){
	body,
	main,
	header,
	footer{
		min-width: 320px;
	}
}

body{
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
	position: relative;
	font-family: 'Inter', sans-serif;
	font-weight: 500;
	line-height: 1.5;
	background-color: #ffffff;
	-webkit-text-size-adjust: 100%; /*ios横向き文字の拡大防止*/
	text-size-adjust: 100%; /*ios横向き文字の拡大防止*/
	-webkit-overflow-scrolling:touch;
	font-size: 1.0rem; /* 基本フォントサイズ 16px */
}
@media only screen and (max-width: 767px) {
	body{
		min-width: initial;
		position: relative;
	}
}

.mt0 {
	margin-top: 0!important;
}


/*anime01ここから*/
.anime01{
	opacity: 0;
	-webkit-transition: opacity 0s ease 0s;
	-moz-transition: opacity 0s ease 0s;
	-ms-transition: opacity 0s ease 0s;
	-o-transition: opacity 0s ease 0s;
	transition: opacity 0s ease 0s;
}
.anime01.anime01_on{
	opacity: 1;
	-webkit-transition: opacity .5s ease .3s;
	-moz-transition: opacity .5s ease .3s;
	-ms-transition: opacity .5s ease .3s;
	-o-transition: opacity .5s ease .3s;
	transition: opacity .5s ease .3s;
}
/*anime02ここから*/
.anime02,.delay01,.delay02,.delay03{
	opacity: 0;
	transform: translateY(5%);
	-webkit-transition: opacity 0s ease 0s, transform 0s ease 0s;
	-moz-transition: opacity 0s ease 0s, transform 0s ease 0s;
	-ms-transition: opacity 0s ease 0s, transform 0s ease 0s;
	-o-transition: opacity 0s ease 0s, transform 0s ease 0s;
	transition: opacity 0s ease 0s, transform 0s ease 0s;
}
.anime02.anime02_on,.delay01.anime02_on,.delay02.anime02_on,.delay03.anime02_on{
	opacity: 1;
	transform: translateY(0);
	-webkit-transition: opacity .5s ease .3s, transform .8s ease .3s;
	-moz-transition: opacity .5s ease .3s, transform .8s ease .3s;
	-ms-transition: opacity .5s ease .3s, transform .8s ease .3s;
	-o-transition: opacity .5s ease .3s, transform .8s ease .3s;
	transition: opacity .5s ease .3s, transform .8s ease .3s;
}
/*anime03ここから*/
.anime03{
	opacity: 0;
	transform: translateY(5%);
	-webkit-transition: opacity 0s ease 0s, transform 0s ease 0s;
	-moz-transition: opacity 0s ease 0s, transform 0s ease 0s;
	-ms-transition: opacity 0s ease 0s, transform 0s ease 0s;
	-o-transition: opacity 0s ease 0s, transform 0s ease 0s;
	transition: opacity 0s ease 0s, transform 0s ease 0s;
}
.anime03.anime03_on{
	opacity: 1;
	transform: translateY(0);
	-webkit-transition: opacity .5s ease .3s, transform .8s ease .3s;
	-moz-transition: opacity .5s ease .3s, transform .8s ease .3s;
	-ms-transition: opacity .5s ease .3s, transform .8s ease .3s;
	-o-transition: opacity .5s ease .3s, transform .8s ease .3s;
	transition: opacity .5s ease .3s, transform .8s ease .3s;
}
/*anime04ここから*/
.anime04{
	opacity: 0;
	-webkit-transition: opacity 0s ease 0s;
	-moz-transition: opacity 0s ease 0s;
	-ms-transition: opacity 0s ease 0s;
	-o-transition: opacity 0s ease 0s;
	transition: opacity 0s ease 0s;
}
.anime04.anime04_on{
	opacity: 1;
	-webkit-transition: opacity .5s ease .3s;
	-moz-transition: opacity .5s ease .3s;
	-ms-transition: opacity .5s ease .3s;
	-o-transition: opacity .5s ease .3s;
	transition: opacity .5s ease .3s;
}
/*eyeコンテンツここから*/


/*eyeコンテンツここまで*/


/*mainコンテンツここから*/
main{
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto 4.0rem;
	transition: 0.5s ease;
}
@media only screen and (max-width: 767px) {
	main{
		margin: 0 auto;
	}
}

/* アイキャッチここから */
.eye {
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 2.8rem 2.93% 1.8rem;
	background-color: #E7E4E0;
}
@media only screen and (min-width: 1320px){
	.eye {
		padding: 28px 29.3px 18px;
	}
}
@media only screen and (max-width: 767px){
	.eye {
		padding: 2.5rem 0 2.4rem;
	}
}
.eye .text01 {
	width: 80%;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: last baseline;
	overflow: hidden;
	clip-path: polygon(0 0, 0 0, 0 0, 0 0);
	opacity: 0;
}
@media only screen and (max-width: 767px){
	.eye .text01 {
		width: 100%;
		padding: 0 2.3rem;
		flex-wrap: wrap;
		justify-content: flex-start;
	}
}
.eye .text01 .text01_01 {
	font-size: 9.2rem;
	line-height: 11rem;
	letter-spacing: -0.5rem;
	margin-right: 1.4rem;
}
@media only screen and (min-width: 1320px){
	.eye .text01 .text01_01 {
		font-size: 95px;
		line-height: 116px;
		margin-right: 13px;
	}
}
@media only screen and (max-width: 767px){
	.eye .text01 .text01_01 {
		font-size: 5.5rem;
		line-height: 5.9rem;
		letter-spacing: -0.2rem;
	}
}
.eye .text02 {
	font-size: 1.8rem;
	line-height: 2.0rem;
}
@media only screen and (min-width: 1320px){
	.eye .text02 {
		font-size: 18px;
		line-height: 20px;
	}
}
@media only screen and (max-width: 767px){
	.eye .text02 {
		font-size: 1.5rem;
		line-height: 1.9rem;
	}
}
.eye .eye01 {
	width: 97.59%;
	height: auto;
	margin: 0 auto 1.1rem;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
@media only screen and (min-width: 1320px){
	.eye .eye01 {
		width: 1212px;
		margin: 0 auto 11px;
	}
}
.eye .eye01 img {
	display: block;
	height: auto;
}
.eye .eye01 .item01 {
	width: 33.32%;
	opacity: 0;
}
.eye .eye01 .item02 {
	width: 29.08%;
	opacity: 0;
}
.eye .eye01 .item03 {
	width: 39.76%;
	opacity: 0;
}
@media only screen and (max-width: 767px){
	.eye .eye01{
		width: 100%;
		margin-left: -5%;
	}
	.eye .eye01 .item05 {
		width: 46.93%;
		opacity: 0;
	}
	.eye .eye01 .item06 {
		width: 28%;
		opacity: 0;
	}
	.eye .eye01 .item07 {
		width: 34.13%;
		opacity: 0;
	}
	.eye .eye01 .item08 {
		width: 42.66%;
	}
	.eye .eye01 .item09 {
		width: 41.86%;
	}
	.eye .eye01 .item04 {
		width: 23.2%;
	}
}

.eye .eye02 {
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	clip-path: polygon(0 0, 0 0, 0 0, 0 0);
	opacity: 0;
}
@media only screen and (min-width: 1320px){
	.eye .eye02 {
		width: 1241px;
	}
}
@media only screen and (max-width: 767px){
	.eye .eye02 {
		padding: 0 2.0rem;
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
	}
}
.eye .eye02 img {
	display: block;
	width: 9.33%;
	height: auto;
	margin-right: 1.4rem;
}
@media only screen and (min-width: 1320px){
	.eye .eye02 img {
		width: 115.85px;
		margin-right: 14px;
	}
}
@media only screen and (max-width: 767px){
	.eye .eye02 img {
		width: 34%;
		margin-right: 0;
		margin-bottom: 1.2rem;
	}
}
.eye .eye02 p {
	font-size: 1.2rem;
	line-height: 1.6rem;
	flex: 1;
	word-break: normal;
	hyphens: none;
	overflow-wrap: normal;
	white-space: normal;
	letter-spacing: -0.05rem;
	text-align: justify;
	text-justify: inter-ideograph;
}
@media only screen and (min-width: 1320px){
	.eye .eye02 p {
		font-size: 12.5px;
		line-height: 16px;
		letter-spacing: -0.6px;
	}
}
@supports (-webkit-appearance:none) {
	.eye .eye02 p {
		font-size: 1.15rem;
	}
	@media only screen and (min-width: 1320px){
		.eye .eye02 p {
			font-size: 12px;
		}
	}
}	
@media only screen and (max-width: 767px){
	.eye{
		overflow: hidden;
	}
	.eye .eye02 p {
		font-size: 1.0rem;
		line-height: 1.2rem;
		letter-spacing: 0;
		text-align: justify;
		text-justify: inter-ideograph;
	}
}
/* アイキャッチここまで */


.cont01 {
	width: 86.83%;
	height: auto;
	margin: 0 auto;
}
@media only screen and (max-width: 767px){
	.cont01 {
		width: 100%;
	}
}
.cont01 .cont01_01 {
	width: 100%;
	height: auto;
	margin: 10.0rem auto 0;
}
@media only screen and (max-width: 767px){
	.cont01 .cont01_01 {
		width: 94.67%;
		margin: 5.0rem auto 0;
	}
	.cont01 .cont01_01:nth-of-type(1) {
		margin: 3.0rem auto 0;
	}
}
.cont01 .cont01_01 h2 {
	width: auto;
	height: auto;
	margin-left: 6.1rem;
	margin-bottom: 8.0rem;
}
@media only screen and (max-width: 767px){
	.cont01 .cont01_01 h2 {
		margin-left: 2.0rem;
		margin-bottom: 3.0rem;
	}
}
.cont01 .cont01_01 h2 span {
	display: block;
	clip-path: polygon(0 0, 0 0, 0 0, 0 0);
	opacity: 0;
}
.cont01 .cont01_01 h2 .text01 {
	font-size: 3.3rem;
	line-height: 3.7rem;
	margin-bottom: 3.5rem;
}
@media only screen and (max-width: 767px){
	.cont01 .cont01_01 h2 .text01 {
		font-size: 1.5rem;
		line-height: 1.7rem;
		margin-bottom: 1.7rem;
	}
}
.cont01 .cont01_01 h2 .text01 span {
	transform: scaleX(4.0);
	display: inline-block;
	margin: 0 2.0rem;
}
@media only screen and (max-width: 767px){
	.cont01 .cont01_01 h2 .text01 span {
		margin: 0 1.0rem;
	}
}
.cont01 .cont01_01 h2 .text02,
.cont01 .cont01_01 h2 .text03 {
	font-size: 8.7rem;
	line-height: 9.1rem;
}
@media only screen and (max-width: 767px){
	.cont01 .cont01_01 h2 .text02,
	.cont01 .cont01_01 h2 .text03 {
		font-size: 3.8rem;
		line-height: 4.2rem;
	}
}
.cont01 .cont01_01 .cont01_01_01 {
	width: 100%;
	height: auto;
	margin: 0 auto 8.9rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #E7E4E0;
}
@media only screen and (max-width: 767px){
	.cont01 .cont01_01 .cont01_01_01 {
		margin-bottom: 3.0rem;
	}
}
.cont01 .cont01_01 .cont01_01_01 .cont01_01_01_01 {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 44%;
	height: auto;
	text-align: center;
}
.cont01 .cont01_01 .cont01_01_01 .cont01_01_01_01 h3  {
	font-size: 2.2rem;
	line-height: 2.6rem;
}
@media only screen and (max-width: 767px){
	.cont01 .cont01_01 .cont01_01_01 .cont01_01_01_01 h3  {
		font-size: 1.0rem;
		line-height: 1.5rem;
	}
}
.cont01 .cont01_01 .cont01_01_01 img {
	display: block;
	width: 56%;
}
.cont01 .cont01_01 .list01 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.cont01 .cont01_01 .list01 li {
	width: 49.58%;
	margin-top: 1.0rem;
	position: relative;
}
@media only screen and (max-width: 767px){
	.cont01 .cont01_01 .list01 li {
		width: 48.57%;
	}
}
.cont01 .cont01_01 .list01 li:nth-of-type(-n+2) {
	margin-top: 0;
}
.cont01 .cont01_01 .list01 li img {
	display: block;
	width: 100%;
	height: auto;
}
.cont01 .cont01_01 .list01 li .icon01 {
	width: 3.4%;
	height: auto;
	position: absolute;
	z-index: 1;
	right: 1.0rem;
	bottom: 1.0rem;
	transition: transform 0.5s ease;
	cursor: pointer;
}
@media only screen and (max-width: 767px){
	.cont01 .cont01_01 .list01 li .icon01 {
		width: 6.94%;
		right: 0.5rem;
		bottom: 0.5rem;
	}
}
.cont01 .cont01_01 .list01 li .link01 {
	display: flex;
	flex-direction: column;
	height: auto;
	position: absolute;
	right: 4.7rem;
	bottom: 1.2rem;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s ease, visibility 0.5s ease;
}
.cont01 .cont01_01 .list01 li .link01.show {
	opacity: 1;
	visibility: visible;
}
.cont01 .cont01_01 .list01 li .link01.c_black li {
	color: #8D8F8D;
}
.cont01 .cont01_01 .list01 li .price01 {
	width: 28%;
}
.cont01 .cont01_01 .list01 li .price02 {
	width: 28%;
}
.cont01 .cont01_01 .list01 li .price03 {
	width: 26.8%;
}
.cont01 .cont01_01 .list01 li .price04 {
	width: 30%;
}
.cont01 .cont01_01 .list01 li .price05 {
	width: 31.5%;
}
.cont01 .cont01_01 .list01 li .price06 {
	width: 28%;
}
.cont01 .cont01_01 .list01 li .price07 {
	width: 27%;
}
.cont01 .cont01_01 .list01 li .price08 {
	width: 27%;
}
.cont01 .cont01_01 .list01 li .price09 {
	width: 26%;
}
.cont01 .cont01_01 .list01 li .price010 {
	width: 28.7%;
}
.cont01 .cont01_01 .list01 li .price011 {
	width: 31.5%;
}
.cont01 .cont01_01 .list01 li .price012 {
	width: 31%;
}
.cont01 .cont01_01 .list01 li .price013 {
	width: 28%;
}
.cont01 .cont01_01 .list01 li .price014 {
	width: 28%;
}
.cont01 .cont01_01 .list01 li .price015 {
	width: 31%;
}
.cont01 .cont01_01 .list01 li .price016 {
	width: 27%;
}
.cont01 .cont01_01 .list01 li .price017 {
	width: 35%;
}
.cont01 .cont01_01 .list01 li .price018 {
	width: 33%;
}
.cont01 .cont01_01 .list01 li .price019 {
	width: 31.5%;
}
.cont01 .cont01_01 .list01 li .price020 {
	width: 28.5%;
}
.cont01 .cont01_01 .list01 li .price021 {
	width: 35%;
}
.cont01 .cont01_01 .list01 li .price022 {
	width: 28.24%;
}
.cont01 .cont01_01 .list01 li .price023 {
	width: 31.5%;
}
.cont01 .cont01_01 .list01 li .price024 {
	width: 29%;
}
.cont01 .cont01_01 .list01 li .price025 {
	width: 28%;
}

.cont01 .cont01_01 .list01 li .link01 li {
	margin: 0;
	margin-top: 0.2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	color: #fff;
	position: static;
}
.cont01 .cont01_01 .list01 li .link01 li:nth-of-type(1) {
	margin-top: 0;
}
.cont01 .cont01_01 .list01 li .link01 li span {
	font-size: 1.1rem;
	line-height: 1.8rem;
	letter-spacing: 0.005rem;
}
.cont01 .cont01_01 .list01 li .link01 li span:nth-of-type(2) {
	font-size: 1.0rem;
	line-height: 1.8rem;
	margin-left: auto;
}
.cont01 .cont01_01 .list01 li .link01 li .f_size01,
.cont01 .cont01_01 .list01 li .link01 li a {
	font-size: 1.0rem;
	line-height: 1.8rem;
	letter-spacing: 0.005rem;
	margin-left: auto;
	text-decoration: underline;
}



.cont01_02 {
	width: 94.85%;
	height: auto;
	margin: 7.1rem auto 0;
}
@media only screen and (max-width: 767px){
	.cont01_02 {
		width: 100%;
	}
}
.cont01_02 .cont01_02_01 {
	width: 100%;
	height: auto;
	margin: 0 auto 5.2rem;
}
@media only screen and (max-width: 767px){
	.cont01_02 .cont01_02_01 {
		width: 94.85%;
		height: auto;
		margin: 0 auto 2.0rem;
	}
}
.cont01_02 .cont01_02_01 img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 auto;
	opacity: 0;
}
.cont01_02 .cont01_02_01 .img01 {
	margin: 0 auto;
}
.cont01_02 .cont01_02_01 .img02 {
	margin: -92.3rem auto 0;
}
.cont01_02 .cont01_02_01 .img03 {
	margin: -61.2rem auto 0;
}
@media only screen and (max-width: 767px){
	.cont01_02 .cont01_02_01 .img04 {
		margin: 0 auto;
	}
	.cont01_02 .cont01_02_01 .img05 {
		margin: -27.3rem auto 0;
	}
	.cont01_02 .cont01_02_01 .img06 {
		margin: -18.5rem auto 0;
	}
}
.cont01_02 .link01 {
	width: 48.18%;
	height: 4.0rem;
	margin: 0 auto 6.0rem;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 0.1rem solid #000000;
	font-size: 1.8rem;
	line-height: 2.2rem;
	position: relative;
	transition: 0.5s ease;
	box-sizing: border-box;
}
@media only screen and (max-width: 767px){
	.cont01_02 .link01 {
		width: 69%;
		margin: 0 auto 4.0rem;
	}
}
.cont01_02 .link01:hover {
	background-color: #000000;
	color: #ffffff;
}
.cont01_02 .link01 svg {
	display: block;
	width: 1.29%;
	height: auto;
	margin: auto;
	position: absolute;
	top: 0;
	right: 1.6rem;
	bottom: 0;
}
@media only screen and (max-width: 767px){
	.cont01_02 .link01 svg {
		width: 2.45%;
	}
}
.cont01_02 .link01:hover svg path{
	fill: #ffffff;
}

.cont01_02 .cont01_02_02 {
	width: 48.18%;
	height: auto;
	margin: 0 auto;
	padding: 3.8rem  2.3rem 3.4rem;
	background-image: url(../img/img05.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
@media only screen and (max-width: 767px){
	.cont01_02 .cont01_02_02 {
		width: 100%;
		padding: 2.6rem  2.0rem 2.3rem;
	}
}
/* .cont01_02 .cont01_02_02 .cont01_02_02_01 {
	width: 100%;
	height: auto;
} */
.cont01_02 .cont01_02_02 h3 {
	font-size: 4.7rem;
	line-height: 5.5rem;
	color: #ffffff;
	letter-spacing: -0.05rem;
	margin-bottom: 3.4rem;
	clip-path: polygon(0 0, 0 0, 0 0, 0 0);
	opacity: 0;
}
@media only screen and (max-width: 767px){
	.cont01_02 .cont01_02_02 h3 {
		font-size: 3.4rem;
		line-height: 3.7rem;
		margin-bottom: 2.4rem;
	}
}
.cont01_02 .cont01_02_02 .img07 {
	display: block;
	width: 32.1%;
	height: auto;
	margin: 0 auto 3.7rem;
	clip-path: polygon(0 0, 0 0, 0 0, 0 0);
	opacity: 0;
}
@media only screen and (max-width: 767px){
	.cont01_02 .cont01_02_02 .img07 {
		width: 33.333%;
		margin: 0 auto 2.5rem;
	}
}
.cont01_02 .cont01_02_02 .text01 {
	font-size: 1.2rem;
	line-height: 2.3rem;
	color: #ffffff;
	margin-bottom: 17.6rem;
	letter-spacing: -0.05rem;
	clip-path: polygon(0 0, 0 0, 0 0, 0 0);
	opacity: 0;
}
@media only screen and (max-width: 767px){
	.cont01_02 .cont01_02_02 .text01 {
		font-size: 1.0rem;
		line-height: 1.8rem;
		margin-bottom: 7.4rem;
	}
}
.cont01_02 .cont01_02_02 .text02 {
	font-size: 1.0rem;
	line-height: 1.7rem;
	color: #ffffff;
	clip-path: polygon(0 0, 0 0, 0 0, 0 0);
	opacity: 0;
}
@media only screen and (max-width: 767px){
	.cont01_02 .cont01_02_02 .text02 {
		font-size: 1.0rem;
		line-height: 1.5rem;
	}
}

/*mainコンテンツここまで*/

/*footerここから*/
footer {
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 3.7rem 0;
}
@media only screen and (max-width: 767px) {
	footer {
		padding: 5.0rem 0 4.4rem;
	}
}
footer .footer01 {
	width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;
}
footer .footer01 .link01 {
	display: block;
	width: 8.05%;
	height: auto;
	margin-bottom: 2.5rem;
}
@media only screen and (max-width: 767px){
	footer .footer01 .link01 {
		width: 28%;
		margin-bottom: 4.1rem;
	}
}
footer .footer01 .link01 img {
	display: block;
	width: 100%;
	height: auto;
}
footer .footer01 ul {
	width: auto;
	height: auto;
	margin-bottom: 6.9rem;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media only screen and (max-width: 767px){
	footer .footer01 ul {
		margin-bottom: 4.8rem;
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
	}
}
footer .footer01 ul li {
	width: auto;
	font-size: 1.2rem;
	line-height: 1.6rem;
}
@media only screen and (max-width: 767px){
	footer .footer01 ul li {
		margin-top: 2.5rem;
	}
	footer .footer01 ul li:nth-of-type(1) {
		margin-top: 0;
	}
}
footer .footer01 ul .item01 {
	margin: 0 1.1rem;
}
footer .footer01 ul li a {
	font-size: 1.2rem;
	line-height: 1.6rem;
}
@media only screen and (max-width: 767px){
	footer .footer01 ul li a {
		font-size: 1.4rem;
		line-height: 1.8rem;
	}
}
footer .footer01 p {
	font-size: 1.0rem;
	line-height: 1.6rem;
}

/*footerここまで*/

.slide_trigger {
	cursor: pointer;
}
@media only screen and (max-width: 767px){
	.slide01 {
		display: none;
		overflow: hidden;
		position: fixed;
		z-index: 1;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: #E7E4E0;
	}
	.slide01 .slide01_01 {
		padding: 5.0rem 0 0;
		display: flex;
		transition: transform 0.3s ease-in-out;
	}
	.slide01 .button01 {
		display: block;
		width: 1.5rem;
		height: auto;
		position: absolute;
		top: 2.0rem;
		right: 2.0rem;
		z-index: 1;
		cursor: pointer;
	}
	.slide01 .slide01_01 .slide01_01_01 {
		min-width: 100%;
		height: auto;
		opacity: 0;
		transition: opacity 0.5s;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
		overflow-y: scroll;
	}
	.slide01 .slide01_01 .slide01_01_01.active {
		opacity: 1;
	}
	.slide01 .slide01_01 .slide01_01_01 img {
		display: block;
		width: 76.8%;
		height: auto;
		margin: 0 auto 3.3rem;
	}
	.slide01 .slide01_01 .slide01_01_01 ul {
		width: 58.4%;
		display: flex;
		flex-direction: column;
		height: auto;
	}
	.slide01 .slide01_01 .slide01_01_01 ul li {
		margin: 1.7rem 0 0;
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
	}
	.slide01 .slide01_01 .slide01_01_01 ul li:nth-of-type(1) {
		margin-top: 0;
	}
	.slide01 .slide01_01 .slide01_01_01 ul li span {
		font-size: 1.1rem;
		line-height: 1.9rem;
		letter-spacing: 0.005rem;
	}
	.slide01 .slide01_01 .slide01_01_01 ul li span:nth-of-type(2) {
		font-size: 1.0rem;
		line-height: 1.8rem;
		margin-left: auto;
	}
	.slide01 .slide01_01 .slide01_01_01 ul li a {
		font-size: 1.0rem;
		line-height: 1.8rem;
		letter-spacing: 0.005rem;
		margin-left: auto;
		text-decoration: underline;
	}
	.slide01 .button02 {
		width: 1.1rem;
		height: auto;
		cursor: pointer;
		transition: opacity 0.3s;
		position: absolute;
		left: 1.2rem;
		bottom: 1.4rem;
	}
	.slide01 .button03 {
		width: 1.1rem;
		height: auto;
		cursor: pointer;
		transition: opacity 0.3s;
		position: absolute;
		right: 1.2rem;
		bottom: 1.4rem;
	}
	.slide01 .slide01_01 .slide01_01_01.active {
		opacity: 1;
	}
	.button02.disabled, .button03.disabled {
		opacity: 0.2;
		pointer-events: none;
	}
}

/* @media only screen and (max-width: 393px){
	.slide01 .slide01_01 .slide01_01_01 {
		height: 600px;
	}
} */
@media only screen and (max-width: 375px){
	.slide01 .slide01_01 .slide01_01_01 {
		height: 550px;
	}
}
@media only screen and (max-width: 360px){
	.slide01 .slide01_01 .slide01_01_01 {
		height: 450px;
	}
}