@charset "utf-8";
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/

dd {
    display: block;
    margin-inline-start: 0;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
}

body {
	line-height:1;
    margin: 0;
    padding: 0;
}

html { line-height: 0;}

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

nav ul {
	list-style:none;
}

blockquote, q {
	quotes:none;
}

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

a,
a:visited{
	margin:0;
	padding:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
    text-decoration: none;
    color: #000;
}

a:hover,
a:active {
    color: #000;
}

a:hover {
	opacity: 1.0;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}


del {
	text-decoration: line-through;
}

abbr[title], dfn[title] {
	border-bottom:1px dotted;
	cursor:help;
}

table {
	border-collapse:collapse;
	border-spacing:0;
}

input, select {
	vertical-align:middle;
}

li,ul {
	list-style: none;
}


/*****************

clearfix

*****************/
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.clearfix {
	min-height: 1%;
}

/* Hides from IE-mac */
* html .clearfix {
	height: 1%;
}
.clearfix {
	display: block;
}
/* End hide from IE-mac */



/***********  COMMON settng ***********/
html {font-size: 15px;}
body {
    font-family: 'DM Sans', 'Sawarabi Gothic', '游ゴシック体', 'YuGothic', 'Yu Gothic medium', 'Hiragino Sans', 'Meiryo', sans-serif;
	font-size: 15px;
    line-height: 1.8;
	text-align: left;
    background: #E8F7FA;
    -webkit-text-size-adjust: 100%;
	color: #000; 
	line-break: strict;
	font-feature-settings: 'palt';
	letter-spacing: 0.08em;
}

.pc_disp {display: block;}
.sp_disp {display: none;}
.pc_img {display: inline-block;}
.sp_img {display: none;}


.left { float: left;}
.right { float: right;}

img {
	width: 100%;
	height:auto;
	line-height: 0;
	vertical-align: middle;
}
main {
	margin: 0;
}

section {
	margin: auto;
	padding: 150px 0;
}
.inner_box-L {
	width: 100%;
	margin: auto;
}
.inner_box-M {
	max-width: 1100px;
	width: 85%;
	margin: auto;
}
.inner_box-S {
	max-width: 1000px;
	width: 85%;
	margin: auto;
}



/*********** ANNIMATION settng ***********/

/* 上下フェードイン設定 */

.fadein {
    opacity : 0;
    transform : translate(0, 20px);
    transition : all 1200ms;
    }
 
.fadein.scrollin {
    opacity : 1;
    transform : translate(0, 0);
    }


/*********** TEXT SETTING ***********/

.txt-XL {font-size: 2.6rem; line-height: 1.3;}
.txt-L {font-size: 2.0rem; line-height: 1.5;}
.txt-M {font-size: 1.3rem; line-height: 1.5;}
.txt-S {font-size: 0.85rem;}
.txt-cnt { text-align: center; }
.txt-right { text-align: right; display: block;}

.white { color:#fff; }
.green { color:#004d0c; }
.brown { color:#d6a56a; }

.mincho { font-family: "Shippori Mincho", serif; }

strong { font-weight:700; }


/*********** TITLE SETTING ***********/

.ttl_box-white {
	color: #fff;
	padding-bottom: 1.5em;
}
.ttl_box-bk {
	padding-bottom: 1.5em;
}
.ttl_box-white p,
.ttl_box-bk p {
	position: relative;
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1.4;
	padding-left: 1.2em;
}
.ttl_box-white p::before,
.ttl_box-bk p::before {
	position: absolute;
	content: "";
	width: 0.7em;
	height: 0.7em;
	background: #fff;
	border-radius: 100%;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.ttl_box-bk p::before {
	background: #000;
}
.ttl_box-white h2,
.ttl_box-bk h2 {
	font-size: 5.3rem;
	font-weight: 400;
	line-height: 1.4;
}

h3 {
	font-size: 1.3rem;
	font-weight: 400;
}

/*********** BTN SETTING ***********/

.btn-bk {
	width: 220px;
	text-align: center;
	background: #000;
	border-radius: 100px;
	margin: 3.0em 0 0 0;
	-webkit-transition: 0.1s ease-in-out;
	-moz-transition: 0.1s ease-in-out;
	-o-transition: 0.1s ease-in-out;
	transition: 0.1s ease-in-out;
}
.btn-bk:hover {
	background: #6CB1F7;
	-webkit-transition: 0.1s ease-in-out;
	-moz-transition: 0.1s ease-in-out;
	-o-transition: 0.1s ease-in-out;
	transition: 0.1s ease-in-out;
}
.btn-bk a {
	width: 100%;
	padding: 0.4em;
	color: #fff;
	display: block;
}


/*********** OBJECT SETTING ***********/

.col2_box,.col3_box,.col4_box {
	display:flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.col3_box {
	justify-content:flex-start;
}
.col2_box li {
	width: 45%;
	margin: 10px 0 40px 0;
}
.col3_box li {
	width:calc(100% / 3);
}
.col4_box li {
	width: 23%;
	margin: 0 0 25px 0;
}

.img_box {
	width: 100%;
	margin-top: 2.0em;
	overflow: hidden;
}
.txt_box p {
	margin-top:2.0em;
}

.table_box {
	border-bottom:1px solid #767676;
	margin: 2.0em auto;
}
.table_box,
.table_box dt,
.table_box dd {
    box-sizing: border-box;
}

.table_box dt,
.table_box dd {
    padding: 2.0em 0;
    margin: 0px;
	border-top:1px solid #767676;
}
.table_box {
	display: flex;
    flex-wrap: wrap;
}
.table_box > dt,
.table_box > dd {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.table_box > dt {
	width: 175px;
}
.table_box > dd {
	width: calc(100% - 175px);
}
.table_box .blue_frame {
	width: 100%;
	background: #D8F4FA;
	border-radius: 20px;
	margin-top: 0.7em;
	padding: 1.2em 1.7em;
	box-sizing: border-box;
}
.table_box .blue_frame span {
	font-size: 0.85em;
}
.table_box a {
	display: contents;
}

/*********** HEADER ***********/

.h-logo {
	position: fixed;
	width: 105px;
	top: 25px;
	left: 25px;
	z-index: 9999;
}
.h_btn-doc, .h_btn-recruit {
	position: fixed;
	background: #8A2827;
	width: 120px;
	top: 25px;
	right: 20px;
	border-radius: 200px;
	font-size: 13px;
	font-weight: 600;
	text-align: center;
	line-height: 1.4;
	z-index: 9999;
}
.h_btn-recruit a {
	width: 100%;
	padding: 0.8em 0;
	display: block;
}
.h_btn-recruit:hover {
	opacity: 0.7;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

navi.global-nav {
	position: fixed;
	top: 32px;
	right: 160px;
	font-size: 13px;
	font-weight: 600;
	z-index: 9999;
}
navi.global-nav ul {
	display: flex;
}
navi.global-nav ul li a {
	margin: 0 1.0em;
	color: #fff;
	transition: 0.3s;
}
navi.global-nav.scrolled ul li a {
	margin: 0 1.0em;
	color: #000;
	transition: 0.3s;
}

.h-policy navi.global-nav ul li a {
	margin: 0 1.0em;
	color: #000;
	transition: 0.3s;
}



/*********** FOOTER SETTING ***********/

footer .ft_bnr {
	display: flex;
	align-items: center;
}
footer .ft_bnr div {
	position: relative;
	width: 50%;
}
footer .ft_bnr div::before {
	position: absolute;
	content: "";
	width: 1.4rem;
	height: 0.7rem;
	background: url("../images/common/icon_arrow_wh.png") center / cover;
	top: 50%;
	right: 3.0em;
	transform: translateY(-50%);
}
footer .ft_bnr div a {
	padding: 2.5em 3.0em;
	font-size: 1.66rem;
	color: #fff;
	display: block;
}
footer .ft_bnr .bnr-job {
	background: #63A2DD;
	-webkit-transition: 0.1s ease-in-out;
	-moz-transition: 0.1s ease-in-out;
	-o-transition: 0.1s ease-in-out;
	transition: 0.1s ease-in-out;
}
footer .ft_bnr .bnr-entry {
	background: #5BC3C7;
	-webkit-transition: 0.1s ease-in-out;
	-moz-transition: 0.1s ease-in-out;
	-o-transition: 0.1s ease-in-out;
	transition: 0.1s ease-in-out;
}
footer .ft_bnr .bnr-job:hover {
	background: #468BCB;
	-webkit-transition: 0.1s ease-in-out;
	-moz-transition: 0.1s ease-in-out;
	-o-transition: 0.1s ease-in-out;
	transition: 0.1s ease-in-out;
}
footer .ft_bnr .bnr-entry:hover {
	background: #1FB3B9;
	-webkit-transition: 0.1s ease-in-out;
	-moz-transition: 0.1s ease-in-out;
	-o-transition: 0.1s ease-in-out;
	transition: 0.1s ease-in-out;
}
footer .ft_cont {
	background: #fff;
	text-align: center;
	padding: 50px 0;
}
footer .ft_cont  .f-logo {
	width: 120px;
	margin: auto;
}
footer .f-copy {
	font-size: 11px;
	margin: 1.0rem auto;
	line-height: 2.5;
}
footer .f-copy a {
	text-decoration: underline;
}


@media screen and (max-width: 999px) {
	
/*********** HEADER ***********/	

navi.global-nav {
	position: fixed;
	top: 32px;
	right: 160px;
	font-size: 13px;
	font-weight: 600;
	z-index: 9999;
}
	
/*********** FOOTER SETTING ***********/

footer .ft_bnr {
	display: block;
}
footer .ft_bnr div {
	position: relative;
	width: 100%;
}
footer .ft_bnr div::before {
	position: absolute;
	content: "";
	width: 1.4rem;
	height: 0.7rem;
	background: url("../images/common/icon_arrow_wh.png") center / cover;
	top: 50%;
	right: 3.0em;
	transform: translateY(-50%);
}
footer .ft_bnr div a {
	padding: 2.0em 3.0em;
	font-size: 1.66rem;
	color: #fff;
	display: block;
}
footer .ft_bnr .bnr-job {
	background: #63A2DD;
	-webkit-transition: 0.1s ease-in-out;
	-moz-transition: 0.1s ease-in-out;
	-o-transition: 0.1s ease-in-out;
	transition: 0.1s ease-in-out;
}
footer .ft_bnr .bnr-entry {
	background: #5BC3C7;
	-webkit-transition: 0.1s ease-in-out;
	-moz-transition: 0.1s ease-in-out;
	-o-transition: 0.1s ease-in-out;
	transition: 0.1s ease-in-out;
}
footer .ft_bnr .bnr-job:hover {
	background: #468BCB;
	-webkit-transition: 0.1s ease-in-out;
	-moz-transition: 0.1s ease-in-out;
	-o-transition: 0.1s ease-in-out;
	transition: 0.1s ease-in-out;
}
footer .ft_bnr .bnr-entry:hover {
	background: #1FB3B9;
	-webkit-transition: 0.1s ease-in-out;
	-moz-transition: 0.1s ease-in-out;
	-o-transition: 0.1s ease-in-out;
	transition: 0.1s ease-in-out;
}
footer .ft_cont {
	background: #fff;
	text-align: center;
	padding: 50px 0;
}
footer .ft_cont  .f-logo {
	width: 120px;
	margin: auto;
}
footer .f-copy {
	font-size: 11px;
	margin: 1.0rem auto;
	line-height: 2.5;
}
footer .f-copy a {
	text-decoration: underline;
}

	
}


@media screen and (max-width: 767px) {
    
.pc_disp {display: none;}
.sp_disp {display: block;}
.pc_img {display: none;}
.sp_img {display: inline-block;}
	
	
/*********** COMMON settng ***********/
html {font-size: 13px;}
body {
	font-size: 13px;
	line-height: 1.8;
}
	
section {
	margin: auto;
	padding: 20% 0;
}
	
/*********** OBJECT SETTING ***********/

.col2_box {
	display:block;
}
.col2_box li {
	width: 100%;
	margin: 0 0 20px 0;
}
	
.table_box {
	border-bottom:1px solid #767676;
	margin: 2.0em auto;
}
.table_box,
.table_box dt,
.table_box dd {
    box-sizing: border-box;
}

.table_box dt,
.table_box dd {
    padding: 2.0em 0;
    margin: 0px;
	border-top: none;
}
.table_box {
	display: flex;
    flex-wrap: wrap;
}
.table_box > dt,
.table_box > dd {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.table_box > dt {
	width: 100%;
	border-top:1px solid #767676;
	padding: 1.5em 0 0.5em;
	font-weight: 700;
	
}
.table_box > dd {
	width: 100%;
	padding: 0 0 1.5em;
}

	
/*********** TITLE SETTING ***********/

.ttl_box-white h2,
.ttl_box-bk h2 {
	font-size: 3.2rem;
	font-weight: 400;
	line-height: 1.4;
}

h3 {
	font-size: 1.2rem;
	font-weight: 400;
}
	
/*********** BTN SETTING ***********/

.btn-bk {
	width: 220px;
	text-align: center;
	background: #000;
	border-radius: 100px;
	margin: 3.0em auto 0;
	-webkit-transition: 0.1s ease-in-out;
	-moz-transition: 0.1s ease-in-out;
	-o-transition: 0.1s ease-in-out;
	transition: 0.1s ease-in-out;
}
.btn-bk:hover {
	background: #6CB1F7;
	-webkit-transition: 0.1s ease-in-out;
	-moz-transition: 0.1s ease-in-out;
	-o-transition: 0.1s ease-in-out;
	transition: 0.1s ease-in-out;
}
.btn-bk a {
	width: 100%;
	padding: 0.4em;
	color: #fff;
	display: block;
}
	

/*********** OBJECT SETTING ***********/

.txt_box p {
	margin-top:2.0em;
}
	

/*********** FOOTER SETTING ***********/

footer .ft_bnr div a {
	padding: 1.8em 1.0em;
	font-size: 1.3rem;
	color: #fff;
	display: block;
}
footer .ft_bnr div::before {
	position: absolute;
	content: "";
	width: 1.2rem;
	height: 0.6rem;
	background: url("../images/common/icon_arrow_wh.png") center / cover;
	top: 50%;
	right: 1.5em;
	transform: translateY(-50%);
}
footer .ft_cont {
	background: #fff;
	text-align: center;
	padding: 50px 0;
}
footer .ft_cont  .f-logo {
	width: 100px;
	margin: auto;
}
	
}



