@charset "UTF-8";

#wrapper{
	overflow: hidden;
}

.hide-text {
	display:block;
	text-indent:100%;
	white-space:nowrap;
	overflow:hidden;
}

.pcNone{
	display:none;
}

.cmn_center{
	text-align: center;
	margin: 0 auto;
}

.cmn_maxbox {
	width:100%; max-width: 1000px; margin: 0 auto;
}

.cmn_maxbox_800 {
	width:100%; max-width: 800px; margin: 0 auto;
}

.cmn_maxbox_900 {
	width:100%; max-width: 900px; margin: 0 auto;
}

.cmn_maxbox_1200 {
	width:100%; max-width: 1200px; margin: 0 auto;
}

.cmn_maxbox_1300 {
	width:100%; max-width: 1300px; margin: 0 auto;
}

.cmn_maxbox_1400 {
	width:100%; max-width: 1400px; margin: 0 auto;
}

.cmn_boxouter_150{
	margin-top: 150px;
	margin-bottom: 150px;
}

.cmn_boxouter_100{
	margin-top: 100px;
	margin-bottom: 100px;
}

.cmn_boxouter_80{
	margin-top: 80px;
	margin-bottom: 80px;
}

.cmn_boxouter_60{
	margin-top: 60px;
	margin-bottom: 60px;
}

.cmn_boxouter_50{
	margin-top: 50px;
	margin-bottom: 50px;
}

.cmn_boxinner_40{
	padding-top: 40px;
	padding-bottom: 40px;
}

.cmn_boxinner_50{
	padding-top: 50px;
	padding-bottom: 50px;
}

.cmn_boxinner_100{
	padding-top: 100px;
	padding-bottom: 100px;
}

/* font-size */
.font_12{
	font-size: 1.2rem;
}

.font_14{
	font-size: 1.4rem;
}

.font_16{
	font-size: 1.6rem;
}

.font_18{
	font-size: 1.8rem;
}

.font_20{
	font-size: 2.0rem;
}

.font_24{
	font-size: 2.4rem;
}

.font_28{
	font-size: 2.8rem;
}

.font_32{
	font-size: 3.2rem;
}

.font_36{
	font-size: 3.6rem;
}

.font_42{
	font-size: 4.2rem;
}

.font_40{
	font-size: 4.0rem;
}

.font_48{
	font-size: 4.8rem;
}

.font_60{
	font-size: 6.0rem;
}

.font_65{
	font-size: 6.5rem;
}

.font_100{
	font-size: 10.0rem;
	line-height: 1;
}

/* font-family */
.font_encode{
	font-family: 'Encode Sans', sans-serif;
}

.font_exo{
	font-family: 'Exo', sans-serif;
}

.font_mplus{
	font-family: 'M PLUS 1p', sans-serif;
}

.font_seikai{
	font-family: 'Sei Kaisho CB1', '正楷書CB1';
}
.font_notosans{
	font-family: "Noto Sans JP","HiraKakuProN-W3","Hiragino Kaku Gothic ProN","ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","HiraKakuProN-W6","ヒラギノ角ゴ ProN W6","HiraKakuPro-W6","ヒラギノ角ゴ Pro W6",Meiryo,"Yu Gothic",YuGothic,"游ゴシック体","メイリオ",Osaka,arial,helvetica,sans-serif;
}

/* common /////////////////////////////////////////////////////////////////////////////////////////// */

header {
	width:100%;
}

main {
    width:100%;
}

footer {
	width:100%;
}



/* cmn ///////////////////////////////////// */
/* modalmenu */
#header_modalmenu_check:checked ~ .header_infobar {
    box-shadow: 0 8px 20px 0 #e5e5e5;
}

#header_modalmenu_check {
    /* position: absolute;
    right: 5%;
    top: 50px;
    transform: translate(50%, -50%);
    z-index: -99;
    display: inline-block;
    opacity: 0; */
    display: none;
}

.header_modalmenu_btn {
    flex-shrink: 0;
	display: none;
    /* display: inline-flex; */
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 100%;
    cursor: pointer;
    background-color: #ffffff;
	z-index: 50;
}

.header_modalmenu_btn .box {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 20px;
}

.header_modalmenu_btn .box span {
    position: absolute;
    left: 0;
    top: calc((100% - 1px)/2);
    display: block;
    width: 100%;
    height: 1px;
    transition: transform .15s,
                opacity .15s;
    background-color: #3680b2;
}

.header_modalmenu_btn .top {
    transform: translateY(-13px);
}

.header_modalmenu_btn .bottom {
    transform: translateY(13px);
}

#header_modalmenu_check:checked ~ .header_infobar .header_modalmenu_btn .top {
    transform: rotate(45deg);
}

#header_modalmenu_check:checked ~ .header_infobar .header_modalmenu_btn .center {
    opacity: 0;
}

#header_modalmenu_check:checked ~ .header_infobar .header_modalmenu_btn .bottom {
    transform: rotate(-45deg);
}

#header_modalmenu_close_bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    background-color: rgba(0, 0, 0, 0.6);
	z-index: 30;
}

#header_modalmenu_check:checked ~ #header_modalmenu_close_bg {
    display: block;
}

#header_modalmenu_area {
    position: absolute;
    top: 0px;
    right: 0;
    width: 100%;
    height: auto;
    padding: 110px 0 50px;
    background-color: #FFFFFF;
    opacity: 0;
    transition: opacity .15s;
    overflow: auto;
    pointer-events: none;
	z-index: 40;
}

#header_modalmenu_check:checked ~ #header_modalmenu_area {
    opacity: 1;
    pointer-events: all;
}

.header_modalmenu_areainner {
    overflow-y: auto;
}

.header_modalmenu_nav li {
    border-bottom: 1px solid #1A2B6D;
}

.header_modalmenu_nav a {
    display: block;
    padding: 14px;
    color: #3680b2;
    text-align: center;
}

.header_modalmenu_nav a span{
	display: block;
	font-size: 1.2rem;
	line-height: 1;
}

/* cmn_btn */
.cmn_btn{
	width: 200px;
	margin: 0 auto;
}
.cmn_btn a{
	font-size: 1.6rem;
	background-color: #3680b2;
	display: block;
	width: 100%;
	color: #ffffff;
	text-align: center;
	line-height: 60px;
	height: 60px;
}

/* スライドアニメーション */
.scrollanime,
.scrollanime2,
.scrollanime3,
.scrollanime4{opacity: 0;}

.fadeInDown {
    animation-name: fadeInDown;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}
.fadeInDown2 {
	animation: fadeInDown2 0.7s ease-out forwards;
}

.fadeInDown3 {
	animation: fadeInDown3 0.7s ease-out forwards;
}


.fadeInDown4 {
	animation: zoomIn 1s ease-out forwards;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
    }
    100% {
    opacity: 1;
    transform: translate(0);
    }
}

@keyframes fadeInDown2 {
	0% {
		opacity: 0;
	}
	50% {
	transform: translateX(0);
	}
	65% {
	transform: translateX(-20px);
	}
	100% {
	transform: translateX(0);
	opacity: 1;
	}
}

@keyframes fadeInDown3 {
	0% {
		opacity: 0;
	}
	50% {
	transform: translateX(0);
	}
	65% {
	transform: translateX(20px);
	}
	100% {
	transform: translateX(0);
	opacity: 1;
	}
}

@keyframes zoomIn {
	0% {
		transform: scale(0.8);
		opacity: 0;
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}

.updown {transform: translateY(-100px);}
.downup {transform: translateY(100px);}

.slide-right {transform: translateX(400px);}
.slide-left {transform: translateX(-400px);}

/* header */
.header_infobar{
	display: flex;
	justify-content: space-between;
	width: 100%;
	background-color: #ffffff;
	position: relative;
	z-index: 100;
}

.header_logo > a{
	display: block;
	line-height: 80px;
	padding-left: 30px;
}

.header_logo > a > img{
	padding-bottom: 8px;
}

.header_nav > ul{
	display: flex;
	justify-content: center;
}

.header_nav > ul li a{
	display: block;
	line-height: 80px;
	width: 120px;
	text-align: center;
	font-weight: bold;
}

.header_infobar_right{
	display: flex;
}

.header_btn > a{
	background-color: #3680b2;
	background-image: url(../img/cmn_header_phone_ico.svg);
	background-repeat: no-repeat;
	background-position: 40px center;
	display: block;
	width: 260px;
	height: 100%;
	line-height: 78px;
	color: #ffffff;
	font-weight: 600;
	letter-spacing: 1px;
	text-align: right;
	padding-right: 30px;
	position: relative;
}

.header_btn > a::before{
	content: "";
	display: block;
	width: 10px;
	height: 80px;
	background-color: #3d9992;
	position: absolute;
	top: 0;
	left: 0;
}

/* footer */
.footer_topbox{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100px;
	padding: 20px 3%;
	background-color: #3680b2;
	color: #ffffff;
}

.footer_contact strong{
	display: block;
	width: 360px;
	text-align: center;
	line-height: 0.7;
	padding-left: 9px;
	background-image: url(../img/cmn_header_phone_ico.svg);
	background-repeat: no-repeat;
	background-size: 17px 24px;
	background-position: 45px	0px;
}
.footer_contact strong span{
	margin-top: -10px;
}

.footer_topbox .cmn_btn{
	margin: 0;
}

.footer_topbox .cmn_btn a{
	margin: 0;
	background-color: #ffffff;
	color: #3680b2;
}

.footer_middlebox{
	font-weight: 500;
}

.footer_middle_top{
	display: flex;
	justify-content: space-between;
	padding: 55px 0;
	border-bottom: solid 1px #4d4d4d;
}
.footer_middle_top > div{
	padding: 0 20px;
}

.footer_middle_top > div > span{
	display: block;
	margin-top: 10px;
}

.footer_middle_middle{
	display: flex;
	justify-content: space-between;
	padding: 50px 0 70px;
}

.footer_middle_middle .font_14{
	width: 60%;
}

.footer_middle_middle div{
	width: 35%;
	text-align: center;
}

.footer_middle_middle figure{
	margin-top: 25px;
	width: 100%;
	line-height: 60px;
	border: solid 1px #4d4d4d;
}

.footer_middle_bottom{
	display: block;
	text-align: center;
	margin-bottom: 55px;
	font-weight: 600;
}

.footer_nav{
	background-color: #f1f1f1;
	font-weight: bold;
}

.footer_nav ul{
	width: 700px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}

.footer_nav ul li a{
	display: block;
	/* width: 100px; */
	width: 102px;
	line-height: 60px;
	text-align: center;
}

.footer_bottombox{
	display: block;
	text-align: center;
	color: #ffffff;
	background-color: #4d4d4d;
	line-height: 30px;
}
.footer_bottombox a{
	color: #ffffff;
}

/* cmn_maintitle */
.cmn_maintitle{
	width: 100%;
	height: 300px;
	background: linear-gradient(rgba(54, 128, 178, 0.5), rgba(54, 128, 178, 0.5)),url(../img/home_mainimg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	position: relative;
}

.cmn_maintitle::before{
	content: " ";
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 150px 0 150px 200px;
	border-color: transparent transparent transparent rgba(54, 128, 178, 0.2);
	position: absolute;
	top: 0;
	left: 0;
}

.cmn_maintitle::after{
	content: " ";
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 300px 410px;
	border-color: transparent transparent rgba(54, 128, 178, 0.2) transparent;
	position: absolute;
	top: 0;
	right: 0;
}

/* cmn_page_title */
.cmn_page_title{
	width: 100%;
	font-weight: bold;
	color: #ffffff;
	letter-spacing: 0.3em;
	line-height: 1.3;
	text-align: center;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.cmn_page_title span{
	letter-spacing: 0.1em;
}

/* sub_title */
.cmn_tit_1st_blue,
.cmn_tit_1st_green{
	text-align: center;
	font-weight: bold;
	margin-bottom: 50px;
	letter-spacing: 0.35em;
}

.cmn_tit_1st_blue span{
	display: inline;
	background: linear-gradient(transparent 60%, #d7e6f0 60%);
	padding-left: 0.35em;
}

.cmn_tit_1st_green span{
	display: inline;
	background: linear-gradient(transparent 60%, #d8ebe9 60%);
	padding-left: 0.35em;
}

/* cmn_bg */
.bg_gray{
	background-image: url(../img/cmn_bg_dot_2.svg);
}
.bg_white{
	background-image: url(../img/cmn_bg_dot_1.svg);
}

/* cmn_dl */
.cmn_dl{
	border-top: solid 1px #989898;
	background-color: #ffffff;
}
.cmn_dl > div{
	display: flex;
	border-bottom: solid 1px #989898;
	align-items: center;
}
.cmn_dl dt{
	width: 20%;
	padding: 28px 0 28px 50px;
	font-weight: bold;
}
.cmn_dl dd{
	width: 80%;
	padding: 28px 50px;
}

.cmn_dl ul li{
	margin-bottom: 5px;
}

.cmn_dl ul li:last-of-type{
	margin-bottom: 0px;
}

.cmn_dl ul li:before{
	content: "● ";
	color: #3680b2;
}

/* cms editor */
.cmn_cms_editor {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.cmn_cms_editor > *:nth-child(1) {
    margin-top: 0;
}

.cmn_cms_editor h3,
.cmn_cms_editor h4,
.cmn_cms_editor h5,
.cmn_cms_editor h6 {
    display: block;
    padding: 0 0 .3em 0;
    border-color: #989898;
    line-height: 1.3;
    margin: .6em 0 .8em;
    letter-spacing: -0.0015625em;
}

.cmn_cms_editor h3 {
    font-size: 2.2rem;
    border-width: 0 0 1px 0;
    border-style: double;
}

.cmn_cms_editor h4 {
    font-size: 2.0rem;
    border-width: 0 0 1px 0;
    border-style: dashed;
}

.cmn_cms_editor h5 {
    font-size: 1.8rem;
    border-width: 0 0 1px 0;
    border-style: dotted;
}

.cmn_cms_editor h6 {
    font-size: 1.6rem;
    border-width: 0 0 1px 0;
    border-style: dotted;
}

.cmn_cms_editor p {
    padding: 8px 0 10px;
    margin: 0 0 8px 0;
    /*text-align: justify;
    text-justify: inter-ideograph;*/
}

.cmn_cms_editor img {
    display: inline-block;
    width: auto;
    height: auto;
    margin-right: 8px;
    margin-top: 8px;
    margin-bottom: 8px;
}

.cmn_cms_editor iframe[src*="youtube"] {
    /* display: inline-block;
    width: 100%;
    height: 56.25vw;
    max-height: 506px;
    margin-top: 8px;
    margin-bottom: 8px; */

    display: inline-block;
    max-width: 100%;
    margin-top: 8px;
    margin-bottom: 8px;
}

.cmn_cms_editor iframe[src*="google"][src*="map"] {
    display: inline-block;
    max-width: 100%;
    max-height: 600px;
    margin-top: 8px;
    margin-bottom: 8px;
}

.cmn_cms_editor strong {
    font-weight: 900;
}

.cmn_cms_editor em {
    font-style: italic;
}

.cmn_cms_editor a {
    display: inline-block;
    margin-top: 2px;
    margin-bottom: 2px;
    color: #3680b2;
    text-decoration: underline;
    word-break: break-all;
}

.cmn_cms_editor a:hover {
    color: #3680b2;
}

.cmn_cms_editor table {
    margin: 0 0 8px 0;
    word-break: break-all;
}

.cmn_cms_editor th,
.cmn_cms_editor td {
    margin: 0 0 8px 0px;
    padding: 6px 10px;
    border: 1px solid #8F8F8F;
}

.cmn_cms_editor ul {
    margin: 0 0 8px 0;
}

.cmn_cms_editor ul li {
    list-style: disc;
    margin: 0 0 4px 20px;
}

.cmn_cms_editor ol {
    margin: 0 0 8px 0;
}

.cmn_cms_editor ol li {
    list-style: decimal;
    margin: 0 0 4px 20px;
}

.cmn_cms_editor blockquote {
    background-color: #F3F3F3;
    margin-inline-start:10px;
    margin-inline-end:10px;
    padding: 15px;
}

/* WPオリジナルクラス有効化 */
.cmn_cms_editor .aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.cmn_cms_editor .alignright {
    display: block;
    margin-left: auto;
}

.cmn_cms_editor .alignleft {
    display: block;
    margin-right: auto;
}

.cmn_cms_editor .wp-caption {
    border: 1px solid #dddddd;
    text-align: left;
    background-color: #f3f3f3;
    padding: 5px;
    border-radius: 3px;
}

.cmn_cms_editor .wp-caption img {
    padding: 0;
    border: 0;
    margin: 0;
}

.cmn_cms_editor .wp-caption p.wp-caption-text {
    font-size: 14px;
    line-height: 1.5;
    padding: 0;
    margin: 0;
}


/* home ///////////////////////////////////// */
/* header */
.home_body .header_infobar{
	background-color: transparent;
	position: absolute;
	top: 0;
	left: 0;
}
.home_body .header_nav ul li a{
	font-weight: bold;
	color: #ffffff;
}
.home_body #header_modalmenu_area{
	top: 60px;
	padding: 50px 0;
}

/* home_mainimg */
.home_mainimg{
	width: 100%;
	height: 100vh;
	background: linear-gradient(135deg, rgba(54,128,178,0.3) 0%, rgba(51,153,153,0.3) 100%), url(../img/home_mainimg.jpg);
	background-size: cover;
	background-position: center center;
	position: relative;
}

.top_concept{
	position: absolute;
	top: 50%;
	transform:translateY(-50%);
	color: #ffffff;
	width: 100%;
	padding: 0 3%;
}

.top_concept strong{
	display: block;
	text-align: center;
}

.top_concept figure{
	max-width: 600px;
	margin: 25px auto;
	animation: zoomIn 2s forwards;
	animation-delay: 0.5s;
	opacity: 0;
}

.top_concept p{
	text-align: center;
}

.top_news{
	position: absolute;
	bottom: 0;
	right: 0;
	width: 800px;
	background-color: #ffffff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 30px;
}

.top_news h2{
	width: 120px;
	font-weight: 800;
	color: #3680b2;
}

.top_news span{
	display: block;
	width: 100px;
}

.top_news a{
	display: block;
	width: 480px;
}

/* home_point */
.home_point > div {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.home_point:nth-of-type(2) > div {
	flex-direction: row-reverse;
}

.home_point > div > div {
	max-width: 400px;
	margin-left: 200px;
}

.home_point:nth-of-type(2) > div > div {
	margin-left: 0;
	margin-right: 200px;
}

.home_point > div > div > h2 {
	color: #3d9992;
	text-align: center;
	margin-bottom: 20px;
	font-weight: bold;
}

.home_point:nth-of-type(3) > div > div > h2 {
	margin-top: 0;
}

.home_point > div > div > p {
	margin-bottom: 30px;
}

.home_point > div > figure{
	max-width: 260px;
	height: 260px;
	text-align: right;
}

.home_point:nth-of-type(2) > div > figure{
	text-align: left;
}

.home_point:nth-of-type(3) > div > figure{
	height: auto
}

.home_point > div > figure > img{
	max-height: 100%;
}

/* home_about */
.home_about{
	padding-top: 100px;
}

.home_about h2{
	line-height: 1;
	font-weight: bold;
	text-align: center;
	margin-bottom: 65px;
}

.home_about h2 span:nth-of-type(1){
	color: #3680b2;
}

.home_about h2 span:nth-of-type(2){
	color: #3d9992;
}

.home_about_top{
	display: flex;
	justify-content: space-between;
}

.home_about_top > div {
	width: 47.5%;
	padding: 70px 50px;
	background-image: url(../img/home_company.jpg);
	background-size: cover;
	background-position: center center;
	position: relative;
	margin-bottom: 30px;
}

.home_about_top > div::before {
	content: " ";
	display: block;
	width: 100%;
	height: 100%;
	background-image: url(../img/cmn_bg_dot_4.svg);
	position: absolute;
	top: 0;
	left: 0;
}

.home_about_top > div:nth-of-type(2) {
	background-image: url(../img/home_business.jpg);
}

.home_about_top > div *{
	position: relative;
	z-index: 5;
}

.home_about_top > div > h3{
	font-weight: bold;
	margin-bottom: 45px;
	text-align: center;
	color: #ffffff;
}

.home_about_top > div > p{
	margin-bottom: 50px;
	color: #ffffff;
}

.home_about_top > div > .cmn_btn a{
	color: #3680b2;
	background-color: #ffffff;
}

.home_about_bottom{
	background-image: url(../img/cmn_bg_dot_3.svg);
	transform: translateY(20%);
}

.home_about_bottom h2{
	color: #ffffff;
	margin-bottom: 38px;
}

.home_about_bottom .cmn_btn{
	width: 400px;
}

.home_about_bottom .cmn_btn a{
	height: 80px;
	line-height: 80px;
	color: #3d9992;
	background-color: #ffffff;
	padding-right: 17px;
	background-image: url(../img/cmn_entry_ico.svg);
	background-repeat: no-repeat;
	background-position: right 34px center;
}

.home_about_bottom p{
	color: #ffffff;
	margin-top: 30px;
	margin-bottom: 20px;
	padding-left: 3%;
	padding-right: 3%;
}

.home_about_bottom figure{
	width: 100px;
	margin: 0 auto 0;
}

/* home_news */
.home_news{
	padding-top: 170px;
	padding-bottom: 70px;
}

.home_news h2{
	font-weight: bold;
	text-align: center;
	margin-bottom: 45px;
}

.home_news h2 span{
	color: #3680b2;
}

.home_news .cmn_maxbox_800{
	height: 300px;
	background-color: #ffffff;
	padding: 50px;
	overflow-y: scroll;
}

.home_news dl div{
	display: flex;
	margin-bottom: 25px;
}

.home_news dl div dt{
	font-weight: bold;
	margin-right: 35px;
	flex-shrink: 0;
}

.home_news dl div span{
	display: inline-block;
	color: #e31f1f;
	line-height: 22px;
	font-weight: bold;
}

/* news_single ///////////////////////////////////// */
.news_body .cmn_maintitle{
	background: linear-gradient(rgba(54, 128, 178, 0.5), rgba(54, 128, 178, 0.5)),url(../img/news_mainimg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.news_body .cmn_tit_1st_blue{
	letter-spacing: 0.05em;
}

.news_body .cmn_tit_1st_blue span{
	padding-left: 0.05em;
}

.news_body section > div > span{
	display: block;
	text-align: right;
	font-weight: bold;
	margin-bottom: 40px;
}

.news_body section .cmn_btn{
	margin-bottom: 170px;
}

/* point ///////////////////////////////////// */
.point_body .cmn_maintitle{
	background: linear-gradient(rgba(54, 128, 178, 0.5), rgba(54, 128, 178, 0.5)),url(../img/point_mainimg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}
.point_body section:nth-of-type(1) > div{
	margin-top: 150px;
}

.point_body section:last-of-type > div{
	margin-bottom: 150px;
}

.point_body section > div{
	background-image: url(../img/cmn_bg_dot_5.svg);
	display: flex;
	position: relative;
	margin-bottom: 130px;
}

.point_body section:nth-of-type(2) > div{
	background-image: url(../img/cmn_bg_dot_6.svg);
	flex-direction: row-reverse;
}

.point_body section > div::before{
	content: " ";
	display: block;
	width: 100%;
	height: 50px;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #fff;
}

.point_body section > div > div{
	width: 600px;
	position: relative;
	z-index: 5;
	flex-shrink: 0;
}

.point_body section > div > figure {
	max-width: 600px;
	z-index: 3;
	margin-left: -60px;
}

.point_body section:nth-of-type(2) > div > figure {
	margin-left: 0px;
	margin-right: -60px;
}

.point_body section strong{
	display: block;
	font-weight: bold;
	color: #959595;
	text-align: right;
	transform: translateY(-50%);
}

.point_body section:nth-of-type(2) strong{
	text-align-last: left;
}

.point_body section h2{
	line-height: 80px;
	background-color: #ffffff;
	font-weight: bold;
	text-align: center;
}

.point_body section:nth-of-type(3) h2{
	padding-right: 150px;
}

.point_body section h2 span{
	display: inline-block;
	line-height: 80px;
	vertical-align: middle;
	margin-right: 30px;
	color: #3680b2;
}

.point_body section:nth-of-type(2) h2 span{
	color: #3d9992;
}

.point_body section p{
	padding: 50px 150px;
}

/* company ///////////////////////////////////// */
.company_body .cmn_maintitle{
	background: linear-gradient(rgba(54, 128, 178, 0.5), rgba(54, 128, 178, 0.5)),url(../img/company_mainimg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.company_greeting strong{
	margin-top: 35px;
	display: block;
	text-align: right;

}

.company_philosophy > div > div {
	background-color: #ffffff;
	padding: 35px 0;
}

.company_philosophy > div > div > p > strong{
	display: block;
	margin-bottom: 30px;
}

.company_related figure{
	margin: 15px auto;
	text-align: center;
}

@media only screen and (min-width: 800px)  {
.company_related dl > div {
	align-items: baseline;
}

.company_related dt{
	width: 26%;
}

.company_related dd{
	width: 74%;
	padding-left: 40px;
}
}

.company_related .cmn_dl ul li:before{
	content: none;
}
.company_related .cmn_dl ul li{
	display: flex;
	margin-bottom: 0;
}
.company_related .cmn_dl ul li p:first-of-type{
	width: 100px;
	flex-shrink: 0;
}
.company_related .cmn_dl ul li p:nth-of-type(2){
	text-indent: -1em;
}
.company_related .cmn_dl ul li p:nth-of-type(2)::before{
	content: "：";
}

/* business ///////////////////////////////////// */
.business_body .cmn_maintitle{
	background: linear-gradient(rgba(54, 128, 178, 0.5), rgba(54, 128, 178, 0.5)),url(../img/business_mainimg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.business_content{
	margin: 150px auto;
}

.business_content > div{
	position: relative;
	height: 500px;
}

.business_content > div > strong{
	line-height: 1;
	font-weight: bold;
	color: #3680b2;
	position: absolute;
	z-index: 10;
}

.business_content:nth-of-type(1) > div > strong{
	top: 0;
	left: 10px;
}

.business_content:nth-of-type(2) > div > strong{
	color: #3d9992;
	bottom: 0;
	right: 10px;
}

.business_content:nth-of-type(3) > div > strong{
	bottom: 0;
	left: 10px;
}

.business_content > div > div > figure{
	max-width: 800px;
	position: absolute;
	top: -50px;
	right: -50px;
}

.business_content > div > div > figure::before{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(51,128,178,.2);
	position: absolute;
	top: 0;
	left: 0;

}

.business_content:nth-of-type(2) > div > div > figure{
	top: 50px;
	left: -50px;
}

.business_content:nth-of-type(3) > div > div > figure{
	top: 50px;
	right: -50px;
}

.business_content > div > div > div{
	max-width: 500px;
	background-color: #ffffff;
	padding: 50px;
	position: absolute;
}

.business_content:nth-of-type(1) > div > div > div{
	bottom: 0;
	left: 10%;
}

.business_content:nth-of-type(2) > div > div > div{
	top: 0;
	right: 10%;
}

.business_content:nth-of-type(3) > div > div > div{
	top: 0;
	left: 10%;
}

.business_content > div > div > div > h2{
	margin-bottom: 30px;
}

.business_info_update {
	margin: 0 0 2%;
	text-align: right;
}

@media only screen and (min-width: 800px)  {
	.business_info dt{
		width: 21%;
	}

	.business_info dd{
		width: 79%;
	}
	}
/* contaqct ///////////////////////////////////// */
.contact_body .cmn_maintitle{
	background: linear-gradient(rgba(54, 128, 178, 0.5), rgba(54, 128, 178, 0.5)),url(../img/contact_mainimg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.contact_info > div > div{
	padding: 50px 0;
}

.contact_info > div > div > p{
	letter-spacing: 0.1em;
	line-height: 1.4;
}

.contact_info > div > div > p:nth-of-type(1){
	margin-bottom: 5px;
	font-weight: bold;
}

.contact_info > div > div > p:nth-of-type(2){
	font-weight: 900;
	letter-spacing: 0.05em;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact_info > div > div > p:nth-of-type(2) span{
	font-weight: bold;
	display: inline-block;
	padding-right: 10px;
	padding-top: 3px;
}

.contact_info > div > div > p:nth-of-type(5){
	margin-top: 25px;
	margin-bottom: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact_info > div > div > p:nth-of-type(5) span{
	display: inline-block;
	padding-right: 10px;
}

.contact_form p{
	margin-bottom: 50px;
}

.contact_form .attention{
	color: #e41f1f;
}

@media only screen and (min-width: 800px)  {
	.contact_form dt{
		width: 250px;
	}

	.contact_form dd{
		width: 80%;
		padding: 20px 50px 20px 0;
	}
}

.contact_body .cmn_dl dt{
	position: relative;
}

.contact_form select {
	box-sizing: border-box;
	width: 300px;
	padding: 8px 0 7px 20px;
	border-radius: 0;
	background-color: #f4f5f6;
	color: #808080;
	border: none;
    appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	line-height: 25px;
}
.contact_select dd{
	position: relative;
}
.contact_select dd::after {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12.1px 7px 0 7px;
    border-color: #808080 transparent transparent transparent;
    content: "";
    position: absolute;
    left: 275px;
    top: 35px;
    z-index: 10;
    pointer-events: none;
}
.contact_form input {
	box-sizing: border-box;
	width: 300px;
	line-height: 40px;
	padding: 0 20px;
	border-radius: 0;
	background-color: #f4f5f6;
	border: none;
	width: 100%;
}
.contact_form .input01 {
	margin-bottom: 10px;
}
.contact_form .input02 {
	max-width: 580px;
	margin-right: 10px;
}
.contact_form .input03 {
	max-width: 200px;
	margin-left: 10px;
}
.contact_form textarea {
	box-sizing: border-box;
	width: 100% !important;
	height: 210px !important;
	padding: 10px 20px;
	border-radius: 0;
	background-color: #f4f5f6;
	border: none;
}
.contact_btn_area{
	text-align: center;
	margin-bottom: 0;
}
.contact_form button{
	width: 200px;
	line-height: 60px;
	color: #ffffff;
	font-weight: bold;
	border-radius: 0;
	border: none;
	padding: 0;
}
.contact_form button:nth-of-type(1){
	background-color: #808080;
	margin-right: 100px;
}
.contact_form button:nth-of-type(2){
	background-color: #e41f1f;
}






