@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
:root {
    --white: #fff;
    --white-rgb: 255, 255, 255;
    --black: #000;
    --black-rgb: 0, 0, 0;
    --green: #009682;
    --lightgreen: #e9f4f1;
    --gray: #f7f7f7;
    --red: #e83a3a;
    --blue: #2680eb;
}

/* -----------------------------------------------
* Plugins エントリーポイント
-------------------------------------------------- */
/*------------------------------------------------------------------------------
  reset
------------------------------------------------------------------------------*/
html,
input,
textarea,
select,
button,
body {
    font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif !important;
    font-weight: 400 !important;
    font-size: 16px;
}

html {
    background: #fff;
    font-size: 16px !important;
    line-height: 1.6;
    word-break: break-all;
}
html p {
    margin: 0;
}

body {
    color: #222 !important;
    background: var(--white) !important;
    margin: 0;
}
@media only screen and (max-width: 750px) {
    body {
        font-size: 12px;
    }
}

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

* {
    min-height: 0vw; /* Safari clamp関数対策 */
    word-break: normal !important;
    word-wrap: break-word;
}

img {
    border: 0;
    margin: 0;
    vertical-align: top;
    max-width: 100%;
    image-rendering: -webkit-optimize-contrast;
}

p {
    margin: 0;
    padding: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

a {
    color: #222;
    text-decoration: none;
}

input,
select,
textarea,
button {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select::-ms-expand {
    display: none;
}

textarea {
    resize: vertical;
}

::-webkit-input-placeholder {
    color: #ccc;
}

:-ms-input-placeholder {
    color: #ccc;
}

::-ms-input-placeholder {
    color: #ccc;
}

::-moz-placeholder {
    color: #ccc;
}

::placeholder {
    color: #ccc;
}

button {
    border: none;
    cursor: pointer;
}

label {
    cursor: pointer;
}

table {
    border-collapse: collapse;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 14px;
    margin: 0;
    padding: 0;
}

main {
    display: block;
    position: relative;
    overflow: hidden;
}

.outer-block {
    min-width: 100%;
}
@media only screen and (max-width: 849px) {
    .outer-block {
        min-width: 320px;
    }
}

.inner-block {
    position: relative;
    max-width: 1260px;
    padding: 0 30px;
}
@media only screen and (min-width: 751px) {
    .inner-block {
        margin: 0 auto;
    }
}
@media only screen and (max-width: 849px) {
    .inner-block {
        width: auto;
        padding: 0 15px;
    }
}

#wrapper {
    position: relative;
}
@media only screen and (max-width: 750px) {
    #wrapper {
        min-width: 320px;
    }
}

@media only screen and (min-width: 751px) {
    .sp {
        display: none !important;
    }
    a[href^="tel:"] {
        pointer-events: none;
    }
    a,
    a::before,
    a::after,
    button {
        -webkit-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
    }
}
@media only screen and (max-width: 750px) {
    .pc {
        display: none !important;
    }
}
dl,
dt,
dd {
    padding: 0;
    margin: 0;
}

/* --------------------------------
c-header
----------------------------------- */
#header {
    z-index: 8;
    position: relative;
    width: 100%;
    background-color: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
@media only screen and (min-width: 751px) {
    #header {
        border-bottom: 5px solid #00aa8a;
        height: 100px;
        padding: 0 20px;
    }
}
@media only screen and (max-width: 750px) {
    #header {
        padding: 0 10px;
        height: 50px;
        border-bottom: 2px solid #00aa8a;
    }
}
#header .header-logo a {
    width: 140px;
    height: 66px;
    display: block;
}
@media only screen and (max-width: 750px) {
    #header .header-logo a {
        width: 66px;
        height: 30px;
        left: 16px;
        top: 10px;
    }
}
#header .header-logo img {
    width: 100%;
}

@media only screen and (min-width: 751px) {
    .menu-btn {
        display: none;
    }
}
@media only screen and (max-width: 750px) {
    .menu-btn {
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
        opacity: 1;
        display: block;
        z-index: 10;
        z-index: 10;
        width: 17px;
        height: 50px;
        position: relative;
    }
}
.menu-btn span {
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 5px;
    border-radius: 2px;
    background-color: var(--black);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
@media only screen and (max-width: 750px) {
    .menu-btn span {
        width: 17px;
        height: 2px;
    }
}
.menu-btn span:nth-of-type(1) {
    top: 0px;
}
@media only screen and (max-width: 750px) {
    .menu-btn span:nth-of-type(1) {
        top: 18px;
    }
}
.menu-btn span:nth-of-type(2) {
    top: 0;
    bottom: 0;
    margin: auto;
}
.menu-btn span:nth-of-type(3) {
    bottom: 0px;
}
@media only screen and (max-width: 750px) {
    .menu-btn span:nth-of-type(3) {
        bottom: 18px;
    }
}
.menu-btn.is-open span {
    top: 20px;
}
@media only screen and (max-width: 750px) {
    .menu-btn.is-open span {
        top: 24px;
    }
}
.menu-btn.is-open span:nth-of-type(1) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.menu-btn.is-open span:nth-of-type(2) {
    opacity: 0;
}
.menu-btn.is-open span:nth-of-type(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    right: 0;
    bottom: 12px;
}
@media only screen and (max-width: 750px) {
    .menu-btn.is-open span:nth-of-type(3) {
        bottom: 24px;
    }
}

.menu {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
@media only screen and (max-width: 750px) {
    .menu {
        position: fixed;
        left: 0;
        top: 50px;
        background-color: var(--white);
        opacity: 0;
        width: 100%;
        visibility: hidden;
        overflow-y: scroll;
    }
}
@media only screen and (max-width: 750px) {
    .menu.is-open {
        opacity: 1;
        visibility: visible;
    }
}

@media only screen and (min-width: 751px) {
    .menu-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}
.menu-list li {
    list-style: none;
    position: relative;
}
@media only screen and (max-width: 750px) {
    .menu-list li {
        border-bottom: 1px solid #ccc;
    }
}
.menu-list li:last-child a::after {
    content: none;
}
.menu-list a {
    display: block;
    position: relative;
    font-size: clamp(0.875rem, 0.8089788732rem + 0.2816901408vw, 1.0625rem);
    font-weight: bold;
    line-height: 1.3;
    color: #222;
}
@media only screen and (min-width: 751px) {
    .menu-list a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        height: 95px;
        padding: 0 24px;
    }
}
@media only screen and (max-width: 750px) {
    .menu-list a {
        line-height: 1.4;
        padding: 12px 15px;
    }
}
@media only screen and (min-width: 751px) {
    .menu-list a:hover {
        color: #00aa8a;
    }
}
.menu-list a::before {
    content: "";
    position: absolute;
    margin: auto;
}
@media only screen and (min-width: 751px) {
    .menu-list a::before {
        width: 100%;
        height: 5px;
        opacity: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #00aa8a;
    }
}
@media only screen and (max-width: 750px) {
    .menu-list a::before {
        right: 16px;
        top: 0;
        bottom: 0;
        width: 6px;
        height: 6px;
        border-left: 2px solid var(--black);
        border-bottom: 2px solid var(--black);
        -webkit-transform: rotate(-135deg);
        transform: rotate(-135deg);
        -webkit-box-sizing: content-box;
        box-sizing: content-box;
    }
}
@media only screen and (min-width: 751px) {
    .menu-list a::after {
        content: "";
        position: absolute;
        margin: auto;
        right: 0;
        top: 0;
        bottom: 0;
        background-color: #ccc;
        width: 1px;
        height: 20px;
    }
}
.menu-list a.is-current::before {
    opacity: 1;
}

#header.b-green {
    border-bottom: 5px solid #00aa8a;
}
@media only screen and (max-width: 750px) {
    #header.b-green {
        border-bottom: 2px solid #00aa8a;
    }
}
#header.b-lightblue {
    border-bottom: 5px solid #00a0d7;
}
@media only screen and (max-width: 750px) {
    #header.b-lightblue {
        border-bottom: 2px solid #00a0d7;
    }
}
#header.b-blue {
    border-bottom: 5px solid #074d96;
}
@media only screen and (max-width: 750px) {
    #header.b-blue {
        border-bottom: 2px solid #074d96;
    }
}
#header.b-pink {
    border-bottom: 5px solid #e85471;
}
@media only screen and (max-width: 750px) {
    #header.b-pink {
        border-bottom: 2px solid #e85471;
    }
}
#header .menu-list .green:hover {
    color: #00aa8a;
}
#header .menu-list .green.is-current {
    color: #00aa8a;
}
@media only screen and (min-width: 751px) {
    #header .menu-list .green.is-current:before {
        background-color: #00aa8a;
    }
}
#header .menu-list .lightblue:hover {
    color: #00a0d7;
}
#header .menu-list .lightblue.is-current {
    color: #00a0d7;
}
@media only screen and (min-width: 751px) {
    #header .menu-list .lightblue.is-current:before {
        background-color: #00a0d7;
    }
}
#header .menu-list .blue:hover {
    color: #074d96;
}
#header .menu-list .blue.is-current {
    color: #074d96;
}
@media only screen and (min-width: 751px) {
    #header .menu-list .blue.is-current:before {
        background-color: #074d96;
    }
}
#header .menu-list .pink:hover {
    color: #e85471;
}
#header .menu-list .pink.is-current {
    color: #e85471;
}
@media only screen and (min-width: 751px) {
    #header .menu-list .pink.is-current:before {
        background-color: #e85471;
    }
}

/* --------------------------------
c-footer
----------------------------------- */
.footer {
    background-color: #009682;
		margin-top: 0px;
    padding: 40px 0;
    color: var(--white);
    position: relative;
}
@media only screen and (max-width: 750px) {
    .footer {
        text-align: center;
        padding: 44px 0 26px;
    }
}
@media only screen and (min-width: 751px) {
    .footer .inner-block {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}
.footer .info {
    font-size: clamp(0.75rem, 0.661971831rem + 0.3755868545vw, 1rem);
}
.footer .copyright {
    font-size: clamp(0.625rem, 0.5809859155rem + 0.1877934272vw, 0.75rem);
    margin-top: 26px;
}
@media only screen and (max-width: 750px) {
    .footer .copyright {
        margin-top: 40px;
    }
}

/* --------------------------------
c-pagetop
----------------------------------- */
#pagetop {
    z-index: 99;
    position: absolute;
}
@media only screen and (min-width: 751px) {
    #pagetop {
        width: 51px;
        height: 51px;
        right: 20px;
        bottom: 20px;
        top: auto;
        margin: auto;
    }
}
@media only screen and (max-width: 750px) {
    #pagetop {
        width: 42px;
        height: 42px;
        right: 10px;
    }
}
#pagetop a {
    display: block;
    width: 100%;
    height: 100%;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    position: relative;
    background-color: var(--green);
    border-radius: 50%;
}
@media only screen and (min-width: 751px) {
    #pagetop a:hover {
        opacity: 1;
    }
    #pagetop a:hover:before {
        top: 0;
    }
}
#pagetop a::before {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    top: 5px;
    bottom: 0;
    margin: auto;
    width: 13px;
    height: 13px;
    border-left: 2px solid var(--white);
    border-top: 2px solid var(--white);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    -webkit-transition: top 0.3s;
    transition: top 0.3s;
}
@media only screen and (max-width: 750px) {
    #pagetop a::before {
        border-left: 1px solid var(--white);
        border-top: 1px solid var(--white);
    }
}

/* --------------------------------
c-parts
----------------------------------- */
#wrapper a:hover,
#wrapper a:focus,
#wrapper a:active {
    opacity: 1;
}

.bg-gray {
    background-color: var(--gray);
}

.bg-lightgreen {
    background-color: var(--lightgreen);
}

.ib {
    display: inline-block;
}

.c-section {
    position: relative;
}
@media only screen and (min-width: 751px) {
    .c-section {
        padding: 100px 0;
    }
}
@media only screen and (max-width: 750px) {
    .c-section {
        padding: 50px 0;
    }
}

/*----------------------
*  title
----------------------*/
.c-title {
    margin-bottom: 40px;
    position: relative;
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
    font-size: clamp(1.5625rem, 1.3204225352rem + 1.0328638498vw, 2.25rem);
}
@media only screen and (max-width: 750px) {
    .c-title {
        margin-bottom: 20px;
    }
}
.c-title.green {
    color: var(--green);
}
.c-title .big {
    color: #1fbc86;
    font-size: clamp(2.8125rem, 2.4823943662rem + 1.4084507042vw, 3.75rem);
}
.c-title .circle {
    font-size: clamp(2.8125rem, 2.2403169014rem + 2.441314554vw, 4.4375rem);
    font-weight: bold;
    color: var(--white);
    width: 105px;
    height: 105px;
    background-color: #128271;
    border-radius: 50%;
    margin: 0 10px;
    text-align: center;
    line-height: 1;
    padding: 12px 0;
}
@media only screen and (max-width: 750px) {
    .c-title .circle {
        width: 70px;
        height: 70px;
        display: inline-block;
    }
}

/*----------------------
*  button
----------------------*/
.c-button {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: solid 1px var(--red);
    background-color: #fffe84;
    height: 90px;
    border-radius: 64px;
    font-weight: 600;
    -webkit-box-shadow: 3px 3px 10px 0 rgba(34, 34, 34, 0.3);
    box-shadow: 3px 3px 10px 0 rgba(34, 34, 34, 0.3);
    background-color: var(--red);
    font-size: clamp(1.125rem, 0.9049295775rem + 0.9389671362vw, 1.75rem);
    max-width: 514px;
    margin: 0 auto;
    color: var(--white);
    letter-spacing: 0.1em;
}
@media only screen and (max-width: 750px) {
    .c-button {
        height: 54px;
        width: calc(100% - 40px);
        margin: 0 auto;
    }
}
@media only screen and (min-width: 751px) {
    .c-button:hover {
        -webkit-transform: translateY(5px);
        transform: translateY(5px);
        -webkit-box-shadow: none;
        box-shadow: none;
    }
}
.c-button .wrap {
    line-height: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
.c-button .dot {
    position: relative;
}
.c-button .dot::before {
    content: "";
    position: absolute;
    top: -8px;
    width: 6px;
    height: 6px;
    left: 0;
    right: 0;
    margin: auto;
    background-color: var(--white);
    border-radius: 50%;
}
@media only screen and (max-width: 750px) {
    .c-button .dot::before {
        top: -4px;
        width: 3px;
        height: 3px;
    }
}
.c-button .small {
    font-size: clamp(0.875rem, 0.7429577465rem + 0.5633802817vw, 1.25rem);
}

.c-button-open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #fffe84;
    border: 1px solid var(--black);
    padding: 5px 10px;
    -webkit-box-shadow: 0px 5px 0 0 var(--black);
    box-shadow: 0px 5px 0 0 var(--black);
}
@media only screen and (max-width: 750px) {
    .c-button-open {
        -webkit-box-shadow: 0px 2px 0 0 var(--black);
        box-shadow: 0px 2px 0 0 var(--black);
    }
}
@media only screen and (min-width: 751px) {
    .c-button-open:hover {
        -webkit-transform: translateY(5px);
        transform: translateY(5px);
        -webkit-box-shadow: none;
        box-shadow: none;
    }
}
.c-button-open .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 50%;
}
.c-button-open .icon-free {
    background-color: var(--white);
    border-radius: 50%;
    border: 1px solid var(--black);
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: clamp(0.8125rem, 0.7024647887rem + 0.4694835681vw, 1.125rem);
    margin-right: 10px;
}
@media only screen and (max-width: 750px) {
    .c-button-open .icon-free {
        width: 38px;
        height: 38px;
    }
}
@media only screen and (min-width: 751px) {
    .c-button-open .text {
        width: 144px;
    }
}
@media only screen and (max-width: 750px) {
    .c-button-open .text {
        width: 113px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}
.c-button-open .text-big {
    width: 50%;
    font-size: clamp(1.25rem, 1.0959507042rem + 0.6572769953vw, 1.6875rem);
    letter-spacing: 0.1em;
    font-weight: bold;
}
@media only screen and (max-width: 750px) {
    .c-button-open .text-big {
        padding-right: 20px;
    }
}
@media only screen and (max-width: 374px) {
    .c-button-open .text-big {
        font-size: 16px;
    }
}
.c-button--fukidashi {
    position: relative;
}
.c-button--fukidashi .small {
    margin-right: 0.5em;
}

@media (max-width: 374px) {
    .sticky .c-button--fukidashi {
        font-size: 0.9rem;
    }
    .sticky .c-button--fukidashi .small {
        font-size: 0.7rem;
    }
}

.c-button--fukidashi::before {
    content: "最短即日で開設完了！";
    font-size: 14px;
    color: rgb(0, 0, 0);
    font-weight: bold;
    text-align: center;
    letter-spacing: 1px;
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 230px;
    height: 45px;
    padding-top: 4px;
    background-image: url("/event/stock-02/image/btn_balloon.png");
    background-size: contain;
    background-repeat: no-repeat no-repeat;
}
@media only screen and (min-width: 751px) {
    .c-button--fukidashi::before {
        font-size: 18px;
        top: -30px;
        width: 282px;
        height: 51px;
        padding-top: 4px;
    }
}
@media only screen and (max-width: 340px) {
    .c-button--fukidashi::before {
        top: -30px;
        padding-top: 5px;
    }
}
@media only screen and (max-width: 750px) {
    .c-button--fukidashi {
        margin-top: 20px;
    }
}

/*----------------------
*  sticky
----------------------*/
.sticky {
    display: none;
    width: 100%;
    position: fixed;
    left: 0px;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 10;
    padding: 20px 0;
}
@media only screen and (max-width: 750px) {
    .sticky {
        padding: 10px 0;
    }
}
@media only screen and (max-width: 750px) {
    .sticky .c-button {
        width: calc(100% - 120px);
    }
}

/*------------------------------------------------------------------------------
  animation
------------------------------------------------------------------------------*/
@-webkit-keyframes startFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes startFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@media not print {
    .anm {
        opacity: 0;
    }
    .anm.is-animated {
        -webkit-animation: fadeIn 1.5s forwards;
        animation: fadeIn 1.5s forwards;
    }
    .anm-up {
        opacity: 0;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }
    .anm-up.is-animated {
        -webkit-animation: fadeInUp 1.5s forwards;
        animation: fadeInUp 1.5s forwards;
    }
    .anm-left {
        opacity: 0;
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
    .anm-left.is-animated {
        -webkit-animation: fadeInLeft 1.5s forwards;
        animation: fadeInLeft 1.5s forwards;
    }
    .anm-right {
        opacity: 0;
        -webkit-transform: translateX(-30px);
        transform: translateX(-30px);
    }
    .anm-right.is-animated {
        -webkit-animation: fadeInRight 1.5s forwards;
        animation: fadeInRight 1.5s forwards;
    }
}
.anm-list > * {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
}

.anm-list > *.is-animated {
    -webkit-animation: fadeInUp 1.5s forwards;
    animation: fadeInUp 1.5s forwards;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
        -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
        transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
        -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
        transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
        -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
        transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
        -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
        transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
        -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
        transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    }
}
@keyframes fadeOutUp {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
        -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
        transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    }
}
@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
        -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
        transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
        -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
        transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-30px);
        transform: translateX(-30px);
        -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
        transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-30px);
        transform: translateX(-30px);
        -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
        transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
/* --------------------------------
* modal
----------------------------------- */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    pointer-events: none;
    opacity: 0;
    z-index: 100;
    background-color: rgba(0, 150, 130, 0.9);
}
@media only screen and (min-width: 751px) {
    .modal {
        padding: 30px;
    }
}
@media only screen and (max-width: 750px) {
    .modal {
        padding: 15px;
    }
}
.modal.is-active {
    opacity: 1;
    pointer-events: auto;
}
.modal .title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 40px;
}
@media only screen and (max-width: 750px) {
    .modal .title {
        margin-bottom: 36px;
    }
}
.modal .title .point {
    margin-right: 30px;
    line-height: 1;
    color: #0abc86;
}
@media only screen and (max-width: 750px) {
    .modal .title .point {
        margin-right: 10px;
    }
}
.modal .title .en {
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    font-size: clamp(0.625rem, 0.4049295775rem + 0.9389671362vw, 1.25rem);
}
@media only screen and (min-width: 751px) {
    .modal .title .en {
        margin-right: 10px;
    }
}
.modal .title .number {
    font-size: clamp(2.5rem, 1.6197183099rem + 3.7558685446vw, 5rem);
    font-weight: bold;
    color: #0abc86;
}
.modal .title .ja {
    line-height: 1.77;
    font-size: clamp(0.75rem, 0.5299295775rem + 0.9389671362vw, 1.375rem);
}
@media only screen and (min-width: 751px) {
    .modal .title .ja {
        padding-top: 10px;
    }
}
@media only screen and (min-width: 751px) {
    .modal .three-line {
        margin-bottom: 4px;
    }
}
@media only screen and (max-width: 750px) {
    .modal .three-line {
        margin-bottom: 10px;
    }
}

.modal .image {
    /*	max-width: 280px;	*/
    /*	margin: 0 auto;	*/
	width: 100% !important;
}
.modal .image img {
	max-width: 280px !important;
	margin: 0 auto;
}

@media only screen and (max-width: 750px) {
    .modal .image {
   /*  max-width: 260px;	*/
	width: 100%;
    }
}

.modal__overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.modal__content {
    position: relative;
    width: 100%;
}
@media only screen and (min-width: 751px) {
    .modal__content {
        padding: 20px;
    }
}

.modal_inner {
    background: #fff;
    max-width: 810px;
    margin: 0 auto;
    padding: 50px 20px 90px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    position: relative;
}
@media only screen and (min-width: 751px) {
    .modal_inner {
        border-radius: 5px;
    }
}
@media only screen and (max-width: 750px) {
    .modal_inner {
        border-radius: 2px;
        padding: 30px 15px 60px;
    }
}

.modal__close-btn {
    position: absolute;
    right: 0;
    top: -60px;
    width: 90px;
    height: 40px;
    cursor: pointer;
    z-index: 20;
    text-align: right;
    letter-spacing: 0.05em;
}
@media only screen and (max-width: 750px) {

    .modal__close-btn {
     	top: -60px;
    }
}
.modal__close-btn:hover {
    opacity: 0.8;
}
.modal__close-btn .en {
    color: var(--white);
    font-size: clamp(0.75rem, 0.7059859155rem + 0.1877934272vw, 0.875rem);
    font-weight: bold;
}

.lineClose {
    display: inline-block;
    vertical-align: middle;
    color: #313131;
    line-height: 1;
    width: 30px;
    height: 30px;
    position: relative;
    border: 2px solid var(--white);
    border-radius: 50%;
    position: relative;
}
@media only screen and (max-width: 750px) {
    .lineClose {
        width: 22px;
        height: 22px;
    }
}
.lineClose::before,
.lineClose::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 2px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: var(--white);
}
.lineClose::before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.lineClose::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.swiper-pagination-bullets {
    bottom: 50px !important;
}
@media only screen and (max-width: 750px) {
    .swiper-pagination-bullets {
        bottom: 36px !important;
    }
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background-color: #ccc;
    opacity: 1;
    margin: 0 10px !important;
}
@media only screen and (max-width: 750px) {
    .swiper-pagination-clickable .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        margin: 0 8px !important;
    }
}
.swiper-pagination-clickable .swiper-pagination-bullet-active {
    background-color: #1fbc86;
}

.swiper-button-next,
.swiper-button-prev {
    color: #009682 !important;
}
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: clamp(1.25rem, 1.0299295775rem + 0.9389671362vw, 1.875rem) !important;
    font-weight: bold !important;
}

.swiper-button-next {
    right: 60px !important;
}
@media only screen and (max-width: 750px) {
    .swiper-button-next {
        right: 10px !important;
    }
}

.swiper-button-prev {
    left: 60px !important;
}
@media only screen and (max-width: 750px) {
    .swiper-button-prev {
        left: 10px !important;
    }
}

/* --------------------------------
* mv-block
----------------------------------- */
.mv-block {
    position: relative;
    overflow: hidden;
    background-color: #019986;
    border-bottom: 5px solid #00aa8a;
}

.mv-block .inner-block {
    max-width: 1460px;
}
@media only screen and (max-width: 849px) {
    /* .mv-block {
        padding-top: 20px;
    } */
}
.mv-block .image-area {
    position: relative;
}
@media only screen and (min-width: 850px) {
    .mv-block .image-area {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        max-height: 678px;
        height: 47.0833333333vw;
    }
}
@media only screen and (min-width: 850px) {
    .mv-block .image-area::before {
        width: 80.5555555556vw;
        height: 34.0972222222vw;
        right: -34.7222222222vw;
        top: 0px;
    }
}
@media only screen and (min-width: 1441px) {
    .mv-block .image-area::before {
        width: 1160px;
        height: 491px;
        right: -500px;
        top: 0px;
    }
}
@media only screen and (max-width: 849px) {
    .mv-block .image-area::before {
        width: 133.3333333333vw;
        height: 58.6666666667vw;
        right: -40vw;
        bottom: 26.6666666667vw;
    }
}
@media only screen and (min-width: 850px) {
    .mv-block .image-area .image {
        position: absolute;
        top: 0;
        right: clamp(0px, 7.7vw, 120px);
        z-index: 1;
        max-width: 600px;
        width: 30%;
    }
}
@media only screen and (max-width: 849px) {
    .mv-block .image-area .image {
        position: relative;
        margin: 0 auto;
    }
    .mv-block {
        border-bottom: none;
    }
}
.mv-block .image-area .info {
    text-align: center;
    position: relative;
    z-index: 2;
    padding-top: 2%;
}
@media only screen and (min-width: 850px) {
    .mv-block .image-area .info {
        margin-right: auto;
        max-width: 1440px;
        width: 70%;
    }
}
@media only screen and (min-width: 1441px) {
    .mv-block .image-area .info {
        margin-top: 0%;
    }
}
.mv-block .image-area .info .subtitle {
    font-size: clamp(20px, 14.5vw, 250px);
    color: #ffffff;
    line-height: 1;
    font-weight: bold;
}
.mv-block .image-area .info .main-title {
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1;
    white-space: nowrap;
    transform: rotate(-3deg);
    font-style: italic;
    zoom: 1.3;
    margin-bottom: 12px;
    text-shadow: 2px 2px 0px #33cdb9;
    font-size: clamp(30px, 4.9vw, 70px);
}
@media only screen and (max-width: 374px) {
    .mv-block .image-area .info .main-title {
        font-size: 30px;
    }
}
.mv-block .image-area .info .main-title .number {
    font-size: clamp(60px, 8.3vw, 120px);
    color: var(--white);
    text-shadow: 3px 3px 0px #000000;
	font-style: unset !important;
}
.mv-block .button-area {
    margin: 0 auto 0 auto;
    z-index: 3;
    position: absolute;
    bottom: 10%;
    max-width: 1440px;
    width: 68%;
}
@media only screen and (max-width: 1024px) {
    .mv-block .button-area {
        bottom: 8%;
    }
}
@media only screen and (max-width: 849px) {
    .mv-block .button-area {
        margin-top: -16vw;
        padding: 90px 0 20px;
        width: 100%;
        left: 0;
    }
    .mv-block .button-area {
        bottom: 0%;
        background-color: #008d7b;
        padding-top: 5%;
    }
    .mv-block .image-area .info .subtitle {
        font-size: clamp(90px, 16.4vw, 140px);
        margin-bottom: 20px;
    }
}

@media only screen and (min-width: 751px) {
    .mv-block .button-area::before {
        content: "";
        position: absolute;
        max-width: 1920px;
        width: 100vw;
        max-height: 210px;
        height: 10.9375vw;
        left: 0;
        right: 0;
        top: -20px;
        margin: auto;
    }
}
@media only screen and (min-width: 751px) and (min-width: 1921px) {
    .mv-block .button-area::before {
        top: -30px;
    }
}
@media only screen and (min-width: 751px) and (max-width: 1440px) {
    .mv-block .button-area::before {
        top: -10px;
    }
}
.mv-block .button-area .c-button {
    font-size: clamp(1rem, 0.8019366197rem + 0.8450704225vw, 1.5625rem);
}
@media only screen and (min-width: 751px) {
    .mv-block .button-area .c-button {
        margin-right: auto;
        margin-left: 0;
        width: clamp(23.75rem, 16.025rem + 15.81vw, 32.25rem);
        height: 75px;
        margin: auto;
    }
}
@media only screen and (max-width: 849px) {
    .mv-block .button-area .c-button {
        height: 50px;
        width: calc(100% - 60px);
    }
    .mv-block .pc {
        display: none !important;
    }
    .mv-block .sp {
        display: block !important;
        margin: auto;
        padding-bottom: 10%;
    }
}

/* --------------------------------
* point-block
----------------------------------- */
.point-block .point + .point {
    margin-top: 120px;
}
.point-block .point-subtitle {
    text-align: center;
    font-size: clamp(1rem, 0.6478873239rem + 1.5023474178vw, 2rem);
    margin-bottom: 20px;
}
.point-block .point-table {
    width: 100%;
}
.point-block .point-table th,
.point-block .point-table td {
    border: solid 1px #ccc;
}
.point-block .point-table th {
    padding: 16px 10px;
    background-color: #128271;
    color: var(--white);
    font-size: clamp(0.75rem, 0.5959507042rem + 0.6572769953vw, 1.1875rem);
}
@media only screen and (max-width: 750px) {
    .point-block .point-table th {
        padding: 5px 2px;
    }
}
.point-block .point-table td {
    padding: 20px 10px;
    text-align: center;
    font-size: clamp(0.625rem, 0.4269366197rem + 0.8450704225vw, 1.1875rem);
}
@media only screen and (min-width: 751px) {
    .point-block .point-table td {
        height: 90px;
    }
}
@media only screen and (max-width: 750px) {
    .point-block .point-table td {
        height: 40px;
        padding: 5px 2px;
    }
}
.point-block .point-table td[rowspan="4"] {
    background-color: #e9f4f1 !important;
}
.point-block .point-table td[rowspan="4"] .marker {
    position: relative;
    display: inline-block;
}
@media only screen and (min-width: 751px) {
    .point-block .point-table td[rowspan="4"] .marker {
        padding-bottom: 10px;
        margin-bottom: 50px;
    }
}
@media only screen and (max-width: 750px) {
    .point-block .point-table td[rowspan="4"] .marker {
        padding-bottom: 4px;
        margin-bottom: 10px;
    }
}
.point-block .point-table td[rowspan="4"] .marker::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 20px;
    background-color: #d3e7ff;
    bottom: 0;
    left: 0;
}
@media only screen and (max-width: 750px) {
    .point-block .point-table td[rowspan="4"] .marker::before {
        height: 10px;
    }
}
.point-block .point-table td[rowspan="4"] .number {
    position: relative;
    font-size: clamp(2.75rem, 1.5616197183rem + 5.0704225352vw, 6.125rem);
}
.point-block .point-table td[rowspan="4"] .yen {
    position: relative;
    font-size: clamp(1rem, 0.5378521127rem + 1.9718309859vw, 2.3125rem);
}
.point-block .point-table td .big {
    font-size: clamp(0.9375rem, 0.6294014085rem + 1.3145539906vw, 1.8125rem);
}
.point-block .point-table tr td:first-child {
    font-size: clamp(0.75rem, 0.5959507042rem + 0.6572769953vw, 1.1875rem);
    font-weight: bold;
}
.point-block .point-table tr:nth-child(odd) td {
    background-color: #f7f7f7;
}
.point-block .point-table tr:nth-child(even) td {
    background-color: #d9d9d9;
}
.point-block .point-table .number,
.point-block .point-table .yen {
    color: var(--blue);
    font-weight: bold;
    line-height: 1;
}
.point-block .point-table .number {
    font-size: clamp(2.1875rem, 1.3512323944rem + 3.5680751174vw, 4.5625rem);
}
.point-block .point-table .yen {
    font-size: clamp(1rem, 0.6038732394rem + 1.6901408451vw, 2.125rem);
}
.point-block .notice {
    font-size: clamp(0.6875rem, 0.6654929577rem + 0.0938967136vw, 0.75rem);
    margin-top: 20px;
}
@media only screen and (max-width: 750px) {
    .point-block .notice {
        line-height: 1.45;
    }
}
.point-block .tool + .tool {
    margin-top: 90px;
}
@media only screen and (max-width: 750px) {
    .point-block .tool + .tool {
        margin-top: 100px;
    }
}
@media only screen and (min-width: 751px) {
    .point-block .tool.tool01 .image {
        width: 312px;
    }
}
@media only screen and (max-width: 750px) {
    .point-block .tool.tool01 .image {
        width: 260px;
    }
}
@media only screen and (min-width: 751px) {
    .point-block .tool.tool02 .image {
        width: 449px;
    }
}
@media only screen and (min-width: 751px) {
    .point-block .tool.tool03 .image {
        width: 383px;
    }
}
@media only screen and (max-width: 750px) {
    .point-block .tool.tool03 .image {
        width: 300px;
    }
}
.point-block .tool .title {
    text-align: center;
    font-weight: bold;
    font-size: clamp(1.5rem, 1.3679577465rem + 0.5633802817vw, 1.875rem);
    margin-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
@media only screen and (max-width: 750px) {
    .point-block .tool .title {
        line-height: 1.46;
    }
}
@media only screen and (max-width: 750px) {
    .point-block .tool .title.end {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }
    .point-block .tool .title.end .icon-pc {
        margin-bottom: 4px;
        margin-left: -14px;
    }
}
.point-block .tool .image {
    text-align: center;
}
@media only screen and (min-width: 751px) {
    .point-block .tool .image {
        margin: 0 auto 10px;
    }
}
@media only screen and (max-width: 750px) {
    .point-block .tool .image {
        margin: 0 auto;
    }
}
.point-block .tool .text {
    font-size: clamp(0.75rem, 0.6179577465rem + 0.5633802817vw, 1.125rem);
}
@media only screen and (max-width: 750px) {
    .point-block .tool .text {
        width: calc(100% - 50px);
        margin: 0 auto;
    }
}
.point-block .tool .button {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: var(--white);
    font-size: clamp(1.25rem, 1.161971831rem + 0.3755868545vw, 1.5rem);
    font-weight: bold;
    width: 284px;
    height: 57px;
    margin: 36px auto 0;
    padding: 10px;
    border-radius: 38px;
    -webkit-box-shadow: 3px 3px 10px 0 rgba(34, 34, 34, 0.3);
    box-shadow: 3px 3px 10px 0 rgba(34, 34, 34, 0.3);
    background-color: var(--blue);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
}
@media only screen and (max-width: 750px) {
    .point-block .tool .button {
        width: 245px;
        height: 50px;
        margin: 26px auto 0;
    }
}
@media only screen and (min-width: 751px) {
    .point-block .tool .button:hover {
        -webkit-box-shadow: none;
        box-shadow: none;
        -webkit-transform: translateY(3px);
        transform: translateY(3px);
    }
}
.point-block .tool .icon-pc,
.point-block .tool .icon-sp {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 70px;
    height: 30px;
    border-radius: 22px;
    font-size: clamp(0.875rem, 0.8089788732rem + 0.2816901408vw, 1.0625rem);
}
@media only screen and (min-width: 751px) {
    .point-block .tool .icon-pc,
    .point-block .tool .icon-sp {
        margin-left: 10px;
    }
}
@media only screen and (max-width: 750px) {
    .point-block .tool .icon-pc,
    .point-block .tool .icon-sp {
        margin-left: 8px;
        width: 60px;
        height: 26px;
    }
}
.point-block .tool .icon-pc {
    border: solid 2px var(--green);
    color: var(--green);
}
@media only screen and (max-width: 750px) {
    .point-block .tool .icon-pc {
        border: solid 1px var(--green);
    }
}
.point-block .tool .icon-sp {
    background-color: var(--green);
    color: var(--white);
}

@media only screen and (min-width: 751px) {
    .point01-block {
        padding-top: 40px;
    }
}
.point01-block .inner-block {
    max-width: 830px;
}

.point02-block .inner-block {
    max-width: 740px;
}

.point03-block .title-area {
    padding: 30px 0;
    background-image: -webkit-gradient(linear, left top, right top, color-stop(1%, #f8fffe), color-stop(99%, #dffafa));
    background-image: linear-gradient(to right, #f8fffe 1%, #dffafa 99%);
}
@media only screen and (max-width: 750px) {
    .point03-block .title-area {
        padding: 20px 0;
    }
}
.point03-block .title-area .c-title02 {
    margin: 0;
}
.point03-block .title-area .c-title02 .triangle::before {
    border-color: #f8fffe transparent transparent transparent;
}

.c-title02 {
    margin-bottom: 50px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
@media only screen and (max-width: 750px) {
    .c-title02 {
        margin-bottom: 20px;
    }
}
.c-title02 .wrap {
    display: inline-block;
    position: relative;
}
.c-title02 .triangle {
    position: relative;
    width: 67px;
    height: 67px;
    display: block;
    margin-right: -44px;
    margin-bottom: 14px;
    z-index: 2;
}
@media only screen and (max-width: 750px) {
    .c-title02 .triangle {
        width: 48px;
        height: 48px;
        margin-right: -30px;
    }
}
.c-title02 .triangle::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 67px 67px 0 0;
    border-color: var(--white) transparent transparent transparent;
}
@media only screen and (max-width: 750px) {
    .c-title02 .triangle::before {
        border-width: 48px 48px 0 0;
    }
}
.c-title02 .triangle::after {
    content: "";
    position: absolute;
    height: 1px;
    background-color: var(--green);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
@media only screen and (min-width: 751px) {
    .c-title02 .triangle::after {
        left: -12px;
        top: 33px;
        width: 90px;
    }
}
@media only screen and (max-width: 750px) {
    .c-title02 .triangle::after {
        width: 60px;
        left: -5px;
        top: 22px;
    }
}
.c-title02 .triangle .point {
    color: var(--green);
    font-size: clamp(0.625rem, 0.6029929577rem + 0.0938967136vw, 0.6875rem);
    line-height: 1em;
    position: absolute;
    top: 8px;
    left: 0;
}
.c-title02 .number {
    color: var(--green);
    font-size: clamp(3.75rem, 3.3098591549rem + 1.8779342723vw, 5rem);
    position: relative;
    display: inline-block;
    line-height: 1;
    margin-right: 20px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
@media only screen and (max-width: 750px) {
    .c-title02 .number {
        margin-right: 4px;
    }
}
.c-title02 .ja {
    font-size: clamp(1.5625rem, 1.3204225352rem + 1.0328638498vw, 2.25rem);
    font-weight: bold;
    line-height: 1.3;
}
@media only screen and (max-width: 750px) {
    .c-title02 .ja {
        line-height: 1.37;
    }
}

/* --------------------------------
* free-block
----------------------------------- */
@media only screen and (min-width: 751px) {
    .free-block .c-title {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
.free-block .free-wrap {
    display: -ms-grid;
    display: grid;
    gap: 20px 26px;
    -ms-grid-columns: 1fr 26px 1fr 26px 1fr 26px 1fr;
    grid-template-columns: repeat(4, 1fr);
}
@media only screen and (min-width: 751px) {
    .free-block .free-wrap {
        width: calc(100% - 60px);
        margin: 0 auto;
    }
}
@media only screen and (max-width: 1024px) {
    .free-block .free-wrap {
        -ms-grid-columns: 1fr 15px 1fr;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}
.free-block .free-box {
    background-color: var(--white);
}
@media only screen and (min-width: 751px) {
    .free-block .free-box {
        -webkit-box-shadow: 8px 8px 20px 0 rgba(0, 0, 0, 0.1);
        box-shadow: 8px 8px 20px 0 rgba(0, 0, 0, 0.1);
        border-radius: 20px;
        padding: 24px 20px 20px;
    }
}
@media only screen and (max-width: 750px) {
    .free-block .free-box {
        -webkit-box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.1);
        box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.1);
        padding: 14px 10px 20px;
        border-radius: 10px;
    }
}
.free-block .free-box .title {
    font-size: clamp(0.9375rem, 0.8274647887rem + 0.4694835681vw, 1.25rem);
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}
@media only screen and (min-width: 751px) {
    .free-block .free-box .title {
        margin-bottom: 16px;
    }
}
@media only screen and (max-width: 750px) {
    .free-block .free-box .title {
        margin-bottom: 10px;
    }
}
.free-block .free-box .image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto 16px;
}
@media only screen and (min-width: 751px) {
    .free-block .free-box .image {
        width: 112px;
        height: 115px;
    }
}
@media only screen and (max-width: 750px) {
    .free-block .free-box .image {
        width: 66px;
        height: 68px;
    }
}
.free-block .free-box .image img {
    max-height: 100%;
}
.free-block .free-box .text {
    font-size: clamp(0.6875rem, 0.6214788732rem + 0.2816901408vw, 0.875rem);
}
@media only screen and (max-width: 750px) {
    .free-block .free-box .text {
        line-height: 1.45;
    }
}
.free-block .free-box .text.center {
    text-align: center;
}

/* --------------------------------
* c-bg-image-block
----------------------------------- */
.bg-wrap {
    position: relative;
    overflow: hidden;
}
@media only screen and (min-width: 751px) {
    .bg-wrap .inner-block {
        max-width: 1060px;
    }
}
.bg-wrap .info {
    position: relative;
}
@media only screen and (min-width: 751px) {
    .bg-wrap .info {
        max-width: 560px;
        width: 38.8888888889vw;
        padding: 76px 0;
    }
}
@media only screen and (max-width: 1024px) {
    .bg-wrap .info {
        width: 54.6875vw;
    }
}
@media only screen and (max-width: 750px) {
    .bg-wrap .info {
        padding: 50px 0;
    }
}
.bg-wrap .title {
    font-size: clamp(1.25rem, 1.0299295775rem + 0.9389671362vw, 1.875rem);
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 20px;
}
@media only screen and (max-width: 750px) {
    .bg-wrap .title {
        margin-bottom: 10px;
    }
}
.bg-wrap .title .green {
    color: var(--green);
}
.bg-wrap .text {
    font-size: clamp(0.75rem, 0.6179577465rem + 0.5633802817vw, 1.125rem);
}

.bg-wrap01 {
    background: url("/event/stock-02/image/bg_image_01.jpg") no-repeat center/cover;
    background-size: cover;
    background-position: top !important;
    padding: 3vw 0;
}
@media only screen and (max-width: 750px) {
    .bg-wrap01 {
        background: url("/event/stock-02/image/bg_image_01_sp.jpg") no-repeat center/cover;
        background-size: contain;
        background-position: right !important;
    }
}
@media only screen and (max-width: 750px) {
    .bg-wrap01 .info {
        width: calc(100% - 130px);
    }
}

.bg-wrap02 {
    background: url("/event/stock-02/image/bg_image_02.jpg") no-repeat center/cover;
    background-size: cover;
    background-position: top !important;
    padding: 3vw 0;
}
@media only screen and (max-width: 750px) {
    .bg-wrap02 {
        background: url("/event/stock-02/image/bg_image_02_sp.jpg") no-repeat center/cover;
        background-position: left !important;
        background-size: contain;
    }
}
.bg-wrap02 .info {
    margin-left: auto;
}
@media only screen and (max-width: 750px) {
    .bg-wrap02 .info {
        width: calc(100% - 90px);
    }
}

/* --------------------------------
* apply-block
----------------------------------- */
.apply-block {
    padding: 60px 0;
}
@media only screen and (max-width: 750px) {
    .apply-block {
        padding: 40px 0;
    }
}

/* --------------------------------
* flow-block
----------------------------------- */
.flow-block {
    background-color: #c6e3d1;
}
.flow-block .inner-block {
    max-width: 1040px;
}
@media only screen and (max-width: 750px) {
    .flow-block .c-title {
        margin-bottom: 40px;
    }
}
.flow-block .subtitle {
    color: var(--white);
    background-color: var(--green);
    width: 278px;
    height: 56px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 28px;
    font-size: clamp(0.875rem, 0.6769366197rem + 0.8450704225vw, 1.4375rem);
}
@media only screen and (max-width: 750px) {
    .flow-block .subtitle {
        width: 170px;
        height: 36px;
        margin: 0 auto 10px;
    }
}
.flow-block .subtitle .number {
    margin-right: 4px;
    margin-bottom: 4px;
    font-weight: bold;
    font-size: clamp(1.75rem, 1.3098591549rem + 1.8779342723vw, 3rem);
}
.flow-block .notice {
    margin-top: 14px;
    font-size: clamp(0.6875rem, 0.6214788732rem + 0.2816901408vw, 0.875rem);
}
@media only screen and (max-width: 750px) {
    .flow-block .notice {
        margin-top: 24px;
        line-height: 1.45;
    }
}
.flow-block .notice a {
    text-decoration: underline;
}
.flow-block .flow-area {
    display: -ms-grid;
    display: grid;
    gap: 25px;
}
@media only screen and (min-width: 751px) {
    .flow-block .flow-area {
        -ms-grid-columns: (1fr) [3];
        grid-template-columns: repeat(3, 1fr);
    }
}
@media only screen and (max-width: 750px) {
    .flow-block .flow-area {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}
.flow-block .flow-area .flow-box {
    background-color: var(--white);
    border-radius: 33px;
    padding: 0 50px 26px;
    text-align: center;
    position: relative;
}
@media only screen and (max-width: 750px) {
    .flow-block .flow-area .flow-box {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 32px 10px;
        border-radius: 10px;
    }
}
.flow-block .flow-area .number {
    font-size: clamp(2.3125rem, 2.0264084507rem + 1.220657277vw, 3.125rem);
    color: #009682;
    font-weight: bold;
    line-height: 1;
}
@media only screen and (min-width: 751px) {
    .flow-block .flow-area .number {
        margin-top: -0.5em;
        margin-bottom: 20px;
    }
}
@media only screen and (max-width: 750px) {
    .flow-block .flow-area .number {
        position: absolute;
        width: 1em;
        height: 1em;
        top: -0.5em;
        left: 0;
        right: 0;
        margin: auto;
    }
}
@media only screen and (min-width: 751px) {
    .flow-block .flow-area .image {
        height: 123px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 18px;
    }
}
@media only screen and (max-width: 750px) {
    .flow-block .flow-area .image {
        width: 10.666vw;
        text-align: center;
    }
		
    .flow-block .flow-area .image03 {
        width: 17.333vw;
    }
		
}
.flow-block .flow-area .image img {
    max-height: 100%;
}
@media only screen and (max-width: 750px) {
    .flow-block .flow-area .image img {
        max-height: 110px;
    }
}
.flow-block .flow-area .text {
    font-size: clamp(1rem, 0.911971831rem + 0.3755868545vw, 1.25rem);
    font-weight: bold;
    line-height: 1.27;
    text-align: center;
}
@media only screen and (max-width: 750px) {
    .flow-block .flow-area .text {
        width: 42.6666666667vw;
    }
}

/* --------------------------------
* contact-block
----------------------------------- */
.contact-block {
    padding-bottom: 180px;
    overflow: hidden;
}
@media only screen and (max-width: 750px) {
    .contact-block {
        padding-bottom: 60px;
    }
}
.contact-block .inner-block {
    max-width: 1360px;
}
.contact-block .c-title {
    font-size: clamp(1.3125rem, 0.9823943662rem + 1.4084507042vw, 2.25rem);
}
@media only screen and (max-width: 750px) {
    .contact-block .c-title {
        margin-bottom: 10px;
    }
}
.contact-block .intro {
    font-size: clamp(0.75rem, 0.6179577465rem + 0.5633802817vw, 1.125rem);
}
@media only screen and (min-width: 751px) {
    .contact-block .intro {
        padding: 0 30px;
        max-width: 870px;
        margin: 0 auto 40px;
    }
}
@media only screen and (max-width: 750px) {
    .contact-block .intro {
        line-height: 1.42;
        margin: 0 auto 20px;
    }
}
.contact-block .leaf {
    position: relative;
    padding: 20px 20px 30px;
}
@media only screen and (max-width: 750px) {
    .contact-block .leaf {
        padding: 10px 0 20px;
    }
}
@media only screen and (min-width: 751px) {
    .contact-block .leaf::before,
    .contact-block .leaf::after {
        content: "";
        position: absolute;
        width: 150px;
        height: 406px;
        background: url("/event/stock-02/image/icon_leaf.svg") no-repeat center/contain;
        top: -30px;
        z-index: 1;
    }
}
@media only screen and (min-width: 751px) {
    .contact-block .leaf::before {
        left: -120px;
    }
}
@media only screen and (min-width: 751px) {
    .contact-block .leaf::after {
        right: -120px;
        -webkit-transform: scale(-1, 1);
        transform: scale(-1, 1);
    }
}
.contact-block .sp-leaf {
    position: relative;
}
@media only screen and (max-width: 750px) {
    .contact-block .sp-leaf {
        max-width: 400px;
        margin: 0 auto;
    }
}
@media only screen and (max-width: 750px) {
    .contact-block .sp-leaf::before,
    .contact-block .sp-leaf::after {
        content: "";
        position: absolute;
        width: 50px;
        height: 130px;
        background: url("/event/stock-02/image/icon_leaf.svg") no-repeat center/contain;
        top: 0px;
        z-index: 1;
    }
}
@media only screen and (max-width: 750px) {
    .contact-block .sp-leaf::before {
        left: 0px;
    }
}
@media only screen and (max-width: 750px) {
    .contact-block .sp-leaf::after {
        right: 0px;
        -webkit-transform: scale(-1, 1);
        transform: scale(-1, 1);
    }
}
.contact-block .grade-box {
    background-color: #fffdeb;
    position: relative;
    max-width: 880px;
}
@media only screen and (min-width: 751px) {
    .contact-block .grade-box {
        width: calc(100% - 160px);
        margin: 80px auto 0;
        border-top: 18px solid #d8caa3;
        border-bottom: 18px solid #d8caa3;
    }
}
@media only screen and (max-width: 750px) {
    .contact-block .grade-box {
        padding: 0 20px;
        width: calc(100% + 40px);
        margin: 20px -20px 0;
        border-top: 10px solid #d8caa3;
        border-bottom: 10px solid #d8caa3;
    }
}
.contact-block .grade-box::before,
.contact-block .grade-box::after {
    content: "";
    position: absolute;
    width: 74px;
    height: 379px;
    background: url("/event/stock-02/image/contact_circle.png") no-repeat center/contain;
    top: 0;
}
.contact-block .grade-box::before {
    left: -74px;
}
.contact-block .grade-box::after {
    right: -74px;
    -webkit-transform: scale(-1, 1);
    transform: scale(-1, 1);
}
.contact-block .grade-box .title {
    font-weight: bold;
    font-size: clamp(0.75rem, 0.4198943662rem + 1.4084507042vw, 1.6875rem);
    text-align: center;
    margin-bottom: 20px;
}
@media only screen and (max-width: 750px) {
    .contact-block .grade-box .title {
        line-height: 1.42;
        margin-bottom: 8px;
    }
}
.contact-block .grade-box .ribbon {
    position: relative;
    font-size: clamp(0.6875rem, 0.511443662rem + 0.7511737089vw, 1.1875rem);
    font-weight: bold;
    color: var(--white);
    background-color: #cfba7d;
    padding: 6px 10px;
    margin: 0 auto 14px;
    max-width: 640px;
    text-align: center;
}
@media only screen and (max-width: 750px) {
    .contact-block .grade-box .ribbon {
        max-width: calc(100% - 60px);
        padding: 3px 10px;
        line-height: 1.45;
        margin: 0 auto 20px;
    }
}
.contact-block .grade-box .ribbon::before,
.contact-block .grade-box .ribbon::after {
    content: "";
    position: absolute;
    width: 54px;
    height: 48px;
    bottom: -12px;
    background: url("/event/stock-02/image/icon_ribbon.svg") no-repeat center/contain;
}
@media only screen and (max-width: 750px) {
    .contact-block .grade-box .ribbon::before,
    .contact-block .grade-box .ribbon::after {
        width: 32px;
        height: 27px;
        bottom: -7px;
    }
}
.contact-block .grade-box .ribbon::before {
    left: -29px;
}
@media only screen and (max-width: 750px) {
    .contact-block .grade-box .ribbon::before {
        left: -18px;
    }
}
.contact-block .grade-box .ribbon::after {
    right: -29px;
    -webkit-transform: scale(-1, 1);
    transform: scale(-1, 1);
}
@media only screen and (max-width: 750px) {
    .contact-block .grade-box .ribbon::after {
        right: -18px;
    }
}
.contact-block .grade-box .star {
    text-align: center;
    line-height: 1;
    font-size: clamp(0.6875rem, 0.4674295775rem + 0.9389671362vw, 1.3125rem);
    font-family: YuMincho, "Yu Mincho";
    font-weight: 800;
    color: #b08e2c;
}
@media only screen and (min-width: 751px) {
    .contact-block .grade-box .star {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
.contact-block .grade-box .star .number {
    font-size: clamp(1.6875rem, 1.2913732394rem + 1.6901408451vw, 2.8125rem);
}
.contact-block .grade-box .star .big {
    font-size: clamp(2.5rem, 1.7957746479rem + 3.0046948357vw, 4.5rem);
    line-height: 1;
}
@media only screen and (min-width: 751px) {
    .contact-block .grade-box .star .big {
        margin-left: 20px;
        padding-top: 6px;
    }
}
@media only screen and (max-width: 750px) {
    .contact-block .grade-box .star .year {
        margin-bottom: 10px;
    }
}
.contact-block .grade-box .card {
    margin: 20px auto 0;
    max-width: 362px;
}
@media only screen and (max-width: 750px) {
    .contact-block .grade-box .card {
        max-width: 170px;
        margin: 10px auto 0;
    }
}

.c-tab {
    max-width: 1260px;
    margin: 0 auto;
    position: relative;
}

.c-tab .image {
    position: absolute;
    width: 220px;
    right: -3%;
    bottom: -28%;
}

@media only screen and (max-width: 1200px) {
    .c-tab .image {
        width: 200px;
    }
}

.tab-area {
    /* display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer; */
}
.tab-area .tab {
    width: 100%;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: var(--white);
    font-size: clamp(0.8125rem, 0.5264084507rem + 1.220657277vw, 1.625rem);
    font-weight: bold;
    border-radius: 18px 18px 0 0;
}
@media only screen and (max-width: 750px) {
    .tab-area .tab {
        height: 6.9333333333vw;
        min-height: 26px;
    }
}

.info-box {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 3%;
    height: 214px;
}

.info-box-1 .tab {
    background-color: var(--green);
}

.info-box-2 .tab {
    background-color: #0abc86;
}

.info-box-1 {
    border: 2px solid var(--green);
}

.info-box-2 {
    border: 2px solid #0abc86 !important;
}

.content-area {
    font-size: 30px;
    text-align: center;
    display: flex;
    justify-content: center;
}
.content-area .content {
    border-radius: 20px;
    width: 40%;
    margin: 0 10px;
}
@media only screen and (max-width: 750px) {
    .content-area .content {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}
.content-area .content .info {
    text-align: center;
    padding: 0 4%;
}

@media only screen and (max-width: 1100px) {
    .content-area {
        display: flex;
        flex-wrap: wrap;
    }
    .content-area .content {
        width: 100%;
        margin-bottom: 30px;
    }
}

.content-area .content .image {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
@media only screen and (min-width: 751px) {
    .content-area .content .image {
        margin-left: 30px;
    }
}
.content-area .green {
    border: 2px solid var(--green);
}
@media only screen and (min-width: 751px) {
    .content-area .green .image {
        width: 30%;
    }
}
@media only screen and (max-width: 750px) {
    .content-area .green .image {
        width: 32vw;
    }
}
.content-area .lightgreen {
    border: 2px solid #0abc86;
}
@media only screen and (max-width: 750px) {
    .content-area .lightgreen {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}
@media only screen and (min-width: 751px) {
    .content-area .lightgreen .info {
        padding-top: 2.0833333333vw;
        max-width: 486px;
    }
}
@media only screen and (min-width: 751px) {
    .content-area .lightgreen .image {
        width: 19.4444444444vw;
        max-width: 280px;
    }
}
@media only screen and (max-width: 750px) {
    .content-area .lightgreen .image {
        width: 34.6666666667vw;
    }
}
.content-area .tel {
    font-size: clamp(36px, 3.7vw, 50px);
    font-weight: bold;
    position: relative;
    display: inline-block;
    color: var(--green);
    line-height: 1;
    padding-left: 36px;
}
@media only screen and (max-width: 750px) {
    .content-area .tel {
        padding-left: 25px;
        margin-bottom: 10px;
    }
}
.content-area .tel::before {
    content: "";
    position: absolute;
    width: 30px;
    height: 42px;
    background: url("/event/stock-02/image/icon_tel.svg") no-repeat center/contain;
    left: 0;
    top: 8px;
}
@media only screen and (max-width: 750px) {
    .content-area .tel::before {
        width: 25px;
        height: 30px;
    }
}
.content-area .link {
    font-size: clamp(1.3rem, 1vw, 1.8rem);
    font-weight: bold;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #0abc86;
    line-height: 1;
    color: var(--white);
    height: 50px;
}
@media only screen and (min-width: 751px) {
    .content-area .link {
        padding-right: 30px;
        -webkit-box-shadow: 3px 3px 10px 0 rgba(34, 34, 34, 0.3);
        box-shadow: 3px 3px 10px 0 rgba(34, 34, 34, 0.3);
        border-radius: 54px;
        margin-bottom: 20px;
    }
}
@media only screen and (max-width: 750px) {
    .content-area .link {
        padding-right: 20px;
        -webkit-box-shadow: 2px 2px 5px 0 rgba(34, 34, 34, 0.3);
        box-shadow: 2px 2px 5px 0 rgba(34, 34, 34, 0.3);
        border-radius: 27px;
        height: 8vw;
        width: clamp(12.5rem, 6.25rem + 26.67vw, 18.75rem);
        margin-bottom: 10px;
    }
}
.content-area .link::before,
.content-area .link::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}
.content-area .link::before {
    width: 33px;
    height: 33px;
    background: var(--white);
    right: 20px;
    border-radius: 50%;
}
@media only screen and (max-width: 750px) {
    .content-area .link::before {
        width: 16px;
        height: 16px;
    }
}
.content-area .link::after {
    right: 32px;
    width: 10px;
    height: 10px;
    border-left: 2px solid var(--green);
    border-bottom: 2px solid var(--green);
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    -webkit-transition: 0.6s cubic-bezier;
    transition: 0.6s cubic-bezier;
}
@media only screen and (max-width: 750px) {
    .content-area .link::after {
        border-left: 1px solid var(--green);
        border-bottom: 1px solid var(--green);
        right: 26px;
        top: 2px;
        width: 4px;
        height: 4px;
    }
}
.content-area .hour {
    font-size: clamp(16px, 1.9vw, 20px);
    font-weight: bold;
    line-height: 1.3;
}
.content-area .notice {
    font-size: 11px;
    text-align: left;
    margin-top: 10px;
}
@media only screen and (max-width: 750px) {
    .content-area .notice {
        margin-top: 2px;
        line-height: 1.33;
    }
}

@media only screen and (max-width: 1100px) {
    .content-area .tel {
        font-size: clamp(1.6875rem, 0.7632042254rem + 3.9436619718vw, 4.3125rem);
    }
    .content-area .hour {
        font-size: clamp(0.6875rem, 0.3573943662rem + 1.4084507042vw, 1.625rem);
    }
    .c-tab .image {
        bottom: 0%;
    }
}

@media only screen and (max-width: 600px) {
    .content-area .tel {
        padding-left: 18px;
    }
    .tab-area .tab {
        min-height: 40px;
        font-size: clamp(1.25rem, 1.0299295775rem + 0.9389671362vw, 1.875rem);
    }
    .content-area .tel::before {
        left: -4%;
    }
    .content-area .green .image {
        width: 25vw;
    }
    .content-area .content {
        border-radius: 10px;
    }
    .tab-area .tab {
        border-radius: 8px 8px 0 0;
    }
    .content-area .content .info {
        padding: 0 0%;
    }
    .content-area .link {
        font-size: clamp(0.875rem, 0.5228873239rem + 1.5023474178vw, 1.875rem);
    }
    .content-area .notice {
        font-size: clamp(0.625rem, 0.4929577465rem + 0.5633802817vw, 1rem);
    }
    .info-box {
        height: 180px;
    }
    .info-box-2 .info-box {
        justify-content: flex-start;
    }
    .c-tab .image {
        right: -2%;
    }
}

@media only screen and (max-width: 500px) {
    .c-tab .image {
        position: absolute;
        width: 150px;
        right: -4%;
        bottom: 2%;
    }
}

@media only screen and (max-width: 355px) {
    .c-tab .image {
        width: 120px;
        right: -8%;
    }
}

/* --------------------------------
* security-block
----------------------------------- */
@media only screen and (min-width: 751px) {
    .security-block {
        padding-bottom: 180px;
    }
}
@media only screen and (max-width: 750px) {
    .security-block {
        padding-bottom: 140px;
    }
}
@media only screen and (min-width: 751px) {
    .security-block .inner-block {
        max-width: 1030px;
    }
}
.security-block .security-title {
    font-size: clamp(1.25rem, 1.0299295775rem + 0.9389671362vw, 1.875rem);
    text-align: center;
    font-weight: bold;
    margin-bottom: 10px;
}
.security-block .intro {
    font-size: clamp(0.75rem, 0.7059859155rem + 0.1877934272vw, 0.875rem);
    text-align: center;
}
@media only screen and (max-width: 750px) {
    .security-block .intro {
        width: calc(100% - 40px);
        margin: 0 auto;
    }
}
.security-block .text {
    font-size: clamp(0.75rem, 0.7059859155rem + 0.1877934272vw, 0.875rem);
}
.security-block .security-slider {
    margin-top: 40px;
    position: relative;
}
@media only screen and (min-width: 751px) {
    .security-block .security-slider::before {
        content: "";
        position: absolute;
        width: 29%;
        height: 100%;
        background-color: var(--gray);
        left: 0;
        z-index: 2;
        top: 0;
    }
}
.security-block .security-slider .security-box {
    border-radius: 23px;
    background-color: var(--white);
}
@media only screen and (min-width: 751px) {
    .security-block .security-slider .security-box {
        margin: 0 17px;
        padding: 40px;
    }
}
@media only screen and (max-width: 750px) {
    .security-block .security-slider .security-box {
        margin: 0 30px;
        padding: 20px;
    }
}
.security-block .security-slider .image {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    height: 104px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
@media only screen and (min-width: 751px) {
    .security-block .security-slider .image {
        margin: 0 auto 20px;
    }
}
@media only screen and (max-width: 1024px) {
    .security-block .security-slider .image {
        margin: 0 auto 20px;
    }
}
@media only screen and (max-width: 750px) {
    .security-block .security-slider .image {
        max-width: 80px;
    }
}
.security-block .security-slider .info .title {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: clamp(0.875rem, 0.7209507042rem + 0.6572769953vw, 1.3125rem);
    text-align: center;
}
@media only screen and (max-width: 750px) {
    .security-block .security-slider .info .title {
        margin-bottom: 10px;
    }
}

.arrows-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    bottom: 100px;
    left: 0;
    right: 0;
}
@media only screen and (max-width: 750px) {
    .arrows-dots {
        bottom: 60px;
    }
}

.slick-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 2;
    margin: 0 22px;
}
.slick-dots li {
    background: #cccccc;
    border-radius: 50%;
    text-indent: -9999px;
    height: 11px;
    width: 11px;
}
@media only screen and (max-width: 750px) {
    .slick-dots li {
        height: 10px;
        width: 10px;
    }
}
.slick-dots li + li {
    margin-left: 22px;
}
.slick-dots li.slick-active {
    opacity: 1;
    background: #1fbc86;
}

.slick-arrow {
    font-size: 0;
    z-index: 2;
    border-radius: 50%;
    width: 57px;
    height: 57px;
    background-color: #1fbc86;
    position: relative;
}
.slick-arrow.slick-prev::before {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
}
.slick-arrow.slick-disabled {
    background-color: #ccc;
    pointer-events: none;
}
.slick-arrow::before {
    content: "";
    width: 16px;
    height: 16px;
    border: 0px;
    border-top: solid 3px var(--white);
    border-right: solid 3px var(--white);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
@media only screen and (max-width: 750px) {
    .slick-arrow::before {
        height: 18px;
        width: 18px;
    }
}

.slick-prev::before {
    left: 4px;
}

.slick-next::before {
    right: 4px;
}

.slick-track {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.slick-slide {
    height: auto !important;
}

/* --------------------------------
* link-block
----------------------------------- */
.link-block {
    position: relative;
}
@media only screen and (min-width: 751px) {
    .link-block {
        padding: 90px 0;
				margin-bottom: 0px;
    }
}
@media only screen and (max-width: 750px) {
    .link-block {
        padding: 70px 0 60px;
    }
}
.link-block .link-title {
    font-size: clamp(1.375rem, 1.2429577465rem + 0.5633802817vw, 1.75rem);
    text-align: center;
    font-weight: bold;
    margin-bottom: 40px;
    color: var(--green);
}
@media only screen and (max-width: 750px) {
    .link-block .link-title {
        margin-bottom: 30px;
    }
}
@media only screen and (min-width: 751px) {
    .link-block .button-wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
@media only screen and (max-width: 750px) {
    .link-block .button-wrap {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 8px 1fr;
        grid-template-columns: 1fr 1fr;
        gap: 10px 8px;
    }
}
.link-block .button-wrap a {
    font-size: clamp(0.75rem, 0.7059859155rem + 0.1877934272vw, 0.875rem);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: var(--green);
    border: solid 1px var(--green);
    text-align: center;
    border-radius: 27px;
    height: 43px;
    background-color: var(--white);
}
@media only screen and (min-width: 751px) {
    .link-block .button-wrap a {
        margin: 0 4px;
        max-width: 245px;
        width: 17.0138888889vw;
    }
    .link-block .button-wrap a:hover {
        background-color: var(--green);
        color: var(--white);
    }
}
@media only screen and (max-width: 750px) {
    .link-block .button-wrap a {
        height: 38px;
    }
}

/* -----------------------------------------------
* Modules エントリーポイント
-------------------------------------------------- */
/* common */
/* block */
/* common block */
/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */

/* -----------------------------------------------
* オリコン oricon 画像の配置（削除時はコメントアウトしてください）
-------------------------------------------------- */
@media only screen and (min-width: 751px) {
    .oricon {
        z-index: 100;
        position: relative;
        top: 61%;
    }
    .oricon img {
        max-width: 300px;
    }
}

@media screen and (min-width: 501px) and (max-width: 750px) {
    .oricon {
        z-index: 100;
        position: relative;
        top: -3rem;
        padding: 0px 15px;
    }
    .oricon img {
        width: 100%;
    }
}

@media only screen and (max-width: 500px) {
    .oricon {
        z-index: 100;
        position: relative;
        padding: 0px 15px;
    }
    .oricon img {
        width: 100%;
    }
}

/* -----------------------------------------------
* 現在実施中のプログラム・キャンペーン
-------------------------------------------------- */

/*cont01*/
.cont01 {
    margin: 70px 0px 80px 0px;
}
.co_inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 10px;
}
.ttl {
    font-size: 2.4rem;
    font-weight: bold;
    color: #009682;
    text-align: center;
    padding-bottom: 35px;
    background: url("/event/stock-02/image/ttlbg.png") no-repeat scroll center bottom;
}
.sbox {
    margin-top: 70px;
    height: 540px;
    overflow-y: scroll;
}
.sbox li {
    padding: 20px 0;
    border-top: 1px solid #333;
    max-width: 98%;
}
.sbox li:first-child {
    padding: 0 0 20px;
    border: none;
}
.sbox li a {
    display: flex;
    justify-content: space-between;
}
.sbox li a:hover img {
    opacity: 0.8;
}
.sbox li a .simg {
    width: 38.4%;
}
.sbox li a .stxt {
    width: 60%;
}
.sbox li .sttl {
    font-size: 1.4rem;
    font-weight: bold;
}
.sbox li .stxt02 {
    margin-top: 5px;
    font-size: 1rem;
    font-weight: bold;
}
.sbox li .stxt02 .sicon01 {
    padding: 1px 5px;
    background: #2a84dd;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    margin-right: 5px;
}
.sbox li .stxt02 .sicon02 {
    padding: 1px 5px;
    background: #e83a3a;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    margin-right: 5px;
}
.sbox li .stxt03 {
    margin-top: 5px;
    font-size: 1.1rem;
}

/*cont01*/
@media screen and (max-width: 767px) {
    .cont01 {
        margin-top: 20%;
    }
    .co_inner {
        max-width: 90%;
        margin: 0 auto;
        padding: 0;
    }
    .ttl {
        font-size: 4.8vw;
        padding-bottom: 25px;
        background-size: 80px auto;
    }
    .sbox {
        margin-top: 40px;
        height: 540px;
        overflow-y: scroll;
    }
    .sbox li {
        padding: 20px 0;
        border-top: 1px solid #333;
        max-width: 98%;
    }
    .sbox li:first-child {
        padding: 0 0 20px;
        border: none;
    }
    .sbox li a {
        display: block;
    }
    .sbox li a .simg {
        width: 100%;
        text-align: center;
    }
    .sbox li a .stxt {
        width: 100%;
        margin-top: 15px;
    }
    .sbox li .sttl {
        font-size: 4.26vw;
        font-weight: bold;
    }
    .sbox li .stxt02 {
        margin-top: 5px;
        font-size: 2.93vw;
        font-weight: bold;
    }
    .sbox li .stxt02 .sicon01 {
        padding: 1px 5px;
        font-size: 2.93vw;
        margin-right: 5px;
    }
    .sbox li .stxt02 .sicon02 {
        padding: 1px 5px;
        font-size: 2.93vw;
        margin-right: 5px;
    }
    .sbox li .stxt03 {
        margin-top: 5px;
        font-size: 3.46vw;
    }
}

@media only screen and (max-width: 751px) {
    .banner_area02 {
        margin-top: 25px;
    }
}
