@charset "UTF-8";

/*
	Theme Name: Theme
	Author: none
	Version: none
*/

/*================================================================================
base
================================================================================*/

/* global ------------------------------------------------*/

html, body {
    overflow-x: hidden;
}

body {
    color: #3e3a39;
    line-height: 2;
	font-family: "Montserrat", "Kiwi Maru", serif;
	font-weight: 300;
    letter-spacing: 3px;
    padding: 110px 0 0 0;
}

body.bg-gray {
	background-color: #f5f6f7;
}

a:hover {
    transition: ease .2s;
    opacity: 0.6;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.7;
    font-weight: 400;
}

.fw-regular {
	font-weight: 300;
}

.fw-bold {
	font-weight: 400;
}

@media (max-width: 1400px) {
    body {
    	padding: 80px 0 0 0;
	}
}

@media (max-width: 1200px) {
    body {
    	padding: 70px 0 0 0;
	}
}

@media (max-width: 991px) {

    body {
        letter-spacing: 2px;
        padding: 65px 0 0 0;
    }
}

/*================================================================================
common
================================================================================*/

/* heading ------------------------------------------------*/

.common-heading_type1 {
    font-size: 40px;
}

.common-heading_type1.ja {
    font-size: 40px;
}

.common-heading_type1.middle {
    font-size: 30px;
}

.common-heading_type1 .small {
    font-size: 16px;
    color: #d21920;
    margin: 0 0 0 20px;
}

.common-heading_type1.center {
    text-align: center;
}

.common-heading_type1.center::before {
    display: block;
    line-height: 0;
}

.common-heading_type1.center .small {
    display: block;
    margin: 0;
}

@media (max-width: 991px) {

	.common-heading_type1 {
	    font-size: 25px;
	    text-align: center;
	}
	
	.common-heading_type1.ja {
	    font-size: 25px;
	}
	
	.common-heading_type1.middle {
	    font-size: 22px;
	}
	
	.common-heading_type1 .small {
	    font-size: 11px;
	    margin: 0;
	    display: block;
	}
}

/* button ------------------------------------------------*/

.common-button_more {
    background: #003c74;
    color: #ffffff;
    overflow: hidden;
    position: relative;
    transition-duration: .4s;
    z-index: 2;
    border: 1px solid #003c74;
    border-radius: 60px;
    display: flex;
    padding: 10px 20px;
    font-size: 16px;
    width: 200px;
}

.common-button_more::after {
    content: "";
    background: #ffffff;
    border-radius: 50%;
    display: block;
    margin: auto;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    padding-top: 100%;
    height: 0;
    z-index: -1;
    transform: translateY(-50%) scale(0.1);
    transition: opacity .5s, transform 0s;
    transition-delay: 0s, .4s;
}

.common-button_more::before {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    background-image: url("assets/img/common/common-style_button-type1-icon-hover.png");
    background-size: 30px 30px;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%) translateX(0);
}

.common-button_more:hover {
    color: #003c74;
    opacity: 1;
}

.common-button_more:hover::after {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    transition-delay: 0s;
    transition: opacity .8s, transform .6s ease-in-out;
}

.common-button_more:hover::before {
    background-image: url("assets/img/common/common-style_button-type1-icon.png");
}

/* contact button ------------------------------------------------*/

.common-contact_button {
    background: #c81920;
    color: #ffffff;
    overflow: hidden;
    position: relative;
    transition-duration: .4s;
    z-index: 2;
    border: 1px solid #c81920;
    border-radius: 60px;
    display: flex;
    padding: 10px 20px;
    font-size: 20px;
    max-width: 250px;
    text-align: center;
    justify-content: center;
}

.common-contact_button::after {
    content: "";
    background: #ffffff;
    border-radius: 50%;
    display: block;
    margin: auto;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    padding-top: 100%;
    height: 0;
    z-index: -1;
    transform: translateY(-50%) scale(0.1);
    transition: opacity .5s, transform 0s;
    transition-delay: 0s, .4s;
}

.common-contact_button::before {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    background-image: url("assets/img/common/common-contact_button-icon.png");
    background-size: 30px 30px;
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%) translateX(0);
}

.common-contact_button:hover {
    color: #c81920;
    opacity: 1;
}

.common-contact_button:hover::after {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    transition-delay: 0s;
    transition: opacity .8s, transform .6s ease-in-out;
}

.common-contact_button:hover::before {
    background-image: url("assets/img/common/common-contact_button-icon-hover.png");
}

@media (max-width: 1400px) {

	.common-contact_button {
	    padding: 8px 15px;
	    font-size: 16px;
	    max-width: 200px;
	}
	
	.common-contact_button::before {
	    width: 20px;
	    height: 20px;
	    background-size: 20px 20px;
	    left: 10px;
	}
}

@media (max-width: 1200px) {

	.common-contact_button {
	    padding: 5px 10px;
	    font-size: 13px;
	    max-width: 170px;
	}
}

@media (max-width: 991px) {

	.common-contact_button {
	    padding: 5px 10px;
	    font-size: 15px;
	}
	
	.common-contact_button::before {
	    width: 25px;
	    height: 25px;
	    background-size: 25px 25px;
	    left: 10px;
	}
}

/* op ------------------------------------------------*/

.op {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    opacity: 1;
    visibility: visible;
}

.op.active {
    animation: op-back 1s forwards;
}

@keyframes op-back {

    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

.op_overlay {
    width: 100%;
    height: 100%;
    z-index: 999;
    position: relative;
    opacity: 0;
    visibility: hidden;
}

.op_overlay.active {
    animation: op-logo 1s forwards;
}

@keyframes op-logo {

    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
        visibility: visible;
    }
}

.op_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    max-width: 443px;
}

@media (max-width: 991px) {

    .op_logo {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
        max-width: 60%;
    }
}

/* effect ------------------------------------------------*/

.fadein {
	opacity : 0;
	transform : translate(0, 100px);
	transition : all 3500ms;
}

.fadein.scroll {
	opacity : 1;
	transform : translate(0, 0);
}

.appear {
    animation: appear 3.5s ease normal;
}

@keyframes appear {

    from {
	    opacity: 0;
	    transform : translate(0, 100px);
	}
	to {
	    opacity: 1;
	    transform : translate(0, 0);
	}
}

/* header ------------------------------------------------*/

.header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 25px 50px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 990;
    background-color: #ffffff;
}

.header-logo {
    width: 230px;
}

.header-left {
    margin: 0 0 0 auto;
    display: flex;
    align-items: center;
}

.header-nav ul {
    font-size: 0;
    letter-spacing: -1em;
}

.header-nav ul li {
    display: inline-block;
    letter-spacing: normal;
    font-size: 18px;
    margin: 0 20px;
	position: relative;
}

.header-nav ul li:first-child {
    margin: 0 20px 0 0;
}

.header-nav ul li:last-child {
    margin: 0 0 0 20px;
}

.header-nav_dropdown {
    display: none;
}

.header-nav_dropdown-icon {
	display: inline-block;
	width: 10px;
	height: 10px;
	background-image: url("assets/img/common/header-nav_dropdown-icon.png");
	background-size: 10px 10px;
	margin: 0 0 0 5px;
}

.header-contact {
    margin: 0 0 0 50px;
    width: 250px;
}

.header-nav_dropdown {
	position: absolute;
	top: 35px;
	left: 50%;
	transform: translateY(0) translateX(-50%);
	z-index: 9999;
	padding: 40px 40px 20px 40px;
	width: 360px;
	background-color: #ffffff;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
	border-radius: 10px;
}

.header-nav_dropdown li {
	display: block !important;
	margin: 0 0 10px 0 !important;
    font-size: 16px !important;
}

@media (max-width: 1400px) {

	.header {
	    padding: 15px 30px;
	}
	
	.header-logo {
	    width: 200px;
	}
	
	.header-nav ul li {
	    margin: 0 10px;
	}
	
	.header-nav ul li:first-child {
	    margin: 0 10px 0 0;
	}
	
	.header-nav ul li:last-child {
	    margin: 0 0 0 10px;
	}
	
	.header-contact {
	    margin: 0 0 0 30px;
	    max-width: 200px;
	}
	
	.header-nav_dropdown {
		padding: 20px 20px 10px 20px;
		width: 300px;
		border-radius: 10px;
	}
	
	.header-nav_dropdown li {
		font-size: 14px;
	}
}

@media (max-width: 1200px) {

	.header {
	    padding: 15px 20px;
	}
	
	.header-logo {
	    width: 180px;
	}
	
	.header-nav ul li {
	    font-size: 16px;
	}
	
	.header-contact {
	    margin: 0 0 0 20px;
	    width: 170px;
	}
	
	.header-nav_dropdown {
		top: 35px;
		padding: 15px 15px 10px 15px;
		width: 220px;
	}
	
	.header-nav_dropdown li {
		margin: 0 0 5px 0 !important;
	    font-size: 13px !important;
	}
}

/* headersp ------------------------------------------------*/

 .headersp {
    background-color: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 980;
    width: 100%;
    height: 65px;
    padding: 15px 20px;
 }
 
 .headersp-logo {
    max-width: 150px;
}
 
 .headersp-toggle {
	width: 45px;
	height: 45px;
    background-image: url(assets/img/common/headersp-toggle-open.png);
    background-repeat: no-repeat;
    background-size: 45px 45px;
    cursor: pointer;
    position: fixed;
    top: 10px;
    right: 20px;
    z-index: 990;
    font-size: 0;
}

 .headersp-toggle.close {
    background-image: url(assets/img/common/headersp-toggle-close.png);
}

 .headersp-contact_button {
	width: 45px;
	height: 45px;
    background-image: url(assets/img/common/headersp-contact_button.png);
    background-repeat: no-repeat;
    background-size: 45px 45px;
    cursor: pointer;
    position: fixed;
    top: 10px;
    right: 70px;
    z-index: 990;
    font-size: 0;
    display: block;
}

.headersp-overlay {
	opacity: 0;
	visibility: hidden;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 65px;
	right: 0;
	left: 0;
	bottom: 0;
    background-color: #ffffff;
	z-index: 970;
	padding: 10px 20px 40px 20px;
	transition: opacity .6s cubic-bezier(.52, .08, .18, 1);
	overflow-y: auto;
}

.headersp-overlay.open {
	opacity: 1;
	visibility: visible;
}

.headersp-sitemap {
	opacity: 0;
    transform: translate3d(35px, 0, 0);
    transition: opacity .8s cubic-bezier(.22, .11, .22, 1) .45s, transform 1s cubic-bezier(.215, .61, .355, 1) .45s, color .35s cubic-bezier(.37, .16, .12, 1);
}

.headersp-overlay.open .headersp-sitemap {
	opacity: 1;
	transform: translateZ(0);
}

.headersp-sitemap_acordion dd {
	margin: 5px 0 0 0;
}

.headersp-sitemap_acordion dt {
    font-size: 17px;
    color: #3e3a39;
    position: relative;
    cursor: pointer;
}

.headersp-sitemap_acordion a {
    display: block;
}

.headersp-sitemap_acordion-icon {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%) translateX(0);
    width: 10px;
    height: 10px;
}

.headersp-sitemap_acordion-icon.plus {
	background-image: url("assets/img/common/headersp-sitemap_acordion-icon-plus.png");
	background-size: 10px 10px;
}

.headersp-sitemap_acordion dt.open .headersp-sitemap_acordion-icon.plus {
	background-image: url("assets/img/common/headersp-sitemap_acordion-icon-minus.png");
}

.headersp-sitemap_acordion-icon.arrow {
	background-image: url("assets/img/common/headersp-sitemap_acordion-icon-arrow.png");
	background-size: 10px 10px;
}

.headersp-sitemap_acordion dt .en {
    font-size: 12px;
	margin: 0 0 0 10px;
	color: #d21920;
	font-weight: 300;
}

.headersp-sitemap_acordion ul li {
    font-size: 15px;
    color: #3e3a39;
   	padding: 0 10px;
   	margin: 0 0 5px 0;
}

.headersp-sitemap_separate {
	border-top: 1px solid #dddddd;
	margin: 10px 0;
}

.headersp-contact_info {
	opacity: 0;
	border-bottom: 1px solid #dddddd;
	padding: 10px 0 20px 0;
    transform: translate3d(35px, 0, 0);
    transition: opacity .8s cubic-bezier(.22, .11, .22, 1) .45s, transform 1s cubic-bezier(.215, .61, .355, 1) .45s, color .35s cubic-bezier(.37, .16, .12, 1);
}

.headersp-overlay.open .headersp-contact_info {
	opacity: 1;
	transform: translateZ(0);
}

.headersp-contact_info .column-content .row-outer {
    margin: 0 -5px;
}

.headersp-contact_info .column-content .col-inner {
    padding: 0 5px;
}

h3.headersp-contact_info-heading {
	font-size: 16px;
	color: #3e3a39;
	text-align: center;
	margin: 0 0 5px 0;
}

h4.headersp-contact_info-heading {
	font-size: 12px;
	color: #ffffff;
	text-align: center;
	background-color: #3e3a39;
	border-radius: 60px;
	padding: 2px 8px;
	margin: 0 0 10px 0;
}

.headersp-contact_info-num {
	line-height: 1;
	margin: 0 0 15px 0;
	text-align: center;
}

.headersp-contact_info-num img {
	max-width: 250px;
}

.headersp-contact_info-bistime {
    max-width: 200px;
    margin: 0 auto;
	line-height: 1;
}

.headersp-contact_web {
	border-bottom: 1px solid #dddddd;
	padding: 15px 0 20px 0;
	opacity: 0;
    transform: translate3d(35px, 0, 0);
    transition: opacity .8s cubic-bezier(.22, .11, .22, 1) .45s, transform 1s cubic-bezier(.215, .61, .355, 1) .45s, color .35s cubic-bezier(.37, .16, .12, 1);
    margin: 0 0 10px 0;
}

.headersp-overlay.open .headersp-contact_web {
	opacity: 1;
	transform: translateZ(0);
}

h3.headersp-contact_web-heading {
	font-size: 16px;
	color: #3e3a39;
	text-align: center;
	margin: 0 0 10px 0;
}

.headersp-contact_web-action_button {
    display: block;
    max-width: 260px;
    margin: 0 auto;
}
 
.headersp-submenu_menu {
	opacity: 0;
    transform: translate3d(35px, 0, 0);
    transition: opacity .8s cubic-bezier(.22, .11, .22, 1) .45s, transform 1s cubic-bezier(.215, .61, .355, 1) .45s, color .35s cubic-bezier(.37, .16, .12, 1);
}

.headersp-overlay.open .headersp-submenu_menu {
	opacity: 1;
	transform: translateZ(0);
}

.headersp-submenu_menu ul li a {
    font-size: 14px;
    color: #3e3a39;
}

/* footer ------------------------------------------------*/

.footer {
    background-color: #304d57;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    padding: 100px 0 40px 0;
}

.footer-top {
    margin: 0 0 100px 0;
}

.footer-logo {
    max-width: 290px;
    margin: 0 0 60px 0;
}

.footer-office_item {
    margin: 0 0 30px 0;
}

h3.footer-office_heading {
    font-size: 18px;
    color: #ffffff;
    margin: 0 0 10px 0;
}

p.footer-office_text {
    font-size: 15px;
    color: #ffffff;
}

.footer-sitemap_item {
	margin: 0 0 50px 0;
}

h3.footer-sitemap_heading {
    font-size: 18px;
    color: #ffffff;
    margin: 0 0 10px 0;
}

.footer-sitemap_menu {
	padding: 0 0 0 10px;
}

.footer-sitemap_menu ul li {
	margin: 0 0 8px 0;
}

.footer-sitemap_menu ul li a {
    font-size: 15px;
    color: #ffffff;
}

.footer-sns {
	margin: 50px 0 0 0;
}

.footer-sns ul {
    font-size: 0;
    letter-spacing: -1em;
}

.footer-sns ul li {
    width: 50px;
    height: 50px;
    display: inline-block;
    letter-spacing: normal;
    margin: 0 7.5px;
}

.footer-sns ul li:first-child {
    margin: 0 7.5px 0 0;
}

.footer-sns ul li:last-child {
    margin: 0 0 0 7.5px;
}

.footer-contact {
	margin: 200px 0 0 0;
}

.footer-contact_button {
    display: block;
    max-width: 250px;
}

.footer-copyright_text {
    font-size: 16px;
    color: #ffffff;
    text-align: center;
}

.footer-contact_button {
    background: #ffffff;
    color: #314b57;
    overflow: hidden;
    position: relative;
    transition-duration: .4s;
    z-index: 2;
    border: 1px solid #ffffff;
    border-radius: 60px;
    display: flex;
    padding: 10px 20px 10px 55px;
    font-size: 20px;
    max-width: 250px;
}

.footer-contact_button::after {
    content: "";
    background: #314b57;
    border-radius: 50%;
    display: block;
    margin: auto;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    padding-top: 100%;
    height: 0;
    z-index: -1;
    transform: translateY(-50%) scale(0.1);
    transition: opacity .5s, transform 0s;
    transition-delay: 0s, .4s;
}

.footer-contact_button::before {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    background-image: url("assets/img/common/footer-contact_button-icon.png");
    background-size: 30px 30px;
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%) translateX(0);
}

.footer-contact_button:hover {
    color: #ffffff;
    opacity: 1;
}

.footer-contact_button:hover::after {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    transition-delay: 0s;
    transition: opacity .8s, transform .6s ease-in-out;
}

.footer-contact_button:hover::before {
    background-image: url("assets/img/common/footer-contact_button-icon-hover.png");
}

/* footersp ------------------------------------------------*/

 .footersp-top {
    background-color: #304d57;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    padding: 50px 20px 20px 20px;
    overflow: hidden;
 }
 
.footersp-logo {
    max-width: 150px;
    margin: 0 auto 20px auto;
}

.footersp-sitemap_acordion dt {
    font-size: 15px;
    color: #ffffff;
    position: relative;
    cursor: pointer;
}

.footersp-sitemap_acordion dt .en {
	font-weight: 300;
}

.footersp-sitemap_acordion-icon {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%) translateX(0);
    width: 10px;
    height: 10px;
}

.footersp-sitemap_acordion-icon.plus {
	background-image: url("assets/img/common/footersp-sitemap_acordion-icon-plus.png");
	background-size: 10px 10px;
}

.footersp-sitemap_acordion dt.open .footersp-sitemap_acordion-icon.plus {
	background-image: url("assets/img/common/footersp-sitemap_acordion-icon-minus.png");
}

.footersp-sitemap_acordion-icon.arrow {
	background-image: url("assets/img/common/footersp-sitemap_acordion-icon-arrow.png");
	background-size: 10px 10px;
}

.footersp-sitemap_acordion dt .en {
    font-size: 10px;
	margin: 0 0 0 5px;
}

.footersp-sitemap_acordion dd {
	margin: 5px 0 0 0;
}

.footersp-sitemap_acordion ul li {
    font-size: 13px;
    color: #ffffff;
   	padding: 0 10px;
}

.footersp-sitemap_separate {
	border-top: 1px solid #70828a;
	margin: 10px 0;
}

.footersp-contact {
	margin: 0 0 20px 0;
}

.footersp-contact_info {
	border-bottom: 1px solid #70828a;
	padding: 10px 0 20px 0;
}

.footersp-contact_info .column-content .row-outer {
    margin: 0 -5px;
}

.footersp-contact_info .column-content .col-inner {
    padding: 0 5px;
}

h3.footersp-contact_info-heading {
	font-size: 14px;
	color: #ffffff;
	text-align: center;
	margin: 0 0 10px 0;
}

h4.footersp-contact_info-heading {
	font-size: 10px;
	color: #314b57;
	text-align: center;
	background-color: #ffffff;
	border-radius: 60px;
	padding: 5px 10px;
	margin: 0 0 5px 0;
}

.footersp-contact_info-num {
	margin: 0 0 5px 0;
}

.footersp-contact_info-bistime {
    max-width: 180px;
    margin: 0 auto;
}

.footersp-contact_web {
	border-bottom: 1px solid #70828a;
	padding: 15px 0;
}

h3.footersp-contact_web-heading {
	font-size: 14px;
	color: #ffffff;
	text-align: center;
	margin: 0 0 10px 0;
}

.footersp-contact_web-action_button {
    background: #ffffff;
    color: #314b57;
    overflow: hidden;
    position: relative;
    transition-duration: .4s;
    z-index: 2;
    border: 1px solid #ffffff;
    border-radius: 60px;
    display: flex;
    padding: 5px 15px 5px 40px;
    font-size: 15px;
    max-width: 250px;
    margin: 0 auto;
}

.footersp-contact_web-action_button::after {
    content: "";
    background: #314b57;
    border-radius: 50%;
    display: block;
    margin: auto;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    padding-top: 100%;
    height: 0;
    z-index: -1;
    transform: translateY(-50%) scale(0.1);
    transition: opacity .5s, transform 0s;
    transition-delay: 0s, .4s;
}

.footersp-contact_web-action_button::before {
    content: "";
    display: block;
    width: 25px;
    height: 25px;
    background-image: url("assets/img/common/footer-contact_button-icon.png");
    background-size: 25px 25px;
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%) translateX(0);
}

.footersp-contact_web-action_button:hover {
    color: #ffffff;
    opacity: 1;
}

.footersp-contact_web-action_button:hover::after {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    transition-delay: 0s;
    transition: opacity .8s, transform .6s ease-in-out;
}

.footersp-contact_web-action_button:hover::before {
    background-image: url("assets/img/common/footer-contact_button-icon-hover.png");
}

.footersp-office_item {
    margin: 0 0 20px 0;
}

h3.footersp-office_heading {
    font-size: 18px;
    color: #ffffff;
    margin: 0 0 10px 0;
}

p.footersp-office_text {
    font-size: 15px;
    color: #ffffff;
}
 
.footersp-submenu {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
  
 .footersp-submenu_menu ul li a {
    font-size: 12px;
    color: #ffffff;
}
 
.footersp-submenu_sns {
	margin: 0 0 0 auto;
}

.footersp-submenu_sns ul {
    font-size: 0;
    letter-spacing: -1em;
}

.footersp-submenu_sns ul li {
    width: 30px;
    height: 30px;
    display: inline-block;
    letter-spacing: normal;
    margin: 0 7.5px;
}

.footersp-submenu_sns ul li:first-child {
    margin: 0 5px 0 0;
}

.footersp-submenu_sns ul li:last-child {
    margin: 0 0 0 5px;
}

.footersp-copyright {
	padding: 10px 0;
}

.footersp-copyright_text {
    font-size: 8px;
    color: #3e3a39;
    text-align: center;
}

/* contact ------------------------------------------------*/

.common-contact .container.w-1600 {
	max-width: 1600px;
}

.common-contact_outer {
    background-color: #f2f5f8;
    border-top-left-radius: 100px;
    padding-top: 80px;
    padding-bottom: 100px;
    margin-right: calc(50% - 50vw);
    padding-right: calc(50vw - 50%);
    padding-left: 100px;
}

.common-contact_outer .column-content .row-outer {
    margin: 0 -60px;
}

.common-contact_outer .column-content .col-inner {
    padding: 0 60px;
}

.common-contact_info .column-item {
	margin: 0 0 50px 0;
}

.common-contact_info .column-content .row-outer {
    margin: 0 -10px;
}

.common-contact_info .column-content .col-inner {
    padding: 0 10px;
}

.common-contact .border-lg-right {
	border-right: 1px solid #cccccc;
}

.common-contact .border-separate {
	border-top: 1px solid #cccccc;
}

h2.common-contact_info-heading {
	margin: 0 0 50px 0;
}

h3.common-contact_info-heading {
	font-size: 24px;
	text-align: center;
	margin: 0 0 20px 0;
}

h4.common-contact_info-heading {
	font-size: 16px;
	color: #ffffff;
	text-align: center;
	background-color: #003c74;
	border-radius: 60px;
	padding: 5px 10px;
	margin: 0 0 20px 0;
}

.common-contact_info-num {
	line-height: 1;
}

.common-contact_info-bistime {
    max-width: 280px;
	margin: 0 auto;
	line-height: 1;
}

h3.common-contact_web-heading {
	font-size: 24px;
	text-align: center;
	margin: 0 0 10px 0;
}

p.common-contact_web-lead {
	font-size: 16px;
	text-align: center;
	margin: 0 0 30px 0;
}

.common-contact_web-action_button {
    display: block;
    max-width: 360px;
	margin: 0 auto;
}

@media (max-width: 991px) {
	
	.common-contact_outer {
	    border-top-left-radius: 50px;
	    margin-left: calc(50% - 50vw);
	    padding-top: 50px;
	    padding-bottom: 50px;
	    padding-left: calc(50vw - 50%);
	    margin-right: calc(50% - 50vw);
	    padding-right: calc(50vw - 50%);
	}
	
	.common-contact_info .column-item {
		margin: 0 0 20px 0;
	}
	
	.common-contact .border-lg-right {
		border-right: none;
	}
	
	h2.common-contact_info-heading {
		margin: 0 0 30px 0;
	}
	
	h3.common-contact_info-heading {
		font-size: 20px;
	}
	
	h4.common-contact_info-heading {
		font-size: 15px;
		padding: 2px 5px;
		max-width: 220px;
		margin: 0 auto 15px auto;
	}
	
	.common-contact_info-num {
		max-width: 220px;
		margin: 0 auto;
	}
	
	.common-contact_info-bistime {
	    max-width: 200px;
	}
	
	h3.common-contact_web-heading {
		font-size: 18px;
		margin: 0 0 5px 0;
	}
	
	p.common-contact_web-lead {
		font-size: 13px;
		margin: 0 0 15px 0;
	}
	
	.common-contact_web-action_button {
	    max-width: 250px;
	}
}

/* bigheading ------------------------------------------------*/

.common-bigheading {
    position: relative;
	margin: 0 0 30px 0;
}

h1.common-bigheading_heading {
    position: absolute;
    bottom: 50px;
    left: 160px;
}

h1.common-bigheading_heading img {
    max-width: auto;
    width: auto;
    height: 80px;
}

.common-bigheading_thumb {
	border-top-left-radius: 40px;
	border-bottom-left-radius: 40px;
	overflow: hidden;
    margin-right: calc(50% - 50vw);
    padding-right: calc(50vw - 50%);
    width: 100vw;
    margin-left: 70px;
}

.common-bigheading_thumb img {
	height: 420px;
	object-fit: cover;
}

.common-bigheading_typo {
	width: 15px;
	height: auto;
    position: absolute;
    top: 250px;
    left: 30px;	
}

@media (max-width: 991px) {

	.common-bigheading {
		margin: 0 0 15px 0;
	}
	
	h1.common-bigheading_heading {
	    bottom: 15px;
	    left: 10px;
	}
	
	h1.common-bigheading_heading img {
	    height: 40px;
	}
	
	.common-bigheading_thumb {
		border-top-left-radius: 20px;
		border-bottom-left-radius: 20px;
	    margin-left: 15px;
	}
	
	.common-bigheading_thumb img {
		height: 180px;
	}
	
	.common-bigheading_typo {
		width: 9px;
	    top: 0;
	    left: 10px;	
	}
}

/* breadcrumb ------------------------------------------------*/

.common-breadcrumb_list {
	margin: 0 0 100px 0;
}

.common-breadcrumb_list ul {
    letter-spacing: -1em;
    font-size: 0;
}

.common-breadcrumb_list ul li {
    font-size: 11px;
    color: #3e3a39;
    display: inline-block;
    letter-spacing: normal;
}

.common-breadcrumb_list ul li::after {
	content: "-";
	margin: 0 5px;
}

.common-breadcrumb_list ul li:last-child::after {
	content: "";
}

@media (max-width: 991px) {

	.common-breadcrumb_list {
		margin: 0 0 50px 15px;
	}
	
	.common-breadcrumb_list ul li {
	    font-size: 10px;
	}
	
	.common-breadcrumb_list ul li::after {
		margin: 0 2.5px;
	}
}

/* fixedmenu ------------------------------------------------*/

.slide_anime_nav {
    position: fixed;
    z-index: 99;
    top: 50%;
    transform: rotate(0) translateY(-50%);
}

.slide_anime_nav > div {
    transition: transform 0.3s ease 0s;
    transform: translateX(10px);
    width: 75px;
    height: 141px;
    background-size: 75px 141px;
}

.slide_anime_nav div a {
    display: block;
    width: 75px;
    height: 141px;
}

.slide_anime_nav > div.first {
    background-image: url("assets/img/common/slide_anime_nav-back-1.png");
}

.slide_anime_nav > div.second {
    background-image: url("assets/img/common/slide_anime_nav-back-2.png");
}

.fixed_right {
    left: calc(100% - 65px);
}

.fixed_right > div:hover {
    transform: translateX(5px);
}

@media (max-width: 991px) {

    .slide_anime_nav {
        top: auto;
        bottom: 0;
        transform: rotate(0) translateY(0);
        width: 100%;
        display: flex;
    }
    
    .slide_anime_nav > div {
        transform: translateX(0);
        padding: 0;
    	margin: 0;
    	border-top-left-radius: 0;
    	border-bottom-left-radius: 0;
    	text-align: center;
    	width: 50%;
    	height: 50px;
    	background-size: 100px 50px;
    	background-position: center;
    	background-repeat: no-repeat;
    	border-top-right-radius: 7px;
    	border-top-left-radius: 7px;
    }
    
	.slide_anime_nav > div.first {
	    background-image: url("assets/img/common/slide_anime_nav-back-1-sp.png");
	    background-color: #003c74;
	}
	
	.slide_anime_nav > div.second {
	    background-image: url("assets/img/common/slide_anime_nav-back-2-sp.png");
	    background-color: #d21920;
	}

	.slide_anime_nav div a {
	    width: 100%;
	    height: 100%;
	}

    .fixed_right {
        left: 0;
    }
    
    .fixed_right > div:hover {
        transform: translateX(0);
    }
}

/*================================================================================
index
================================================================================*/

/* hero ------------------------------------------------*/

.top-hero {
    position: relative;
    padding: 0 0 0 20%;
}

.top-hero .bx-wrapper {
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    background: none;
    margin-bottom: 0;
}

.top-hero_slider-slide {
	border-top-left-radius: 40px;
	border-bottom-left-radius: 40px;
	overflow: hidden;
}

.top-hero_slider > div[aria-hidden="false"] img {
    animation: anime_zoom 6s linear;
}
.top-hero_slider > div[aria-hidden="true"] img {
    transform: scale(1.2);
}

@keyframes anime_zoom {

    0% {
        transform: scale(1.0);
    }
    100% {
        transform: scale(1.2);
    }
}

.top-hero::before {
    content: "";
    display: block;
    width: 100%;
    height: 240px;
    background-color: #f2f5f8;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.top-hero_message {
    width: 30%;
    position: absolute;
    top: 60%;
    left: 10%;
    z-index: 2;
}

.top-hero_typo {
    max-width: 15px;
    width: 100%;
    position: absolute;
    top: 50%;
    left:  30px;
    transform: translateY(-50%) translateX(-50%);
}

@media (max-width: 991px) {

	.top-hero {
	    padding: 0 0 0 15px;
	}

	.top-hero_message {
	    width: 65%;
	    position: relative;
	    margin: 5% 0;
	}
}

/* news ------------------------------------------------*/

.top-news {
    background-color: #f2f5f8;
    padding: 150px 0 80px 0;
}

.top-news_inner {
    background-color: #ffffff;
    border-radius: 30px;
    padding: 50px 100px;
}

h2.top-news_heading {
	margin: 0 0 40px 0;
}

.top-news_newslist {
    border-top: 1px solid #bbbbbb;
	padding: 40px 0 0 0;
}

.top-news_newslist ul li {
	margin: 0 0 40px 0;
}

.top-news_newslist-meta {
	margin: 0 0 5px 0;
}

.top-news_newslist-meta_date {
    font-size: 16px;
	color: #d21920;
}

.top-news_newslist-excerpt_text {
    font-size: 16px;
}

@media (max-width: 991px) {

	.top-news {
	    padding: 30px 0;
	}

	.top-news_inner {
	    border-radius: 15px;
    	padding: 30px 20px;
	}
	
	h2.top-news_heading {
		margin: 0 0 20px 0;
	}
	
	.top-news_newslist {
		padding: 20px 0 0 0;
	}
	
	.top-news_newslist ul li {
		margin: 0 0 20px 0;
	}
	
	.top-news_newslist-meta {
		margin: 0;
	}
	
	.top-news_newslist-meta_date {
	    font-size: 14px;
	}
	
	.top-news_newslist-excerpt_text {
	    font-size: 14px;
	}
}

/* message ------------------------------------------------*/

.top-message {
    background-color: #f2f5f8;
    padding: 80px 0;
}

.top-message .column-content .row-outer {
    margin: 0 -40px;
}

.top-message .column-content .col-inner {
    padding: 0 40px;
}

h2.top-message_heading {
	margin: 20px 0 50px 0;
}

h3.top-message_heading {
    font-size: 25px;
    line-height: 2;
	margin: 0 0 50px 0;
}

h3.top-message_heading .marker {
	background: linear-gradient(transparent 70%, #f1babc 60%);
}

.top-message_thumb {
    margin-left: calc(100% - 50vw);
}

p.top-message_text {
    font-size: 16px;
	line-height: 2.6;
}

@media (max-width: 991px) {

	.top-message {
	    padding: 30px 0;
	}
	
	h2.top-message_heading {
		margin: 20px 0 30px 0;
	}
	
	h3.top-message_heading {
	    max-width: 200px;
	    margin: 0 auto 30px auto;
	}	
	
	p.top-message_text {
	    font-size: 14px;
		line-height: 2;
	}
}

/* about ------------------------------------------------*/

.top-about {
    background-color: #f2f5f8;
   	padding: 80px 0 0 0;
   	margin: 0 0 150px 0;
}

.top-about_list {
  	margin: 0 0 150px 0;
}

h2.top-about_heading {
  	margin: 0 0 90px 0;
}

h3.top-about_list-heading {
	font-size: 24px;
	position: relative;
	padding: 0 0 10px 0;
	margin: 0 0 20px 0;
}

h3.top-about_list-heading::before {
	content: "";
	display: block;
	width: 45px;
	height: 1px;
	background-color: #d21920;
	position: absolute;
	bottom: 0;
	left: 0;
}

p.top-about_list-text {
	margin: 0 0 50px 0;
}

.top-about_list .column-content .row-outer {
    margin: 0 -15px;
}

.top-about_list .column-content .col-inner {
    padding: 0 15px;
}

.top-about_list-item {
    background-color: #ffffff;
    border-radius: 20px;
    position: relative;
    padding: 50px;
    margin: 0 0 50px 0;
}

.top-about_list-num {
    width: 50px;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateY(0) translateX(-50%);
}

.top-about_list-logo {
    max-width: 335px;
    margin: 0 auto 50px auto;
}

.top-about_list-action {
	text-align: right;
}

.top-about_list-action_button {
  border: none;
  background: none;
}

.top-about_list-action_button a {
  padding-bottom: 7px;
  letter-spacing: 2px;
  font-size: 16px;
  padding-right: 15px;
  display: inline;
  color: #003c74;
}

.top-about_list-action_button img {
  transform: translateX(-8px);
  transition: all 0.3s ease;
  width: 30px;
}

.top-about_list-action_button:hover img {
  transform: translateX(0);
}

.top-about_list-action_button:active img {
  transform: scale(0.9);
}

.top-about_list-action_button-link {
  position: relative;
  color: black;
  padding-bottom: 20px;
}

.top-about_list-action_button-link:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #003c74;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.top-about_list-action_button:hover .top-about_list-action_button-link:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.top-about_list-action_button.dummy img {
	width: 150px;
	height: 32px;
}

@media (max-width: 991px) {

	.top-about {
	   	padding: 30px 0 0 0;
	   	margin: 0 0 60px 0;
	}
	
	.top-about_list {
	  	margin: 0 0 50px 0;
	}
	
	h2.top-about_heading {
	  	margin: 0 0 50px 0;
	}
	
	h3.top-about_list-heading {
		font-size: 18px;
		margin: 0 0 10px 0;
	}
	
	h3.top-about_list-heading::before {
		width: 25px;
	}
	
	p.top-about_list-text {
		margin: 0 0 20px 0;
	}
	
	.top-about_list-item {
	    border-radius: 10px;
	    padding: 50px 25px 30px 25px;
	}
	
	.top-about_list-logo {
	    max-width: 225px;
	    margin: 0 auto 30px auto;
	}
	
	.top-about_list-action a {
	    max-width: 120px;
	}
}

/* company ------------------------------------------------*/

.top-company {
	margin: 0 0 150px 0;
}

.top-company_header {
    display: flex;
    align-items: center;
	margin: 0 0 40px 0;
}

.top-company_header-action {
	margin: 0 0 0 auto;
}

.top-company_office .column-content .row-outer {
    margin: 0 -25px;
}

.top-company_office .column-content .col-inner {
    padding: 0 25px;
}

.top-company_office-thumb {
	margin: 0 0 40px 0;
}

h3.top-company_office-heading {
	font-size: 20px;
	position: relative;
	padding: 0 0 10px 0;
	margin: 0 0 20px 0;
}

h3.top-company_office-heading::before {
	content: "";
	display: block;
	width: 100px;
	height: 1px;
	background-color: #e74400;
	position: absolute;
	bottom: 0;
	left: 0;
}

.top-company_office-text {
	font-size: 16px;
}

.top-company_office-action_button {
	max-width: 250px;
	display: block;
	margin: 20px 0 0 0;
}

@media (max-width: 991px) {

	.top-company {
		margin: 0 0 50px 0;
	}

	.top-company_header {
	    display: block;
		margin: 0 0 20px 0;
	}
	
	.top-company_office-item {
			margin: 0 0 50px 0;
	}
	
	.top-company_office-thumb {
		margin: 0 0 20px 0;
	}
	
	h3.top-company_office-heading {
		font-size: 18px;
		margin: 0 0 15px 0;
	}
	
	h3.top-company_office-heading::before {
		width: 25px;
	}
	
	.top-company_office-text {
		font-size: 14px;
	}
	
	.top-company_office-action_button {
		max-width: 200px;
		margin: 10px 0 0 0;
	}
}

/* service ------------------------------------------------*/

.top-service {
    background-color: #f2f5f8;
    padding: 100px 0;
    border-top-right-radius: 35px;
    border-bottom-right-radius: 35px;
	margin: 0 0 150px 0;
}

.top-service_header {
    display: flex;
    align-items: center;
	margin: 0 0 40px 0;
}

.top-service_header-action {
	margin: 0 0 0 auto;
}

p.top-service_lead {
    font-size: 16px;
	margin: 0 0 50px 0;
}

.top-service_graph {
    margin-left: calc(50% - 50vw);
    margin-bottom: 50px;;
}

.top-service_action-text {
    font-size: 16px;
    color: #314b57;
    text-align: center;
	margin: 0 0 20px 0;
	line-height: 1.4;
}

.top-service_action-button {
    display: block;
    max-width: 300px;
	letter-spacing: 5px;
	font-size: 22px;
    margin: 0 auto;
}

@media (max-width: 991px) {

    .top-service {
        padding: 60px 0;
    	margin: 0 0 70px 0;
    	border-radius: 0;
    }
    
    .top-service_header {
        display: block;
    	margin: 0 0 20px 0;
    	text-align: center;
    }
    
    .top-service_more {
    	margin: 0 0 30px 0;
    }
    
    .top-service_header-action {
        margin: 0 auto;
    }
    
    p.top-service_lead {
        font-size: 14px;
    	margin: 0 0 20px 0;
    }
    
    .top-service_graph {
        margin-bottom: 0;
    }
    
    .top-service_comment {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .top-service_action-text {
        font-size: 14px;
    	margin: 0 0 5px 0;
    }

    .top-service_header-action {
        width: 100%;
    }
       
    .top-service_header-action .common-button_more {
        max-width: 250px;
        width: 100%;
        margin: 0 auto; 
    }
    
    .top-service_action-button {
    	max-width: 250px;
    	letter-spacing: 2.5px;
    	font-size: 15px;
    }
}

/* recruit ------------------------------------------------*/

.top-recruit {
	margin: 0 auto 200px auto;
	max-width: 1600px;
}

.top-recruit_outer {
    display: flex;
    align-items: stretch;
    border-radius: 50px;
    overflow: hidden;
    margin: 0 auto;
    background-color: #f2f5f8;
}

.top-recruit_overlay {
    padding: 70px 100px;
}

h2.common-contact_heading {
	margin: 0 0 20px 0;
}

.top-recruit_thumb {
	position: relative;
	max-width: 900px;
	width: 100%;
}

.top-recruit_thumb img {
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.top-recruit_lead {
    font-size: 24px;
	margin: 0 0 40px 0;
}

.top-recruit_buttons-button {
    display: block;
    background: #ffffff;
    color: #3e3a39;
    overflow: hidden;
    position: relative;
    transition-duration: .4s;
    z-index: 2;
    border: 1px solid #ffffff;
    border-radius: 60px;
    display: flex;
    padding: 18px 30px;
    font-size: 22px;
    max-width: 440px;
	margin: 0 0 30px 0;
}

.top-recruit_buttons-button::after {
    content: "";
    background: #003c74;
    border-radius: 50%;
    display: block;
    margin: auto;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    padding-top: 100%;
    height: 0;
    z-index: -1;
    transform: translateY(-50%) scale(0.1);
    transition: opacity .5s, transform 0s;
    transition-delay: 0s, .4s;
}

.top-recruit_buttons-button::before {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    background-image: url("assets/img/index/top-recruit_buttons-button_icon.png");
    background-size: 30px 30px;
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%) translateX(0);
}

.top-recruit_buttons-button:hover {
    color: #ffffff;
    opacity: 1;
}

.top-recruit_buttons-button:hover::after {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    transition-delay: 0s;
    transition: opacity .8s, transform .6s ease-in-out;
}

.top-recruit_buttons-button:hover::before {
    background-image: url("assets/img/index/top-recruit_buttons-button_icon-hover.png");
}

@media (max-width: 1500px) {

	.top-recruit_overlay {
	    padding: 70px 50px;
	}
	
	.top-recruit_thumb {
		max-width: 700px;
	}
	
	.top-recruit_buttons-button {
	    display: block;
	    background: #ffffff;
	    color: #3e3a39;
	    overflow: hidden;
	    position: relative;
	    transition-duration: .4s;
	    z-index: 2;
	    border: 1px solid #ffffff;
	    border-radius: 60px;
	    display: flex;
	    padding: 18px 30px;
	    font-size: 22px;
	    max-width: 440px;
		margin: 0 0 30px 0;
	}
}

@media (max-width: 1200px) {

	.top-recruit_overlay {
	    padding: 30px 40px;
	}
	
	.top-recruit_thumb {
		max-width: 550px;
	}
	
	.top-recruit_buttons-button {
		margin: 0 0 20px 0;
	}
}

@media (max-width: 991px) {

	.top-recruit {
		padding: 0;
		margin: 0 0 100px 0;
	}
	
	.top-recruit_outer {
	    display: block;
	    border-radius: 25px;
	}
	
	.top-recruit_overlay {
	    padding: 30px 40px;
	}
	
	h2.common-contact_heading {
		margin: 0 0 20px 0;
	}
	
	.top-recruit_thumb {
		max-width: 100%;
		width: 100%;
	}
	
	.top-recruit_thumb img {
		position: relative;
	    height: 350px;
	}
	
	.top-recruit_lead {
	    font-size: 15px;
	    text-align: center;
		margin: 0 0 30px 0;
	}
	
	.top-recruit_buttons-button {
	    padding: 10px 20px;
	    font-size: 14px;
	    max-width: 300px;
		margin: 0 auto 15px auto;
	}
	
	.top-recruit_buttons-button::before {
	    width: 20px;
	    height: 20px;
	    background-size: 20px 20px;
	    right: 15px;
	}

}

/*================================================================================
privacypolicy
================================================================================*/

.privacypolicy-manifest_item {
	margin: 0 0 50px 0;
}

h2.privacypolicy-manifest_heading {
	font-size: 16px;
	margin: 0 0 10px 0;
}

p.privacypolicy-manifest_text {
	font-size: 16px;
	margin: 0 0 10px 0;
}

p.privacypolicy-manifest_text a, ul.privacypolicy-manifest_list a {
	text-decoration: underline;
}

ul.privacypolicy-manifest_list li {
	font-size: 16px;
	text-indent: -19px;
	padding-left: 19px;
}

@media (max-width: 991px) {
	
	.privacypolicy-manifest_item {
		margin: 0 0 20px 0;
	}
	
	h2.privacypolicy-manifest_heading {
		font-size: 14px;
		margin: 0 0 5px 0;
	}
	
	p.privacypolicy-manifest_text {
		font-size: 14px;
		margin: 0 0 5px 0;
	}
	
	ul.privacypolicy-manifest_list li {
		font-size: 14px;
		text-indent: -16px;
		padding-left: 16px;
	}
}

/*================================================================================
member
================================================================================*/

.member-message {
	margin: 0 0 150px 0;
}

.member-message_outer {
	max-width: 930px;
	margin: 0 auto;
}

.member-message_lead {
	font-size: 30px;
	text-align: center;
}

.member-list {
	margin: 0 0 100px 0;
}

.member-list .column-content .row-outer {
    margin: 0 -25px;
}

.member-list .column-content .col-inner {
    padding: 0 25px;
}

h2.member-list_heading {
	margin: 0 0 40px 0;
}

.member-list .column-content .column-item  {
	margin: 0 0 50px 0;
}

.member-list_thumb {
	margin: 0 0 20px 0;
}

.member-list_info-position {
	font-size: 16px;
}

.member-list_info-name {
	font-size: 30px;
}

.member-list_info-name .en {
	font-size: 11px;
    color: #d21920;
    display: block;
}

.member-list_info-job {
	font-size: 16px;
}

.member-gallery {
	margin: 0 0 200px 0;
}

h2.member-gallery_heading {
	margin: 0 0 40px 0;
}
	
.member-gallery_slider-parent {
	position: relative;
	max-width: 620px;
	margin: 0 auto 100px auto;
}

.member-gallery_slider .swiper.slider {
	border-radius: 30px;
	overflow: hidden;
}

.member-gallery_slider-parent .swiper-button-prev {
    width: 30px;
    height: 30px;
    left: -50px;
}

.member-gallery_slider-parent .swiper-button-prev:after {
    content: "";
    background-image: url("assets/img/member/member-gallery_slider-prev.png");
    width: 30px;
    height: 30px;
    background-size: 30px 30px;
    display: block;
}

.member-gallery_slider-parent .swiper-button-next {
    width: 30px;
    height: 30px;
    right: -50px;
}

.member-gallery_slider-parent .swiper-button-next:after {
    content: "";
    background-image: url("assets/img/member/member-gallery_slider-next.png");
    width: 30px;
    height: 30px;
    background-size: 30px 30px;
    display: block;
}

.member-gallery_slider .swiper.thumb .swiper-slide {
	position: relative;
}

.member-gallery_slider .swiper.thumb .swiper-slide::before {
	content: "";
	display: block;
	background-color: rgba(0, 0, 0, 0.5);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.member-gallery_slider .swiper.thumb .swiper-slide.swiper-slide-thumb-active::before {
  opacity: 0;
}

.member-license_outer {
    background-color: #f2f5f8;
    border-radius: 30px;
	padding: 60px 100px;
	margin: 0 0 150px 0;
}

h3.member-license_heading {
	font-size: 24px;
	text-align: center;
	margin: 0 0 50px 0;
}

.member-license_list .column-content .row-outer {
    margin: 0 -60px;
}

.member-license_list .column-content .col-inner {
    padding: 0 60px;
}

.member-license_table table {
	width: 100%;
}

.member-license_table table tr {
    border-bottom: 5px solid #f2f5f8;
}

.member-license_table table th {
	width: 250px;
	font-size: 16px;
}

.member-license_table table td {
	font-size: 16px;
	text-align: right;
}

.member-modal_window {
	max-width: 900px;
	margin: 0 auto;
	border-radius: 30px;
	background-color: #ffffff;
	padding: 40px;
	position: relative;
}

.member-modal_window .close {
    position: absolute;
    width: 70px;
    height: 70px;
    background-image: url("assets/img/member/member-modal_window-close.png");
    background-size: 70px 70px;
    top: 25px;
    right: 25px;
}

.member-modal_window .close.mfp-close:active {
    top: 25px;
}

.member-modal_window-info_position {
	font-size: 16px;
}

.member-modal_window-info_name {
	font-size: 30px;
}

.member-modal_window-info_name .en {
	font-size: 10px;
    color: #d21920;
    display: block;
}

.member-modal_window-info_job {
	font-size: 16px;
	margin: 0 0 15px 0;
}

.member-modal_window-body .column-content .row-outer {
    margin: 0 -20px;
}

.member-modal_window-body .column-content .col-inner {
    padding: 0 20px;
}

.member-modal_window-textbox_text {
	font-size: 16px;
}

.mfp-fade.mfp-bg {
	opacity: 0;
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	transition: all .3s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
	opacity: .8;
}

.mfp-fade.mfp-bg.mfp-removing {
	opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
	opacity: 0;
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	transition: all .3s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
	opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
	opacity: 0;
}

@media (max-width: 991px) {

	.member-message {
		margin: 0 0 40px 0;
	}
	
	.member-message_outer {
		text-align: justify;
	}
	
	.member-message_lead {
		font-size: 18px;
		text-align: justify;
	}
	
	.member-list {
		margin: 0 0 50px 0;
	}
	
	.member-list .column-content .row-outer {
	    margin: 0 -10px;
	}
	
	.member-list .column-content .col-inner {
	    padding: 0 10px;
	}
	
	h2.member-list_heading {
		margin: 0 0 20px 0;
	}
	
	.member-list .column-content .column-item  {
		margin: 0 0 30px 0;
	}
	
	.member-list_thumb {
		margin: 0 0 10px 0;
	}
	
	.member-list_info-position {
		font-size: 10px;
	}
	
	.member-list_info-name {
		font-size: 18px;
	}
	
	.member-list_info-name .en {
		font-size: 8px;
	}
	
	.member-list_info-job {
		font-size: 10px;
	}
	
	.member-gallery {
		margin: 0 0 100px 0;
	}
	
	h2.member-gallery_heading {
		margin: 0 0 20px 0;
	}
	
	.member-gallery_slider-parent {
		margin: 0 auto 50px auto;
	}
	
	.member-gallery_slider .swiper.slider {
		border-radius: 15px;
	}
	
	.member-gallery_slider-parent .swiper-button-prev {
	    left: 10px;
	}
	
	.member-gallery_slider-parent .swiper-button-next {
	    right: 10px;
	}
	
	.member-license_outer {
	    border-radius: 15px;
		padding: 30px 20px;
		margin: 0 0 80px 0;
	}
	
	h3.member-license_heading {
		font-size: 18px;
		margin: 0 0 20px 0;
	}

	h3.member-license_heading .small {
		font-size: 12px;
	}
	
	.member-license_table {
		max-width: 280px;
		margin: 0 auto;
	}
	
	.member-license_table table tr {
	    border-bottom: none;
	}
	
	.member-license_table table th {
		width: auto;
		font-size: 14px;
	}
	
	.member-license_table table td {
		width: 50px;
		font-size: 14px;
	}
	
	.member-modal_window {
		border-radius: 15px;
		padding: 15px;
	}

	.member-modal_window .close {
	    width: 35px;
	    height: 35px;
	    background-size: 35px 35px;
	    top: 5px;
	    right: 5px;
	    opacity: 1;
	}
	
	.member-modal_window .close.mfp-close:active {
	    top: 5px;
	}
	
	.member-modal_window-thumb {
		margin: 0 0 15px 0;
	}
	
	.member-modal_window-info_position {
		font-size: 11px;
		line-height: 1.7;
	}
	
	.member-modal_window-info_name {
		font-size: 22px;
		line-height: 1.7;
	}
	
	.member-modal_window-info_job {
		font-size: 11px;
		margin: 0 0 5px 0;
		line-height: 1.7;
	}
	
	.member-modal_window-textbox_text {
		font-size: 13px;
		line-height: 1.7;
	}
}

/*================================================================================
contact
================================================================================*/

.contact-notice {
	margin: 0 0 60px 0;
}

.contact-notice_message-text {
    font-size: 16px;
	margin: 0 0 30px 0;
}

.contact-notice_action-button {
	display: inline-block;
	max-width: 400px;
	margin: 0 30px 0 0;
	line-height: 1;
}

.contact-webform_form-outer {
	padding: 60px;
	background-color: #ffffff;
	border-radius: 40px;
	margin: 0 0 150px 0;
}

.contact-webform_note {
	margin: 0 0 30px 0;
}

.contact-webform_note-text {
    color: #d21920;
    font-size: 16px;
}

.contact-webform_form table {
    width: 100%;
}

.contact-webform_form table tr {
	border-bottom: 40px #ffffff solid;
}

.contact-webform_form table tr.twocolumn td:first-child {
	width: 50%;
	border-right: 30px #ffffff solid;
}

.contact-webform_form table tr.twocolumn td:last-child {
	width: 50%;
	border-left: 30px #ffffff solid;
}

.contact-webform_form-title {
    font-size: 20px;
	margin: 0 0 10px 0;
}

.contact-webform_form-title .note {
    color: #d21920;
    font-size: 18px;
}

.contact-webform_form-title .small {
    font-size: 14px;
}

.contact-webform_form input[type='text'], .contact-webform_form input[type='email'] {
	font-size: 18px;
	padding: 15px 30px;
	background-color: #f5f6f7;
	width: 100%;
	border-radius: 10px;
}

.contact-webform_form textarea {
	font-size: 18px;
	padding: 15px 30px;
	background-color: #f5f6f7;
	width: 100%;
	border-radius: 10px;
	height: 500px;
}

.contact-webform_form-radio_item {
    display: inline-block;
    margin: 0 20px 0 0;
}

.contact-webform_form-radio_label {
    position: relative;
    cursor: pointer;
    padding: 0 0 0 30px;
    font-size: 14px;
}

.contact-webform_form-radio_label::before,
.contact-webform_form-radio_label::after {
    content: "";
    display: block; 
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%) translateX(-50%);
}

.contact-webform_form-radio_label::before {
    background-color: #ffffff;
    border: 1px solid #000000;
    width: 20px;
    height: 20px;
}

.contact-webform_form-radio_label::after {
    background-color: #003c74;
    opacity: 0;
    width: 10px;
    height: 10px;
}

.contact-webform_form-radio input {
    display: none;
}

.contact-webform_form-radio input:checked + .contact-webform_form-radio_label::after {
    opacity: 1;
}

.contact-webform_form-agree {
	text-align: center;
	margin: 30px 0 0 0;
}

.contact-webform_form-agree_text {
	font-size: 16px;
	margin: 0 0 20px 0;
}

.contact-webform_form-agree_label {
    position: relative;
    cursor: pointer;
    font-size: 16px;
    padding: 0 0 0 30px;
    display: inline-block;
}

.contact-webform_form-agree_label::before,
.contact-webform_form-agree_label::after {
    content: "";
    display: block; 
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%) translateX(-50%);
}

.contact-webform_form-agree_label::before {
    background-color: #ffffff;
    border: 1px solid #000000;
    width: 20px;
    height: 20px;
}

.contact-webform_form-agree_label::after {
    background-color: #003c74;
    opacity: 0;
    width: 15px;
    height: 15px;
}

.contact-webform_form-agree input {
    display: none;
}

.contact-webform_form-agree input:checked + .contact-webform_form-agree_label::after {
    opacity: 1;
}

.contact-webform_form-submit {
    max-width: 260px;
    width: 100%;
    display: inline-block;
    background-color: #d21920;
    font-size: 20px;
    color: #ffffff;
    text-align: center;
    border-radius: 60px;
    position: relative;
}

.contact-webform_form-submit input {
	width: 100%;
	height: 100%;
    padding: 10px 25px;
}

.contact-webform_form-back {
    max-width: 260px;
    width: 100%;
    display: inline-block;
    background-color: #ffffff;
    border: 1px solid #3e3a39;
    font-size: 20px;
    color: #3e3a39;
    text-align: center;
    border-radius: 60px;
    position: relative;
}

.contact-webform_form-back input {
	width: 100%;
	height: 100%;
    padding: 10px 25px;
}

.contact-webform_form-submit::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background-image: url("assets/img/contact/contact-webform_form-submit-icon-next.png");
    background-size: 10px 10px;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%) translateX(0);
}

.contact-webform_form-back::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background-image: url("assets/img/contact/contact-webform_form-submit-icon-back.png");
    background-size: 10px 10px;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%) translateX(0);
}

.contact-webform_form-submit:hover {
    opacity: 0.6;
}

.contact-webform_form-back:hover {
    opacity: 0.6;
}

.contact-webform_form-select {
	display: block;
	position: relative;
}
 
.contact-webform_form-select select {
	appearance: none;
	font-size: 18px;
	padding: 15px 30px;
	background-color: #f5f6f7;
	width: 100%;
	border-radius: 10px;
	background-image: none;
	box-shadow: none;
	text-overflow: ellipsis;
	cursor: pointer;
}
 
.contact-webform_form-select::before {
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%) translateX(0);
	width: 13px;
	height: 13px;
	content: "";
	pointer-events: none;
	background-image: url("assets/img/contact/select-icon.png");
	background-size: 13px 13px;
}

.contact-webform_form-file[type='file'] { 
 	font-size: 18px;
}

.contact-webform_form-file[type='file']::file-selector-button {
	color: #a6a5a4;
	background-color: #f5f6f7;
	font-size: 18px;
	border-radius: 10px;
	padding: 15px 30px;
	text-align: center;
	margin: 0 20px 0 0;
	border: none;
}

.contact-webform_form .error-text {
	color: #d21920;
	font-size: 13px;
	margin: 5px 0 0 0;
}

@media (max-width: 991px) {

	.contact-notice {
		margin: 0 0 60px 0;
	}
	
	.contact-notice_message-text {
	    font-size: 14px;
		margin: 0 0 20px 0;
	}
	
	.contact-notice_action-button {
		display: block;
		max-width: 300px;
		margin: 0 auto 15px auto;
	}
	
	.contact-webform_form-outer {
		padding: 20px;
		border-radius: 20px;
		margin: 0 0 150px 0;
	}
	
	.contact-webform_note {
		margin: 0 0 20px 0;
	}
	
	.contact-webform_note-text {
	    font-size: 14px;
	}
	
	.contact-webform_form table tr {
		border-bottom: 20px #ffffff solid;
	}
	
	.contact-webform_form table tr.twocolumn td:first-child {
		border-right: 10px #ffffff solid;
	}

	.contact-webform_form table tr.twocolumn td:last-child {
		border-left: 10px #ffffff solid;
	}
	
	.contact-webform_form-title {
	    font-size: 16px;
		margin: 0 0 5px 0;
	}
	
	.contact-webform_form-title .note {
	    font-size: 10px;
	}
	
	.contact-webform_form-title .small {
	    font-size: 12px;
	    display: block;
	}
	
	.contact-webform_form input[type='text'], .contact-webform_form input[type='email'] {
		font-size: 14px;
		padding: 10px 15px;
		border-radius: 5px;
	}
	
	.contact-webform_form textarea {
		font-size: 14px;
		padding: 10px 15px;
		border-radius: 5px;
		height: 400px;
	}
	
	.contact-webform_form-radio_item {
	    display: block;
	    margin: 0;
	}
	
	.contact-webform_form-radio_label {
	    padding: 0 0 0 20px;
	}
	
	.contact-webform_form-radio_label::before,
	.contact-webform_form-radio_label::after {
	    left: 7.5px;
	}
	
	.contact-webform_form-radio_label::before {
	    width: 15px;
	    height: 15px;
	}
	
	.contact-webform_form-radio_label::after {
	    width: 8px;
	    height: 8px;
	}
	
	.contact-webform_form-agree {
		margin: 0;
	}
	
	.contact-webform_form-agree_text {
		font-size: 14px;
	}
	
	.contact-webform_form-agree_label {
	    font-size: 14px;
	    padding: 0 0 0 20px;
	}
	
	.contact-webform_form-agree_label::before,
	.contact-webform_form-agree_label::after {
	    left: 7.5px;
	}
	
	.contact-webform_form-agree_label::before {
	    width: 15px;
	    height: 15px;
	}
	
	.contact-webform_form-agree_label::after {
	    width: 7.5px;
	    height: 7.5px;
	}
	
	.contact-webform_form-submit {
	    max-width: 250px;
	    font-size: 18px;
	}
	
	.contact-webform_form-submit input {
		padding: 10px 15px;
	}
	
    .contact-webform_form-back {
	    max-width: 250px;
	    font-size: 18px;
    }
    
	.contact-webform_form-back input {
		padding: 10px 15px;
	}
	
	.contact-webform_form-select select {
		font-size: 14px;
		padding: 10px 15px;
		border-radius: 5px;
	}
	 
	.contact-webform_form-select::before {
		right: 10px;
		width: 10px;
		height: 10px;
		background-size: 10px 10px;
	}
	
	.contact-webform_form-file[type='file'] { 
	 	font-size: 14px;
	}
	
	.contact-webform_form-file[type='file']::file-selector-button {
		padding: 10px 15px;
		border-radius: 5px;
		margin: 0 10px 0 0;
		font-size: 14px;
	}
	
	.contact-webform_form .error-text {
		font-size: 10px;
		margin: 2.5px 0 0 0;
	}
}

/*================================================================================
confirm
================================================================================*/

.contact-notice_confirm-text {
    font-size: 24px;
    color: #d21920;
	text-align: center;
}

.contact-confirmform .contact-webform_form table tr {
	border-top: 1px #cccccc solid;
	border-bottom: none;
}

.contact-confirmform .contact-webform_form table tr:first-child {
	border-top: none;
}

.contact-confirmform .contact-webform_form table tr td {
	padding: 30px 0;
    font-size: 16px;
	text-align: center;
}

.contact-confirmform .contact-webform_form-title {
	margin: 0 0 5px 0;
}

.contact-confirmform .contact-webform_form-submit {
	margin: 50px 10px 0 10px;
}

.contact-confirmform .contact-webform_form-back {
	margin: 50px 10px 0 10px;
}

@media (max-width: 991px) {

    .contact-notice_confirm-text {
        font-size: 18px;
    }
    
    .contact-confirmform .contact-webform_form table tr td {
    	padding: 15px 0;
        font-size: 14px;
    }
    
    .contact-confirmform .contact-webform_form-title {
    	margin: 0;
    }
    
    .contact-confirmform .contact-webform_form-submit {
    	margin: 20px 5px 0 5px;
    }
    
    .contact-confirmform .contact-webform_form-back {
    	margin: 20px 5px 0 5px;
    }
}

/*================================================================================
contact result
================================================================================*/

.contact-result {
	margin: 0 0 200px 0;
}

h2.contact-result_heading {
	font-size: 40px;
	text-align: center;
	margin: 0 0 20px 0;
}

p.contact-result_text {
	font-size: 20px;
	text-align: center;
}

@media (max-width: 991px) {

    .contact-result {
    	margin: 0 0 100px 0;
    }
    
    h2.contact-result_heading {
    	font-size: 20px;
    	margin: 0 0 10px 0;
    }
    
    p.contact-result_text {
    	font-size: 14px;
    }
}

/*================================================================================
recruit
================================================================================*/

.recruit-message {
	padding: 0 40px;
	margin: 0 0 150px 0;
}

.recruit-message_visual {
	max-width: 1600px;
	margin: -250px auto 0 auto;
	position: relative;
	z-index: -1;
}

.recruit-service {
	background-color: #f2f6f6;
	border-radius: 100px;
	padding: 200px 0;
    margin: 0 0 200px 0;
}

.recruit-service.bg-sepia {
	background-color: #f6f6f2;
}

.recruit-service.bg-ivory {
	background-color: #f9f6f6;
}

.recruit-service.bg-gray {
	background-color: #f2f6f6;
}

.recruit-service_inner {
	background-color: #ffffff;
	padding: 100px 60px;
	border-radius: 60px;
}

h3.recruit-service_list-heading {
    position: relative;
    font-size: 26px;
	padding: 0 0 10px 0;
	margin: 0 0 20px 0;
}

h3.recruit-service_list-heading::before {
    content: "";
    display: block;
    width: 45px;
    height: 1px;
    background-color: #d21920;
    position: absolute;
    left: 0;
    bottom: 0; 
}

h4.recruit-service_list-heading {
    font-size: 26px;
}

h4.recruit-service_list-heading .small {
    font-size: 20px;
    display: block;
}

.recruit-service_list-text {
    font-size: 16px;
    text-align: justify;
}

.recruit-service_list-item {
    padding: 0 30px;
}

.recruit-service_list-item.border-right {
    border-right: 1px solid #cccccc;
}

.recruit-service_list-separate {
    border-top: 1px solid #cccccc;
    margin: 50px 0;
}

.recruit-service_list-miniseparate {
    border-top: 1px solid #cccccc;
    margin: 20px 0;
}

.recruit-date_slider-slide {
	padding: 0 35px;
}

.recruit-date_slider .swiper-button-prev {
    width: 30px;
    height: 30px;
    left: 20px;
}

.recruit-date_slider .swiper-button-prev:after {
    content: "";
    background-image: url("assets/img/recruit/recruit-date_slider-prev.png");
    width: 30px;
    height: 30px;
    background-size: 30px 30px;
    display: block;
}

.recruit-date_slider .swiper-button-next {
    width: 30px;
    height: 30px;
    right: 20px;
}

.recruit-date_slider .swiper-button-next:after {
    content: "";
    background-image: url("assets/img/recruit/recruit-date_slider-next.png");
    width: 30px;
    height: 30px;
    background-size: 30px 30px;
    display: block;
}

.recruit-date {
	margin: 0 0 100px 0;
}

.recruit-date_datelist .column-content .row-outer {
    margin: 0 -15px;
}

.recruit-date_datelist .column-content .col-inner {
    padding: 0 15px;
}

.recruit-date_datelist .column-content .column-item {
	margin: 0 0 30px 0;
}

.recruit-gray {
	background-color: #f2f5f8;
}

.recruit-interview {
	margin: 0 0 150px 0;
}

.recruit-interview_bigthumb {
	position: relative;
	z-index: 1;
}

.recruit-interview_background {
	background-color: #f6f6f2;
	padding: 0 0 200px 0;
}

.recruit-interview_background.bg-softred {
    background-color: #FCF3F4;
}

.recruit-interview_background.bg-gray {
	background-color: #f2f6f6;
}

h2.recruit-interview_heading {
	margin: 0 0 100px 0;
}

.recruit-interview_profile {
	background-color: #ffffff;
	border-radius: 20px;
	padding: 20px 50px;
	margin: -40px 0 150px 0;
	position: relative;
	z-index: 2;
}

.recruit-interview_profile .column-content .row-outer {
    margin: 0 -40px;
}

.recruit-interview_profile .column-content .col-inner {
    padding: 0 40px;
}

.recruit-interview_profile .separate-lg-vertical {
	border-right: 1px solid #cccccc;
}

h3.recruit-interview_profile-header_heading {
    font-size: 22px;
}

h3.recruit-interview_profile-header_heading .en {
    font-size: 14px;
    display: block;
    color: #d21920;
}

.recruit-interview_profile-staff_text .position {
    font-size: 14px;
    display: block;
}

.recruit-interview_profile-staff_text .name {
    font-size: 24px;
}

.recruit-interview_profile-staff_text .name .en {
    font-size: 14px;
    color: #d21920;
    margin: 0 0 0 10px;
}

.recruit-interview_article .column-content {
    margin: 0 0 150px 0;
}

.recruit-interview_article .column-content .row-outer {
    margin: 0 -35px;
}

.recruit-interview_article .column-content .col-inner {
    padding: 0 35px;
}

h4.recruit-interview_article-heading {
    font-size: 24px;
    color: #d21920;
    margin: 0 0 10px 0;
}

p.recruit-interview_article-text {
    font-size: 14px;
    margin: 0 0 40px 0;
    line-height: 2.5;
}

h4.recruit-interview_schedule-heading {
    margin: 0 0 30px 0;
}

.recruit-interview_schedule {
	background-color: #ffffff;
	border-radius: 20px;
	padding: 50px 80px;
}

.recruit-walfare {
	padding: 150px 0;
}

h3.recruit-walfare_heading {
	margin: 0 0 50px 0;
}

.recruit-walfare_list .column-content .row-outer {
    margin: 0 -15px;
}

.recruit-walfare_list .column-content .col-inner {
    padding: 0 15px;
}

.recruit-walfare_list .column-content .column-item {
	margin: 0 0 30px 0;
}

.recruit-walfare_list-item {
	background-color: #f2f5f8;
    font-size: 20px;
    line-height: 1.7;
    padding: 20px;
    text-align: center;
   height: 110px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.recruit-entry {
	background-image: url("assets/img/recruit/recruit-entry_back.png");
	padding: 90px 0;
	margin: 0 0 120px 0;
}

.recruit-entry .column-content .row-outer {
    margin: 0 -15px;
}

.recruit-entry .column-content .col-inner {
    padding: 0 15px;
}

h2.recruit-entry_heading {
    font-size: 40px;
    color: #ffffff;
    margin: 20px 0 30px 0;
}

h2.recruit-entry_heading .en {
    font-size: 16px;
    color: #ffffff;
    display: block;
}

p.recruit-entry_lead {
    font-size: 16px;
    color: #ffffff;
}

.recruit-entry_info .column-content .row-outer {
    margin: 0 -15px;
}

.recruit-entry_info .column-content .col-inner {
    padding: 0 15px;
}

.recruit-entry_info-outer {
	background-color: #ffffff;
	border-radius: 20px;
	padding: 30px;
}

h3.recruit-entry_info-heading {
    font-size: 20px;
    text-align: center;
   	margin: 0 0 10px 0;
}

p.recruit-entry_info-lead {
    font-size: 14px;
    text-align: center;
     margin: 0 0 10px 0;
}

.recruit-entry_info-tel {
	margin: 0 0 30px 0;
}

.recruit-entry_info-tel_title {
	display: block;
	font-size: 15px;
	color: #003c74;
	text-align: center;
	margin: 0 0 5px 0;
}

.recruit-entry_info-tel_item {
	margin: 0 0 15px 0;
}

@media (max-width: 1400px) {

    .recruit-message_visual {
    	max-width: 1500px;
    	margin: -200px auto 0 auto;
    }
}

@media (max-width: 991px) {

	.recruit-message {
		padding: 0;
		margin: 0 0 50px 0;
	}

	.recruit-message_visual {
		margin: -150px auto 0 auto;
	}
	
    .recruit-service {
    	border-radius: 25px;
    	padding: 50px 0;
    	margin: 0 0 100px 0;
    }
    
    .recruit-service_inner {
    	 background-color: rgba(255, 255, 255, 0);
    	padding: 0;
    	border-radius: 0;
    }
    
    h3.recruit-service_list-heading {
        font-size: 20px;
    	padding: 0 0 5px 0;
    	margin: 0 0 10px 0;
    }
    
    h3.recruit-service_list-heading::before {
        width: 20px;
    }
    
    h4.recruit-service_list-heading {
        font-size: 20px;
    }
    
    h4.recruit-service_list-heading .small {
        font-size: 16px;
    }
    
    .recruit-service_list-text {
        font-size: 14px;
    }
    
    .recruit-service_list-item {
        padding: 0;
    }
    
    .recruit-service_list-item.border-right {
        border-right: none;
    }
    
    .recruit-service_list-separate {
        margin: 20px 0;
    }
    
    .recruit-service_list-miniseparate {
        margin: 20px 0;
    }
	
	.recruit-interview {
		margin: 0;
	}
	
	.recruit-interview_background {
		padding: 0 0 50px 0;
	}
	
	h2.recruit-interview_heading {
		margin: 0 0 20px 0;
	}
	
	.recruit-interview_profile {
		border-radius: 10px;
		padding: 20px;
		margin: -20px auto 40px auto;
		width: calc(100% - 30px);
	}
	
	.recruit-interview_profile .separate-lg-vertical {
		border-right: none;
	}
	
	.recruit-interview_profile .separate-horizn {
		border-top: 1px solid #cccccc;
		max-width: 200px;
		margin: 10px auto;
	}
	
	h3.recruit-interview_profile-header_heading {
	    font-size: 18px;
	    text-align: center;
	}
	
	h3.recruit-interview_profile-header_heading .en {
	    font-size: 12px;
	}
	
	.recruit-interview_profile-staff_text .position {
	    font-size: 13px;
	   	text-align: center;
	   	margin: 0 0 10px 0;
	}
	
	.recruit-interview_profile-staff_text .name {
	    font-size: 22px;
	   	text-align: center;
	    display: block;
	}
	
	.recruit-interview_profile-staff_text .name .en {
	    font-size: 10px;
	    margin: 0;
	    display: block;
	}
	
	.recruit-interview_article .column-content {
	    margin: 0 0 50px 0;
	}
	
	h4.recruit-interview_article-heading {
	    font-size: 18px;
	    margin: 0 0 5px 0;
	}
	
	p.recruit-interview_article-text {
	    margin: 0 0 30px 0;
	    line-height: 2;
	}
	
	h4.recruit-interview_schedule-heading {
	    margin: 0 0 20px 0;
	}
	
	.recruit-interview_schedule {
		border-radius: 15px;
		padding: 30px 20px;
	}
	
	.recruit-interview_schedule-map {
		max-width: 260px;
		margin: 0 auto;
	}
	
	.recruit-walfare {
		padding: 70px 0;
	}
	
	h3.recruit-walfare_heading {
		margin: 0 0 20px 0;
	}
	
	.recruit-walfare_list .column-content .row-outer {
	    margin: 0 -5px;
	}
	
	.recruit-walfare_list .column-content .col-inner {
	    padding: 0 5px;
	}
	
	.recruit-walfare_list .column-content .column-item {
		margin: 0 0 10px 0;
	}
	
	.recruit-walfare_list-item {
	    font-size: 12px;
	    padding: 5px;
   		height: 60px;
	}
	
	.recruit-entry {
		background-image: url("assets/img/recruit/recruit-entry_back.png");
		padding: 40px 0 20px 0;
		margin: 0 0 70px 0;
	}

	.recruit-entry .column-content .column-item {
		margin: 0 0 20px 0;
	}
	
	h2.recruit-entry_heading {
	    font-size: 25px;
	    margin: 0 0 20px 0;
	    text-align: center;
	}
	
	h2.recruit-entry_heading .en {
	    font-size: 10px;
	}
	
	p.recruit-entry_lead {
	    font-size: 14px;
	    text-align: center;
	    margin: 0 0 30px 0;
	}
	
	.recruit-entry_info-outer {
		border-radius: 10px;
		padding: 30px 20px;
	}
	
	.recruit-entry_info-action_button {
		max-width: 230px;
		margin: 0 auto;
		display: block;
	}

}

/*================================================================================
group-recruit.html
================================================================================*/

h2.grouprecruit-recruit_heading {
	margin: 0 0 80px 0;
}

.grouprecruit-recruit_visual {
	margin: 0 0 100px 0;
}

.grouprecruit-recruit_visual-thumb {
    margin-right: calc(50% - 40vw);
    border-top-left-radius: 30px;
    border-bottom-left-radius: 50px;
    overflow: hidden;
}

.grouprecruit-recruit_visual-thumb img {
	height: 580px;
	object-fit: cover;
}

.grouprecruit-recruit_visual.visual-left .grouprecruit-recruit_visual-thumb {
    margin-right: 0;
    margin-left: calc(50% - 40vw);
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}

.grouprecruit-recruit_visual-explain {
	background-color: #ffffff;
	margin: 80px -100px 0 0;
	position: relative;
	z-index: 1;
	border-radius: 30px;
	padding: 60px 80px;
}

.grouprecruit-recruit_visual.visual-left .grouprecruit-recruit_visual-explain {
	margin: 80px 0 0 -100px;
}

.grouprecruit-recruit_visual-explain_lead {
    font-size: 16px;
    line-height: 3;
    text-align: justify;
   	margin: 0 0 20px 0;
}

.grouprecruit-recruit_visual-explain_action-button {
	max-width: 140px;
	display: block;
	margin: 0 0 0 auto;
}

.grouprecruit-recruit_human {
   	margin: 0 0 100px 0;
}

h3.grouprecruit-recruit_human-heading {
	font-size: 30px;
	text-align: center;
	margin: 0 0 60px 0;
}

.grouprecruit-recruit_human .column-content .row-outer {
    margin: 0 -20px;
}

.grouprecruit-recruit_human .column-content .col-inner {
    padding: 0 20px;
}

.grouprecruit-recruit_human-slider_slide {
	padding: 0 35px;
}

.grouprecruit-recruit_human-slider .swiper-button-prev {
    width: 30px;
    height: 30px;
    left: 20px;
}

.grouprecruit-recruit_human-slider .swiper-button-prev:after {
    content: "";
    background-image: url("assets/img/group-recruit/grouprecruit-recruit_human-slider-prev.png");
    width: 30px;
    height: 30px;
    background-size: 30px 30px;
    display: block;
}

.grouprecruit-recruit_human-slider .swiper-button-next {
    width: 30px;
    height: 30px;
    right: 20px;
}

.grouprecruit-recruit_human-slider .swiper-button-next:after {
    content: "";
    background-image: url("assets/img/group-recruit/grouprecruit-recruit_human-slider-next.png");
    width: 30px;
    height: 30px;
    background-size: 30px 30px;
    display: block;
}

.grouprecruit-recruit_action-button {
	max-width: 100%;
	width: 100%;
	text-align: center;
	display: block;
	padding: 30px;
	font-size: 24px;
}

.grouprecruit-recruit_action-button::before {
    right: 40px;
}

@media (max-width: 991px) {

	h2.grouprecruit-recruit_heading {
		margin: 0 0 50px 0;
	}
	
	.grouprecruit-recruit_visual {
		margin: 0;
	}
	
	.grouprecruit-recruit_visual-thumb {
	    margin-right: calc(50% - 50vw);
	    border-top-left-radius: 15px;
	    border-bottom-left-radius: 15px;
	}
	
	.grouprecruit-recruit_visual-thumb img {
		height: 240px;
	}
	
	.grouprecruit-recruit_visual.visual-left .grouprecruit-recruit_visual-thumb {
	    margin-left: calc(50% - 50vw);
	    border-top-right-radius: 15px;
	    border-bottom-right-radius: 15px;
	}
	
	.grouprecruit-recruit_visual-explain {
		width: calc(100% - 30px);
		margin: -20px auto 50px auto;
		border-radius: 15px;
		padding: 30px 20px;
	}
	
	.grouprecruit-recruit_visual.visual-left .grouprecruit-recruit_visual-explain {
		margin: -20px auto 50px auto;
	}
	
	.grouprecruit-recruit_visual-explain_lead {
	    font-size: 14px;
	    line-height: 2;
	   	margin: 0 0 10px 0;
	}
	
	.grouprecruit-recruit_visual-explain_action-button {
		max-width: 140px;
		display: block;
		margin: 0 0 0 auto;
	}
	
	.grouprecruit-recruit_human {
	   	margin: 0 0 50px 0;
	}
	
	h3.grouprecruit-recruit_human-heading {
		font-size: 25px;
		margin: 0 0 30px 0;
	}
	
	.grouprecruit-recruit_human .column-content .row-outer {
	    margin: 0 -10px;
	}
	
	.grouprecruit-recruit_human .column-content .col-inner {
	    padding: 0 10px;
	}
	
	.grouprecruit-recruit_action-button {
		padding: 10px 40px 10px 20px;
		font-size: 15px;
		line-height: 1.4;
		max-width: 300px;
		text-align: left;
		margin: 0 auto;
	}
	
	.grouprecruit-recruit_action-button::before {
		width: 20px;
		height: 20px;
		background-size: 20px 20px;
	    right: 15px;
	}
}

/*================================================================================
company.html
================================================================================*/

.radiusback-gray {
	background-color: #f2f5f8;
	border-radius: 100px;
	padding: 150px 0 50px 0;
	margin: 0 0 150px 0;
}

.company-scrollmenu_menu {
	margin: 0 0 100px 0;
}

#company-scrollmenu.fixed {
    position: fixed;
    top: 110px;
    left: 0;
	width: 100%;
	background-color: #ffffff;
	padding: 10px 15px;
	z-index: 900;
}

#company-scrollmenu.fixed .company-scrollmenu_menu {
	margin: 0;
}

.company-scrollmenu_menu ul {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
}

.company-scrollmenu_menu ul li {
	font-size: 18px;
	line-height: 1.4;
	position: relative;
	padding: 0 35px 0 0;
	display: flex;
    align-items: center;
}

.company-scrollmenu_menu ul li::after {
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	background-image: url("assets/img/company/company-scrollmenu_menu-icon.png");
	background-size: 20px 20px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%) translateX(0);
}

.company-thought {
	margin: 0 0 60px 0;
}

h2.company-thought_heading {
	margin: 0 0 40px 0;
}

p.company-thought_lead {
	font-size: 24px;
	text-align: center;
	margin: 0 0 60px 0;
}

.company-thought_cred {
	margin: 0 0 60px 0;
}

h3.company-thought_cred-heading {
    font-size: 24px;
    color: #7394b3;
    background-color: #ffffff;
    border-radius: 60px;
    text-align: center;
    padding: 15px;
	margin: 0 0 30px 0;
}

.company-thought_cred-list_item {
    position: relative;
    width: 100%;
    background-size: 100% 100%;
}

.company-thought_cred-list_item::before {
  content: "";
  display: block;
  padding-top: 100%; 
}

.company-thought_cred-list_item.first {
    background-image: url("assets/img/company/company-thought_cred-list_item-1.png");
}

.company-thought_cred-list_item.first:hover {
    background-image: url("assets/img/company/company-thought_cred-list_item-1-hover.png");
}

.company-thought_cred-list_item.second {
    background-image: url("assets/img/company/company-thought_cred-list_item-2.png");
}

.company-thought_cred-list_item.second:hover {
    background-image: url("assets/img/company/company-thought_cred-list_item-2-hover.png");
}

.company-thought_cred-list_item.third {
    background-image: url("assets/img/company/company-thought_cred-list_item-3.png");
}

.company-thought_cred-list_item.third:hover {
    background-image: url("assets/img/company/company-thought_cred-list_item-3-hover.png");
}

.company-thought_cred-list_item.four {
    background-image: url("assets/img/company/company-thought_cred-list_item-4.png");
}

.company-thought_cred-list_item.four:hover {
    background-image: url("assets/img/company/company-thought_cred-list_item-4-hover.png");
}

.company-thought_point .column-content .row-outer {
	margin: 0 -15px;
}

.company-thought_point .column-content .col-inner {
	padding: 0 15px;
}

.company-thought_point-item {
	background-color: #ffffff;
	border-radius: 30px;
	padding: 30px 50px;
	margin: 0 0 30px 0;
}

h3.company-thought_heading {
	font-size: 30px;
	text-align: center;
	margin: 0 0 20px 0;
}

h3.company-thought_heading .en {
	font-size: 16px;
	display: block;
	color: #d21920;
}

h3.company-thought_heading .marker {
	background:linear-gradient(transparent 70%, #f1babc 60%);
}

p.company-thought_point-text {
	font-size: 16px;
	text-align: justify;
}

.company-staff_slider {
	margin: 0 0 150px 0;
}

.company-staff_slider .swiper-wrapper {
    transition-timing-function: linear;
}

.company-staff_slider-slide:nth-child(odd) {
	margin: 60px 0 0 0;
}

h2.company-strong_heading {
	max-width: 650px;
	margin: 0 auto 70px auto;
}

p.company-strong_lead {
	font-size: 16px;
	text-align: center;
	margin: 0 0 70px 0;
}

.company-strong_pointlist {
	max-width: 650px;
	margin: 0 auto 70px auto;
}

.company-strong_pointlist table {
	width: 100%;
}

.company-strong_pointlist table th {
	width: 200px;
}

.company-strong_pointlist-heading {
	width: 150px;
}

.company-strong_pointlist table td {
	font-size: 16px;
}

.company-strong_pointlist ul li {
	padding: 30px 0;
	border-bottom: 1px solid #cccccc;
}

.company-strong_logo {
	background-color: #ffffff;
	border-radius: 50px;
	padding: 60px 50px 100px 50px;
}

h4.company-strong_logo-heading {
	font-size: 24px;
	text-align: center;
	margin: 0 0 50px 0;
}

p.company-strong_logo-text {
	font-size: 16px;
	text-align: justify;
}

.company-strong_logo .column-content .row-outer {
	margin: 0 -30px;
}

.company-strong_logo .column-content .col-inner {
	padding: 0 30px;
}

.company-about {
	margin: 0 0 100px 0;
}

h2.company-about_heading {
	margin: 0 0 40px 0;
}

h2.company-about_heading .lead {
	display: block;
	font-size: 20px;
}

.company-about .column-content .row-outer {
	margin: 0 -50px;
}

.company-about .column-content .col-inner {
	padding: 0 50px;
}

.company-about_text {
	font-size: 16px;
	text-align: justify;
}

.company-service {
	margin: 0 0 120px 0;
}

.company-service .recruit-service_inner {
    background-color: #f2f5f8;
}

.company-service .recruit-service_inner.bg-white {
    background-color: #ffffff;
}

.company-service .top-service_action {
	margin: 60px 0 0 0;
}

.company-service .top-service_action-text {
    color: #3e3a39;
}

.company-service .top-service_action-button {
	max-width: 300px;
	letter-spacing: 5px;
	font-size: 22px;
}

.company-ads {
	background-color: #f2f5f8;
	padding: 100px 0;
	margin: 0 0 150px 0;
}

.company-profile {
	margin: 0 0 150px 0;
}

h2.company-profile_heading {
	margin: 0 0 40px 0;
}

.company-profile .column-content .row-outer {
	margin: 0 -45px;
}

.company-profile .column-content .col-inner {
	padding: 0 45px;
}

.company-profile_carier {
	margin: 0 0 60px 0;
}

.company-profile_carier-text {
	font-size: 14px;
	text-align: justify;
}

.company-profile_ceo {
	margin: 0 0 20px 0;
}

.company-profile_ceo-position {
	font-size: 16px;
	display: block;
}

.company-profile_ceo-name {
	font-size: 30px;
}

.company-profile_ceo-name .en {
	font-size: 14px;
	color: #d21920;
	margin: 0 0 0 10px;
}

.company-profile_history table {
	width: 100%;
}

.company-profile_history table th {
	font-size: 16px;
	width: 120px;
	border-right: 1px solid #3e3a39;
	padding: 5px 0;
	font-weight: 400;
}

.company-profile_history table td {
	font-size: 16px;
	padding: 5px 25px;
}

.company-profile_history table tr:first-child th {
	padding: 0 0 5px 0;
}

.company-profile_history table tr:first-child td {
	padding: 0 25px 5px 25px;
}

.company-profile_history table tr:last-child th {
	padding: 5px 0 0 0;
}

.company-profile_history table tr:last-child td {
	padding: 5px 25px 0 25px;
}

.company-outline {
	margin: 0 0 150px 0;
}

h2.company-outline_heading {
	margin: 0 0 40px 0;
}

.company-outline_table {
	margin: 0 0 80px 0;
}

.company-outline_table table {
	width: 100%;
}

.company-outline_table table th {
	font-size: 18px;
	line-height: 1.7;
	width: 200px;
	padding: 15px 50px;
	font-weight: 400;
}

.company-outline_table table td {
	font-size: 18px;
	line-height: 1.7;
	padding: 15px 50px;
}

.company-outline_table table td p {
	margin: 0 0 10px 0;
}

.company-outline_table table tr {
	border-bottom: 1px solid #cccccc;
}

.company-outline_table table tr:last-child {
	border-bottom: none;
}

@media (max-width: 1400px) {

	#company-scrollmenu.fixed {
	    top: 80px;
	}
}
	
@media (max-width: 1200px) {

	#company-scrollmenu.fixed {
	    top: 70px;
	}
	
	.company-scrollmenu_menu ul li {
	    padding: 0 30px 0 0;
	}
	
	.company-scrollmenu_menu ul li::after {
		width: 15px;
		height: 15px;
		background-size: 15px 15px;
	}
}

@media (max-width: 991px) {

	.radiusback-gray {
		border-radius: 30px;
		padding: 40px 0 20px 0;
		margin: 0 0 70px 0;
	}

    #company-scrollmenu.fixed {
        position: fixed;
        top: 65px;
    	padding: 5px 0;
    }
    
    .company-scrollmenu .container {
    	padding: 0 20px;
    }
	
	.company-scrollmenu_menu {
		margin: 0 0 50px 0;	
	}
	
	.company-scrollmenu_menu ul {
		flex-wrap: wrap;
	}
	
	.company-scrollmenu_menu ul li {
		width: 50%;
		text-align: left;
		position: relative;
		padding: 10px 30px 10px 10px;
		font-size: 12px;
	}
	
	.company-scrollmenu_menu ul li:nth-child(1) {
		border-bottom: 1px solid #cccccc;
		border-right: 1px solid #cccccc;
	}

	.company-scrollmenu_menu ul li:nth-child(2) {
		border-bottom: 1px solid #cccccc;
	}
	
	.company-scrollmenu_menu ul li:nth-child(3) {
		border-right: 1px solid #cccccc;
	}
		
	.company-scrollmenu_menu ul li::after {
		width: 15px;
		height: 15px;
		background-size: 15px 15px;
		margin: 0;
		position: absolute;
		top: 50%;
		right: 10px;
		transform: translateY(-50%) translateX(0);
	}
	
	.company-thought {
		margin: 0 0 40px 0;
	}
	
	h2.company-thought_heading {
		margin: 0 0 20px 0;
	}
	
	h2.company-about_heading .lead {
		font-size: 11px;
	}
	
	p.company-thought_lead {
		font-size: 20px;
		margin: 0 0 40px 0;
	}
	
	.company-thought_cred {
		max-width: 320px;
		margin: 0 auto 40px auto;
	}
	
    h3.company-thought_cred-heading {
        font-size: 14px;
        padding: 10px;
    	margin: 0 0 15px 0;
    }
    	
	.company-thought_point-item {
		border-radius: 20px;
		padding: 30px 20px;
	}
	
	h3.company-thought_heading {
		font-size: 20px;
		margin: 0 0 10px 0;
	}
	
	h3.company-thought_heading .en {
		font-size: 11px;
	}
	
	p.company-thought_point-text {
		font-size: 14px;
	}
	
	h2.company-strong_heading {
		margin: 0 auto 30px auto;
	}
	
	p.company-strong_lead {
		font-size: 14px;
		margin: 0 0 30px 0;
	}
	
	.company-strong_pointlist {
		margin: 0 auto 50px auto;
	}
	
	.company-strong_pointlist table th {
		width: 140px;
	}
	
	.company-strong_pointlist-heading {
		width: 120px;
	}
	
	.company-strong_pointlist table td {
		font-size: 14px;
	}
	
	.company-strong_pointlist ul li {
		padding: 10px 0;
	}
	
	.company-strong_logo {
		border-radius: 20px;
		padding: 30px 20px;
	}
	
	.company-strong_logo-thumb {
		max-width: 200px;
		margin: 0 auto 30px auto;
	}
	
	h4.company-strong_logo-heading {
		font-size: 18px;
		margin: 0 0 30px 0;
	}
	
	p.company-strong_logo-text {
		font-size: 14px;
	}
	
	.company-about {
		margin: 0 0 50px 0;
	}
	
	h2.company-about_heading {
		margin: 0 0 20px 0;
	}
	
	.company-about_thumb {
		margin: 0 0 20px 0;	
	}
	
	.company-about_text {
		font-size: 14px;
	}
	
    .company-service {
    	margin: 0 0 60px 0;
    }
    
    .company-service .recruit-service_inner {
        border-radius: 20px;
        padding: 40px 20px;
    }
    
    .company-service .top-service_action {
    	margin: 30px 0 0 0;
    }
    
    .company-service .top-service_action-button {
    	max-width: 250px;
    	letter-spacing: 2.5px;
    	font-size: 15px;
    }
	
	.company-ads {
		padding: 30px 0;
		margin: 0 0 70px 0;
	}
	
	.company-profile {
		margin: 0 0 70px 0;
	}
	
	h2.company-profile_heading {
		margin: 0 0 20px 0;
	}
	
	.company-profile_thumb {
		margin: 0 0 20px 0;	
	}
	
	.company-profile_carier {
		margin: 0 0 20px 0;
	}
	
	.company-profile_carier-text {
		font-size: 14px;
	}
	
	.company-profile_ceo {
		margin: 0 0 10px 0;
	}
	
	.company-profile_ceo-position {
		font-size: 14px;
	}
	
	.company-profile_ceo-name {
		font-size: 22px;
	}
	
	.company-profile_ceo-name .en {
		font-size: 12px;
		margin: 0 0 0 5px;
	}
	
	.company-profile_history table tr {
		border-bottom: 1px solid #cccccc; 
	}

	.company-profile_history table tr:last-child {
		border-bottom: none; 
	}
		
	.company-profile_history table th {
		font-size: 15px;
		width: 100%;
		display: block;
		border-right: none;
		padding: 5px 0 0 0;
	}
	
	.company-profile_history table td {
		font-size: 14px;
		width: 100%;
		display: block;
		padding: 0 0 5px 0;
	}
	
	.company-profile_history table tr:first-child th {
		padding: 5px 0 0 0;
	}
	
	.company-profile_history table tr:first-child td {
		padding: 0 0 5px 0;
	}
	
	.company-profile_history table tr:last-child th {
		padding: 5px 0 0 0;
	}
	
	.company-profile_history table tr:last-child td {
		padding: 0 0 5px 0;
	}
	
	.company-outline {
		margin: 0 0 50px 0;
	}
	
	h2.company-outline_heading {
		margin: 0 0 40px 0;
	}
	
	.company-outline_table {
		margin: 0 0 80px 0;
	}
	
	.company-outline_table table {
		width: 100%;
	}
	
	.company-outline_table table th {
		font-size: 15px;
		width: 100%;
		display: block;
		padding: 5px 0 0 0;
	}
	
	.company-outline_table table td {
		font-size: 14px;
		width: 100%;
		display: block;
		padding: 0 0 5px 0;
	}
	
	.company-outline_table table tr:last-child {
		border-bottom: none;
	}
	
	.company-office.top-company {
		margin: 0;
	}
}

/*================================================================================
service
================================================================================*/

.service-point {
    margin: 0 0 100px 0;
}

h3.service-point_heading {
    background-color: #003c74;
    font-size: 30px;
    text-align: center;
    color: #ffffff;
	line-height: 1.4;
    padding: 20px 35px;
    border-radius: 60px;
	margin: 0 0 50px 0;
	display: flex;
	justify-content: center;
    align-items: center;
}

.service-point_explain {
	margin: 0 0 100px 0;
}

.service-point_explain-thumb {
    max-width: 380px;
}

.service-point_explain .column-content .row-outer {
    margin: 0 -40px;
}

.service-point_explain .column-content .col-inner {
    padding: 0 40px;
}

.service-point_explain-text {
    font-size: 16px;
    text-align: justify;
}

h3.service-point_list-heading {
    position: relative;
    font-size: 26px;
	padding: 0 0 10px 0;
	margin: 0 0 20px 0;
}

h3.service-point_list-heading::before {
    content: "";
    display: block;
    width: 45px;
    height: 1px;
    background-color: #d21920;
    position: absolute;
    left: 0;
    bottom: 0; 
}

.service-point_list-text {
    font-size: 16px;
    text-align: justify;
}

.service-point_list {
    margin: 0 -50px 100px -50px;
}

.service-point_list-item {
    padding: 0 50px;
}

.service-point_list-item.border-right {
    border-right: 1px solid #cccccc;
}

.service-point_list-separate {
    border-top: 1px solid #cccccc;
    margin: 50px 0;
}

.service-ads {
	margin: 0 0 100px 0;
}

@media (max-width: 991px) {
	
    .service-point {
    	margin: 0 0 50px 0;
    }
    
    h3.service-point_heading {
        font-size: 16px;
        padding: 5px 15px;
    	margin: 0 0 20px 0;
    	text-align: left;
    }
    
    h3.service-point_heading .num {
        margin: 0 10px 0 0;
    }
    
    h3.service-point_list-heading {
        font-size: 20px;
    	padding: 0 0 5px 0;
    	margin: 0 0 10px 0;
    }
    
    .service-point_explain {
    	margin: 0 0 50px 0;
    }
    
    .service-point_explain-thumb {
        max-width: 300px;
        margin: 0 auto;
    }

    .service-point_explain-text {
        font-size: 14px;
        margin: 0 0 20px 0;
    }
    
    h3.service-point_list-heading::before {
        width: 20px;
    }
    
    .service-point_list-text {
        font-size: 14px;
    }
    
    .service-point_list {
        margin: 0 0 20px 0;
    }
    
    .service-point_list-item {
        padding: 0;
    }
    
    .service-point_list-item {
        padding: 0;
        margin: 0 0 20px 0;
    }
    
    .service-point_list-item.border-right {
        border-right: none;
    }
    
    .service-point_list-separate {
        margin: 20px 0;
    }
    
    .service-ads {
    	margin: 0 0 50px 0;
    }
}

/* 25.11.28 追記 ------------------------------------------------*/

.contact-webform_form-agree_text a{
    border-bottom: 1px solid #003c74;
}