@charset "UTF-8";
/* ==========================================================
Name:
    base.css

Description:
    サイト全体に共通する設定を記述する

Contents:
    base settings
    javascript style hooks
    base blocks
========================================================== */

@font-face {
    font-family: 'NotoSansCJKjp-Black';
    src: url("../font/NotoSansCJKjp-Black.woff") format("woff");
}
@font-face {
    font-family: 'NotoSansCJKjp-Regular';
    src: url("../font/NotoSansCJKjp-Regular.woff") format("woff");
}
@font-face {
    font-family: 'NotoSansCJKjp-Light';
    src: url("../font/NotoSansCJKjp-Light.woff") format("woff");
}
@font-face {
 font-family: 'NotoSansCJKjp-Bold';
 src: url("../font/NotoSansCJKjp-Bold.woff") format("woff");
}
 @font-face {
 font-family: 'NotoSansCJKjp-Medium';
 src: url("../font/NotoSansCJKjp-Medium.woff") format("woff");
}
 @font-face {
 font-family: 'DIN-Condensed-Bold';
 src: url("../font/DIN-Condensed-Bold.woff") format("woff");
}


/* ==========================================================
*
*   base settings
*
========================================================== */
/* ---------------------------------------------
*   html, body
--------------------------------------------- */
html,
body {
    color: #000;
    font-size: 14px;
    font-family: "Hiragino Kaku Gothic ProN", "meiryo", sans-serif;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
}

@media screen and (max-width: 750px) {
    html,
    body {
        font-size: 1.86667vw;
    }
}


body {
    min-width: 1240px;
    line-height: 1.5;
}

@media screen and (max-width: 750px) {
    body {
        min-width: 320px;
        line-height: 1.5;
    }
}

/* ---------------------------------------------
*   <a> tag
--------------------------------------------- */
a {
    color: inherit;
    text-decoration: none;
}

/* ---------------------------------------------
*   <img> tag
--------------------------------------------- */
img {
    max-width: 100%;
    width: auto;
    height: auto;
    vertical-align: bottom;
}

/* ==========================================================
*
*   javascript style hooks
*
========================================================== */
/* ==========================================================
*
*   base blocks
*
========================================================== */
/* ---------------------------------------------
*   header
--------------------------------------------- */
.header {
    height: 60px;
    border-bottom: 1px solid #a8a8a9;
    background-color: #fff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
}

@media screen and (max-width: 750px) {
    .header {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9000;
        width: 100%;
        height: 70px;
    }
    .js-sp-menu-opened .header {
        display: block !important;
        opacity: 1 !important;
    }
    .header.off {
        -webkit-transition: 0.3s;
        transition: 0.3s;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    .header.on {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }
}

.header__btn {
    margin-top: 12px;
    width: 335px;
    border-radius: 10px;
    background-color: #e5004d;
    color: #fff;
    text-align: center;
    font-size: 23px;
    font-family: 'NotoSansCJKjp-Black';
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
}

.header__btn:hover {
    opacity: 0.8;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

@media screen and (max-width: 750px) {
    .header__btn {
        display: block;
        margin: 0 auto;
        margin-top: 0;
        padding: 2.66667vw;
        width: 60%;
        border-radius: 1vw;
        font-size: 4.8vw;
    }
}

.header__btn-s {
    font-family: 'NotoSansCJKjp-Light';
}

/*  header-container
--------------------------------------------- */
.header-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    margin: 0 auto;
    width: 1210px;

    -webkit-box-pack: justify;
    justify-content: space-between;
}

@media screen and (max-width: 750px) {
    .header-container {
        width: 100%;
    }
}

/*  header-logo
--------------------------------------------- */
@media screen and (max-width: 750px) {
    .header-logo {
        margin-top: 5px;
        margin-left: 15px;
    }
}

.header-logo__link {
    display: block;
    margin-top: 10px;
    width: 427px;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
}

.header-logo__link:hover {
    opacity: 0.8;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

@media screen and (max-width: 750px) {
    .header-logo__link {
        width: 224px;
    }
}

.header-logo__link img {
    width: 100%;
}

/*  header-menu-button
--------------------------------------------- */
.header-menu-button {
    position: relative;
    display: block;
    margin: 0;
    padding: 25px;
    outline: none;
    border: 0;
    border-radius: 0;
    background: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: pointer;

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.header-menu-button__lines {
    position: relative;
    display: block;
    width: 30px;
    height: 20px;
}

.header-menu-button__line {
    position: absolute;
    left: 0;
    display: block;
    padding-top: 3px;
    width: 100%;
    height: 0;
}

.header-menu-button__line--top {
    top: 0;
    background-color: #848484;
}

.header-menu-button__line--center {
    top: 50%;
    margin-top: -1.5px;
    background-color: #848484;
}

.header-menu-button__line--bottom {
    bottom: 0;
    background-color: #848484;
}

/* ---------------------------------------------
*   wrapper
--------------------------------------------- */
@media screen and (max-width: 750px) {
    .wrapper {
        margin-top: 70px;
    }
    .wrapper.off {
        margin-top: 0;
    }
}

/* ---------------------------------------------
*   contents
--------------------------------------------- */
.contents {
    background-color: #d2f7f7;
}

/* ---------------------------------------------
*   main
--------------------------------------------- */
.main {
    margin: 0 auto;
    width: 1240px;
}

@media screen and (max-width: 750px) {
    .main {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding: 0 2.66667vw;
        width: 100%;
    }
}

/* ---------------------------------------------
*   footer
--------------------------------------------- */
.footer {
    margin: 0 auto;
    margin-top: 20px;
    width: 1240px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background-color: #51cad5;
}

@media screen and (max-width: 750px) {
    .footer {
        margin-top: 2.66667vw;
        width: 100%;
        border-radius: 0;
        background-color: #79d5dd;
    }
}

.footer__txt {
    padding-top: 25px;
    padding-left: 55px;
    color: #1a489d;
    letter-spacing: 0.05em;
    font-size: 25px;
    font-family: 'NotoSansCJKjp-Black';
}

@media screen and (max-width: 750px) {
    .footer__txt {
        margin-bottom: 3.6vw;
        padding-top: 0.93333vw;
        padding-left: 0;
        text-align: center;
        font-size: 2.66vw;
    }
}

.footer__txt-border {
    border-bottom: 2px solid #1a489d;
}

.footer__txt-s {
    font-family: 'NotoSansCJKjp-Medium';
}

.footer__link {
    margin-top: 32px;
    margin-right: 30px;
    padding: 10px 0;
    padding: 10px 0;
    width: 540px;
    border-radius: 10px;
    border-radius: 10px;
    background-color: #e5004d;
    color: #fff;
    text-align: center;
    font-size: 33px;
    font-family: 'NotoSansCJKjp-Black';
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
}

.footer__link:hover {
    opacity: 0.8;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

@media screen and (max-width: 750px) {
    .footer__link {
        display: block;
        margin: 0 auto;
        margin-top: 2.66667vw;
        width: 69.33333vw;
        border-radius: 1.33333vw;
        font-size: 4vw;
    }
    .footer__link_2 {
      background-color:#0fb7c8 !important;
      margin:2vw auto !important;

    }
}

@media screen and (max-width: 750px) {
    .footer__link--move {
        margin-top: 2.66667vw;
    }
}

.footer__link-s {
    font-family: 'NotoSansCJKjp-Light';
}

.footer-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    -ms-flex-align: center;

    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
}

@media screen and (max-width: 750px) {
    .footer-flex {
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;

        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
    }
}

.footer-flex-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    -ms-flex-align: baseline;
    padding-top: 20px;
    padding-bottom: 30px;

    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: baseline;
    align-items: baseline;
}

@media screen and (max-width: 750px) {
    .footer-flex-bottom {
        display: block;
        padding: 0;
    }
}

.footer-container {
    position: relative;
}

/*  footer-pagetop
--------------------------------------------- */
.footer-pagetop {
    position: fixed;
    right: 20px;
    bottom: 75px;
    z-index: 1000;
}

@media screen and (max-width: 750px) {
    .footer-pagetop {
        position: absolute;
        right: 1.33333vw;
        bottom: 16vw;
    }
    .footer-pagetop--fix {
        position: absolute;
        top: -6vw;
        right: 1.33333vw;
    }
}

.footer-pagetop__link {
    display: block;
    width: 100px;
    height: auto;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
}

.footer-pagetop__link:hover {
    opacity: 0.8;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

@media screen and (max-width: 750px) {
    .footer-pagetop__link {
        width: 13.33333vw;
    }
}

.footer-pagetop__link img {
    width: 100%;
}

/*  footer-nav
--------------------------------------------- */
.footer-nav {
    margin-left: 70px;
}

@media screen and (max-width: 750px) {
    .footer-nav {
        margin-left: 0;
    }
}

.footer-nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;

    -webkit-box-pack: justify;
    justify-content: space-between;
}

@media screen and (max-width: 750px) {
    .footer-nav__list {
        margin: 0 auto;
        width: 80%;
    }
}

.footer-nav__list-item {
    margin-right: 30px;
}

@media screen and (max-width: 750px) {
    .footer-nav__list-item {
        margin-right: 3vw;
    }
}

.footer-nav__link {
    position: relative;
    color: #fff;
    font-size: 17px;
    font-family: 'NotoSansCJKjp-Medium';
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
}

.footer-nav__link:hover {
    opacity: 0.8;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

@media screen and (max-width: 750px) {
    .footer-nav__link {
        font-size: 2.26667vw;
    }
}

.footer-nav__link:before {
    position: absolute;
    top: 8px;
    left: -15px;
    width: 10px;
    height: 10px;
    background: url(../img/icon_arrow_03.png) 0 0 no-repeat;
    background-size: 100% auto;
    content: "";
}

@media screen and (max-width: 750px) {
    .footer-nav__link:before {
        top: 1.06667vw;
        left: -2vw;
        width: 1.33333vw;
        height: 1.33333vw;
    }
}

@media screen and (max-width: 750px) {
    .footer-nav__link--btn {
        position: fixed;
        bottom: 10vw;
    }
}

/*  ios FBクリック対策
--------------------------------------------- */
.contactButton{
    cursor: pointer;
}

/*  footer-copyright
--------------------------------------------- */
.footer-copyright {
    margin-right: 33px;
}

@media screen and (max-width: 750px) {
    .footer-copyright {
        margin-right: 0;
    }
}

.footer-copyright__text {
    display: block;
    color: #fff;
    text-align: center;
    font-size: 12px;
    font-family: 'NotoSansCJKjp-Medium';
}

@media screen and (max-width: 750px) {
    .footer-copyright__text {
        margin-top: 1.06667vw;
        padding-bottom: 2vw;
        font-size: 1.6vw;
    }
}

/*  footer-sp
--------------------------------------------- */
.footer-sp {
    position: fixed;
    bottom: 0;
    z-index: 2000;
    width: 100%;
    background-color: #79d5dd;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: translateY(150%);
    transform: translateY(150%);
}

.footer-sp.on {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
}

.footer-sp__inner {
    position: relative;
    padding-top: 2.66667vw;
    padding-bottom: 2.66667vw;
}
