@charset "UTF-8";
/* ---------- リセット系 ---------- */
html {
	font-size: 10px;
}

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

/* ---------- ヘッダー ---------- */
header {
	top: 0;
	width: 100%;
	height: 110px;
	background-color: #FFFFFF;
	display: block;
	text-decoration: none;
	position: fixed;
	z-index: 280;
}
header .header_logo {
	width: 100%;
	height: 80px;
	margin: 0 auto;
	/* min-width: 641px; */
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 30px;
}
.left {
	margin: 0px;
	/* padding-left: 3%; */
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 30px;
	width: 330px;
}
.right {
	width: 180px;
	padding: 0 0 0 30px;
}
.header_catch {
	overflow: hidden;
	width: 100%;
	font-size: 14px;
	font-weight: 700;
	line-height: 28px;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	position: absolute;
	bottom: 0;
	left: 0;
}
.header_catch_loop {
	display: flex;
	white-space: nowrap;
	width: max-content;
}
.header_catch_item {
	display: inline-block;
	padding-right: 5px;
}

/* ---------- フッター ---------- */
footer {
	position: relative;
	z-index: 200;
	background: white;
	padding-top: 40px;
}
.footer-container {
	margin-left: auto;
	margin-right: auto;
	background-color: white;
	padding-bottom: 30px;
}

/* TOPへ戻るボタン */
#pageTop {
	position: fixed;
	bottom: 30px;
	right: 10px;
	z-index: 299;
	display: none;
	transition: opacity 0.5s ease;
}
#pageTop a {
	display: block;
	opacity: 1;
	width: 45px;
	height: 45px;
	border-radius: 50%;
}
.copyright {
	font-size: 12px;
	text-align: center;
}

/* ハンバーガーメニュー */
.sp-header-nav_box_ham {
	position: fixed;
	transition: all 0.3s;
	cursor: pointer;
	display: block;
	right: 10px;
	top: 72px;
	width: 52px;
	height: 52px;
	z-index: 310;
	background-color: #fff;
	border: 1px solid #000;
	border-radius: 50%;
}
.sp-header-nav_box_ham.clicked {
	background-color: black;
}

.sp-header-nav_box_ham_line {
	content: "";
	display: block;
	position: absolute;
	transition: all 0.6s;
	transition-timing-function: ease;
	background-color: #1A1A1A;
	width: 25px;
	height: 2px;
}
.line-1 {
	top: 15px;
	right: 13px;
}
.line-2 {
	top: 25px;
	right: 13px;
}
.line-3 {
	top: 35px;
	right: 13px;
}
.clicked .line-1 {
	transform: rotate(315deg);
	top: 25px;
	background-color: var(--purple01);
}
.clicked .line-2 {
	opacity: 0;
	background-color: var(--purple01);
}

.clicked .line-3 {
	transform: rotate(405deg);
	top: 25px;
	background-color: var(--purple01);
}
.sp-nav_nav-list {
	position: fixed;
	width: 100%;
	top: -200vh;
	transition: all 0.2s;
	/* overflow: scroll; */
	height: 100%;
	z-index: 300;
	background: #fff;
}
.nav-opened {
	top: 0px;
}
.is-z {
	z-index: 311;
}
/* ハンバーガーメニューここまで */

* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

p {
	font-weight: normal;
}

body {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
}

a {
	font-family: "Zen Kaku Gothic New", sans-serif;
}

picture {
	display: block;
}
picture.white {
	background-color: white;
}

video {
	width: 100%;
}

img {
	border: none;
	width: auto;
	max-width: 100%;
	height: auto;
	vertical-align: top;
}

ul,
nav,
li {
	list-style: none;
}

a {
	text-decoration: none;
	cursor: pointer;
}

button {
	border: 0;
	border-radius: 0;
}

.contents-inner {
	display: block;
	margin: 0 auto;
	position: relative;
	background-color: white;
}
@media screen and (max-width: 768px) {
	.contents-inner {
		width: 100%;
	}
}
.contents-inner .innerWrap {
	width: 90%;
	display: block;
	margin: 0 auto;
}

.contentsAllwrap {
	display: flex;
	background-color: #d9d9d9;
	padding-top: 110px;
}
@media screen and (max-width: 768px) {
	.contentsAllwrap {
		padding-top: 70px;
	}
}
.contentsAllwrap .rightContents {
	width: max(22vw, 280px);
	position: relative;
	z-index: 1;
}
.contentsAllwrap .sideMenu {
	width: max(22vw, 280px);
	position: fixed;
	bottom: 40px;
	right: 0;
}
@media screen and (max-width: 1200px) {
	.contentsAllwrap .rightContents {
		width: 280px;
		flex: none;
	}
	.contentsAllwrap .sideMenu {
		width: 280px;
	}
}
.contentsAllwrap .centerContents {
	width: 470px;
	flex: none;
	position: relative;
	z-index: 1;
	background: #fff;
	position: relative;
	margin: -110px 0 0;
	z-index: 299;
	padding: 0 40px;
	overflow: hidden;
}
.contentsAllwrap .centerContents::before,
.contentsAllwrap .centerContents::after {
	display: block;
	content: "";
	width: 40px;
	height: 100%;
	border-left: 1px solid #000;
	border-right: 1px solid #000;
	background: #F0F0F0 url("../images/center_back01.svg") repeat-y center -300px;
	position: absolute;
	top: 0;
	left: 0;
}
.contentsAllwrap .centerContents::after {
	left: auto;
	right: 0;
}
@media screen and (max-width: 1200px) {
	.contentsAllwrap .centerContents {
		margin: 0;
		z-index: 2;
	}
}
@media screen and (max-width: 768px) {
	.contentsAllwrap .centerContents {
		width: 100%;
		padding: 0 25px;
	}
	.contentsAllwrap .centerContents::before,
	.contentsAllwrap .centerContents::after {
		width: 25px;
	}
}
.contentsAllwrap .leftContents {
	position: relative;
	width: calc(78vw - 470px);
}
@media screen and (max-width: 1200px) {
	.contentsAllwrap .leftContents {
		width: calc(100vw - 770px);
	}
}

/*
.JS_fixed {
	width: 100%;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.JS_fixed.fixed {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
}
*/

.allWrapBG {
	position: fixed;
}
.allWrapBG.BG01 {
	width: calc(78vw - 500px);
	left: 15px;
	top: 150px;
	text-align: center;
}
.allWrapBG.BG01 img {
	display: inline-block;
}
@media screen and (max-width: 1200px) {
	.allWrapBG.BG01 {
		width: calc(100vw - 800px);
	}
}
@media screen and (max-width: 1000px) {
	.allWrapBG.BG01 {
		display: none;
	}
}

:root {
	--green01: #238E3A;
	--blue01: #004098;
	--lightBlue01: #A3D2EB;
	--purple01: #F5F5FF;
	--purple02: #AA187A;
}

@media screen and (max-width: 768px) {
	.PC-only {
		display: none !important;
	}
}
.sp-only {
	display: none !important;
}
@media screen and (max-width: 768px) {
	.sp-only {
		display: block !important;
	}
}

/* フッター */
.footer-inner_wrap {
	max-width: 1280px;
	width: 90%;
	display: block;
	margin: 0 auto;
}
.footer__logo {
	width: 230px;
	max-width: none;
	margin: 30px auto 0;
}
.footer__foot .copyright {
	display: block;
	padding: 30px 0 15px;
	font-size: 1rem;
	text-align: center;
	color: #666;
}
.footer__nav {
	font-size: 1.4rem;
	/* float: left; */
	letter-spacing: 0.2rem;
	margin-bottom: 0;
}
.footer__nav li {
	padding-bottom: 10px;
	text-align: left;
}
.footer__nav li a {
	color: #444;
	text-decoration: none;
}
.footer__nav a {
	-webkit-transition: 0.4s;
	transition: 0.4s;
}
.footer-inner_wrap .detail p {
	font-size: 13px;
	letter-spacing: 0.05em;
	line-height: 1.6;
	text-align: left;
}
.footer-inner_wrap .detail {
	margin: 0 0 40px;
}
@media screen and (max-width: 768px) {
	.tab_only {
		display: block;
	}
	header {
		height: 70px;
		width: 100%;
	}
	header .header_logo {
		height: 50px;
		padding: 0 30px;
	}
	header .header_catch {
		line-height: 18px;
		font-size: 12px;
	}
}

nav {
	position: relative;
	display: block;
	max-width: 280px;
	margin: 0 auto;
	padding: 0 15px;
}
nav .lists {
	display: flex;
	flex-direction: column;
	row-gap: 10px;
	background: #fff;
	padding: 25px;
	border-radius: 10px;
}
nav .lists {
	row-gap: 5px;
}
nav .lists .list {
	border-top: 2px dotted #000;
	padding: 5px 0 0;
}
nav .lists .list:first-of-type {
	border-top: none;
	padding: 0;
}
nav .lists .list a {
	display: flex;
	align-items: center;
	color: #000;
	padding: 10px 0;
}
nav .lists .list a p.img {
	width: 25px;
	margin: 0 8px 0 0;
	flex: none;
}
nav .lists .list a p.txt {
	font-size: 16px;
	font-weight: 700;
}
@media screen and (max-width: 768px) {
	nav {
		position: absolute;
		width: 80%;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		max-width: 350px;
	}
}

/* モーダル（矢印遷移付き）ここから */
.js-modal-open,
.js-modal-open2 {
	cursor: pointer;
}

.modal-wrapper,
.modal-wrapper2 {
	/* 後で復帰（モーダル）	*/
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0,0,0,0.75);
	z-index: 1000;
	/* 後で復帰（モーダル）ここまで	*/
}

/* 後で復帰（モーダル）	*/
.modal-content {
	display: none;
}

/* 後で復帰（モーダル）ここまで	*/
.modal-wrapper .view-window,
.modal-wrapper2 .view-window {
	position: relative;
	height: 100vh;
	overflow: scroll;
	-webkit-overflow-scrolling: auto;
}

.modal-wrapper .modal-content-wrapper,
.modal-wrapper2 .modal-content-wrapper {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
					transform: translate(-50%, -50%);
	max-width: 470px;
	width: 90%;
}
@media screen and (max-width: 768px) {
	.modal-wrapper .modal-content-wrapper,
	.modal-wrapper2 .modal-content-wrapper {
		width: 90%;
		position: relative;
		top: 0%;
		left: 50%;
		-webkit-transform: translate(-50%, 0%);
						transform: translate(-50%, 0%);
		margin-top: 30px;
	}
}

.modal-wrapper .modal-content-wrapper {
	position: relative;
	top: 0%;
	left: 50%;
	-webkit-transform: translate(-50%, 0%);
					transform: translate(-50%, 0%);
	margin-top: 30px;
}

.modal-wrapper .modal-content-wrapper .modal-main,
.modal-wrapper2 .modal-content-wrapper .modal-main {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
			-ms-flex-direction: column;
					flex-direction: column;
	-webkit-box-align: center;
			-ms-flex-align: center;
					align-items: center;
}

.modal-wrapper .btn-close,
.modal-wrapper2 .btn-close {
	cursor: pointer;
	z-index: 100;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	right: 10px;
	top: 10px;
}

.modal-wrapper_box {
	position: relative;
}

/* モーダル（矢印遷移付き）ここまで */
.modal_inner_wrapper {
	width: 100%;
	background-color: white;
	padding: 20px 0% 0;
	position: relative;
	overflow: hidden;
	padding: 94px 45px;
	margin-bottom: 30px;
	border-radius: 10px;
}

/* ---------- コンテンツ ---------- */
:root {
	--c01: #DD1C9F;
	--c02: #0058E2;
}
.contents_wrap {
	padding: 120px 0 0;
}
.contents_box {
	padding: 0 45px;
}
@media screen and (max-width: 768px) {
	.contents_wrap {
		padding: 90px 0 0;
	}
	.contents_box {
		padding: 0 15px;
	}
}

/* ---------- first ---------- */
.first_box {
	border: 18px solid #000;
	border-radius: 0 0 10px 10px;
	height: 800px;
	background: linear-gradient(to right, var(--c01) 0%,var(--c01) 50%,var(--c02) 50%,var(--c02) 100%);
}
.first_frame {
	max-width: 354px;
	height: 100%;
	position: relative;
	padding: 35px 0 0;
	margin: 0 auto;
}
.first_catch {
	max-width: 309px;
	margin: 0 auto;
}
.first_chara div,
.first_item div {
	animation-iteration-count: infinite;
	animation-timing-function: linear;
	animation-fill-mode: forwards;
}
.first_chara01 {
	width: 276px;
	position: absolute;
	top: 240px;
	left: -35px;
	z-index: 2;
	animation-name: fuwa11;
	animation-duration: 10s;
}
.first_chara02 {
	width: 263px;
	position: absolute;
	top: 276px;
	right: -55px;
	z-index: 2;
	animation-name: fuwa12;
	animation-duration: 10s;
}
.first_title {
	width: 80%;
	position: absolute;
	bottom: 15px;
	left: 10%;
	z-index: 2;
}
.first_title dl {
	background: #000;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
	border: 4px solid #fff;
	border-radius: 10px;
	text-align: center;
	padding: 12px 15px;
	position: relative;
}
.first_title dl dd {
	position: absolute;
	top: -35px;
	left: calc(50% - 52px);
}
.first_item01 {
	width: 104px;
	position: absolute;
	top: 190px;
	left: -50px;
	z-index: 3;
	animation-name: fuwa21;
	animation-duration: 6s;
}
.first_item02 {
	width: 83px;
	position: absolute;
	top: 240px;
	right: 25px;
	z-index: 3;
	animation-name: fuwa32;
	animation-duration: 6s;
}
.first_item03 {
	width: 53px;
	position: absolute;
	top: 480px;
	left: -45px;
	z-index: 3;
	animation-name: fuwa22;
	animation-duration: 6s;
}
.first_item04 {
	width: 76px;
	position: absolute;
	top: 550px;
	left: 70px;
	z-index: 3;
	animation-name: fuwa11;
	animation-duration: 6s;
}
.first_item05 {
	width: 61px;
	position: absolute;
	top: 500px;
	right: -55px;
	z-index: 3;
	animation-name: fuwa21;
	animation-duration: 6s;
}
.first_item06 {
	width: 84px;
	position: absolute;
	top: 710px;
	left: 0;
	z-index: 3;
	animation-name: fuwa31;
	animation-duration: 6s;
}
.first_item07 {
	width: 83px;
	position: absolute;
	top: 650px;
	right: 0;
	z-index: 3;
	animation-name: fuwa22;
	animation-duration: 6s;
}
@keyframes fuwa11 {
	0% {
		transform: translate(0, 10px);
	}
	25% {
		transform: translate(0, 0) ;
	}
	50% {
		transform: translate(0, -10px) ;
	}
	75% {
		transform: translate(0, 0) ;
	}
	100% {
		transform: translate(0, 10px) ;
	}
}
@keyframes fuwa12 {
	0% {
		transform: translate(0, -10px);
	}
	25% {
		transform: translate(0, 0) ;
	}
	50% {
		transform: translate(0, 10px) ;
	}
	75% {
		transform: translate(0, 0) ;
	}
	100% {
		transform: translate(0, -10px) ;
	}
}
@keyframes fuwa21 {
	0% {
		transform: translate(0, 6px) ;
	}
	25% {
		transform: translate(0, 0);
	}
	50% {
		transform: translate(0, -6px) ;
	}
	75% {
		transform: translate(0, 0) ;
	}
	100% {
		transform: translate(0, 6px) ;
	}
}
@keyframes fuwa22 {
	0% {
		transform: translate(0, -6px) ;
	}
	25% {
		transform: translate(0, 0);
	}
	50% {
		transform: translate(0, 6px) ;
	}
	75% {
		transform: translate(0, 0) ;
	}
	100% {
		transform: translate(0, -6px) ;
	}
}
@keyframes fuwa31 {
	0% {
		transform: translate(0, 3px) ;
	}
	25% {
		transform: translate(0, 0) ;
	}
	50% {
		transform: translate(0, -3px) ;
	}
	75% {
		transform: translate(0, 0);
	}
	100% {
		transform: translate(0, 3px) ;
	}
}
@keyframes fuwa32 {
	0% {
		transform: translate(0, -3px) ;
	}
	25% {
		transform: translate(0, 0) ;
	}
	50% {
		transform: translate(0, 3px) ;
	}
	75% {
		transform: translate(0, 0);
	}
	100% {
		transform: translate(0, -3px) ;
	}
}

/* ---------- search ---------- */
#search .contents_box {
	padding: 0;
}
.search_title {
	font-size: 26px;
	font-weight: 700;
	line-height: 1.3;
	text-align: center;
	margin: 0 0 30px;
}
.search_title span {
	display: block;
	margin: 0 auto 2px;
}
.search_title strong {
	display: flex;
	justify-content: center;
	align-items: center;
}
.search_title strong img {
	width: 26px;
	margin: 0 0 0 5px;
}
.search_box {
	position: relative;
	padding: 0 45px;
}
.search_box::before {
	display: block;
	content: "";
	width: 144px;
	height: 305px;
	background: url("../images/first_chara02.png") no-repeat center center / cover;
	position: absolute;
	top: -20px;
	right: -35px;
	z-index: 2;
}
.search_box::after {
	display: block;
	content: "";
	width: 150px;
	height: 324px;
	background: url("../images/first_chara01.png") no-repeat center center / cover;
	position: absolute;
	bottom: -45px;
	left: -30px;
	z-index: 2;
}
.search_box a {
	display: block;
	border: 2px solid #000;
	border-radius: 10px;
	color: #fff;
	font-weight: 700;
	line-height: 1.3;
	font-size: 16px;
	text-align: center;
	padding: 20px 20px 15px;
	max-width: 500px;
	margin: 30px auto 0;
	background: var(--c02);
}
.search_box a:nth-child(2) {
	background: var(--c01);
}
.search_box a dl dt:nth-of-type(1) img {
	border-radius: 10px;
}
.search_box a dl dt:nth-of-type(2) {
	margin: 15px 0 5px;
}
.search_box a dl dd {
	display: inline-block;
	padding: 0 18px 0 0;
	background: url("../images/link_icon01.svg") no-repeat right 3px / 14px auto;
	font-size: 14px;
}

/* ---------- feature ---------- */
.back_grid {
	background: url("../images/center_back02.png") repeat 0 0 / 20px auto;
}
.contents_wrap.feature {
	background: #fff;
	padding-bottom: 80px;
}
.contents_wrap.feature .contents_box {
	padding: 0;
}
.feature_title {
	text-align: center;
	margin: 0 0 30px;
}
.feature_catch p {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.8;
	text-align: center;
}
.feature_subtitle {
	border-bottom: 1px solid #000;
	text-align: center;
	font-size: 18px;
	line-height: 40px;
	font-weight: 700;
	color: #fff;
	text-align: center;
	margin: -40px 0 30px;
}
.feature_subtitle span {
	display: inline-block;
	padding: 0 15px;
	background: #000;
	border-radius: 10px 10px 0 0;
	min-width: 240px;
}
.contents_wrap.interview {
	padding-top: 0;
}
.interview_box {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	max-width: 500px;
	margin: 0 auto;
}
.interview_box .js-modal-open {
	width: 49%;
}
dl.interview_name {
	text-align: center;
	margin: 0 0 30px;
}
dl.interview_name dd:nth-of-type(1) {
	display: inline-block;
	padding: 2px 15px;
	background: #000;
	border-radius: 100px;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.3;
	color: #fff;
	position: relative;
}
dl.interview_name dd:nth-of-type(2) {
	border: 2px solid #000;
	border-radius: 10px;
	overflow: hidden;
	margin: -10px 0 0;
}
dl.interview_name dt:nth-of-type(1) {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.5;
	text-align: left;
	margin: 7px 0 3px;
	white-space: nowrap;
}
dl.interview_name dt:nth-of-type(1) div {
	display: flex;
	align-items: center;
}
dl.interview_name dt:nth-of-type(1) span {
	font-size: 8px;
	margin: 0 5px 0 0;
}
dl.interview_name dt:nth-of-type(2),
dl.interview_name dt:nth-of-type(3) {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.0;
}
dl.interview_name dt:nth-of-type(2) strong,
dl.interview_name dt:nth-of-type(3) strong {
	font-size: 26px;
}
dl.interview_name dt:nth-of-type(2) span,
dl.interview_name dt:nth-of-type(3) span {
	font-size: 10px;
}
.modal_inner_wrapper dl.interview_name {
	margin: 0 0 15px;
}
.modal_inner_wrapper dl.interview_name dd:nth-of-type(1) {
	font-size: 18px;
}
.modal_inner_wrapper dl.interview_name dd:nth-of-type(2) {
	margin: -15px 0 0;
}
.modal_inner_wrapper dl.interview_name dt:nth-of-type(1) {
	font-size: 20px;
}
.modal_inner_wrapper dl.interview_name dt:nth-of-type(1) span {
	font-size: 16px;
}
.modal_inner_wrapper dl.interview_name dt:nth-of-type(2),
.modal_inner_wrapper dl.interview_name dt:nth-of-type(3) {
	font-size: 26px;
}
.modal_inner_wrapper dl.interview_name dt:nth-of-type(2) strong,
.modal_inner_wrapper dl.interview_name dt:nth-of-type(3) strong {
	font-size: 42px;
}
.modal_inner_wrapper dl.interview_name dt:nth-of-type(2) span,
.modal_inner_wrapper dl.interview_name dt:nth-of-type(3) span {
	font-size: 16px;
}
dl.interview_faq dt {
	margin: 15px 0 0;
	padding: 15px 0 5px 30px;
	background: url("../images/interview_faq01.svg") no-repeat left 17px;
	border-top: 2px dotted #000;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 700;
}
dl.interview_faq dd {
	padding: 10px 0 5px 30px;
	background: url("../images/interview_faq02.svg") no-repeat left 9px;
	font-size: 14px;
	line-height: 1.5;
	font-weight: 700;
}
.interview_notice {
	margin-top: -15px;
	font-weight: 700;
} 
.interview_chara01 {
	width: 295px;
	position: relative;
	left: calc(50% - 120px);
}
.contents_wrap.gathering {
	padding-top: 40px;
}
.gathering_catch p {
	font-size: 18px;
	font-weight: 700;
	text-align: center;
}
.gathering_box {
	position: relative;
	bottom: -30px;
	max-width: 500px;
	margin: 0 auto;
}
.gathering_box dl:not(:first-child) {
	margin: 30px 0 0;
}
.gathering_box dl dt img {
	border-radius: 10px;
}
.gathering_box dl dt iframe {
	width: 100%;
	height: auto;
	aspect-ratio: 35/64;
	border-radius: 10px;
}
.gathering_box dl dd {
	font-size: 17px;
	font-weight: 700;
	text-align: center;
	margin: 10px 0 0;
}
.contents_wrap.benefits {
	padding-top: 160px;
}
.contents_wrap.benefits .contents_box {
	padding: 0;
}
.benefits_chara {
	width: 428px;
	position: relative;
	z-index: 3;
	left: calc(50% - 214px);
}
.benefits_box {
	overflow: hidden;
	margin-top: -80px;
	position: relative;
	z-index: 4;
}
.benefits_box ul li {
	width: 500px;
	height: 500px;
	background: linear-gradient(to right, var(--c02) 0%,var(--c02) 50%,var(--c01) 50%,var(--c01) 100%);
	padding: 10px;
	border-radius: 250px;
	position: relative;
	left: calc(50% - 250px);
}
.benefits_box ul li:not(:first-child) {
	margin-top: -120px;
}
.benefits_box ul li dl {
	width: 480px;
	height: 480px;
	background: #fff;
	border-radius: 250px;
	text-align: center;
	padding: 30px 0 0;
}
.benefits_box ul li dl dt {
	position: relative;
}
.benefits_box ul li dl dd:nth-of-type(1) {
	width: 280px;
	margin: -20px auto 15px;
}
.benefits_box ul li dl dd:nth-of-type(1) img {
	border: 1px solid #000;
	border-radius: 10px;
}
.benefits_box ul li dl dd:nth-of-type(2) {
	width: 280px;
	margin: 0 auto;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
	text-align: left;
}
.benefits_chara02 {
	width: 420px;
	position: relative;
	z-index: 4;
	left: calc(50% - 210px);
	margin-top: -120px;
}
.benefits_more {
	margin-top: -80px;
}
.benefits_more ul li {
	background: linear-gradient(to right, var(--c02) 0%,var(--c02) 50%,var(--c01) 50%,var(--c01) 100%);
	border: 2px solid #000;
	border-radius: 10px;
	width: 320px;
	margin: 15px auto 0;
	padding: 20px 0 0;
	position: relative;
	color: #fff;
	line-height: 1.5;
	transform: rotate(-6deg);
}
.benefits_more ul li:nth-child(1) {
	z-index: 4;
}
.benefits_more ul li:nth-child(2) {
	transform: rotate(6deg);
	z-index: 3;
}
.benefits_more ul li:nth-child(3) {
	z-index: 2;
}
.benefits_more ul li:nth-child(4) {
	background: var(--c02);
	transform: rotate(6deg);
	z-index: 1;
}
.benefits_more ul li span {
	position: absolute;
	top: 120px;
	right: -30px;
	transform: rotate(12deg);
}
.benefits_more ul li:nth-child(2) span,
.benefits_more ul li:nth-child(4) span {
	transform: rotate(-3deg);
}
.benefits_more ul li:nth-child(even) span {
	right: auto;
	left: -30px;
}
.benefits_more ul li div img {
	border-radius: 10px;
	padding: 0 20px;
}
.benefits_more ul li h5 {
	margin: 15px 0 10px;
	padding: 0 20px;
	font-size: 18px;
	font-weight: 700;
	text-align: center;
}
.benefits_more ul li p {
	padding: 0 20px 5px;
	font-size: 14px;
	font-weight: 700;
}
.benefits_more ul li p:nth-last-of-type(1) {
	padding: 0 20px 10px;
	font-size: 10px;
	text-align: right;
	font-weight: 700;
}
.benefits_more ul li dl {
	text-align: center;
}
.benefits_more ul li dl dt {
	display: inline-block;
	font-size: 10px;
	font-weight: 700;
	color: #fff;
	background: #000;
	padding: 2px 5px;
	line-height: 1.3;
	border-radius: 100px;
}
.benefits_more ul li dl dd {
	background: #fff;
	margin: -5px 0 0;
	padding: 12px 10px;
	color: #000;
	border-radius: 0 0 8px 8px;
}
.benefits_more ul li dl dd em {
	display: inline-block;
	margin: 0 5px;
	font-style: normal;
	font-weight: 700;
	font-size: 12px;
}
.benefits_more ul li dl dd em.lalaport {
	color: var(--c02);
}
.benefits_more ul li dl dd em.aeonmall {
	color: var(--c01);
}
.contact_title {
	font-size: 14px;
	line-height: 1.3;
	color: #fff;
	text-align: center;
	padding: 10px 10px;
	background: #000;
	border-radius: 10px 10px 0 0;
}
.contact_title:nth-of-type(2) {
	margin-top: -15px;
}
.contact_box {
	background: linear-gradient(to right, var(--c02) 0%,var(--c02) 50%,var(--c01) 50%,var(--c01) 100%);
	display: flex;
	justify-content: space-between;
}
.contact_box:nth-of-type(1) {
	padding-bottom: 15px;
	background: var(--c02);
}
.contact_box dl {
	width: 50%;
	padding: 25px 0;
	text-align: center;
}
.contact_box:nth-of-type(1) dl {
	width: 100%;
}
.contact_box dl dt {
	font-size: 14px;
	color: #fff;
	margin: 0 0 15px;
}
.contact_box dl dd a {
	display: inline-block;
	width: 40px;
	margin: 0 5px;
}
.contact_box p {
	width: 50%;
	padding: 25px;
}
.contact_box p a {
	display: block;
	border: 1px solid #000;
	border-radius: 10px;
	background: #fff url("../images/link_icon01.svg") no-repeat right 5px center;
	font-size: 9px;
	color: #000;
	font-weight: 700;
	padding: 15px 30px 15px 5px;
}




