@charset 'UTF-8';
/* ==========================================================================
   Foundation
   ========================================================================== */
@import url('https://fonts.googleapis.com/css?family=Nunito+Sans:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i&display=swap');
@import url('https://fonts.googleapis.com/css?family=Barlow+Condensed:400,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Raleway:400,600,700&display=swap');
/* Reset
   ----------------------------------------------------------------- */
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

body {
    line-height: 1;
    background:#FEFDF8;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

ul, ol {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

/*! change colours to suit your needs */
ins {
    background-color: #ff9;
    color: #000;
    text-decoration: none;
}

/*! change colours to suit your needs */
mark {
    background-color: #ff9;
    color: #000;
    font-style: italic;
    font-weight: bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*! change border colour to suit your needs */
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

input, select {
    vertical-align: middle;
}

main {
    display: block;
}

/* Base
   ----------------------------------------------------------------- */
html {
    font-size: 62.5%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

*, *:before, *:after {
    -webkit-box-sizing: inherit;
            box-sizing: inherit;
}

body {
    color: #333;
    font-family: -apple-system, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', ヒラギノ角ゴシック, Meiryo, メイリオ, sans-serif;
    -webkit-font-feature-settings: 'palt';
            font-feature-settings: 'palt';
    line-height: 1;
    word-break: normal;
    word-wrap: break-word;
    -webkit-text-size-adjust: 100%;
}

@media screen and (max-width: 767px) {
    body {
        font-size: 32px;
        font-size: 4.27vw;
    }
}

@media screen and (min-width: 768px) {
    body {
        font-size: 16px;
        font-size: 1.6rem;
    }
}

body.is-fixed {
    position: fixed;
    width: 100%;
    height: 100%;
}

a {
    color: #333;
}

a:hover, a:active, a:focus {
    opacity: .8;
    text-decoration: none;
}

p {
    line-height: 1.8;
}

/* フルードイメージにします。 */
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

/* svgのIEバグ回避 */
img[src$='.svg'] {
    width: 100%;
    height: auto;
}

code, pre {
    font-family: Consolas, Menlo, Courier, monospace;
}

@media screen and (max-width: 1023px) {
    .pc {
        display: none;
    }
}

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

@media screen and (max-width: 767px) {
    .tb {
        display: none;
    }
}

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

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

/* Container
   ----------------------------------------------------------------- */
.l-container {
    overflow: hidden;
}

/* Component
   ----------------------------------------------------------------- */
/* btn
-------------------------------------------------------------------------- */
.c-btn {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    padding: 0;
    width: 100%;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    border: none;
    border-color: transparent;
    background-color: transparent;
    outline: none;
    -webkit-transition: .3s ease;
    transition: .3s ease;
}

.c-btn--primary {
    color: #fff;
    background-color: #000;
}

@media screen and (max-width: 767px) {
    .c-btn--primary {
        border: .53333vw solid #000;
    }
}

@media screen and (min-width: 768px) {
    .c-btn--primary {
        -webkit-transition: .3s ease;
        transition: .3s ease;
        border: 2px solid #000;
    }
}

@media screen and (min-width: 768px) {
    .c-btn--primary:hover {
        opacity: 1;
        color: #000;
        background: #fff;
    }
}

.c-btn--border {
    color: #fff;
}

@media screen and (max-width: 767px) {
    .c-btn--border {
        border: .53333vw solid #fff;
    }
}

@media screen and (min-width: 768px) {
    .c-btn--border {
        border: 2px solid #fff;
        -webkit-transition: .3s ease;
        transition: .3s ease;
    }
}

@media screen and (min-width: 768px) {
    .c-btn--border:hover {
        opacity: 1;
        color: #000;
        background: #fff;
    }
}

.c-btn--arrow::after {
    position: absolute;
    content: '';
    display: block;
    top: 50%;
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
}

@media screen and (max-width: 767px) {
    .c-btn--arrow::after {
        right: 4vw;
        width: 3.2vw;
        height: 3.2vw;
        border-top: 1.06667vw solid #006bbb;
        border-right: 1.06667vw solid #006bbb;
    }
}

@media screen and (min-width: 768px) {
    .c-btn--arrow::after {
        right: 30px;
        width: 14px;
        height: 14px;
        border-top: 4px solid #006bbb;
        border-right: 4px solid #006bbb;
    }
}

.c-btn--en {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
}

.c-btn-b {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    padding: 0;
    width: 100%;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    border: none;
    border-color: transparent;
    background-color: transparent;
    outline: none;
    -webkit-transition: .3s ease;
    transition: .3s ease;
}

.c-btn-b--primary {
    color: #000;
    background-color: #fff;
}

@media screen and (max-width: 767px) {
    .c-btn-b--primary {
        border: .53333vw solid #fff;
    }
}

@media screen and (min-width: 768px) {
    .c-btn-b--primary {
        -webkit-transition: .3s ease;
        transition: .3s ease;
        border: 2px solid #fff;
    }
}

@media screen and (min-width: 768px) {
    .c-btn-b--primary:hover {
        opacity: 1;
        color: #fff;
        background: #000;
    }
}

.c-btn-b--border {
    color: #000;
}

@media screen and (max-width: 767px) {
    .c-btn-b--border {
        border: .53333vw solid #000;
    }
}

@media screen and (min-width: 768px) {
    .c-btn-b--border {
        border: 2px solid #000;
        -webkit-transition: .3s ease;
        transition: .3s ease;
    }
}

@media screen and (min-width: 768px) {
    .c-btn-b--border:hover {
        opacity: 1;
        color: #fff;
        background: #000;
    }
}

.c-btn-b--arrow::after {
    position: absolute;
    content: '';
    display: block;
    top: 50%;
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
}

@media screen and (max-width: 767px) {
    .c-btn-b--arrow::after {
        right: 4vw;
        width: 3.2vw;
        height: 3.2vw;
        border-top: 1.06667vw solid #006bbb;
        border-right: 1.06667vw solid #006bbb;
    }
}

@media screen and (min-width: 768px) {
    .c-btn-b--arrow::after {
        right: 30px;
        width: 14px;
        height: 14px;
        border-top: 4px solid #006bbb;
        border-right: 4px solid #006bbb;
    }
}

.c-btn-b--en {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
}

/* c-hamburger
-------------------------------------------------------------------------- */
.c-hamburger {
    position: relative;
    display: block;
    outline: none;
    width: 100%;
    -webkit-transition: all .4s;
    transition: all .4s;
}

@media screen and (max-width: 767px) {
    .c-hamburger {
        width: 7.2vw;
        height: 5.86667vw;
        margin-top: 1.07vw;
        margin-bottom: 1.07vw;
    }
}

@media screen and (min-width: 768px) {
    .c-hamburger {
        width: 80px;
        height: 50px;
    }
}

.c-hamburger span {
    position: absolute;
    content: '';
    left: 0;
    display: block;
    -webkit-transition: all .3s;
    transition: all .3s;
}

@media screen and (max-width: 767px) {
    .c-hamburger span {
        width: 100%;
        height: 1.06667vw;
        background-color: #fff;
    }
}

@media screen and (min-width: 768px) {
    .c-hamburger span {
        width: 100%;
        height: 10px;
        background: #000;
    }
}

.c-hamburger span:nth-of-type(1) {
    top: 0;
}

@media screen and (max-width: 767px) {
    .c-hamburger span:nth-of-type(1) {
        -webkit-animation: menu-bar01-sp .65s forwards;
                animation: menu-bar01-sp .65s forwards;
    }
}

@media screen and (min-width: 768px) {
    .c-hamburger span:nth-of-type(1) {
        -webkit-animation: menu-bar01 .65s forwards;
                animation: menu-bar01 .65s forwards;
    }
}

.c-hamburger span:nth-of-type(2) {
    -webkit-transition: all .25s .25s;
    transition: all .25s .25s;
    opacity: 1;
}

@media screen and (max-width: 767px) {
    .c-hamburger span:nth-of-type(2) {
        top: 2.93vw;
        margin-top: -.53vw;
    }
}

@media screen and (min-width: 768px) {
    .c-hamburger span:nth-of-type(2) {
        top: 50%;
        margin-top: -5px;
    }
}

.c-hamburger span:nth-of-type(3) {
    bottom: 0;
}

@media screen and (max-width: 767px) {
    .c-hamburger span:nth-of-type(3) {
        -webkit-animation: menu-bar02-sp .65s forwards;
                animation: menu-bar02-sp .65s forwards;
    }
}

@media screen and (min-width: 768px) {
    .c-hamburger span:nth-of-type(3) {
        -webkit-animation: menu-bar02 .65s forwards;
                animation: menu-bar02 .65s forwards;
    }
}

.c-hamburger.is-open span {
    background: #fff;
}

@media screen and (max-width: 767px) {
    .c-hamburger.is-open span:nth-of-type(1) {
        -webkit-animation: active-menu-bar01-sp .65s forwards;
                animation: active-menu-bar01-sp .65s forwards;
    }
}

@media screen and (min-width: 768px) {
    .c-hamburger.is-open span:nth-of-type(1) {
        -webkit-animation: active-menu-bar01 .65s forwards;
                animation: active-menu-bar01 .65s forwards;
    }
}

.c-hamburger.is-open span:nth-of-type(2) {
    opacity: 0;
}

@media screen and (max-width: 767px) {
    .c-hamburger.is-open span:nth-of-type(3) {
        -webkit-animation: active-menu-bar03-sp .65s forwards;
                animation: active-menu-bar03-sp .65s forwards;
    }
}

@media screen and (min-width: 768px) {
    .c-hamburger.is-open span:nth-of-type(3) {
        -webkit-animation: active-menu-bar03 .65s forwards;
                animation: active-menu-bar03 .65s forwards;
    }
}

@-webkit-keyframes menu-bar01 {
    0% {
        -webkit-transform: translateY(20px) rotate(45deg);
                transform: translateY(20px) rotate(45deg);
    }
    50% {
        -webkit-transform: translateY(20px) rotate(0);
                transform: translateY(20px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(0) rotate(0);
                transform: translateY(0) rotate(0);
    }
}

@keyframes menu-bar01 {
    0% {
        -webkit-transform: translateY(20px) rotate(45deg);
                transform: translateY(20px) rotate(45deg);
    }
    50% {
        -webkit-transform: translateY(20px) rotate(0);
                transform: translateY(20px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(0) rotate(0);
                transform: translateY(0) rotate(0);
    }
}

@-webkit-keyframes menu-bar02 {
    0% {
        -webkit-transform: translateY(-20px) rotate(-45deg);
                transform: translateY(-20px) rotate(-45deg);
    }
    50% {
        -webkit-transform: translateY(-20px) rotate(0);
                transform: translateY(-20px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(0) rotate(0);
                transform: translateY(0) rotate(0);
    }
}

@keyframes menu-bar02 {
    0% {
        -webkit-transform: translateY(-20px) rotate(-45deg);
                transform: translateY(-20px) rotate(-45deg);
    }
    50% {
        -webkit-transform: translateY(-20px) rotate(0);
                transform: translateY(-20px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(0) rotate(0);
                transform: translateY(0) rotate(0);
    }
}

@-webkit-keyframes active-menu-bar01 {
    0% {
        -webkit-transform: translateY(0) rotate(0);
                transform: translateY(0) rotate(0);
    }
    50% {
        -webkit-transform: translateY(20px) rotate(0);
                transform: translateY(20px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(20px) rotate(45deg);
                transform: translateY(20px) rotate(45deg);
    }
}

@keyframes active-menu-bar01 {
    0% {
        -webkit-transform: translateY(0) rotate(0);
                transform: translateY(0) rotate(0);
    }
    50% {
        -webkit-transform: translateY(20px) rotate(0);
                transform: translateY(20px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(20px) rotate(45deg);
                transform: translateY(20px) rotate(45deg);
    }
}

@-webkit-keyframes active-menu-bar03 {
    0% {
        -webkit-transform: translateY(0) rotate(0);
                transform: translateY(0) rotate(0);
    }
    50% {
        -webkit-transform: translateY(-20px) rotate(0);
                transform: translateY(-20px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(-20px) rotate(-45deg);
                transform: translateY(-20px) rotate(-45deg);
    }
}

@keyframes active-menu-bar03 {
    0% {
        -webkit-transform: translateY(0) rotate(0);
                transform: translateY(0) rotate(0);
    }
    50% {
        -webkit-transform: translateY(-20px) rotate(0);
                transform: translateY(-20px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(-20px) rotate(-45deg);
                transform: translateY(-20px) rotate(-45deg);
    }
}

@-webkit-keyframes menu-bar01-sp {
    0% {
        -webkit-transform: translateY(2.4vw) rotate(45deg);
                transform: translateY(2.4vw) rotate(45deg);
    }
    50% {
        -webkit-transform: translateY(2.4vw) rotate(0);
                transform: translateY(2.4vw) rotate(0);
    }
    100% {
        -webkit-transform: translateY(0) rotate(0);
                transform: translateY(0) rotate(0);
    }
}

@keyframes menu-bar01-sp {
    0% {
        -webkit-transform: translateY(2.4vw) rotate(45deg);
                transform: translateY(2.4vw) rotate(45deg);
    }
    50% {
        -webkit-transform: translateY(2.4vw) rotate(0);
                transform: translateY(2.4vw) rotate(0);
    }
    100% {
        -webkit-transform: translateY(0) rotate(0);
                transform: translateY(0) rotate(0);
    }
}

@-webkit-keyframes menu-bar02-sp {
    0% {
        -webkit-transform: translateY(-2.4vw) rotate(-45deg);
                transform: translateY(-2.4vw) rotate(-45deg);
    }
    50% {
        -webkit-transform: translateY(-2.4vw) rotate(0);
                transform: translateY(-2.4vw) rotate(0);
    }
    100% {
        -webkit-transform: translateY(0) rotate(0);
                transform: translateY(0) rotate(0);
    }
}

@keyframes menu-bar02-sp {
    0% {
        -webkit-transform: translateY(-2.4vw) rotate(-45deg);
                transform: translateY(-2.4vw) rotate(-45deg);
    }
    50% {
        -webkit-transform: translateY(-2.4vw) rotate(0);
                transform: translateY(-2.4vw) rotate(0);
    }
    100% {
        -webkit-transform: translateY(0) rotate(0);
                transform: translateY(0) rotate(0);
    }
}

@-webkit-keyframes active-menu-bar01-sp {
    0% {
        -webkit-transform: translateY(0) rotate(0);
                transform: translateY(0) rotate(0);
    }
    50% {
        -webkit-transform: translateY(2.4vw) rotate(0);
                transform: translateY(2.4vw) rotate(0);
    }
    100% {
        -webkit-transform: translateY(2.4vw) rotate(45deg);
                transform: translateY(2.4vw) rotate(45deg);
    }
}

@keyframes active-menu-bar01-sp {
    0% {
        -webkit-transform: translateY(0) rotate(0);
                transform: translateY(0) rotate(0);
    }
    50% {
        -webkit-transform: translateY(2.4vw) rotate(0);
                transform: translateY(2.4vw) rotate(0);
    }
    100% {
        -webkit-transform: translateY(2.4vw) rotate(45deg);
                transform: translateY(2.4vw) rotate(45deg);
    }
}

@-webkit-keyframes active-menu-bar03-sp {
    0% {
        -webkit-transform: translateY(0) rotate(0);
                transform: translateY(0) rotate(0);
    }
    50% {
        -webkit-transform: translateY(-2.4vw) rotate(0);
                transform: translateY(-2.4vw) rotate(0);
    }
    100% {
        -webkit-transform: translateY(-2.4vw) rotate(-45deg);
                transform: translateY(-2.4vw) rotate(-45deg);
    }
}

@keyframes active-menu-bar03-sp {
    0% {
        -webkit-transform: translateY(0) rotate(0);
                transform: translateY(0) rotate(0);
    }
    50% {
        -webkit-transform: translateY(-2.4vw) rotate(0);
                transform: translateY(-2.4vw) rotate(0);
    }
    100% {
        -webkit-transform: translateY(-2.4vw) rotate(-45deg);
                transform: translateY(-2.4vw) rotate(-45deg);
    }
}

/* headline
-------------------------------------------------------------------------- */
.c-headline__en, .c-headline__jp {
    display: block;
    text-align: center;
}

.c-headline__en {
    color: #000;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
}

@media screen and (max-width: 767px) {
    .c-headline__en {
        font-size: 72px;
        font-size: 9.6vw;
    }
}

@media screen and (min-width: 768px) {
    .c-headline__en {
        font-size: 75px;
        font-size: 7.5rem;
    }
}

.c-headline__en::first-letter {
    color: #006bbb;
}

.c-headline__en--rev {
    color: #fff;
}

.c-headline__jp {
    color: #006bbb;
}

.c-headline__jp-sub {
    color: #fff;
    margin-top: 10px;
    display: block;
    text-align: center;
    line-height: 1.5em;
}

@media screen and (max-width: 767px) {
    .c-headline__jp {
        margin-top: 1.87vw;
        font-size: 34px;
        font-size: 4.53vw;
    }
}

@media screen and (min-width: 768px) {
    .c-headline__jp {
        margin-top: 8px;
        font-size: 20px;
        font-size: 2rem;
    }
}

@media screen and (min-width: 1024px) {
    .c-headline--information .c-headline__en {
        font-size: 40px;
        font-size: 4rem;
    }
}

@media screen and (min-width: 768px) {
    .c-headline--information .c-headline__jp {
        margin-top: 13px;
    }
}

@media screen and (max-width: 767px) {
    .c-headline__word {
        display: block;
    }
}

@media screen and (min-width: 768px) {
    .c-headline__word {
        margin-left: .5em;
    }
}

/* c-inset
-------------------------------------------------------------------------- */
.c-inset {
    -o-object-fit: contain;
       object-fit: contain;
    font-family: 'object-fit: contain;';
}

/* logo
-------------------------------------------------------------------------- */
.c-logo a {
    display: block;
}

/* modal
-------------------------------------------------------------------------- */
.c-modal {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background-color: rgba(255, 163, 0, .95);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s;
    transition: .3s;
    z-index: 100;
}

@media screen and (max-width: 767px) {
    .c-modal {
        padding: 16vw 5.33vw 0vw 5.33vw;
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    .c-modal {
        padding: 0 15%;
    }
}

.c-modal__contents {
    color: #000;
    width: 100%;
}

@media screen and (max-width: 767px) {
    .c-modal__contents {
        padding: 0vw 0vw 10.67vw 0vw;
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    .c-modal__contents {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

@media screen and (min-width: 1280px) {
    .c-modal__contents {
        padding-top: 80px;
        padding-bottom: 80px;
        max-width: 860px;
        margin: 0 auto;
    }
}

.c-modal.is-open {
    display: block;
    opacity: 1;
    visibility: visible;
}

/* c-outset
-------------------------------------------------------------------------- */
.c-outset {
    -o-object-fit: cover;
       object-fit: cover;
    font-family: 'object-fit: cover;';
}

/* c-rangeSlider
-------------------------------------------------------------------------- */
.c-rangeSlider {
    width: 100%;
    margin: 0;
    margin: 0;
    padding: 0;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    /* WebKit・Blink向け 溝のスタイル */
    /* WebKit・Blink向け つまみのスタイル */
    /* WebKit・Blink向け focus時のスタイル */
    /* Firefox向け 溝のスタイル */
    /* Firefox向け つまみのスタイル */
    /* Edge・IE向け 溝のスタイル */
    /* Edge・IE向け 溝の色（つまみより左側） */
    /* Edge・IE向け 溝の色（つまみより右側） */
    /* Edge・IE向け つまみのスタイル */
    /* Edge・IE向け focus時の色（つまみより左側） */
    /* Edge・IE向け focus時の色（つまみより右側） */
    /* Edge・IE向け ポップアップを非表示に */
}

.c-rangeSlider:focus {
    outline: none;
}

.c-rangeSlider::-webkit-slider-runnable-track {
    width: 100%;
    background-color: #006bbb;
    -webkit-appearance: none;
            appearance: none;
}

@media screen and (max-width: 767px) {
    .c-rangeSlider::-webkit-slider-runnable-track {
        height: 1.33333vw;
        border-radius: 1.6vw;
    }
}

@media screen and (min-width: 768px) {
    .c-rangeSlider::-webkit-slider-runnable-track {
        height: 5px;
        border-radius: 6px;
    }
}

.c-rangeSlider::-webkit-slider-thumb {
    position: relative;
    display: block;
    cursor: pointer;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
    background-color: #fff;
    -webkit-appearance: none;
            appearance: none;
}

@media screen and (max-width: 767px) {
    .c-rangeSlider::-webkit-slider-thumb {
        width: 5.33333vw;
        height: 5.33333vw;
        margin-top: -2.13333vw !important;
        border: .53333vw solid rgba(0, 107, 187, .5);
    }
}

@media screen and (min-width: 768px) {
    .c-rangeSlider::-webkit-slider-thumb {
        width: 20px;
        height: 20px;
        margin-top: -8px !important;
        border: 2px solid rgba(0, 107, 187, .5);
    }
}

.c-rangeSlider:active::-webkit-slider-thumb {
    -webkit-transition: .4s;
    transition: .4s;
}

@media screen and (max-width: 767px) {
    .c-rangeSlider:active::-webkit-slider-thumb {
        width: 6.66667vw;
        height: 6.66667vw;
    }
}

@media screen and (min-width: 768px) {
    .c-rangeSlider:active::-webkit-slider-thumb {
        width: 25px;
        height: 25px;
    }
}

.c-rangeSlider:focus::-webkit-slider-runnable-track {
    background: #006bbb;
}

.c-rangeSlider::-moz-range-track {
    width: 100%;
    background-color: #006bbb;
    -moz-appearance: none;
         appearance: none;
}

@media screen and (max-width: 767px) {
    .c-rangeSlider::-moz-range-track {
        height: 1.33333vw;
        border-radius: 1.6vw;
    }
}

@media screen and (min-width: 768px) {
    .c-rangeSlider::-moz-range-track {
        height: 5px;
        border-radius: 6px;
    }
}

.c-rangeSlider::-moz-range-thumb {
    position: relative;
    display: block;
    cursor: pointer;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
    background-color: #fff;
    -moz-appearance: none;
         appearance: none;
}

@media screen and (max-width: 767px) {
    .c-rangeSlider::-moz-range-thumb {
        width: 5.33333vw;
        height: 5.33333vw;
        margin-top: -2.13333vw !important;
        border: .53333vw solid rgba(0, 107, 187, .5);
    }
}

@media screen and (min-width: 768px) {
    .c-rangeSlider::-moz-range-thumb {
        width: 20px;
        height: 20px;
        margin-top: -8px !important;
        border: 2px solid rgba(0, 107, 187, .5);
    }
}

.c-rangeSlider:active::-moz-range-thumb {
    -webkit-transition: .4s;
    transition: .4s;
}

@media screen and (max-width: 767px) {
    .c-rangeSlider:active::-moz-range-thumb {
        width: 6.66667vw;
        height: 6.66667vw;
    }
}

@media screen and (min-width: 768px) {
    .c-rangeSlider:active::-moz-range-thumb {
        width: 25px;
        height: 25px;
    }
}

.c-rangeSlider::-ms-track {
    width: 100%;
    cursor: pointer;
    color: transparent;
    border-width: 16px 0;
    border-color: transparent;
    background: transparent;
    animate: .2s;
}

@media screen and (max-width: 767px) {
    .c-rangeSlider::-ms-track {
        height: 1.33333vw;
    }
}

@media screen and (min-width: 768px) {
    .c-rangeSlider::-ms-track {
        height: 5px;
    }
}

.c-rangeSlider::-ms-fill-lower {
    background: #006bbb;
}

.c-rangeSlider::-ms-fill-upper {
    background: #08e;
}

.c-rangeSlider::-ms-thumb {
    width: 20px;
    height: 20px;
    cursor: pointer;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
    background-color: #fff;
    appearance: none;
}

@media screen and (max-width: 767px) {
    .c-rangeSlider::-ms-thumb {
        width: 5.33333vw;
        height: 5.33333vw;
        border: .53333vw solid rgba(0, 107, 187, .5);
    }
}

@media screen and (min-width: 768px) {
    .c-rangeSlider::-ms-thumb {
        width: 20px;
        height: 20px;
        border: 2px solid rgba(0, 107, 187, .5);
    }
}

.c-rangeSlider:active::-ms-thumb {
    -webkit-transition: .4s;
    transition: .4s;
}

@media screen and (max-width: 767px) {
    .c-rangeSlider:active::-ms-thumb {
        width: 6.66667vw;
        height: 6.66667vw;
    }
}

@media screen and (min-width: 768px) {
    .c-rangeSlider:active::-ms-thumb {
        width: 25px;
        height: 25px;
    }
}

.c-rangeSlider:focus::-ms-fill-lower {
    background: #006bbb;
}

.c-rangeSlider:focus::-ms-fill-upper {
    background: #0089ef;
}

.c-rangeSlider::-ms-tooltip {
    display: none;
}

/* 何故か上の margin-top 指定が Edge に効いてしまうので、Edge向けに設定をリセット */
@supports (-ms-ime-align: auto) {
    .c-rangeSlider::-webkit-slider-thumb {
        margin-top: 0 !important;
    }
}

/* c-table
-------------------------------------------------------------------------- */
.c-table {
    width: 100%;
}

@media screen and (max-width: 767px) {
    .c-table {
        line-height: 1.6;
    }
}

@media screen and (min-width: 768px) {
    .c-table {
        line-height: 1.6;
    }
}

.c-table th, .c-table td {
    vertical-align: middle;
    line-height: 1.8;
}

@media screen and (max-width: 767px) {
    .c-table th, .c-table td {
        display: block;
        width: 100%;
        padding-left: 2.67vw;
        padding-right: 2.67vw;
    }
}

@media screen and (min-width: 768px) {
    .c-table th, .c-table td {
        padding-top: 17px;
        padding-bottom: 17px;
    }
}

.c-table th {
    text-align: left;
}

@media screen and (max-width: 767px) {
    .c-table th {
        padding-top: 2.67vw;
    }
}

.c-table td {
    text-align: left;
}

@media screen and (max-width: 767px) {
    .c-table td {
        padding-bottom: 2.67vw;
    }
}

.c-table tr:nth-child(odd) {
    background-color: #fff8eb;
}

/* tableTopics
-------------------------------------------------------------------------- */
.info-table__date {
    width: 210px;
    text-align: right !important;
    padding: 17px;
    vertical-align: middle;
    padding-right: 0 !important;
}

@media screen and (max-width: 767px) {
    .info-table__date {
        text-align: left !important;
        margin-left: 10px;
    }
}

.info-table__date span {
    margin-left: 10px;
    display: inline-block;
    width: 60px;
    text-align: center;
}

.info-table__date span.new {
    font-size: 14px;
    background: red;
    color: #fff;
}

.info-table__text {
    width: 800px;
}

@media screen and (max-width: 767px) {
    .info-table__text {
        text-align: left !important;
        padding: 0 10px !important;
    }
}

.info-table__btn a {
    width: 160px;
    height: 40px;
}

@media screen and (max-width: 767px) {
    .info-table__btn a {
        display: inline-block;
        height: 32px;
    }
}

.info-table__btn .c-btn--arrow::after {
    right: 10px;
}

/* tel
-------------------------------------------------------------------------- */
.c-tel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-decoration: none;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    letter-spacing: normal;
}

@media screen and (max-width: 767px) {
    .c-tel {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
}

@media screen and (max-width: 767px) {
    .c-tel__icon {
        width: 9.33333vw;
        margin: 0vw 1.33vw 0vw 0vw;
    }
}

@media screen and (min-width: 768px) {
    .c-tel__icon {
        margin-right: 7px;
    }
}

.c-tel__number {
    color: #5a2f00;
}

@media screen and (max-width: 767px) {
    .c-tel__number {
        font-size: 68px;
        font-size: 9.07vw;
    }
}

@media screen and (min-width: 768px) {
    .c-tel__number {
        font-size: 40px;
        font-size: 4rem;
    }
}

.c-tel__number--white {
    color: #fff;
}

/* title
-------------------------------------------------------------------------- */
.c-title {
    text-align: center;
}

.c-title__jp, .c-title__en {
    display: block;
}

.c-title__jp {
    font-weight: normal;
    letter-spacing: .1em;
}

@media screen and (max-width: 767px) {
    .c-title__jp {
        font-size: 40px;
        font-size: 5.33vw;
    }
}

@media screen and (min-width: 768px) {
    .c-title__jp {
        margin-bottom: 6px;
        font-size: 30px;
        font-size: 3rem;
    }
}

.c-title__en {
    color: #006bbb;
    font-family: 'Raleway', sans-serif;
    font-weight: 900;
    letter-spacing: .1em;
}

@media screen and (max-width: 767px) {
    .c-title__en {
        font-size: 80px;
        font-size: 10.67vw;
    }
}

@media screen and (min-width: 768px) {
    .c-title__en {
        font-size: 60px;
        font-size: 6rem;
    }
}

/* utility
   ----------------------------------------------------------------- */
@media screen and (max-width: 767px) {
    .u-pc {
        display: none !important;
    }
}

@media screen and (min-width: 768px) {
    .u-sp {
        display: none !important;
    }
}

/* ==========================================================================
   page 下層ページ共通部分
   ========================================================================== */
/* p-page
-------------------------------------------------------------------------- */
.p-page {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
}

@media screen and (max-width: 767px) {
    .p-page {
        height: auto;
    }
}

.p-page__heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    text-align: center;
    border-bottom: solid 15px #c3ecfa;
    position: relative;
}

@media screen and (max-width: 767px) {
    .p-page__heading {
        height: 32vw;
    }
}

@media screen and (min-width: 768px) {
    .p-page__heading {
        height: 206px;
    }
}

.p-page__heading:after {
    content: '';
    display: block;
    line-height: 0;
    overflow: hidden;
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 50%;
    border-bottom: 15px solid #b9f2d4;
}

.p-page__lead {
    font-weight: normal;
    text-align: center;
    letter-spacing: .05em;
    line-height: 1.3em;
}

@media screen and (max-width: 767px) {
    .p-page__lead {
        margin-top: 10.67vw;
        margin-bottom: 10.67vw;
        font-size: 65px;
        font-size: 8.67vw;
    }
}

@media screen and (min-width: 768px) {
    .p-page__lead {
        margin-top: 48px;
        margin-bottom: 60px;
        font-size: 40px;
        font-size: 4rem;
    }
}

@media (min-width: 768px) {
    a[href^='tel:'] {
        pointer-events: none;
    }
}

a[href^='tel:'] {
    text-decoration: none;
}

@media screen and (min-width: 768px) {
    a[href^='tel:'] {
        pointer-events: none;
    }
}
