@charset "UTF-8";
/* ==========================================================
Name:
    base.css

Description:
    サイト全体に共通する設定を記述する

Contents:
    base settings
    javascript style hooks
    base blocks
========================================================== */
/*indent parent -sp-
--------------------------------------------- */
/*indent children -sp-
--------------------------------------------- */
/* ==========================================================
*
*   base settings
*
========================================================== */
/* ---------------------------------------------
*   html, body
--------------------------------------------- */
html,
body {
    position: relative;
    color: #404040;
    font-size: 16px;
    font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "meiryo", sans-serif;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
}

@media screen and (max-width: 738px) {
    html,
    body {
        font-size: 2.84553vw;
    }
}

body {
    min-width: 1280px;
    line-height: 1.5;
}

@media screen and (max-width: 738px) {
    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;
}

/* ---------------------------------------------
*   <hr> tag as anchor target
--------------------------------------------- */
hr[id^="anchor-"] {
    display: block;
    margin: 0;
    padding: 0;
    width: auto;
    height: 0;
    border: 0;
    background: 0;
}

hr[id^="anchor-"] {
    margin-top: 0px;
    padding-top: 0px;
}

@media screen and (max-width: 738px) {
    hr[id^="anchor-"] {
        margin-top: 0px;
        padding-top: 0px;
    }
}

/* ==========================================================
*
*   javascript style hooks
*
========================================================== */
/* ---------------------------------------------
*   js-tel-disabled
--------------------------------------------- */
.js-tel-disabled {
    outline: none;
    cursor: default;
}

.js-tel-disabled:hover {
    text-decoration: none;
    opacity: 1;
}

/* ==========================================================
*
*   base blocks
*
========================================================== */
/* ---------------------------------------------
*   header
--------------------------------------------- */
.header {
    position: relative;
    z-index: 99;
}

/*  header-container
--------------------------------------------- */
.header-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: auto;
    margin-left: auto;
    padding-top: 30px;
    padding-right: 0;
    padding-left: 0;
    max-width: 1280px;
    width: 1280px;
    height: 70px;

    -webkit-box-align: center;
    align-items: center;
}

@media screen and (max-width: 738px) {
    .header-container {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 99999;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        margin-right: auto;
        margin-left: auto;
        padding-right: 5.28455vw;
        padding-left: 5.28455vw;
        width: auto;
        height: 14.90515vw;
        -webkit-transition: background-color 0.3s;
        transition: background-color 0.3s;
    }
    .header-container--add {
        width: 100% !important;
        background-color: rgba(0, 0, 0, 0.5);
    }
}

/*  header-inner
--------------------------------------------- */
@media screen and (max-width: 738px) {
    .header-inner {
        background-color: #E3A000;
    }
}

/*  header-logo
--------------------------------------------- */
.header-logo {
    padding: 0 100px 0 50px;
    width: 300px;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
}

.header-logo:hover {
    opacity: 0.8;
}

.header-logo__link {
    width: 100%;
}

@media screen and (max-width: 738px) {
    .header-logo {
        position: absolute;
        top: 5.42005vw;
        left: 27.10027vw;
        margin: 0 auto;
        padding: 0;
        width: 49.729vw;
    }
}

/*  header-nav
--------------------------------------------- */
.header-nav {
    width: 760px;
}

@media screen and (min-width: 739px) {
    .header-nav {
        display: block !important;
    }
}

.header-nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;

    -webkit-box-pack: justify;
    justify-content: space-between;
}

.header-nav__list-item {
    color: #fff;
    font-weight: bold;
    font-size: 0.75rem;
    -webkit-transition: color 0.8s;
    transition: color 0.8s;
}

@media screen and (min-width: 739px) {
    .header-nav__list-item:hover {
        color: #006B9B;
    }
}

.header-nav__link {
    position: relative;
}

.header-nav__link--estimate {
    padding: 17px 17px;
    border: 2px solid #fff;
    -webkit-transition: border 0.8s;
    transition: border 0.8s;
}

.header-nav__link--estimate:hover {
    border: 2px solid #006B9B;
}

.header-nav__link--contact {
    padding: 17px 25px 17px 60px;
    border: 2px solid #006B9B;
    background: url(../img/common/icon_mail_blue.svg) left 20px top 50% no-repeat;
    background-color: #006B9B;
    background-size: 30px 30px;
    color: #fff;
    -webkit-transition: border 0.8s;
    -webkit-transition: color 0.8s;
    transition: border 0.8s;
    transition: color 0.8s;
}

@media screen and (min-width: 739px) {
    .header-nav__link--contact:hover {
        color: #fff;
    }
}

.header-nav__link--contact:hover {
    border: 2px solid #fff;
}

.header-nav__link--current:before {
    position: absolute;
    top: -45px;
    left: 50%;
    z-index: 999;
    display: block;
    width: 70px;
    height: 10px;
    background: #fff;
    content: "";
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.header-nav__link--current-estimate {
    border: 2px solid #E3A000;
    background-color: #E3A000;
}

.header-nav__link--current-contact {
    border: 2px solid #E3A000;
    background: url(../img/common/icon_mail_yellow.svg) left 20px top 50% no-repeat;
    background-color: #E3A000;
    background-size: 30px 30px;
}

@media screen and (max-width: 738px) {
    .header-nav {
        position: fixed;
        top: 0;
        left: 0;
        display: none;
        overflow-y: scroll;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.8);
    }
    .header-nav__list {
        display: block;
        padding-top: 22.35772vw;
    }
    .header-nav__list-item {
        padding: 3.38753vw 0;
        color: #fff;
        text-align: center;
        font-weight: bold;
        font-size: 1.19048rem;
        -webkit-transition: color 0.8s;
        transition: color 0.8s;
    }
}

@media screen and (max-width: 738px) and (min-width: 739px) {
    .header-nav__list-item:hover {
        color: #006B9B;
    }
}

@media screen and (max-width: 738px) {
    .header-nav__link {
        position: relative;
        padding: 1.35501vw 1.49051vw 1.35501vw 2.43902vw;
        border: 1px solid #fff;
        color: #fff;
        vertical-align: middle;
        letter-spacing: 0.4rem;
    }
    .header-nav__link--estimate {
        border: 1px solid #fff;
        -webkit-transition: border 0.8s;
        transition: border 0.8s;
    }
    .header-nav__link--estimate:hover {
        border: 1px solid #fff;
    }
    .header-nav__link--contact {
        border: 1px solid #fff;
        background: none;
        background-color: #006B9B;
        background-color: transparent;
        -webkit-transition: border 0.8s;
        transition: border 0.8s;
    }
    .header-nav__link--contact:hover {
        border: 1px solid #fff;
    }
    .header-nav__link--current:before {
        display: none;
    }
    .header-nav__link--current-estimate {
        border: 2px solid #fff;
        background-color: transparent;
    }
    .header-nav__link--current-contact {
        border: 2px solid #fff;
        background: none;
    }
}

/*  header-sp-trigger
--------------------------------------------- */
@media screen and (max-width: 738px) {
    .header-sp-trigger {
        position: absolute;
        top: 4.06504vw;
        left: 5.42005vw;
        display: inline-block;
        width: 7.04607vw;
        height: 7.31707vw;
        border: 1px solid #fff;
    }
    .header-sp-trigger__bar {
        position: absolute;
        left: 50%;
        width: 70%;
        height: 0.67751vw;
        background-color: #fff;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .head-nav-opened .header-sp-trigger__bar {
        left: 15%;
    }
    .header-sp-trigger__bar--1 {
        top: 1.08401vw;
    }
    .head-nav-opened .header-sp-trigger__bar--1 {
        -webkit-transform: translateY(2.2vw) rotate(-45deg);
        transform: translateY(2.2vw) rotate(-45deg);
    }
    .header-sp-trigger__bar--2 {
        top: 3.31978vw;
        height: 0.67751vw;
    }
    .head-nav-opened .header-sp-trigger__bar--2 {
        opacity: 0;
    }
    .header-sp-trigger__bar--3 {
        bottom: 1.08401vw;
    }
    .head-nav-opened .header-sp-trigger__bar--3 {
        -webkit-transform: translateY(-2.2vw) rotate(45deg);
        transform: translateY(-2.2vw) rotate(45deg);
    }
}

/*  sp-contact
--------------------------------------------- */
.sp-contact-link {
    position: absolute;
    top: 4.06504vw;
    left: 85.36585vw;
    padding: 3.38753vw 4.06504vw;
    border: 2px solid #006B9B;
    background: url(../img/common/icon_mail_blue.svg) 50% 50% no-repeat;
    background-color: #006B9B;
    background-size: 4.74255vw 4.74255vw;
    color: #fff;
    -webkit-transition: border 0.8s;
    -webkit-transition: color 0.8s;
    transition: border 0.8s;
    transition: color 0.8s;
}

@media screen and (min-width: 739px) {
    .sp-contact-link:hover {
        color: #fff;
    }
}

.sp-contact-link:hover {
    border: 2px solid #fff;
}

.sp-contact-link--current {
    border: 2px solid #E3A000;
    background: url(../img/common/icon_mail_yellow.svg) 50% 50% no-repeat;
    background-color: #E3A000;
    background-size: 4.74255vw 4.74255vw;
}

.sp-contact-link--current:hover {
    border: 2px solid #E3A000;
}

.head-nav-opened .sp-contact {
    background-color: rgba(0, 0, 0, 0.6);
}

.head-nav-opened .sp-contact-link {
    border: none;
    background-color: rgba(0, 0, 0, 0.6);
}

.head-nav-opened .sp-contact-link {
    background: none;
}

/* ---------------------------------------------
*   wrapper
--------------------------------------------- */
.wrapper {
    overflow: hidden;
}

div#\#top.wrapper {
    margin-top: -70px;
}

@media screen and (max-width: 738px) {
    div#\#top.wrapper {
        margin-top: 0;
    }
}

/* ---------------------------------------------
*   global-nav
--------------------------------------------- */
/* ---------------------------------------------
*   contents
--------------------------------------------- */
.contents {
    padding-top: 600px;
}

div#\#top .contents {
    padding-top: 0;
}

@media screen and (max-width: 738px) {
    .contents {
        padding-top: 104.33604vw;
    }
}

/* ---------------------------------------------
*   main
--------------------------------------------- */
/* ---------------------------------------------
*   footer
--------------------------------------------- */
.footer {
    position: relative;
    padding: 100px 0 60px;
    background-color: #006B9B;
}

@media screen and (max-width: 738px) {
    .footer {
        padding: 17.61518vw 0 10.84011vw;
    }
}

/*  footer-pagetop
--------------------------------------------- */
.footer-pagetop__link-text {
    position: absolute;
    top: -50px;
    right: 50px;
    display: block;
    width: 100px;
    height: 100px;
}

.footer-pagetop__link-text-active {
    display: block;
    display: none;
    background: none !important;
    background-color: #006B9B;
    opacity: 1;
    -webkit-animation-name: fade-in;
    -webkit-animation-name: fade-in;
    -moz-animation-name: fade-in;
    -moz-animation-name: fade-in;
    animation-name: fade-in;
    animation-name: fade-in;
    -webkit-animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    -moz-animation-duration: 0.3s;
    -moz-animation-duration: 0.3s;
    animation-duration: 0.3s;
    animation-duration: 0.3s;
}

@-webkit-keyframes fade-in {
    0% {
        display: none;
        opacity: 0;
    }
    1% {
        display: block;
        opacity: 0;
    }
    100% {
        display: block;
        opacity: 1;
    }
}

@keyframes fade-in {
    0% {
        display: none;
        opacity: 0;
    }
    1% {
        display: block;
        opacity: 0;
    }
    100% {
        display: block;
        opacity: 1;
    }
}

@media screen and (min-width: 739px) {
    .footer-pagetop:hover .footer-pagetop__link-text-active {
        display: block;
    }
    .footer-pagetop:hover .footer-pagetop__link-text-normal {
        display: none;
    }
}

@media screen and (max-width: 738px) {
    .footer-pagetop__link-text {
        position: absolute;
        top: -6.77507vw;
        right: 4.06504vw;
        display: block;
        width: 16.26016vw;
        height: 16.26016vw;
    }
}

/*  footer-container
--------------------------------------------- */
.footer-container {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: auto;
    margin-left: auto;
    padding-right: 0;
    padding-left: 0;
    max-width: 1280px;
    width: 1280px;
    text-align: center;
}

@media screen and (max-width: 738px) {
    .footer-container {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        margin-right: auto;
        margin-left: auto;
        padding-right: 5.28455vw;
        padding-left: 5.28455vw;
        width: auto;
    }
}

/*  footer-link"
--------------------------------------------- */
.footer-link__content {
    display: block;
    margin: 0 auto;
    margin-bottom: 45px;
    width: 250px;
    text-align: center;
    font-size: 1.25rem;
    line-height: 3.2;
}

.ie11 .footer-link__content {
    padding-top: 6.5px;
}

@media screen and (max-width: 738px) {
    .footer-link__content {
        width: 31.16531vw;
        font-size: 0.95238rem;
        line-height: 3;
    }
}

@media screen and (max-width: 738px) {
    .footer-link__content {
        margin-bottom: 4.06504vw;
    }
}

.footer-link__content--black {
    border: 2px solid #000;
    background-color: #fff;
    color: #000;
    -webkit-transition: background-color 0.8s;
    transition: background-color 0.8s;
}

@media screen and (min-width: 739px) {
    .footer-link__content--black:hover {
        background-color: #E3A000;
        color: #fff;
    }
}

.footer-link__content--white {
    border: 2px solid #fff;
    background-color: #E3A000;
    color: #fff;
    font-weight: bold;
    -webkit-transition: background-color 0.8s;
    transition: background-color 0.8s;
}

@media screen and (min-width: 739px) {
    .footer-link__content--white:hover {
        background-color: #006B9B;
        color: #fff;
    }
}

/*  footer-nav
--------------------------------------------- */
.footer-nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;

    -webkit-box-pack: center;
    justify-content: center;
}

.footer-nav__list-item {
    padding: 0 10px;
    border-right: 1px solid #fff;
    color: #fff;
    line-height: 1;
    -webkit-transition: color 0.8s;
    transition: color 0.8s;
}

@media screen and (min-width: 739px) {
    .footer-nav__list-item:hover {
        color: #E3A000;
    }
}

.ie11 .footer-nav__list-item {
    padding-top: 3px;
}

.footer-nav__list-item:first-child {
    border-left: 1px solid #fff;
}

@media screen and (max-width: 738px) {
    .footer-nav {
        padding-top: 6.09756vw;
    }
    .footer-nav__list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: center;

        -webkit-box-pack: center;
        justify-content: center;
    }
    .footer-nav__list-item {
        padding: 0 2.43902vw;
        border-right: 1px solid #fff;
        color: #fff;
        font-size: 0.7619rem;
        line-height: 1;
        -webkit-transition: color 0.8s;
        transition: color 0.8s;
    }
}

@media screen and (max-width: 738px) and (min-width: 739px) {
    .footer-nav__list-item:hover {
        color: #E3A000;
    }
}

@media screen and (max-width: 738px) {
    .footer-nav__list-item:first-child {
        border-left: 1px solid #fff;
    }
}

/*  footer-info
--------------------------------------------- */
.footer-info {
    color: #fff;
}

.footer-info__comapny {
    padding: 40px 0 10px;
    font-size: 1.25rem;
}

@media screen and (max-width: 738px) {
    .footer-info__comapny {
        padding: 6.77507vw 0 2.03252vw;
        font-size: 0.95238rem;
    }
}

@media screen and (max-width: 738px) {
    .footer-info__address {
        font-size: 0.7619rem;
        line-height: 1.7;
    }
}

/*  footer-copyright
--------------------------------------------- */
.footer-copyright {
    color: #fff;
}

@media screen and (max-width: 738px) {
    .footer-copyright {
        padding-top: 0.67751vw;
        font-size: 0.7619rem;
    }
}
