@charset "UTF-8";
/* CSS Document */

:root {
	--themecolor: #002145;
	--textcolor: #000000;
	--subcolor: #2d72be;
	--subcolor02: #4ca9eb;
	--subcolor03: #c5d05c;
	--linecolor: #06c755;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
	overflow-x: hidden;
	font-size: 62.5%;
}
body {
	overscroll-behavior: auto;
	max-width: 100%;
	margin: 0 auto;
	font-size: 2rem;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	text-rendering: optimizeLegibility;
	position: relative;
}
p {
	color: #000;
	font-size: clamp(1.6rem, 1.736vw, 2rem);
	line-height: 2;
	text-align: justify;
}
img {
	width: 100%;
	height: auto;
}
main {
	width: 100%;
}
.sp {
	display: none;
}
#pc_header {
    width: 100%;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.5);
}
#pc_header .header_inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#pc_header .header_inner .header_logo {
	width: 22.1875vw;
	padding: 2.4rem;
}
#pc_header .header_inner .header_nav {
	padding-right: 3.125vw;
}
#pc_header .header_inner .header_nav ul {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
#pc_header .header_inner .header_nav ul li {
	position: relative;
}
#pc_header .header_inner .header_nav ul li a {
	font-size: 1.6rem;
	padding-left: 2.4rem;
    padding-right: 2.4rem;
	color: var(--themecolor);
	font-weight: bold;
}
#pc_header .header_inner .header_nav ul li .contact {
	background-color: #fff;
	color: var(--themecolor);
	font-weight: bold;
	border-radius: 24px;
	padding: 4px 48px;
	margin-left: 24px;
	position: relative;
	display: inline-block;
}
#pc_header .header_inner .header_nav ul li .contact:after {
    content: '';
	background-image: url("../images/link_icon01.svg");
	background-repeat: no-repeat;
	position: absolute;
	top: 50%;
	right: 2rem;
	transform: translateY(-50%);
    width: 1rem;
    height: 0.6rem;
}
#pc_header .header_inner .header_nav ul li a:hover {
	opacity: 0.7;
	transition: 1s;
}
#pc_header .header_inner .header_nav ul li:last-child a {
}
#header_sp {
	display: none;
}
@media screen and (max-width: 1024px) {
	#pc_header {
		display: none!important;
	}
	#header_sp input[type="checkbox"] {
		opacity: 0;
		visibility: hidden;
		position: absolute;
	}
	.hamburger {
		width: 64px;
		height: 64px;
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
		cursor: pointer;
		z-index: 999;
		background-color: rgba(255,255,255,0.5);
	}
	.hamburger span,
	.hamburger span::before,
	.hamburger span::after {
		position: absolute;
		display: block;
		content: "";
		width: 28px;
		height: 2px;
		border-radius: 2px;
		margin: 0 auto;
		background-color: var(--themecolor);
		transition: all 0.5s;
	}
	.hamburger span::before {
		top: -10px;
	}
	.hamburger span::after {
		bottom: -10px;
	}

	#header_sp input[type="checkbox"]:checked + .hamburger span {
		background-color: transparent;
	}
	#header_sp input[type="checkbox"]:checked + .hamburger span::before {
		top: 0;
		transform: rotate(45deg);
		background-color: var(--themecolor);
	}
	#header_sp input[type="checkbox"]:checked + .hamburger span::after {
		bottom: 0;
		transform: rotate(-45deg);
		background-color: var(--themecolor);
	}
	input[type="checkbox"]:checked ~ .header_sp_inner {
		right: 0;
	}
	#header_sp {
		width: 100%;
		height: 88px;
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		position: fixed;
		top: 0;
		right: 0;
		z-index: 2;
	}
    #header_sp .header_logo {
        width: 40%;
        height: auto;
        padding: 1.6rem;
		z-index: 999;
    }
	.header_sp_inner {
		position: fixed;
		width: 100%;
		height: 100%;
		top: 0px;
		right: -120%;
		background: url("../images/bg_wrapper.png") top center / cover no-repeat;
		color: var(--themecolor);
		padding: 0;
		transition: all 0.5s;
		overflow-y: scroll;
        scrollbar-width: none;
	}
	.header_sp_inner .header_sp_nav {
		width: 100%;
	}
	.header_sp_inner .header_sp_nav ul {
		width: 90%;
		max-width: 640px;
		margin: 0 auto;
		padding: 80px 0 40px 0;
		display: flex;
		flex-wrap: wrap;
	}
	.header_sp_inner .header_sp_nav ul li {
		width: 100%;
		padding: 2rem 0;
		text-align: left;
	}
	.header_sp_inner .header_sp_nav ul li a {
		font-size: 20px;
		position: relative;
		display: block;
	}
	.header_sp_inner .header_sp_nav ul li a:after {
		content: '';
		background-image: url("../images/link_icon02.svg");
		background-repeat: no-repeat;
		background-size: 50%;
		background-position: center center;
		background-color: var(--themecolor);
		border-radius: 50%;
		position: absolute;
		top: 50%;
		right: 0;
		transform: translateY(-50%);
		width: 2.4rem;
		height: 2.4rem;
	}
	.header_sp_inner .header_sp_nav ul li a span {
		font-size: 16px;
	}
	.sp_nav_contact {
		background: url("../images/contact_bg.png") top center / cover no-repeat;
		position: relative;
		border-bottom: 1rem solid var(--subcolor02);
	}
	.sp_nav_contact .sec_title {
		margin-top: 4rem;
		text-align: center;
	}
	.sp_nav_contact .sec_title .title_head {
		width: 80%;
		margin: 0 auto;
	}
	.sp_nav_contact .sec_title .title_lead {
		text-align: center;
		color: #fff;
		margin-top: 4rem;
	}
	.sp_nav_contact .sec_item {
		margin-top: 4rem;
		text-align: center;
	}
	.sp_nav_contact .sec_item .sec_text {
		text-align: center;
		color: #fff;
		font-size: clamp(1.4rem, 1rem + 0.5vw, 1.6rem);
		line-height: 2.5;
	}
	.sp_nav_contact .sec_item .sec_link {
		display: inline-block;
		margin: 8rem auto 0;
		padding: 2rem 8rem;
		background-color: #fff;
		border-radius: 9999px;
		color: var(--themecolor);
		position: relative;
		font-size: 1.6rem;
	}
	.sp_nav_contact .sec_item .sec_link:after {
		content: '';
		background-image: url("../images/link_icon01.svg");
		background-repeat: no-repeat;
		position: absolute;
		top: 50%;
		right: 4rem;
		transform: translateY(-50%);
		width: 1.8rem;
		height: 1.4rem;
	}
	.sp_nav_footer {
		padding: 0;
	}
	.sp_nav_footer .footer_scroll {
		position: relative;
	}
	.sp_nav_footer .footer_scroll .scroll_inner {
		background-color: var(--themecolor);
		display: flex;
		overflow: hidden;
		width: 100%;
		white-space: nowrap;
		padding: 4rem 0;
		border-bottom: 1rem solid var(--subcolor02);
	}
	.sp_nav_footer .footer_scroll .scroll_inner ul {
		display: flex;
		animation: scroll 20s linear infinite;
	}
	.sp_nav_footer .footer_scroll .scroll_inner ul li {
		flex: 0 0 auto;
		width: 1400px;
		height: auto;
		margin: 0 8rem;
		text-align: center;
	}
	@keyframes scroll {
		0% {
			transform: translateX(0);
		}
		100% {
			transform: translateX(-100%);
		}
	}
	.sp_nav_footer .link_inner {
		background-color: #001528;
	}
	.sp_nav_footer .link_inner .footer_link {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.sp_nav_footer .link_inner .footer_link li {
		width: 100%;
		border-right: none;
		text-align: left;
		border-bottom: 1px solid #fff;
	}
	.sp_nav_footer .link_inner .footer_link li:last-child {
		border-right: none;
	}
	.sp_nav_footer .link_inner .footer_link li a {
		color: #fff;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		gap: 1rem;
		width: 100%;
		line-height: 1;
		padding: 2rem;
		position: relative;
		font-size: 1.4rem;
	}
	.sp_nav_footer.link_inner .footer_link li a:after {
		content: '';
		background-image: url("../images/link_icon02.svg");
		background-repeat: no-repeat;
		position: absolute;
		top: 50%;
		right: 2rem;
		transform: translateY(-50%);
		width: 1.8rem;
		height: 1.4rem;
	}
	.sp_nav_footer .link_inner .footer_link .tel_link a span {
		width: 1.6rem;
		height: 2.8rem;
	}
	.sp_nav_footer .link_inner .footer_link .web_link a span {
		width: 2rem;
		height: 2rem;
	}
	.sp_nav_footer .footer_inner {
		background-color: #001528;
		padding: 8rem 0;
	}
	.sp_nav_footer .footer_inner .inner_list {
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.sp_nav_footer .footer_inner .inner_list .list_text {
		width: 50%;
	}
	.sp_nav_footer .footer_inner .inner_list .list_logo {
		width: 20%;
	}
	.sp_nav_footer .copyright {
		background-color: var(--themecolor);
		padding: 1rem 0;
		text-align: center;
		color: #fff;
		font-size: 1.4rem;
	}
} 

.bg_wrapper {
	background: url("../images/bg_wrapper.png") top center / 100% no-repeat;
	padding-bottom: 160px;
}

#mainVisual {
/*  background: url(../images/mv_bg.png) top 40px right 40px / 50% no-repeat;
    padding-bottom: 0;
    height: 150vh;*/
    display: flex;
    align-items: center;
	position: relative;
	height: 100vh;
}
#mainVisual .mv_content {
	margin-left: 3.125vw;
	z-index: 1;
}
#mainVisual .mv_bg {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}
#mainVisual .mv_bg img {
	height: 100vh;
}
#mainVisual .mainVisual_title {
	color: var(--themecolor);
	font-size: clamp(32px, 3.125vw, 48px);
	font-weight: bold;
	line-height: 1.5;
	letter-spacing: 0.1em;
	position: relative;
}

#mainVisual .title_lead {
	margin-top: 2rem;
	display: inline-block;
	font-size: clamp(12px, 1.25vw, 18px);
	font-weight: bold;
	color: var(--subcolor);
	background-color: #fff;
	padding: 0.5rem;
	border: 1px solid var(--subcolor);
	border-radius: 0.5rem;
}
#mainVisual .title_text {
	margin-top: 2rem;
	font-size: clamp(12px, 1.25vw, 18px);
}
section {
	padding: 160px 0;
}
.wrapper {
	width: 90%;
	margin: 0 auto;
}
.container {
	width: 90%;
	max-width: 1152px;
	margin: 0 auto;
}
.sec_title .title_sub {
	font-size: clamp(12px, 1.25vw, 20px);
	line-height: 1;
}
.sec_title .title_head {
	font-size: clamp(56px, 5.625vw, 80px);
	font-weight: bold;
}

#lineUp {
	padding-top: 160px;
	background: url("../images/lineup_bg.png") left -40px top / 52% no-repeat;
}
#lineUp .sec_title {
}
#lineUp .sec_title .title_head {
	width: 66%;
	margin-left: auto;
	position: relative;
}
#lineUp .sec_title .title_lead {
	position: absolute;
	right: 0;
	bottom: 0;
	font-feature-settings: "palt";
}
#lineUp .lineUp_text {
	width: 66%;
	margin-left: auto;
	margin-top: 80px;
}
#lineUp .lineUp_text h3 {
	display: inline-block;
	background-color: #ffa631;
	padding: 2rem;
	border-radius: 8px;
	color: #fff;
	font-weight: bold;
}
#lineUp .lineUp_text p {
	margin-top: 20px;
}
#lineUp .plus_box {
	margin-top: 20vw;
	padding-bottom: 4%;
	width: 100%;
	border-radius: 2rem;
	border: 1px solid var(--subcolor);
	background-color: #fff;
	text-align: center;
}
#lineUp .plus_box h3 {
	color: #fff;
	font-weight: bold;
	background-color: var(--subcolor);
	font-size: 3.2rem;
	padding: 1.6rem 0;
	border-radius: 2rem 2rem 0 0;
}
#lineUp .plus_box .plus_image {
	width: 50%;
	margin: 4rem auto;
}
#lineUp .plus_box .plus_link {
	padding: 2rem 10rem;
	background-color: var(--subcolor);
	border-radius: 9999px;
	color: #fff;
	position: relative;
	display: inline-block;
}
#lineUp .plus_box .plus_link:hover {
	opacity: 0.75;
	transition: 1s;
}
#lineUp .plus_box .plus_link:after {
    content: '';
	background-image: url("../images/link_icon02.svg");
	background-repeat: no-repeat;
	position: absolute;
	top: 50%;
	right: 4rem;
	transform: translateY(-50%) rotate(90deg);
    width: 1.8rem;
    height: 1.4rem;
}

#special_offer {
	background: url("../images/special_offer_bg.webp") top center / cover no-repeat;
	margin-top: -160px;
	position: relative;
}
#special_offer .sec_title {
	text-align: center;
	margin-top: 80px;
}
#special_offer .sec_title .title_head {
	width: 64%;
    margin: 0 auto 2rem;
}

#special_offer .sec_title .title_lead {
    margin-top: 4rem;
	text-align: center;
	color: #fff;
}
#special_offer .sec_item {
    margin-top: 4rem;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	/*grid-template-rows: repeat(2, 1fr);*/
	grid-column-gap: 40px;
	grid-row-gap: 40px;
}
#special_offer .sec_item .item_box01 {
	grid-area: 1 / 1 / 2 / 3;
	background: url("../images/bg_wrapper.png") top center / 100% no-repeat;
	padding: 3.125vw;
}
#special_offer .sec_item .item_box01 .text_box .box_title {
	font-size: clamp(2.4rem, 1.6rem + 1vw, 2.8rem);
	font-weight: bold;
	padding-left: 15rem;
	display: inline-block;
	position: relative;
}
#special_offer .sec_item .item_box01 .text_box .box_title:before {
    content: '';
	background-image: url("../images/special_offer_h3_a.svg");
	background-repeat: no-repeat;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
    width: 14rem;
    height: 4rem;
}
#special_offer .sec_item .item_box01 .text_box .box_lead {
	margin-top: 2rem;
	line-height: 1.5;
	font-weight: bold;
}
#special_offer .sec_item .item_box01 .text_box .box_list_title {
	margin-top: 2rem;
	font-size: clamp(2rem, 1.6rem + 1vw, 2.4rem);
	font-weight: bold;
	color: var(--subcolor02);
}
#special_offer .sec_item .item_box01 .text_box .box_list {
	margin-top: 2rem;
}
#special_offer .sec_item .item_box01 .text_box .box_list li h5 {
	font-size: clamp(1.6rem, 1.736vw, 2rem);
	font-weight: bold;
	color: var(--subcolor02);
}
#special_offer .sec_item .item_box01 .text_box .box_list li p {
	padding-left: 1em;
	font-weight: bold;
	line-height: 1.5;
	margin-bottom: 2rem;
}
#special_offer .sec_item .item_box01 .image_box {
	margin-top: 4rem;
}
#special_offer .sec_item .item_box .box_note {
	margin-top: 2rem;
	margin-left: auto;
}
#special_offer .sec_item .item_box .box_note li {
	font-size: clamp(1.6rem, 1.736vw, 2rem);
	line-height: 1.5;
	font-weight: normal;
}

#special_offer .sec_item .item_box02 {
	grid-area: 2 / 1 / 3 / 2;
	background: url("../images/bg_wrapper.png") top center / 100% no-repeat;
}
#special_offer .sec_item .item_box02 .text_box,
#special_offer .sec_item .item_box03 .text_box {
	padding: 3.125vw;
	line-height: 1.5;
	font-weight: bold;
}
#special_offer .sec_item .item_box02 .text_box .box_lead,
#special_offer .sec_item .item_box03 .text_box .box_lead {
	margin-top: 2rem;
	line-height: 1.5;
	font-weight: bold;
}
#special_offer .sec_item .item_box02 .text_box .box_title {
	font-size: clamp(2.4rem, 1.6rem + 1vw, 2.8rem);
	font-weight: bold;
	padding-left: 15rem;
	display: inline-block;
	position: relative;
}
#special_offer .sec_item .item_box02 .text_box .box_title:before {
    content: '';
	background-image: url("../images/special_offer_h3_b.svg");
	background-repeat: no-repeat;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
    width: 14rem;
    height: 4rem;
}
#special_offer .sec_item .item_box03 {
	grid-area: 2 / 2 / 3 / 3;
	background: url("../images/bg_wrapper.png") top center / 100% no-repeat;
}
#special_offer .sec_item .item_box03 .text_box .box_title {
	font-size: clamp(2.4rem, 1.6rem + 1vw, 2.8rem);
	font-weight: bold;
	padding-left: 15rem;
	display: inline-block;
	position: relative;
}
#special_offer .sec_item .item_box03 .text_box .box_title:before {
    content: '';
	background-image: url("../images/special_offer_h3_c.svg");
	background-repeat: no-repeat;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
    width: 14rem;
    height: 4rem;
}
#special_offer .sec_item .item_box03 .text_box .box_list {
	margin-top: 2rem;
}
#special_offer .sec_item .item_box03 .text_box .box_list li {
	font-size: clamp(1.6rem, 1.736vw, 2rem);
	font-weight: bold;
	color: var(--subcolor02);
	position: relative;
	padding-left: 2rem;
}
#special_offer .sec_item .item_box03 .text_box .box_list li:before {
    content: '';
	background-image: url("../images/check_icon.svg");
	background-repeat: no-repeat;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-40%);
    width: 1.6rem;
    height: 1.6rem;
}

#access {
	background: url("../images/access_bg.png") top center / 100% no-repeat, url("../images/bg_wrapper.png") top 160px center / cover no-repeat;
	position: relative;
	z-index: 1;
	margin-top: -160px;
}
#access .sec_title {
	position: relative;
	margin-top: 160px;
}
#access .sec_title .title_head {
	width: 64%;
}
#access .sec_title .title_lead {
	position: absolute;
	right: 0;
	bottom: 0;
	font-feature-settings: "palt";
}
#access .sec_item {
	margin-top: 8rem;
}
#access .sec_item .item_box {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 40px;
	margin-bottom: 8rem;
}
#access .sec_item .item_box_r {
	flex-direction: row-reverse;
}
#access .sec_item .item_box .image_box {
	width: calc((100% - 40px)/ 2);
}
#access .sec_item .item_box .image_box img {
	border-radius: 24px;
}
#access .sec_item .item_box .text_box {
	width: calc((100% - 40px)/ 2);
}
#access .sec_item .item_box .text_box h3 {
	font-size: clamp(2.4rem, 0.8rem + 2vw, 3.2rem);
	font-weight: bold;
	margin-bottom: 2rem;
}
#access .sec_item .item_box .text_box p {
	line-height: 1.5;
	margin-bottom: 2rem;
}
#access .sec_item .item_box .text_box iframe {
	border-radius: 24px;
	aspect-ratio: 524 / 362
}

#contact {
	background: url("../images/contact_bg.png") top center / cover no-repeat;
	position: relative;
	border-bottom: 1rem solid var(--subcolor02);
}
#contact .sec_title {
	margin-top: 4rem;
	text-align: center;
}
#contact .sec_title .title_head {
	width: 64%;
	margin: 0 auto;
}
#contact .sec_title .title_lead {
	text-align: center;
	color: #fff;
	margin-top: 4rem;
}
#contact .sec_item {
	margin-top: 4rem;
	text-align: center;
}
#contact .sec_item .sec_text {
	text-align: center;
	color: #fff;
	font-size: clamp(1.4rem, 1rem + 0.5vw, 1.6rem);
	line-height: 2.5;
}
#contact .sec_item .sec_link {
	display: inline-block;
	margin: 8rem auto 0;
	padding: 2rem 10rem;
	background-color: #fff;
	border-radius: 9999px;
	color: var(--themecolor);
	position: relative;
}
#contact .sec_item .sec_link:hover {
	opacity: 0.7;
	transition: 1s;
}
#contact .sec_item .sec_link:after {
    content: '';
	background-image: url("../images/link_icon01.svg");
	background-repeat: no-repeat;
	position: absolute;
	top: 50%;
	right: 4rem;
	transform: translateY(-50%);
    width: 1.8rem;
    height: 1.4rem;
}


#footer .footer_scroll {
	position: relative;
}
#footer .footer_scroll .scroll_inner {
	background-color: var(--themecolor);
	display: flex;
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
	padding: 8rem 0;
	border-bottom: 1rem solid var(--subcolor02);
}
#footer .footer_scroll .scroll_inner ul {
    display: flex;
    animation: scroll 20s linear infinite;
}
#footer .footer_scroll .scroll_inner ul li {
    flex: 0 0 auto;
    width: 3200px;
    height: auto;
    margin: 0 6rem;
    text-align: center;
}
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
.go_top_link {
    position: absolute;
	right: 40px;
	bottom: 40px;
}
.go_top_link img {
	width: 80px;
	height: 80px;
}
.go_top_link img:hover {
	opacity: 0.7;
	transition: 1s;
}
#footer .link_inner {
	background-color: #001528;
}
#footer .link_inner .footer_link {
	display: flex;
	justify-content: space-between;
}
#footer .link_inner .footer_link li {
	width: 50%;
	text-align: center;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
}
#footer .link_inner .footer_link li:last-child {
	border-right: none;
}
#footer .link_inner .footer_link li a {
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	width: 100%;
	line-height: 1;
	padding: 4rem;
	position: relative;
}
#footer .link_inner .footer_link li a:hover {
	opacity: 0.7;
	transition: 1s;
}
#footer .link_inner .footer_link li a:after {
    content: '';
	background-image: url("../images/link_icon02.svg");
	background-repeat: no-repeat;
	position: absolute;
	top: 50%;
	right: 4rem;
	transform: translateY(-50%);
    width: 1.8rem;
    height: 1.4rem;
}
#footer .link_inner .footer_link .tel_link a span {
    width: 1.6rem;
    height: 2.8rem;
}
#footer .link_inner .footer_link .web_link a span {
    width: 2rem;
    height: 2rem;
}
#footer .footer_inner {
	background-color: #001528;
	padding:8rem 0;
}
#footer .footer_inner .inner_list {
	display: flex;
	justify-content: center;
	align-items: center;
}
#footer .footer_inner .inner_list .list_text {
	width: 50%;
}
#footer .footer_inner .inner_list .list_logo {
	width: 20%;
}
#footer .copyright {
	background-color: var(--themecolor);
	padding: 2rem 0;
	text-align: center;
	color: #fff;
}

@media screen and (max-width: 1024px) {
	html {
		width: 100%;
		overflow-x: hidden;
	}
	#footer .footer_inner {
		flex-wrap: wrap;
	}
	#footer .footer_inner .corporate_items {
		width: 100%;
	}
	#footer .footer_inner .footer_nav {
		width: 100%;
	}
} 

@media (orientation: portrait){
	.container {
		width: 90%;
	}
	#mainVisual {
		height: 50vh;
	}
	#mainVisual:after {
		height: 50vh;
	}
	#fix_bnr_sp {
		position: fixed;
		bottom: 0;
		right: 0;
		text-align: center;
		z-index: 999;
		width: 100%;
		background-color: #fff;
		border: 4px solid var(--linecolor);
	}
	#fix_bnr_sp a {
		color: var(--linecolor);
		font-size: clamp(16px, 1.736vw, 20px);
		font-weight: bold;
		display: inline-block;
		position: relative;
		padding: 20px 0px 20px 38px;

	}
	#fix_bnr_sp a:before {
		content: "";
		display: inline-block;
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
		width: 28px;
		height: 28px;
		background: url("../images/line_icon.svg")  center center / cover no-repeat;
	}
	#fix_bnr_sp a:hover {
		opacity: 0.8;
		transition: 1s;
	}

}	
@media screen and (max-width: 640px) {
	html {
		width: 100%;
	}
	body {
		overflow-x: hidden;
	}
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
	section {
		padding: 120px 0;
	}
	#mainVisual {
		height: 100%;
		align-items: flex-end;
		justify-content: center;
	}
	#mainVisual .mv_content {
		margin-left: 0;
		margin-top: 32%;
	}
	#mainVisual .mv_bg {
		width: 72%;
		top: 0;
		transform: translateY(0);
	}
	#mainVisual .mv_bg img {
		height: auto;
	}
	#mainVisual .mainVisual_title {
		font-size: 2.2rem;
	}

	#mainVisual .title_lead {
		width: 100%;
		text-align: center;
	}
	#mainVisual .title_text {
		text-align: center;
	}
	#lineUp {
		padding-top: 160px;
		padding-bottom: 0;
		background: url("../images/lineup_bg_sp.png") center top / 110% no-repeat;
	}
	#lineUp .sec_title {
		margin-top: -160px
	}
	#lineUp .sec_title .title_head {
		width: 100%;
		margin-left: auto;
		position: relative;
	}
	#lineUp .sec_title .title_lead {
		position: absolute;
		left: 0;
		bottom: -32px;
		font-feature-settings: "palt";
	}
	#lineUp .lineUp_text {
		width: 100%;
		margin-top: 240px;
	}
	#lineUp .lineUp_text h3 {
		display: block;
		text-align: center;
		font-size: 14px;
		line-height: 1.75;
		padding: 1.5rem;
	}
	#lineUp .lineUp_text p {
		text-align: center;
		font-size: 12px;
	}
	#lineUp .plus_box h3 {
		font-size: 2.2rem;
	}
	#lineUp .plus_box .plus_image {
        margin: 2rem auto;
	}
	#lineUp .plus_box .plus_link {
        padding: 1rem 6rem;
        display: inline-block;
		font-size: 1.6rem;
	}
	#lineUp .plus_box .plus_link:after {
		width: 1.2rem;
		height: 1rem;
	}
	#special_offer {
		background: url("../images/special_offer_bg.webp") top center / cover no-repeat;
		margin-top: -160px;
		position: relative;
	}
	#special_offer .sec_title {
		text-align: center;
		margin-top: 80px;
	}
	#special_offer .sec_title .title_head {
		font-size: 2.2rem;
		margin-bottom: 2rem;
	}
	#special_offer .sec_title .title_head:after {
		bottom: -2rem;
		width: 12rem;
	}
	#special_offer .sec_item {
		display: flex;
		flex-wrap: wrap;
	}
	#special_offer .sec_item .item_box01 {
		grid-area: auto;
		padding: 2rem 1.6rem;
		background: url(../images/bg_wrapper.png) top center / cover no-repeat;
	}
	#special_offer .sec_item .item_box01 .text_box .box_title {
		font-size: 2rem;
		padding-left: 8rem;
	}
	#special_offer .sec_item .item_box01 .text_box .box_title:before {
		width: 8rem;
		height: 2rem;
	}
	#special_offer .sec_item .item_box01 .text_box .box_lead {
		margin-top: 2rem;
		line-height: 1.5;
		font-weight: bold;
	}
	#special_offer .sec_item .item_box01 .text_box .box_list {
		margin-top: 2rem;
	}
	#special_offer .sec_item .item_box01 .text_box .box_list li h4 {
		font-size: clamp(1.6rem, 1.736vw, 2rem);
		font-weight: bold;
		color: var(--subcolor02);
	}
	#special_offer .sec_item .item_box01 .text_box .box_list li p {
		padding-left: 0em;
		margin-top: 1rem;
		margin-bottom: 2rem;
	}
	#special_offer .sec_item .item_box01 .image_box {
		width: 100%;
		overflow-x: scroll;
	}
	#special_offer .sec_item .item_box01 .image_box img {
		width: 150%;
	}

	#special_offer .sec_item .item_box02 {
		grid-area: auto;
	}
	#special_offer .sec_item .item_box02 .text_box,
	#special_offer .sec_item .item_box03 .text_box {
		padding: 3.125vw;
		line-height: 1.5;
		font-weight: bold;
	}
	#special_offer .sec_item .item_box02 .text_box .box_lead,
	#special_offer .sec_item .item_box03 .text_box .box_lead {
		margin-top: 2rem;
		line-height: 1.5;
		font-weight: bold;
	}
	#special_offer .sec_item .item_box02 .text_box .box_title {
		font-size: 2rem;
		padding-left: 8rem;
	}
	#special_offer .sec_item .item_box02 .text_box .box_title:before {
		width: 8rem;
		height: 2rem;
	}
	#special_offer .sec_item .item_box03 {
		grid-area: auto;
	}
	#special_offer .sec_item .item_box03 .text_box .box_title {
		font-size: 2rem;
		padding-left: 8rem;
	}
	#special_offer .sec_item .item_box03 .text_box .box_title:before {
		width: 8rem;
		height: 2rem;
	}
	#special_offer .sec_item .item_box03 .text_box .box_list {
		margin-top: 2rem;
	}
	#special_offer .sec_item .item_box03 .text_box .box_list li {
		font-size: clamp(1.6rem, 1.736vw, 2rem);
		font-weight: bold;
		color: var(--subcolor02);
		position: relative;
		padding-left: 2rem;
	}
	#special_offer .sec_item .item_box03 .text_box .box_list li:before {
		content: '';
		background-image: url("../images/check_icon.svg");
		background-repeat: no-repeat;
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-40%);
		width: 1.6rem;
		height: 1.6rem;
	}
	#access {
		margin-top: -60px;
	}
	#access .sec_title {
		margin-top: 60px;
	}
	#access .sec_title .title_head {
		width: 80%;
	}
	#access .sec_title .title_lead {
		bottom: -100px;
	}
	#access .sec_item {
		margin-top: 16rem;
	}
	#access .sec_item .item_box {
		flex-wrap: wrap;
	}
	#access .sec_item .item_box .image_box {
		width: 100%;
	}
	#access .sec_item .item_box .text_box {
		width: 100%;
		text-align: center;
	}
	#access .sec_item .item_box .text_box p {
		text-align: center;
	}
	#contact .sec_title .title_head {
		width: 80%;
	}
	#contact .sec_item .sec_link {
		padding: 2rem 8rem;
		font-size: 1.6rem;
	}
    #footer {
		padding: 0;
		}
	#footer .footer_scroll .scroll_inner {
		padding: 4rem 0;
	}
	#footer .footer_scroll .scroll_inner ul li {
		width: 1600px;
	}
	.go_top_link {
		right: 20px;
		bottom: 20px;
	}
	.go_top_link img {
		width: 48px;
		height: 48px;
	}
	#footer .link_inner .footer_link {
		flex-wrap: wrap;
	}
	#footer .link_inner .footer_link li {
		width: 100%;
		border-right: none;
		text-align: left;
	}
	#footer .link_inner .footer_link li a {
		padding: 2rem;
		font-size: 1.4rem;
		justify-content: flex-start;
		gap: 1rem;
	}
	#footer .link_inner .footer_link li a:after {
		right: 2rem;
	}
	#footer .footer_inner {
		padding: 8rem 0;
	}
	#footer .copyright {
		padding: 1rem 0;
		font-size: 1.4rem;
	}
} 
		
