@charset "utf-8";

/* CSS INFORMATION -====================================================
File name : base.css
Description : 共通ベースラインCSS
===================================================================== */


/* =====================================================================
*    共通・大枠
* =================================================================== */

html {
    font-size: calc(10 / 750 * 100vw);
}

@media screen and (min-width: 700px) {
    html {
        font-size: calc(10 / 1040 * 100vw);
    }
}

@media screen and (min-width: 1040px) {
    html {
        font-size: 10px;
    }
}

body {
    overflow-x: hidden;
}

.gDef-top-banner {
    background-color: #9ad9e0;
}

#gDefFooter {
    position: relative;
    z-index: 2;
}

.gDef-contents {
    background: url(../images/bg_pattern1.jpg) repeat center/10rem auto;
}

.gDef-contents * {
    position: relative;
    font-family: YakuHanJP, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
    font-weight: bold;
    line-height: 1.5;
    color: #4d524e;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.gDef-contents img {
    width: 100%;
    height: auto;
    display: block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.gDef-contents a {
    display: block;
    text-decoration: none;
}

@media screen and (min-width: 700px) {
    .gDef-contents a {
        -webkit-transition: 0.2s ease;
        transition: 0.2s ease;
    }
}

@media screen and (max-width: 699px) {
    .pc {
        display: none !important;
    }
}

@media screen and (min-width: 700px) {
    .sp {
        display: none !important;
    }
}

@media screen and (max-width: 1039px) {
    .pc2 {
        display: none !important;
    }
}

@media screen and (min-width: 1040px) {
    .sp2 {
        display: none !important;
    }
}

.inner {
    z-index: 2;
}

.inner_wrap {
    z-index: 2;
}

.sec_ttl {
    margin: 0 auto calc(60 / 750 * 100%);
}

@media screen and (min-width: 700px) {
    .wrapper::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 2.3rem;
        background: url(../images/img_separator1.png) repeat-x center/auto 100%;
    }
    .inner {
        width: 100%;
        max-width: 1040px;
        margin: 0 auto;
        padding: 0 300px 0 0;
    }
    .inner_wrap {
        padding: 0 calc(30 / 740 * 100%) 0 0;
    }
    .sec_ttl {
        margin: 0 auto calc(40 / 710 * 100%);
    }
}

@media screen and (min-width: 1040px) {}


/* =====================================================================
*    footer
* =================================================================== */

#footer {
    background-color: #9ad9e0;
}

#footer::before {
    content: '';
    position: absolute;
    top: -2.2rem;
    left: 0;
    width: 100%;
    height: 2.3rem;
    transform: scale(1, -1);
    background: url(../images/img_separator1.png) repeat-x center/auto 100%;
}

.pagetop {
    z-index: 2;
}

.pagetop a {
    width: calc(200 / 750 * 100%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: calc(-170 / 750 * 100%) auto 0;
}

#footer p {
    display: block;
    padding: 10rem 0;
    font-size: 1.6rem;
    font-weight: normal;
    line-height: 1.3;
    text-align: center;
    color: #fff;
}

@media screen and (min-width: 700px) {
    .pagetop a {
        width: calc(135 / 710 * 100%);
        margin: calc(-101 / 710 * 100%) auto 0;
    }
    .pagetop a:hover {
        animation: 1s linear infinite rotation;
    }
}

@keyframes rotation {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media screen and (min-width: 1040px) {}