@charset "UTF-8";
/* Scss Document */
/* 基本テキスト */
/* ヘッダメニュー分だけマージンを取る */
/* @media screen and (max-width: 1330px) */
/* @media screen and (max-width: 768px) */
/* text line shadow-----color */
/* back shadow-----color */
/* Scss Document */
@font-face {
    font-family: "KaiseiTokumin-Regular";
    src: url("../fonts/KaiseiTokumin-Regular_subset.woff2") format("woff2"), url("../fonts/KaiseiTokumin-Regular_subset.woff") format("woff");
}

@font-face {
    font-family: "SawarabiMincho";
    src: url("../fonts/SawarabiMincho-Regular_subset.woff2") format("woff2"), url("../fonts/SawarabiMincho-Regular_subset.woff") format("woff");
}

@font-face {
    font-family: "KosugiMaru";
    src: url("../fonts/KosugiMaru-Regular_subset.woff2") format("woff2"), url("../fonts/KosugiMaru-Regular_subset.woff") format("woff");
}

/* reCaptchaのバッジを非表示 */
.grecaptcha-badge {
    visibility: hidden;
}

*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

html .scroll.active {
    position: fixed;
    z-index: -1;
    width: 100%;
    height: 100%;
}

/* hrefでリンク移動時に、ヘッダメニュー分だけ下に移動する */
.href_jump {
    background: transparent;
    margin-top: calc(115px * -1);
    padding-top: 115px;
}

@media screen and (max-width: 1330px) {
    .href_jump {
        margin-top: calc(145px * -1);
        padding-top: 145px;
    }
}

@media screen and (max-width: 768px) {
    .href_jump {
        margin-top: calc(90px * -1);
        padding-top: 90px;
    }
}

.background_none {
    background-image: none;
    background-color: transparent;
}

.sp_none {
    display: none;
}

@media screen and (min-width: 768px) {
    .sp_none {
        display: block;
    }
}

.pc_none {
    display: block;
}

@media screen and (min-width: 768px) {
    .pc_none {
        display: none;
    }
}

.sp_none_table {
    display: none;
}

@media screen and (min-width: 768px) {
    .sp_none_table {
        display: table;
    }
}

.pc_none_table {
    display: table;
}

@media screen and (min-width: 768px) {
    .pc_none_table {
        display: none;
    }
}

.sp_none_td {
    display: none;
}

@media screen and (min-width: 768px) {
    .sp_none_td {
        display: table-cell;
    }
}

.pc_none_td {
    display: table-cell;
}

@media screen and (min-width: 768px) {
    .pc_none_td {
        display: none;
    }
}

.sp_none_tr {
    display: none;
}

@media screen and (min-width: 768px) {
    .sp_none_tr {
        display: table-row;
    }
}

.pc_none_tr {
    display: table-row;
}

@media screen and (min-width: 768px) {
    .pc_none_tr {
        display: none;
    }
}

body {
    max-width: 100%;
    box-sizing: border-box;
    font-size: 70%;
    font-family: "SawarabiMincho", serif, "メイリオ", Meiryo, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Helvetica Neue", Helvetica, Arial;
    word-wrap: break-word;
    overflow-wrap: break-word;
    letter-spacing: 0.12em;
    font-feature-settings: "palt" 1;
    background-color: var(--color-white);
    color: #595757;
}

main {
    margin-top: 115px;
    text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, -1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
}

@media screen and (max-width: 1330px) {
    main {
        margin-top: 145px;
    }
}

@media screen and (max-width: 768px) {
    main {
        margin-top: 90px;
    }
}

h1 {
    padding: 30px;
    background-image: url("../img/spiration-light_red.png");
    background-repeat: repeat;
    background-size: 150px;
    text-align: center;
    font-size: 3em;
    font-weight: 700;
    color: var(--color-base);
    text-shadow: 3px 3px 0 var(--color-white);
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 2.6em;
    }
}

li {
    list-style: none;
}

a {
    color: #595757;
    transition: 0.5s;
    text-decoration: none;
}

a:hover {
    opacity: 0.6;
}

.lead {
    height: auto;
    width: 100%;
    background-image: url("../img/spiration-light.png");
    background-repeat: repeat;
    background-size: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--color-base);
}

.sub {
    width: 100%;
    text-align: center;
    font-family: "KaiseiTokumin-Regular", serif;
    font-size: 2em;
    line-height: 1.6em;
    font-weight: bolder;
    padding: 20px 0;
    background-color: rgba(255, 255, 255, 0.8);
    border-top: 1px solid var(--color-base);
    border-bottom: 1px solid var(--color-base);
}

@media screen and (max-width: 768px) {
    .sub {
        font-size: 1.6em;
        line-height: 1.2em;
    }
}

.text {
    padding: 40px 0;
    color: black;
    font-size: 1.4em;
    line-height: 1.6em;
    text-align: center;
    font-family: "KosugiMaru";
}

@media screen and (max-width: 768px) {
    .text {
        font-size: 1.3em;
    }
}

.title {
    width: 100%;
    text-align: center;
    background-color: var(--color-base-secondary);
    color: white;
    font-size: 2.2em;
    line-height: 1.2em;
    padding: 15px;
    text-shadow: none;
}

@media screen and (max-width: 768px) {
    .title {
        font-size: 2em;
    }
}

/* head_menu */
.menu {
    position: fixed;
    z-index: 3;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
}

.menu::after {
    position: absolute;
    bottom: -2px;
    z-index: 4;
    content: "";
    width: 100vw;
    height: 2px;
    background: var(--color-base);
}

.menu .wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    width: 90%;
    max-width: 100%;
    margin: 0 auto;
}

.menu .wrapper .logo {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 10px auto 0;
}


.menu .wrapper .logo > a .logo_vita {
    width: auto;
    height: 50px;
    object-fit: contain;
}

.menu .wrapper .logo > a .logo_legato {
    width: auto;
    height: 45px;
    object-fit: contain;
}

.menu .wrapper .contact {
    display: flex;
    flex-direction: row;
    position: absolute;
    top: 10px;
    right: 0;
    background-color: white;
    padding: 0;
}

.menu .wrapper .contact .vacancy {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    width: 120px;
    background-color: var(--color-base-secondary);
    border-radius: 5px;
    margin-right: 10px;
}

.menu .wrapper .contact .vacancy img {
    object-fit: cover;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 15px;
    height: 23px;
    width: auto;
}

.menu .wrapper .contact .contact_text {
    width: 100%;
    height: auto;
    text-align: center;
    margin-top: auto;
    margin-bottom: auto;
    font-size: 1.2em;
    color: white;
}

.menu .wrapper .contact .mail {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    width: 130px;
    background-color: var(--color-sub);
    border-radius: 5px 0 0 5px;
}

.menu .wrapper .contact .mail img {
    object-fit: cover;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 15px;
    height: 23px;
    width: auto;
}

.menu .wrapper .contact .tell {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    height: auto;
    width: 150px;
    border-top: 1px solid var(--color-sub);
    border-bottom: 1px solid var(--color-sub);
}

.menu .wrapper .contact .tell img {
    object-fit: cover;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 10px;
    height: 23px;
    width: auto;
}

.menu .wrapper .contact .tell .tell_text {
    font-size: 1.3em;
    color: var(--color-sub);
}

.menu .wrapper .menu_wrapper {
    display: flex;
    justify-content: space-around;
    width: 100%;
    color: var(--color-base-secondary);
}

.menu .wrapper .menu_wrapper .li_wrapper {
    display: flex;
    justify-content: space-around;
    width: 100%;
}

.menu .wrapper .menu_wrapper li a {
    display: flex;
    width: 100%;
    height: auto;
    justify-content: center;
    align-items: center;
    padding: 15px;
    text-align: center;
    font-size: 1.4em;
    font-weight: 700;
    color: var(--color-base-secondary);
}

.menu .wrapper .menu_wrapper li a > img {
    display: block;
    width: 80%;
    height: auto;
}

.menu .wrapper .menu_btn_wrapper {
    display: none;
}

@media screen and (max-width: 1330px) {
    .menu .wrapper .logo {
        /*　ロゴを退避　*/
        width: 100%;
        justify-content: flex-start;
    }

    .menu .wrapper > a .logo {
        height: 46px;
    }

    .menu .wrapper .menu_wrapper {
        /* メニューを2段組にする */
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 960px) {
    /** ロゴを縮小 **/
    .menu .wrapper .logo > a .logo_vita {
        height: 35px;
    }

    .menu .wrapper .logo > a .logo_legato {
        height: 30px;
    }

}

@media screen and (max-width: 768px) {
    .menu .wrapper {
        width: 100%;
    }

    .menu .wrapper .logo {
        width: 100%;
        height: auto;
        justify-content: center;
    }

    .menu .wrapper .logo > a {
        width: auto;
        height: 30px;
    }

    .menu .wrapper .logo > a .logo_vita,
    .menu .wrapper .logo > a .logo_legato {
        width: auto;
        height: 100%;
    }

    .menu .wrapper .contact {
        display: none;
    }

    .menu .wrapper .menu_wrapper {
        display: none;
        border-bottom: 1px solid var(--color-base-secondary);
    }

    .menu .wrapper ul {
        position: absolute;
        top: 85px;
        margin-top: 10px;
        background-color: rgba(255, 255, 255, 0.9);
    }

    .menu .wrapper ul.active {
        display: flex;
    }

    .menu .wrapper ul .li_wrapper {
        flex-direction: column;
    }

    .menu .wrapper .menu_btn_wrapper {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .menu .wrapper .menu_btn_wrapper .menu_btn {
        display: flex;
        margin-left: 5px;
        padding: 0 5px;
        font-weight: 700;
        font-size: 1.4em;
        height: auto;
        justify-content: center;
        align-items: center;
        background-color: var(--color-base-secondary);
        color: white;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }

    .menu .wrapper .menu_btn_wrapper .menu_btn.active .menu-trigger > span:nth-of-type(1) {
        transform: translateY(6px) rotate(-45deg);
    }

    .menu .wrapper .menu_btn_wrapper .menu_btn.active .menu-trigger > span:nth-of-type(2) {
        opacity: 0;
    }

    .menu .wrapper .menu_btn_wrapper .menu_btn.active .menu-trigger > span:nth-of-type(3) {
        transform: translateY(-6px) rotate(45deg);
    }

    .menu .wrapper .menu_btn_wrapper .menu_btn .menu-trigger,
    .menu .wrapper .menu_btn_wrapper .menu_btn .menu-trigger span {
        display: inline-block;
        transition: all 0.4s;
        box-sizing: border-box;
    }

    .menu .wrapper .menu_btn_wrapper .menu_btn .menu-trigger {
        position: relative;
        margin-right: 5px;
        width: 20px;
        height: 15px;
        background: none;
        border: none;
        appearance: none;
        cursor: pointer;
    }

    .menu .wrapper .menu_btn_wrapper .menu_btn .menu-trigger > span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: var(--color-white);
        border-radius: 4px;
    }

    .menu .wrapper .menu_btn_wrapper .menu_btn .menu-trigger > span:nth-of-type(1) {
        top: 0;
    }

    .menu .wrapper .menu_btn_wrapper .menu_btn .menu-trigger > span:nth-of-type(2) {
        top: 6px;
    }

    .menu .wrapper .menu_btn_wrapper .menu_btn .menu-trigger > span:nth-of-type(3) {
        bottom: 0px;
    }

    .menu .wrapper .small_contact {
        display: flex;
        flex-direction: row;
        margin-right: 10px;
        margin-bottom: 5px;
        height: 30px;
    }

    .menu .wrapper .small_contact img {
        object-fit: cover;
        margin: auto 10px;
        height: 20px;
        width: auto;
    }

    .menu .wrapper .small_contact .vacancy {
        display: flex;
        flex-direction: row;
        width: 100px;
        align-items: baseline;
        background-color: var(--color-base-secondary);
        border-radius: 5px;
        margin-right: 10px;
    }

    .menu .wrapper .small_contact .vacancy > img {
        margin: auto 0 auto 10px;
    }

    .menu .wrapper .small_contact .vacancy .contact_text {
        width: 100%;
        height: auto;
        text-align: center;
        margin-top: auto;
        margin-bottom: auto;
        font-size: 1.2em;
        font-weight: bolder;
        color: white;
    }

    .menu .wrapper .small_contact .mail {
        display: flex;
        align-items: baseline;
        background-color: var(--color-sub);
        border-radius: 5px;
        margin-right: 10px;
    }

    .menu .wrapper .small_contact .tell {
        display: flex;
        align-items: baseline;
        border: 2px solid var(--color-sub);
        border-radius: 5px;
    }
}

/* footer */
footer {
    background-color: white;
}

footer .inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 0;
}

footer .inner .logo {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin: 0 auto 30px;
}

footer .inner .logo > img {
    display: block;
    width: 30%;
    min-width: 300px;
    height: auto;
    object-fit: contain;
}

footer .inner > nav {
    display: flex;
    justify-content: space-between;
    align-items: start;
    width: 100%;
    min-width: 600px;
    margin: 0 auto;
    margin-bottom: 30px;
    padding-left: 5.5%;
    font-size: 1em;
}

footer .inner > nav > div {
    width: calc(33.3333333333% - 20px);
}

footer .inner > nav > div > span, footer .inner > nav > div > a {
    display: block;
    padding: 10px 0;
}

footer .inner > nav > div > span, footer .inner > nav > div:last-of-type > a {
    font-weight: 700;
}

footer .inner > nav > div > a {
    display: block;
}

footer .inner > nav > div:first-of-type span {
    color: var(--color-pink);
}

footer .inner > nav > div:first-of-type a {
    position: relative;
}

footer .inner > nav > div:first-of-type a::after {
    font-family: "Material Icons";
    content: "\e5cc";
    position: absolute;
    right: 0px;
    color: var(--color-pink);
}

footer .inner > nav > div:nth-of-type(2) span {
    color: #fdce0a;
}

footer .inner > nav > div:nth-of-type(2) a {
    position: relative;
}

footer .inner > nav > div:nth-of-type(2) a::after {
    font-family: "Material Icons";
    content: "\e5cc";
    position: absolute;
    right: 0px;
    color: #fdce0a;
}

footer .inner > nav > div:last-of-type > a:first-of-type {
    color: #5fc1c9;
}

footer .inner > nav > div:last-of-type > a:nth-of-type(2) {
    color: #7ec058;
}

footer .inner > nav > div:last-of-type > a:last-of-type {
    color: #ba8bbd;
}

footer .inner > p {
    font-size: 1em;
    text-align: center;
    line-height: 1.5;
}

footer .copyright {
    padding: 20px;
    background-color: var(--color-base-secondary);
    color: #FFFFFF;
    text-align: center;
}

footer .copyright a {
    color: white;
}

@media screen and (max-width: 768px) {
    footer .inner {
        max-width: inherit;
    }

    footer .inner .logo > img {
        min-width: 0;
        width: 60%;
        margin-bottom: 10px;
    }

    footer .inner > nav {
        flex-flow: column;
        width: 90%;
        min-width: inherit;
        margin-bottom: 30px;
    }

    footer .inner > nav a {
        padding-top: 2px;
        padding-bottom: 2px;
    }

    footer .inner > p > span {
        font-size: 0.8em;
    }
}

/* templateパーツ */
.obi_consul_visit {
    width: 100%;
    padding-top: 40px;
    padding-bottom: 35px;
    text-align: center;
    background-color: var(--color-sub);
    background-image: url("../img/double-bubble_yellow.png");
    background-size: 100px;
    border-top: 1px solid var(--color-base-secondary);
    border-bottom: 1px solid var(--color-base-secondary);
}

.obi_consul_visit .btn {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    position: relative;
    display: inline-block;
    padding: calc(1.5rem - 12px) 3rem 1.5rem;
    border-radius: 100vh;
    background: #fff;
    cursor: pointer;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 0.1em;
    color: var(--color-base-secondary);
}

.obi_consul_visit .btn .ruby {
    font-size: 1rem;
    text-align: center;
    padding-right: 20px;
}

.obi_consul_visit .btn:before {
    border-radius: 100vh;
    position: absolute;
    top: -6px;
    left: -6px;
    width: 100%;
    height: 100%;
    content: "";
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: 3px solid var(--color-base-secondary);
}

.obi_consul_visit .btn:hover {
    padding: calc(1.5rem - 6px) 3rem;
}

.obi_consul_visit .btn:hover:before {
    top: 0;
    left: 0;
}

@media screen and (max-width: 768px) {
    .obi_consul_visit .btn {
        font-size: 1.4rem;
    }

    .obi_consul_visit .btn .ruby {
        font-size: 0.8rem;
    }
}

/*# sourceMappingURL=master.css.map */
