@charset "UTF-8";
/*
---------------------------------------------------------
    reset.css ver 1.2 [2008/11/25] 
    *This document validates as CSS level 3
    *GNU General Public License v3
    *http://higash.net/20081125/reset_css3.html

    Modify YUI Reset CSS, YUI Fonts CSS 
    *Copyright (c) 2008, Yahoo! Inc. All rights reserved.
    *http://developer.yahoo.com/yui/license.html
    
    Modify Formy CSS Form Framework 0.8(beta)
    *GNU General Public License v2
    *http://code.google.com/p/formy-css-framework/
---------------------------------------------------------
*/

/* --HTML-- */

html {
	font-size: 62.5%;
}

/* --BODY-- */

body {
	font-family: 'Zen Kaku Gothic New', '游ゴシック', YuGothic, '游ゴシック体', 'ヒラギノ角ゴ Pro W3', 'メイリオ', sans-serif;
	font-size: 1.6rem;
	font-weight: 400;
	font-style: normal;
	line-height: 1.9;
	margin: 0 auto;
	padding: 0;
	color: #000;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-feature-settings: 'palt' 1;
}

body.open {
	overflow: hidden;
}

* {
	box-sizing: border-box;
}

/* --OTHER TAGS-- */

a {
	overflow: hidden;
	transition: all .2s ease-out;
	text-decoration: none;
	word-break: break-all;
}

a:hover {
	opacity: .7;
	filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
	filter: alpha(opacity=70);
	-khtml-opacity: .7;
	-moz-opacity: .7;
}

a:link,
a:visited {
	text-decoration: none;
	color: #000;
}

a:hover {
	text-decoration: none;
	color: #000;
}

a:active {
	text-decoration: none;
	color: #000;
}

a img,
img {
	vertical-align: bottom;
	border: 0;
}

abbr,
acronym {
	border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
th,
strong,
var,
i {
	font-weight: normal;
	font-style: normal;
}

blockquote,
dd,
div,
dl,
dt,
h1,
h2,
h3,
h4,
h5,
h6,
li,
ol,
p,
pre,
span,
td,
th,
ul,
figure {
	margin: 0;
	padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1.5;
}

caption,
th {
	text-align: left;
}

code,
kbd,
pre,
samp,
tt {
	font-family: monospace;
	line-height: 100%;
}

/* for IE7 */

* + html code,
kbd,
pre,
samp,
tt {
	font-size: 108%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
	font-weight: normal;
}

ol,
ul {
	list-style: none;
}

q:before,
q:after {
	content: '';
}

/* form */

button,
fieldset,
form,
input,
label,
legend,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	font-weight: inherit;
	font-style: inherit;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}

/* tables still need 'cellspacing="0"' */

table {
	font-size: 100%;
	border-spacing: 0;
	border-collapse: collapse;
}

section,
article,
aside,
hgroup,
header,
footer,
nav,
figure,
figcaption,
summary {
	display: block;
}

img {
	max-width: 100%;
	height: auto;
}

.loader-wrap {
	position: fixed;
	z-index: 9999;
	top: 0;
	left: 0;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	height: 100%;
	background: #fff url(../img/common/logo.webp) center center no-repeat;
	background-size: 180px auto;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.loader {
	text-indent: -9999em;
}

/*
* #Header
*/

header {
	padding-top: 38px;
	padding-bottom: 38px;
}

.header-logo {
	width: 172px;
	margin-left: 50px;
}

.spNavBtn__btn {
	position: fixed;
	z-index: 112;
	top: 0;
	right: 0;
}

.spNavBtn__btn a {
	font-size: 12px;
	font-size: 1.2rem;
	position: relative;
	display: block;
	text-align: center;
	color: #fff;
	border-radius: 0 0 0 4.7619vw;
	background: #d82427;
}

.spNavBtn__btn a:after {
	position: absolute;
	top: 50%;
	left: 35%;
	display: block;
	width: 30%;
	height: 1px;
	content: '';
	transition: all .3s ease-out;
	background: #fff;
}

.open .spNavBtn__btn a:after {
	opacity: 0;
}

.spNavBtn__btn a span:before,
.spNavBtn__btn a span:after {
	position: absolute;
	left: 35%;
	display: block;
	width: 30%;
	height: 1px;
	content: '';
	transition: all .3s ease-out;
	-ms-transform-origin: 0 0;
	transform-origin: 0 0;
	background: #fff;
}

.open .spNavBtn__btn a span:before,
.open .spNavBtn__btn a span:after {
	top: 50% !important;
	left: 50% !important;
	width: 30% !important;
	opacity: 1;
	background: #fff;
	filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
	filter: alpha(opacity=100);
	-khtml-opacity: 1;
	-moz-opacity: 1;
}

.spNavBtn__btn a span:before {
	top: 40%;
}

.open .spNavBtn__btn a span:before {
	-ms-transform: rotate(-45deg) translate(-50%, -50%);
	transform: rotate(-45deg) translate(-50%, -50%);
}

.spNavBtn__btn a span:after {
	top: 60%;
}

.open .spNavBtn__btn a span:after {
	-ms-transform: rotate(45deg) translate(-50%, -50%);
	transform: rotate(45deg) translate(-50%, -50%);
}

.spNavBtn__btn a:hover {
	opacity: 1;
	filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
	filter: alpha(opacity=100);
	-khtml-opacity: 1;
	-moz-opacity: 1;
}

.spNavBtn__btn a:hover:after {
	left: 35%;
	width: 30%;
}

.spNavBtn__btn a:hover span:before,
.spNavBtn__btn a:hover span:after {
	left: 35%;
	width: 30%;
}

.open .spNavBtn__btn a:hover span:before,
.open .spNavBtn__btn a:hover span:after {
	width: 40% !important;
}

.spNavBtn__btn a:hover span:before {
	top: 40%;
}

.spNavBtn__btn a:hover span:after {
	top: 60%;
}

.open .spNavBtn__btn a {
	color: #747474;
	background: #747474;
}

#spNavBtn {
	display: none;
}

/**
 * #Footer
 */

footer {
	padding-bottom: 500px;
	text-align: center;
	background: url(../img/top/fv_bg.webp) center bottom no-repeat;
	background-size: 100% auto;
}

.footer-logo {
	width: 172px;
	margin-right: auto;
	margin-bottom: 20px;
	margin-left: auto;
}

.footer-corp_name {
	font-weight: 500;
	margin-bottom: 25px;
}

.footer-corp_address {
	font-size: 1.4rem;
	margin-bottom: 45px;
}

.copyright {
	font-size: 1.4rem;
	text-align: center;
}

.sp-fixed_menu {
	position: fixed;
	z-index: 10;
	bottom: 0;
	left: 0;
	width: 100%;
	box-shadow: 0 0 20px rgba(0, 0, 0, .3);
}

.sp-fixed_menu ul {
	display: -ms-flexbox;
	display: flex;
	box-lines: multiple;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.sp-fixed_menu ._shop,
.sp-fixed_menu ._map {
	font-size: 1.2rem;
	width: 25%;
	background: #31bfdb;
}

.sp-fixed_menu ._shop a,
.sp-fixed_menu ._map a {
	padding-top: 37px;
	background: url(../img/common/icon_shop.webp) center top 10px no-repeat;
	background-size: 28px auto;
}

.sp-fixed_menu ._map {
	background: #3b578a;
}

.sp-fixed_menu ._map a {
	background-image: url(../img/common/icon_map.webp);
}

.sp-fixed_menu ._contact {
	font-size: 1.6rem;
	width: 50%;
	background: #0e701e;
}

.sp-fixed_menu ._contact a {
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	box-lines: multiple;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.sp-fixed_menu ._contact a span {
	padding-left: 20px;
	background: url(../img/common/ar_white.webp) center left no-repeat;
	background-size: 15px auto;
}

.sp-fixed_menu a {
	display: block;
	height: 60px;
	text-align: center;
	color: #fff;
}

.page_top {
	position: fixed;
	z-index: 10;
	right: .71429vw;
	bottom: .71429vw;
	transition: all .3s ease-out;
	opacity: 0;
}

.scrolled .page_top {
	opacity: 1;
}

.page_top a {
	position: relative;
	display: block;
	width: 3.57143vw;
	height: 3.57143vw;
	text-indent: -9999px;
	border-radius: 50%;
	background: #f9dbd9;
	background: linear-gradient(90deg, #f9dbd9 0%, #de5c53 100%);
}

.page_top a:after {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 1.42857vw;
	content: '';
	-ms-transform: translate(-50%, -50%) rotate(-90deg);
	transform: translate(-50%, -50%) rotate(-90deg);
	background: url(../img/common/arr_white.webp) center center no-repeat;
	background-size: 80% auto;
	aspect-ratio: 1 / 1;
}

.page_top a:hover {
	opacity: 1;
}

.page_top a:hover:after {
	animation-name: pagetop_move;
	animation-duration: .3s;
	animation-timing-function: ease-out;
	animation-iteration-count: 1;
	animation-direction: normal;
	animation-fill-mode: backwards;
}

/**
 * #Main
 */

/*------------ common ------------*/

.js-slidein._slide {
	transition: all .3s ease-out;
	-webkit-clip-path: polygon(0 0, 0% 0%, 0% 100%, 0% 100%);
	clip-path: polygon(0 0, 0% 0%, 0% 100%, 0% 100%);
}

.js-slidein._slide._on {
	-webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
	clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
}

.bg1 {
	background: #f9f2e2;
}

/*------------ top ------------*/

.top-fv {
	position: relative;
	overflow: hidden;
	height: 900px;
	background: url(../img/top/fv_bg.webp) center bottom no-repeat;
	background-size: 100% auto;
}

.top-fv_txt {
	font-size: 5rem;
	font-weight: 700;
	line-height: 1.3;
	position: absolute;
	top: 130px;
	left: 50%;
	color: #d82427;
}

.top-fv_txt > span {
	position: relative;
	display: inline-block;
	margin-bottom: 15px;
	vertical-align: top;
}

.top-fv_txt > span:after {
	position: absolute;
	z-index: 1;
	bottom: 0;
	left: 0;
	display: block;
	width: 0;
	height: 100%;
	content: '';
	background: #d82427;
}

.top-fv_txt ._txt1 {
	margin-left: 30px;
	transition: all .3s ease-out .6s;
	opacity: 0;
}

._load .top-fv_txt ._txt1 {
	opacity: 1;
}

.top-fv_txt ._txt2 {
	margin-left: 15px;
	transition: all .3s ease-out .8s;
	opacity: 0;
}

._load .top-fv_txt ._txt2 {
	opacity: 1;
}

.top-fv_txt ._txt3 {
	transition: all .3s ease-out 1s;
	opacity: 0;
}

._load .top-fv_txt ._txt3 {
	opacity: 1;
}

.top-fv_arr {
	position: absolute;
	z-index: -1;
	top: 57%;
	left: 50%;
	width: 1000px;
	-ms-transform: rotate(-78deg) translate(0, -345%);
	transform: rotate(-78deg) translate(0, -345%);
}

.top-fv_arr > span {
	display: block;
	width: 1000px;
	height: 65px;
	margin-bottom: 5px;
	background: url(../img/common/icon_arr.webp) center right no-repeat;
	background-size: auto 100%;
}

.top-fv_arr > span._arr1 {
	margin-left: -1240px;
	transition: all .5s ease-out;
}

._load .top-fv_arr > span._arr1 {
	margin-left: -240px;
}

.top-fv_arr > span._arr2 {
	margin-left: -1117px;
	transition: all .5s ease-out .2s;
}

._load .top-fv_arr > span._arr2 {
	margin-left: -117px;
}

.top-fv_arr > span._arr3 {
	margin-left: -1000px;
	transition: all .5s ease-out .4s;
}

._load .top-fv_arr > span._arr3 {
	margin-left: 0;
}

.top-greeting_box {
	position: relative;
	overflow: hidden;
	padding: 100px;
	border-radius: 20px;
	background: #f9f2e2;
}

.top-greeting_box_txt {
	position: relative;
	z-index: 2;
	width: 460px;
}

.top-greeting_img {
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	width: 60%;
	height: 100%;
}

.top-greeting_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.top-greeting_img:after {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 70%;
	height: 100%;
	content: '';
	background: #f9f2e2;
	background: linear-gradient(90deg, #f9f2e2 0%, rgba(249, 242, 226, 0) 100%);
}

.top-bus {
	position: relative;
	overflow: hidden;
}

.top-bus .section {
	position: relative;
	z-index: 2;
}

.top-bus ._arr {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 50%;
	width: 289px;
	-ms-transform: translate(-160%, -6%) rotate(35deg);
	transform: translate(-160%, -6%) rotate(35deg);
}

.top-bus .flex {
	-ms-flex-align: start;
	align-items: flex-start;
}

.top-bus_box {
	position: relative;
	overflow: hidden;
	padding: 60px;
	padding-top: 350px;
	border-radius: 20px;
	background: url(../img/top/bus_img1.webp) center top no-repeat;
	background-size: cover;
}

.top-bus_box._box2 {
	margin-top: 295px;
	background-image: url(../img/top/bus_img2.webp);
}

.top-bus_box:after {
	position: absolute;
	z-index: 1;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 70%;
	content: '';
	background: #d82427;
	background: linear-gradient(0deg, rgba(216, 36, 39, .9) 70%, rgba(216, 36, 39, 0) 100%);
}

.top-bus_box ._inner {
	position: relative;
	z-index: 2;
	color: #fff;
}

.top-fea_box {
	position: relative;
	padding: 60px;
	padding-left: 200px;
	border-radius: 20px;
	background: #fff;
}

.top-fea_box_num {
	font-size: 8rem;
	line-height: 1;
	position: absolute;
	top: 50%;
	left: 50px;
	padding-top: 30px;
	padding-right: 35px;
	padding-bottom: 30px;
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	color: #d82427;
	border-right: 1px solid #cfcfcf;
}

.top-company {
	display: -ms-flexbox;
	display: flex;
	box-lines: multiple;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.top-company .section {
	width: 70%;
}

.top-company_img {
	width: 25%;
}

.top-company_img img {
	width: 100%;
	height: 100%;
	border-radius: 20px 0 0 20px;
	object-fit: cover;
}

.top-news_item {
	margin-bottom: 20px;
}

.top-news_item a {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	padding: 25px 65px;
	border-radius: 100px;
	background: #fff;
	box-lines: multiple;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.top-news_item a:after {
	position: absolute;
	top: 50%;
	right: 30px;
	display: block;
	width: 25px;
	content: '';
	transition: all .3s ease-out;
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	background: url(../img/common/arr.webp) center center no-repeat;
	background-size: contain;
	aspect-ratio: 25 / 5;
}

.top-news_item a:hover {
	opacity: 1;
	background: rgba(216, 36, 39, .1);
}

._archive .top-news_item a:hover {
	background: rgba(216, 36, 39, .1);
}

.top-news_item a:hover:after {
	right: 25px;
}

._archive .top-news_item a {
	background: #f9f2e2;
}

.top-news_item_time {
	font-weight: 700;
	position: relative;
	width: 95px;
}

.top-news_item_time:after {
	position: absolute;
	top: 50%;
	right: 0;
	display: block;
	width: 1px;
	height: 48px;
	content: '';
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	background: #cfcfcf;
}

.top-news_item_ttl {
	font-weight: 500;
	overflow: hidden;
	width: calc(100% - 95px - 20px); /* 溢れた部分を「...」にする */
	white-space: nowrap; /* 溢れた部分を隠す */
	text-overflow: ellipsis;
}

.top-img_bg {
	position: relative;
	height: 480px;
	background: url(../img/top/img_bg.webp) center center no-repeat fixed;
	background-size: 100% auto;
}

.top-img_bg ._arr {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 328px;
	-ms-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
}

.post_content h2 {
	font-size: 2.4rem;
	font-weight: 700;
	clear: both;
	margin-top: 35px;
	padding: 15px 30px;
	background: #f9f2e2;
}

.post_content h3 {
	font-size: 22px;
	font-weight: 700;
	clear: both;
	margin-top: 35px;
	padding-bottom: 10px;
	border-bottom: 1px solid #d82427;
}

.post_content h4 {
	font-size: 21px;
	font-weight: 700;
	position: relative;
	clear: both;
	margin-top: 35px;
	padding-bottom: 10px;
}

.post_content h4:after {
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	width: 100px;
	height: 1px;
	content: '';
	background: #d82427;
}

.post_content h5 {
	font-size: 19px;
	font-weight: bold;
	clear: both;
	margin-top: 35px;
	padding-bottom: 10px;
}

.post_content h6 {
	font-size: 18px;
	font-weight: 700;
	clear: both;
	margin-top: 35px;
	padding-bottom: 10px;
}

.post_content p {
	clear: both;
	margin-top: 20px;
}

.post_content ul,
.post_content ol {
	margin-top: 20px;
}

.post_content ul li,
.post_content ol li {
	line-height: 1.6;
	position: relative;
	margin-bottom: 5px;
	padding-left: 15px;
}

.post_content ul li:after,
.post_content ol li:after {
	position: absolute;
	top: 8px;
	left: 0;
	display: block;
	width: 10px;
	content: '';
	border-radius: 50%;
	background: #d82427;
	aspect-ratio: 1 / 1;
}

.post_content img,
.post_content video,
.post_content iframe {
	max-width: auto;
	height: auto;
}

.post_content strong {
	font-weight: bold;
}

.post_content .alignleft {
	float: left;
	margin: .5em 1em .5em 0;
}

.post_content .aligncenter {
	display: block;
	margin-right: auto;
	margin-left: auto;
}

.post_content .alignright {
	float: right;
	margin: .5em 0 .5em 1em;
}

.post_content a {
	text-decoration: underline;
	color: #d82427;
}

.post_content .ez-toc-list li:before {
	content: none;
}

.post_content .youtube {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}

.post_content .youtube iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}

.post_content table {
	line-height: 1.6;
	width: 100%;
}

.post_content table th,
.post_content table td {
	padding: 10px;
}

.pager {
	display: -ms-flexbox;
	display: flex;
	box-lines: multiple;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-ms-flex-pack: center;
	justify-content: center;
}

.pager .page-numbers {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	min-width: 40px;
	height: 40px;
	margin: 0 4px;
	text-align: center;
	vertical-align: top;
	border-radius: 5px;
	background: #f1f1f1;
	box-lines: multiple;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.pager .page-numbers:hover,
.pager .page-numbers.current {
	opacity: 1;
	color: #fff;
	background: #d82427;
}

.pager .page-numbers.current:after {
	content: none;
}

.pager .page-numbers.prev,
.pager .page-numbers.next {
	position: relative;
	transition: all .2s ease-out;
	text-indent: -9999px;
}

.pager .page-numbers.prev:after,
.pager .page-numbers.next:after {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 30%;
	height: 30%;
	content: '';
	transition: all .15s ease-out;
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background: url(../img/common/arr.webp) center center no-repeat;
	background-size: 100% auto;
}

.pager .page-numbers.prev:hover:after,
.pager .page-numbers.next:hover:after {
	background-image: url(../img/common/arr_white.webp);
}

.pager .page-numbers.prev {
	-ms-transform: scale(-1, 1);
	transform: scale(-1, 1);
}

.wp-paging .btn2 a {
	width: 14.28571vw;
}

.wp-paging:after {
	display: block;
	visibility: hidden;
	clear: both;
	height: 0;
	content: '.';
}

.wp-paging .prev {
	float: left;
	text-align: right;
}

.wp-paging .prev a:after {
	left: 1.07143vw;
	-ms-transform: translate(0, -50%) scale(-1, 1);
	transform: translate(0, -50%) scale(-1, 1);
}

.wp-paging .next {
	float: right;
}

.wp-paging .next a:after {
	right: 1.07143vw;
	left: auto;
}

.frame-wrapper__video {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
}

.frame-wrapper__video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/**
 * #Breadcrumbs
 */

.breadcrumb {
	transition: all .3s ease-out .5s;
	-webkit-clip-path: polygon(0 0, 0% 0, 0% 100%, 0 100%);
	clip-path: polygon(0 0, 0% 0, 0% 100%, 0 100%);
}

.breadcrumb._on {
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.breadcrumb ul {
	display: -ms-flexbox;
	display: flex;
	box-lines: multiple;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}

.breadcrumb li {
	font-size: 1.3rem;
	line-height: 1;
	position: relative;
	position: relative;
	margin-right: 1.07143vw;
	padding-left: 1vw;
	vertical-align: top;
}

.breadcrumb li:after {
	position: absolute;
	top: 50%;
	left: 0;
	display: block;
	width: .5vw;
	content: '';
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	background: url(../img/common/arr.webp) center center no-repeat;
	background-size: 100% auto;
	aspect-ratio: 1 / 1;
}

.breadcrumb li a {
	text-decoration: underline;
}

/**
 * #btn
 */

.btn a,
.btn input[type='submit'],
.btn input[type='button'],
.btn button {
	font-weight: 500;
	line-height: 1.5;
	position: relative;
	display: inline-block;
	width: 420px;
	padding: 25px 40px;
	text-align: center;
	vertical-align: top;
	color: #fff;
	border-radius: 100px;
	background: #d82427;
}

.btn a:after,
.btn input[type='submit']:after,
.btn input[type='button']:after,
.btn button:after {
	position: absolute;
	top: 50%;
	right: 30px;
	display: block;
	width: 25px;
	content: '';
	transition: all .3s ease-out;
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	background: url(../img/common/arr_white.webp) center center no-repeat;
	background-size: contain;
	aspect-ratio: 25 / 5;
}

.btn a:hover,
.btn input[type='submit']:hover,
.btn input[type='button']:hover,
.btn button:hover {
	opacity: 1;
	color: #d82427;
	background: rgba(216, 36, 39, .1);
}

.btn a:hover:after,
.btn input[type='submit']:hover:after,
.btn input[type='button']:hover:after,
.btn button:hover:after {
	right: 25px;
	background-image: url(../img/common/arr.webp);
}

.btn input[type='submit'] {
	padding-top: 1.42857vw;
	padding-bottom: 1.42857vw;
	color: #fff;
	background: #31bfdb;
}

.btn button {
	overflow: hidden;
	cursor: pointer;
	border: none;
	background: none;
}

.btn .wpcf7-previous {
	border: none;
}

.btn2 a {
	font-weight: 500;
	line-height: 1.5;
	position: relative;
	display: inline-block;
	padding: 20px 40px;
	text-align: center;
	vertical-align: top;
	border-radius: 100px;
	background: rgba(216, 36, 39, .1);
}

.btn2 a:after {
	position: absolute;
	top: 50%;
	right: 40px;
	display: block;
	width: 25px;
	content: '';
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	background: url(../img/common/arr.webp) center center no-repeat;
	background-size: contain;
	aspect-ratio: 25 / 5;
}

.btn2 a:hover {
	opacity: 1;
	color: #fff;
	background: #d82427;
}

.btn2 a:hover:after {
	background-image: url(../img/common/arr_white.webp);
}

.pageTtl {
	line-height: 1.5;
	position: relative;
	display: -ms-flexbox;
	display: flex;
	height: 14.28571vw;
	margin-right: 50px;
	margin-left: 50px;
	color: #fff;
	border-radius: 30px;
	background: #d82427 url(../img/top/icon_arr3.webp) right 100px bottom no-repeat;
	background-size: 150px auto;
	box-lines: multiple;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.pageTtl .section {
	position: relative;
	z-index: 2;
}

.pageTtl .eng {
	font-size: 1.42857vw;
}

.pageTtl .jpn {
	font-size: 2.85714vw;
	font-weight: bold;
}

.pageTtl_bg {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.pageTtl_bg img {
	width: 100%;
	height: 100%;
	opacity: .3;
	object-fit: cover;
}

.pageTtl-recruit {
	width: 70vw;
	padding-top: 5.71429vw;
	padding-bottom: 5.71429vw;
	border-radius: 0 200px 200px 0;
	background: #cc8181;
	background: linear-gradient(63deg, rgba(204, 129, 129, .7) 0%, rgba(80, 163, 218, .7) 100%);
}

.heading1 {
	font-size: 3.2rem;
	font-weight: 700;
	margin-bottom: 20px;
}

.heading2 {
	font-size: 3.5rem;
	font-weight: 700;
	position: relative;
	margin-bottom: 20px;
	padding-left: 35px;
}

.heading2:after {
	position: absolute;
	top: 20px;
	left: 10px;
	display: block;
	width: 16px;
	content: '';
	border-radius: 50%;
	background: #d82427;
	aspect-ratio: 1 / 1;
}

.heading3 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 15px;
}

.heading_eng {
	font-size: 20rem;
	line-height: .7;
	color: #f9f2e2;
}

.heading_eng._white {
	color: #fff;
}

.scroll_icon {
	display: none;
}

/**
 * #Col
 */

.section {
	padding-right: 50px;
	padding-left: 50px;
}

.w1100 {
	width: 78.57143vw;
	margin-right: auto;
	margin-left: auto;
}

.w600 {
	width: 42.85714vw;
	margin-right: auto;
	margin-left: auto;
}

.w700 {
	width: 700px;
	margin-right: auto;
	margin-left: auto;
}

.w800 {
	width: 800px;
	margin-right: auto;
	margin-left: auto;
}

.w900 {
	width: 64.28571vw;
	margin-right: auto;
	margin-left: auto;
}

.flex {
	display: -ms-flexbox;
	display: flex;
	box-lines: multiple;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.flex.align-c {
	-ms-flex-align: center;
	align-items: center;
}

.flex._revease {
	flex-direction: row-reverse;
	-ms-flex-direction: row-reverse;
}

.flex._revease .grid2 {
	margin-right: 0;
}

.flex._revease .grid2:nth-child(2n) {
	margin-right: 6%;
}

.flex._start {
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.flex._center {
	-ms-flex-pack: center;
	justify-content: center;
}

.flex._between {
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.flex._mb > * {
	margin-bottom: 3.57143vw;
}

.flex._mb-s > * {
	margin-bottom: 1.78571vw;
}

.tab-dblock {
	display: -ms-flexbox;
	display: flex;
}

.grid2 {
	width: 47%;
	margin-right: 6%;
}

.grid2:nth-child(2n) {
	margin-right: 0;
}

.grid3 {
	width: 31%;
	margin-right: 3.5%;
}

.grid3:nth-child(3n) {
	margin-right: 0;
}

.grid4 {
	width: 22%;
	margin-right: 4%;
}

.grid4:nth-child(4n) {
	margin-right: 0;
}

.grid7 {
	width: 65.5%;
}

.grid2_small {
	width: 30%;
}

.grid2_wide {
	width: 65%;
}

/**
 * #Position
 */

.center {
	text-align: center;
}

.right {
	text-align: right;
}

.left {
	text-align: left;
}

/**
 * #Margin
 */

.mb-xs {
	margin-bottom: 5px;
}

.mb-s {
	margin-bottom: 10px;
}

.mb-m {
	margin-bottom: 30px;
}

.mb-mm {
	margin-bottom: 50px;
}

.mb-l {
	margin-bottom: 100px;
}

.mb-xl {
	margin-bottom: 150px;
}

.mb-xxl {
	margin-bottom: 210px;
}

.pb-xs {
	padding-bottom: 5px;
}

.pb-s {
	padding-bottom: 10px;
}

.pb-m {
	padding-bottom: 30px;
}

.pb-mm {
	padding-bottom: 50px;
}

.pb-l {
	padding-bottom: 100px;
}

.pb-xl {
	padding-bottom: 150px;
}

.pb-xxl {
	padding-bottom: 210px;
}

.pt-xs {
	padding-top: 5px;
}

.pt-s {
	padding-top: 10px;
}

.pt-m {
	padding-top: 30px;
}

.pt-mm {
	padding-top: 50px;
}

.pt-l {
	padding-top: 100px;
}

.pt-xl {
	padding-top: 150px;
}

.pt-xxl {
	padding-top: 210px;
}

.ptb-l {
	padding-top: 100px;
	padding-bottom: 100px;
}

/**
 * #Text
 */

.text_s {
	font-size: 1.07143vw;
	line-height: 1.7;
}

.text_m {
	font-size: 1.28571vw;
}

.text_l {
	font-size: 1.42857vw;
	line-height: 1.7;
}

.text_red {
	color: #de2900;
}

.text_blue {
	color: #31bfdb;
}

.bold {
	font-weight: 700;
}

a.link_orange {
	text-decoration: underline;
	color: #ff8c00;
}

.lh15 {
	line-height: 1.5;
}

.lh16 {
	line-height: 1.6;
}

.lh18 {
	line-height: 1.8;
}

/**
 * #Display
 */

.tablet {
	display: none;
}

.pc {
	display: inline;
}

.map iframe {
	width: 100%;
	height: 29.64286vw;
	vertical-align: top;
}

/*-------------------------------*/

.icon_tel {
	font-size: 25px;
	font-size: 2.5rem;
}

.icon_tel span {
	position: relative;
	padding-left: 30px;
}

.icon_tel span:after {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 23px;
	height: 24px;
	content: '';
	background: url(../img/common/icon_tel.webp) center center no-repeat;
	background-size: 100% auto;
}

.icon_time span {
	position: relative;
	padding-left: 30px;
}

.icon_time span:after {
	position: absolute;
	top: -6px;
	left: 0;
	display: block;
	width: 26px;
	height: 26px;
	content: '';
	background: url(../img/common/icon_time.webp) center center no-repeat;
	background-size: 100% auto;
}

.icon_map span {
	position: relative;
	padding-left: 37px;
}

.icon_map span:after {
	position: absolute;
	top: -6px;
	left: 0;
	display: block;
	width: 33px;
	height: 26px;
	content: '';
	background: url(../img/common/icon_map.webp) center center no-repeat;
	background-size: 100% auto;
}

.eng {
	font-family: 'Baloo Bhaijaan 2', sans-serif;
	font-weight: 500;
	font-style: normal;
	font-optical-sizing: auto;
}

.table-1 {
	width: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

.table-1 th,
.table-1 td {
	line-height: 1.6;
	padding: 26px 0;
	vertical-align: top;
	border-bottom: 1px solid #cfcfcf;
}

.table-1 th {
	font-weight: 700;
}

.w90p {
	padding-right: 5%;
	padding-left: 5%;
}

.top-price_detail {
	padding-top: 250px;
	padding-bottom: 250px;
	text-align: center;
	background: #ccc;
}

@media only screen and (min-width: 768px) {

.header-nav {
	position: fixed;
	z-index: 10;
	top: 30px;
	right: 50px;
	padding: 20px 20px 15px;
	border-radius: 10px;
	background: rgba(255, 255, 255, .7);
}

.headerNav__list {
	display: -ms-flexbox;
	display: flex;
	box-lines: multiple;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.headerNav__list > li {
	margin-left: 45px;
}

.headerNav__list > li:first-child {
	margin-left: 0;
}

.headerNav__list > li > a {
	font-weight: 500;
	line-height: 1.5;
	position: relative;
	z-index: 2;
	display: block;
	overflow: visible;
	padding-top: 13px;
}

.headerNav__list > li > a:after {
	position: absolute;
	top: 0;
	left: 50%;
	display: block;
	width: 11px;
	content: '';
	-ms-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	border-radius: 50%;
	background: #d82427;
	aspect-ratio: 1 / 1;
}

.headerNav__list > li > a:before {
	position: absolute;
	z-index: 1;
	bottom: 0;
	left: 0;
	display: block;
	width: 0;
	height: 60%;
	content: '';
	background: #d82427;
}

.headerNav__list > li > a:hover {
	opacity: 1;
	color: #d82427;
}

.headerNav__list > li > a:hover:before {
	width: 100%;
	-ms-transform: scaleX(0);
	transform: scaleX(0);
	-ms-transform-origin: left center;
	transform-origin: left center;
	animation: lineAnim .3s ease-in-out 1;
}

.headerNav__list > li > a:hover:after {
	animation: floating 1s ease-in-out infinite;
}

.headerNav__list > li > a._scrolled {
	color: #d82427;
}

}

@media only screen and (min-width: 768px) and (max-width: 1000px) {

.header-nav {
	top: 3vw;
	right: 5vw;
	padding: 2vw 2vw 1.5vw;
	border-radius: 1vw;
}

.headerNav__list > li {
	margin-left: 4.5vw;
}

.headerNav__list > li > a {
	padding-top: 1.3vw;
}

.headerNav__list > li > a:after {
	width: 1.1vw;
}

}

@media only screen and (max-width: 1000px) {

body {
	font-size: 1.6vw;
}

header {
	padding-top: 3.8vw;
	padding-bottom: 3.8vw;
}

.header-logo {
	width: 17.2vw;
	margin-left: 5vw;
}

.top-fv {
	height: 90vw;
}

.top-fv_txt {
	top: 13vw;
}

.top-fv_txt > span {
	margin-bottom: 1.5vw;
}

.top-fv_txt ._txt1 {
	margin-left: 3vw;
}

.top-fv_txt ._txt2 {
	padding-left: 1.5vw;
}

.top-fv_arr {
	width: 100vw;
}

.top-fv_arr > span {
	width: 100vw;
	height: 6.5vw;
	margin-bottom: .5vw;
}

.top-fv_arr > span._arr1 {
	margin-left: -124vw;
}

._load .top-fv_arr > span._arr1 {
	margin-left: -24vw;
}

.top-fv_arr > span._arr2 {
	margin-left: -111.7vw;
}

._load .top-fv_arr > span._arr2 {
	margin-left: -11.7vw;
}

.top-fv_arr > span._arr3 {
	margin-left: -100vw;
}

.top-greeting_box {
	padding: 10vw;
	border-radius: 2vw;
}

.top-greeting_box_txt {
	width: 46vw;
}

.top-bus ._arr {
	width: 28.9vw;
}

.top-bus_box {
	padding: 6vw;
	padding-top: 35vw;
	border-radius: 2vw;
}

.top-bus_box._box2 {
	margin-top: 29.5vw;
}

.top-fea_box {
	padding: 6vw;
	padding-left: 20vw;
	border-radius: 2vw;
}

.top-fea_box_num {
	font-size: 8vw;
	left: 5vw;
	padding-top: 3vw;
	padding-right: 3.5vw;
	padding-bottom: 3vw;
}

.top-news_item {
	margin-bottom: 2vw;
}

.top-news_item a {
	padding: 2.5vw 6.5vw;
}

.top-news_item a:after {
	right: 3vw;
	width: 2.5vw;
}

.top-news_item a:hover:after {
	right: 2.5vw;
}

.top-news_item_time {
	width: 9.5vw;
}

.top-news_item_time:after {
	height: 4.8vw;
}

.top-news_item_ttl {
	width: calc(100% - 11.5vw);
}

.top-img_bg {
	height: 48vw;
}

.top-img_bg ._arr {
	width: 32.8vw;
}

.post_content h2 {
	font-size: 2.4vw;
	margin-top: 3.5vw;
	padding: 1.5vw 3vw;
}

.post_content h3 {
	font-size: 2.2vw;
	margin-top: 3.5vw;
	padding-bottom: 1vw;
}

.post_content h4 {
	font-size: 1.5vw;
	margin-top: 2.5vw;
	padding-bottom: .71429vw;
}

.post_content h4:after {
	width: 10vw;
}

.post_content h5 {
	font-size: 1.35714vw;
	margin-top: 2.5vw;
	padding-bottom: .71429vw;
}

.post_content h6 {
	font-size: 1.28571vw;
	margin-top: 2.5vw;
	padding-bottom: .71429vw;
}

.post_content p {
	margin-top: 2vw;
}

.post_content ul,
.post_content ol {
	margin-top: 2vw;
}

.post_content ul li,
.post_content ol li {
	margin-bottom: .5vw;
	padding-left: 1.5vw;
}

.post_content ul li:after,
.post_content ol li:after {
	top: .8vw;
	width: 1vw;
}

.pager .page-numbers {
	min-width: 4vw;
	height: 4vw;
	margin: 0 .5vw;
}

.mb-xs {
	margin-bottom: .35714vw;
}

.mb-s {
	margin-bottom: .71429vw;
}

.mb-m {
	margin-bottom: 2.14286vw;
}

.mb-mm {
	margin-bottom: 3.57143vw;
}

.mb-l {
	margin-bottom: 7.14286vw;
}

.mb-xl {
	margin-bottom: 10.71429vw;
}

.mb-xxl {
	margin-bottom: 15vw;
}

.pb-xs {
	padding-bottom: .35714vw;
}

.pb-s {
	padding-bottom: .71429vw;
}

.pb-m {
	padding-bottom: 2.14286vw;
}

.pb-mm {
	padding-bottom: 3.57143vw;
}

.pb-l {
	padding-bottom: 7.14286vw;
}

.pb-xl {
	padding-bottom: 10.71429vw;
}

.pb-xxl {
	padding-bottom: 15vw;
}

.pt-xs {
	padding-top: .35714vw;
}

.pt-s {
	padding-top: .71429vw;
}

.pt-m {
	padding-top: 2.14286vw;
}

.pt-mm {
	padding-top: 3.57143vw;
}

.pt-l {
	padding-top: 7.14286vw;
}

.pt-xl {
	padding-top: 10.71429vw;
}

.pt-xxl {
	padding-top: 15vw;
}

}

@media only screen and (max-width: 830px) {

.w800 {
	width: auto;
	margin-right: 4.7619vw;
	margin-left: 4.7619vw;
}

}

@media only screen and (max-width: 768px) {

body {
	font-size: 3.80952vw;
}

header {
	padding-top: 7.14286vw;
	padding-bottom: 7.14286vw;
}

.header-logo {
	width: 30vw;
	margin-left: 7.14286vw;
}

.hab-nav {
	position: fixed;
	z-index: 109;
	top: 2.38095vw;
	left: 100vw;
	overflow: auto;
	width: calc(100vw - 2.38095vw * 2);
	height: calc(100vh - 2.38095vw * 2);
	padding-top: 14.28571vw;
	padding-right: 9.52381vw;
	padding-left: 9.52381vw;
	transition: all .2s ease-out;
	border-radius: 7.14286vw;
	background: rgba(255, 255, 255, .5);
	-webkit-overflow-scrolling: touch;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

.open .hab-nav {
	left: 2.38095vw;
}

.headerNav {
	margin-bottom: 9.52381vw;
}

.headerNav__list {
	margin-bottom: 7.14286vw;
	text-align: left;
}

.headerNav__list > li {
	border-bottom: 1px solid #cfcfcf;
}

.headerNav__list > li.tablet {
	display: block;
}

.headerNav__list > li > a {
	font-size: 4.28571vw;
	font-weight: bold;
	position: relative;
	display: block;
	padding-top: 3.57143vw;
	padding-bottom: 3.57143vw;
	padding-left: 7.14286vw;
}

.headerNav__list > li > a:after {
	position: absolute;
	top: 50%;
	left: 0;
	display: block;
	width: 4.7619vw;
	content: '';
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	background: url(../img/common/arr.webp) center right no-repeat;
	background-size: auto 100%;
	aspect-ratio: 4 / 1;
}

.headerNav__list > li ._sub {
	padding-left: 7.14286vw;
}

.headerNav__list > li ._sub li {
	border-top: 1px dotted rgba(49, 191, 219, .3);
}

.headerNav__list > li ._sub li a {
	position: relative;
	display: block;
	padding: 2.38095vw;
	padding-left: 5.95238vw;
}

.headerNav__list > li ._sub li a:after {
	position: absolute;
	top: 50%;
	left: 2.38095vw;
	display: block;
	width: 2.14286vw;
	content: '';
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	background: url(../img/common/arr_blue.webp) center center no-repeat;
	background-size: auto 100%;
	aspect-ratio: 1 / 1;
}

.hab-menu__only {
	display: block;
}

.hab-menu_btn.btn2 a,
.hab-menu_btn.btn3 a {
	display: block;
	width: auto;
}

.spNavBtn__btn a {
	width: 16.66667vw;
	height: 16.66667vw;
}

#spNavBtn {
	display: block;
}

footer {
	padding-bottom: 37.2381vw;
}

.footer-logo {
	width: 30vw;
	margin-bottom: 4.7619vw;
}

.footer-corp_address {
	font-size: 3.33333vw;
	margin-bottom: 10.71429vw;
}

.copyright {
	font-size: 3.33333vw;
}

.page_top {
	right: 2.38095vw;
	bottom: 21.42857vw;
}

.page_top a {
	width: 11.90476vw;
	height: 11.90476vw;
}

.page_top a:after {
	width: 4.7619vw;
}

.top-fv {
	height: 107.14286vw;
}

.top-fv_txt {
	font-size: 5.95238vw;
	top: 11.90476vw;
}

.top-fv_txt ._txt1 {
	margin-left: 3.57143vw;
}

.top-fv_txt ._txt2 {
	margin-left: 1.78571vw;
}

.top-fv_arr {
	top: 57%;
	width: 119.04762vw;
}

.top-fv_arr > span {
	width: 119.04762vw;
	height: 7.7381vw;
	margin-bottom: .59524vw;
}

.top-fv_arr > span._arr1 {
	margin-left: -28.57143vw;
}

.top-fv_arr > span._arr2 {
	margin-left: -13.92857vw;
}

.top-greeting_box {
	padding: 7.14286vw;
	padding-bottom: 60vw;
	border-radius: 4.7619vw;
}

.top-greeting_box_txt {
	width: auto;
}

.top-greeting_img {
	top: auto;
	bottom: 0;
	width: 100%;
	height: 70vw;
}

.top-greeting_img:after {
	width: 100%;
	height: 70%;
	background: linear-gradient(180deg, #f9f2e2 0%, rgba(249, 242, 226, 0) 100%);
}

.top-bus ._arr {
	width: 34.16667vw;
	-ms-transform: translate(-115%, -1%) rotate(16deg);
	transform: translate(-115%, -1%) rotate(16deg);
}

.top-bus_box {
	padding: 7.14286vw;
	padding-top: 47.61905vw;
}

.top-bus_box._box2 {
	margin-top: 0;
}

.top-bus_box:after {
	height: 80%;
}

.top-fea_box {
	padding: 7.14286vw;
	padding-top: 21.42857vw;
}

.top-fea_box_num {
	font-size: 11.90476vw;
	top: 4.7619vw;
	left: 50%;
	padding-top: 0;
	padding-right: 4.7619vw;
	padding-bottom: 0;
	padding-left: 4.7619vw;
	-ms-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	border-right: none;
	border-bottom: 1px solid #cfcfcf;
}

.top-company {
	display: block;
	margin-bottom: 0 !important;
}

.top-company .section {
	width: auto;
	padding-top: 0 !important;
}

.top-company_img {
	width: auto;
	height: 59.52381vw;
}

.top-company_img img {
	border-radius: 0;
}

.top-news_item a {
	display: block;
	padding: 4.7619vw;
	padding-right: 9.52381vw;
	border-radius: 2.38095vw;
}

.top-news_item a:after {
	right: 4.7619vw;
	width: 5.95238vw;
}

.top-news_item_time {
	width: auto;
}

.top-news_item_time:after {
	content: none;
}

.top-news_item_ttl {
	overflow: visible;
	width: auto;
	white-space: wrap;
	text-overflow: clip;
}

.top-img_bg {
	height: 71.42857vw;
	background-attachment: scroll;
}

.top-img_bg ._arr {
	width: 35.71429vw;
}

.post_content h2 {
	font-size: 4.57143vw;
	margin-top: 6.66667vw;
	padding: 2.85714vw 5.71429vw;
}

.post_content h3 {
	font-size: 4.19048vw;
	margin-top: 6.66667vw;
	padding-bottom: 1.90476vw;
}

.post_content h4 {
	font-size: 4vw;
	margin-top: 6.66667vw;
	padding-bottom: 1.90476vw;
}

.post_content h4:after {
	width: 19.04762vw;
}

.post_content h5 {
	font-size: 4.04762vw;
	margin-top: 6.66667vw;
	padding-bottom: 1.90476vw;
}

.post_content h6 {
	font-size: 4.04762vw;
	margin-top: 6.66667vw;
	padding-bottom: 1.90476vw;
}

.post_content p {
	margin-top: 4.7619vw;
}

.post_content ul,
.post_content ol {
	margin-top: 8.33333vw;
}

.post_content ul li,
.post_content ol li {
	margin-bottom: 1.19048vw;
	padding-left: 3.57143vw;
}

.post_content ul li:after,
.post_content ol li:after {
	top: 1.90476vw;
	width: 2.38095vw;
}

.pager .page-numbers {
	min-width: 9.52381vw;
	height: 9.52381vw;
	margin: 0 1.19048vw;
}

.wp-paging .btn2 {
	width: 46%;
}

.wp-paging .btn2 a {
	width: 100%;
}

.wp-paging .prev a:after {
	left: 3.57143vw;
}

.wp-paging .next a:after {
	right: 3.57143vw;
}

.breadcrumb {
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
}

.breadcrumb ul {
	white-space: nowrap;
}

.breadcrumb ul {
	width: auto;
}

.breadcrumb li {
	font-size: 2.85714vw;
	margin-right: 3.57143vw;
	padding-left: 3.33333vw;
}

.breadcrumb li:after {
	width: 2.14286vw;
	height: 2.14286vw;
}

.btn a,
.btn input[type='submit'],
.btn input[type='button'],
.btn button {
	width: 90%;
	padding: 6.19048vw 9.52381vw;
}

.btn a:after,
.btn input[type='submit']:after,
.btn input[type='button']:after,
.btn button:after {
	right: 7.14286vw;
	width: 5.95238vw;
}

.btn2 a {
	width: 90%;
	padding: 4.7619vw 4.7619vw;
}

.btn2 a:after {
	right: 7.14286vw;
	width: 5.95238vw;
}

.pageTtl {
	height: 47.61905vw;
	margin-right: 4.7619vw;
	margin-left: 4.7619vw;
	background-position: right 7.14286vw bottom;
	background-size: 23.80952vw;
}

.pageTtl .eng {
	font-size: 3.09524vw;
}

.pageTtl .jpn {
	font-size: 5.95238vw;
}

.pageTtl-recruit {
	width: 94vw;
	padding-top: 5.95238vw;
	padding-bottom: 5.95238vw;
}

.heading1 {
	font-size: 5.71429vw;
	margin-bottom: 4.7619vw;
}

.heading2 {
	font-size: 5.2381vw;
	margin-bottom: 3.33333vw;
	padding-left: 5.83333vw;
}

.heading2:after {
	top: 2.83333vw;
	left: 1.66667vw;
	width: 2.66667vw;
}

.heading3 {
	font-size: 4.52381vw;
	margin-bottom: 3.57143vw;
}

.heading_eng {
	font-size: 8rem;
}

.scroll {
	position: relative;
	overflow-x: auto;
	overflow-y: hidden;
	width: 100%;
	-webkit-overflow-scrolling: touch;
}

.scroll._sp {
	overflow-x: auto;
	overflow-y: auto;
}

.scroll_icon {
	font-size: 13px;
	font-size: 1.3rem;
	position: absolute;
	top: 30px;
	left: 50%;
	display: block;
	width: 60%;
	height: 70px;
	padding-top: 48px;
	-ms-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	text-align: center;
	pointer-events: none;
	color: #fff;
	border-radius: 5px;
	background: rgba(0, 0, 0, .5) url(../img/common/icon_scroll_arr.png) center 18px no-repeat;
	background-size: auto 20px;
}

.scroll_icon ._icon {
	position: absolute;
	top: 8px;
	left: 50%;
	display: block;
	width: 30px;
	height: 34px;
	margin-left: -15px;
	content: '';
	-ms-transform: translate(-20px, 0);
	transform: translate(-20px, 0);
	animation-name: scroll_animation;
	animation-duration: 2s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	background: url(../img/common/icon_scroll_hand.png) center center no-repeat;
	background-size: auto 100%;
}

.section {
	padding-right: 4.7619vw;
	padding-left: 4.7619vw;
}

.w1100 {
	width: auto;
	padding-right: 4.7619vw;
	padding-left: 4.7619vw;
}

.w700 {
	width: auto;
	margin-right: 4.7619vw;
	margin-left: 4.7619vw;
}

.section .w700 {
	margin-right: 0;
	margin-left: 0;
}

.w900 {
	width: auto;
	margin-right: 4.7619vw;
	margin-left: 4.7619vw;
}

.flex._mb > * {
	margin-bottom: 7.14286vw;
}

.flex._mb-s > * {
	margin-bottom: 4.7619vw;
}

.flex._mb_sp > * {
	margin-bottom: 11.90476vw;
}

.flex._mb_sp > *:last-child {
	margin-bottom: 0;
}

.flex._mb_sp-s > * {
	margin-bottom: 4.7619vw;
}

.flex._mb_sp-s > *:last-child {
	margin-bottom: 0;
}

.tab-dblock {
	display: block;
}

.grid2 {
	width: 100%;
	margin-right: 0;
}

.grid3 {
	width: 100%;
	margin-right: 0;
}

.tab-dblock .grid4 {
	width: 100%;
	margin-right: 0;
}

.grid7 {
	width: 100%;
}

.grid2_small {
	width: 100%;
}

.grid2_wide {
	width: 100%;
}

.mb-xs {
	margin-bottom: 1.19048vw;
}

.mb-s {
	margin-bottom: 1.66667vw;
}

.mb-m {
	margin-bottom: 5vw;
}

.mb-mm {
	margin-bottom: 8.33333vw;
}

.mb-l {
	margin-bottom: 14.28571vw;
}

.mb-xl {
	margin-bottom: 21.42857vw;
}

.mb-xxl {
	margin-bottom: 30vw;
}

.pb-xs {
	padding-bottom: 1.19048vw;
}

.pb-s {
	padding-bottom: 1.66667vw;
}

.pb-m {
	padding-bottom: 5vw;
}

.pb-mm {
	padding-bottom: 8.33333vw;
}

.pb-l {
	padding-bottom: 14.28571vw;
}

.pb-xl {
	padding-bottom: 21.42857vw;
}

.pb-xxl {
	padding-bottom: 30vw;
}

.pt-xs {
	padding-top: 1.19048vw;
}

.pt-s {
	padding-top: 1.66667vw;
}

.pt-m {
	padding-top: 5vw;
}

.pt-mm {
	padding-top: 8.33333vw;
}

.pt-l {
	padding-top: 14.28571vw;
}

.pt-xl {
	padding-top: 21.42857vw;
}

.pt-xxl {
	padding-top: 30vw;
}

.text_s {
	font-size: 3.57143vw;
}

.text_m {
	font-size: 4.28571vw;
}

.text_l {
	font-size: 4.28571vw;
}

.tablet_left {
	text-align: left;
}

.tablet_center {
	text-align: center;
}

.tablet {
	display: inline;
}

.pc {
	display: none;
}

.tablet-dblock {
	display: block;
}

.map iframe {
	height: 71.42857vw;
}

.table-1 th,
.table-1 td {
	display: block;
	padding: 4.7619vw 0;
}

.table-1 th {
	padding-bottom: 0;
	border-bottom: none;
}

}

@media only screen and (max-width: 640px) {

.loader-wrap {
	background-size: 40% auto;
}

.scroll._sp {
	position: relative;
	overflow-x: auto;
	overflow-y: hidden;
	width: 100%;
	-webkit-overflow-scrolling: touch;
}

.sp_left {
	text-align: left;
}

.sp_center {
	text-align: center;
}

}

@media only screen and (max-width: 630px) {

.w600 {
	width: auto;
	margin-right: 4.7619vw;
	margin-left: 4.7619vw;
}

}

@keyframes icon1_anime2 {

0% {
	background-position: left 160% center;
}

100% {
	background-position: left -190% center;
}

}

@keyframes icon2_anime2 {

0% {
	-webkit-clip-path: polygon(100% 0%, 100% 45%, 100% 45%, 100% 100%, 0 100%, 0 0);
	clip-path: polygon(100% 0%, 100% 45%, 100% 45%, 100% 100%, 0 100%, 0 0);
}

45% {
	-webkit-clip-path: polygon(0% 0%, 0% 45%, 100% 45%, 100% 100%, 0 100%, 0 0);
	clip-path: polygon(0% 0%, 0% 45%, 100% 45%, 100% 100%, 0 100%, 0 0);
}

100% {
	-webkit-clip-path: polygon(0% 0%, 0% 45%, 100% 45%, 100% 100%, 0 100%, 0 0);
	clip-path: polygon(0% 0%, 0% 45%, 100% 45%, 100% 100%, 0 100%, 0 0);
}

}

@keyframes lineAnim {

/* 左→右に100%まで伸びる */

0% {
	transform: scaleX(0);
	transform-origin: left center;
}

50% {
	transform: scaleX(1);
	transform-origin: left center;
}

/* 左→右方向に消える */

51% {
	transform: scaleX(1);
	transform-origin: right center;
}

100% {
	transform: scaleX(0);
	transform-origin: right center;
}

}

@keyframes floating {

0% {
	transform: translateY(0) translate(-50%, 0);
}

50% {
	transform: translateY(-15px) translate(-50%, 0);
}

100% {
	transform: translateY(0) translate(-50%, 0);
}

}

@keyframes pagetop_move {

0% {
	top: 50%;
}

50% {
	top: -120%;
}

51% {
	top: 120%;
}

100% {
	top: 50%;
}

}

@keyframes scroll_animation {

0 {
	transform: translate(-20px, 0);
}

50% {
	transform: translate(20px, 0);
}

100% {
	transform: translate(-20px, 0);
}

}


/*# sourceMappingURL=style.css.map */
