@charset "utf-8";


/* --------------------------------------------------
	Resetting default margin and padding
-------------------------------------------------- */

/* !HTML5 elements
---------------------------------------------------------- */
header,
footer,
nav,
section,
aside,
article {
	display: block;
}

/* !Reseting
---------------------------------------------------------- */
body {
	font-family: "Noto Sans JP", sans-serif;
	color: #231815;
	font-size: 20px;
	line-height: 1.5;
	font-weight: 400;
	-webkit-text-size-adjust: none;
	font-feature-settings: "palt";
}

@media (max-width: 767px) {
	body {
		font-size: min(10px, 2.74vw);
	}
}

body,
div,
pre,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
th,
td,
input,
a,
textarea,
select,
span,
nav,
section,
header {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}

input,
textarea {
	margin: 0;
	font-size: 100%;
	appearance: none;
	-webkit-appearance: none;
	border: none;
	outline: none;
}

label {
	cursor: pointer;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 100%;
}

fieldset,
img {
	border: 0;
}

img {
	vertical-align: top;
	max-width: 100%;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
	font-style: normal;
	font-weight: normal;
}

ol,
ul {
	list-style: none;
}

caption,
th {
	text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
	font-weight: 500;
}

q:after,
q:before {
	content: '';
}

a,
input {
	/* outline: none; */
}

abbr,
acronym {
	border: 0;
}




/* !Clearfix
---------------------------------------------------------- */
.clearfix {
	display: block;
	min-height: 1%;
}

.clearfix:after {
	clear: both;
	content: ".";
	display: block;
	height: 0;
	visibility: hidden;
}

* html .clearfix {
	height: 1%;
	/*\*/
	/*/
	height: auto;
	overflow: hidden;
	/**/
}

/* !Layout
---------------------------------------------------------- */
html {
	overflow-y: scroll;
}

body {}

@media print {

	html,
	html body {
		*zoom: 0.65;
	}
}



/* link
------------------------------------------------ */
a {
	color: #231815;
	text-decoration: none;
	transition: all 0.3s !important;
	-moz-transition: all 0.3s !important;
	/* Firefox */
	-webkit-transition: all 0.3s !important;
	/* Chrome&Safari */
}

a:hover {
	transition: all 0.3s !important;
	-moz-transition: all 0.3s !important;
	/* Firefox */
	-webkit-transition: all 0.3s !important;
	/* Chrome&Safari */
}


.op,
.op a,
.op img,
.op input {
	-webkit-transition: opacity 0.3s ease-out;
	-moz-transition: opacity 0.3s ease-out;
	-ms-transition: opacity 0.3s ease-out;
	transition: opacity 0.3s ease-out;
	-webkit-backface-visibility: hidden;
	-webkit-transform-style: preserve-3d;
}

.op:hover,
.op a:hover,
.op:hover img,
.op:hover input {
	opacity: .5;
	-webkit-opacity: .5;
	-moz-opacity: .5;
	filter: alpha(opacity=50);
	/* IE lt 8 */
	-ms-filter: "alpha(opacity=50)";
	/* IE 8 */
	-webkit-transition: opacity 0.3s ease-out;
	-moz-transition: opacity 0.3s ease-out;
	-ms-transition: opacity 0.3s ease-out;
	transition: opacity 0.3s ease-out;
	-webkit-backface-visibility: hidden;
	-webkit-transform-style: preserve-3d;
}

@media (max-width: 767px) {

	.op:hover,
	.op a:hover,
	.op:hover img,
	.op:hover input {
		opacity: 1;
		-webkit-opacity: 1;
		-moz-opacity: 1;
		filter: alpha(opacity=100);
		/* IE lt 8 */
		-ms-filter: "alpha(opacity=100)";
		/* IE 8 */
	}
}



/* !fs
------------------------------------------------ */
.visible-pc {
	display: block !important;
}

.visible-tab {
	display: none !important;
}

.visible-ts {
	display: none !important;
}

.visible-pc-only {
	display: block !important;
}


@media (max-width: 1024px) {
	.visible-tab {
		display: block !important;
	}

	.visible-pc-only {
		display: none !important;
	}
}

@media (max-width: 767px) {
	.visible-pc {
		display: none !important;
	}

	.visible-ts {
		display: block !important;
	}
}


/* !fonts
------------------------------------------------ */
.fwb {
	font-weight: 700;
}

.fwm {
	font-weight: 500;
}

.vat {
	vertical-align: top !important;
}

.vam {
	vertical-align: middle !important;
}

.tal {
	text-align: left !important;
}

.tac {
	text-align: center !important;
}

.tar {
	text-align: right !important;
}


/* !ff
------------------------------------------------ */



/* !fc
------------------------------------------------ */
.bg_yellow {
	background: #FFF33F;
}

.fc_yellow {
	color: #FFF33F;
}

.fc_blue {
	color: #003D8F;
}

.fc_white {
	color: #fff;
}


/* html
----------------------------------------------- */
html.html-lock {}



/* wrapper
----------------------------------------------- */
#wrapper {
	overflow: hidden;
}

article {
	padding: 90px 0 0;
}

.inner {
	max-width: 1130px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	z-index: 1;
}


@media (max-width: 767px) {
	.inner {
		padding: 0 15px;
	}

	article {
		padding: 45px 0 0;
	}
}




/* header
----------------------------------------------- */
#header {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	background: #fff;
	transition: all 0.3s !important;
	-moz-transition: all 0.3s !important;
	/* Firefox */
	-webkit-transition: all 0.3s !important;
	/* Chrome&Safari */
	z-index: 99;
}

#header .header_in {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 90px;
	padding: 0 40px 0 60px;
}

#header .header_logo {
	flex-shrink: 0;
}

#header .header_logo img {
	width: 280px;
	display: block;
}

#header .header_mess {
	display: flex;
	align-items: center;
	gap: 40px;
}

#header .header_cta {
	position: relative;
	z-index: 99;
}

#header .header_cta a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	padding: 0 20px;
	background: #003D8F;
	width: 240px;
	height: 50px;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.01em;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	-ms-border-radius: 6px;
	-o-border-radius: 6px;
	border-radius: 6px;
}

.html-lock #header .header_cta a {
	background: #fff;
	color: #003D8F;
}

.navbar-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s !important;
	-moz-transition: all 0.3s !important;
	/* Firefox */
	-webkit-transition: all 0.3s !important;
	/* Chrome&Safari */
	z-index: 99;
}

.navbar-toggle:hover {
	opacity: 0.5;
}

.navbar-toggle .toggle_menu {
	width: 40px;
	height: 35px;
	position: relative;
}

.navbar-toggle .toggle_menu span {
	display: inline-block;
	transition: all .4s;
	position: absolute;
	left: 0;
	background-color: #003D8F;
	width: 100%;
	height: 5px;
}

.navbar-toggle.on .toggle_menu span {
	background-color: #fff;
}

.navbar-toggle .toggle_menu span:nth-of-type(1) {
	top: 0;
}

.navbar-toggle .toggle_menu span:nth-of-type(2) {
	top: 15px;
}

.navbar-toggle .toggle_menu span:nth-of-type(3) {
	top: 30px;
}

.navbar-toggle.on .toggle_menu span:nth-of-type(1) {
	top: 0;
	transform: translateY(15px) rotate(-45deg);
}

.navbar-toggle.on .toggle_menu span:nth-of-type(2) {
	opacity: 0;
}

.navbar-toggle.on .toggle_menu span:nth-of-type(3) {
	top: 30px;
	transform: translateY(-15px) rotate(45deg);
}


@media (max-width: 767px) {
	#header .header_in {
		height: 45px;
		padding: 0 15px;
	}

	#header .header_logo img {
		width: 140px;
	}

	#header .header_mess {
		gap: 20px;
	}

	#header .header_cta a {
		padding: 0;
		width: 120px;
		height: 25px;
		font-size: 10px;
		letter-spacing: 0.01em;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		-ms-border-radius: 3px;
		-o-border-radius: 3px;
		border-radius: 3px;
	}

	.navbar-toggle:hover {
		opacity: 1;
	}

	.navbar-toggle .toggle_menu {
		width: 20px;
		height: 18px;
	}

	.navbar-toggle .toggle_menu span {
		height: 3px;
	}

	.navbar-toggle .toggle_menu span:nth-of-type(1) {
		top: 0;
	}

	.navbar-toggle .toggle_menu span:nth-of-type(2) {
		top: 7px;
	}

	.navbar-toggle .toggle_menu span:nth-of-type(3) {
		top: 14px;
	}

	.navbar-toggle.on .toggle_menu span:nth-of-type(1) {
		top: 0;
		transform: translateY(7px) rotate(-45deg);
	}

	.navbar-toggle.on .toggle_menu span:nth-of-type(2) {
		opacity: 0;
	}

	.navbar-toggle.on .toggle_menu span:nth-of-type(3) {
		top: 14px;
		transform: translateY(-7px) rotate(45deg);
	}
}



.navbar-collapse {
	display: none;
	position: fixed;
	right: 0;
	top: 0;
	background: #003D8F;
	padding: 120px 40px 50px;
	z-index: 90;
}

.navbar-collapse .navbar-menu {
	border-top: 2px #fff solid;
	min-width: 450px;
}

.navbar-collapse .navbar-menu .menu_inner {
	border-bottom: 2px #fff solid;
}

.navbar-collapse .navbar-menu .menu_inner li+li {
	background: url("../img/dot_menu.png") 0 0 repeat-x;
}

.navbar-collapse .navbar-menu .menu_inner a {
	display: block;
	color: #fff;
	font-size: 23px;
	letter-spacing: 0.04em;
	padding: 20px 30px 20px 0;
	font-weight: 500;
	position: relative;
}

.navbar-collapse .navbar-menu .menu_inner a:before {
	position: absolute;
	content: "";
	right: 5px;
	top: 50%;
	transform: translateY(-50%);
	background: url("../img/arrow_menu.svg") center center no-repeat;
	background-size: 14px 24px;
	width: 14px;
	height: 100%;
	transition: transform 0.3s ease;
	z-index: 0;
}

.navbar-collapse .navbar-menu .menu_inner a:hover span {
	color: #809ec7;
}

.navbar-collapse .navbar-menu .menu_inner a:hover:before {
	transform: translateY(-50%) rotate(90deg);
}

.navbar-collapse .navbar-menu .menu_txt {
	display: block;
}

.navbar-collapse .navbar-menu .menu_yellow {
	color: #FCC900;
}

.navbar-collapse .navbar-menu .menu_pink {
	color: #F3A8B4;
}

@media (max-width: 767px) {
	.navbar-collapse {
		width: 100%;
		padding: 60px 25px 35px;
		z-index: 90;
	}

	.navbar-collapse .navbar-menu {
		border-top: 1px #fff solid;
		min-width: inherit;
	}

	.navbar-collapse .navbar-menu .menu_inner {
		border-bottom: 1px #fff solid;
	}

	.navbar-collapse .navbar-menu .menu_inner a {
		font-size: 12px;
		padding: 15px 20px 15px 0;
	}

	.navbar-collapse .navbar-menu .menu_inner a:before {
		position: absolute;
		content: "";
		right: 5px;
		top: 50%;
		transform: translateY(-50%);
		background: url("../img/arrow_menu.svg") center center no-repeat;
		background-size: 7px 12px;
		width: 7px;
	}

	.navbar-collapse .navbar-menu .menu_inner a:hover span {
		color: #fff;
	}

	.navbar-collapse .navbar-menu .menu_inner a:hover span.menu_yellow {
		color: #FCC900;
	}

	.navbar-collapse .navbar-menu .menu_inner a:hover span.menu_pink {
		color: #F3A8B4;
	}

	.navbar-collapse .navbar-menu .menu_inner a:hover:before {
		transform: translateY(-50%);
	}
}


/* anchor
----------------------------------------------- */
.anchor {
	position: absolute;
	left: 0;
	top: 0;
	padding-top: 90px;
	margin-top: -90px;
	z-index: 0;
}

@media (max-width: 1024px) {
	.anchor {
		padding-top: 45px;
		margin-top: -45px;
	}
}



/* footer
----------------------------------------------- */
#footer {
	background: #fff;
}

#footer .footer_in {
	max-width: 1050px;
	margin: 0 auto;
	padding: 80px 30px 40px;
}

#footer .footer_logo {
	display: flex;
	justify-content: center;
	margin: 0 0 60px;
}

#footer .footer_logo img {
	width: 490px;
}

#footer .footer_box {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 0 30px;
}

#footer .footer_mess {
	font-weight: 700;
}

#footer .footer_mess .mess_cap {
	font-size: 22px;
	letter-spacing: 0.01em;
}

#footer .footer_mess .mess_name {
	font-size: 34px;
	letter-spacing: 0.01em;
	line-height: 1.2;
	font-weight: 700;
}

#footer .footer_mess .mess_addr {
	font-size: 18px;
	letter-spacing: 0.02em;
	margin: 3px 0 0;
}

#footer .footer_mess .mess_tf {
	display: flex;
	flex-wrap: wrap;
	gap: 0 30px;
	font-size: 30px;
	letter-spacing: 0.01em;
	margin: 10px 0 0;
	font-weight: 700;
}

#footer .footer_mess .mess_time {
	font-size: 18px;
	letter-spacing: 0.02em;
	line-height: 1.3;
}

#footer .footer_cta {
	border: 1px #003D8F solid;
	padding: 15px 50px 20px;
	color: #003D8F;
	flex-shrink: 0;
	font-weight: 700;
}

#footer .footer_cta .cta_name {
	font-size: 20px;
	line-height: 1.4;
}

#footer .footer_cta .cta_tel {
	display: flex;
	justify-content: flex-start;
	margin: 10px 0 0;
}

#footer .footer_cta .cta_tel a {
	font-size: 30px;
	color: #003D8F;
	font-weight: 700;
	line-height: 1.2;
}

#footer .footer_cta .cta_time {
	font-size: 18px;
	letter-spacing: 0.02em;
}

#footer .copyright {
	text-align: center;
	background: #003D8F;
	padding: 15px 10px;
	color: #fff;
	font-size: 12px;
	line-height: 1.2;
	font-weight: 500;
}

@media (max-width: 1024px) {
	#footer .footer_cta {
		padding: 15px 20px 20px;
	}
}

@media (max-width: 767px) {
	#footer .footer_in {
		padding: 35px 20px 20px;
	}

	#footer .footer_logo {
		margin: 0 0 20px;
	}

	#footer .footer_logo img {
		width: 245px;
	}

	#footer .footer_box {
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}

	#footer .footer_mess .mess_cap {
		font-size: 11px;
		letter-spacing: 0.01em;
	}

	#footer .footer_mess .mess_name {
		font-size: 17px;
		letter-spacing: 0.01em;
	}

	#footer .footer_mess .mess_addr {
		font-size: 10px;
		letter-spacing: 0.02em;
		margin: 3px 0 0;
	}

	#footer .footer_mess .mess_tf {
		gap: 0 15px;
		font-size: 15px;
		letter-spacing: 0.01em;
		margin: 10px 0 0;
	}

	#footer .footer_mess .mess_time {
		font-size: 10px;
		letter-spacing: 0.02em;
	}

	#footer .footer_cta {
		padding: 10px 25px;
	}

	#footer .footer_cta .cta_name {
		font-size: 10px;
	}

	#footer .footer_cta .cta_tel {
		margin: 5px 0 0;
	}

	#footer .footer_cta .cta_tel a {
		font-size: 15px;
	}

	#footer .footer_cta .cta_time {
		font-size: 9px;
		letter-spacing: 0.02em;
	}

	#footer .copyright {
		padding: 8px 5px;
		font-size: 10px;
	}
}


.pagetop {
	position: fixed;
	right: 58px;
	bottom: 78px;
	z-index: 9;
}

.pagetop a {
	display: block;
	width: 60px;
	height: 60px;
	background-image: url("../img/pagetop.svg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 60px 60px;
}

.pagetop a:hover {
	background-image: url("../img/pagetop_on.svg");
}

@media (max-width: 767px) {
	.pagetop {
		right: 12px;
		bottom: 39px;
	}

	.pagetop a {
		width: 30px;
		height: 30px;
		background-image: url("../img/pagetop.svg");
		background-size: 30px 30px;
	}

	.pagetop a:hover {
		background-image: url("../img/pagetop.svg");
	}
}



/* main
----------------------------------------------- */
.main {
	position: relative;
}

.main .main_img img {
	width: 100%;
}

.main .main_cont {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	z-index: 1;
}

.main .main_cont img {
	width: min(400px, 29.28vw);
}

@media (max-width: 1024px) {
	.main .main_cont {
		display: none;
	}
}




/* contents
----------------------------------------------- */
.contents {
	background: #003D8F;
}

.contents_filter {
	padding: 0 40px;
	position: relative;
}

.filter-container {
	max-width: 1246px;
	margin: 0 auto;
	padding: 45px 0 0;
}

@media (max-width: 767px) {
	.contents_filter {
		padding: 0 7px;
	}

	.filter-container {
		padding: 35px 0 0;
	}
}



/* common
----------------------------------------------- */
.com_link {
	max-width: 946px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 40px 46px;
}

.com_link li {
	width: calc((100% - 46px)/2);
}

.com_link li a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 60px;
	border: 1px #003d8f solid;
	background: #fff;
	padding: 5px 40px 5px 10px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	-ms-border-radius: 6px;
	-o-border-radius: 6px;
	border-radius: 6px;
	-webkit-box-shadow: 0 6px 0 #003d8f;
	-moz-box-shadow: 0 6px 0 #003d8f;
	-ms-box-shadow: 0 6px 0 #003d8f;
	-o-box-shadow: 0 6px 0 #003d8f;
	box-shadow: 0 6px 0 #003d8f;
	position: relative;
}

.com_link li a:before {
	position: absolute;
	content: "";
	background: url("../img/arrow_link.svg") center center no-repeat;
	background-size: 16px auto;
	width: 16px;
	height: 100%;
	right: 20px;
	top: 0;
	z-index: 0;
}

.com_link li a:hover {
	background: #d9e2ee;
}

.com_link li .link_txt {
	color: #003D8F;
	font-size: 24px;
	line-height: 1.2;
	letter-spacing: 0.03em;
	font-weight: 700;
}

@media (max-width: 1024px) {
	.com_link {
		gap: 20px;
	}

	.com_link li {
		width: calc((100% - 20px)/2);
	}

	.com_link li .link_txt {
		font-size: 20px;
	}
}

@media (max-width: 767px) {
	.com_link {
		max-width: 225px;
		flex-direction: column;
		gap: 20px;
	}

	.com_link li {
		width: 100%;
	}

	.com_link li a {
		min-height: 30px;
		padding: 5px 20px 5px 10px;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		-ms-border-radius: 3px;
		-o-border-radius: 3px;
		border-radius: 3px;
		-webkit-box-shadow: 0 3px 0 #003d8f;
		-moz-box-shadow: 0 3px 0 #003d8f;
		-ms-box-shadow: 0 3px 0 #003d8f;
		-o-box-shadow: 0 3px 0 #003d8f;
		box-shadow: 0 3px 0 #003d8f;
	}

	.com_link li a:before {
		background: url("../img/arrow_link.svg") center center no-repeat;
		background-size: 8px auto;
		width: 8px;
		height: 100%;
		right: 10px;
	}

	.com_link li a:hover {
		background: #fff;
	}

	.com_link li .link_txt {
		font-size: min(12px, 3.2vw);
		letter-spacing: 0.03em;
	}
}

.com_btn {
	display: flex;
	justify-content: center;
	gap: 0 46px;
}

.com_btn li {
	width: calc((100% - 46px)/2);
}

.com_btn li a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 90px;
	background: #f08d1d;
	padding: 5px 70px 5px 50px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	-ms-border-radius: 50px;
	-o-border-radius: 50px;
	border-radius: 50px;
	-webkit-box-shadow: 0 8px 0 #d35315;
	-moz-box-shadow: 0 8px 0 #d35315;
	-ms-box-shadow: 0 8px 0 #d35315;
	-o-box-shadow: 0 8px 0 #d35315;
	box-shadow: 0 8px 0 #d35315;
	position: relative;
}

.com_btn li a:before {
	position: absolute;
	content: "";
	background-image: url("../img/arrow_btn.svg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 42px 42px;
	width: 42px;
	height: 100%;
	right: 28px;
	top: 0;
	z-index: 0;
}

.com_btn li a:hover {
	background: #e16f03;
}

.com_btn li a:hover:before {
	background-image: url("../img/arrow_btn_on.svg");
}

.com_btn li .btn_txt {
	color: #fff;
	font-size: 30px;
	line-height: 1.2;
	letter-spacing: 0.03em;
	font-weight: 700;
}

@media (max-width: 1024px) {
	.com_btn {
		gap: 0 20px;
	}

	.com_btn li {
		width: calc((100% - 20px)/2);
	}

	.com_btn li .btn_txt {
		font-size: 24px;
	}
}

@media (max-width: 767px) {
	.com_btn {
		flex-direction: column;
		gap: 20px;
		padding: 0 30px;
	}

	.com_btn li {
		width: 100%;
	}

	.com_btn li a {
		min-height: 45px;
		padding: 5px 36px 5px 21px;
		-webkit-box-shadow: 0 4px 0 #d35315;
		-moz-box-shadow: 0 4px 0 #d35315;
		-ms-box-shadow: 0 4px 0 #d35315;
		-o-box-shadow: 0 4px 0 #d35315;
		box-shadow: 0 4px 0 #d35315;
	}

	.com_btn li a:before {
		background-size: 21px 21px;
		width: 21px;
		right: 14px;
	}

	.com_btn li a:hover {
		background: #f08d1d;
	}

	.com_btn li a:hover:before {
		background-image: url("../img/arrow_btn.svg");
	}

	.com_btn li .btn_txt {
		font-size: min(15px, 4vw);
		letter-spacing: 0.03em;
	}
}




@media (max-width: 1024px) {}

@media (max-width: 767px) {}





/* .filter
----------------------------------------------- */
.ktk_filter {
	display: flex;
	align-items: stretch;
	gap: 18px;
}

.ktk_filter li {
	width: calc((100% - 18px)/2);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: #4d77b1;
	padding: 25px 10px 10px;
	-webkit-border-radius: 15px 15px 0 0;
	-moz-border-radius: 15px 15px 0 0;
	-ms-border-radius: 15px 15px 0 0;
	-o-border-radius: 15px 15px 0 0;
	border-radius: 15px 15px 0 0;
	transition: all 0.3s !important;
	-moz-transition: all 0.3s !important;
	/* Firefox */
	-webkit-transition: all 0.3s !important;
	/* Chrome&Safari */
	position: relative;
}

.ktk_filter li img {
	width: 524px;
}

.ktk_filter li.ktk_join.is-active {
	background: #FCC900;
}

.ktk_filter li.ktk_join:hover {
	background: #fee480;
}

.ktk_filter li.ktk_join.is-active:hover {
	background: #FCC900;
}

.ktk_filter li.ktk_work.is-active {
	background: #F3A8B4;
}

.ktk_filter li.ktk_work:hover {
	background: #f9d3da;
}

.ktk_filter li.ktk_work.is-active:hover {
	background: #F3A8B4;
}

@media (max-width: 767px) {
	.ktk_filter {
		gap: 6px;
	}

	.ktk_filter li {
		width: calc((100% - 6px)/2);
		padding: 12px 10px 10px;
		-webkit-border-radius: 6px 6px 0 0;
		-moz-border-radius: 6px 6px 0 0;
		-ms-border-radius: 6px 6px 0 0;
		-o-border-radius: 6px 6px 0 0;
		border-radius: 6px 6px 0 0;
	}

	.ktk_filter li img {
		width: 304px;
	}

	.ktk_filter li.ktk_join:hover {
		background: #FCC900;
	}

	.ktk_filter li.ktk_join.is-active:hover {
		background: #FCC900;
	}

	.ktk_filter li.ktk_work:hover {
		background: #F3A8B4;
	}

	.ktk_filter li.ktk_work.is-active:hover {
		background: #F3A8B4;
	}
}


.ktk_category {
	background: #fff;
}

.ktk_category .category_in {
	display: none;
	border-top-style: solid;
	border-top-width: 12px;
	padding: 90px 0 0;
}

.ktk_category .category_in.is-show {
	display: block;
}

.ktk_category .category_join {
	border-top-color: #FCC900;
}

.ktk_category .category_work {
	border-top-color: #F3A8B4;
}

@media (max-width: 767px) {
	.ktk_category .category_in {
		border-top-width: 6px;
		padding: 40px 0 0;
	}
}



/* H
----------------------------------------------- */
.hdl {
	display: flex;
	justify-content: center;
	position: relative;
}

.hdl .hdl_txt {
	color: #003D8F;
	text-align: center;
	font-size: 48px;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.29;
	position: relative;
	z-index: 1;
}

.hdl .hdl_txt .txt_lar {
	font-size: 66px;
	line-height: 1;
}

.hdl:before {
	position: absolute;
	content: "";
	width: 100%;
	height: 12px;
	left: 0;
	bottom: 0;
	z-index: 0;
}

.category_join .hdl:before {
	background: #fcc900;
}

.category_work .hdl:before {
	background: #f3a8b4;
}

@media (max-width: 767px) {
	.hdl .hdl_txt {
		font-size: min(24px, 6.4vw);
		letter-spacing: 0.04em;
	}

	.hdl .hdl_txt .txt_lar {
		font-size: min(33px, 8.8vw);
	}

	.hdl:before {
		height: 6px;
	}
}

.hdm {
	display: flex;
	justify-content: center;
	position: relative;
}

.hdm .hdm_txt {
	color: #003D8F;
	text-align: center;
	font-size: 44px;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.29;
	position: relative;
	z-index: 1;
}

.hdm:before {
	position: absolute;
	content: "";
	width: 100%;
	height: 12px;
	background: #8fd3f5;
	left: 0;
	bottom: 0;
	z-index: 0;
}

@media (max-width: 767px) {
	.hdm .hdm_txt {
		font-size: min(22px, 5.87vw);
		letter-spacing: 0.04em;
	}

	.hdm:before {
		height: 6px;
	}
}




/* category
----------------------------------------------- */
.category_btm {
	text-align: center;
}

.category_mid {
	text-align: center;
}

.category_det .hdl {
	margin: 0 0 40px;
}

.category_det .det_txt {
	text-align: center;
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 0.01em;
	line-height: 1.91;
}

.category_det .det_cap {
	max-width: 690px;
	margin: 40px auto 0;
	border: 1px #003D8F solid;
	color: #003D8F;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 0.03em;
	text-align: center;
	padding: 0 10px;
}

.category_det .det_cap .cap_lar {
	font-size: 28px;
	font-weight: 700;
}

.category_det .det_mv {
	max-width: 690px;
	margin: 90px auto 0;
}

.mv_inner a.fancybox {
	position: relative;
	display: block;
}
.mv_inner a.fancybox::before {
	content: '';
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 102px;
	height: 102px;
	background: url('../img/icn-play.png') no-repeat center center;
	background-size: 100% 100%;
}
.mv_inner a.fancybox img {
	filter: brightness(0.4);
}

@media (max-width: 767px) {
	.category_det .hdl {
		margin: 0 0 20px;
	}

	.category_det .det_txt {
		font-size: min(12px, 3.2vw);
		letter-spacing: 0.01em;
	}

	.category_det .det_cap {
		margin: 20px auto 0;
		font-size: 10px;
		letter-spacing: 0.03em;
	}

	.category_det .det_cap .cap_lar {
		font-size: min(14px, 3.74vw);
	}

	.category_det .det_mv {
		margin: 35px auto 0;
	}
}

.category_step {
	padding: 80px 0;
	position: relative;
}

.category_step .hdl {
	margin: 0 0 65px;
}

.category_step .hd_ico {
	position: absolute;
	right: 0;
	bottom: 0;
}

.join_step .hd_ico {
	width: 144px;
}

.work_step .hd_ico {
	width: 208px;
}

.step_box {
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
	gap: 50px 46px;
}

.step_box li {
	width: calc((100% - 46px)/2);
}

.step_box .box_tit {
	min-height: 80px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 5px 10px 5px 100px;
	position: relative;
	font-weight: 700;
	color: #003D8F;
	-webkit-border-radius: 10px 10px 0 0;
	-moz-border-radius: 10px 10px 0 0;
	-ms-border-radius: 10px 10px 0 0;
	-o-border-radius: 10px 10px 0 0;
	border-radius: 10px 10px 0 0;
}

.step_box .box_tit .tit_txt {
	font-size: 24px;
	line-height: 1.3;
	letter-spacing: 0.03em;
}

.step_box .box_tit .tit_mid {
	font-size: 26px;
	line-height: 1.3;
	letter-spacing: 0.03em;
}

.step_box .box_tit .tit_lar {
	font-size: 40px;
	line-height: 1.2;
	letter-spacing: 0.03em;
}

.step_box .box_tit .tit_num {
	position: absolute;
	left: 0;
	top: -20px;
	width: 100px;
	padding: 0 0 0 10px;
	text-align: center;
	z-index: 1;
}

.step_box .box_tit .tit_num img {
	width: 52px;
}

.step_box .box_inner {
	background: #fff;
	border-style: solid;
	border-width: 4px;
	border-top: none;
	padding: 20px 25px;
	-webkit-border-radius: 0 0 10px 10px;
	-moz-border-radius: 0 0 10px 10px;
	-ms-border-radius: 0 0 10px 10px;
	-o-border-radius: 0 0 10px 10px;
	border-radius: 0 0 10px 10px;
}

.step_box .box_txt {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.6;
	font-feature-settings: normal;
}

.step_box .box_note {
	font-size: 16px;
	display: block;
}

.step_box.step_yellow .box_tit {
	background: #fcc900;
}

.step_box.step_yellow .box_inner {
	border-color: #fcc900;
}

.step_box.step_pink .box_tit {
	background: #f3a8b4;
}

.step_box.step_pink .box_inner {
	border-color: #f3a8b4;
}

.step_box.step_blue .box_tit {
	background: #8fd3f5;
}

.step_box.step_blue .box_inner {
	border-color: #8fd3f5;
}

.join_step_link {
	margin-top: 60px;
}

.join_step_btn {
	margin-top: 75px;
}

.work_step_btn {
	margin-top: 75px;
}

@media (max-width: 1024px) {
	.step_box {
		gap: 50px 20px;
	}

	.step_box li {
		width: calc((100% - 20px)/2);
	}
}

@media (max-width: 767px) {
	.category_step {
		padding: 40px 0;
	}

	.category_step .hdl {
		margin: 0 0 30px;
	}

	.join_step .hd_ico {
		width: min(72px, 19.2vw);
	}

	.work_step .hd_ico {
		width: min(104px, 27.74vw);
	}

	.step_box {
		flex-direction: column;
		gap: 20px;
		padding: 0 30px;
	}

	.step_box li {
		width: 100%;
	}

	.step_box .box_tit {
		min-height: 40px;
		padding: 5px 10px 5px 50px;
		-webkit-border-radius: 5px 5px 0 0;
		-moz-border-radius: 5px 5px 0 0;
		-ms-border-radius: 5px 5px 0 0;
		-o-border-radius: 5px 5px 0 0;
		border-radius: 5px 5px 0 0;
	}

	.step_box .box_tit .tit_txt {
		font-size: min(12px, 3.2vw);
		letter-spacing: 0.03em;
	}

	.step_box .box_tit .tit_mid {
		font-size: min(13px, 3.47vw);
		letter-spacing: 0.03em;
	}

	.step_box .box_tit .tit_lar {
		font-size: min(20px, 5.34vw);
		letter-spacing: 0.03em;
	}

	.step_box .box_tit .tit_num {
		top: -10px;
		width: 50px;
		padding: 0 0 0 5px;
	}

	.step_box .box_tit .tit_num img {
		width: 26px;
	}

	.step_box .box_inner {
		border-width: 2px;
		padding: 10px 12px;
		-webkit-border-radius: 0 0 5px 5px;
		-moz-border-radius: 0 0 5px 5px;
		-ms-border-radius: 0 0 5px 5px;
		-o-border-radius: 0 0 5px 5px;
		border-radius: 0 0 5px 5px;
	}

	.step_box .box_txt {
		font-size: min(10px, 2.67vw);
	}

	.step_box .box_note {
		font-size: 8px;
	}

	.join_step_link {
		margin-top: 30px;
	}

	.join_step_btn {
		margin-top: 40px;
	}

	.work_step_btn {
		margin-top: 40px;
	}
}

.join_single {
	background: #feefb2;
	padding: 50px 0 65px;
}

.join_single .single_box {
	background: #fff;
	padding: 30px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	border-radius: 10px;
}

.join_single .single_inner {
	position: relative;
	padding: 0 0 0 215px;
}

.join_single .single_mess {
	padding: 15px 192px 0 0;
}

.join_single .single_mess .mess_txt {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0.025em;
}

.join_single .single_tit {
	width: 176px;
	height: 176px;
	position: absolute;
	left: 0;
	top: 0;
	border: 1px #003D8F solid;
	color: #003D8F;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.54;
	letter-spacing: 0.01em;
}

.join_single .single_type {
	margin: 30px 0 0;
	display: flex;
	align-items: stretch;
	gap: 0 15px;
	position: relative;
}

.join_single .single_type .type_tit {
	font-size: 18px;
	display: flex;
	align-items: center;
	color: #003D8F;
	border-right: 1px #003D8F solid;
	padding: 0 20px 0 0;
	font-weight: 700;
	flex-shrink: 0;
}

.join_single .single_type .type_img {
	position: absolute;
	display: block;
	right: 0;
	bottom: calc(100% + 20px);
	width: 192px;
	z-index: 1;
}

.join_single .single_type .type_in {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.625;
}

.join_single .single_link {
	margin-top: 60px;
}

@media (max-width: 767px) {
	.join_single {
		padding: 25px 0 35px;
	}

	.join_single .single_box {
		padding: 15px 15px 10px;
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		-ms-border-radius: 5px;
		-o-border-radius: 5px;
		border-radius: 5px;
	}

	.join_single .single_inner {
		padding: 0;
	}

	.join_single .single_mess {
		padding: 0;
		display: flex;
		align-items: center;
		gap: 13px;
	}

	.join_single .single_mess .mess_txt {
		font-size: 10px;
		line-height: 1.6;
		letter-spacing: 0.025em;
	}

	.join_single .single_tit {
		width: 88px;
		height: 88px;
		position: relative;
		left: auto;
		top: auto;
		font-size: 11px;
		flex-shrink: 0;
	}

	.join_single .single_type {
		margin: 10px 0 0;
		display: block;
	}

	.join_single .single_type .type_tit {
		font-size: 10px;
		border-right: none;
		border-bottom: 1px #003D8F solid;
		padding: 0;
		margin: 0 0 5px;
		position: relative;
	}

	.join_single .single_type .type_img {
		right: 0;
		bottom: 0;
		width: 70px;
	}

	.join_single .single_type .type_in {
		font-size: 10px;
	}

	.join_single .single_link {
		margin-top: 30px;
	}
}

.join_points {
	padding: 110px 0 80px;
	position: relative;
}

.join_points .hdl {
	margin: 0 0 75px;
}

.join_points .point_date {
	max-width: 700px;
	margin: 0 auto 50px;
	border: 3px #ee808a solid;
	padding: 5px 10px;
	text-align: center;
	color: #EE808A;
	font-size: 34px;
	line-height: 1.2;
	letter-spacing: 0.06em;
	font-weight: 700;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-ms-border-radius: 30px;
	-o-border-radius: 30px;
	border-radius: 30px;
}

.join_points .point_elec .hdm {
	padding: 0 190px;
	margin: 0 0 65px;
}

.join_points .point_elec .elec_img01 {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 184px;
	display: block;
	z-index: 0;
}

.join_points .point_elec .elec_img02 {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 184px;
	display: block;
	z-index: 0;
}

.join_points .point_note {
	margin: 45px 0 0;
}

.join_points .point_note li {
	font-size: 14px;
	line-height: 1.43;
	text-indent: -1.5em;
	padding-left: 1.5em;
	font-weight: 500;
}

@media (max-width: 767px) {
	.join_points {
		padding: 45px 0 40px;
	}

	.join_points .hdl {
		margin: 0 0 35px;
	}

	.join_points .point_date {
		margin: 0 auto 15px;
		border: 2px #ee808a solid;
		padding: 4px 10px;
		font-size: min(17px, 4.54vw);
		letter-spacing: 0.06em;
	}

	.join_points .point_elec .hdm {
		padding: 0 80px;
		margin: 0 0 30px;
	}

	.join_points .point_elec .elec_img01 {
		width: 92px;
	}

	.join_points .point_elec .elec_img02 {
		width: 92px;
	}

	.join_points .point_note {
		margin: 20px 0 0;
		padding: 0 30px;
	}

	.join_points .point_note li {
		font-size: 10px;
	}
}

.join_arrow {
	display: flex;
	justify-content: center;
	margin: 55px 0;
	position: relative;
}

.join_arrow .arrow_in {
	background: #ee808a;
	width: 58px;
	height: 28px;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
}

@media (max-width: 767px) {
	.join_arrow {
		margin: 16px 0;
	}

	.join_arrow .arrow_in {
		width: 29px;
		height: 14px;
	}
}

.join_points .point_renewal .hdm {
	margin: 0 0 60px;
}

.join_points .point_renewal .renewal_box {
	display: flex;
	flex-direction: column;
	gap: 30px 0;
}

.join_points .point_renewal .renewal_box .box_inner {
	background: #ee808a;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 3px 0;
	min-height: 105px;
	padding: 5px 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	border-radius: 10px;
}

.join_points .point_renewal .renewal_box .box_tit {
	color: #FFF33F;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.26;
	text-align: center;
	letter-spacing: 0.05em;
}

.join_points .point_renewal .renewal_box .box_dot li {
	font-size: 18px;
	line-height: 1.33;
	letter-spacing: 0.03em;
	color: #fff;
	font-weight: 500;
}

.join_points .point_renewal .renewal_box .box_note {
	color: #fff;
	text-indent: -1em;
	padding-left: 1em;
	font-size: 14px;
	font-weight: 500;
}

.join_points .point_renewal .renewal_old {
	margin: 35px 0 0;
	border: 1px #231815 solid;
	padding: 10px 20px 15px;
}

.join_points .point_renewal .renewal_old .old_tit {
	text-align: center;
	font-weight: 700;
	font-size: 24px;
	letter-spacing: 0.05em;
}

.join_points .point_renewal .renewal_old .old_txt {
	font-size: 18px;
	font-weight: 500;
	text-align: center;
	letter-spacing: 0.03em;
}

@media (max-width: 767px) {
	.join_points .point_renewal .hdm {
		margin: 0 0 30px;
	}

	.join_points .point_renewal .renewal_box {
		gap: 15px 0;
	}

	.join_points .point_renewal .renewal_box .box_inner {
		min-height: 70px;
		padding: 5px 15px;
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		-ms-border-radius: 5px;
		-o-border-radius: 5px;
		border-radius: 5px;
	}

	.join_points .point_renewal .renewal_box .box_tit {
		font-size: min(15px, 4vw);
		line-height: 1.26;
		letter-spacing: 0.05em;
	}

	.join_points .point_renewal .renewal_box .box_dot li {
		font-size: 10px;
		letter-spacing: 0.03em;
	}

	.join_points .point_renewal .renewal_box .box_note {
		font-size: 10px;
	}

	.join_points .point_renewal .renewal_old {
		margin: 18px 0 0;
		padding: 5px 20px 10px;
	}

	.join_points .point_renewal .renewal_old .old_tit {
		font-size: 12px;
		letter-spacing: 0.05em;
	}

	.join_points .point_renewal .renewal_old .old_txt {
		font-size: 10px;
		letter-spacing: 0.03em;
	}
}

.join_points .point_mv {
	max-width: 690px;
	margin: 80px auto 0;
}

.join_points .point_link {
	margin-top: 70px;
}

.join_points .point_btn {
	margin-top: 80px;
}

@media (max-width: 767px) {
	.join_points .point_mv {
		margin: 35px auto 0;
	}

	.join_points .point_link {
		margin-top: 25px;
	}

	.join_points .point_btn {
		margin-top: 40px;
	}
}

.work_checkout {
	background: #fbe5e9;
	padding: 50px 0 70px;
}

.work_checkout .checkout_inner {
	background: #fff;
	padding: 55px 20px 50px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	border-radius: 10px;
}

.work_checkout .checkout_hd {
	text-align: center;
	font-size: 40px;
	font-weight: 700;
	color: #003D8F;
	line-height: 1.3;
	letter-spacing: 0.04em;
	margin: 0 0 50px;
}

.work_checkout .checkout_box {
	max-width: 900px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	gap: 0 60px;
}

.work_checkout .checkout_box li {
	width: calc((100% - 60px)/2);
}

.work_checkout .checkout_box .box_img {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin: 0 -15px 30px;
}

.work_checkout .checkout_box .box_img01 img {
	width: 400px;
}

.work_checkout .checkout_box .box_img02 img {
	width: 454px;
}

.work_checkout .checkout_box .box_tit {
	background: #d9e2ee;
	padding: 5px 10px;
	text-align: center;
	font-size: 24px;
	line-height: 1.3;
	font-weight: 700;
	color: #003D8F;
	margin: 0 0 10px;
}

.work_checkout .checkout_box .box_txt {
	font-size: 20px;
	line-height: 1.6;
	font-weight: 500;
	letter-spacing: 0.025em;
}

.work_checkout .checkout_link {
	margin-top: 60px;
}

@media (max-width: 1024px) {
	.work_checkout .checkout_box {
		gap: 0 20px;
	}

	.work_checkout .checkout_box li {
		width: calc((100% - 20px)/2);
	}

	.work_checkout .checkout_box .box_img {
		margin: 0 0 30px;
	}
}

@media (max-width: 767px) {
	.work_checkout {
		padding: 25px 0 35px;
	}

	.work_checkout .checkout_inner {
		padding: 30px 20px 25px;
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		-ms-border-radius: 5px;
		-o-border-radius: 5px;
		border-radius: 5px;
	}

	.work_checkout .checkout_hd {
		font-size: min(20px, 5.34vw);
		letter-spacing: 0.04em;
		margin: 0 0 25px;
	}

	.work_checkout .checkout_box {
		max-width: 210px;
		flex-direction: column;
		gap: 25px 0;
	}

	.work_checkout .checkout_box li {
		width: 100%;
	}

	.work_checkout .checkout_box .box_img {
		margin: 0 0 15px;
	}

	.work_checkout .checkout_box .box_tit {
		font-size: 12px;
		margin: 0 0 5px;
	}

	.work_checkout .checkout_box .box_txt {
		font-size: 10px;
		letter-spacing: 0.025em;
	}

	.work_checkout .checkout_link {
		margin-top: 30px;
	}

	.work_checkout .checkout_box .box_img01 {
		padding: 0 5px;
	}

	.work_checkout .checkout_box .box_img02 {
		margin-left: -10px;
		margin-right: -10px;
	}
}

.work_benefit {
	padding: 110px 0 80px;
	position: relative;
}

.work_benefit .hdl {
	margin: 0 0 40px;
}

.work_benefit .benefit_det {
	text-align: center;
	font-size: 24px;
	line-height: 2;
	letter-spacing: 0.01em;
	font-weight: 700;
}

.work_benefit .benefit_cap {
	max-width: 690px;
	margin: 35px auto 0;
	border: 1px #003D8F solid;
	color: #003D8F;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 0.03em;
	text-align: center;
	padding: 0 10px;
}

.work_benefit .benefit_cap .cap_lar {
	font-size: 28px;
	font-weight: 700;
}

.work_benefit .benefit_sum {
	max-width: 790px;
	margin: 85px auto 0;
}

.work_benefit .benefit_sum .sum_cap {
	font-size: 22px;
	font-weight: 700;
	color: #003D8F;
	letter-spacing: 0.01em;
	margin: 0 0 10px;
	text-indent: -1em;
	padding-left: 1em;
}

.work_benefit .benefit_sum .sum_table {
	width: 100%;
}

.work_benefit .benefit_sum .sum_table th {
	width: 46%;
}

.work_benefit .benefit_sum .sum_table th+th {
	width: 54%;
}

.work_benefit .benefit_sum .sum_table th,
.work_benefit .benefit_sum .sum_table td {
	vertical-align: middle;
	text-align: center;
	border: 4px #fff solid;
	font-weight: 500;
}

.work_benefit .benefit_sum .sum_table th {
	background: #f3a8b4;
	color: #fff;
	font-size: 20px;
	letter-spacing: 0.025em;
}

.work_benefit .benefit_sum .sum_table td {
	background: #fdf1f3;
	padding: 20px 10px;
	font-size: 32px;
	line-height: 1;
	letter-spacing: 0.025em;
	white-space: nowrap;
}

.work_benefit .benefit_sum .sum_table tr:nth-child(even) td {
	background: #fef8f9;
}

.work_benefit .benefit_sum .sum_year {
	width: 6.5em;
	text-align: right;
	display: inline-block;
}

.work_benefit .benefit_sum .sum_price {
	width: 6em;
	text-align: right;
	display: inline-block;
}

.work_benefit .benefit_sum .sum_note {
	margin: 40px 0 0;
}

.work_benefit .benefit_sum .sum_note li {
	font-size: 14px;
	line-height: 1.43;
	text-indent: -1em;
	padding-left: 1em;
	letter-spacing: -0.02em;
	font-weight: 500;
}

.work_benefit .benefit_link {
	margin-top: 55px;
}

.work_benefit .benefit_btn {
	margin-top: 80px;
}


@media (max-width: 767px) {
	.work_benefit {
		padding: 40px 0;
	}

	.work_benefit .hdl {
		margin: 0 0 20px;
	}

	.work_benefit .benefit_det {
		font-size: 12px;
		letter-spacing: 0.01em;
	}

	.work_benefit .benefit_cap {
		margin: 20px auto 0;
		font-size: 10px;
		letter-spacing: 0.03em;
	}

	.work_benefit .benefit_cap .cap_lar {
		font-size: min(14px, 3.74vw);
	}

	.work_benefit .benefit_sum {
		margin: 35px auto 0;
	}

	.work_benefit .benefit_sum .sum_cap {
		font-size: 11px;
		letter-spacing: 0.01em;
		margin: 0 0 5px;
	}

	.work_benefit .benefit_sum .sum_table th,
	.work_benefit .benefit_sum .sum_table td {
		border: 2px #fff solid;
	}

	.work_benefit .benefit_sum .sum_table th {
		font-size: 10px;
		letter-spacing: 0.025em;
		padding: 1px 0 2px;
	}

	.work_benefit .benefit_sum .sum_table td {
		padding: 10px 5px;
		font-size: min(16px, 4.27vw);
		letter-spacing: 0.025em;
	}

	.work_benefit .benefit_sum .sum_note {
		margin: 20px 0 0;
	}

	.work_benefit .benefit_sum .sum_note li {
		font-size: 10px;
	}

	.work_benefit .benefit_link {
		margin-top: 30px;
	}

	.work_benefit .benefit_btn {
		margin-top: 40px;
	}
}


/* pop
----------------------------------------------- */
.mv_pop {
	display: none;
}

.mv_pop img {
	max-width: 90vw;
}

.mv_pop iframe {
	width: 950px;
	max-width: 90vw;
	height: 540px;
}

.fancybox-close {
	background: url("../img/close.png") center center no-repeat;
	background-size: 38px 38px;
	width: 38px;
	height: 38px;
	right: 0;
	top: auto;
	bottom: calc(100% + 15px);
}

@media (max-width: 767px) {
	.fancybox-close {
		background: url("../img/close.png") center center no-repeat;
		background-size: 19px 19px;
		width: 19px;
		height: 19px;
		bottom: calc(100% + 10px);
	}

	.mv_pop iframe {
		height: 300px;
	}
}






/* faq
----------------------------------------------- */
.faq {
	padding: 100px 30px 140px;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
}

.faq .faq_hd {
	color: #fff;
	padding: 0 0 10px;
	font-size: 44px;
	letter-spacing: 0.04em;
	text-align: center;
	font-weight: 700;
	border-bottom: 6px #fff solid;
	margin: 0 0 70px;
	line-height: 1.4;
}

.faq .faq_box {
	display: flex;
	align-items: stretch;
	justify-content: center;
	gap: 0 45px;
	width: 785px;
	max-width: 100%;
}

.faq .faq_box .faq_img {
	width: 289px;
	flex-shrink: 0;
}

.faq .faq_box .faq_cont {
	display: flex;
	flex-direction: column;
	gap: 10px;
	justify-content: space-between;
	width: 450px;
}

.faq .faq_box .faq_down {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.faq .faq_box .faq_down a {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	height: 96px;
	letter-spacing: 0.03em;
	background: #ddf2fc;
	font-size: 24px;
	color: #003D8F;
	font-weight: 700;
	padding: 5px 70px 5px 45px;
	-webkit-box-shadow: 0 6px 0 #8ca8cd;
	-moz-box-shadow: 0 6px 0 #8ca8cd;
	-ms-box-shadow: 0 6px 0 #8ca8cd;
	-o-box-shadow: 0 6px 0 #8ca8cd;
	box-shadow: 0 6px 0 #8ca8cd;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	-ms-border-radius: 6px;
	-o-border-radius: 6px;
	border-radius: 6px;
	position: relative;
}

.faq .faq_box .faq_down a:before {
	position: absolute;
	content: "";
	background: url("../img/ico_download.svg") center center no-repeat;
	background-size: 40px auto;
	right: 22px;
	top: 0;
	height: 100%;
	width: 40px;
	z-index: 0;
}

.faq .faq_box .faq_link {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.faq .faq_box .faq_link a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	height: 60px;
	letter-spacing: 0.03em;
	background: #fff;
	font-size: 24px;
	color: #003D8F;
	font-weight: 700;
	padding: 5px 40px 5px 15px;
	-webkit-box-shadow: 0 6px 0 #8ca8cd;
	-moz-box-shadow: 0 6px 0 #8ca8cd;
	-ms-box-shadow: 0 6px 0 #8ca8cd;
	-o-box-shadow: 0 6px 0 #8ca8cd;
	box-shadow: 0 6px 0 #8ca8cd;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	-ms-border-radius: 6px;
	-o-border-radius: 6px;
	border-radius: 6px;
	position: relative;
}

.faq .faq_box .faq_link a:before {
	position: absolute;
	content: "";
	clip-path: polygon(0 0, 100% 50%, 0 100%);
	background: #003D8F;
	width: 14px;
	height: 20px;
	right: 24px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 0;
}

.faq .faq_box .faq_down a:hover,
.faq .faq_box .faq_link a:hover {
	background: #d9e2ee;
}

@media (max-width: 767px) {
	.faq {
		padding: 40px 23px 45px;
	}

	.faq .faq_hd {
		padding: 0 0 8px;
		font-size: min(22px, 5.87vw);
		letter-spacing: 0.04em;
		border-bottom: 3px #fff solid;
		margin: 0 0 35px;
	}

	.faq .faq_box {
		gap: 0;
		justify-content: space-between;
	}

	.faq .faq_box .faq_img {
		width: 37.1875%;
	}

	.faq .faq_box .faq_cont {
		gap: 5px;
		width: 58.59375%;
	}

	.faq .faq_box .faq_down {
		gap: 10px;
	}

	.faq .faq_box .faq_down a {
		height: min(40px, 10.67vw);
		letter-spacing: 0.03em;
		font-size: min(10px, 2.67vw);
		padding: 5px 25px 5px 20px;
		-webkit-box-shadow: 0 3px 0 #8ca8cd;
		-moz-box-shadow: 0 3px 0 #8ca8cd;
		-ms-box-shadow: 0 3px 0 #8ca8cd;
		-o-box-shadow: 0 3px 0 #8ca8cd;
		box-shadow: 0 3px 0 #8ca8cd;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		-ms-border-radius: 3px;
		-o-border-radius: 3px;
		border-radius: 3px;
	}

	.faq .faq_box .faq_down a:before {
		position: absolute;
		content: "";
		background: url("../img/ico_download.svg") center center no-repeat;
		background-size: 16px auto;
		right: 10px;
		width: 16px;
	}

	.faq .faq_box .faq_link {
		gap: 10px;
	}

	.faq .faq_box .faq_link a {
		height: min(25px, 6.67vw);
		letter-spacing: 0.03em;
		font-size: min(10px, 2.67vw);
		padding: 5px 18px 5px 10px;
		-webkit-box-shadow: 0 3px 0 #8ca8cd;
		-moz-box-shadow: 0 3px 0 #8ca8cd;
		-ms-box-shadow: 0 3px 0 #8ca8cd;
		-o-box-shadow: 0 3px 0 #8ca8cd;
		box-shadow: 0 3px 0 #8ca8cd;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		-ms-border-radius: 3px;
		-o-border-radius: 3px;
		border-radius: 3px;
	}

	.faq .faq_box .faq_link a:before {
		width: 6px;
		height: 8px;
		right: 10px;
	}

	.faq .faq_box .faq_down a:hover,
	.faq .faq_box .faq_link a:hover {
		background: #ddf2fc;
	}
}



/* campaign
----------------------------------------------- */
.campaign a {
	display: flex;
	background: #fff33f;
	padding: 15px 20px;
	align-items: stretch;
	justify-content: center;
	gap: 0 20px;
	color: #EB612A;
}

.campaign .campaign_mess {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 0 30px 0 0;
	border-right: 2px #eb612a solid;
}

.campaign .campaign_cap {
	color: #fff;
	font-size: 18px;
	line-height: 1.3;
	display: block;
	letter-spacing: 0.02em;
	font-weight: 700;
	background: #eb612a;
	padding: 0 20px;
	clip-path: polygon(0 0, 100% 0, calc(100% - 6px) 50%, 100% 100%, 0 100%, 6px 50%);
}

.campaign .campaign_tit {
	font-size: 35px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.035em;
}

.campaign .campaign_date {}

.campaign .campaign_date .date_cap {
	font-size: 14px;
	font-weight: 500;
}

.campaign .campaign_date .date_num {
	margin: 5px 0 0;
}

.campaign .campaign_date .date_num img {
	width: 370px;
}

.campaign .campaign_date .date_note {
	font-size: 12px;
	letter-spacing: 0.03em;
	font-weight: 500;
}

@media (max-width: 767px) {
	.campaign a {
		padding: 20px 15px;
		flex-direction: column;
		gap: 10px;
	}

	.campaign .campaign_mess {
		padding: 0 0 10px;
		border-right: none;
		border-bottom: 1px #eb612a solid;
		text-align: center;
	}

	.campaign .campaign_cap {
		font-size: 12px;
		padding: 2px 20px 3px;
		margin: 0 auto;
	}

	.campaign .campaign_tit {
		font-size: 19px;
		margin: 5px auto 0;
		letter-spacing: 0.035em;
	}

	.campaign .campaign_date {
		text-align: center;
	}

	.campaign .campaign_date .date_cap {
		font-size: 12px;
	}

	.campaign .campaign_date .date_num img {
		width: 300px;
	}

	.campaign .campaign_date .date_note {
		margin: 5px 0 0;
	}
}