@charset "utf-8";
/* *************************************
// スタイル
************************************* */

:root {
	--orange01: #f39800;
	--green01: #00ca56;
	--yellow01: #ffe048;

	--blue01: #0075c2;
	--blue02: #00479d;
	--blue03: #ccf3ff;

	--blue-grad01: linear-gradient(to right, var(--blue02) 0%, var(--blue01) 100%); 
	--blue-grad02: linear-gradient(135deg, var(--blue02) 0%, var(--blue01) 100%); 
	--blue-grad03: linear-gradient(to bottom, var(--blue02) 0%, var(--blue01) 100%); 
	--blue-grad04: linear-gradient(to top, var(--blue02) 0%, var(--blue01) 100%); 

	--gray01: #a1b4bd;
	--gray02: #7c8896;
	--gray03: #d7dbdf;

	--black01: #212733;
	--text-color: var(--black01);

	--line-color: #4cc764;

    --white-filter: invert(100%) sepia(0%) saturate(6023%) hue-rotate(136deg) brightness(112%) contrast(101%);
}

body {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
}


.btn01 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 1em 0;
}

.btn01 > a {
	background: var(--blue-grad01);
	color: #fff;
	border-radius: 5px;
	position: relative;
	z-index: 0;
	display: flex;
	align-items: center;
	min-width: 300px;
	width: 300px;
	padding: 15px;
	justify-content: center;
	font-weight: 500;
	gap: 0 1em;
	z-index: 0;
	box-shadow: 5px 5px 0px var(--gray03);
	font-size: 20px;
	max-width: 100%;

}
.btn01 > a:after {
	content: "";
	display: block;
	width: 0.5em;
	height:0.5em;
	background: #fff;
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

.hl001:before {
	background: var(--blue01);
}

.text_center{
	text-align:center;
}

/* *************************************
// レイアウト
************************************* */

#container {
	display: grid;
	grid-template-columns: 260px calc(100% - 260px);
	grid-template-rows: 1fr auto auto;
	width: 100%;
}

#container > header {
	grid-column: 1 / 2;
	grid-row: 1 / 4;
}
#container > #content {
	grid-column: 2 / 3;
	grid-row: 1 / 2;
	width: 100%;
}
#container > #bottom_contact {
	grid-column: 2 / 3;
	grid-row: 2 / 3;
	width: 100%;
}
#container > footer {
	grid-column: 2 / 3;
	grid-row: 3 / 4;
	width: 100%;
}


@media (max-width: 1029px) {
	#container {
		display: block;
	}

	#container > #content {
		padding-top: 70px;
	}

}


/* *************************************
// ヘッダー・メニュー
************************************* */

.h001 {
	background: #fff;
	z-index: 999;
	width: 260px;
	height: 100vh;
    transition: .3s;
	padding: 10px;
	position: fixed;
	top: 0;
	left: 0;
	border-right: 1px solid var(--blue02);
}


.h001 #inner-header {
	height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
}


.h001 #inner-header .logo {
	position: relative;
	z-index: 1;
}
.h001 #inner-header .logo a {
    display: inline-block;
	padding: 10px 0;
	color: var(--blue01);
	font-weight: bold;
	font-size: 25px;
	text-align: center;
	line-height: 1.5;
	width: 100%;
}


.h001 #inner-header .header_box {
	position: relative;
	z-index: 0;
	flex: 1;
}

.h001 .header_box .menu {
	display: none;
	width: 60px;
	height: 60px;
	align-items: center;
	justify-content: center;
	background: var(--blue-grad01);
}

.h001 .header_box .menu_box {
	height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.h001 .header_box .menu_box nav {
	display: flex;
}
.h001 .header_box .menu_box nav > ul {
}
.h001 .header_box .menu_box nav > ul > li {

}
.h001 .header_box .menu_box nav > ul > li.hamburger_only {
	display: none;
}

.h001 .header_box .menu_box nav > ul > li > a {
	padding: 15px 30px;
	min-width: 150px;
	width: 100%;
	display: grid;
	align-content: end;
	text-align: left;
	color: var(--text-color);
	font-weight: bold;
	position: relative;
}

.h001 .header_box .menu_box nav > ul > li > a:before {
    content: "";
    display: block;
    width: 0.5em;
    height: 0.8em;
    background: #fff;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: var(--blue01);
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
}

.h001 .header_box .menu_box nav > ul > li > a:after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 15px;
    width: calc(100% - 30px);
    height: 2px;
    background: var(--blue01);
    transition: all .3s;
    transform: scale(0, 1);
    transform-origin: left top;
}
.h001 .header_box .menu_box nav > ul > li > a:hover:after {
    transform: scale(1, 1);
}

.h001 .header_box .menu_box .contact_list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}


.h001 .header_box .menu_box .contact_box {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	color: #fff;
	gap: 0 0.5em;
	width: 180px;
	font-weight: bold;
	padding: 15px;
	font-weight: bold;
	transition: opacity 0.3s;
}
.h001 .header_box .menu_box .contact_box:hover {
	opacity: 0.7;
}

.h001 .header_box .menu_box .contact_box .title {
	width: 100%;
	text-align: center;
	font-size: 14px;
}

.h001 .header_box .menu_box .contact_box img {
	height: 1.2em;
	width: auto;
	max-width: 1.5em;
	object-fit: contain;
	display: block;
}

.h001 .header_box .menu_box .contact_box.tel {
    background: var(--orange01);
    width: 100%;
    padding: 10px 15px;
    font-size: 22px;
    line-height: 1.5;
}

.h001 .header_box .menu_box .contact_box.contact {
	background: var(--blue01);
	width: 100%;
}

@media (max-width: 1029px) {
	.h001 {
		top: 0!important;
		height: 70px;
		width: 100%;
		padding: 0;
		border: none;
	}
	.h001 #inner-header {
		padding-left: 10px;
		height: 70px;
		flex-direction: row;
	}
	.h001 #inner-header .logo {
		width: auto;
        display: flex;
        align-items: center;
	}
	.h001 #inner-header .logo a {
		padding: 5px 0;
	}
	.h001 .logo a br {
		display: none;
	}


	.h001.header .menu {
		top: 5px;
		right: 5px;
	}


	.h001 .header_box .menu {
		display: flex;
	}
	.h001 #inner-header .header_box .menu_box {
		padding-left: 5%;
		padding-right: 5%;
	}




	.h001 #inner-header .header_box .menu_box {
		position: fixed;
		width: 100vw;
		height: 100vh;
		top: 0;
		left: 0;
		background: #fff;
		margin: 0;
		padding: 100px 80px 80px;
		z-index: 99;
		overflow-y: hidden;
		opacity: 0;
		visibility: hidden;
		flex-wrap: wrap;
		align-items: flex-start;
		gap: 20px;
		display: flex;
		transition: opacity 0.5s;
	}
	.h001 #inner-header .header_box .menu.open + .menu_box {
		opacity: 1;
		visibility: visible;
	}
	.h001 .header_box .menu_box nav {
		width: 100%;
	}
	.h001 .header_box .menu_box nav > ul {
		display: flex;
		flex-wrap: wrap;
		width: 300px;
	}
	.h001 .header_box .menu_box nav > ul > li {
		display: block;
		width: 100%;
	}
	.h001 .header_box .menu_box nav > ul > li > a:before {
        content: "";
        display: inline-block;
        width: 0.5em;
        height: 0.8em;
        clip-path: polygon(0 0, 0% 100%, 100% 50%);
        background: var(--blue-grad01);
        transform: none;
        position: relative;
        top: auto;
        bottom: auto;
        left: 0;
        margin-right: 5px;
	}
	.h001 .header_box .menu_box nav > ul > li.menu-item-has-children {
		display: block;
		width: 100%;
	}
	.h001 .header_box .menu_box nav > ul > li.hamburger_only {
		display: block;
	}
	.h001 .header_box .menu_box nav > ul > li > a {
		text-align: left;
		display: inline-block;
	}
	.h001 .header_box .menu_box nav > ul > li > a:after {
		display: none;
	}


	.h001 .header_box .menu_box .contact_list {
		width: 100%;
		flex-direction: row;
	}

	.h001 .header_box .menu_box .contact_box {
		width: 300px;
		max-width: 50%;
	}

}

@media (max-width: 1029px) {

}

@media (max-width: 767px) {
	.h001 #inner-header {
		padding: 0;
	}
	.h001 #inner-header .logo {
		width: calc(100% - 70px);
		height: 100%;
		background: #fff;
		padding-left: 10px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
	}
	.h001 #inner-header .logo a {
		font-size: 20px;
	}
	.h001 #inner-header .header_box .menu_box {
		gap: 10px;
		overflow-y: auto;
		padding: 70px 20px 100px;
	}

	.h001 .header_box .menu_box nav > ul > li > a {
	        padding: 5px;
	}

	.h001 .header_box .menu_box .contact_list {
		flex-direction: column;
	}

	.h001 .header_box .menu_box .contact_box {
		width: 100%;
		padding: 15px 0;
		max-width: 100%;
	}
}	




/*サブメニュー*/
.header nav ul.sub-menu {
	background: rgba(255,255,255,0.75);
	overflow: hidden;
    margin-top: 0;
    position: relative;
    visibility: hidden;
    z-index: 8999;
    width: 220px;
    flex-wrap: wrap;
    transition: all 0.3s;
    opacity: 0;
    display: block;
    top: calc(100% - 10px);
    visibility: visible;
    opacity: 1;
	font-size: 14px;
}
.header nav > ul > li:hover > ul.sub-menu {

}
.header nav ul.sub-menu > li {
    width: 100%;
    position: relative;
}
.header nav ul.sub-menu > li > a {
	color: var(--text-color);
    text-align: left;
    transition: background 0.3s;
    padding: 10px 5px 10px 15px;
    display: block;
    position: relative;
    border: none;
	font-weight: bold;
}

.header nav ul.sub-menu > li > a:hover {
	opacity: 0.5;
}
.header nav ul.sub-menu > li > a:before {
    content: '-';
	display: inline;
	margin-right: 0.5em;
	color: var(--blue02);
}

@media (max-width: 1199px) {
    .header nav ul.sub-menu {
        position: static;
        width: auto;
        visibility: inherit;
        opacity: 1;
        box-shadow: none;
        padding-top: 0;
        transition: none;
		display: flex;
		flex-wrap: wrap;
		padding-left: 20px;
    }
	.header nav ul.sub-menu > li {
		width: 100%;
	}
	.header nav ul.sub-menu > li > a:before {
		content: '-';
		display: inline;
		margin-right: 0.5em;
		color: var(--blue01);
	}

}

@media (max-width: 767px) {

    .header nav ul.sub-menu > li {
        width: 100%;
    }
    .header nav ul.sub-menu > li > a {
        padding: 5px;
        font-size: 14px;
    }
    .header nav ul.sub-menu > li > a:before {
        top: calc(5px + 0.4em);
    }
}
@media (min-width: 768px) {
    .header nav ul.sub-menu {
        display: flex!important;
    }
}




/* *************************************
// 下部お問い合わせ
************************************* */

#bottom_contact {
	background-color: var(--blue01);
	padding: 80px 0;
}

#bottom_contact .title05 .jp {
	color: #fff;
}
#bottom_contact .title05 .en {
	color: #fff;
	background: transparent;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
}


#bottom_contact .two_in_one {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px 60px;
}
#bottom_contact .two_in_one > div {
	width: 100%;
}
#bottom_contact .box {
	background: #fff;
	font-weight: 500;
	text-align: center;
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

#bottom_contact .box .icon {
	width: 50px;
	height: 50px;
	background-image: var(--blue-grad01);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 10px;
}
#bottom_contact .box .icon > img {
	width: 30px;
	height: 30px;
	object-fit: contain;
}
#bottom_contact .box .title {
	font-size: 20px;
	font-weight: bold;
}
#bottom_contact .box a.tel_number {
	font-size: 30px;
}
#bottom_contact .box .time {
	font-size: 14px;
}


#bottom_contact .box .btn04 {
	display: flex;
	justify-content: center;
	margin-top: auto;
}
.btn04 > a {
	padding: 10px 15px;
	color: #fff;
	text-align: center;
	background-image: var(--blue-grad01);
	font-size: 20px;
	width: 300px;
	max-width: 100%;
	display: block;
	transition: opacity 0.3s;
}
.btn04 > a:hover {
	opacity: 0.7;
}

@media (max-width: 1199px) {
	#bottom_contact .two_in_one {
		grid-template-columns: 100%;
	}

}


@media (max-width: 1029px) {

	#bottom_contact .two_in_one {
		grid-template-columns: 100%;
	}
}

@media (max-width: 767px) {
	#bottom_contact {
		padding-top: 50px;
	}
	#bottom_contact .box {
		padding: 20px;
	}
}

.title05 {
	margin-bottom: 40px;
}
.title05 .en {
    text-align: center;
    font-weight: 500;
    font-size: 60px;
    background: var(--blue-grad01);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: table;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    line-height: 1;
}
.title05 .jp {
	text-align: center;
    font-weight: bold;
    font-size: 25px;
    margin-bottom: 15px;
}

@media (max-width: 767px) {
	.title05 .en {
		font-size: 30px;
	}
	.title05 .jp {
		font-size: 18px;
	}
}



/* *************************************
// フッター
************************************* */

.f001 {
	background: var(--blue02);
	color: #fff;
}
.f001 a {
	color: #fff;
}

.f001 #inner-footer {
	display: grid;
	grid-template-columns: 400px 1fr auto;
	gap: 0 40px;
	align-items: flex-start;
}
.f001 #inner-footer > * {
	margin: 0;
}

.f001 .logo a {
	color: #fff;
}

.f001 .company_info .company {
	font-weight: bold;
	font-size: 18px;
}
.f001 .company_info .address {
	font-size: 14px;
}


.f001 nav {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
}
.f001 .nav li a {
    line-height: 2;
}
.f001 ul.nav {
	width: 100%;
	border-right: 1px solid var(--gray01);
	font-size: 14px;
	padding: 0 20px;
}
.f001 ul.nav:first-child {
	border-left: 1px solid var(--gray01);
}
.f001 ul.nav > li {

}
.f001 ul.nav > li > a {
	color: var(--text-color);
	position: relative;
	padding: 0 0 0 15px;
}

.f001 ul.sub-menu > li > a {
	color: var(--text-color);
	padding: 0;
}

.f001 ul.nav > li > a:before {
    content: "";
    display: block;
    width: 0.5em;
    height: 0.8em;
    background: #fff;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: var(--blue-grad01);
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
}

.f001 .nav li ul.sub-menu li,
.f001 .nav li ul.children li {
	padding: 0;
}

.f001 .nav li ul.sub-menu a:before,
.f001 .nav li ul.children a:before {
	color: var(--blue02);
}

.f001 .copyright {
	background: var(--black01);
	color: #fff;
	padding: 15px 5%;
	display: flex;
	flex-wrap: wrap;
}
.f001 .copyright a {
	color: #fff;
}

.f001 .copyright a.link_policy {
	margin: 0 2em;
}

.f001 .copyright a.link_policy:before {
    content: "";
    display: inline-block;
    width: 0.5em;
    height: 0.8em;
    background: #fff;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
	margin-right: 0.5em;
}

.f001 .copyright a.link_recruit {
	margin-left: auto;
}


.f001 .copyright a[target="_blank"]:after {
    content: "";
    display: inline-block;
    width: 0.8em;
    height: 0.8em;
    background-image: url(../images/common/icon_outlink.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 1em;
    filter: var(--white-filter);
}

@media (max-width: 1199px) {

	.f001 #inner-footer {
		display: flex;
		justify-content: space-between;
	}
	.f001 nav {
		display: none;
	}
}

@media (max-width: 767px) {
	.f001 #inner-footer {
		justify-content: center;
	}
	.f001 .company_info {
		text-align: center;
		width: 100%;
	}
	.f001 .company_info .company {
		font-size: 16px;
		margin-bottom: 10px;
	}
	.f001 .company_info .company br {
		display: none;
	}

	.f001 .copyright { 
		padding: 15px 5px;
		justify-content: center;
	}
	.f001 .copyright > span {
		font-size: 12px;
	}
}





.fixed_contact {
	position: fixed;
	top: 150px;
	right: 0;
}

.fixed_contact a {
	background: var(--line-color);
	color: #fff;
	writing-mode: vertical-lr;
	display: flex;
	align-items: center;
	width: 80px;
	padding: 10px 0 20px;
	border-radius: 20px 0 0 20px;
}
.fixed_contact a img {
	width: 60px;
	height: 60px;
}
.fixed_contact a > span {
	flex-direction: column;
	font-weight: bold;
	font-size: 20px;
}


/* *************************************
// TOP
************************************* */
section {
	padding: 80px 0;
}

.mv001 {
	background: var(--blue01);
	aspect-ratio: 16 / 9;
	width: 100%;

}

.mv001 > .inner {
	width: auto;
	height: 100%;
	aspect-ratio: 16 / 9;
	padding: 0 5%;
	display: grid;
	align-items: end;
	justify-content: center;
	margin: auto;
}

.mv001 img {
	display: block;
	width: auto;
	max-width: 100%;
	height: 100%;
	background: #fff;
}

@media (max-width: 1029px) {

	.mv001 {
		padding-top: 30px;
	}

	.mv001 img {
		border-radius: 20px 20px 0 0;
	}
}

@media (max-width: 767px) {

	.mv001,
	.mv001 > .inner {
		aspect-ratio: auto;
	}
	.mv001 > .inner {
		display: block;
	}

	.mv001 img {
		width: 100%;
		margin: auto;
		height: auto;
	}

}


#top_about {
	position: relative;
	padding-top: 0;
	overflow: hidden;
}

#top_about .text1 {
	padding: 20px 10px;
	color: #fff;
	background: var(--blue02);
	font-size: 20px;
	text-align: center;
	font-weight: bold;
}

@media (max-width: 767px) {

	#top_about .text1 {
		font-size: 16px;
	}

}

.title01 {
	font-size: max(30px, 3vw);
	text-align: center;
	font-weight: 900;
	color: #3e3a39;
	display: table;
	position: relative;
	margin: 50px auto 80px;
	line-height: 1.5;
}
.title01:before {
	content: "";
	display: block;
    width: 5vw;
	height: 100%;
	position: absolute;
	top: 0;
	right: 100%;
	background-image: url(../images/top/title01_left.svg);
	background-size: contain;
	background-position: left center;
	background-repeat: no-repeat;

}
.title01:after {
	content: "";
	display: block;
    width: 5vw;
	height: 100%;
	position: absolute;
	top: 0;
	left: 100%;
	background-image: url(../images/top/title01_right.svg);
	background-size: contain;
	background-position: right center;
	background-repeat: no-repeat;
}

@media (max-width: 767px) {

	.title01 {
	    font-size: 22px;
		margin-bottom: 50px;
	}
	.title01:before,
	.title01:after {
		width: 10vw;
	}

}

.title02 {
	display:flex;
	flex-wrap: wrap;
	align-items: center;
}
.title02 > .image {
	width: 20%;
}
.title02 > .image > img {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: contain;
}
.title02 > .text {
	width: 60%;
}
.title02 > .text > img {
	width: 100%;
}

@media (max-width: 767px) {
	.title02 {
		justify-content: center;
	}
	.title02 .text {
		width: 100%;
		order: 0;
	}
	.title02 .image {
		display: none;

	}
}


.about_contents {
	margin: 50px 0;
	padding-bottom: 50px;
	position: relative;
	z-index: 0;
}

.about_contents:after {
	content: "";
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1;
	background: var(--blue01);
	opacity: 0.1;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
	border-radius: 50%;
}

.about_contents .item > img {
	width: 100%;
}

@media (max-width: 767px) {

	.about_contents {
		margin-top: 20px;
	}

	.about_contents:after {
		width: auto;
		height: 100%;
	}
}

.reserve_contents .text {
	text-align: center;
	font-weight: bold;
    font-size: 24px;
}

.reserve_contents .image > img {
	width: 100%;
}

.reserve_contents .box {
	background: #e5f1f8;
	padding: 30px;
	border-radius: 20px;
	margin-bottom: 40px;
}

.reserve_contents .box.address {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	font-size: 20px;
}


.reserve_contents .box.address > .left > span {
	display: inline-block;
	background: var(--blue01);
	color: #fff;
	padding: 0 10px;
	border-radius: 5px;
	font-weight: bold;
}

.reserve_contents .box h3 {
	color: var(--blue01);
	font-weight: 900;
	text-align: center;
	font-size: 25px;
}

@media (max-width: 1199px) {
	.reserve_contents .box.address > .right {
		width: 100%;
		text-align: center;
	}

}

@media (max-width: 767px) {
	.reserve_contents .text {
		font-size: 20px;
		text-align: center;
	}
	.reserve_contents .box.address {
		font-size: 18px;
	}

}

.btn_reserve {
	margin: 30px 0;
}
.btn_reserve > a {
	padding: 20px;
	text-align: center;
	font-size: 25px;
	font-weight: bold;
	color: #fff;
	background: var(--orange01);
	width: 800px;
	max-width: 100%;
	margin: auto;
	display: block;
	border-radius: 10px;
	border-bottom: 8px solid #906010;
	transition: all 0.3s;
}

.btn_reserve > a:hover {
	opacity: 0.5;
}

@media (max-width: 767px) {

	.btn_reserve > a {
		font-size: 20px;
		line-height: 1.2;
	}


}



/* お知らせ */
.top_news {
	display: flex;
	flex-wrap: wrap;
	gap: 0 60px;
	align-items: flex-start;
}

.top_news .post_list {
	flex: 1;
}

.top_news .btn03 {
	width: 100%;
}


.post_list > .post_item {
	border-bottom: 1px solid var(--gray01);
}
.post_list > .post_item:first-child {
	border-top: 1px solid var(--gray01);
}
.post_list > .post_item > a {
	display: grid;
	grid-template-columns: 100px 1fr;
	padding: 15px;
	color: var(--text-color);
}

.post_list > .post_item > a .date {
	color: var(--blue02);
}
.post_list > .post_item > a .title {
  overflow: hidden; 
  text-overflow: ellipsis;
  white-space: nowrap;
}

.post_single .date {
	color: var(--blue02);
}



.btn03 {
    display: flex;
    justify-content: flex-end;
	margin-top: 15px;
}
.btn03 > a {
	color: var(--text-color);
	font-weight: 500;
}
.btn03 > a:after {
    content: "";
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    border-top: 1px solid var(--blue02);
    border-right: 1px solid var(--blue02);
    transform: rotate(45deg);
    transform-origin: top;
    margin-left: 0.5em;
}


.title04 {
	position: relative;
	padding-left: 30px;
	margin-bottom: 40px;
}
.title04:before {
	content: "";
	display: block;
	width: 10px;
	height: 100%;
	background: var(--blue01);
	position: absolute;
	top: 0;
	left: 0;
}
.title04 .en {
	text-align: center;
    font-weight: 500;
    font-size: 60px;
    line-height: 1;
    background: var(--blue01);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: table;
    margin-left: 0;
    margin-right: auto;
    margin-bottom: 10px;
}
.title04 .jp {
	font-size: 24px;
    text-align: left;
    line-height: 1.5;
	font-weight: 500;
}


#top_helpdesk {
	background: var(--blue01);
	padding: 20px 0;
	margin-bottom: 30px;
}

#top_helpdesk .two_in_one {
	display: grid;
	grid-template-columns: 45% 1fr;
	gap: 20px;
	align-items: center;
}
#top_helpdesk .two_in_one > div {
	width: 100%;
}
#top_helpdesk img {
	width: 100%;
}

@media (max-width: 767px) {

	#top_helpdesk .two_in_one {
		grid-template-columns: 100%;
	}

}

