html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body {
    overflow-x: hidden;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Kosugi Maru', sans-serif;
	color: #191919;
	font-size: 0.95rem;
	line-height: 1.85;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%; 
	word-wrap: break-word;
    letter-spacing: 0.05em;
    background-color: #ebeff2;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a {
    color: black;
    text-decoration: none;
}
a:hover,
img a:hover {
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
}
img {
    width: 100%;
}
*,
*::before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}
.br-pc {
    display: block;
}
.br-sp {
    display: none;
}

/*========= ハンバーガーボタン ==========*/
.btn {
	position: fixed;
	top: 14px;
	right: 16px;
	z-index: 10;
	width: 50px;
	height: 50px;
    padding: 10px;
    background-color: #001756;
    border: none;
}
.btn-line {
	display: block;
	position: relative;
	width: 100%;
	height: 2px;
	background-color: #FFF;
	transition: .5s;
}
.btn-line::before,
.btn-line::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
    margin-left: -15px;
	background-color: #FFF;
	transition: .5s;
}
.btn-line::before {
	transform: translateY(-12px);
}
.btn-line::after {
	transform: translateY(12px);
}

.btn-line.open {
	background-color: transparent;
	transition: .5s;
}
.btn-line.open::before,
.btn-line.open::after {
	content: "";
	transition: .5s;
}
.btn-line.open::before {
	transform: rotate(45deg);
}
.btn-line.open::after {
	transform: rotate(-45deg);
}


/*========= SPメニュー ==========*/
.bg {
	position: fixed;
	z-index: 10;
	width: 100%;
    margin: 0;
    padding: 3px 0 0;
    pointer-events: none;
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6),rgba(255, 255, 255, 0));
}
.k_logo,
.btn,
.hum_menu li a {
    pointer-events: auto;
}

nav li.has-child {
    position: relative;
}
.touch-btn::before {
	content:'';
	position: absolute;
	right: 50%;
	top: 30px;
	width: 10px;
	height: 10px;
	border-top: 2px solid #999;
    border-right:2px solid #999;
    transform: translateX(50%) rotate(135deg);
}
nav li.has-child ul {
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    top: 50px;
    width: 180px;
    height: auto;
    padding: 10px 20px;
    z-index: 4;
    visibility: hidden;
    opacity: 0;
    transition: all .3s;
    line-height: 1.3em;
    margin: 0;
    background: #FFF;
}
nav li.has-child ul li {
    margin: 0 auto 3px;
    padding: 0;
    width: 130px;
    height: 30px;
    font-size: 0.8rem;
    text-align: center;
}
nav li.has-child ul li a {
    position: relative;
    margin-right: 2px;
    padding: 0;
    color: #0c397a;
}
nav li.has-child ul li a::before {
    content: none;
}
nav li.has-child:hover > ul,
nav li.has-child ul li:hover > ul,
nav li.has-child:active > ul,
nav li.has-child ul li:active > ul{
    visibility: visible;
    opacity: 1;
}
nav li .sub-menu {
	display: block;
    height: auto;
}
nav li .sub-menu li a {
    position: relative;
  }
nav li a:hover,
nav li .sub-menu li.current a,
nav li .sub-menu li a:hover {
    color:#a3a3a3;
}
nav li .sub-menu li a::after,
.page_contents p a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0%;
    width: 100%;
    height: 1.5px;
    background: #FFF;
    transition: all .3s;
    transform: scale(0, 1);
    transform-origin: center top;
}
nav li .sub-menu li.current a::after,
nav li .sub-menu li a:hover::after,
.page_contents p a:hover::after {
    transform: scale(1, 1);
}
.page_contents p a {
    font-weight: bold;
    opacity: 1;
    transition: all .3s;
}
.page_contents p a:hover {
    opacity: 0.5;
}

/*-----　SPメニューの中身 ------*/
.hum_menu {
    display:flex;
    flex-flow: column;
    align-items: center;
    justify-content:space-around;
	/* メニューの位置マイナス指定で画面外に */
    top: 0;
    padding: 20vh 0;
	width: 100%;
	height: 100vh;
    margin-left: auto;
    font-family: "Shuei NijimiMin L";
    font-size: 1.0rem;
    font-weight: 500;
	color: #FFF;
	transition: 0.3s;
    opacity: 0;
	z-index: 9;
    background: rgba(5, 22, 38, 0.9);
}
.hum_menu li {
    display:flex;
    flex-flow: column;
    align-items: center;
	width: 100%;
}
.hum_menu a {
    color: #FFF;
}
.hum_menu a:hover {
    transition : all 0.5s ease 0s;
}
.hum_menu li:hover {
	color: rgba(252, 207, 0, 1.0);
	cursor: pointer;
}
.hum_menu li ul li:hover::before {
	content: none;
}
/***** メニューオープン時位置0にして画面内に *****/
.hum_menu.open {
	position: absolute;
	right: 0;
    opacity: 1;
}



/*========= PCメニュー ==========*/
@media screen and (min-width: 980px) {
    .bg {
        height: 110px;
        background-color: #FFF;
        pointer-events: auto;
    }
	.btn {
		display: none;
    }
	.hum_menu {
		display: flex;
		flex-direction: row;
		position: fixed;
        right: 20px;
        width: 890px;
		height: 80px;
        margin: 0 0 0 300px;
        padding: 0;
        opacity: 1;
        background: none;
	}
    .hum_menu li {
        height: 20px;
        width: 80px;
        margin-top: 0;
        margin-right: 0;
        padding-right: 0;
        font-size: 1.0rem;
    }
    .hum_menu li:nth-child(5) {
        width: 250px;
        margin-right: 30px;
    }
    .hum_menu li:last-child {
        position: relative;
    }
    .hum_menu li#border_l::before {
        position: absolute;
        content: "";
        top: -10px;
        left: -40px;
        width: 1px;
        height: 50px;
        background-color: #191919;
    }

    .hum_menu a {
        color: #191919;
        font-weight: bold;
    }
    #header{
        position: fixed;
        width: 100%;
        height: 70px;
        z-index: 99;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #fff;
    }

    /*　上に上がる動き　*/
    #header.UpMove{
        animation: headerUpAnime 0.5s forwards;
    }

    @keyframes headerUpAnime{
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-140px);
    }
    }

    /*　下に下がる動き　*/
    #header.DownMove{
        animation: headerDownAnime 0.5s forwards;
    }
    @keyframes headerDownAnime{
    from {
        opacity: 0;
        transform: translateY(-140px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
    }
}
@media screen and (min-width: 980px) and (max-width: 1200px) {

	.hum_menu {
        width: calc(100% - 250px);
        margin: 0;
	}

}

/*========= SP サブメニュー ==========*/
 @media screen and (max-width: 979px) {

    .hum_menu li.has-child ul,
    .hum_menu li.has-child ul ul{
        position: relative;
        width: 280px;
        top: 10px;
        z-index: 4;
        visibility: visible;
        opacity: 1;
        display: none;
        margin: 0;
        padding: 0;
        transition: none;
        background: transparent;
    }
    .hum_menu li.has-child ul {
        width: auto;
        margin: 0;
    }
    .hum_menu li.has-child ul li a {
        margin: 0;
    }
    .hum_menu li.has-child:hover > ul,
    .hum_menu li.has-child ul li:hover > ul,
    .hum_menu li.has-child:active > ul,
    .hum_menu li.has-child ul li:active > ul{
        visibility: visible;
        opacity: 1;
    }
    .hum_menu li.has-child ul li {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        display: inline-block;
        width: 100%;
        padding: 0;
        margin: 0;
        text-align: center;
        line-height: 1.6em;
        text-shadow: none;
    }
    
    .hum_menu li:hover::before {
        content: none;
    }
    nav li.has-child:hover > ul,
    nav li.has-child ul li:hover > ul,
    nav li.has-child:active > ul,
    nav li.has-child ul li:active > ul{
        visibility:hidden;
    }
    .hum_menu li.has-child {
        position: relative;
    }
    
    ul.hum_menu:not(.open) {
        display: none;
    }
    .touch-btn::before {
        content:'';
        position: absolute;
        right: calc( 50% - 60px );
        top: 7px;
        width: 10px;
        height: 10px;
        border-top: 2px solid #999;
        border-right: 2px solid #999;
        transform: rotate(135deg);
    }
    .touch-btn.active::before{
        transform: rotate(-45deg);
    }
    nav li.has-child ul li a {
        margin-right: 0;
        color: #CCC;
    }
 }


.min {
    font-family: 游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN","Hiragino Mincho Pro",HGS明朝E,メイリオ,Meiryo,serif;
    font-weight: 600;    
}
h2 {
    color: #0c397a;
    font-size: 2.0rem;
    font-weight: 600;
    line-height: 1.5em;
    margin-bottom: 10px;
}
h3 {
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.5em;
    color: #0c397a;
    margin-bottom: 20px;
}
h4 {
    width: 90%;
    margin: 0 340px 20px 0;
    color: #0c397a;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.5em;
}
h5 {
    color: #0c397a;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1.5em;
    margin: 0 0 20px;
}
h6 {
    color: #0c397a;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.5em;
}

#main-area {
    padding-top: 50px;
}

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

.container {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
.top_logo {
        position: fixed;
        top: 0px;
        left: 20px;
    width: 140px;
    height: 140px;
    margin: 0 0 0 30px;
}
#page_brand h6,
#page_recruit h6,
#page_contact h6 {
    margin: 0 340px 0 100px;
}



/*--------- TOP : slider + search --------*/
section#top {
    background-color: #FFF;
    margin-bottom: 0;
}
.swiper {
  margin-bottom: -80px;
}
.search {
    width: 80vw;
    margin: 0 auto;
    padding: 0 0 150px;
}

/*--------- TOP : top_brand --------*/
section#top_brand {
    background-color: #ebeff2;
}
#top_brand h6 {
    margin: 0 10% 80px 450px;
    padding-top: 100px;
}
#top_brand ul {
    width: 100vw;
}

#top_brand ul li {
    width: 100%;
    margin: 0 auto 40px;
    padding: 0 10vw;
}
#top_brand ul li img {
    border-radius: 40px;
    box-shadow: 0 10px 25px 0 rgba(0,0,0, 0.5);
}


/*========= in-page ==========*/
section {
    position: relative;
    margin-bottom: 60px;
}
.top_tit,
.page_tit {
    position: absolute;
    width: 250px;
    height: 250px;
    top: -100px;
    display: block;
}
.top_tit {
    left: 70px;
}
.page_tit {
    right: 70px;
}
#top_brand .top_tit,
#page_brand .page_tit {
    content: url('../images/title/brand_tit.svg');
}
#page_company .page_tit {
    content: url('../images/title/company_tit.svg');
}
#page_news .page_tit {
    content: url('../images/title/news_tit.svg');
}
#page_event .page_tit {
    content: url('../images/title/event_tit.svg');
}
#page_recruit .page_tit {
    content: url('../images/title/recruit_tit.svg');
}
#page_contact .page_tit {
    content: url('../images/title/contact_tit.svg');
}


.box_m,
.box_l,
.box_r {
    padding: 10px 30px 50px;
    background-color:#FFF;
    width: 90%;
}
.box_m {
    padding: 100px 30px 50px;
    margin: 200px auto 0;
}
.box_l {
    left: 0;
    width: 95%;
    border-radius: 0 50px 50px 0;
}
.box_r {
    right: 0;
    width: 95%;
    border-radius: 50px 0 0 50px;
}

.section-title {
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #0c397a;
    font-size: 1.9rem;
    font-weight: 600;
    line-height: 0.9em;
}
.section-title span {
    font-family: "Noto Sans", sans-serif;
    position: relative;
    color: #898989;
    font-size: 0.8rem;
    line-height: 0.01em;
    margin-left: 5px;
}

.sec_r {
    display: flex;
    justify-content: right;
}
dl {
    display: flex;
    width: 90%;
    margin: 70px auto 50px;
}
dl#order {
    display: block;
}
dt {
    width: 25%;
    margin-top: 10px;
}
#sus dt {
    width: 400px;
    margin-top: 10px;
}
dt img {
    width: 320px;
    margin-top: 30px;
}
dt p {
    font-size: 0.8rem;
    letter-spacing: 0.03em;
}
dd {
    display: flex;
    flex-flow: column;
    flex-wrap: wrap;
    width: 75%;
    line-height: 1.5em;
}
#sus dd {
    width: calc(100% - 400px);
}
#cred dl {
    margin-bottom: 0;
}
#cred dt {
    width: 20%;
}
#cred dd {
    width: 80%;
}
dd h6 {
    margin: 0 0 20px;
}
dd p {
    width: 98%;
    margin-bottom: 40px;
}
dd img {
    width: 100%;
    height: auto;
}
dd ul {
    display: flex;
}
dd ul li {
    padding-right: 20px;
}
dd ul li:nth-child(even) {
    margin-top: 50px;
}
#business dd ul li {
    width: 50%;
}
#mission dd ul li {
    width: 40%;
}
.busi_desc {
    padding: 20px 0;
    font-size: 1.2rem;
}
.pict_m {
    width: 90%;
}


table {
    width: 90%;
    margin: 0;
}
.tbl-r02 th,
.tbl-r02 td {
    border-top: solid 1px #ccc;
    border-bottom: solid 1px #ccc;
    padding: 20px;
}
.tbl-r02 th {
    width: 30%;
    font-weight: bold;
    text-align: left;
}
.tbl-r02 td {
    width: 70%;
}

#order {
    display: flex;
    flex-flow: column;
}
#order h2 {
    margin-top: 30px;
}

/*========= ページトップ ==========*/
#page-top {
	position: absolute;
	display: flex;
	justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    bottom: 380px;
    right: 20px;
    padding-top: 15px;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size: 2.6rem;
    background-color: #001756;
}
#page-top a {
    color: #FFF;
	transition:all 0.3s;
}
#page-top a:hover {
    opacity: 0.5;
}



/*========= FOOTER ==========*/

footer {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 50px 0 0;
    padding: 30px 0 0;
    color: #FFF;
    background-color: #001756;
}
footer::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 50px;
    top: 0;
    background-color: #ebeff2;
    border-radius: 0 0 50px 50px;
}
#f_menu {
    position: absolute;
    display: flex;
    justify-content: space-between;
    top: 70px;
    right: 0;
    width: 850px;
    margin: 0;
    padding: 0;
    opacity: 1;
    background: none;
}
#f_menu .menu {
    height: 20px;
    width: calc(20% - 10px);
    margin-right: 10px;
    font-size: 1.0rem;
}
#f_menu .menu a {
    color: #FFF;
    font-weight: bold;
}

#f_menu .sub-menu {
    display: flex;
    flex-flow: column;
    width: 150px;
    height: auto;
    margin: 10px 0 0 10px;
}
#f_menu .sub-menu li::before {
    content: "-";
    margin-right: 5px;
}
#f_menu .sub-menu li,
#f_menu .sub-menu li a {
    width: 100%;
    height: 30px;
    padding-bottom: 3px;
    font-size: 0.8rem;
    font-weight: nomal;
    text-align: left;
    opacity: 0.5;
}
#f_menu .sub-menu li a:hover {
    opacity: 1;
}

.company-info {
    position: absolute;
    bottom: 30px;
    left: 20px;
    margin: 0;
}
.company-info dt {
    margin: 0 10px 0 0;
    width: 150px;
}
.company-info dt img {
    width: 100%;
    margin-top: 0;
}
.company-info dd {
    font-size: 0.7rem;
    font-weight: bold;
    line-height: 1.5em;
}

small {
    position: absolute;
    display: flex;
    justify-content: center;
    width: 100%;
    bottom: 10px;
    margin: o auto;
    font-size: 0.6rem;
}
small ul {
    display: flex;
    padding-top: 10px;
    width: 95%;
    font-weight: bold;
    border-top: 1px solid #FFF;
}
small ul li {
    margin-right: 30px;
}
small ul li a {
    color: #FFF;
}

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

/*========= ページトップ ==========*/
    #page-top {
        width: 40px;
        height: 40px;
        bottom: 580px;
        padding-top: 13px;
	    font-size: 2.3rem;
    }
    footer {
        display: flex;
        flex-flow: column;
        top: 50px;
        height: 600px;
        margin: 0;
    }

    footer::before {
        height: 30px;
        border-radius: 0 0 30px 30px;
    }
    #f_menu {
        flex-direction: column;
        flex-wrap: wrap;
        width: 70%;
        height: 270px;
        top: 40px;
        right: 20px;
    }

    #f_menu .menu {
        width: 50%;
        height: auto;
        margin-right: 0;
        margin-bottom: 30px;
        padding: 0;
        font-size: 1.0rem;
        text-align: right;
    }
    #f_menu .has-child {
        height: 100px;
        margin-bottom: 10px;
        padding-bottom: 0;
    }
    #f_menu .sub-menu {
        width: 100%;
        height: 20px;
        margin: 5px 0 0 0;
    }
    #f_menu .sub-menu li {
        height: 20px;
        line-height: 0.8em;
        text-align: right;
        margin-bottom: 10px;
    }

    .company-info {
        left: 10px;
        width: 100%;
        height: auto;
        pointer-events: auto;
    }

    .footer-logo img {
        width: 35%;
        max-width: 200px;
    }
    .company-info dd {
        margin: 5px 0 0;
    }
 }

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

    footer {
        height: 550px;
    }
    #f_menu {
        width: 100%;
    }
}


/*========= グリッド ===============*/
.fill > ul {
    width: 100%;
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 20px;
}
.fill > ul > li {
    width: 100%;
    margin: 0 20px 20px 0;
    padding: 30px 30px 30px 40px;
    border-radius: 30px;
}
.fill > ul > li > ul {
	list-style-type: disc;
}
#circle {
    grid-column: 1;
    grid-row: 1 / 3;
}
#action {
    grid-column: 2;
    grid-row: 1;
    padding: 30px 0 0;
}
#customer {
    grid-column: 2;
    grid-row: 2;
    border: 3px solid #53bc73;
}
#fellow {
    grid-column: 1;
    grid-row: 3;
    border: 3px solid #64becc;
}
#fellow .stake_tit span {
    color: #64becc;
}
#partner {
    grid-column: 2;
    grid-row: 3;
    border: 3px solid #276dc1;
}
#family {
    grid-column: 1;
    grid-row: 4;
    border: 3px solid #d39d31;
}
#shareholder {
    grid-column: 2;
    grid-row: 4;
    border: 3px solid #9c61db;
}
#customer .stake_tit span {
    color: #53bc73;
}
#partner .stake_tit span {
    color: #276dc1;
}
#family .stake_tit span {
    color: #d39d31;
}
#shareholder .stake_tit span {
    color: #9c61db;
}

.stake_tit {
    font-size: 1.3rem;
}
.stake_tit span {
    font-size: 2.0rem;
    margin-right: 5px;
    font-weight: bold;
    letter-spacing: 0.03em;
}
.stake_desc {
    position: relative;
    color: #898989;
    font-size: 0.7rem;
    font-weight: normal;
    line-height: 1.3em;
    margin-bottom: 0;
}
.stake_box {
    position: relative;
    width: 100%;
}
.stake_box::before{
    position: absolute;
    content:"";
    display: block;
    height: 80px;
    background-size:contain;
    background-repeat:no-repeat;
}

#customer .stake_box::before {
    width: 80px;
    margin-top: -15px;
    background-image: url('../images/philosophy/customer.svg');
}
#fellow .stake_box::before {  
    width: 120px;
    margin-top: -15px;
    background-image: url('../images/philosophy/fellow.svg');
}
#partner .stake_box::before {   
    width: 110px; 
    background-image: url('../images/philosophy/partner.svg');
}
#family .stake_box::before {    
    width: 80px;
    background-image: url('../images/philosophy/family.svg');
}
#shareholder .stake_box::before {   
    width: 110px; 
    background-image: url('../images/philosophy/shareholder.svg');
}

#customer .stake_tit, #customer .stake_desc,
#family .stake_tit, #family .stake_desc {
    padding-left: 90px;
}
#partner .stake_tit, #partner .stake_desc,
#shareholder .stake_tit, #shareholder .stake_desc {
    padding-left: 120px;
}
#fellow .stake_tit, #fellow .stake_desc {
    padding-left: 110px;
}


/*========= PAGE : NEWS | EVENT ==========*/
dl#article {
    display: flex;
    flex-flow: column;
    width: 85%;
}
dl#horizonal {
    display: flex;
    margin: 0 auto;
    padding: 10px 0;
    border-bottom: 1px solid #001756;
}
#page_news dl,
#page_event dl {
    width: 85%;
}
#horizonal dt {
    width: 80%;
    margin: 0;
}
#horizonal dd {
    width: 20%;
}
.box_inner {
    margin: 100px auto;
}
.date_tag {
    display: flex;
}
time {
    margin: 0 10px 0 0;
    font-size: 0.8rem;
    font-weight: bold;
    color: #0c397a;
}
.tag {
    width: 100px;
    height: 22px;
    margin-right: 10px;
    padding: 0;
    vertical-align: middle;
    text-align: center;
    font-size: 0.8rem;
    font-weight: bold;
    line-height: 20px;
}
#top_news .tag,
#page_news .tag {
    color: #FFF;
    background-color: #0c397a;
}
#top_event .tag,
#page_event .tag {
    color: #0c397a;
    border: 1px solid #0c397a;
}
.article_pict {
    width: 600px;
    margin-bottom: 30px;
}
.list_pict {
    width: 100%;
    margin: 0;
}

/*--------- TOP : info --------*/

section#top_info {
    background-color: #FFF;
    padding: 50px;
}

section#top_info ul {
    display: flex;
    width: 90%;
    margin: 0 auto;
}
section#top_info ul li {
    width: calc(50% - 40px);
    margin-right: 40px
}
section#top_info ul li:last-child {
    margin-right: 0
}

#top_info dl {
    display: flex;
    width: 100%;
    margin: 0 auto;
    padding: 10px 0;
}
#top_info dt {
    width: 70%;
}
#top_info dd {
    width: 30%;
    padding-top: 20px;
}
.top_info_tit {
    background-color: #002068;
    padding: 20px;
}
.top_info_tit img {
    width: auto;
    height: 80px;
}
.more {
    width: 100%;
    margin: 10px 5px 0 0;
    text-align: right;
}


/*--------- TOP : accempt --------*/
#top_attempt {
    margin: 0 auto;
    padding: 40px 0;
}

#top_attempt ul {
    display: flex;
    flex-wrap: wrap;
    width: 90vw;
    max-width: 980px;
    margin: 30px auto 0;
}
#top_attempt ul li {
    width: 50%;
    padding: 20px;
}
#top_attempt ul li:nth-child(even) {
    margin: right 50px;
}
#top_attempt h2 {
    margin-bottom: 30px;
    font-size: 3.0rem;
    text-align: center;
}



/*========= PAGE : RERUIT ==========*/

#page_recruit dl {
    height: 500px;
    margin: 0 auto;
    text-align: center;
}

#page_recruit dl p {
    width: 100%;
    margin-top: 100px;
    text-align: center;
}


/* =========================
スマホ
========================= */
@media screen and (max-width: 979px) {

    section {
        margin: 0 auto 60px;
    }
    .br-pc {
        display: none;
    }
    .br-sp {
        display: block;
    }

    .top_logo {
        left: 0;
        width: 80px;
        height: 80px;
        margin: 0;
    }
    .btn {
        top: 0;
        right: 0;
    }
    .top_tit,
    .page_tit {
        width: 30vw;
        height: auto;
        top: -30px;
    }
    .top_tit {
        left: 20px;
    }
    .page_tit {
        right: 20px;
    }

    #order h2 {
        font-size: 1.8rem;
    }
    h6 {
        margin: 30px auto 0;
        font-size: 1.2rem;
        line-height: 1.5em;
    }
    dd h6 {
        margin: 0 0 10px;
    }
    dt p {
        font-size: 1.2rem;
    letter-spacing: 0.1em;
    }
    dd p {
        width: 100%;
        margin-bottom: 20px;
    }

    .stake_tit {
        font-size: 1.2rem;
    }
    .stake_tit span {
        font-size: 1.8rem;
        margin-right: 5px;
    }
    .stake_desc {
        font-size: 0.8rem;
    }



    #main-area {
        padding-top: 10px;
    }
  
    .box_m,
    .box_l,
    .box_r {
        margin-bottom: 20px;
        padding: 10px 20px;
        width: 97%;
    }
    .box_m {
        margin: 80px auto 0;
    }
    .box_inner {
        margin: 0 auto;
    }
    .pict_m, dl,dt,dd,
    #sus dd, #cred dt, #cred dd,
    #business dd ul li,
    #mission dd ul li {
        width: 100%;
    }
    dl {
        flex-flow: column;
        flex-wrap: wrap;
        margin: 50px auto 50px;
    }
    dt {
        margin: 0 0 20px;
    }

    dd ul {
        flex-flow: column;
    }
    dd ul li {
        padding-right: 0;
    }
    dd ul li,
    dd ul li:nth-child(even) {
        margin-top: 10px;
    }


    /*========= グリッド ===============*/
    .fill > ul {
        width: 100%;
        margin-top: 10px;
        display: block;
    }
    .fill > ul > li {
        width: 100%;
        margin: 0 20px 0 0;
        padding: 30px 10px;
    }






 }


@media screen and (max-width: 640px) {
  .last td:last-child {
    border-bottom: solid 1px #ccc;
    width: 100%;
  }
  .tbl-r02 {
    width: 80%;
  }
  .tbl-r02 th,
  .tbl-r02 td {
    border-bottom: none;
    display: block;
    width: 100%;
  }
}