@charset "UTF-8";
html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    font-size: 62.5%;
}

a, address, article, aside, audio, b, big, blockquote, body, button, caption, center, cite, code, dd, details, div, dl, dt, em, fieldset, figcaption, figure, footer, form, form, h1, h2, h3, h4, h5, h6, header, i, iframe, img, input, label, li, main, mark, menu, nav, ol, p, pre, q, s, section, select, small, span, strong, summary, table, tbody, td, textarea, tfoot, th, thead, time, tr, u, ul, video {
    margin: 0;
    padding: 0;
    font-size: inherit;
    box-sizing: border-box;
}

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

audio, canvas, progress, video {
    display: inline-block;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

ol,
ul {
    list-style: none;
}

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

img {
    max-width: 100%;
    vertical-align: bottom;
    border-style: none;
}

svg:not(:root) {
    overflow: hidden;
}

a {
    background-color: transparent;
}

a:active,
a:hover {
    outline-width: 0;
}

b,
strong {
    font-weight: inherit;
    font-weight: bolder;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

button,
input,
select,
textarea {
    font: inherit;
    margin: 0;
}

button,
input,
select {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

[type=button],
[type=reset],
[type=submit],
button {
    cursor: pointer;
}

[disabled] {
    cursor: default;
}

[type=reset],
[type=submit],
button,
html [type=button] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

button:-moz-focusring,
input:-moz-focusring {
    outline: 1px dotted ButtonText;
}

textarea {
    overflow: auto;
}

[type=checkbox],
[type=radio] {
    box-sizing: border-box;
    padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto;
}

[type=search] {
    -webkit-appearance: textfield;
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
    -webkit-appearance: none;
}

blockquote,
q {
    quotes: none;
}

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

body {
    font-family: "Zen Maru Gothic", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
}

[type=button],
[type=reset],
[type=submit],
a,
a img,
button {
    transition: 0.3s;
}

a:hover img {
    opacity: 0.7;
}

/*==================================================================================================
    サイト基礎
==================================================================================================*/
body {
    font-feature-settings: "palt";
    font-size: 1.4rem;
    line-height: 1.7142857143;
}
@media screen and (min-width: 768px) {
    body {
        font-size: 1.6rem;
    }
}
@media screen and (min-width: 1080px) {
    body {
        font-size: 1.8rem;
    }
}
img {
    max-width: none;
    width: 100%;
}

/*==================================================================================================
    共通
=================================================================================================*/
.pc-show {
    display: block;
    position: relative;
}
@media screen and (max-width: 768px) {
    .pc-show {
        display: none;
    }
}

.sp-show {
    display: none;
    position: relative;
}
@media screen and (max-width: 768px) {
    .sp-show {
        display: block;
    }
}

.anim {
    opacity: 0;
}

.fadein.is-animated {
    animation: fadeIn 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.note {
    font-size: 0.8571428571em;
    margin-top: 1em;
}
.note li {
    text-indent: -1em;
    margin-left: 1em;
}
.note li + li {
    margin-top: 0.5em;
}

/*==================================================================================================
    header
==================================================================================================*/
.site-header {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    height: 3.8571428571em;
}
@media screen and (min-width: 1000px) {
    .site-header {
        left: 50%;
        transform: translate(-50%, 0);
    }
}

.menu-btn {
    border: none;
    position: absolute;
    right: 0;
    top: 0;
    width: 3.8571428571em;
    height: 3.8571428571em;
    margin-left: auto;
    background: transparent;
    text-align: center;
    padding: 1em 0em 2.1428571429em;
    color: #000;
}
.menu-btn > span {
    display: block;
    position: relative;
    height: 100%;
    width: 29.6296296296%;
    margin: 0 auto;
}
.menu-btn > span > span {
    display: block;
    background: #000;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    transition: 0.5s;
    transform-origin: center center;
}
.menu-btn > span > span:nth-child(1) {
    top: 0;
    transform: rotate(0deg);
}
.menu-btn > span > span:nth-child(2) {
    top: 50%;
    width: 100%;
}
.menu-btn > span > span:nth-child(3) {
    top: 100%;
    transform: rotate(0deg);
}
.menu-btn--opened span {
    transform: translateY(0px) rotate(-45deg);
    transition: 0.5s;
}
.menu-btn--opened span span:nth-child(1) {
    transform: rotate(0deg) translateY(0.2857142857em);
}
.menu-btn--opened span span:nth-child(2) {
    opacity: 0;
}
.menu-btn--opened span span:nth-child(3) {
    transform: rotate(-90deg) translateX(0.4285714286em);
}

.header-cont {
    display: none;
    position: fixed;
    left: 0;
    top: 3.8571428571em;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
}

.header-nav .g-nav {
    width: 100%;
}
.header-nav .g-nav__list {
    position: relative;
    padding: 0 1em;
    transition: 0.3s;
}
.header-nav .g-nav__list > a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    display: block;
    line-height: 5.7142857143em;
    border-top: 1px solid #333;
    position: relative;
    padding: 0 1em;
}
.header-nav .g-nav__list > a:hover, .header-nav .g-nav__list > a.active {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    font-weight: bold;
}
.header-nav .g-nav__list > a:after {
    content: "";
    background: url(../img/common/icon_arrow_g.svg) no-repeat;
    position: absolute;
    right: 1em;
    top: 50%;
    width: 0.5em;
    height: 1em;
    transform: translate(0, -50%);
}

/*==================================================================================================
    pagetop
==================================================================================================*/
.pagetop {
    position: fixed;
    right: 1em;
    bottom: 1em;
    width: 3.2142857143em;
    z-index: 100;
    transition: 0.3s;
}
.pagetop:hover {
    margin-bottom: 5px;
}

/*==================================================================================================
    footer
==================================================================================================*/
.site-footer {
    padding: 4em 0 3em;
    text-align: center;
}
.site-footer .footer-cont .footer-link {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1em;
}
.site-footer .footer-cont .footer-link li {
    width: 2.8571428571em;
    margin: 0 0.5em;
}
.site-footer .footer-cont .footer-logo {
    margin-top: 1.5em;
}
.site-footer .footer-cont .footer-logo img {
    width: 9.4285714286em;
}
.site-footer .footer-cont .footer-textlink {
    margin-top: 1.5em;
}
.site-footer .footer-cont .footer-textlink a {
    color: #333;
    text-decoration: none;
    font-size: 0.8571428571em;
    display: inline-block;
    background: #eaeaea;
    border-radius: 50px;
    line-height: 1.4;
    padding: 1em 3em;
    position: relative;
    font-weight: bold;
}
.site-footer .footer-cont .footer-textlink a:after {
    content: "";
    background: url(../img/common/external_link.svg) no-repeat;
    width: 1em;
    height: 1em;
    position: absolute;
    right: 1em;
    top: 50%;
    transform: translate(0, -50%);
}
.site-footer .footer-cont .footer-textlink a:hover {
    opacity: 0.8;
}
.site-footer .copylight {
    margin-top: 1.5em;
    font-size: 0.7142857143em;
}