html,body{
    width:100%;
}
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;
    /*border: 1px solid #9c61db !important;*/
}
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%;
    max-width:100%;
    height:auto;
    display:block;
}
*,
*::before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}
.br-pc {
    display: block;
}
.br-sp,
.br-ss {
    display: none;
}

/*========= ハンバーガーボタン ==========*/
.btn {
	position: fixed;
	top: 14px;
	right: 16px;
	z-index: 1000;
	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{
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    cursor: pointer;
    pointer-events: auto;
}
.touch-btn::before {
	content:'';
	position:absolute;
	left: 50%;
	top: 50%;
	width: 10px;
	height: 10px;
	border-top: 2px solid #999;
	border-right: 2px solid #999;
	transform:translate(-50%,-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;
}
body.menu-open {
  overflow: hidden;
}
body.menu-open main,
body.menu-open footer,
body.menu-open .page_contents {
  pointer-events: none;
}

/*-----　SPメニューの中身 ------*/
.hum_menu {
    display:flex;
    flex-flow: column;
    align-items: center;
    justify-content: space-around;
    top: 0;
    padding: 7vh 0 20vh;
	width: 100%;
	height: 100vh;
    margin-left: auto;
    font-family: 'Kosugi Maru', sans-serif;
    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,
.hum_menu li#contact,
.hum_menu li:last-child {
    display:flex;
    flex-flow: column;
    align-items: center;
    text-align: center;
	width: 100%;
    margin: 0 auto;
}
.hum_menu li#shop {
    display: block;
}
.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: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  opacity: 1;
  z-index: 999;
}

.shop_bnr {
    display: block;
    position: fixed;
    top: 100px;
    right: 0;
    width: 30px;
    height: 142px;
	z-index: 10;
}


/*========= 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: 980px;
		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#shop {
        /*display: none;*/
        width: 200px;
    }
    .hum_menu li#contact {
        width: 250px;
        margin-right: 30px;
    }
    .hum_menu > li:last-child {
        position: relative;
        margin-right: 20px;
        width: 80px;
    }
    .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;
	}
    .hum_menu li#contact {
        margin-right: 15px;
    }
    .hum_menu li#border_l::before {
        left: -20px;
    }
}


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

    .shop_bnr {
        display: none;
    }
    .hum_menu li.has-child ul,
    .hum_menu li.has-child ul ul{
        position: relative;
        width: 280px;
        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{
        height: auto;
    }
    .touch-btn::before {
	    left: calc(100% + 30px);
        top: -23px;
        transform: rotate(135deg);
    }
    .touch-btn.active::before{
        transform: rotate(-45deg);
    }
    nav li.has-child ul {
        top: 0px;
    }
    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;
    margin: 0;
    padding: 0;
}
h1 {
    font-size: 1.2rem;
    line-height: 1.5em;
    margin-bottom: 10px;
    font-weight: normal;
}
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 370px 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.4rem;
    font-weight: bold;
    line-height: 1.5em;
}

#main-area {
    padding-top: 50px;
    overflow: hidden;
}
/* 980px以上のときフッターの高さ分の余白を追加  */
@media screen and (min-width: 980px) {
    #main-area {
        padding-bottom: 400px;
    }
}


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

#container {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
.top_logo {
    position: fixed;
    top: 0px;
    left: 20px;
    width: 140px;
    height: 140px;
    margin: 0 0 0 30px;
    z-index: 1000;
}
#page_brand h6,
#page_recruit p,
#page_recruit h6,
#page_registration p,
#page_registration h6,
#page_contact h6,
    #page_404 h6 {
    margin: 0 300px 50px 150px;
}
/*------ hover -------*/
.btnripple {
	position: relative;
	display:inline-block;
	text-decoration: none;
	outline: none;
}

.btnripple:hover::before {
    content: '';
    position: absolute;
    left:30%;
    top:-10px;
    border: 1px solid #333;
    width: 50px;
    height: 50px;
    border-radius: 50%;
	opacity:1;
    animation:1s circleanime2 forwards;
}

@keyframes circleanime2{
	0%{
	  transform: scale(0);
	}
	100%{
		transform:scale(2);
		opacity: 0;
	}
}

.float {
    display: block;
    line-height: 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15), 0 0 30px rgba(0,0,0,0.1);
    transition: all .3s;
}

.float img{
    display: block;
    width: 100%;
    height: auto;
}

.float:hover{
    box-shadow: 0 10px 30px rgba(0,0,0,0.35), 0 0 80px rgba(0,0,0,0.2);
}


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

@media screen and (min-width: 1344px) {
    #top_brand ul {
    margin-top: 100px;
}
}


#top_brand ul li {
    width: 100%;
    margin: 0 auto 40px;
    padding: 0 10%;
}

#page_brand ul {
    width: 100%;
    margin-top: 0;
}
#page_brand ul li {
    width: 100%;
    margin: 0 auto 0;
    padding: 0;
}
#top_brand ul li img,
#page_brand ul li img {
    border-radius: 30px;
}

#top_brand .float,
#page_brand .float {
    border-radius: 30px;
}

#page_brand ul li p {
    position: relative;
    margin-top: 20px;
    font-size: 1.0rem;
    text-align: right;
    padding-right: 16px;
}
#page_brand ul li p a {
    font-weight: bold;
    color: #0c397a;
}
#page_brand ul li p:after {
    position: absolute;
    content:"";
    top: 7px;
    right: 0;
    width: 13px;
    height: 13px;
    background-image: url('../images/brands/arrow.svg');
}

/*========= 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_philosophy .page_tit {
    content: url('../images/title/philosophy_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_registration .page_tit {
    content: url('../images/title/registration_tit.svg');
}
#page_contact .page_tit {
    content: url('../images/title/contact_tit.svg');
}
#page_404 .page_tit {
    content: url('../images/title/404_tit.svg');
}
.asterisk-pc {
    position: absolute;
    display: block;
    top: 155px;
    right: 70px;
    font-size: 0.9rem;
}
.asterisk-sp {
    display: none;
}
.asterisk-pc span,
.asterisk-sp span {
    color: #ea2864;
}
#asta_add {
    font-family: 'Kosugi Maru', sans-serif;
    font-size: 0.8rem;
}

.box_m,
.box_l,
.box_r {
    padding: 10px 30px 50px;
    background-color:#FFF;
    width: 90%;
}
.box_m {
    padding: 70px 30px;
    margin: 200px auto 0;
}


.box_m#page_404,
.box_m#page_contact,
.box_m#page_recruit,
.box_m#page_registration {
    height: 100%;
    min-height: 40vh;
}
.box_l {
    left: 0;
    width: 95%;
    border-radius: 0 50px 50px 0;
}
.box_r {
    right: 0;
    width: 95%;
    border-radius: 50px 0 0 50px;
}
.search {
    max-width: 1080px;
    margin: 0 auto;
}
.box_inner {
    max-width: 1280px;
    margin: 0 auto;
}
.section-title {
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #0c397a;
    font-size: 1.9rem;
    font-weight: 600;
    line-height: 0.8em;
}
.section-title span {
    font-family: "Noto Sans", sans-serif;
    position: relative;
    color: #898989;
    font-size: 0.8rem;
    line-height: 0.01em;
    margin: 5px 0 0 5px;
}

.sec_r {
    display: flex;
    justify-content: right;
}

dl {
    display: flex;
    width: 90%;
    margin: 100px auto 50px;
}

.anchor {
    margin-top: -50px;
    padding-top: 100px;
}
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-direction: 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;
    line-height: 1.7em;
}
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:absolute;
    bottom: 0;
    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: 900px;
    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 .in-menu {
    display: flex;
    flex-flow: column;
}
#f_menu .in-menu li {
    margin-bottom: 20px;
}
#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;
}

.footer-logo img {
    width: 35%;
    max-width: 200px;
}



/*========= グリッド ===============*/
.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;
}
.stake_txt::before{
    position: absolute;
    content:"";
    display: block;
    height: 80px;
    background-size:contain;
    background-repeat:no-repeat;
}

#customer .stake_txt::before {
    width: 80px;
    margin-top: -15px;
    background-image: url('../images/philosophy/customer.svg');
}
#fellow .stake_txt::before {  
    width: 120px;
    margin-top: -15px;
    background-image: url('../images/philosophy/fellow.svg');
}
#partner .stake_txt::before {   
    width: 110px; 
    background-image: url('../images/philosophy/partner.svg');
}
#family .stake_txt::before {    
    width: 80px;
    background-image: url('../images/philosophy/family.svg');
}
#shareholder .stake_txt::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%;
    margin-top: 0;
}
dl#horizonal {
    display: flex;
    margin: 100px auto 0;
    padding: 10px 30px;
    border-bottom: 1px solid #001756;
}

#page_news dl,
#page_event dl {
    width: 90%;
    padding: 20px 0;
}
#horizonal dt {
    width: 80%;
    margin: 0;
    padding-right: 30px;
}
#horizonal dd {
    width: 20%;
}
#article {
    width: 100%;
    margin: 0;
    padding-right: 0;
}

#article ul {
    display: flex;
}
#article ul li {
    margin-right: 5px;
}

.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_news h5,
#page_news h5 {
    margin-top: 10px;
}
#top_event .tag {
    color: #0c397a;
    border: 1px solid #0c397a;
}
.article_pict {
    width: 600px;
    margin-bottom: 20px;
}
.list_pict {
    width: 100%;
    margin: 0;
}
.back {
    width: 90%;
    font-size: 1.0rem;
    font-weight: bold;
    margin: 10px 0 0 10px;
}




/*--------- 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 h2 {
    margin-bottom: 30px;
    font-size: 3.0rem;
    text-align: center;
}
#top_attempt ul {
    display: flex;
    flex-wrap: wrap;
    width: 90%;
    max-width: 980px;
    margin: 30px auto 0;
}
#top_attempt ul li {
    width: calc(50% - 25px);
    margin-bottom: 50px;
}
#top_attempt ul li:nth-child(odd){
    margin-right: 50px;
}
#top_attempt ul li:nth-last-child(-n+2){
    margin-bottom: 0;
}


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

.form_tit {
    display: flex;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #0c397a;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 0.8em;
}
.form_tit span,
#page_contact dt p span {
    color: #ea2864;
    font-size: 1.2rem;
    line-height:1em;
    margin-left: 3px;
}
.form-text {
    width: 90%;
    padding: 10px;
    border: 1px solid #ccc;
    background:#fff;
    border-radius: 0;
    box-shadow:none;
    box-sizing: border-box;
    font-size: 1.0rem;
    height: 40px;
}
textarea.form-text{
    min-height: 150px;
    resize: vertical;
}
.form-text:focus{
    outline:none;
    border:1px solid #999;
}
.add_box {
    width: 200px;
    margin-bottom: 10px;
}
.add_box:last-child {
    width: 100%;
}
#page_contact dt p,
#page_registration dt p {
    font-family: "Noto Sans", sans-serif;
    position: relative;
    color: #898989;
    font-size: 0.8rem;
    line-height: 0.01em;
    margin: 15px 0 0 0;
}
#page_contact dd,
#page_registration dd {
    flex-direction:row;
}

#page_recruit dd,
#page_contact dt,
#page_registration dt,
dd#add_vertical  {
    display: flex;
    flex-flow: column;
}
#page_recruit dl,
#page_contact dl,
#page_registration dl {
    margin: 0 0 30px;
}
#page_recruit dl:last-child,
#page_contact dl:last-child,
#page_registration dl:last-child {
    flex-flow: column;
}
.mwform-radio-field,
.mwform-checkbox-field {
    margin-right: 10px;
}
.bike_model {
    width: 100%;
    margin: 50px 0 30px;
    padding-top: 20px;
    font-size: 1.1rem;
    color: #191919;
    border-top: 1px solid #64becc;
}
.form_pp {
    width: 100%;
    margin: 50px auto 30px;
    text-align: center;
    color: #191919;
}

#form_send {
    display:flex;
    align-items:center;
    justify-content:center;
    width: auto;
    margin: 0 auto;
    gap:10px;
    padding:0;
}
.form_btn {
    display:flex;
    align-items:center;
    justify-content:center;
    background-color:#001756;
    width: 300px;
    height: 80px;
    margin: 0 auto;
    text-align: center;
    color: #FFF;
    font-size: 1.0rem;
    border: none;
}
.form_btn a {
    color: #FFF;
}
.contact-submit {
    margin: 0 auto;
    color:#fff;
    text-align: center;
    font-size: 1.0rem;
    font-weight: bold;
    border:none;
    border-radius:0;
    text-decoration:none;
    cursor:pointer;
}

.contact-submit:hover{
    opacity: 0.8;
}


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

    #page_brand h6,
    #page_recruit p,
    #page_recruit h6,
    #page_registration p,
    #page_registration h6,
    #page_contact h6,
    #page_404 h6 {
        width: calc(100% - 250px);
        margin: 0 0 50px 0;
        padding: 0 20px;
    }

    #page_registration dt p {
        width: 100%;
        margin: 15px 0 0 0;
        padding: 0;
    }
}


/* =========================
スマホ
========================= */
@media screen and (max-width: 979px) {
    body {
        font-size: 1.0rem;
    }
    section {
        margin: 0 auto 60px;
    }
    section:last-child {
        margin-bottom: 0;
    }
    .br-pc,
    .br-ss {
        display: none;
    }
    .br-sp {
        display: block !important;
    }

    .top_logo {
        left: 0;
        width: 80px;
        height: 80px;
        margin: 0;
        pointer-events: auto;
    }
    .btn {
        top: 0;
        right: 0;
    }
    .search {
        width: 90%;
        max-width: 90%;
    }

/*========= ページトップ ==========*/
    #page-top {
        width: 40px;
        height: 40px;
        bottom: 600px;
        padding-top: 13px;
	    font-size: 2.3rem;
    }
    footer {
        position: relative;
        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;
        justify-content: flex-start;
        width: 60%;
        height: 400px;
        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: auto;
        margin-bottom: 20px;
        padding-bottom: 0;
    }
    #f_menu .sub-menu {
        width: 100%;
        height: auto;
        margin: 5px 0 0 0;
    }
    #f_menu .sub-menu li {
        height: 20px;
        line-height: 0.8em;
        text-align: right;
        margin-bottom: 10px;
    }
    #f_menu .sub-menu li::before {
        display: none;
    }
    #f_menu .in-menu li {
        margin-bottom: 30px;
    }
    .footer-logo img {
        width: 25%;
        max-width: 25%;
    }


    .top_tit,
    .page_tit {
        width: 30%;
        height: auto;
        top: -30px;
    }
    .top_tit {
        left: 20px;
    }
    .page_tit {
        right: 20px;
    }
    #top_brand .top_tit {
        top: -100px;
    }
    #order h2 {
        font-size: 1.8rem;
    }

    h6 {
        width: 100%;
        margin: 30px 0 0;
        font-size: 1.2rem;
        line-height: 1.5em;
    }
    dd h6 {
        margin: 0 0 10px;
    }


/*--------- TOP : top_brand --------*/

    #top_brand,
    #top_info,
    #top_news,
    #top_attempt {
        padding: 0 10px;
    }

    #top_brand {
        display: flex;
        flex-flow: column;
        padding-bottom: 50px;
    }
    #top_brand ul,
    #page_brand ul {
        margin-top: 0;
    }
    #page_brand ul li {
        margin: 0 auto 30px;
        padding: 0;
    }
    #top_brand ul li {
        margin: 0 auto 30px;
        padding: 0 20px;
    }
    #page_brand ul li {
        margin: 0 auto;
        padding: 0;
    }
    #top_brand ul li img,
    #page_brand ul li img {
        border-radius: 20px;
    }
    #top_brand .float,
    #page_brand .float {
        border-radius: 20px;
    }


    #top_brand h6 {
        width: 100%;
        margin: calc(30% - 70px) 0 30px;
        padding: 0 20px;
    }

    #page_company #message,
    #page_company #philosophy {
        margin: calc(30% - 50px) 0 0;
    }
    #page_recruit p,
    #page_recruit h6,
    #page_registration p,
    #page_registration h6,
    #page_contact h6,
    #page_404 h6 {
        width: 100%;
        margin: calc(30% + 30px) 0 0;
        padding: 0;
    }
    #page_brand h6 {
        width: 100%;
        margin: calc(30% + 10px) 0 50px;
        padding: 0;
    }
    #page_brand h6,
    #page_contact h6,
    #page_404 h6 {
        margin-bottom: 50px;
    }
    #page_recruit p,
    #page_registration p {
        margin: 30px 0 50px;
    }

    #page_registration dt {
        flex-flow: row nowrap;
        flex-direction: row;
    }
    #page_registration dt p {
        width: 100%;
        margin: 15px 0 0 0;
        padding: 0;
    }
    .asterisk-pc {
        display: none;
    }
    .asterisk-sp {
        position: absolute;
        display: block;
        top: -40px;
        right: 0;
        font-size: 0.8rem;
    }

    .form_tit {
        min-width: 160px;
    }
    .form-text {
        width: 100%;
        padding: 0 10px;
    }

    #form_send {
        margin-bottom: 50px;
    }
    #page_contact dt p,
    #page_registration dt p {
        margin: 10px 0 0 0;
    }

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

section#top_info {
    padding: 30px 0;
}
section#top_info ul {
    flex-flow: column;
    width: 100%;
    margin: 0 auto;
}

section#top_info ul li {
    width: 100%;
    margin: 0 0 50px;
    padding: 0 10px;
}


dl#horizonal {
    flex-flow: column;
}
dl#horizonal dt {
    display: flex;
    flex-flow: column;
    padding: 0 20px 30px;
}
dl#horizonal dd {
    padding: 0 20px;
}
#top_info h5 {
    margin: 0;
    order: 2;
}
#top_info .tag {
    order: 1;
    margin: 10px 10px 5px 0;
}

/*--------- TOP : accempt --------*/
#top_attempt h2 {
    font-size: 2.0rem;
}

#top_attempt ul {
    flex-flow: column;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 30px;
}
#top_attempt ul li {
    width: 100%;
    margin-bottom: 30px;
    padding: 0 10px;
}
#top_attempt ul li:nth-child(odd){
    margin-right: 0;
    margin-bottom: 20px;
}



/*--------- PAGE --------*/
    #cred h6 {
        margin: 10px 0 0;
    }

    dd p {
        width: 100%;
        margin-bottom: 20px;
    }

    .fill > ul > li > ul {
        padding: 0 0 0 10px;
        margin: 0;
    }
    .stake_box {
        display: flex;
        flex-flow: column;
    }
    .stake_tit {
        font-size: 1.2rem;
        line-height: 1.5em;
        text-align: center;
        margin-bottom: 10px;
    }
    .stake_tit span {
        font-size: 1.8rem;
        margin-right: 5px;
    }
    .stake_desc {
        font-size: 0.8rem;
        margin-bottom: 10px;
        text-align: center;
    }
    .stake_txt::before{
        position: relative;
        content:"";
        display: block;
        height: 80px;
        margin: 10px auto;
        background-size: contain;
        background-repeat: no-repeat;
    }

    #customer .stake_tit, #customer .stake_desc,
    #family .stake_tit, #family .stake_desc,
    #partner .stake_tit, #partner .stake_desc,
    #shareholder .stake_tit, #shareholder .stake_desc,
    #fellow .stake_tit, #fellow .stake_desc {
        padding-left: 0;
    }

    #main-area {
        padding-top: 0;
    }
  
    .box_m,
    .box_l,
    .box_r {
        margin-bottom: 20px;
        padding: 10px 20px;
        width: 97%;
    }
    .box_l {
        height: auto;
    }
    .box_m {
        margin: 80px auto 0;
    }
    .pict_m, dl,dt, dd,
    #sus dt, #sus dd, #cred dt, #cred dd,
    #business dd ul li,
    #mission dd ul li,
    .tbl-r02, .tbl-r02 th, .tbl-r02 td {
        width: 100% !important;
    }
   
    dl {
        flex-flow: column;
        flex-wrap: wrap;
        margin: 50px auto 10px;
    }
    dl#company {
        margin-top: -50px;
        padding-top: 150px;
    }
    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;
    }
    #sus dt p {
        text-align: left;
    }
    h3 {
        line-height: 1.3em;
    }

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


/*========= PAGE : ABOUT ==========*/
    dt img {
        width: 100%;
        margin-top: 30px;
    }
    #sus dt {
        margin: 0 auto;
        text-align: center;
    }
    #sus dt .section-title {
        text-align: left;
    }

    dd h1 {
        font-size: 1.1rem;
        margin-top: 30px;
    }
    .tbl-r02 {
        width: 80%;
    }
    .tbl-r02 th,
    .tbl-r02 td {
        border-bottom: none;
        display: block;
        width: 100%;
    }
    .tbl-r02 th{
        border-bottom: none;
        padding: 10px 10px 5px;
    }
    .tbl-r02 td {
        border-top: none;
        padding: 0 10px 10px;
    }

    .company-info {
        width: 100%;
        height: auto;
        bottom: 50px;
        left: 0;
        padding-left: 10px;
        pointer-events: auto;
    }
    .company-info dd {
        margin: 5px 0 0;
    }
/*========= PAGE : BRAND==========*/
    #page_brand dd {
        flex-direction:column-reverse;
        padding: 0;
    }

 }


@media screen and (max-width: 640px) {
  .last td:last-child {
    border-bottom: solid 1px #ccc;
    width: 100%;
  }
}


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

    .br-pc,
    .br-sp {
        display: none;
    }
    .br-ss {
        display: block;
    }
    footer {
        height: 550px;
    }
    #f_menu {
        width: 100%;
    }
    #page-top {
        bottom: 550px;
    }
}