@charset "UTF-8";

/*========================================================*/
/* 共通レイアウト
/*========================================================*/
* {
    color: #111;
    font-size: 13px;
    line-height: 1.4;
}
body {
    width: 100%;
    padding-top: 65px;
    background: url(img/background.png);
}
a {
    transition-property: all;
    transition: 0.3s linear;
}
@media (min-width:768px) {
    * { font-size: 15px; }
    body {
        padding-top: 120px;
    }
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

/* グローバルナビゲーション
/*--------------------------------------------------------*/
.fixed_top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}
.navbar-collapse.in {
     overflow-y: visible;
}
.navbar {
    margin-bottom: 0;
    background: url(img/background.png);;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
}
.navbar > .container-fulid {
    padding: 0 10px;
}
.navbar-toggle {
    margin: 8px 0;
}
.navbar-brand {
    display: inline-block;
    height: 58px;
    margin: 2px 1em 2px 0;
    padding: 0;
}
.navbar-brand > img {
    height: 100%;
}
.navbar-brand + div {
    width: 20em;
    padding: 1em 0 0;
    color: #7fcee0;
    white-space: normal;
}
.navbar-collapse {
    padding: 0;
}
.nav > li.disabled > a {
    color: #ccc;
}
.navbar-nav > li > a {
    padding: 8px 0 8px 15px;
    color: #666;
    font-size: 120%;
    line-height: 20px;
}
#navbar img {
    width: 25px;
    margin-right: 10px;
    position: relative;
    top: -2px;
}
.navbar-nav > li.active > a, .navbar-nav > li > a:hover, .navbar-nav > li > a:focus {
    background-color: transparent;
    color: #3ab6cf;
}

@media (min-width: 768px) and (max-width: 1120px) {
    .navbar-nav > li > a {
        font-size: 97%;
    }
}
@media (max-width:767px) {
    #home_nav {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 1030;
    }
    .navbar-nav > li {
        border-top: 1px solid #eee;
    }
}
@media (min-width:768px) {
    #navbar li {
        text-align: center;
    }
    .navbar > .container-fulid {
        padding: 0 10px;
    }
    .navbar-brand {
        height: 120px;
        padding: 5px 0;
    }
    .navbar-right {
        margin-right: 0;
    }
    .navbar-nav > li > a {
        margin: 23px auto 20px auto;
        padding: 10px 20px;
        color: #666;
    }
    #navbar img {
        width: 30px;
        display: block;
        margin: 8px auto;
    }
}
@media (min-width: 1200px) {
    .navbar > .container-fulid {
        width: 1170px;
        margin: 0 auto;
    }
}
@media(min-width:768px) and (max-width:839px) {
    .navbar-nav > li > a {
        padding: 10px 8px;
        color: #666;
    }
}
/* フッター
/*--------------------------------------------------------*/
.footer_main {
    padding-top: 20px;
    background: #f2f2f2;
}
.footer_main .navi {
    padding-bottom: 10px;
    border-bottom: 1px solid #7fcee0;
}
.footer_main .navi ul li {
    display: inline-block;
    width: 46%;
}
.footer_main .navi ul li a {
    display: inline-block;
    color: #999;
    line-height: 2;
    white-space: nowrap;
}
.footer_main .navi ul li a:hover, .footer_main .navi ul li a:focus {
    color: #3ab6cf;
}

.footer_main .discription {
    margin: 20px auto;;
}
.footer_main .discription p {
    color: #999;
    font-size: 85%;
    line-height: 1.2;
}
.footer_main .discription .copyright {
    margin-top: 20px;
    text-align: center;
}

.footer_sub {
    padding: 10px 0;
    text-align: center;
}
.footer_sub > .container {
    padding-right: 0;
    padding-left: 0;
}
.footer_sub span {
    display: block;
    color: #888;
    font-size: 80%;
}

@media (min-width:768px) {
    .footer_main > .container {
        padding-right: 10%;
    }
    .footer_main .navi ul li {
        display: inline-block;
        width: auto;
    }
    .footer_main .navi ul li a {
        padding: 0 2em;
        font-size: 80%;
    }
    .footer_main .navi ul li a:first-child {
        padding-left: 0;
    }
    .footer_main .discription .copyright {
        margin-top: 0;
        text-align: right;
    }
    .footer_sub {
        text-align: right;
    }
    .footer_sub > .container {
        padding-right: 15px;
        padding-left: 16px;
    }
    .footer_sub span {
        display: inline;
    }
    .footer_sub span:not(:last-child):after {
        content: '/';
        display: inline-block;
        width: 1em;
    }
}

/* ページトップ, SNS
/*--------------------------------------------------------*/
#ig, #fb, #ln, #pagetop {
    position: fixed;
    right: 0;
    z-index: 1020;
}
#ig { top: 65px; }
#fb { top: 120px; }
#ln { top: 175px; }
#pagetop { right: 2%; bottom: 1%; }

#ig > a { background-image: url(img/ig.png); }
#fb > a { background-image: url(img/fb.png); }
#ln > a { background-image: url(img/ln.png); }
#pagetop > a { background-image: url(img/pagetop.png); }
#ig > a, #fb > a, #ln > a, #pagetop > a {
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
}
#ig > a:hover, #fb > a:hover, #ln > a:hover, #pagetop > a:hover {
    opacity: 0.8;
}
#ig > a, #fb > a, #ln > a {
    width: 50px;
    height: 50px;
}
#pagetop > a {
    width: 90px;
    height: 90px;
    border-radius: 50%;
}
@media (min-width:768px) {
    #pagetop > a {
        width: 100px;
        height: 100px;
    }
}
/* パンくずリスト
/*--------------------------------------------------------*/
#breadcrumbs {
    margin-bottom: 20px;
    background: #fff;
    border-bottom: 1px solid #ccc;
}
#breadcrumbs.nobtm{
    margin-bottom: 0px;
}
.breadcrumb {
    background-color: #fff;
    margin: 0;
    padding: 8px 0;
}
.breadcrumb > li a {
    color: #777;
    text-decoration: underline;
}
.breadcrumb > li a:hover {
    color: #3ab6cf;
}
.breadcrumb > li + li:before {
    padding-right: 8px;
    content: '\003e';
}

@media (min-width:768px) {
    #breadcrumbs {
        margin-bottom: 40px;
    }
    #breadcrumbs.nobtm{
        margin-bottom: 0px;
    }
}

/* テキスト装飾
/*--------------------------------------------------------*/
/* ページタイトル */
#title {
    padding: 15px 0 25px;
    background-image: url(img/title_img01.png);
    background-size: cover;
    text-shadow: 1px 1px 1px #000;
    text-align: center;
}
#title2 {
    padding: 15px 0 25px;
    background-image: url(img/title_img02.png);
    background-size: cover;
    text-shadow: 1px 1px 1px #000;
    text-align: center;
}
#title div ,#title2 div{
    color: #777;
    text-shadow: 2px 2px 2px #fff;
    font-size: 200%;
    line-height: 1.6;
}
#title h1 ,#title2 h1{
    color:#fff;
    font-size: 110%;
}
.title {
    margin-bottom: 15px;
    padding-bottom: 2px;
    border-bottom: 1px solid #7fcee0;
    color: #666;
    font-size: 150%;
    text-align: left;
}
.sec_title {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #7fcee0;
    color: #666;
    font-size: 140%;
}
.contact .sec_title {
    margin-bottom: 7px;
    padding-bottom: 5px;
}
h3.sec_title {
    margin-bottom: 10px;
    padding-bottom: 5px;
    font-size: 120%;
}
.contact h3.sec_title {
    margin-top: 20px;
}
.sec_title h2 {
    font-size: 105%;
}
.sec_title.en {
    margin-bottom: 15px;
    padding-bottom: 5px;
    font-size: 170%;
}
.sec_title.ja {
    margin-bottom: 10px;
    padding-bottom: 5px;
}
.tel a{
    font-size: 20px;
    display: block;
    text-align: center;
}
@media (min-width:768px) {
    #title,#title2 { padding: 45px 0 40px; }
    #title div ,#title2 div{ font-size: 250%; }
    #title h1 ,#title2 h1{ font-size: 120%; }
    .title {
        padding-bottom: 5px;
        font-size: 200%;
    }
    .sec_title {
        margin-bottom: 20px;
        padding-bottom: 15px;
        font-size: 150%;
    }
}

/* スタイリスト */
.sec_title > span{
    vertical-align: top;
}
div.boximg_right{
    float:right;
}
.box_img_bottom{
    clear: both;
}
.list_box dt{
    margin-top: 15px;
}
.boxname_left span {
    margin-left: 10px;
    color: #888;
    font-size: 80%;
}

/* プライバシーポリシー */
.pp > p, .pp ol li {
    font-size: 85%;
}
.pp ol li p, .pp ol li a {
    font-size: 100%;
}
.pp ol {
    margin-left: 1.4em;
}
.pp li {
    list-style-type: decimal;
    margin-bottom: 10px;
    font-family: sans-serif;
}
.pp li a {
    text-decoration-line: underline;
    color:#111;
}
.pp_box, .contact_box{
    padding: 15px;
    height: 100%;
    background-image: url('img/A_01.png');
    background-size: cover;
    background-repeat: no-repeat;
}
@media (max-width:768px) {
    .box_contents div.comment{
        width: auto;
        float: none;
    }
    div.boxname_left{
        float:none;
        width: 100%;
    }
    div.boximg_right {
        margin: 0 0 5px 10px;
    }
}
/* テキスト装飾
/*--------------------------------------------------------*/
p.subtext,ul.asterisk,ul.asterisk li{
    color: #666;
    font-size: 90%;
}

.error{
    margin-top: 2px;
    color: #e73131;
    font-size: 90%;
}
.asterisk {
    margin-top: 5px;
    margin-left: .7em;
    margin-bottom: 15px;
}
.asterisk li {
    text-shadow: 1px 1px 2px #fff;
}
.asterisk li:not(:last-child) {
    margin-bottom: 4px;
}
.asterisk li:before {
    margin-left: -1em;
    content: '\00203b';
}

/*--------------------------------------------------------*/
/* ボックス装飾
/*--------------------------------------------------------*/
.box_img_right, .box_img_left, .box_img_bottom, .box_contents{
    margin-bottom: 60px;
}
.box_img_right .img > img, .box_img_left .img > img, .box_img_bottom .img > img{
    width: 100%;
}
.box_img_right .content > p, .box_img_left .content > p, .box_img_bottom .content > p{
    margin: 1em auto;
    color: #333;
}
div.box_back_img1{
    height: 100%;
    padding: 20px 0;
    background-image: url('img/back01.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 480px;
}
.box_img_right .content > p:first-child, .box_img_left .content > p:first-child{
    margin-top: 0;
}

#access > div, #pp >div, .contact > div {
    background: rgba(255, 255, 255, 0.85);
    padding:20px;
}

.boxtext_full p, .list_box dd, .list_box li, .pp > p{
    margin-bottom: 15px;
}
.boxtext_full p:last-child, .list_box li:last-child, .pp li:last-child{
    margin-bottom: 0;
}
.pp > p:nth-last-child(2){
    margin-bottom: 35px;
}
@media (min-width:768px) {
    .box_img_right h2, .box_img_right .content {
        float: left;
        width: 56%;
    }
    .box_img_left h2, .box_img_left .content {
        float: right;
        width: 56%;
    }
    .box_img_right .img {
        float: right;
        width: 40%;
    }
    .box_img_left .img {
        float: left;
        width: 40%;
    }
    div.box_back_img1 {
        padding: 40px 0;
        min-height: 70vh;
    }
}
@media (max-width:767px) {
    .box_img_right, .box_img_left, .box_img_bottom, .box_contents, .list_box dd:nth-last-child(1){
        margin-bottom: 30px;
    }
    .box_img_right .content > p:first-child, .box_img_left .content > p:first-child{
        margin-top: 13px;
    }
    .box_img_right .img, .box_img_left .img {
        position: relative;
        height: 200px;
        overflow: hidden;
    }
    .box_img_right .img > img, .box_img_left .img > img {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        height: auto;
    }
    div.container-fluid.box_back_img1{
        padding:20px;
    }
    .pdboth{
        padding-right: 0;
        padding-left: 0;
    }
}
@media (max-width:380px) {
    .box_img_right .img.wider > img, .box_img_left .img.wider > img {
        height: 100%;
        width: auto;
    }
}

/*--------------------------------------------------------*/
/* その他
/*--------------------------------------------------------*/
#overlay {
    display: none;
    width: 100%;
    height: 100%;
    text-align: center;
    position: fixed;
    top: 0;
    z-index: 1100;
    background: rgba(0, 0, 0, 0.7);
}
#overlay i {
    position: relative;
    top: 48%;
    color: #fff;
    font-size: 3em;
}
.construction {
    padding: 40px;
    background: rgba(255, 255, 255, 0.85);
    color: #666;
    font-size: 150%;
}

/*--------------------------------------------------------*/
/* アクセス
/*--------------------------------------------------------*/
.access_list dt, .access_list dd {
    text-shadow: 1px 1px 2px #fff;
}
.access_list dt {
    color: #3ab6cf;
    font-size: 120%;
    font-weight: 600;
}
.access_list dd:not(:last-child) {
    margin-bottom: 20px;
}
.access_list a {
    color: #111;
}

/*--------------------------------------------------------*/
/* よくある質問
/*--------------------------------------------------------*/
.qa, .recruit, .privacy{
    background: rgba(255, 255, 255, 0.85);
    padding: 20px !important;
    width: 100%;
}

.qa_contents {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }

.accordion-container {
    position: relative;
    width: 100%;
    outline: 0;
    cursor: pointer
  }

.accordion-container .accordion-title {
    display: block;
    position: relative;
    margin: 0;
    padding: 12px 35px 12px 15px;
    font-size: 17px;
    font-weight: normal;
    cursor: pointer;
    border-left: solid 1px #ccc;
    border-top: solid 1px #ccc;
    border-right: solid 1px #ccc;
    color: #666;
}
.accordion-container .accordion-title img {
    width: 23px;
    position: relative;
    top: -1px;
    margin-right: 8px;
}
.accordion-container .accordion-title:hover,
.accordion-container .accordion-title:active,
.accordion-container .content-entry.open .accordion-title {
    background-color: #7fcee0;
    color: white;
}
.accordion-container .accordion-title:hover i:before,
.accordion-container .accordion-title:hover i:active,
.accordion-container .content-entry.open i {
    color: white;
}
.accordion-title{
    position: relative;
}
.accordion-title:last-of-type{
    border-bottom: solid 1px #ccc;
}
.accordion-title.open:last-of-type{
    border-bottom: none;
}
.accordion-title:after {
    content: "";
    position: absolute;
    right: 25px;
    top: 38%;
    transition: all 0.2s ease-in-out;
    display: block;
    width: 8px;
    height: 8px;
    border-top: solid 2px #666;
    border-right: solid 2px #666;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

.accordion-title.open:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 45%;
 }

.accordion-content {
    display: none;
    padding: 12px 15px;
    background-color: #f2f2f2;
    border-top: solid 1px #ccc;
    border-left: solid 1px #ccc;
    border-right: solid 1px #ccc;
}
.accordion-content img {
    width: 20px;
    position: relative;
    top: -1px;
    margin-right: 8px;
}

.accordion-content:last-of-type {
    border-bottom: solid 1px #ccc;
}
/* CSS for CodePen */
.accordion-container {
    margin: 1.875em auto;
}
@media (max-width:767px) {
    .accordion-container .accordion-title {
        font-size: 13px;
    }
}

.recruit_box div {
    text-align: center;
}
.recruit_box button{
    background-color: #ff8080;
    color: #fff;
    padding: 10px 30px;
    margin-top: 30px;
}
