@charset "UTF-8";

/* CSS設定
---------------------------------------------------------------------------*/
:root {
    --root-font-size: 16;
}

@font-face {
    font-family: 'Tazugane_Gothic_Medium';
    src: url('../fonts/Tazugane_Gothic_Medium.woff') format('woff');
}

@font-face {
    font-family: 'Tazugane_Gothic_Heavy';
    src: url('../fonts/Tazugane_Gothic_Heavy.woff') format('woff');
}

@font-face {
    font-family: 'HelveticaNowText_Medium';
    src: url('../fonts/HelveticaNowText_Medium.woff') format('woff');
}

@font-face {
    font-family: 'HelveticaNowText_Bold';
    src: url('../fonts/HelveticaNowText_Bold.woff') format('woff');
}

html {
    height: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    font-family: YakuHanJP, 'HelveticaNowText_Medium', 'Tazugane_Gothic_Medium', 'YuGothic', '游ゴシック', 'Yu Gothic', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', sans-serif;
    font-size: calc(15 / var(--root-font-size) * 1rem);
    line-height: 2.0em;
    letter-spacing: 0.2px;
    color: #000;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    background: #fff;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: 0.5s all linear;
    -webkit-transition: 0.5s all linear;
    -moz-transition: 0.5s all linear;
    -ms-transition: 0.5s all linear;
    -o-transition: 0.5s all linear;
}

a:hover {
    color: #e84730;
}

a.txt_link {
    text-decoration: underline;
}

a.img_link:hover {
    opacity: 0.7;
}

p {
    text-align: justify;
}

p.catch {
    font-family: YakuHanJP, 'HelveticaNowText_Medium', 'Tazugane_Gothic_Medium', 'YuGothic', '游ゴシック', 'Yu Gothic', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', sans-serif;
    font-size: calc(18 / var(--root-font-size) * 1rem);
    line-height: 2.5em;
}

h3,
h4,
h5,
h6,
.strong {
    font-family: YakuHanJP, 'HelveticaNowText_Bold', 'Tazugane_Gothic_Heavy', 'YuGothic', '游ゴシック', 'Yu Gothic', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', sans-serif;
    letter-spacing: 0;
}

h4 {
    font-size: calc(30 / var(--root-font-size) * 1rem);
    line-height: 1.5em;
    text-align: justify;
}

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

    p.catch {
        font-size: calc(16 / var(--root-font-size) * 1rem);
        line-height: 2.4em;
    }

    h4 {
        font-size: calc(24 / var(--root-font-size) * 1rem);
        line-height: 1.5em;
    }

}

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

    h4 {
        font-size: calc(20 / var(--root-font-size) * 1rem);
    }

}


.small {
    display: inline-block;
    font-size: 0.7em;
}

.orange {
    color: #e84730;
}

.underline {
    position: relative;
}

.underline::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background: #e84730;
}

.gray_area {
    background: #f9f9f9;
}

::selection {
    background: rgba(230, 230, 230, 0.5);
    color: inherit;
}

::-moz-selection {
    background: rgba(230, 230, 230, 0.5);
    color: inherit;
}


/* Display None
---------------------------------------------------------------------------*/
.pc_none {
    display: none;
}

.pc_tb_none {
    display: none;
}

.pc_sp_none {
    display: none;
}


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

    .pc_none {
        display: block;
    }

    .tb_none {
        display: none;
    }

    .pc_tb_none {
        display: none;
    }

    .pc_sp_none {
        display: block;
    }

    .tb_sp_none {
        display: none;
    }

}


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

    .pc_none {
        display: block;
    }

    .tb_none {
        display: block;
    }

    .sp_none {
        display: none;
    }

    .pc_tb_none {
        display: block;
    }

    .pc_sp_none {
        display: none;
    }

    .tb_sp_none {
        display: none;
    }


}


/* Wrapper
---------------------------------------------------------------------------*/
#wrapper {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 30px 30px 0 30px;
}


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

    #wrapper {
        padding: 10px 10px 0 10px;
    }

}


/* Header
---------------------------------------------------------------------------*/
header {
    position: fixed;
    display: flex;
    justify-content: space-between;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 0 25px 0;
    background: #fff;
    z-index: 100;
}

header a.logo_header h1 {
    text-indent: -9999px;
    background: url('../images/logo.svg') no-repeat left top;
    background-size: contain;
    width: 235px;
    height: 50px;
    margin-left: 50px;
}

#menu ul {
    display: flex;
    justify-content: flex-end;
    margin: 0 50px 0 auto;
    font-size: calc(14 / var(--root-font-size) * 1rem);
    line-height: 50px;
}

#menu li:not(:last-child) {
    margin-right: 40px;
}

#menu a {
    position: relative;
}


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

    header {
        padding: 20px 0 20px 0;
    }

    header a.logo_header h1 {
        width: 141px;
        height: 30px;
        margin-left: 25px;
    }

    #menu {
        display: none;
    }

}


/* Drawer
---------------------------------------------------------------------------*/
.drawer_trigger,
.drawer {
    display: none;
}

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

    .drawer_trigger {
        display: block;
        position: relative;
        width: 40px;
        height: 30px;
        top: 0;
        right: 25px;
        z-index: 9999;
        cursor: pointer;
    }

    .drawer_trigger:before,
    .drawer_trigger:after {
        content: "";
        display: block;
        background: #000;
        width: 100%;
        height: 2px;
        position: absolute;
        right: 0;
        transition: transform 0.4s ease, width 0.4s ease, top 0.4s ease;
        -webkit-transition: transform 0.4s ease, width 0.4s ease, top 0.4s ease;
        -moz-transition: transform 0.4s ease, width 0.4s ease, top 0.4s ease;
        -ms-transition: transform 0.4s ease, width 0.4s ease, top 0.4s ease;
        -o-transition: transform 0.4s ease, width 0.4s ease, top 0.4s ease;
    }

    .drawer_trigger:before {
        top: 10px;
    }

    .drawer_trigger:after {
        width: 25px;
        top: 18px;
    }

    .drawer_trigger.active:before {
        top: 15px;
        transform: rotate(210deg);
        -webkit-transform: rotate(210deg);
        -moz-transform: rotate(210deg);
        -ms-transform: rotate(210deg);
        -o-transform: rotate(210deg);
    }

    .drawer_trigger.active:after {
        width: 100%;
        top: 15px;
        transform: rotate(-210deg);
        -webkit-transform: rotate(-210deg);
        -moz-transform: rotate(-210deg);
        -ms-transform: rotate(-210deg);
        -o-transform: rotate(-210deg);
    }

    .drawer {
        position: fixed;
        display: block;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        z-index: 9998;
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.4s ease-out;
        -webkit-transition: opacity 0.4s ease-out;
        -moz-transition: opacity 0.4s ease-out;
        -ms-transition: opacity 0.4s ease-out;
        -o-transition: opacity 0.4s ease-out;
    }

    .drawer_inner {
        position: absolute;
        top: 25%;
        left: 25px;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: stretch;
        opacity: 0;
        transition: opacity 0.4s ease-out;
        -webkit-transition: opacity 0.4s ease-out;
        -moz-transition: opacity 0.4s ease-out;
        -ms-transition: opacity 0.4s ease-out;
        -o-transition: opacity 0.4s ease-out;
    }

    .drawer.visible {
        opacity: 1;
        pointer-events: auto;
    }

    .drawer.visible .drawer_inner {
        opacity: 1;
    }

    .drawer a.drawer_logo {
        position: absolute;
        top: 20px;
        left: 25px;
        width: 235px;
        height: 50px;
    }

    ul.drawer_menu_list li:not(:last-of-type) {
        margin: 0 0 40px 0;
    }

    ul.drawer_menu_list li a {
        display: inline-block;
        font-family: YakuHanJP, 'HelveticaNowText_Bold', 'Tazugane_Gothic_Heavy', 'YuGothic', '游ゴシック', 'Yu Gothic', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', sans-serif;
        font-size: calc(36 / var(--root-font-size) * 1rem);
        line-height: 1em;
        letter-spacing: -0.02em;
        color: #000;
    }

    ul.drawer_menu_list li a:last-child {
        margin: 0;
    }

    ul.drawer_menu_list li a:hover,
    ul.drawer_menu_list li a.active:hover {
        color: #e84730;
        opacity: 1;
    }

}

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

    .drawer_inner {
        left: 25px;
    }


    .drawer a.drawer_logo {
        width: 141px;
        height: 30px;
    }

    ul.drawer_menu_list li:not(:last-of-type) {
        margin: 0 0 20px 0;
    }

    ul.drawer_menu_list li a {
        font-size: calc(30 / var(--root-font-size) * 1rem);
    }

}


/* Footer
---------------------------------------------------------------------------*/
footer {
    background: #f9f9f9;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 120px 50px 120px 50px;
}

.footer_item_wrap {
    display: flex;
    justify-content: space-between;
}

.footer_item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer_item:first-of-type {
    width: 50%;
}

.logo_footer {
    text-indent: -9999px;
    background: url("../images/logo.svg") no-repeat left top;
    background-size: contain;
    width: 235px;
    height: 50px;
    margin: 0 0 40px 0;
}

ul.footer_menu_list {
    display: flex;
    flex-wrap: wrap;
    margin: 30px 0 0 0;
}

ul.footer_menu_list li {
    font-size: calc(15 / var(--root-font-size) * 1rem);
    line-height: 2.0em;
    margin: 0 30px 0 0;
}

small.copyright {
    font-size: calc(12 / var(--root-font-size) * 1rem);
    line-height: 1.5em;
}

.footer_item .footer_info {
    margin: 0 0 45px 0;
}


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

    footer {
        padding: 80px 25px 80px 25px;
    }

    .footer_item_wrap {
        display: block;
        margin: 0 0 50px 0;
    }

    .footer_item:first-of-type {
        width: 100%;
        margin: 0 0 30px 0;
    }

    .logo_footer {
        width: 188px;
        height: 40px;
        margin: 0 0 30px 0;
    }

    .footer_item .footer_info {
        margin: 0;
    }

}


/* Marquee
---------------------------------------------------------------------------*/
.marquee_above,
.marquee_under {
    width: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.marquee_above {
    margin: 0 0 50px 0;
}

.marquee_under {
    margin: 30px 0 0 0;
}

.marquee_above ul,
.marquee_under ul {
    font-family: YakuHanJP, 'HelveticaNowText_Bold', 'Tazugane_Gothic_Heavy', 'YuGothic', '游ゴシック', 'Yu Gothic', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', sans-serif;
    font-size: calc(150 / var(--root-font-size) * 1rem);
    color: #fff;
    line-height: 1em;
    letter-spacing: -0.02em;
    transform: translateX(100%);
    margin: 0;
    padding: 0;
    animation: Marquee 800s linear infinite;
    -webkit-animation: Marquee 800s linear infinite;
}

.marquee_above ul li,
.marquee_under ul li {
    display: inline-block;
    padding-right: 10px;
}

@keyframes Marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
    }
}


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

    .marquee_above {
        margin: 0 0 40px 0;
    }

    .marquee_under {
        margin: 20px 0 0 0;
    }

    .marquee_above ul,
    .marquee_under ul {
        font-size: calc(100 / var(--root-font-size) * 1rem);
    }

}


/* link Button
---------------------------------------------------------------------------*/
.link_btn a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 17px 25px;
    width: 220px;
    color: #fff;
    text-decoration: none;
    background: #e84730;
    border-radius: 50vh;
    -webkit-border-radius: 50vh;
    -moz-border-radius: 50vh;
    -ms-border-radius: 50vh;
    -o-border-radius: 50vh;
}

.link_btn a:hover,
.link_btn a.active:hover {
    background: #000;
    opacity: 1;
}

.link_btn a::after {
    content: "";
    background: #fff;
    width: 7px;
    height: 7px;
    position: absolute;
    right: 27px;
    top: calc(50% - 3.5px);
    border-radius: 50%;
}

.link_btn a:hover::after {
    animation-name: Wink;
    animation-duration: 0.3s;
    animation-timing-function: ease-in-out;
}

@keyframes Wink {
    0% {
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }

    50% {
        transform: scale(0.1);
        -webkit-transform: scale(0.1);
        -moz-transform: scale(0.1);
        -ms-transform: scale(0.1);
        -o-transform: scale(0.1);
    }

    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }
}


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

    .link_btn a {
        margin: 50px auto 0 0;
    }

}


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

    .link_btn a {
        width: 100%;
        margin: 50px auto 0 auto;
    }

}