
@charset "UTF-8";
/* CSS Document */

/* gloval
----------------------------------*/
/* selected text */
::selection {
	background: #EBEAE8; /* Safari */
}
::-moz-selection {
	background: #EBEAE8; /* Firefox */
}
*::after,
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
/* text link */
a:link {
	color: #c19a6f;
	text-decoration: none;
}
a:visited {
	color: #c19a6f;
	text-decoration: none;
}
a:hover {
	color: #999999;
	text-decoration: none;
}
a:active {
	color: #999999;
	text-decoration: none;
}
/* alphaover */
.alphaOver a:hover img{
	opacity:0.5;
	filter:alpha(opacity=50);
	-ms-filter:"alpha( opacity=50 )";
}

@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,500,700,900&display=swap&subset=japanese');

body{
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	-webkit-text-size-adjust: 100%;
	letter-spacing:0.04em;
	color:#000;
	background-color: #FFFFFF;
    padding-top: 80px;
}

/* header
----------------------------------*/
header{
    position: fixed;
    z-index: 1000;
    width: 100%;
    top: 0;
    display: flex;
    justify-content: space-between;
    height: 80px;
    background-color: #FFF;
}
header h1{
    padding: 8px 0 8px 30px;
}
header h1 img{
    height: 100%;
}
@media (max-width: 1025px) {
    header{
        height: 70px;
        border-bottom: #000 solid 1px;
    }
    header h1{
        padding: 9px 0 10px 30px;
    }
}

/* trigger
----------------------------------*/
.menu-trigger {
    display: inline-block;
    width: 30px;/* アイコンボタンの横幅 */
    height: 22px;/* アイコンボタンの縦幅 */
    cursor: pointer;/* マウスカーソルをリンクポインタに指定 */
    /* アイコンボタンの位置 */
    position: fixed;
    top: 24px;
    right: 16px;
    z-index: 1000;
}
.menu-trigger span {
    display: inline-block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;/* アイコン横線の太さ */
    background-color: #000;/* アイコンカラー */
    transition: all .5s;/* アイコンアニメーションの速さ */
}
.menu-trigger.active span {
    background-color: #fff;/* メニュー展開後のアイコンカラー */
    height: 2px;
}
.menu-trigger span:nth-of-type(1) {
    top: 0;
}
.menu-trigger.active span:nth-of-type(1) {
    transform: translateY(10px) rotate(-45deg);
}
.menu-trigger span:nth-of-type(2) {
    top: 10px;
}
.menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
}
.menu-trigger span:nth-of-type(3) {
    width: 60%;
    bottom: 0;
}
.menu-trigger.active span:nth-of-type(3) {
    width: 100%;
    transform: translateY(-10px) rotate(45deg);
}

@media (min-width: 1025px) {
    .menu-trigger {
        display: none;
    }
}

/* nav 
----------------------------------*/
nav {
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0, 0.9);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999 !important;
    transform: translate(100%);
    transition: all .4s;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}
nav.open {
  transform: translateZ(0);
}
nav li {
    text-align: left;
    font-size: 16px;
    letter-spacing: 0.2em;
    width: 100%;
    padding: 0 30px;
}
nav li a{
    display: block;
    width: 100%;
    padding: 20px 10px;
    border-bottom: #555 solid 1px;
}
nav li a:link{color: #fff;}
nav li a:visited{color: #fff;}

nav ul {
    list-style: none;
    width: 100%;
}
.nav-contact {
    margin: 40px 0 20px 0;
    padding: 0 30px;
}
.nav-contact a{
    display: block;
    border: #FFF solid 1px;
    background-image: url(../img/ic-job.png);
    background-repeat: no-repeat;
    background-position: top 52% left 10px;
    background-size: auto 30px;
    padding: 20px 10px 20px 40px;
}
@media (min-width: 1025px) {
    nav {
        position: relative;
        width: auto;
        height: auto;
        padding-top: 0;
        background-color: rgb(0, 0, 0, 0);/* メニュー展開時の背景色 */
        transform: translate(0);/* メニュー展開前の位置 */
    }
    nav ul{
        height: 80px;
    }
    nav li {
        padding: 16px 16px;
        font-size: 16px;
        letter-spacing: 0.1em;
        width: auto;
        float: left;
    }
    nav li a{
        display: block;
        font-weight: 700;
        border-bottom: none;
        padding: 14px 0;
        text-decoration: none;
    }
    nav li a:link{color: #000;}
    nav li a:visited{color: #000;}
    nav li a:hover{color: #dcb081;}
    .nav-contact {
        margin: 0 0;
        padding: 0 0 0 20px;
        border: none;
    }
    .nav-contact a{
        width: auto;
        height: 80px;
        background-color: #000;
        color: #FFF !important;
        padding: 0 40px 0 66px;
        background-position: top 52% left 36px;
        background-size: auto 30px;
        border: none;
    
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
    }
    .nav-contact a:hover{
        border-bottom: none;
        background-color: #dcb081;
    }
    div.overlay{
        display: none;
    }
}

/* SNS
----------------------------------*/
section.sns-block{
    background-color: #fff;
    padding: 40px 0;
}
section.sns-block div{
    display: flex;
    justify-content: center;
    align-items: center;
}
section.sns-block h2{
    background-color: #dcb081;
    background-image: url(../img/title-backpng-1.png);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 100% auto;
    color: #fff;
    padding: 0.2em 40px;
    width: 180px;
    font-size: 16px;
    text-align: center;
}
section.sns-block ul{
    display: flex;
    justify-content: space-between;
    margin: 0 0 0 20px;
}
section.sns-block ul li{
    width: 60px;
    margin: 0 15px;
}
section.sns-block ul li img{
    width: 100%;
}
@media (max-width: 1025px) {
    section.sns-block{
        padding: 30px 0;
    }
    section.sns-block div{
        flex-direction: column;
    }
    section.sns-block h2{
        width: 50%;
        margin: 0 auto 16px auto;
    }

    section.sns-block ul{
        margin: 0 0 0 0;
        padding: 0 60px;
    }
    section.sns-block ul li{
        width: 20%;
        margin: 0;
    }
}

/* footer
----------------------------------*/
footer{
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 60px;
    color: #fff;
}
footer div.footer-block1{
    display: flex;
    align-items: center;
}
footer div.footer-block1 h1{
    width: 110px;
    padding: 5px 20px 5px 0;
    margin: 0 20px 0 0;
    border-right: #4d4d4d solid 1px;
}
footer div.footer-block1 h1 img{
    width: 100%;
}
footer div.footer-block1 ul li{
    font-size: 12px;
    line-height: 1.8em;
}

footer div.footer-block2{
    text-align: right;
    letter-spacing: 0.1em;
}
footer div.footer-block2 a{
    font-size: 12px;
    color: #c19a6f;
}
footer div.footer-block2 a:hover{
    opacity: 0.6;
}
footer div.footer-block2 small{
    display: block;
    margin: 0.4em 0;
    font-size: 10px;
}
@media (max-width: 1025px) {
    footer{
        flex-direction: column;
        padding: 30px 20px;
        color: #fff;
    }
    footer div.footer-block1{
        flex-direction: column;
        margin-bottom: 30px;
    }
    footer div.footer-block1 h1{
        width: 32%;
        padding: 5px 0 20px 0;
        margin: 0 0 0 0;
        border-right: none;
    }
    footer div.footer-block1 h1 img{
        width: 100%;
    }
    footer div.footer-block1 ul{
    }
    footer div.footer-block1 ul li{
        font-size: 12px;
        line-height: 1.8em;
    }

    footer div.footer-block2{
        text-align: center;
    }
    footer div.footer-block2 a{
        font-size: 14px;
        color: #c19a6f;
    }
    footer div.footer-block2 small{
        margin: 0.8em 0;
    }
}

/* page-top
----------------------------------*/
p#pageTop {
	z-index:998;
	position: fixed;
	bottom: 110px;
	right: 40px;
}
@media (max-width: 1025px) {
    p#pageTop {
        bottom: 60px;
        right: 20px;
    }
}

/* breadcrumb
----------------------------------*/
div.breadcrumb{
    text-align: right;
    padding: 20px 0;
}
div.breadcrumb div{
     display: inline-block;
}
div.breadcrumb ul{
    display: flex;
    border-top: #000 solid 1px;
    border-bottom: #000 solid 1px;
    border-left: #000 solid 1px;
    padding: 0.4em 1em;
}
div.breadcrumb ul li{
    font-size: 12px;
    letter-spacing: 0.1em;
    margin-left: 0.8em;
}
div.breadcrumb ul li a{
    display: inline-block;
    margin-right: 0.8em;
    color: #000;
}
div.breadcrumb ul li a:hover{
    opacity: 0.6;
}
@media (max-width: 1025px) {
    div.breadcrumb{
        display: none;
    }
}

/* title
----------------------------------*/
section.pagetitle{
    text-align: center;
    letter-spacing: 0.2em;
    margin-bottom: 60px;
}
section.pagetitle h2{
    font-size: 34px;
}
section.pagetitle h3{
    font-size: 18px;
}
.title-color{
    color: #c19a6f;
}

.category-title{
    background-color: #000;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 100% auto;
    color: #fff;
    padding: 0.2em 20px;
    width: 40%;
    font-size: 20px;
    letter-spacing: 0.15em;
    text-align: center;
    margin: 0 auto 30px auto;
}
.ctbc-1{background-image: url(../img/title-backpng-1.png);}
.ctbc-2{background-image: url(../img/title-backpng-2.png);}
@media (max-width: 1025px) {
    section.pagetitle{
        margin-top: 20px;
        margin-bottom: 30px;
    }
    section.pagetitle h2{
        font-size: 26px;
    }
    section.pagetitle h3{
        font-size: 14px;
    }

    .category-title{
        padding: 0.2em 10px;
        width: 100%;
        font-size: 18px;
        margin: 0 auto 20px auto;
    }
}

/* main
----------------------------------*/
.wrap-980{
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
}
.wrap-full{
}
@media (max-width: 1025px) {
    .wrap-980{
        padding: 0 20px;
    }
}
.block-base{
    width: 100%;
    padding: 40px 0;
}
.back-color1{background-color: #f7f2ed;}
.back-color2{background-color: #fff;}
.block-base-inner{
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
}
.layout-parts-pay{
    display: flex;
    justify-content: space-between;
    margin: 0 0 30px 0;
}
.layout-parts-pay li{
    background-color: #fff;
    width: 48%;
    border-radius: 20px;
    text-align: center;
    padding: 30px;
}
.layout-parts-pay li h4{
    color: #c19a6f;
    font-size: 20px;
    font-weight: 700;
}
.layout-parts-pay li h3{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 36px;
    font-weight: bold;
}
.layout-parts-frame{
    width: 40%;
    margin: 0 auto;
    background-color: #fff;
    border: #c19a6f solid 1px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.8em;
    padding: 1.4em;
}
.layout-parts-p{
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.8em;
    margin-bottom: 1em;
}
.layout-parts-meun{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.layout-parts-meun li{
    width: 47%;
    border-bottom: #c19a6f solid 1px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2.4em;
    padding: 0 0 0.6em 10px;
}
@media (max-width: 1025px) {
    .block-base{
        padding: 30px 0;
    }
    .block-base-inner{
        padding: 0 20px;
    }
    .layout-parts-pay{
        flex-direction: column;
        margin: 0 0 10px 0;
    }
    .layout-parts-pay li{
        width: 100%;
        padding: 20px;
        margin-bottom: 10px;
    }
    .layout-parts-pay li h4{
        color: #c19a6f;
        font-size: 18px;
    }
    .layout-parts-pay li h3{
        font-size: 28px;
    }
    .layout-parts-frame{
        width: 100%;
    }
    .layout-parts-p{
        font-size: 14px;
        margin-bottom: 0.5em;
    }
    .layout-parts-meun{
        flex-direction: column;
    }
    .layout-parts-meun li{
        width: 100%;
        font-size: 12px;
        margin-bottom: 2em;
        padding: 0 0 0.6em 5px;
    }
}

/* btn
----------------------------------*/
.btn-base{
    display: block;
    width: 100%;
    background-color: #000;
    color: #fff !important;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    padding: 1em 0;
    background-image: url(../img/ic-arrow.png);
    background-repeat: no-repeat;
    background-position: top 50% right 20px;
    background-size: auto 40%;
}
.btn-base:hover{
    opacity: 0.6;
}

/* map
----------------------------------*/
.google-map{
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    height: 0;
    margin-bottom: 10px;
}
.google-map iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@media (max-width: 1025px) {
    .google-map{
        padding-top: 100%;
    }
}

/* HOME
----------------------------------*/
section.top-mainimg-block{
    position: relative;
    display: flex;
    justify-content: flex-end;
    width: 100%;
    height: 620px;
    margin-bottom: 80px;
}
div.top-mainimg-title{
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 36%;
    height: 340px;
    background-color: #c19a6f;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
div.top-mainimg-title h2{
    width: 100%;
    text-align: center;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2em;
    letter-spacing: 1em;
    padding: 0 0 0 1em;
}
div.top-mainimg-title h3{
    width: 100%;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.26em;
    margin-bottom: 1em;
}
div.top-mainimg-img{
    background-image: url(../img/top-main-img.jpg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    width: 70%;
    height: 100%;
}

section.top-category-block{
    display: flex;
    justify-content: space-between;
    height: 400px;
    margin-bottom: 80px;
}
.top-category-reverse{
    flex-direction: row-reverse;
}
div.top-category-img{
    width: 60%;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}
.top-about-img{background-image: url(../img/top-about-img.jpg);}
.top-system-img{background-image: url(../img/top-system-img.jpg);}
.top-access-img{background-image: url(../img/top-access-img.jpg);}
div.top-category-title{
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 5%;
}
div.top-category-title h2{
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0.2em;
}
div.top-category-title h3{
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.2em;
    margin-bottom: 1em;
}
div.top-category-title p{
    font-size: 16px;
    font-weight: 700;
    text-align: justify;
    margin-bottom: 2em;
}

section.top-recruit-block a{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-image: url(../img/top-recruit-img.jpg);
    background-repeat: no-repeat;
    background-position: 100% 50%;
    background-size: 100% auto;
    width: 100%;
    height: 440px;
    color: #fff;
    padding-left: 10%;
}
section.top-recruit-block a:hover{
    opacity: 0.7;
}
section.top-recruit-block div{
    background-image: url(../img/ic-arrow.png);
    background-repeat: no-repeat;
    background-position: top 50% right 0;
    background-size: auto 26px;
    padding: 0 36px 0 0;
}
section.top-recruit-block div h2{
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0.2em;
}
section.top-recruit-block div h3{
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2em;
}

section.instagram-block{
    background-color: #f7f2ed;
    padding: 60px 0;
}
section.instagram-block div.instagram-block-inner{
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
}
section.instagram-block h2{
    text-align: center;
    margin-bottom: 20px;
}
section.instagram-block h2 img{
    display: inline;
}
div.instagram-set{
    width: 100% !important;
    aspect-ratio: 980 / 653;
}
div.instagram-set iframe{
    width: 100%;
    height: 100%;
    margin-bottom: 30px;
}
section.instagram-block a{
    width: 50%;
    margin: 0 auto;
}
@media (max-width: 1025px) {
    section.top-mainimg-block{
        height: 300px;
        margin-bottom: 160px;
    }
    div.top-mainimg-title{
        bottom: -110px;
        left: 10px;
        width: 80%;
        height: 140px;
    }
    div.top-mainimg-title h2{
        font-size: 26px;
    }
    div.top-mainimg-title h3{
        font-size: 10px;
    }
    div.top-mainimg-img{
        width: 100%;
        height: 100%;
    }

    section.top-category-block{
        flex-direction: column;
        height: auto;
        margin-bottom: 40px;
    }
    div.top-category-img{
        width: 100%;
        height: 200px;
        margin-bottom: 16px;
    }
    div.top-category-title{
        width: 100%;
        padding: 0 20px;
    }
    div.top-category-title h2{
        font-size: 26px;
    }
    div.top-category-title h3{
        font-size: 14px;
    }
    div.top-category-title p{
        font-size: 14px;
    }

    section.top-recruit-block a{
        height: 160px;
        padding-left: 20px;
        background-size: cover;
    }
    section.top-recruit-block a:hover{
        opacity: 0.7;
    }
    section.top-recruit-block div h2{
        font-size: 24px;
    }
    section.top-recruit-block div h3{
        font-size: 12px;
    }

    section.instagram-block{
        padding: 30px 0;
    }
    section.instagram-block div.instagram-block-inner{
        padding: 0 20px;
    }
    section.instagram-block h2{
        margin-bottom: 10px;
    }
    section.instagram-block h2 img{
        width: 40%;
    }
    div.instagram-set iframe{
        margin-bottom: 10px;
    }
    section.instagram-block a{
        width: 100%;
    }
}

/* mimiについて
----------------------------------*/
section.about-base-block{
    margin-bottom: 80px;
}
div.about-base-img{
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
}
div.about-base-img img{
    width: 100%;
}
div.about-base-bg{
    background-color: #f7f2ed;
    margin: -70px 0 0 0;
    padding: 130px 0 60px 0;
}
div.about-base-inner{
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
}
.about-set{
    display: flex;
    justify-content: space-between;
}
.about-set div{
    width: 65%;
}
div.about-base-inner ul{
    display: flex;
    justify-content: space-between;
}
div.about-base-inner ul li{
    width: 50%;
}
div.about-base-inner ul li:first-child{
    border-right: #e0cdb7 solid 1px;
}
div.about-base-inner ul li:last-child{
    padding: 0 0 0 50px;
}
div.about-base-inner h2{
    color: #c19a6f;
    font-size: 28px;
    font-weight: 700;
    height: 1.8em;
    position: relative;
    display: inline-block;
    margin-bottom: 1em;
}
div.about-base-inner h2::before{
    content: "";
    position: absolute;
    width: 50%;
    height: 1.8em;
    border-bottom: #c19a6f solid 2px;
}
div.about-base-inner h3{
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 1em;
}
div.about-base-inner p{
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8em;
    letter-spacing: 0.05em;
    margin-bottom: 1.2em;
}
@media (max-width: 1025px) {
    section.about-base-block{
        margin-bottom: 40px;
    }
    div.about-base-img img{
        width: 100%;
    }
    div.about-base-bg{
        margin: 0 0 0 0;
        padding: 30px 0 30px 0;
    }
    div.about-base-inner{
        padding: 0 20px;
    }
    .about-set{
        flex-direction: column;
    }
    .about-set div{
        width: 100%;
    }
    div.about-base-inner ul{
        flex-direction: column;
    }
    div.about-base-inner ul li{
        width: 100%;
        margin-bottom: 1em;
    }
    div.about-base-inner ul li:first-child{
        border-right: none;
    }
    div.about-base-inner ul li:last-child{
        padding: 0 0 0 0;
    }
    div.about-base-inner h2{
        font-size: 24px;
    }
    div.about-base-inner h3{
        margin-bottom: 0.6em;
    }
    div.about-base-inner p{
        line-height: 1.6em;
        text-align: justify;
    }
    div.about-base-inner p br{
        display: none;
    }
}

/* 料金システム
----------------------------------*/

/* アクセス
----------------------------------*/
.access-map{
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
}
section.access-deta{
    background-color: #f7f2ed;
    margin: -70px 0 0 0;
    padding: 100px 0 40px 0;
}
div.access-deta-inner{
   width: 100%;
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
div.access-btn{
    width: 35%;
}
div.access-shop{
    width: 50%;
}
div.access-shop dl{
    display: flex;
    justify-content: flex-start;
    font-size: 14px;
    line-height: 1.8em;
    margin: 0 0 1em 0;
}
div.access-shop dl dt{
    width: 22%;
    font-weight: bold;
}
div.access-shop dl dd{
    width: 78%;
}
@media (max-width: 1025px) {
    section.access-deta{
        padding: 100px 20px 20px 20px;
    }
    div.access-deta-inner{
        flex-direction: column;
    }
    div.access-btn{
        width: 100%;
        margin-bottom: 20px;
    }
    div.access-shop{
        width: 100%;
    }
    div.access-shop dl{
        line-height: 1.6em;
    }
    div.access-shop dl dt{
        width: 20%;
    }
    div.access-shop dl dd{
        width: 80%;
    }
}

/* 求人情報
----------------------------------*/
section.recruit-top-block{
    background-color: #000;
    padding: 40px 0;
    margin-bottom: 40px;
}
div.recruit-top-inner{
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    color: #fff;
}
section.recruit-top-block h2{
    text-align: center;
    font-size: 22px;
    letter-spacing: 0.1em;
    margin-bottom: 1em;
}
div.recruit-top-subblock{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
div.recruit-top-mov{
    width: 480px;
}
div.recruit-top-mov video{
    width: 100%;
}
div.recruit-top-txt{
    width: 440px;
}
h3.recruit-mov-title{
    background-repeat: no-repeat;
    background-position: 0 50%;
    font-size: 20px;
    padding: 0 0 0 74px;
    margin-bottom: 1.0em !important;
    height: 42px;
    display: flex;
    align-items: center;
}
.rmt-f{background-image: url(../img/ic-mov-w.png);
}
.rmt-b{
    background-image: url(../img/ic-mov-b.png);
    color: #000 !important;
}
div.recruit-top-txt p{
    font-size: 14px;
    line-height: 1.6em;
    text-align: justify;
    margin-bottom: 1em;
}

section.recruit-pickup-block{
    width: 100%;
    max-width: 980px;
    margin: 0 auto 40px auto;
}
section.recruit-pickup-block h2{
    background-image: url(../img/ic-pickup.png);
    background-repeat: no-repeat;
    background-position: 0 50%;
    font-size: 34px;
    height: 56px;
    padding: 0 0 0 66px;
    display: flex;
    align-items: center;
    margin-bottom: 0.4em;
}
section.recruit-pickup-block dl{
    border: #c19a6f solid 1px;
    padding: 1.2em;
    margin-bottom: 30px;
}
section.recruit-pickup-block dl dt{
    color: #c19a6f;
    font-size: 24px;
    font-weight: 700;
}
section.recruit-pickup-block dl dd{
    font-size: 16px;
}
section.recruit-pickup-block ul{
    display: flex;
    justify-content: space-between;
}
section.recruit-pickup-block ul li{
    width: 48%;
}
section.recruit-pickup-block ul li img{
    width: 100%;
}

section.recruit-main-block{
    padding: 40px 0;
}
.rmb-color1{background-color: #f7f2ed;}
.rmb-color2{background-color: #fff;}
dl.recruit-main-inner{
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
dl.recruit-main-inner dt{
    width: 20%;
    background-color: #000;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.1em;
    padding: 0.6em 0;
    margin-top: 20px;
}
dl.recruit-main-inner dd{
    width: 80%;
    border-left: #000 solid 1px;
    padding: 15px 0 0 5%;
}
dl.recruit-main-inner h2{
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 0.4em;
}
dl.recruit-main-inner h3{
    color: #c19a6f;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0.4em;
}
dl.recruit-main-inner p{
    font-size: 14px;
    font-weight: 700;
    line-height: 1.8em;
    margin-bottom: 1em;
}
dl.recruit-main-inner ul{
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}
dl.recruit-main-inner ul li{
    width: 48%;
    font-size: 14px;
    line-height: 1.8em;
}
div.recruit-main-mov{
    width: 80%;
    margin-bottom: 20px;
}

section.recruit-btn-block{
    background-color: #000;
    padding: 30px 0 40px 0;
}
div.recruit-btn-inner{
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
}
section.recruit-btn-block h3{
    color: #fff;
    text-align: center;
    font-size: 20px;
    letter-spacing: 0.1rem;
    margin-bottom: 1em;
}
section.recruit-btn-block h3 br{
    display: none;
}
section.recruit-btn-block ul{
    display: flex;
    justify-content: space-between;
}
section.recruit-btn-block ul li{
    width: 32%;
}
section.recruit-btn-block ul li a{
    display: flex;
    align-items: center;
    width: 100%;
    height: 90px;
    border: #fff solid 1px;
    border-radius: 10px;
    color: #fff;
    background-repeat: no-repeat;
    background-position: top 50% left 10px;
}
section.recruit-btn-block ul li a:hover{
    opacity: 0.7;
}
section.recruit-btn-block ul li div{
    width: 100%;
    font-size: 20px;
    font-weight: 700;
    line-height: 1em;
    background-image: url(../img/ic-arrow.png);
    background-repeat: no-repeat;
    background-position: top 50% right 10px;
    background-size: auto 20px;
}
section.recruit-btn-block ul li span{
    font-size: 14px;
}
.rbb-line{
    background-color: #00c300;
    background-image: url(../img/ic-line.png);
    padding: 0 0 0 70px;
}
.rbb-mail{
    background-color: #c19a6f;
    background-image: url(../img/ic-mail.png);
    padding: 0 0 0 60px;
}
.rbb-tel{
    background-color: #c19a6f;
    background-image: url(../img/ic-tel.png);
    padding: 0 0 0 60px;
}

section.recruit-oubo-block{
    padding: 30px 0 40px 0;
    background-color: #f7f2ed;
}
section.recruit-oubo-block div{
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
}
section.recruit-oubo-block h3{
    text-align: center;
    font-size: 20px;
    letter-spacing: 0.1rem;
    margin-bottom: 1em;
}
section.recruit-oubo-block h3 br{
    display: none;
}
section.recruit-oubo-block ul{
    display: flex;
    justify-content: space-between;
}
section.recruit-oubo-block ul li{
    width: 48%;
}
section.recruit-oubo-block ul li img{
    display: inline;
}
.no-btn{
    pointer-events: none;
    opacity: 0.1;
}
@media (max-width: 1025px) {
    section.recruit-top-block{
        padding: 30px 0;
        margin-bottom: 30px;
    }
    div.recruit-top-inner{
        padding: 0 20px;
    }
    section.recruit-top-block h2{
        text-align: left;
        font-size: 16px;
    }
    section.recruit-top-block h2 br{
        display: none;
    }
    div.recruit-top-subblock{
        flex-direction: column;
    }
    div.recruit-top-mov{
        width: 100%;
        margin-bottom: 20px;
    }
    div.recruit-top-txt{
        width: 100%;
    }
    h3.recruit-mov-title{
        background-size: auto 100%;
        font-size: 18px;
        padding: 0 0 0 58px;
        height: 32px;
    }

    section.recruit-pickup-block{
        margin: 0 auto 30px auto;
        padding: 0 20px;
    }
    section.recruit-pickup-block h2{
        background-size: auto 46px;
        font-size: 24px;
        height: 46px;
        padding: 0 0 0 56px;
    }
    section.recruit-pickup-block dl{
        padding: 1.0em;
        margin-bottom: 20px;
    }
    section.recruit-pickup-block dl dt{
        font-size: 20px;
        line-height: 1.2em;
    }
    section.recruit-pickup-block dl dd{
        font-size: 14px;
    }
    section.recruit-pickup-block ul{
        flex-direction: column;
    }
    section.recruit-pickup-block ul li{
        width: 100%;
        margin-bottom: 10px;
    }

    section.recruit-main-block{
        padding: 30px 0;
    }
    dl.recruit-main-inner{
        flex-direction: column;
    }
    dl.recruit-main-inner dt{
        width: 60%;
        font-size: 16px;
        padding: 0.4em 0;
        margin-top: 0px;
    }
    dl.recruit-main-inner dd{
        width: 100%;
        border-left: none;
        padding: 15px 20px 0 20px;
    }
    dl.recruit-main-inner h2{
        font-size: 26px;
    }
    dl.recruit-main-inner h3{
        font-size: 18px;
    }
    dl.recruit-main-inner p{
        font-weight: 500;
    }
    dl.recruit-main-inner ul{
        margin-bottom: 20px;
        flex-direction: column;
    }
    dl.recruit-main-inner ul li{
        width: 100%;
    }
    div.recruit-main-mov{
        width: 100%;
    }

    section.recruit-btn-block{
        padding: 20px 0 30px 0;
    }
    div.recruit-btn-inner{
        padding: 0 20px;
    }
    section.recruit-btn-block h3{
        font-size: 18px;
    }
    section.recruit-btn-block h3 br{
        display: block;
    }
    section.recruit-btn-block ul{
        flex-direction: column;
    }
    section.recruit-btn-block ul li{
        width: 100%;
        margin-bottom: 10px;
    }

    section.recruit-oubo-block{
        padding: 20px 0 30px 0;
    }
    section.recruit-oubo-block div{
        padding: 0 20px;
    }
    section.recruit-oubo-block h3{
        font-size: 18px;
    }
    section.recruit-oubo-block h3 br{
        display: block;
    }
    section.recruit-oubo-block ul{
        flex-direction: column;
    }
    section.recruit-oubo-block ul li{
        width: 100%;
        margin-bottom: 10px;
    }
}

/* 応募フォーム
----------------------------------*/
section.contact-block{
    border: #f2f2f2 solid 8px;
    padding: 50px 8%;
}
section.contact-block dl{
    display: flex;
    margin: 0 0 30px;
}
section.contact-block dl dt{
    width: 35%;
    font-size: 14px;
    font-weight: 700;
}
section.contact-block dl dt span{
    display: inline-block;
    margin: 0 10px 0 0;
    background-color: #db1928;
    color: #fff;
    font-size: 12px;
    padding: 0.4em 0.6em;
}
section.contact-block dl dd{
    width: 65%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
section.contact-block dl dd input{
    padding: 0.4em;
}
.form-w2{width: 48%;}
.form-w3{width: 26%;}
.form-w1{width: 100%;}
.radio-set{justify-content: flex-start !important;}
.radio-set input{
    margin: 0 10px;
}
.form-radio{
    appearance: none;
    position: relative;
    width: 40px;
    height: 40px;
    border: 6px solid #000;
    border-radius: 9999px;
    cursor: pointer;
}
.form-radio:checked::after{
    content: "";
    position: absolute;
    inset: 0;
    width: 18px;
    height: 18px;
    margin: auto;
    border-radius: 9999px;
    background-color: #000;
}
div.contact-btn{
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}
.form-btn{
    cursor: pointer;
    display: block;
    width: 48%;
    background-color: #000;
    color: #fff;
    font-size: 16px;
    padding: 0.8em;
    border-radius: 999px;
    border: none;
}
.form-btn:hover{
    opacity: 0.7;
}
div.contact-caption{
}
div.contact-caption h3{
    font-size: 18px;
    margin-bottom: 0.2em;
}
div.contact-caption p{
    font-size: 12px;
    line-height: 1.8em;
}
div.contact-thanks{
    text-align: center;
}
div.contact-thanks h2{
    display: inline-block;
    color: #c19a6f;
    font-size: 24px;
    border-bottom: #c19a6f solid 2px;
}
div.contact-thanks h3{
    font-size: 24px;
    padding: 1.4em 0 2em;
}
@media (max-width: 1025px) {
    section.contact-block{
        border: #f2f2f2 solid 6px;
        padding: 24px 4%;
    }
    section.contact-block dl{
        flex-direction: column;
        margin: 0 0 26px;
    }
    section.contact-block dl dt{
        width: 100%;
        margin-bottom: 0.6em;
    }
    section.contact-block dl dt span{
        display: inline-block;
        padding: 0.3em 0.6em;
    }
    section.contact-block dl dd{
        width: 100%;
    }
    section.contact-block dl dd input{
        padding: 0.4em;
    }
    .form-w3{width: 24%;}
    div.contact-btn{
        flex-direction: column;
        margin-bottom: 20px;
    }
    .form-btn{
        width: 100%;
        margin-bottom: 10px;
    }

    div.contact-thanks h3{
        font-size: 20px;
    }
}

/* Privacy Policy
----------------------------------*/
section.Policy-block{
    font-size: 14px;
    text-align: justify;
    margin-bottom: 60px;
}
section.Policy-block p{
    font-size: 16px;
}
section.Policy-block dl{
    margin-top: 2em;
}
section.Policy-block dl dt{
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 0.4em;
}
section.Policy-block dl dd{
    padding: 0 0 0 1em;
    line-height: 2em;
}
