@charset "utf-8";
body {
	margin: 0 auto;
	padding: 0;
	font-size: 15px;
	line-height: 1.7;
	position: relative;
	color: #000;
	font-family: "Noto Sans JP","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","游ゴシック","Yu Gothic","游ゴシック体","YuGothic","Meiryo UI","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
	font-weight: 400;
	text-align: left;
}
a {color: inherit;text-decoration: none;}
.nosp {display: none !important;}
img {max-width: 100%;}

/* 共通 */
.inner {
	width: 87%;
	max-width: 1000px;
	margin: 0 auto;
}

.top_inner {
	width: 87%;
	max-width: 1200px;
	margin: 0 auto;
}
.main_title01 {
	display: block;
  text-align: center;
  line-height: 1.7;
  margin-bottom: 35px;
	padding-bottom: 25px;
	position: relative;
	color: #122F68;
}

.main_title01 span:first-child {
	font-size: 23px;
	font-weight: bold;
  display: block;
}

.main_title01 span:last-child {
    font-size: 10px;
    display: block;
		font-weight: bold;
		letter-spacing: .14em;
}

.main_title01::after {
	content: "";
	width: 90px;
	height: 2px;
	background-color: #BABCC1;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.main_title02 {
	font-size: 18px;
	font-weight: bold;
	padding-bottom: 10px;
	margin-bottom: 20px;
	border-bottom: 2px solid #D5D5D5;
	position: relative;
}

.main_title02::after {
	content: "";
	width: 152px;
	height: 4px;
	background-color: #122F68;
	position: absolute;
	bottom: -3px;
	left: 0;
}

.main_title04 {
	font-size: 20px;
	text-align: center;
	font-weight: bold;
	color: #122F68;
	padding-bottom: 15px;
	border-bottom: 1px solid #D5D5D5;
	margin-bottom: 30px;
}

.btn {
	font-size: 16px;
	text-align: center;
	color: #122F68;
	font-weight: bold;
	max-width: 400px;
	width: 90%;
	margin: 50px auto 0;
	padding: 20px 0;
	position: relative;
	border: 1px solid #122F68;
	display: block;
	transition: 0.3s;
	letter-spacing: 1px;
}

.btn::after {
	content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-top: 1px solid #122F68;
    border-right: 1px solid #122F68;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto;
    transform: rotate(
45deg
);
    transition: .3s;
    z-index: 10;
}

.btn:hover {
	background-color: #122F68;
	color: #fff;
}

.btn:hover::after {
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
}

.btn.white {
	border: 1px solid #fff;
}

/* ハンバーガー */
.burger,
.burger span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
}
.burger {
	position: fixed;
	top: 21px;
	right: 6%;
	z-index: 102;
	width: 23px;
	height: 19px;
}
.burger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #122F68;
}
.burger span:nth-of-type(1) {
	top: 0;
}
.burger span:nth-of-type(2) {
	top: 0;
	bottom: 0;
	margin: auto;
}
.burger span:nth-of-type(3) {
	bottom: 0;
}
.burger.active span:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
	background-color: #fff;
}
.burger.active span:nth-of-type(2) {
  opacity: 0;
}
.burger.active span:nth-of-type(3) {
  transform: translateY(-7px) rotate(45deg);
	background-color: #fff;
}

/* ヘッダー */
header {
	min-width: 1000px;
	width: 100%;
	height: 60px;
	position: fixed;
	top: 0;
	z-index: 999;
	background-color: rgba(255, 255, 255, 0.8);
	transition: 0.3s;
}

.top_page header {
	background-color: rgba(255, 255, 255, 0);
	box-shadow: none;
}

.under_page header {
	box-shadow: 0px 6px 12px -11px rgb(0 0 0 / 40%);
}

.top_page.scroll header {
	background-color: rgba(255, 255, 255, 0.8);
}

header .headerinner {
	max-width: 1795px;
	margin: 0 auto;
}

header .headerinner .logo,
header .headerinner .logo.open {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 2%;
	width: 160px;
}

header .headerinner .logo img {
	width: 100%;
}

header .headerinner .navmenu {
	position: fixed;
    top: 0;
    left: 0;
    color: #fff;
    background: #122F68;
    text-align: center;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: .6s;
    z-index: 100;
    pointer-events: none;
}

header .headerinner .navmenu.open {
    opacity: 1;
    pointer-events: auto;
}

header .headerinner .navmenu .logo {
	display: none;
	transition: .6s;
}

header .headerinner .navmenu .logo,
header .headerinner .navmenu.open .logo {
	position: absolute;
    top: 30px;
    left: 5.5%;
    width: 160px;
    z-index: 999;
		display: block;

}

header .headerinner .navmenu nav {
	position: fixed;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

header .headerinner .navmenu ul {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

header .headerinner .navmenu ul li {
	width: 100%;
}

header .headerinner .navmenu ul.menu_top li {
	margin-bottom: 10%;
}

header .headerinner .navmenu ul li:last-child {
	margin-right: 0;
}

header .headerinner .navmenu ul li a{
	font-size: 16px;
	transition: 0.3s;
	font-weight: bold;
	display: block;
}

header .headerinner .navmenu ul li a:hover {
	opacity: 0.8;
}

.sp_header_contact .inner .banner_left .tell_link a {
	font-size: 28px!important;
	display: inline-block;
}

header .headerinner .navmenu ul li.header_contact {
  position: relative;
}

header .headerinner .navmenu ul li.header_contact a {
  padding: 15px 30px 15px 60px;
  background-color: #FFEE00;
  position: relative;
  display: block;
}

header .headerinner .navmenu ul li.header_contact a::before {
  content: "";
    background: url(../img/mail_ico.png) no-repeat center/cover;
    width: 16px;
    height: 13px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 32px;
}

header.scroll {
	background-color: rgba(255, 255, 255, 0.8);
	box-shadow: 0px 6px 12px -11px rgb(0 0 0 / 40%);
}

header .headerinner .logo_tell {
	position: fixed;
    top: 17px;
    right: 18%;
}

header .headerinner .logo_tell a {
	display: block;
}

header .headerinner .logo_tell img{
	width: 28px;
	height: 28px;
}

/* フッター */
footer {
	padding: 20px 0;
	background-color:#122F68;
	color: #fff;
	margin-bottom: 90px;
	transition: .5s
}

footer.active {
	margin-bottom: 0;
}

footer .footerinner {
	width: 87%;
	max-width: 1000px;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

footer .footerinner .footer_right {
	width: 100%;
	max-width: 705px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

footer .footerinner .footer_right .logo {
	margin-bottom: 20px;
}

footer .footerinner .footer_right .logo img {
	width: 100%;
	max-width: 200px;
}

footer .footerinner .footer_right .address {
	margin-right: 10px;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	font-size: 14px;
	margin-bottom: 7px;
}

footer .footerinner .footer_right .address li {
	margin-right: 30px;
}

footer .footerinner .footer_right .address li:last-child {
	margin-right: 0;
}

footer .footerinner .footer_right .footer_link {
	display: block;
	width: 100%;
	background-color: #18669F;
	text-align: center;
	font-size: 13px;
	border-radius: 30px;
	position: relative;
	color: #fff;
	padding: 8px 0;
	transition: 0.3s;
}

footer .footerinner .footer_right .footer_link::after {
	content: '';
    display: block;
    width: 3px;
    height: 3px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    margin: auto;
    transform: rotate(
45deg
);
    transition: .3s;
    z-index: 10;
}

footer .footerinner .footer_right .footer_link:hover {
	opacity: 0.8;
}

footer .footerinner .footer_left {
	font-size: 12px;
	color: #fff;
	text-align: center;
    width: 100%;
    margin-top: 25px;
}

/* コンタクトフォーム */

.inquiry_area.inquiry_headbox {
}
.inquiry_area.inquiry_headbox .bgleft,
.inquiry_area.inquiry_headbox .bgright {
  width: 100%;
  top: 0;
  bottom: auto;
	left: 0;
  height: 50%;
}
.inquiry_area.inquiry_headbox .bgright {
	top: auto;
	bottom: 0;
	height: 50%;
}
.inquiry_area.inquiry_headbox .inner .inbox {
	padding-bottom: 0;
}
.inquiry_area.inquiry_headbox .inner .inbox .txt {
	margin-bottom: 0;
}
.inquiry_area.inquiry_headbox .inner .inbox .txt,
.inquiry_area.inquiry_headbox .inner .inbox .img {
	width: 100%;
}
.inquiry_area.inquiry_headbox .inner .inbox .img {
	padding: 5% 10px;
}
select,input:not([type="radio"]),textarea {
	padding: 20px 10px;
	border: 1px solid #D5D5D5;
	width: 100%;
	text-align: left!important;
}
input[type="radio"] {
	display: none;
}
input[type="radio"] + label {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	cursor: pointer;
	position: relative;
}
input[type="radio"] + label::before {
	content: '';
	width: 20px;
	height: 20px;
	border: 1px solid #D5D5D5;
	border-radius: 100px;
	display: inline-block;
	margin-right: 10px;
	background: #fff;
}
input[type="radio"] + label::after {
	content: '';
	width: 12px;
	height: 12px;
	background: #122F68;
	border-radius: 100px;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 5px;
	margin: auto;
	opacity: 0;
	transition: .3s
}
input[type="radio"]:checked + label::after {
	opacity: 1;
}
.input01 {
	max-width: 400px
}
.input02 {
	max-width: 250px;
}
.input03 {
	max-width: 130px;
}
.select01 {
	max-width: 250px;
}
.form_box {
	padding: 10% 0;
}
.form_box .inner .form_txt {
	text-align: center;
	margin-bottom: 50px;
}
.form_box .inner .form_txt .required {
	color: #fff;
	background: #E2000E;
	display: inline-block;
	font-size: 12px;
	padding: 0 10px;
	margin-right: 5px;
}
.form_box .inner .form_order {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: stretch;
}
.form_box .inner .form_order li {
	width: calc(33.3% - 18px);
	height: 60px;
	background: #F5F5F5;
	position: relative;
	margin-right: 26px;
}
.form_box .inner .form_order li:last-child {
	margin-right: 0;
}
.form_box .inner .form_order li:not(:last-child)::after {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 30px 0 30px 19px;
	border-color: transparent transparent transparent #F5F5F5;
	position: absolute;
	top: 0;
	bottom: 0;
	right: -19px;
	margin: auto;
}
.form_box .inner .form_order li span {
	display: block;
	width: 100%;
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #122F68;
	font-weight: bold;
	font-size: 12px;
	line-height: 1.2;
}


.form_box .inner .form_order li:not(:first-child) span::before,
.form_box .inner .form_order li:not(:first-child) span::after {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 22px 31px 0;
	border-color: transparent #F5F5F5 transparent transparent;
	position: absolute;
	top: 0;
	left: -22px;
	margin: auto;
}
.form_box .inner .form_order li:not(:first-child) span::after {
	border-width: 0 0 30px 22px;
	border-color: transparent transparent #F5F5F5 transparent;
	top: auto;
	bottom: 0;
}

.form_box .inner .form_order li:last-child span {
	width: 85%;
}

.form_box .inner .form_order li:last-child::before {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 22px 31px 0;
	border-color: transparent #fff transparent transparent;
	position: absolute;
	top: 0;
	right: 0;
	margin: auto;
}
.form_box .inner .form_order li:last-child::after {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 30px 22px;
    border-color: transparent transparent #fff transparent;
		position: absolute;
		bottom: 0;
		right: 0;
		margin: auto;
}

.form_box .inner .form_order li.current {
	background: #122F68;
}
.form_box .inner .form_order li.current:not(:last-child)::after {
	border-color: transparent transparent transparent #122F68;
}
.form_box .inner .form_order li.current span {
	color: #F5F5F5;
}
.form_box .inner .form_order li.current span::before {
	border-color: transparent #122F68 transparent transparent;
}
.form_box .inner .form_order li.current span::after {
	border-color: transparent transparent #122F68 transparent;
}
.form_table {
	margin: 0 0 7%;
}
.form_table tr th {
	padding-right: 50px;
	width: 100%;
	position: relative;
	float: left;
}
.form_table tr th br {
	display: none;
}
/* .form_table tr th::after {
	content: '任意';
	font-size: 12px;
	padding: 0 10px;
	background: #6C6C6C;
	color: #fff;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
} */
.form_table tr.required th::after {
	content: '必須';
	background: #E2000E;
	font-size: 12px;
	padding: 0 10px;
	color: #fff;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.form_table tr td {
	padding: 3% 0 8%;
	width: 100%;
	float: left;
}
.form_table tr td span {
	display: block;
}
.form_table tr td span + span {
	margin-top: 10px;
}
.form_table tr td ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: stretch;
	padding-top: 5px;
}
.form_table tr td ul li {
	width: 100%;
	margin-bottom: 10px;
}
.form_table tr td ul li.other label {
	width: 100%;
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
}
.form_table tr td ul li.other input[type="text"] {
	margin-left: 10px;
	width: 70%;
}
.form_box .inner .form_benefit {
	padding: 50px 0;
}
.form_box .inner .form_benefit p {
	text-align: center;
	color: #707070;
	margin-bottom: 30px;
	padding: 0 5%;
}
.form_box .inner .form_benefit div {
	background: #ECECEC;
	padding: 10% 5%;
}
.form_box .inner .form_benefit div strong {
	display: block;
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 10px;
}
.form_box .inner .form_benefit div ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
}
.form_box .inner .form_benefit div ul li {
	width: 100%;
	margin-bottom: 20px;
}
.form_box .inner .form_benefit div ul li label {
	font-size: 16px;
	font-weight: bold;
	line-height: 1.2;
	margin-bottom: 20px;
}
.form_box .inner .form_privacy {
	max-width: 650px;
	width: 100%;
	font-size: 16px;
	text-align: center;
	padding: 0 5%;
}
.form_box .inner .form_privacy p {
	margin-bottom: 20px;
	text-align: left;
}
.form_box .inner .form_privacy a {
	color: #0050FF;
	text-decoration: underline;
	font-size: 13px;
}

.pagetitle .name {
	text-align: center;
	color: #122F68;
	font-weight: bold;
	line-height: 2.0;
	display: block;
	padding: 15% 0 7%;
}

.pagetitle .name span:first-child {
    font-size: 24px;
    font-weight: bold;
    display: block;
}

.pagetitle .name span:last-child {
    font-size: 10px;
    display: block;
    font-weight: bold;
    letter-spacing: .14em;
}

.inquiry_area.inquiry_headbox .inner .inbox .txt {
	text-align: center;
	color: #122F68;
	font-size: 14px;
	font-weight: bold;
}

.form_box .inner .form_txt p.form_top_txt {
	margin: 7% 0 11%;
	font-size: 15px;
	text-align: left;
	letter-spacing: 1.7;
}

.form_box .inner .form_txt p.form_top_txt span {
	font-size: 12px;
	color: #fff;
	background-color: #E2000E;
	padding: 0 10px;
}

.form_box .inner .form_txt .form_tell_box {
	position: relative;
	background-color: #F5F5F5;
	padding: 10% 9%;
	text-align: center;
	color: #122F68;
}

.form_box .inner .form_txt .form_tell_box strong {
	font-size: 15px;
	font-weight: bold;
	margin-bottom: 15px;
	color: #000;
	display: block;
}

.form_box .inner .form_txt .form_tell_box p.small_txt {
	font-size: 14px;
	font-weight: bold;
}

.form_box .inner .form_txt .form_tell_box p.tell a {
	font-size: 8vw;
	font-weight: bold;
	padding-left: 16%;
	position: relative;
}

.form_box .inner .form_txt .form_tell_box p.tell a::after {
    content: "";
    background: url(../img/form_tell_ico.png) no-repeat center/cover;
    width: 37px;
    height: 37px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.form_box .inner .btn {
	background-color: #fff;
	padding: 5% 0;
	margin: 10% auto 0;
}

.form_box .inner .btn:hover {
	background-color: #122F68;
}

input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
    -moz-appearance:textfield;
}

#mfp_thanks {
	display: none;
}

/* MV */
.top_mv {
  position: relative;
  width: 100%;
  min-height: 550px;
  padding: 50px 0;
	height: 64vh;
  background: url(../img/sp/top_mv_sp.png) no-repeat center/cover;
}

.top_mv .copy_txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
	font-weight: bold;
  font-size: 27px;
  text-align: center;
  color: #000;
}

.top_mv .copy_txt span {
  font-size: 15px;
}

/* トップページ */
section.top_about {
	padding: 13% 0 20%;
	text-align: center;
}

section.top_use {
	padding: 18% 0 20%;
	text-align: center;
	background-color: #F2F5F9;
}

section.top_use .inbox {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 40px;
}

section.top_use .inbox li {
	width: 48.4%;
	margin-bottom: 3.2%;
	max-width: 290px;
	transition: 0.3s;
}

section.top_use .inbox li:hover {
	opacity: 0.8;
}

section.top_use .inbox li:first-child {
	background: url(../img/top_use01.png) no-repeat center/cover;
}
section.top_use .inbox li:nth-child(2) {
	background: url(../img/top_use02.png) no-repeat center/cover;
}
section.top_use .inbox li:nth-child(3) {
	background: url(../img/top_use03.png) no-repeat center/cover;
}
section.top_use .inbox li:last-child {
	background: url(../img/top_use04.png) no-repeat center/cover;
}

section.top_use .inbox li a {
	width: 100%;
    height: 100%;
    display: block;
    padding: 26% 2%;
		transition: 0.3s;
}

section.top_use .inbox li .use_title {
	font-size: 16px;
	font-weight: bold;
	color: #fff;
}

section.top_use .inbox li .btn {
	max-width: 190px;
	font-size: 12px;
	padding: 10px 0;
	font-weight: normal;
	margin-top: 20px;
}

section.top_use .inbox li .btn::after {
    width: 4px;
    height: 4px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    right: 14px;
}

section.top_use .inbox li .btn:hover {
	background-color: rgba(255, 255, 255, 0);
}

section.top_products {
	padding: 20% 0 21%;
	text-align: center;
	background: url(../img/sp/top_products_bg_sp.png) no-repeat center/cover;
}

section.top_products .btn {
	background-color: rgba(255, 255, 255, 0.7);
}

/* 追従バナー */
.banner_bottom {
	position: fixed;
	bottom: 0;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	padding: 3%;
	color: #000;
	font-weight: bold;
	z-index: 900;
	display: none;
}

.sp_header_contact {
	color: #000;
	font-weight: bold;
}

.banner_bottom .inner,
.sp_header_contact .inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	position: relative;
	width: 100%;
}

.sp_header_contact .inner {
	width: 77.3%;
	margin: 0 auto;
}

.banner_bottom .inner .banner_left,
.sp_header_contact .inner .banner_left {
	max-width: 770px;
	width: 100%;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	text-align: center;
	background-color: #FEE92D;
	border-bottom: 3px solid #B2A601;
  padding: 10px;
}

.banner_bottom .inner .banner_left .tell,
.sp_header_contact .inner .banner_left .tell {
	width: 100%;
	text-align: center;
	font-size: 14px;
	margin-right: 15px;
}


.banner_bottom .inner .banner_left .address,
.sp_header_contact .inner .banner_left .address {
	font-size: 14px;
	margin-right: 15px;
	width: 100%;
	order: 3;
}

.banner_bottom .inner .banner_left .tell_link,
.sp_header_contact .inner .banner_left .tell_link {
	font-size: 28px;
	font-family: 'Lato', sans-serif;
	position: relative;
	width: 100%;
	line-height: 1.2;
}

.banner_bottom .inner .banner_left .tell_link::before,
.sp_header_contact .inner .banner_left .tell_link::before {
	content: "";
    background: url(../img/form_tell_ico.png) no-repeat center/cover;
    width: 30px;
    height: 30px;
    display: inline-block;
		margin-right: 6px;
    margin-bottom: -6px;
}

.banner_bottom .inner .banner_right,
.sp_header_contact .inner .banner_right {
	width: 100%;
	margin-top: 3%
}

.banner_bottom .inner .banner_right a,
.sp_header_contact .inner .banner_right a{
	width: 100%;
	padding: 15px 0;
	background-color: #FFEE00;
	position: relative;
	font-size: 15px;
	font-weight: normal;
	border-bottom: 3px solid #B2A601;
	color: #000;
	transition: 0.3s;
	display: block;
	text-align: center;
}

.banner_bottom .inner .banner_right a:hover,
.sp_header_contact .inner .banner_right a:hover{
	opacity: 0.8;
}

.banner_bottom .inner .banner_right a::before,
.sp_header_contact .inner .banner_right a::before {
	content: "";
    background: url(../img/mail_ico.png) no-repeat center/cover;
    width: 20px;
    height: 15px;
		display: inline-block;
margin-right: 18px;
margin-bottom: -2px;
}

.banner_bottom .inner .close {
	width: 30px;
    height: 30px;
    position: absolute;
    top: -24px;
    right: 0;
    background: #fff;
    border-radius: 100px;
    box-shadow: 0 0 5px rgb(0 0 0);
    z-index: 10;
    cursor: pointer;
    pointer-events: auto;
}

.banner_bottom .inner .close::before,
 .banner_bottom .inner .close::after{
	transform: rotate(-45deg);
	content: '';
    width: 60%;
    height: 2px;
    background: #6C6C6C;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.banner_bottom .inner .close::after {
    transform: rotate(
45deg
);
}

/* 下層 */
.detail_mv {
	width: 100%;
	padding: 8% 0;
	text-align: center;
	color: #fff;
}

.detail_mv.use {
	background: url(../img/sp/use_mv_sp.png) no-repeat center/cover;
}
.detail_mv.about {
	background: url(../img/sp/about_mv_sp.png) no-repeat center/cover;
}
.detail_mv.products {
	background: url(../img/sp/products_mv_sp.png) no-repeat center/cover;
}

.detail_mv .copy_txt {
	display: block;
    text-align: center;
    line-height: 1.8;
    color: #fff;
}

.detail_mv .copy_txt span:first-child {
    font-size: 24px;
    font-weight: bold;
    display: block;
}

.detail_mv .copy_txt span:last-child {
    font-size: 10px;
    display: block;
    font-weight: bold;
    letter-spacing: .14em;
}

/* .common_menu {
	padding: 20px 0;
	background-color: rgba(54, 105, 164, 0.5);
} */

.common_menu ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
}

.common_menu ul li {
	width: 50%;
	max-width: 500px;
	transition: 0.3s;
}

.common_menu ul li:hover {
	opacity: 0.8;
}

.common_menu ul li a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 20% 15%;
}

.common_menu ul li.about {
	background: url(../img/common_menu_about.png) no-repeat center/cover;
}
.common_menu ul li.products {
	background: url(../img/common_menu_products.png) no-repeat center/cover;
}
.common_menu ul li.use {
	background: url(../img/common_menu_use.png) no-repeat center/cover;
}

.common_menu ul li .main_title03{
	display: block;
    text-align: center;
    line-height: 2.0;
    color: #fff;
}

.common_menu ul li .main_title03 span:first-child {
    font-size: 16px;
    font-weight: bold;
    display: block;
}

.common_menu ul li .main_title03 span:last-child {
    font-size: 10px;
    display: block;
    font-weight: bold;
    letter-spacing: .14em;
}

.common_menu ul li .btn {
    font-size: 12px;
    padding: 10px 0;
		transition: 0.3s;
		width: 100%;
		margin-top: 10%;
		border: 1px solid #fff;
		color: #fff;
}

.common_menu ul li .btn::after {
    width: 4px;
    height: 4px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    right: 14px;
}

.common_menu ul li .btn:hover {
	background-color: #fff;
	color: #122F68;
}

.common_menu ul li .btn:hover::after {
    border-top: 1px solid #122F68;
    border-right: 1px solid #122F68;
}

/* 用途別で選ぶ */
section.usebox_01 {
	padding: 15% 0 18%;
	background-color: #ECEFF4;
}

section.usebox_01 .inner {
	width: 87%;
	max-width: 669px;
	margin: 0 auto;
}

section.usebox_01 ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

section.usebox_01 ul li {
	width: 49.2%;
	background-color: #fff;
	padding: 20px 10px;
	text-align: center;
	border-radius: 7px;
	font-size: 13px;
	margin-bottom: 1.6%;
	display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
}

section.usebox_01 ul li:nth-child(2) {
	border: 4px solid #FFE6B9;
}
section.usebox_01 ul li:nth-child(3) {
	border: 4px solid #FAE8F1;
	/* padding: 26px 10px; */
}
section.usebox_01 ul li:nth-child(4) {
	border: 4px solid #E5E4F2;
	/* padding: 30px 10px 20px; */
}
section.usebox_01 ul li:nth-child(5) {
	border: 4px solid #E6F1E3;
	/* padding: 20px 10px; */
}
section.usebox_01 ul li:last-child {
	border: 4px solid #FCF2C3;
	width: 100%;
}

section.usebox_01 ul li strong {
	font-weight: bold;
	margin-bottom: 10px;
}

section.usebox_01 ul li.top {
	position: relative;
	display: block;
	width: 100%;
	max-width: 420px;
	margin: 0 auto 90px;
	background-color: #43A1DF;
	color: #fff;
	font-size: 22px;
}

section.usebox_01 ul li.top span {
	display: block;
	font-size: 16px;
}

section.usebox_01 ul li.top::after {
	content: "";
background: url(../img/use_sec01_1.png) no-repeat center/cover;
width: 87px;
height: 61px;
position: absolute;
bottom: -79px;
transform: translateX(-50%);
left: 50%;
}

section.usebox_02 {
	padding: 10% 0 0;
}

section.usebox_02 .use_title {
	width: 100%;
	max-width: 340px;
	height: 75px;
	margin: 0 auto 11%;
	font-size: 17px;
	color: #fff;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
	letter-spacing: .10em;
}

section.usebox_02 .use_title.title01 {
	background: url(../img/sp/use_sec02_1_sp.png) no-repeat center/cover;
}
section.usebox_02 .use_title.title02 {
	background: url(../img/sp/use_sec02_2_sp.png) no-repeat center/cover;
}
section.usebox_02 .use_title.title03 {
	background: url(../img/sp/use_sec02_3_sp.png) no-repeat center/cover;
}
section.usebox_02 .use_title.title04 {
	background: url(../img/sp/use_sec02_4_sp.png) no-repeat center/cover;
}

section.usebox_02 p {
	letter-spacing: .14em;
}

section.usebox_02 .gray_box {
	padding: 12% 6.5% 13%;
	background-color: #F8F8F8;
	margin: 10% -7% 0;
}

section.usebox_02 .gray_box .inbox {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

section.usebox_02 .gray_box .inbox li a{
	display: block;
	width: 100%;
	font-weight: bold;
	background-color: #fff;
	padding: 15px;
	margin-bottom: 10px;
	color: #122F68;
	text-align: center;
	position: relative;
	box-shadow: 0px 2px 7px 1px rgba(170,170,170,0.6);
	transition: 0.3s;
	font-size: 16px;
}

section.usebox_02 .gray_box .inbox li a::after {
		content: '';
	    display: block;
	    width: 7px;
	    height: 7px;
	    border-top: 1px solid #122F68;
	    border-right: 1px solid #122F68;
	    position: absolute;
	    top: 0;
	    bottom: 0;
	    right: 20px;
	    margin: auto;
	    transform: rotate(
	45deg
	);
	    transition: .3s;
	    z-index: 10;
}

section.usebox_02 .gray_box .inbox li a:hover::after {
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
}

section.usebox_02 .gray_box .inbox li a span {
	font-size: 12px;
	font-weight: normal;
}

section.usebox_02 .gray_box .inbox li a:hover {
	box-shadow: none;
	background-color: #122f68;
	color: #fff;
}

section.usebox_02 .gray_box .inbox.clm1 li {
	width: 100%;
}

section.usebox_02 .gray_box .inbox.clm2 li {
	width: 48.4%;
}

section.usebox_02 .gray_box .inbox.clm3 li {
	width: 48.4%;
}

section.usebox_02 .gray_box .inbox .attention {
	font-size: 12px;
	margin-top: 10px;
}

section.productsbox_01 {
	padding: 18% 0 0;
}

section.productsbox_01:last-of-type {
	padding-bottom: 20%;
}

section.productsbox_01 .product_example {
	padding: 4% 3%;
	border: 3px solid #122F68;
	width: 100%;
	max-width: 900px;
	margin: 8% auto;
	border-radius: 7px;
}

section.productsbox_01 .product_example strong {
	font-size: 16px;
	font-weight: bold;
	color:  #122F68;
	margin-bottom: 20px;
	display: block;
}

section.productsbox_01 .product_example p {
	text-align: center;
}

section.productsbox_01 .table_box {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
}

section.productsbox_01 .table_box .tbl01 {
	width: 100%;
}

section.productsbox_01 .table_box .tbl01 tbody tr.thead {
	display: none;
}

section.productsbox_01 .table_box .tbl01 tbody tr{
	border-bottom: 1px solid #fff;
	display: block;
	margin-bottom: 6%;
}

section.productsbox_01 .table_box .tbl01 tbody tr:last-of-type {
	margin-bottom: 0;
}

section.productsbox_01 .table_box .tbl01 tbody tr.thead th {
	width: 129.15px;
	padding: 10px 0;
	background-color: #122F68;
	color: #fff;
	text-align: center;
	vertical-align: middle;
}

section.productsbox_01 .table_box .tbl01 tbody tr td {
	padding: 3%;
	background-color: rgba(18, 47, 104, 0.1);
	border-bottom: 2px solid #fff;
	text-align: center;
	vertical-align: middle;
	display: block;
	width: 100%;
	height: 100%;
	padding-left: 38%;
	position: relative;
}

section.productsbox_01 .table_box .tbl01 tbody tr td:first-child {
	background-color: #122F68;
	color: #fff;
	padding: 3% 0;
}

section.productsbox_01 .table_box .tbl01 tbody tr td:first-child::before {
	display: none;
}

section.productsbox_01 .table_box .tbl01 tbody tr td:before {
    content: attr(data-label);
    float: left;
    margin-right: 10px;
    width: 34.5%;
    background: #122F68;
		color: #fff;
    position: absolute;
    left: 0;
    top: 0px;
    text-align: center;
    height: 100%;
    box-sizing: border-box;
    line-height: 1.5em;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.productsbox_01 .table_box .table_attention {
	font-size: 15px;
	margin-top: 2%;
	text-align: right;
}

section.aboutbox_01 {
	background: #F8F8F8;
	background-attachment: fixed;
	padding: 13% 0 0;
	position: relative;
	z-index: -1;
}

section.aboutbox_01::after {
	content: "";
    background: url(../img/sp/about_sec01_bg_sp.png) no-repeat center/cover;
    width: 100%;
		position: sticky;
    bottom: 0;
    max-height: 179px;
    height: 100vh;
    z-index: -1;
		display: block;
}

.about_inner {
	max-width: 920px;
	width: 87%;
	margin: 0 auto;
}

section.aboutbox_01 .about_inner {
	width: 100%;
}

section.aboutbox_01 .about_inner strong,
section.aboutbox_02 .about_inner strong {
	color: #122F68;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 30px;
	display: block;
}

section.aboutbox_01 .about_white_box {
	padding: 15% 5% 16%;
	margin: 9% 0 10%;
	background-color: rgba(255, 255, 255, 0.74);
}

section.aboutbox_01 .about_inner .about_white_box li {
	position: relative;
	margin-bottom: 10px;
	font-size: 14px;
	padding-left: 35px;
}

section.aboutbox_01 .about_inner .about_white_box li::before {
	content: "";
    background: url(../img/about_sec01_2.png) no-repeat center/cover;
    width: 21px;
    height: 21px;
    position: absolute;
    top: 4px;
    left: -0px;
}

section.aboutbox_02 {
	padding: 20% 0;
	background: #fff;
}

section.aboutbox_02 .about_inner .img {
	text-align: center;
	margin-top: 40px;
}

section.aboutbox_02 .about_inner .anime_img {
	max-width: 1274px;
	min-height: 992px;
	width: 100%;
	position: relative;
}

section.aboutbox_02 .anime_img {
	max-width: 1296px;
	width: 87%;
	position: relative;
	margin: 20% auto 0;
}

section.aboutbox_02 .anime_img li {
	/* margin-bottom: 3%; */
	padding-left: 1%;
	position: relative;
	z-index: 1;
}

section.aboutbox_02 .anime_img li img {
	width: 94%;
}

/* section.aboutbox_02 .anime_img li::before {
	content: "";
    width: 6%;
    height: 100vh;
    position: absolute;
    top: -33px;
    right: 0;
		z-index: -1;
		transition: 1.5s;
		display: block;
		background-image: url(../img/sp/anime_side.png);
		background-size: contain;
  background-repeat: no-repeat;
} */

section.aboutbox_02 .anime_img::after {
	content: "";
	    width: 6%;
	    height: 69.5%;
	    background-color: #F2F1F1;
	    top: 4%;
	    right: 0;
	    display: block;
	    z-index: 0;
	    position: absolute;
}

section.aboutbox_02 .anime_img li::before {
	content: "";
	width: 6%;
    height: 12%;
    position: absolute;
    top: 36%;
    right: 0;
    background: #C6C6C6;
    border-radius: 100px;

}

section.aboutbox_02 .anime_img li:last-child {
	text-align: center;
	margin-top: 12%;
}

section.aboutbox_02 .anime_img li:last-child::before {
	content: "";
	width: 0;
height: 0;
border-style: solid;
border-width: 26px 66.5px 0 66.5px;
border-color: #c6c6c6 transparent transparent transparent;
position: absolute;
top: -7%;
left: 50%;
transform: translateX(-50%);
border-radius: 0;
    background: none;
}

section.aboutbox_02 .anime_img li:last-child::after {
	display: none;
}

/* section.aboutbox_02 .anime_img::after {
	content: "";
    width: 6%;
    height: 100vh;
    position: absolute;
    top: -33px;
    right: 0;
		z-index: 0;
		transition: 1.5s;
		display: block;
		background-image: url(../img/sp/anime_side_ul.png);
		background-size: contain;
  background-repeat: no-repeat;
} */

section.aboutbox_02 .anime_img li::after {
	content: "";
    width: 86%;
    height: 210px;
    position: absolute;
    top: 7px;
    left: 14px;
		z-index: -1;
		transition: 1.5s;
		display: block;
		background-size: contain;
  background-repeat: no-repeat;/*画像を繰り返さない*/
}

section.aboutbox_02 .anime_img li.on::after {
    top: 22px;
    left: 0;
}

section.aboutbox_02 .anime_img li:first-child::after {
		background-image: url(../img/sp/about_sec02_2_1.png);
}

section.aboutbox_02 .anime_img li:nth-child(2)::after {
		background-image: url(../img/sp/about_sec02_2_2.png);
}

section.aboutbox_02 .anime_img li:nth-child(3)::after {
		background-image: url(../img/sp/about_sec02_2_3.png);
}

section.aboutbox_02 .anime_img li:nth-child(4)::after {
		background-image: url(../img/sp/about_sec02_2_4.png);
}

section.aboutbox_02 .anime_img li:nth-child(5)::after {
		background-image: url(../img/sp/about_sec02_2_5.png);
}

section.aboutbox_02 .anime_img li:nth-child(6)::after {
		background-image: url(../img/sp/about_sec02_2_6.png);
}

section.aboutbox_02 .anime_img li:nth-child(7)::after {
		background-image: url(../img/sp/about_sec02_2_7.png);
}

section.aboutbox_02 .anime_img li:nth-child(8)::after {
		background-image: url(../img/sp/about_sec02_2_8.png);
}

section.aboutbox_02 .anime_img li span {
	font-size: 3.0vw;
	color: #fff;
	font-weight: bold;
	background-color: #2859C5;
	padding: 2% 4%;
	letter-spacing: 3px;
	border-radius: 30px;
	position: relative;
	bottom: 20px;
	left: 33%;
}

section.aboutbox_02 .anime_img li:nth-child(3) span {
	left: 25%;
}
section.aboutbox_02 .anime_img li:nth-child(4) span {
	left: 29%;
}
section.aboutbox_02 .anime_img li:nth-child(6) span {
	left: 28%;
}
section.aboutbox_02 .anime_img li:nth-child(7) span {
	left: 30%;
}
section.aboutbox_02 .anime_img li:nth-child(8) span {
	left: 28%;
}

section.aboutbox_03 {
	padding: 20% 0;
	background: url(../img/sp/about_sec03_1bg_sp.png) no-repeat center/cover;
}

section.aboutbox_03 .about_white_box {
	padding: 11% 9% 12%;
	background-color: rgba(255, 255, 255, 0.74);
}

section.aboutbox_03 .main_title04 {
	font-size: 22px;
	margin-bottom: 8%;
}

section.aboutbox_03 .about_white_box p {
	max-width: 722px;
	width: 100%;
	margin: 0 auto;
}

/***********************************************/
/* フワッと出るやつ */
/***********************************************/

.move {
	position: relative;
	top: 50px;
	opacity: 0;
	transition: .3s;
}
.move.on {
	top: 0;
	opacity: 1;
}
/* .move + .move {
	transition-delay: .3s;
}
.move + .move + .move {
	transition-delay: .6s;
}
.move + .move + .move + .move {
	transition-delay: .9s;
} */
