@charset "UTF-8";
ul, li {
    list-style: none;
}
* {
    box-sizing: border-box;
    outline: 0;
}
:root {
    --vw: 1vw;
}
@media only screen and (max-width: 767.98px) {
    .tbpc-only {
        display: none !important;
    }
}
@media print, screen and (min-width: 768px) {
    .sp-only {
        display: none !important;
    }
}
body {
    position: relative;
    z-index: 1;
    color: #000;
    line-height: 1.714;
    font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
    font-weight: 500;
    letter-spacing: 0.02em;
    font-size: 14px;
    font-size: calc(var(--vw) * 16 / 2000 * 100);
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    text-align: left;
    margin: 0;
}
@media only screen and (max-width: 767.98px) {
    body {
        min-width: 0;
        font-size: calc(var(--vw) * 14 / 768 * 100);
        width: 100%;
        min-width: inherit;
    }
}
@media screen and (min-width: 2000px) {
    body {
        font-size: 18px;
    }
}
body.hidden {
    /* when modal active */
    touch-action: none;
    -webkit-overflow-scrolling: none;
    overflow: hidden;
    /* Other browsers */
    overscroll-behavior: none;
}
input, select, button, textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: none;
    border-radius: 0;
    font: inherit;
    outline: none;
}
textarea {
    resize: vertical;
}
input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
    -moz-appearance: textfield;
}
input[type=number] {
    -moz-appearance: textfield;
}
input[type=checkbox], input[type=radio] {
    position: absolute;
    opacity: 0;
    height: 1px;
    width: 1px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
input[type=submit], input[type=button], label, button, select {
    cursor: pointer;
}
select::-ms-expand {
    display: none;
}
input[type=checkbox] {
    display: none;
}
sup {
    font-size: 0.7em;
    vertical-align: top;
}
a, button {
    text-decoration: none;
    color: #000;
}
img {
    width: 100%;
    vertical-align: bottom;
    pointer-events: none !important;
    -webkit-touch-callout:none;
    -webkit-user-select:none;
}
a.fade, div.fade, input.fade {
    transition: opacity 0.4s;
    opacity: 1;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
a.fade:hover, div.fade:hover, input.fade:hover {
    opacity: 0.6;
}
#wrapper {
    position: relative;
}
.fadeObj {
    opacity: 0;
    transition: 0.6s;
}
.fadeObj.is-active {
    opacity: 1;
    transition: 0.6s;
}
/*------------------------------------------------
Header
------------------------------------------------*/
header {
    width: 100%;
    height: calc(var(--vw) * 112 / 2000 * 100);
    background: #fff;
    border-bottom: solid calc(var(--vw) * 8 / 2000 * 100) #0d9606;
}
header .in {
    position: relative;
    margin: 0 auto;
    width: 92%;
    height: 100%;
    display: -ms-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .in .logo {
    width: calc(var(--vw) * 305 / 2000 * 100);
}
@media screen and (min-width: 2000px) {
    header {
        height: 112px;
        border-bottom: solid 8px #0d9606;
    }
    header .in .logo {
        width: 305px;
    }
}
@media only screen and (max-width: 767.98px) {
    header {
        height: calc(var(--vw) * 112 / 1500 * 100);
        border-bottom: solid calc(var(--vw) * 8 / 1500 * 100) #0d9606;
    }
    header .in .logo {
        width: calc(var(--vw) * 305 / 1500 * 100);
    }
}

/*------------------------------------------------
Footer
------------------------------------------------*/
#page-top {
    position: fixed;
    right: calc(var(--vw) * 24 / 2000 * 100);
    line-height: 1;
    z-index: 99;
    transition: 0.4s;
}
#page-top a {
    position: relative;
    background: #c19821;
    text-decoration: none;
    color: #fff;
    width: 60px;
    height: 60px;
    text-align: center;
    display: block;
    border-radius: 90px;
    transition: 0.4s;
}
#page-top a:before {
    content: "";
    display: inline-block;
    position: absolute;
    opacity: 1;
    width: 18px;
    height: 22px;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: url(../img/arrow_w_top.svg) center center/contain no-repeat;
}
@media screen and (min-width: 2000px) {
    #page-top {
        right: 24px;
    }
}
@media print, screen and (min-width: 768px) {
    #page-top a:hover {
        background: #d7ac31;
    }
}
@media only screen and (max-width: 767.98px) {
    #page-top {
        right: calc(var(--vw) * 24 / 768 * 100);
    }
    #page-top a {
        width: calc(var(--vw) * 90 / 768 * 100);
        height: calc(var(--vw) * 90 / 768 * 100);
    }
    #page-top a:before {
        width: calc(var(--vw) * 27 / 768 * 100);
        height: calc(var(--vw) * 33 / 768 * 100);
    }
}
footer {
    background: #e8e4dc;
    padding: calc(var(--vw) * 70 / 2000 * 100) 0;
    position: relative;
}
footer .in {
    display: block;
    text-align: center;
}
footer .ft_nav {
    position: relative;
    width: calc(var(--vw) * 1000 / 2000 * 100);
    margin: 0 auto calc(var(--vw) * 76 / 2000 * 100);
    padding: 0;
}
footer .ft_nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
footer .ft_nav ul li {
    display: inline-block;
    text-align: center;
    font-weight: 400;
    font-size: calc(var(--vw) * 36 / 2000 * 100);
    margin: 0 1.2em 0.5em;
}
footer .ft_nav ul li a {
    display: block;
    text-decoration: none;
    color: #000 !important;
}
footer .logo {
    display: block;
    width: calc(var(--vw) * 458 / 2000 * 100);
    height: auto;
    margin: 0 auto;
}
footer .logo img {
    width: 100%;
    height: auto;
}
footer .c {
    display: block;
    text-align: center;
    margin-top: 5em;
}
footer .copy {
    text-align: center;
    font-weight: 400;
    font-size: calc(var(--vw) * 28 / 2000 * 100);
}
@media screen and (min-width: 2000px) {
    footer {
        padding: 70px 0;
    }
    footer .ft_nav {
        width: 1000px;
        margin: 0 auto 76px;
    }
    footer .ft_nav ul li {
        font-size: calc(var(--vw) * 36 / 2000 * 100);
    }
    footer .logo {
        width: calc(var(--vw) * 458 / 2000 * 100);
    }
    footer .copy {
        font-size: 28px;
    }
}
@media print, screen and (min-width: 768px) {
   footer .ft_nav ul li a:hover {
        color: #666666 !important;
    }
}
@media only screen and (max-width: 767.98px) {
    footer {
        padding: calc(var(--vw) * 24 / 768 * 100) 0;
    }
    footer .in {
        flex-direction: column;
        text-align: center;
    }
    footer .ft_nav {
        width: calc(var(--vw) * 1000 / 1500 * 100);
        margin: 0 auto calc(var(--vw) * 76 / 1500 * 100);
    }
    footer .ft_nav ul li {
        font-size: calc(var(--vw) * 36 / 1500 * 100);
    }
    footer .logo {
        width: calc(var(--vw) * 458 / 1500 * 100);
    }
    footer .c {
        margin-top: 1em;
    }
    footer .copy {
        font-size: calc(var(--vw) * 28 / 1500 * 100);
    }
}
/*------------------------------------------------
Contents
------------------------------------------------*/
#wrapper {
    overflow: hidden;
}
.bnrArea {
    width: 100%;
    height: auto;
    margin: 0;
    padding: calc(var(--vw) * 30 / 2000 * 100) 0;
    text-align: center;
    position: relative;
    display: flex;
    flex-flow: column;
    align-content: center;
    overflow: hidden;
    background: #ffffff;
}
.bnrArea img.bnr {
    width: 96%;
    height: auto;
    margin: 0 auto;
    text-align: center;
    position: relative;
    left: 50%;
    transform: translate(-52%, 0);
    transition: 0.4s;
    opacity: 1;
}
.bnrArea p {
    display: block;
    text-align: center;
    font-weight: 400;
    font-size: calc(var(--vw) * 40 / 2000 * 100);
    line-height: 1.2;
    margin: 0.4em 1em 0;
}
@media print, screen and (min-width: 768px) {
   .bnrArea a:hover img.bnr {
        opacity: 0.8;
    }
}
@media only screen and (max-width: 767.98px) {
    .bnrArea {
        padding: calc(var(--vw) * 30 / 1500 * 100) 0;
    }
    .bnrArea img.bnr {
        width: 96%;
    }
    .bnrArea p {
        font-size: calc(var(--vw) * 40 / 960 * 100);
    }
}
.main {
    background: #e8e4dc;
    overflow: hidden;
}
article.upper {
    width: 100%;
    margin: 0;
    background: #fff;
    text-align: center;
    overflow: hidden;
}
article.below {
    width: 79%;
    max-width: 1580px;
    margin: calc(var(--vw) * 80 / 2000 * 100) auto 0;
    background: #fff;
    border-radius: calc(var(--vw) * 20 / 2000 * 100);
    overflow: hidden;
    padding: calc(var(--vw) * 50 / 2000 * 100) 0 0;
}
@media screen and (min-width: 2000px) {
    article.below {
        width: 1580px;
        margin: 80px auto 0;
        border-radius: 20px;
        padding: 50px 0 0;
    }
}
@media only screen and (max-width: 767.98px) {
    article.below {
        width: 100%;
        max-width: none;
        margin: calc(var(--vw) * 80 / 768 * 100) 0 0;
        border-radius: 0;
        padding: calc(var(--vw) * 50 / 768 * 100) 0 0;
    }
}
section {
    opacity: 0;
    transition: 0.6s;
}
section.is-active {
    opacity: 1;
    transition: 0.6s;
}
.mainVisual {
    width: 100%;
    height: auto;
    margin: 0;
    text-align: center;
    position: relative;
    display: flex;
    align-content: center;
    overflow: hidden;
}
.mainVisual img.mainImg {
    width: 100%;
    min-width: 500px;
    height: auto;
    margin: 0 auto;
    text-align: center;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
}
.mainVisual h1.h1_title {
    width: calc(var(--vw) * 1468 / 2000 * 100);
    height: auto;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 2;
}
.finish {
    width: 100%;
    min-width: 500px;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}
.finish img.cover {
    width: 100%;
    height: auto;
    margin: 0 auto;
    text-align: center;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
}
.mainCatch {
    width: 100%;
    height: auto;
    margin: 0 0 calc(var(--vw) * 30 / 2000 * 100);
    text-align: center;
    position: relative;
    display: flex;
    align-content: center;
    overflow: hidden;
}
.mainCatch img {
    width: 100%;
    min-width: 500px;
    height: auto;
    margin: 0 auto;
    text-align: center;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
}
@media screen and (min-width: 2000px) {
    .mainVisual h1.h1_title {
        width: 1468px;
    }
    .mainCatch {
        margin: 0 0 30px;
    }
}
@media only screen and (max-width: 767.98px) {
    .mainVisual h1.h1_title {
        width: calc(var(--vw) * 1360 / 1500 * 100);
    }
    .mainCatch {
        margin: 0 0 calc(var(--vw) * 30 / 1500 * 100);
    }
    .steam-01 {
        left: -30%;
        width: 80%;
    }
    .steam-02 {
        right: -30%;
        width: 80%;
    }
}
.btnArea {
    width: 100%;
    height: auto;
    margin: 0 0 calc(var(--vw) * 50 / 2000 * 100);
    text-align: center;
    position: relative;
    display: block;
    overflow: hidden;
}
.below .btnArea {
    margin: 0 0 calc(var(--vw) * 100 / 2000 * 100);
}
.btnArea img.btnCatch {
    width: calc(var(--vw) * 1374 / 2000 * 100);
    height: auto;
    margin: 0 auto calc(var(--vw) * 30 / 2000 * 100);
    text-align: center;
    position: relative;
}
.btnArea .in {
    width: calc(var(--vw) * 1360 / 2000 * 100);
    height: auto;
    margin: 0 auto;
    text-align: center;
    position: relative;
}
.btnArea .in .btn {
    width: 100%;
    height: auto;
    margin: 0 0 calc(var(--vw) * 30 / 2000 * 100);
    text-align: center;
    position: relative;
}
.btnArea .in p {
    width: auto;
    height: auto;
    margin: 0 0 calc(var(--vw) * 30 / 2000 * 100);
    text-align: left;
    font-weight: 400;
    font-size: calc(var(--vw) * 32 / 2000 * 100);
    display: inline-block;
}
.oricon {
    width: calc(var(--vw) * 1280 / 2000 * 100);
    height: auto;
    margin: 0 auto calc(var(--vw) * 80 / 2000 * 100);
    text-align: center;
    position: relative;
    display: block;
}
.oricon img {
    width: 100%;
    height: auto;
}
@media screen and (min-width: 2000px) {
    .btnArea {
        margin: 0 0 50px;
    }
    .below .btnArea {
        margin: 0 0 100px;
    }
    .btnArea img.btnCatch {
        width: 1374px;
        margin: 0 auto 30px;
    }
    .btnArea .in {
        width: 1360px;
    }
    .btnArea .in .btn {
        margin: 0 0 30px;
    }
    .btnArea .in p {
        margin: 0 0 30px;
        font-size: 32px;
    }
    .oricon {
        width: 1280px;
        margin: 0 auto 80px;
    }
}
@media only screen and (max-width: 767.98px) {
    .btnArea {
        margin: 0 0 calc(var(--vw) * 50 / 1500 * 100);
    }
    .below .btnArea {
        margin: 0 0 calc(var(--vw) * 160 / 1500 * 100);
    }
    .btnArea img.btnCatch {
        width: calc(var(--vw) * 1374 / 1500 * 100);
        margin: 0 auto calc(var(--vw) * 30 / 1500 * 100);
    }
    .btnArea .in {
        width: calc(var(--vw) * 1360 / 1500 * 100);
    }
    .btnArea .in .btn {
        margin: 0 0 calc(var(--vw) * 30 / 1500 * 100);
    }
    .btnArea .in p {
        margin: 0 0 calc(var(--vw) * 30 / 1500 * 100);
        font-size: calc(var(--vw) * 32 / 1500 * 100);
    }
    .oricon {
        width: calc(var(--vw) * 1280 / 1500 * 100);
        margin: 0 auto calc(var(--vw) * 80 / 1500 * 100);
    }
}
section.contents {
    position: relative;
    width: calc(var(--vw) * 1360 / 2000 * 100);
    margin: 0 auto calc(var(--vw) * 160 / 2000 * 100);
    padding: 0;
}
section.contentsk img {
    width: 100%;
    height: auto;
}
@media screen and (min-width: 2000px) {
    section.contents {
        width: 1360px;
        margin: 0 auto 160px;
    }
}
@media only screen and (max-width: 767.98px) {
    section.contents {
        width: 92%;
        margin: 0 auto calc(var(--vw) * 200 / 1500 * 100);
    }
}

