@charset "UTF-8"; 
/* ==========================================================================
   reset
========================================================================== */
/* 
  http://meyerweb.com/eric/tools/css/reset/
  v2.0 | 20110126
  License: none (public domain)
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul, li {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* ==========================================================================
   base
========================================================================== */
*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: "Helvetica", -apple-system, BlinkMacSystemFont, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, Meiryo, sans-serif;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

p {
    line-height: 215%;
    letter-spacing: .1em;
    font-weight: 400;
    font-feature-settings: "palt";
    text-align: justify;
    text-justify: inter-ideograph;
    -webkit-font-smoothing: antialiased;
}

li, td {
    line-height: 215%;
    letter-spacing: .1em;
    font-weight: 400;
    text-justify: inter-ideograph;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 185%;
    letter-spacing: .075em;
    font-weight: 600;
}

a:link {
    color: #000000;
    letter-spacing: .1em;
    display: block;
    text-decoration: none;
    -webkit-transition: all .5s;
    transition: all .5s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

a:visited {
    color: #000000;
}

a:hover {
    cursor: pointer;
    opacity: .75;
    -webkit-transition: all .5s;
    transition: all .5s;
}

a:active {
    color: #000000;
}

/* ==========================================================================
   animation
========================================================================== */
body {
    animation: fadeIn 2.5s ease 0s 1 normal;
    -webkit-animation: fadeIn 2.5s ease 0s 1 normal;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.fade {
    transform: translateY(20px);
    transition: all .75s ease .25s;
    opacity: 0;
}

.fade.active {
    transform: translateY(0);
    opacity: 1;
}

/* ==========================================================================
   common
========================================================================== */
html {
    font-size: 12px;
}

body .section {
    padding-top: 80px;
}

body .section_1 {
    padding-top: 56px;
}

body .container {
    padding: 0 20px;
}

body .sec_title {
    font-size: 18px;
    color: #1C93A8;
    margin-bottom: 30px;
}

body .link_bt {
    width: 250px;
    height: 40px;
    margin-top: 40px;
}

body .link_bt a {
    text-align: center;
    border: solid #000 1px;
    border-radius: 20px;
    line-height: 40px;
    background-color: #fff;
}

body .subpage_header {
    background-color: #f5f5f5;
    padding: 40px 0 30px;
}

body .subpage_header h1 {
    font-size: 21px;
    text-align: center;
    line-height: 125%;
    color: #1C93A8;
}

body .subpage_header p {
    font-size: 10px;
    text-align: center;
    color: #1C93A8;
}

body .pc_img {
    display: none;
}

@media screen and (max-width: 679px) {
    body .mb_none {
        display: none;
    }
}

@media screen and (min-width: 680px) {
    body .container {
        padding: 0 40px;
    }

    body .sec_title {
        text-align: center;
    }

    body .link_bt {
        margin-right: auto;
        margin-left: auto;
    }
}

@media screen and (min-width: 1024px) {
    body .container {
        width: 780px;
        margin: 0 auto;
        padding: 0;
    }

    body .mb_img {
        display: none;
    }

    body .pc_img {
        display: block;
    }
}

@media screen and (min-width: 1560px) {
    html {
        font-size: 14px;
    }

    body .section {
        padding-top: 160px;
    }

    body .section_1 {
        padding-top: 80px;
    }

    body .container {
        width: 1080px;
    }

    body .sec_title {
        font-size: 25px;
        margin-bottom: 80px;
    }

    body .link_bt {
        width: 300px;
        height: 46px;
        margin-top: 80px;
    }

    body .link_bt a {
        line-height: 46px;
        border-radius: 23px;
    }

    body .link_bt a:hover {
        background-color: #000;
        color: #fff;
    }

    body .subpage_header {
        padding: 70px 0 60px;
    }

    body .subpage_header h1 {
        font-size: 24px;
    }

    body .subpage_header p {
        font-size: 12px;
    }
}

/* ==========================================================================
   header
========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 56px;
    display: flex;
    align-items: center;
    background-color: #fff;
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.05);
    z-index: 100;
}

.header .logo {
    flex-grow: 2;
    padding-left: 15px;
}

.header .logo a {
    display: inline-block;
}

.header .logo img {
    width: 60px;
}

.header .bt {
    width: 56px;
    height: 56px;
}

.header .bt a {
    position: relative;
    width: 100%;
    height: 100%;
}

.header .bt a img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 30px;
}

.header .bt.trigger {
    position: relative;
    background-color: #D1D1D1;
}

.header .bt.trigger span {
    position: absolute;
    left: 18px;
    width: 20px;
    height: 2px;
    background-color: #fff;
    transition: all .4s;
}

.header .bt.trigger span:nth-child(1) {
    top: 21px;
}

.header .bt.trigger span:nth-child(2) {
    top: 27px;
}

.header .bt.trigger span:nth-child(3) {
    bottom: 21px;
}

.header .bt.trigger.active span:nth-child(1) {
    top: 27px;
}

.header .bt.trigger.active span:nth-child(2) {
    opacity: 0;
}

.header .bt.trigger.active span:nth-child(3) {
    bottom: 27px;
}

.header .bt.main {
    background-color: #1C93A8;
}

.header .bt.point {
    background-color: #B7D556;
}

.global_menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #D1D1D1;
    z-index: 50;
    padding: 100px 40px 80px;
    overflow-y: scroll;
    opacity: 0;
    visibility: hidden;
    transition: all .4s;
}

.global_menu.open {
    opacity: 1;
    visibility: inherit;
}

.global_menu nav ul li {
    margin-top: 30px;
}

.global_menu nav ul li a {
    font-size: 16px;
    color: #fff;
    letter-spacing: 3px;
}

.global_menu .sns {
    margin-top: 60px;
}

.global_menu .sns ul {
    display: flex;
}

.global_menu .sns ul li {
    margin-right: 20px;
}

.global_menu .sns ul li a img {
    width: 20px;
}

@media screen and (min-width: 1024px) {
    .header .bt.trigger {
        display: none;
    }

    .global_menu {
        left: auto;
        right: 132px;
        opacity: 1;
        visibility: inherit;
        background-color: inherit;
        width: auto;
        height: auto;
        padding: 0;
        overflow-y: inherit;
        z-index: 100;
        display: flex;
    }

    .global_menu nav {
        margin-top: 15px;
    }

    .global_menu nav ul {
        display: flex;
    }

    .global_menu nav ul li {
        margin-top: 0;
    }

    .global_menu nav ul li a {
        color: #000;
        font-size: 12px;
        padding: 0 10px;
        line-height: 30px;
        letter-spacing: .1em;
    }

    .global_menu .sns {
        margin-top: 19px;
        margin-left: 20px;
    }

    .global_menu .sns ul li {
        margin: 0 8px;
    }

    .global_menu .sns ul li a img {
        width: 18px;
    }
}

@media screen and (min-width: 1560px) {
    .header {
        height: 80px;
    }

    .header .logo {
        padding-left: 40px;
    }

    .header .logo img {
        width: 85px;
    }

    .header .bt {
        width: 80px;
        height: 80px;
    }

    .header .bt a img {
        width: 40px;
    }

    .global_menu {
        right: 200px;
    }

    .global_menu nav {
        margin-top: 28px;
    }

    .global_menu nav ul li a {
        font-size: 13px;
        padding: 0 15px;
    }

    .global_menu .sns {
        margin-top: 32px;
    }

    .global_menu .sns ul li {
        margin: 0 12px;
    }

    .global_menu .sns ul li a img {
        width: 18px;
    }
}

/* ==========================================================================
   footer
========================================================================== */
.footer {
    margin-top: 100px;
}

.footer .wrap.first {
    background-color: #666666;
    padding: 60px 0 50px;
}

.footer .wrap.first .container .info .logo img {
    width: 100px;
}

.footer .wrap.first .container .info .conte {
    margin-top: 30px;
}

.footer .wrap.first .container .info .conte p {
    color: #fff;
}

.footer .wrap.first .container .info .conte .min {
    font-size: 10px;
}

.footer .wrap.first .container .info .conte .tel {
    font-weight: 700;
    margin-bottom: 5px;
}

.footer .wrap.first .container .info .conte .tel span {
    font-size: 18px;
    padding-left: 5px;
}

.footer .wrap.first .container .info .conte ul {
    display: flex;
}

.footer .wrap.first .container .info .conte ul li {
    line-height: 175%;
    color: #fff;
}

.footer .wrap.first .container .info .conte ul li:nth-child(1) {
    position: relative;
    width: 75px;
}

.footer .wrap.first .container .info .conte ul li::after {
    content: '／';
    position: absolute;
    top: 0;
    right: 5px;
}

.footer .wrap.first .container .info .conte ul li:nth-child(2) {
    flex: 1;
}

.footer .wrap.first .container .cal {
    margin-top: 40px;
}

.footer .wrap.first .container .cal .title {
    font-weight: 700;
    color: #fff;
}

.footer .wrap.first .container .cal p {
    color: #fff;
}

.footer .wrap.second {
    background-color: #4d4d4d;
    padding: 20px 0;
}

.footer .wrap.second .container {
    display: flex;
    align-items: center;
}

.footer .wrap.second .container .copy {
    flex: 1;
}

.footer .wrap.second .container .copy p {
    font-size: 10px;
    color: #fff;
}

.footer .wrap.second .container .sns ul {
    display: flex;
    align-items: center;
}

.footer .wrap.second .container .sns ul li {
    margin-left: 15px;
}

.footer .wrap.second .container .sns ul li a img {
    width: 16px;
}

.calendar {
    margin-top: 10px;
    max-width: 400px;
}

.calendar .cal_wrapper {
    position: relative;
}

.calendar .cal_wrapper .cal_ui {
    position: absolute;
    top: 3px;
    right: 0;
    display: flex;
}

.calendar .cal_wrapper .cal_ui li {
    width: 25px;
    height: 20px;
}

.calendar .cal_wrapper .cal_ui .cal_prev {
    position: relative;
}

.calendar .cal_wrapper .cal_ui .cal_prev::before {
    position: absolute;
    content: '<';
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    color: #fff;
}

.calendar .cal_wrapper .cal_ui .cal_to {
    position: relative;
}

.calendar .cal_wrapper .cal_ui .cal_to::before {
    position: absolute;
    content: '●';
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    color: #fff;
}

.calendar .cal_wrapper .cal_ui .cal_next {
    position: relative;
}

.calendar .cal_wrapper .cal_ui .cal_next::before {
    position: absolute;
    content: '>';
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    color: #fff;
}

.calendar .cal_wrapper #cal_0 p {
    font-size: 12px;
}

.calendar .cal_wrapper #cal_0 .cal_main {
    display: flex;
    flex-wrap: wrap;
    margin: 5px 0 10px;
}

.calendar .cal_wrapper #cal_0 .cal_main li {
    width: 14.2857%;
    padding: 1px 0;
    color: #fff;
    text-align: center;
    background-color: #777;
    border: solid #666666 1px;
}

.calendar .cal_wrapper #cal_0 .cal_main .sun, .calendar .cal_wrapper #cal_0 .cal_main .holiday {
    background-color: #fff;
    color: #666666;
}

@media screen and (min-width: 680px) {
    .footer .wrap.first .container {
        display: flex;
    }

    .footer .wrap.first .container .cal {
        margin-top: 0;
        padding-left: 30px;
    }
}

@media screen and (min-width: 1560px) {
    .footer {
        margin-top: 160px;
    }

    .footer .wrap.first {
        padding: 120px 0 100px;
    }

    .footer .wrap.first .container .info {
        flex: 1;
    }

    .footer .wrap.first .container .info .logo img {
        width: 100px;
    }

    .footer .wrap.first .container .info .conte .min {
        font-size: 12px;
    }

    .footer .wrap.first .container .info .conte .tel {
        font-size: 16px;
    }

    .footer .wrap.first .container .info .conte .tel span {
        font-size: 21px;
        padding-left: 8px;
    }

    .footer .wrap.first .container .info .conte ul li:nth-child(1) {
        width: 100px;
    }

    .footer .wrap.first .container .info .conte ul li:nth-child(1)::after {
        right: 15px;
    }

    .footer .wrap.second {
        padding: 30px 0;
    }

    .footer .wrap.second .container .copy p {
        font-size: 12px;
    }

    .footer .wrap.second .container .sns ul li {
        margin-left: 25px;
    }

    .footer .wrap.second .container .sns ul li a img {
        width: 20px;
    }
}

/* ==========================================================================
   home
========================================================================== */
.home .section_1 .swiper-container .swiper-wrapper .swiper-slide {
    width: 100%;
}

.home .section_1 .swiper-container .swiper-wrapper .swiper-slide span {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    width: 100%;
    padding-top: 400px;
}

.home .section_1 .swiper-container .swiper-pagination .swiper-pagination-bullet {
    width: 50px;
    height: 2px;
    background-color: #fff;
    border-radius: 0;
    opacity: 1;
}

.home .section_1 .swiper-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #1C93A8;
}

.home .section_2 .container h1 {
    font-size: 18px;
    font-weight: 500;
}

.home .section_2 .container p {
    margin-top: 30px;
}

.home .section_2 .gallery {
    display: flex;
    flex-wrap: wrap;
    margin-top: 60px;
}

.home .section_2 .gallery li {
    width: 50%;
}

.home .section_3 .container .wrap .col__topics {
    border-top: solid #D8D8D8 1px;
    padding: 23px 0 20px;
}

.home .section_3 .container .wrap .col__topics:last-child {
    border-bottom: solid #D8D8D8 1px;
}

.home .section_3 .container .wrap .col__topics .info {
    display: flex;
    align-items: center;
}

.home .section_3 .container .wrap .col__topics .info .date {
    font-size: 12px;
    letter-spacing: .1rem;
    margin-right: 10px;
}

.home .section_3 .container .wrap .col__topics .info .cat {
    font-size: 10px;
    background-color: #666666;
    color: #fff;
    display: inline-block;
    line-height: 16px;
    border-radius: 8px;
    letter-spacing: .1rem;
    padding: 0 15px;
}

.home .section_3 .container .wrap .col__topics h3 {
    font-weight: 400;
    margin-top: 10px;
}

.home .section_4 {
    background-color: #f5f5f5;
    margin-top: 80px;
    padding-bottom: 80px;
}

.home .section_4 .container .wrap .col__coupon {
    background-color: #fff;
    padding: 50px 15px 25px;
    position: relative;
    margin-top: 20px;
}

.home .section_4 .container .wrap .col__coupon:first-child {
    margin-top: 0;
}

.home .section_4 .container .wrap .col__coupon .select {
    position: absolute;
    top: 0px;
    left: 0;
}

.home .section_4 .container .wrap .col__coupon .select .circle {
    width: 150px;
    background-color: #1C93A8;
    text-align: center;
    color: #fff;
    line-height: 30px;
    letter-spacing: .1rem;
}

.home .section_4 .container .wrap .col__coupon .select .circle.old {
    background-color: #B7D556;
}

.home .section_4 .container .wrap .col__coupon .menu h3 {
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 5px;
}

.home .section_4 .container .wrap .col__coupon .menu .price {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    border-bottom: solid #666666 1px;
    margin-bottom: 15px;
    padding-bottom: 10px;
}

.home .section_4 .container .wrap .col__coupon .menu .price li {
    letter-spacing: .05em;
}

.home .section_4 .container .wrap .col__coupon .menu .price li.regular {
    font-size: 11px;
    margin-right: 5px;
}

.home .section_4 .container .wrap .col__coupon .menu .price li.campaign {
    color: red;
    font-weight: 700;
}

.home .section_4 .container .wrap .col__coupon .menu .price li.campaign span {
    font-size: 18px;
}

.home .section_4 .container .wrap .col__coupon .menu .condition, .home .section_4 .container .wrap .col__coupon .menu .limit {
    display: flex;
    align-items: flex-start;
}

.home .section_4 .container .wrap .col__coupon .menu .condition li, .home .section_4 .container .wrap .col__coupon .menu .limit li {
    font-size: 12px;
    line-height: 135%;
}

.home .section_4 .container .wrap .col__coupon .menu .condition li:nth-child(1), .home .section_4 .container .wrap .col__coupon .menu .limit li:nth-child(1) {
    width: 75px;
    position: relative;
}

.home .section_4 .container .wrap .col__coupon .menu .condition li:nth-child(1)::after, .home .section_4 .container .wrap .col__coupon .menu .limit li:nth-child(1)::after {
    position: absolute;
    content: '|';
    top: 0;
    right: 10px;
}

.home .section_4 .container .wrap .col__coupon .menu .condition li:nth-child(2), .home .section_4 .container .wrap .col__coupon .menu .limit li:nth-child(2) {
    flex: 1;
}

.home .section_4 .container .wrap .col__coupon .menu .limit {
    margin-top: 5px;
}

.home .section_4 .container .wrap .col__coupon .reserve {
    margin-top: 20px;
}

.home .section_4 .container .wrap .col__coupon .reserve .bt {
    margin-top: 8px;
}

.home .section_4 .container .wrap .col__coupon .reserve .bt:first-child {
    margin-top: 0;
}

.home .section_4 .container .wrap .col__coupon .reserve .bt a {
    position: relative;
    width: 225px;
    border: solid #666666 1px;
    border-radius: 5px;
    line-height: 30px;
    padding: 0 15px;
}

.home .section_4 .container .wrap .col__coupon .reserve .bt a::after {
    position: absolute;
    content: '>';
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    font-size: 10px;
}

.home .section_5 .fig span {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    padding-top: 62.5%;
}

.home .section_5 .conte {
    margin-top: 45px;
    padding: 0 20px;
}

@media screen and (min-width: 680px) {
    .home .section_2 .container h1, .home .section_2 .container p {
        text-align: center;
    }

    .home .section_4 .container .wrap .col__coupon {
        display: flex;
        padding: 50px 25px 25px;
    }

    .home .section_4 .container .wrap .col__coupon .menu {
        flex: 1;
        margin-right: 30px;
    }

    .home .section_4 .container .wrap .col__coupon .reserve {
        margin-top: -15px;
    }

    .home .section_5 .conte {
        padding: 0 40px;
    }

    .home .section_5 .conte p {
        text-align: center;
    }
}

@media screen and (min-width: 1024px) {
    .home .section_1 .swiper-container .swiper-wrapper .swiper-slide span {
        padding-top: 550px;
    }

    .home .section_2 .gallery li {
        width: 25%;
    }

    .home .section_3 .container .wrap .col__topics {
        display: flex;
    }

    .home .section_3 .container .wrap .col__topics .info {
        width: 200px;
    }

    .home .section_3 .container .wrap .col__topics h3 {
        margin-top: 0;
        flex: 1;
    }

    .home .section_4 .container .wrap {
        display: inherit;
    }

    .home .section_5 {
        display: flex;
        align-items: center;
        margin-bottom: -100px;
    }

    .home .section_5 .fig, .home .section_5 .conte {
        width: 50%;
    }

    .home .section_5 .fig span {
        padding-top: 71.8%;
    }

    .home .section_5 .conte {
        margin-top: 0;
    }

    .home .section_5 .conte .sec_title, .home .section_5 .conte p {
        text-align: left;
    }

    .home .section_5 .conte .link_bt {
        margin-left: 0;
    }

    .home .footer {
        margin-top: 0;
    }
}

@media screen and (min-width: 1560px) {
    .home .section_1 {
        background-color: #f5f5f5;
    }

    .home .section_1 .swiper-container {
        width: 80%;
        margin: 0 auto;
    }

    .home .section_1 .swiper-container .swiper-wrapper .swiper-slide span {
        padding-top: 700px;
    }

    .home .section_1 .swiper-container .swiper-pagination {
        margin-bottom: 10px;
    }

    .home .section_1 .swiper-container .swiper-pagination .swiper-pagination-bullet {
        width: 100px;
    }

    .home .section_2 .container h1 {
        font-size: 21px;
    }

    .home .section_2 .container p {
        margin-top: 40px;
    }

    .home .section_2 .gallery {
        margin-top: 120px;
    }

    .home .section_3 .container .wrap .col__topics {
        padding: 35px 0 32px;
    }

    .home .section_3 .container .wrap .col__topics .info {
        width: 250px;
    }

    .home .section_3 .container .wrap .col__topics .info .date {
        font-size: 14px;
    }

    .home .section_4 {
        margin-top: 160px;
        padding-bottom: 160px;
    }

    .home .section_4 .container .wrap .col__coupon {
        padding: 75px 40px 40px;
    }

    .home .section_4 .container .wrap .col__coupon .select .circle {
        width: 200px;
        line-height: 40px;
    }

    .home .section_4 .container .wrap .col__coupon .menu {
        margin-right: 80px;
    }

    .home .section_4 .container .wrap .col__coupon .menu h3 {
        font-size: 18px;
    }

    .home .section_4 .container .wrap .col__coupon .menu .price li.regular {
        font-size: 14px;
    }

    .home .section_4 .container .wrap .col__coupon .menu .price li.campaign {
        font-size: 14px;
    }

    .home .section_4 .container .wrap .col__coupon .menu .price li.campaign span {
        font-size: 21px;
    }

    .home .section_4 .container .wrap .col__coupon .menu .condition li, .home .section_4 .container .wrap .col__coupon .menu .limit li {
        font-size: 14px;
    }

    .home .section_4 .container .wrap .col__coupon .menu .condition li:nth-child(1), .home .section_4 .container .wrap .col__coupon .menu .limit li:nth-child(1) {
        width: 85px;
    }

    .home .section_4 .container .wrap .col__coupon .reserve {
        margin-top: -35px;
    }

    .home .section_4 .container .wrap .col__coupon .reserve .bt {
        margin-top: 10px;
    }

    .home .section_4 .container .wrap .col__coupon .reserve .bt a {
        width: 250px;
        line-height: 40px;
        padding: 0 20px;
    }

    .home .section_5 {
        margin-bottom: -160px;
    }

    .home .section_5 .conte {
        padding: 0 100px 0 80px;
    }

    .home .section_5 .conte p {
        margin-top: -20px;
    }
}

/* ==========================================================================
   topics
========================================================================== */
.topics .section_2 .container .wrap .col__topics {
    margin-top: 60px;
}

.topics .section_2 .container .wrap .col__topics .hidden {
    padding-top: 76px;
    margin-top: -76px;
}

.topics .section_2 .container .wrap .col__topics:first-child {
    margin-top: 0;
}

.topics .section_2 .container .wrap .col__topics .title {
    border-top: solid #666666 1px;
    border-bottom: solid #D8D8D8 1px;
    padding: 20px 0 15px;
}

.topics .section_2 .container .wrap .col__topics .title .info {
    display: flex;
    align-items: center;
}

.topics .section_2 .container .wrap .col__topics .title .info .date {
    font-size: 12px;
    letter-spacing: .1rem;
    margin-right: 20px;
}

.topics .section_2 .container .wrap .col__topics .title .info .cat {
    font-size: 10px;
    background-color: #666666;
    color: #fff;
    display: inline-block;
    line-height: 16px;
    border-radius: 8px;
    letter-spacing: .1rem;
    padding: 0 15px;
}

.topics .section_2 .container .wrap .col__topics .title h3 {
    font-size: 16px;
    font-weight: 400;
    margin-top: 10px;
}

.topics .section_2 .container .wrap .col__topics .content {
    margin-top: 30px;
}

.topics .section_2 .container .wrap .col__topics .content img {
    margin-bottom: 30px;
    padding-right: 25vw;
}

.topics .section_2 .container .wrap .col__topics .content .small {
    font-size: 10px;
}

.topics .section_2 .container .wrap .col__topics .content .large {
    font-size: 16px;
}

.topics .section_2 .container .wrap .col__topics .content .bold {
    font-weight: 700;
}

.topics .section_2 .container .wrap .col__topics .content .red {
    color: #FF0004;
}

.topics .section_2 .container .wrap .col__topics .content .blue {
    color: #0B90E9;
}

.topics .section_2 .container .wrap .col__topics .content .green {
    color: #5ED62C;
}

.topics .section_2 .container .wrap .col__topics .content .mb10 {
    margin-bottom: 10px;
}

.topics .section_2 .container .wrap .col__topics .content .mb20 {
    margin-bottom: 20px;
}

.topics .section_2 .container .wrap .col__topics .content .mb30 {
    margin-bottom: 30px;
}

.topics .section_2 .container .wrap .col__topics .content .line {
    text-decoration: underline;
}

@media screen and (min-width: 1024px) {
    .topics .section_2 .container .wrap .col__topics .content .inner {
        display: flex;
        flex-direction: row-reverse;
    }

    .topics .section_2 .container .wrap .col__topics .content .fig {
        width: 30%;
    }

    .topics .section_2 .container .wrap .col__topics .content .fig img {
        margin-bottom: 0;
        padding: 0;
    }

    .topics .section_2 .container .wrap .col__topics .content .txt {
        flex: 1;
        padding-right: 50px;
    }
}

@media screen and (min-width: 1560px) {
    .topics .section_2 .container .wrap .col__topics {
        margin-top: 160px;
    }

    .topics .section_2 .container .wrap .col__topics .hidden {
        padding-top: 100px;
        margin-top: -100px;
    }

    .topics .section_2 .container .wrap .col__topics .title {
        padding: 30px 0 20px;
    }

    .topics .section_2 .container .wrap .col__topics .title .info .date {
        font-size: 14px;
    }

    .topics .section_2 .container .wrap .col__topics .title h3 {
        font-size: 18px;
    }

    .topics .section_2 .container .wrap .col__topics .content {
        margin-top: 50px;
    }

    .topics .section_2 .container .wrap .col__topics .content .inner .txt {
        padding-right: 80px;
    }

    .topics .section_2 .container .wrap .col__topics .content .inner .txt .small {
        font-size: 12px;
    }

    .topics .section_2 .container .wrap .col__topics .content .inner .txt .large {
        font-size: 18px;
    }

    .topics .section_2 .container .wrap .col__topics .content .inner .txt .bold {
        font-weight: 700;
    }

    .topics .section_2 .container .wrap .col__topics .content .inner .txt .red {
        color: #FF0004;
    }

    .topics .section_2 .container .wrap .col__topics .content .inner .txt .blue {
        color: #0B90E9;
    }

    .topics .section_2 .container .wrap .col__topics .content .inner .txt .green {
        color: #5ED62C;
    }

    .topics .section_2 .container .wrap .col__topics .content .inner .txt .mb10 {
        margin-bottom: 15px;
    }

    .topics .section_2 .container .wrap .col__topics .content .inner .txt .mb20 {
        margin-bottom: 25px;
    }

    .topics .section_2 .container .wrap .col__topics .content .inner .txt .mb30 {
        margin-bottom: 35px;
    }

    .topics .section_2 .container .wrap .col__topics .content .inner .txt .line {
        text-decoration: underline;
    }
}

/* ==========================================================================
   salon
========================================================================== */
.salon .section_3 .container .wrap .col {
    border-bottom: solid #D8D8D8 1px;
    padding: 35px 0;
}

.salon .section_3 .container .wrap .col:first-child {
    padding-top: 0;
}

.salon .section_3 .container .wrap .col h2 {
    font-size: 16px;
    color: #1C93A8;
    margin-bottom: 10px;
}

.salon .section_4 .container .inner .fig span {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    padding-top: 71.4%;
}

.salon .section_4 .container .inner .conte {
    margin-top: 50px;
}

.salon .section_4 .container .inner .conte .logo img {
    width: 100px;
}

.salon .section_4 .container .inner .conte .info {
    margin-top: 20px;
}

.salon .section_4 .container .inner .conte .info .min {
    font-size: 10px;
}

.salon .section_4 .container .inner .conte .info .tel {
    font-weight: 700;
    color: #1C93A8;
    margin-bottom: 10px;
}

.salon .section_4 .container .inner .conte .info .tel span {
    font-size: 18px;
    padding-left: 5px;
}

.salon .section_4 .container .inner .conte .info ul {
    display: flex;
}

.salon .section_4 .container .inner .conte .info ul li {
    line-height: 175%;
}

.salon .section_4 .container .inner .conte .info ul li:nth-child(1) {
    position: relative;
    width: 75px;
}

.salon .section_4 .container .inner .conte .info ul li:nth-child(1)::after {
    content: '／';
    position: absolute;
    top: 0;
    right: 5px;
}

.salon .section_4 .container .inner .conte .info ul li:nth-child(2) {
    flex: 1;
}

.salon .section_4 .container .map {
    margin-top: 40px;
}

.salon .section_4 .container .map iframe {
    width: 100%;
    height: 350px;
}

@media screen and (min-width: 680px) {
    .salon .section_2 .container .gallery {
        display: flex;
        flex-wrap: wrap;
    }

    .salon .section_2 .container .gallery li {
        width: 50%;
    }

    .salon .section_4 .container .inner .fig {
        padding-right: 25vw;
    }
}

@media screen and (min-width: 1024px) {
    .salon .section_4 .container .inner {
        display: flex;
        align-items: center;
    }

    .salon .section_4 .container .inner .fig, .salon .section_4 .container .inner .conte {
        width: 50%;
    }

    .salon .section_4 .container .inner .fig {
        padding-right: 0;
    }

    .salon .section_4 .container .inner .conte {
        margin-top: 0;
        padding-left: 40px;
    }

    .salon .section_4 .container .map {
        margin-top: 60px;
    }
}

@media screen and (min-width: 1560px) {
    .salon .section_3 .container .wrap .col {
        padding: 50px 0;
    }

    .salon .section_3 .container .wrap .col h2 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .salon .section_4 .container .inner .conte {
        padding-left: 80px;
    }

    .salon .section_4 .container .inner .conte .info .min {
        font-size: 12px;
    }

    .salon .section_4 .container .inner .conte .info .tel {
        font-size: 16px;
    }

    .salon .section_4 .container .inner .conte .info .tel span {
        font-size: 21px;
        padding-left: 8px;
    }

    .salon .section_4 .container .inner .conte .info ul li:nth-child(1) {
        width: 100px;
    }

    .salon .section_4 .container .inner .conte .info ul li:nth-child(1)::after {
        right: 15px;
    }

    .salon .section_4 .container .map {
        margin-top: 120px;
    }

    .salon .section_4 .container .map iframe {
        height: 500px;
    }
}

/* ==========================================================================
   menu
========================================================================== */
.menu .section_2 .container .wrap {
    border-bottom: solid #D8D8D8 1px;
    margin-bottom: 60px;
    padding-bottom: 40px;
}

.menu .section_3 .container .wrap .menu_cat h2, .menu .section_4 .container .wrap .menu_cat h2 {
    font-size: 18px;
    font-weight: 700;
}

.menu .section_3 .container .pickup_box {
    margin-top: 0px;
}

.menu .section_3 .container .pickup_box .inner {
    margin-top: 50px;
}

.menu .section_3 .container .pickup_box .inner .note {
    margin-top: 25px;
}

.menu .section_3 .container .pickup_box .inner .note h3 {
    font-size: 16px;
}

.menu .section_3 .pickup_box .inner .note .price {
    line-height: 100%;
    text-align: right;
}

.menu .section_3 .pickup_box .inner .note .price span {
    font-size: 17px;
}

.menu .section_3 .pickup_box .inner .note .txt {
    margin-top: 15px;
    padding-top: 8px;
    border-top: dotted #D8D8D8 1px;
}

.menu .section_4 .container .wrap .menu_cat h2 {
    font-size: 18px;
    font-weight: 700;
}

.menu .section_4 .container .wrap .menu_cat p {
    font-size: 10px;
}

.menu .section_4 .container .wrap .col__regular {
    margin-top: 60px;
}

.menu .section_4 .container .wrap .col__regular .inner {
    margin-top: 30px;
}

.menu .section_4 .container .wrap .col__regular .inner ul {
    border-top: solid #666666 1px;
}

.menu .section_4 .container .wrap .col__regular .inner ul:last-child {
    border-bottom: solid #666666 1px;
}

.menu .section_4 .container .wrap .col__regular .inner ul li {
    text-align: left;
    padding: 12px 0;
    line-height: 150%;
}

.menu .section_4 .container .wrap .col__regular .inner ul li:nth-child(2) {
    border-top: solid #D8D8D8 1px;
    text-align: right;
}

.menu .section_4 .container .wrap .col__regular .inner ul li span {
    display: block;
    font-size: 10px;
    color: #666666;
    line-height: 150%;
}

@media screen and (min-width: 680px) {
    .menu .section_3 .container .pickup_box {
        margin-top: 60px;
    }

    .menu .section_3 .container .pickup_box .inner {
        display: flex;
        margin: 60px -15px 0;
    }

    .menu .section_3 .container .pickup_box .inner:nth-child(2n) {
        flex-direction: row-reverse;
    }

    .menu .section_3 .container .pickup_box .inner .fig {
        flex: 50;
        padding: 0 15px;
    }

    .menu .section_3 .container .pickup_box .inner .note {
        flex: 50;
        padding: 0 15px;
        margin-top: 0;
    }
}

@media screen and (min-width: 1024px) {
    .menu .section_3 .container .pickup_box {
        margin-top: 80px;
    }

    .menu .section_3 .container .pickup_box .inner {
        margin: 80px -60px 0;
    }

    .menu .section_3 .container .pickup_box .inner .fig {
        padding: 0 60px;
    }

    .menu .section_3 .container .pickup_box .inner .note {
        margin-top: 25px;
        padding: 0 60px;
    }

    .menu .section_3 .container .pickup_box .inner .note h3 {
        font-size: 21px;
    }

    .menu .section_3 .container .pickup_box .inner .note .price span {
        font-size: 21px;
    }

    .menu .section_3 .container .pickup_box .inner .note .txt {
        margin-top: 25px;
        padding-top: 20px;
    }

    .menu .section_4 .container .wrap .col__regular .inner ul {
        display: flex;
    }

    .menu .section_4 .container .wrap .col__regular .inner ul li {
        padding: 20px 0;
    }

    .menu .section_4 .container .wrap .col__regular .inner ul li span {
        padding-top: 5px;
    }

    .menu .section_4 .container .wrap .col__regular .inner ul li:nth-child(1) {
        width: 60%;
    }

    .menu .section_4 .container .wrap .col__regular .inner ul li:nth-child(2) {
        border-top: 0;
        text-align: right;
        width: 40%;
    }
}

@media screen and (min-width: 1560px) {
    .menu .section_2 .container .wrap {
        padding-bottom: 60px;
    }

     .menu .section_3 {
        margin-top: 120px;
    }

    .menu .section_3 .container .wrap .menu_cat h2 {
        font-size: 21px;
    }

    .menu .section_3 .container .wrap .inner {
        margin-top: 40px;
    }

    .menu .section_3 .container .wrap .inner .col__coupon {
        padding: 75px 40px 40px;
    }

    .menu .section_3 .container .wrap .inner .col__coupon .select .circle {
        width: 200px;
        line-height: 40px;
    }

    .menu .section_3 .container .wrap .inner .col__coupon .menu {
        margin-right: 80px;
    }

    .menu .section_3 .container .wrap .inner .col__coupon .menu h3 {
        font-size: 18px;
    }

    .menu .section_3 .container .wrap .inner .col__coupon .menu .price li.regular {
        font-size: 14px;
    }

    .menu .section_3 .container .wrap .inner .col__coupon .menu .price li.campaign {
        font-size: 14px;
    }

    .menu .section_3 .container .wrap .inner .col__coupon .menu .price li.campaign span {
        font-size: 21px;
    }

    .menu .section_3 .container .wrap .inner .col__coupon .menu .condition li, .menu .section_3 .container .wrap .inner .col__coupon .menu .limit li {
        font-size: 14px;
    }

    .menu .section_3 .container .wrap .inner .col__coupon .menu .condition li:nth-child(1), .menu .section_3 .container .wrap .inner .col__coupon .menu .limit li:nth-child(1) {
        width: 85px;
    }

    .menu .section_3 .container .wrap .inner .col__coupon .reserve {
        margin-top: -35px;
    }

    .menu .section_3 .container .wrap .inner .col__coupon .reserve .bt {
        margin-top: 10px;
    }

    .menu .section_3 .container .wrap .inner .col__coupon .reserve .bt a {
        width: 250px;
        line-height: 40px;
        padding: 0 20px;
    }

    .menu .section_4 .container .wrap .col__regular {
        margin-top: 120px;
    }

    .menu .section_4 .container .wrap .col__regular .menu_cat h2 {
        font-size: 21px;
    }

    .menu .section_4 .container .wrap .col__regular .menu_cat p {
        font-size: 12px;
    }

    .menu .section_4 .container .wrap .col__regular .inner {
        margin-top: 40px;
    }

    .menu .section_4 .container .wrap .col__regular .inner ul li {
        padding: 25px 0;
    }

    .menu .section_4 .container .wrap .col__regular .inner ul li span {
        font-size: 12px;
    }
}

/* ==========================================================================
   staff
========================================================================== */
.staff .section_2 .container .wrap .col__staff {
    border-top: solid #D8D8D8 1px;
    margin-top: 60px;
    padding-top: 60px;
}

.staff .section_2 .container .wrap .col__staff:first-child {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
}

.staff .section_2 .container .wrap .col__staff .fig img {
    width: 150px;
    border-radius: 50%;
    margin: 0 auto;
}

.staff .section_2 .container .wrap .col__staff .fig ul {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.staff .section_2 .container .wrap .col__staff .fig ul li {
    margin: 0 10px;
}

.staff .section_2 .container .wrap .col__staff .fig ul li a img {
    width: 17px;
    opacity: 1;
}

.staff .section_2 .container .wrap .col__staff .fig ul li img {
    width: 17px;
    opacity: .1;
}

.staff .section_2 .container .wrap .col__staff .txt {
    margin-top: 30px;
}

.staff .section_2 .container .wrap .col__staff .txt h2 {
    font-size: 16px;
}

.staff .section_2 .container .wrap .col__staff .txt .min {
    font-size: 10px;
    margin-bottom: 15px;
}

.staff .section_2 .container .wrap .col__staff .txt ul {
    display: flex;
}

.staff .section_2 .container .wrap .col__staff .txt ul li {
    line-height: 150%;
    margin-bottom: 5px;
}

.staff .section_2 .container .wrap .col__staff .txt ul li:nth-child(1) {
    width: 125px;
    position: relative;
}

.staff .section_2 .container .wrap .col__staff .txt ul li:nth-child(1)::after {
    content: '／';
    position: absolute;
    top: 0;
    right: 10px;
}

.staff .section_2 .container .wrap .col__staff .txt ul li:nth-child(2) {
    flex: 1;
}

.staff .section_2 .container .wrap .col__staff .txt .comment {
    margin-top: 5px;
}

@media screen and (min-width: 680px) {
    .staff .section_2 .container .wrap .col__staff {
        display: flex;
    }

    .staff .section_2 .container .wrap .col__staff .fig {
        display: block;
        margin-right: 0;
    }

    .staff .section_2 .container .wrap .col__staff .fig img {
        margin-right: 0;
    }

    .staff .section_2 .container .wrap .col__staff .fig ul {
        margin-top: 20px;
        justify-content: center;
    }

    .staff .section_2 .container .wrap .col__staff .fig ul li {
        margin-left: 8px;
    }

    .staff .section_2 .container .wrap .col__staff .txt {
        flex: 1;
        margin-top: 0;
        padding-left: 50px;
    }
}

@media screen and (min-width: 1560px) {
    .staff .section_2 .container .wrap .col__staff {
        margin-top: 80px;
        padding-top: 80px;
    }

    .staff .section_2 .container .wrap .col__staff .fig img {
        width: 200px;
    }

    .staff .section_2 .container .wrap .col__staff .fig ul {
        margin-top: 30px;
    }

    .staff .section_2 .container .wrap .col__staff .txt {
        padding-left: 80px;
    }

    .staff .section_2 .container .wrap .col__staff .txt h2 {
        font-size: 18px;
    }

    .staff .section_2 .container .wrap .col__staff .txt .min {
        font-size: 12px;
        margin-bottom: 25px;
    }

    .staff .section_2 .container .wrap .col__staff .txt ul li:nth-child(1) {
        width: 150px;
    }

    .staff .section_2 .container .wrap .col__staff .txt ul li:nth-child(1)::after {
        right: 12px;
    }
}

/* ==========================================================================
   recruit
========================================================================== */
.recruit .section_2 .wrap {
    padding: 0 20px;
}

.recruit .section_2 .wrap .fig span {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    padding-top: 62.5%;
}

.recruit .section_2 .wrap .txt {
    margin-top: 30px;
}

.recruit .section_3 .gallery {
    display: flex;
    flex-wrap: wrap;
    margin-top: 60px;
}

.recruit .section_3 .gallery li {
    width: 50%;
}

.recruit .section_3 .container .rec_title, .recruit .section_4 .container .rec_title {
    margin-bottom: 30px;
}

.recruit .section_3 .container .rec_title h2, .recruit .section_4 .container .rec_title h2 {
    font-size: 18px;
    text-align: center;
}

.recruit .section_3 .container .rec_title .min, .recruit .section_4 .container .rec_title .min {
    font-size: 10px;
    text-align: center;
}

.recruit .section_3 .container ul, .recruit .section_4 .container ul {
    margin-top: 5px;
}

.recruit .section_3 .container ul li, .recruit .section_4 .container ul li {
    line-height: 200%;
    padding: 10px 15px;
}

.recruit .section_3 .container ul li:nth-child(1), .recruit .section_4 .container ul li:nth-child(1) {
    background-color: #f5f5f5;
}

.recruit .section_3 .container ul li:nth-child(2), .recruit .section_4 .container ul li:nth-child(2) {
    background-color: #f9f9f9;
}

.recruit .section_5 .wrap .fig {
    padding-right: 20px;
}

.recruit .section_5 .wrap .fig span {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    padding-top: 62.5%;
}

.recruit .section_5 .wrap .txt {
    padding-left: 20px;
    margin-top: -60px;
}

.recruit .section_5 .wrap .txt .inner {
    background-color: #fff;
    padding: 40px 20px 40px 30px;
}

.recruit .section_5 .wrap .txt .inner h2 {
    font-size: 16px;
}

.recruit .section_5 .wrap .txt .inner .comment {
    margin-top: 20px;
    padding-right: 10px;
}

.recruit .section_5 .wrap .txt .inner .name {
    margin-top: 20px;
}

.recruit .section_6 {
    background-color: #f5f5f5;
    padding: 60px 0;
    margin: 60px 0 -100px;
}

.recruit .section_6 .container .wrap .col {
    background-color: #fff;
    margin-top: 10px;
}

.recruit .section_6 .container .wrap .col:first-child {
    margin-top: 0;
}

.recruit .section_6 .container .wrap .col a {
    text-align: center;
    padding: 40px 0;
    display: block;
}

.recruit .section_6 .container .wrap .col a .min {
    font-size: 12px;
    display: block;
    margin-bottom: 10px;
}

.recruit .section_6 .container .wrap .col a .tel {
    font-size: 22px;
    font-weight: 700;
}

.recruit .section_6 .container .wrap .col a .link {
    font-size: 19px;
    font-weight: 700;
}

.recruit .footer {
    margin-top: 0;
}

@media screen and (min-width: 680px) {
    .recruit .section_2 .wrap {
        padding: 0 40px;
    }

    .recruit .section_5 .wrap .fig {
        padding-right: 40px;
    }

    .recruit .section_5 .wrap .txt {
        padding-left: 40px;
    }

    .recruit .section_5 .wrap .txt .inner {
        padding: 50px 40px;
    }
}

@media screen and (min-width: 1024px) {
    .recruit .section_2 .wrap {
        display: flex;
        align-items: center;
        padding: 0;
    }

    .recruit .section_2 .wrap .fig, .recruit .section_2 .wrap .txt {
        width: 50%;
    }

    .recruit .section_2 .wrap .txt {
        margin-top: 0;
        padding: 0 60px 0 40px;
    }

    .recruit .section_3 .container ul, .recruit .section_4 .container ul {
        display: flex;
    }

    .recruit .section_3 .container ul li, .recruit .section_4 .container ul li {
        padding: 15px 20px;
    }

    .recruit .section_3 .container ul li:nth-child(1), .recruit .section_4 .container ul li:nth-child(1) {
        width: 200px;
        margin-right: 5px;
    }

    .recruit .section_3 .container ul li:nth-child(2), .recruit .section_4 .container ul li:nth-child(2) {
        flex: 1;
    }

    .recruit .section_3 .gallery li {
        width: 25%;
    }

    .recruit .section_5 .wrap .fig {
        width: 50%;
        padding-right: 0;
    }

    .recruit .section_5 .wrap .txt {
        width: 65%;
        padding-left: 0;
        margin-top: -250px;
        margin-left: 35%;
    }

    .recruit .section_5 .wrap .txt .inner {
        padding: 60px 50px;
    }

    .recruit .section_6 .container .wrap {
        display: flex;
    }

    .recruit .section_6 .container .wrap .col {
        width: 49%;
        margin-top: 0;
    }

    .recruit .section_6 .container .wrap .col:nth-child(2) {
        margin-left: 2%;
    }
}

@media screen and (min-width: 1560px) {
    .recruit .section_2 .wrap .txt {
        padding: 0 120px 0 80px;
    }

    .recruit .section_3 .container .rec_title, .recruit .section_4 .container .rec_title {
        margin-bottom: 80px;
    }

    .recruit .section_3 .container .rec_title h2, .recruit .section_4 .container .rec_title h2 {
        font-size: 21px;
    }

    .recruit .section_3 .container .rec_title .min, .recruit .section_4 .container .rec_title .min {
        font-size: 12px;
    }

    .recruit .section_3 .container ul li, .recruit .section_4 .container ul li {
        padding: 30px 40px;
    }

    .recruit .section_3 .container ul li:nth-child(1), .recruit .section_4 .container ul li:nth-child(1) {
        width: 250px;
    }

    .recruit .section_3 .gallery, .recruit .section_4 .gallery {
        margin-top: 120px;
    }

    .recruit .section_5 .wrap .txt .inner {
        padding: 100px 120px 100px 80px;
    }

    .recruit .section_5 .wrap .txt .inner h2 {
        font-size: 18px;
    }

    .recruit .section_5 .wrap .txt .inner .comment, .recruit .section_5 .wrap .txt .inner .name {
        margin-top: 40px;
    }

    .recruit .section_6 {
        padding: 80px 0;
        margin-top: 120px;
        margin-bottom: -160px;
    }
}
