:root {
    --font-rubik: "Rubik", sans-serif;
    --font-commissioner: "Commissioner", sans-serif;
    --color-black: #000;
    --color-green: #036f03;
    --color-green02: #67b72a
}

html {
    font-size: 62.5%;
    overflow-y: scroll
}

@media screen and (max-width: 1440px) {
    html {
        font-size: .6944444444vw;
        font-size: clamp(8px, .6944444444vw, 10px)
    }
}

@media screen and (max-width: 767.9px) {
    html {
        font-size: 2.5641025641vw
    }
}

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

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
address,
time,
ul,
ol,
li,
dl,
dt,
dd,
table,
th,
td,
img,
figure,
figcaption,
/* form, */
input,
button,
textarea,
select {
    margin: 0;
    padding: 0;
    border: none;
    line-height: 100%;
    list-style-type: none;
    font-style: normal;
    font-weight: normal;
    font-family: "Noto Sans JP", メイリオ, Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
    word-wrap: break-word;
    overflow-wrap: break-word;
    -webkit-text-size-adjust: 100%
}

h2 {
    font-size: 4rem;
    font-weight: 700
}

h3 {
    font-size: 3.2rem;
    font-weight: 700
}

h4 {
    font-size: 2.4rem;
    font-weight: 700
}

p {
    font-size: 1.6rem;
    line-height: 2
}

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

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

button:hover {
    cursor: pointer
}

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

@media screen and (min-width: 768px) {
    a {
        -webkit-transition: opacity .3s ease;
        transition: opacity .3s ease
    }

    a:hover {
        opacity: .6;
        cursor: pointer
    }
}

img,
object,
video {
    vertical-align: bottom;
    max-width: 100%;
    height: auto
}

body {
    color: #fff;
    font-size: 1.6rem;
    text-align: left;
    min-height: 100vh;
    line-height: 1.6;
}

section {
    position: relative;
    z-index: 1
}

.wrap {
    width: 96%;
    max-width: 104.5rem;
    padding: 0;
    margin: 0 auto;
    position: relative
}

th,
td,
dt,
dd,
li,
input,
button,
textarea {
    font-size: 1.6rem;
    line-height: 1.8
}

.h-center {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%) translateZ(0);
    transform: translateX(-50%) translateZ(0)
}

.v-center {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%) translateZ(0);
    transform: translateY(-50%) translateZ(0)
}

.hv-center {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) translateZ(0);
    transform: translate(-50%, -50%) translateZ(0)
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.rubik {
    font-family: "Rubik", sans-serif
}

.color-green {
    color: var(--color-green)
}

@media screen and (min-width: 768px) {
    .fade {
        -webkit-transition: opacity .3s ease;
        transition: opacity .3s ease
    }

    .fade:hover {
        opacity: .6;
        cursor: pointer
    }

    a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none
    }

    .sp_only {
        display: none
    }
}

@media screen and (max-width: 767.9px) {
    .wrap {
        width: 87.7%;
        padding: 0
    }

    input,
    textarea,
    select,
    .select {
        font-size: max(1.4rem, 16px) !important
    }

    .pc_only {
        display: none
    }
}

#header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    color: var(--color-black)
}

#header .wrap {
    width: 100%;
    max-width: 140rem;
    height: 11.8rem;
    padding: 1rem 3rem .7rem;
    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
}

#header .wrap .logo {
    position: relative;
    width: 37rem;
    margin-bottom: 1rem
}

#header .wrap .logo span {
    position: absolute;
    bottom: -0.4rem;
    left: 6.2rem;
    white-space: nowrap;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1
}

#header nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

#header nav .tel {
    font-size: 1.4rem;
    line-height: 1.2;
    text-align: center;
    margin-right: 2rem
}

#header nav .tel .rubik {
    font-size: 3.2rem;
    font-weight: bold
}

#header nav .btn_ico a {
    -webkit-box-shadow: 1px 5px 1px rgba(0, 0, 0, .22);
    box-shadow: 1px 5px 1px rgba(0, 0, 0, .22);
    padding-right: .5rem
}

#header nav .btn_ico a:hover {
    -webkit-box-shadow: 1px 5px 1px rgba(0, 0, 0, .22);
    box-shadow: 1px 5px 1px rgba(0, 0, 0, .22)
}

@media screen and (max-width: 767.9px) {
    #header {
        position: static
    }

    #header .wrap {
        height: 9.17rem;
        padding: 0 1.5rem 1.19rem
    }

    #header .wrap .logo {
        width: 22rem
    }

    #header .wrap .logo span {
        position: absolute;
        bottom: -2.44rem;
        left: 4.7rem;
        font-size: 2.28rem;
        -webkit-transform: scale(0.51);
        transform: scale(0.51);
        -webkit-transform-origin: left top;
        transform-origin: left top
    }
}

#footer {
    padding: 4rem 0 5rem;
    color: var(--color-black)
}

#footer .info {
    font-size: 1.4rem;
    margin: 1em 0
}

#footer .btn {
    margin: 1em 0
}

#footer .btn a {
    display: inline-block;
    background: #000;
    color: #fff;
    font-size: 1.4rem;
    line-height: 1.4;
    padding: .5em 1em
}

#footer .sns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 1em 0
}

#footer .copy {
    font-size: 1.2rem
}

@media screen and (max-width: 767.9px) {
    #footer {
        margin-bottom: 7rem
    }

    main:has(#contact:first-child)+#footer {
        margin-bottom: 0
    }
}

.fixed_nav {
    position: fixed;
    left: 0;
    bottom: 10px;
    z-index: 100;
    width: 100%;
    height: 7rem;
    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;
    padding: 0 3vw
}

.fixed_nav .tel {
    width: 6rem
}

.fixed_nav .tel img {
    width: 100%
}

.fixed_nav .btn_ico {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding-left: 2vw
}

.fixed_nav .btn_ico a {
    width: 100%;
    -webkit-box-shadow: 10px 10px 10px rgba(0, 0, 0, .4);
    box-shadow: 10px 10px 10px rgba(0, 0, 0, .4)
}

.heading_block {
    position: relative;
    font-size: 3rem;
    text-align: center;
    font-weight: 700;
    line-height: 1.7;
    color: #fff;
    margin-bottom: 5.5rem
}

.heading_block>span {
    display: block
}

.heading_block .heading_block__en {
    position: relative;
    left: -0.02em;
    font-size: 10rem;
    line-height: 1.1;
    margin-bottom: 1.4rem;
    font-family: var(--font-commissioner)
}

@media screen and (max-width: 767.9px) {
    .heading_block {
        font-size: 1.85rem;
        margin-bottom: 3.1rem
    }

    .heading_block .heading_block__en {
        font-size: 6rem;
        margin-bottom: .22rem
    }
}

.btn_ico a,
.btn_ico input {
    background: #ea5514 url(../img/ico_btn.svg) no-repeat right 1.5em center/1em auto;
    color: #fff;
    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;
    border-radius: 100px;
    width: 28rem;
    height: 6rem;
    font-size: 1.8rem;
    font-weight: bold
}

.sec_tit {
    font-size: 4rem;
    line-height: 1.5;
    font-weight: 700;
    margin-bottom: 2.28rem
}

@media screen and (max-width: 767.9px) {
    .sec_tit {
        font-size: 2.6rem;
        line-height: 1.5;
        margin-bottom: 1.3rem
    }
}

.sec_illust,
.sec_visual {
    position: absolute;
    z-index: -1;
    max-width: 1000rem
}

.bg_square_deco {
    --size: 130rem;
    position: absolute;
    display: block;
    width: var(--size);
    max-width: 1000rem;
    height: var(--size);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    z-index: -10;
    pointer-events: none
}

@media screen and (max-width: 767.9px) {
    .slider_sp {
        opacity: 0;
        display: block !important;
        position: relative;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        width: 100vw
    }

    .slider_sp.slick-initialized {
        opacity: 1
    }

    .slider_sp .slick-track {
        padding: .5rem 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch
    }

    .slider_sp .slick-slide {
        height: auto;
        margin: 0 .92rem
    }

    .slider_sp .slick-slide>div,
    .slider_sp .slick-slide>div>div {
        height: 100%
    }

    .slider_sp .slick-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;
        margin: 2.44rem auto 2rem;
        -webkit-column-gap: 1.7rem;
        -moz-column-gap: 1.7rem;
        column-gap: 1.7rem;
        max-width: 100%
    }

    .slider_sp .slick-dots li {
        --size: 1.6rem;
        width: var(--size);
        height: var(--size);
        border-radius: var(--size);
        display: block;
        background: #d9d9d9;
        opacity: 1;
        -webkit-transition: background-color .51s ease-in-out;
        transition: background-color .51s ease-in-out;
        cursor: pointer
    }

    .slider_sp .slick-dots li.slick-active {
        background: #fff
    }

    .slider_sp .slick-dots li button {
        font-size: 0px;
        display: none
    }

    .slick-dots {
        margin-top: 4rem
    }
}

main {
    padding-top: 11.8rem;
    overflow-x: hidden;
    background: var(--color-green)
}

@media screen and (max-width: 767.9px) {
    main {
        padding-top: 0
    }
}

.sec_ofr {
    position: relative;
    z-index: 50
}

.sec_ofr .wrap {
    padding: 10rem 0
}

.sec_ofr .ofr_box {
    position: relative;
    width: 100%;
    max-width: 87rem;
    padding: 4.4rem 2rem;
    margin-right: auto;
    margin-left: auto;
    background: #fff;
    text-align: center;
    color: var(--color-black)
}

.sec_ofr .ofr_box>.box_corner {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 0
}

.sec_ofr .ofr_box>.box_corner::before,
.sec_ofr .ofr_box>.box_corner::after {
    --border: 1.1rem solid #fff;
    --margin: -2.9rem;
    --size: 7.7rem;
    content: "";
    position: absolute;
    display: block;
    width: var(--size);
    height: var(--size);
    border: var(--border)
}

.sec_ofr .ofr_box>.box_corner:first-of-type {
    top: 0
}

.sec_ofr .ofr_box>.box_corner:first-of-type::before {
    top: var(--margin);
    left: var(--margin);
    border-right: none;
    border-bottom: none
}

.sec_ofr .ofr_box>.box_corner:first-of-type::after {
    top: var(--margin);
    right: var(--margin);
    border-left: none;
    border-bottom: none
}

.sec_ofr .ofr_box>.box_corner:last-of-type {
    bottom: 0
}

.sec_ofr .ofr_box>.box_corner:last-of-type::before {
    bottom: var(--margin);
    left: var(--margin);
    border-right: none;
    border-top: none
}

.sec_ofr .ofr_box>.box_corner:last-of-type::after {
    bottom: var(--margin);
    right: var(--margin);
    border-left: none;
    border-top: none
}

.sec_ofr .ofr_box .heading {
    color: var(--color-green);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: .7rem
}

.sec_ofr .ofr_box .heading .fukidashi{
    display: block;
    font-size: 3.5rem;
    position: relative;
    width: 80%;
    margin: 0 auto 24px;
    background-color: #FFE600;
    color: #3A3A3A;
    border-radius: 100vh;
    padding: .4em 0;
    animation: floatUpDown 2.5s ease-in-out infinite;
}
.sec_ofr .ofr_box .heading .fukidashi::after{
    position: absolute;
    content: "";
    bottom: -24px;
    left: 0;
    right: 0;
    margin: auto;
    width: 0px;
    border: 12px solid transparent;
    border-top: 14px solid #FFE600;
}

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.sec_ofr .btn_ico {
    margin: 1.6rem 0 2rem
}

.sec_ofr .btn_ico a {
    background: #ea5514 url(../img/ico_btn.svg) no-repeat right 1.5em center/1em auto;
    width: 34rem;
    height: 7rem;
    font-size: 2rem
}

.sec_ofr .tel {
    line-height: 1.3;
    font-size: 1.6rem
}

.sec_ofr .tel .rubik {
    font-size: 4rem;
    font-weight: bold
}

@media screen and (max-width: 767.9px) {
    .sec_ofr .wrap {
        padding: 5rem 0
    }

    .sec_ofr .ofr_box {
        width: 32rem;
        padding: 3.1rem 0
    }

    .sec_ofr .ofr_box>.box_corner::before,
    .sec_ofr .ofr_box>.box_corner::after {
        --border: 0.5rem solid #fff;
        --margin: -0.87rem;
        --size: 1.5rem
    }

    .sec_ofr .ofr_box .heading {
        font-size: 2rem
    }

    .sec_ofr .ofr_box .heading .fukidashi{
        font-size: 2rem;
        width: 90%;
    }
    .sec_ofr .ofr_box .heading .fukidashi::after{
    }

    .sec_ofr .ofr_box .text {
        font-size: 1.5rem;
        line-height: 1.69
    }

    .sec_ofr .btn_ico {
        margin: 1.15rem auto
    }

    .sec_ofr .btn_ico a {
        width: 22.8rem;
        height: 4.5rem;
        font-size: 1.4rem
    }

    .sec_ofr .tel {
        font-size: 1.19rem
    }

    .sec_ofr .tel .rubik {
        font-size: 2.3rem
    }
}

.fv .recommended_age {
    background: #000;
    color: #fff;
    text-align: center;
    padding: .15rem 0 .47rem
}

.fv .fv__wrapper {
    width: 100%;
    aspect-ratio: 2400/1000
}

.fv .fv__wrapper video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center
}

@media screen and (max-width: 767.9px) {
    .fv .recommended_age {
        padding: 0 0 .39rem
    }
}

.lead_block {
    text-align: center;
    color: #fff;
    z-index: 10
}

.lead_block>.wrap {
    padding-top: 7.7rem;
    padding-bottom: 13rem
}

.lead_block .bg_square_deco[data-num="01"] {
    --size: 137rem;
    top: 94.4rem;
    right: -87.7rem;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(-20.69%, #138a13), color-stop(99.73%, rgba(245, 159, 52, 0)));
    background: linear-gradient(180deg, #138a13 -20.69%, rgba(245, 159, 52, 0) 99.73%)
}

.lead_block .sec_illust {
    bottom: -4rem;
    right: -5rem;
    width: 22rem
}

.lead_block .sec_visual {
    bottom: -41.7rem;
    left: -89.6rem;
    width: 114rem
}

.lead_block .heading {
    margin-bottom: 6.2rem
}

.lead_block .logo {
    margin-bottom: 3.9rem
}

.lead_block_list {
    display: grid;
    grid-template-columns: repeat(4, auto);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-column-gap: 2.2rem;
    -moz-column-gap: 2.2rem;
    column-gap: 2.2rem;
    margin-bottom: 4rem
}

.lead_block_list__item {
    --size: 22.5rem;
    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;
    width: var(--size);
    height: var(--size);
    background-image: url(../img/deco/deco_baseball.svg);
    background-repeat: no-repeat;
    background-size: contain
}

.lead_block_list__item span {
    display: inline-block;
    background: #fff;
    color: var(--color-green02);
    font-size: 2.18rem;
    font-weight: 900;
    line-height: 1.3;
    border-radius: 100%;
    width: 84%;
    white-space: nowrap
}

.lead_block .text {
    font-size: 1.8rem;
    line-height: 1.8;
    margin-bottom: 1.4em;
    letter-spacing: .025em;
    font-weight: 400;
}

.lead_block .text .f-w-bold {
    font-weight: 600;
}

.lead_block .text.-large{
    font-size: 2em;
    font-weight: 600;
}

.lead_block .text .-marker{
    background: linear-gradient(transparent 70%, #4d9a12 0%);
    font-size: 1.15em;
}

.lead_block .box {
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 2.5rem;
    -moz-column-gap: 2.5rem;
    column-gap: 2.5rem;
    width: 100%;
    max-width: 64.4rem;
    padding: 3.2rem 3.7rem 3.1rem;
    height: auto;
    margin: 0 auto 5.4rem;
    background: #fff;
    text-align: left
}

.lead_block .box>.box_corner {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 0
}

.lead_block .box>.box_corner::before,
.lead_block .box>.box_corner::after {
    --border: 0.8rem solid #fff;
    --margin: -1.5rem;
    --size: 2.77rem;
    content: "";
    position: absolute;
    display: block;
    width: var(--size);
    height: var(--size);
    border: var(--border)
}

.lead_block .box>.box_corner:first-of-type {
    top: 0
}

.lead_block .box>.box_corner:first-of-type::before {
    top: var(--margin);
    left: var(--margin);
    border-right: none;
    border-bottom: none
}

.lead_block .box>.box_corner:first-of-type::after {
    top: var(--margin);
    right: var(--margin);
    border-left: none;
    border-bottom: none
}

.lead_block .box>.box_corner:last-of-type {
    bottom: 0
}

.lead_block .box>.box_corner:last-of-type::before {
    bottom: var(--margin);
    left: var(--margin);
    border-right: none;
    border-top: none
}

.lead_block .box>.box_corner:last-of-type::after {
    bottom: var(--margin);
    right: var(--margin);
    border-left: none;
    border-top: none
}

.lead_block .box .img_block {
    width: 15rem
}

.lead_block .box .text_block {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.lead_block .box_item {
    margin-bottom: 1.3rem
}

.lead_block .box_item__contents,
.lead_block .box_item__year {
    color: #000;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0
}

.lead_block .box_item__contents {
    color: var(--color-green)
}

@media screen and (max-width: 767.9px) {
    .lead_block>.wrap {
        padding-top: 3.7rem;
        padding-bottom: 17rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .lead_block .bg_square_deco[data-num="01"] {
        --size: 62rem;
        top: 87rem;
        right: -40rem
    }

    .lead_block .heading {
        -webkit-box-ordinal-group: -3;
        -ms-flex-order: -4;
        order: -4;
        margin-bottom: 2.5rem
    }

    .lead_block .text.-large{
        font-size: 1.6em;
    }

    .lead_block_list {
        -webkit-box-ordinal-group: -2;
        -ms-flex-order: -3;
        order: -3;
        grid-template-columns: repeat(2, auto);
        -webkit-column-gap: 1.4rem;
        -moz-column-gap: 1.4rem;
        column-gap: 1.4rem;
        row-gap: 1rem;
        margin-bottom: 4.4rem
    }

    .lead_block_list__item {
        --size: 18rem
    }

    .lead_block_list__item span {
        font-size: 1.8rem
    }

    .lead_block .logo {
        -webkit-box-ordinal-group: -1;
        -ms-flex-order: -2;
        order: -2;
        margin-bottom: 3.28rem
    }

    .lead_block .text {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
        margin-bottom: 5rem;
        text-align: left;
        font-size: 1.6rem;
        line-height: 1.92
    }

    .lead_block .sec_illust {
        bottom: -4rem;
        right: -0.2rem;
        width: 9.2rem
    }

    .lead_block .sec_visual {
        bottom: -25rem;
        left: -34.7rem;
        width: 56rem
    }

    .lead_block .box {
        -webkit-column-gap: 1.6rem;
        -moz-column-gap: 1.6rem;
        column-gap: 1.6rem;
        width: 96%;
        padding: 1.7rem 1.5rem 1.3rem 1.6rem;
        margin: 0 auto 3.4rem
    }

    .lead_block .box>.box_corner::before,
    .lead_block .box>.box_corner::after {
        --border: 0.47rem solid #fff;
        --margin: -0.96rem;
        --size: 1.77rem
    }

    .lead_block .box .img_block {
        width: 7rem
    }

    .lead_block .box_item {
        margin-bottom: .82rem
    }

    .lead_block .box_item__contents,
    .lead_block .box_item__year {
        font-size: 1.5rem
    }

    .lead_block .box_item__contents {
        font-size: 1.4rem
    }
}

.sec_step {
    position: relative;
    text-align: center;
    z-index: 50
}

.sec_step .wrap {
    padding-top: 2.8rem;
    padding-bottom: 8.7rem
}

.sec_step .bg_square_deco[data-num="01"] {
    --size: 104rem;
    top: 69rem;
    right: -76.7rem;
    opacity: .92;
    background: linear-gradient(224deg, #006400 21.44%, rgba(213, 58, 12, 0) 96.57%)
}

.sec_step .heading {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 8rem;
    font-size: 4.4rem;
    line-height: 1.5;
    font-weight: 700;
    text-align: left
}

.sec_step .sec_visual {
    top: 8.7rem;
    right: -80rem;
    width: 114rem
}

.sec_step .step_list {
    position: relative
}

.sec_step .step_list__item {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1fr;
    -webkit-column-gap: 2.2rem;
    -moz-column-gap: 2.2rem;
    column-gap: 2.2rem
}

.sec_step .step_list__item .num_box {
    --size: 17.7rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #006400;
    center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: .28rem;
    padding-bottom: .4rem;
    padding-right: .89rem;
    min-width: var(--size);
    width: var(--size);
    height: var(--size);
    border-radius: var(--size);
    background-image: url(../img/deco/deco_baseball.svg);
    background-repeat: no-repeat;
    background-size: contain;
    grid-row: 1/3;
    font-size: 2.2rem;
    font-family: var(--font-rubik);
    line-height: 1
}

.sec_step .step_list__item .num_box .num {
    display: block;
    text-align: center;
    font-size: 6rem;
    line-height: 1
}

.sec_step .step_list__item .tit {
    text-align: left;
    font-size: 3.2rem;
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 2rem
}

.sec_step .step_list__item .text {
    text-align: left;
    width: 44rem
}

.sec_step .step_list__item:nth-of-type(n+2) {
    margin-top: 7rem
}

@media screen and (max-width: 767.9px) {
    .sec_step .wrap {
        padding-top: 8.7rem;
        padding-bottom: 4.7rem
    }

    .sec_step .bg_square_deco[data-num="01"] {
        --size: 37rem;
        top: auto;
        bottom: -32.8rem;
        right: -22rem
    }

    .sec_step .heading {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        margin: 0 0 3.2rem auto;
        font-size: 2.56rem;
        line-height: 1.54;
        text-align: right
    }

    .sec_step .sec_visual {
        display: none
    }

    .sec_step .step_list__item {
        grid-template-columns: auto 1fr;
        grid-template-rows: auto 1fr;
        -webkit-column-gap: 1.5rem;
        -moz-column-gap: 1.5rem;
        column-gap: 1.5rem;
        row-gap: .25rem;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .sec_step .step_list__item .num_box {
        --size: 8rem;
        row-gap: .1rem;
        padding-bottom: .07rem;
        padding-right: .4rem;
        grid-row: 1/2;
        font-size: 1.2rem
    }

    .sec_step .step_list__item .num_box .num {
        font-size: 3.1rem
    }

    .sec_step .step_list__item .tit {
        font-size: 2rem;
        margin-top: 1rem;
        margin-bottom: 2rem
    }

    .sec_step .step_list__item .text {
        text-align: left;
        width: 100%;
        grid-column: 1/3
    }

    .sec_step .step_list__item:nth-of-type(n+2) {
        margin-top: 4rem
    }
}

.sec_leader {
    position: relative;
    z-index: 40;
    text-align: left
}

.sec_leader .wrap {
    padding-top: 13rem;
    padding-bottom: 5rem
}

.sec_leader .bg_square_deco[data-num="01"] {
    --size: 77rem;
    top: -34.7rem;
    left: 22rem;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    background: linear-gradient(274deg, rgba(245, 159, 52, 0) 4.14%, #138a13 96.18%)
}

.sec_leader .bg_square_deco[data-num="02"] {
    --size: 104rem;
    top: -34.7rem;
    left: 22rem;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-transform: rotate(45deg) translateX(77rem) translateY(-62rem);
    transform: rotate(45deg) translateX(77rem) translateY(-62rem);
    background: linear-gradient(274deg, #138a13 4.14%, rgba(245, 159, 52, 0) 96.18%)
}

.sec_leader .bg_square_deco[data-num="03"] {
    --size: 73rem;
    top: 19rem;
    left: -59.6rem;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    background: -webkit-gradient(linear, left bottom, left top, color-stop(14.44%, #006400), color-stop(96.75%, rgba(203, 68, 9, 0)));
    background: linear-gradient(0deg, #006400 14.44%, rgba(203, 68, 9, 0) 96.75%);
    -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
    clip-path: polygon(0 0, 100% 0, 0 100%);
    z-index: -100
}

.sec_leader .bg_square_deco[data-num="04"] {
    --size: 84.7rem;
    bottom: -38.9rem;
    left: -62.8rem;
    background: linear-gradient(274deg, rgba(245, 159, 52, 0) 4.14%, #138a13 96.18%)
}

.sec_leader .sec_illust {
    top: 13.7rem;
    right: -4.7rem;
    width: 28rem
}

.sec_leader .heading {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 8rem;
    font-size: 4.4rem;
    line-height: 1.5;
    font-weight: 700;
    text-align: left
}

.sec_leader .slider_lead_text {
    position: relative;
    text-align: left;
    width: 37.6rem;
    padding-bottom: 1.9rem;
    margin-top: 5.5rem;
    margin-bottom: 7rem;
    font-size: 1.7rem
}

.sec_leader .slider_lead_text::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100% - 4px);
    height: 1.4px;
    background: #fff
}

.sec_leader .slider_lead_text::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 2.6rem;
    height: 1.7rem;
    -webkit-clip-path: polygon(0 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 100%, 0 100%);
    background: #fff
}

.sec_leader .leader_slider {
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100vw
}

@media screen and (min-width: 768px) {
    .sec_leader .leader_slider {
        position: relative
    }

    .sec_leader .leader_slider .slick-list {
        padding-left: 7rem;
        padding-bottom: 0rem
    }

    .sec_leader .leader_block {
        position: relative;
        padding-bottom: 7.7rem
    }

    .sec_leader .leader_block__img {
        width: 55rem
    }

    .sec_leader .leader_block__profile {
        position: relative;
        top: -7.3rem;
        left: calc(50% + 10rem);
        width: 39rem
    }

    .sec_leader .leader_block__name {
        position: relative;
        font-size: 3rem;
        line-height: 1.1;
        padding-bottom: 1.44rem;
        margin-bottom: 1rem
    }

    .sec_leader .leader_block__name::before,
    .sec_leader .leader_block__name::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 96.2%;
        height: 1.3px;
        background: #fff
    }

    .sec_leader .leader_block__name::after {
        -webkit-transform-origin: center left;
        transform-origin: center left;
        -webkit-transform: rotate(-135deg) translateX(-0.017rem);
        transform: rotate(-135deg) translateX(-0.017rem);
        width: 9.6rem;
        border-radius: 1rem
    }

    .sec_leader .leader_block__text {
        font-size: 1.5rem
    }
}

@media screen and (max-width: 767.9px) {
    .sec_leader .wrap {
        padding-top: 5.6rem;
        padding-bottom: 4.7rem
    }

    .sec_leader .bg_square_deco[data-num="01"] {
        --size: 36rem;
        top: -21rem;
        left: 11.9rem
    }

    .sec_leader .bg_square_deco[data-num="02"] {
        --size: 37rem;
        top: -21rem;
        left: 11.9rem;
        -webkit-transform: rotate(45deg) translateX(40.5rem) translateY(11.87rem);
        transform: rotate(45deg) translateX(40.5rem) translateY(11.87rem)
    }

    .sec_leader .bg_square_deco[data-num="03"] {
        --size: 27rem;
        top: 10.6rem;
        left: -20rem
    }

    .sec_leader .bg_square_deco[data-num="04"] {
        --size: 44rem;
        bottom: -25rem;
        left: -31rem
    }

    .sec_leader .sec_illust {
        top: 3.9rem;
        right: -0.4rem;
        width: 11rem
    }

    .sec_leader .heading_block {
        margin: 0 auto 2.5rem
    }

    .sec_leader .slider_lead_text {
        width: 100%;
        padding-bottom: 1.69rem;
        margin-top: 3.2rem;
        margin-bottom: 2.8rem
    }

    .sec_leader .leader_block {
        position: relative
    }

    .sec_leader .leader_block__img {
        width: 100%;
        margin-bottom: 2rem
    }

    .sec_leader .leader_block__profile {
        width: 100%;
        margin-right: auto;
        margin-left: auto;
        opacity: 0;
        -webkit-transition: opacity .4s ease-in-out;
        transition: opacity .4s ease-in-out
    }

    .sec_leader .leader_block__name {
        position: relative;
        text-align: center;
        font-size: 2.56rem;
        line-height: 1.1;
        padding-bottom: 1.37rem;
        margin-bottom: 1rem;
        border-bottom: 1.3px solid #fff
    }

    .sec_leader .leader_block__text {
        font-size: 1.47rem
    }

    .sec_leader .slick-center .leader_block__profile {
        opacity: 1
    }
}

.sec_policy {
    text-align: center
}

.sec_policy .wrap {
    padding-top: 9.6rem;
    padding-bottom: 19rem
}

.sec_policy .bg_square_deco[data-num="01"] {
    --size: 104rem;
    top: 44rem;
    right: -92.8rem;
    -webkit-transform-origin: top right;
    transform-origin: top right;
    opacity: .92;
    background: linear-gradient(181deg, #006400 1.45%, rgba(213, 58, 12, 0) 98.56%);
    z-index: -100
}

.sec_policy .bg_square_deco[data-num="02"] {
    --size: 92rem;
    top: 39.7rem;
    right: -100rem;
    -webkit-transform-origin: top right;
    transform-origin: top right;
    opacity: .92;
    -webkit-transform: rotate(45deg) translateX(56rem) translateY(25rem);
    transform: rotate(45deg) translateX(56rem) translateY(25rem);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(25.66%, rgba(237, 230, 57, 0.6)), color-stop(99.63%, rgba(245, 159, 52, 0.1)));
    background: linear-gradient(180deg, rgba(237, 230, 57, 0.6) 25.66%, rgba(245, 159, 52, 0.1) 99.63%)
}

.sec_policy .heading_block {
    text-align: center
}

.sec_policy .text {
    margin-bottom: 7rem
}

.sec_policy .policy_list {
    position: relative;
    width: 100%;
    max-width: 88rem
}

.sec_policy .policy_list__item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-column-gap: 1.19rem;
    -moz-column-gap: 1.19rem;
    column-gap: 1.19rem;
    padding: 2rem 0 2.02rem .1rem;
    text-align: left;
    border-bottom: 1.3px solid #fff;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.5
}

.sec_policy .policy_list__item::before {
    --size: 3.7rem;
    content: "";
    position: relative;
    display: block;
    background: url(../img/deco/icon_deco_baseball02.svg);
    background-size: contain;
    background-repeat: no-repeat;
    min-width: var(--size);
    width: var(--size);
    height: var(--size)
}

@media screen and (max-width: 767.9px) {
    .sec_policy .wrap {
        padding-top: 6.9rem;
        padding-bottom: 4rem
    }

    .sec_policy .bg_square_deco[data-num="01"] {
        --size: 80rem;
        top: 44rem;
        right: -92.8rem
    }

    .sec_policy .bg_square_deco[data-num="02"] {
        --size: 45rem;
        top: 39.7rem;
        right: -100rem;
        -webkit-transform: rotate(45deg) translateX(56rem) translateY(25rem);
        transform: rotate(45deg) translateX(56rem) translateY(25rem)
    }

    .sec_policy .text {
        text-align: left;
        margin-bottom: 2rem
    }

    .sec_policy .policy_list {
        position: relative
    }

    .sec_policy .policy_list__item {
        -webkit-column-gap: 1.1rem;
        -moz-column-gap: 1.1rem;
        column-gap: 1.1rem;
        padding: 1.47rem 0 1.44rem .18rem;
        text-align: left;
        border-bottom: .14rem solid #fff;
        font-size: 1.8rem;
        line-height: 1.69
    }

    .sec_policy .policy_list__item::before {
        --size: 2.5rem;
        top: .22em
    }
}

.sec_message {
    text-align: left
}

.sec_message .wrap {
    padding-top: 11rem;
    padding-bottom: 15rem
}

.sec_message .bg_square_deco[data-num="01"] {
    --size: 147rem;
    bottom: -104rem;
    left: -125rem;
    opacity: .92;
    background: linear-gradient(44deg, #006400 44.13%, rgba(213, 58, 12, 0) 98.57%)
}

.sec_message .bg_square_deco[data-num="02"] {
    --size: 92rem;
    top: 106rem;
    right: -89rem;
    opacity: .92;
    background: -webkit-gradient(linear, left top, left bottom, from(#67b72a), to(rgba(245, 159, 52, 0.1)));
    background: linear-gradient(180deg, #67b72a 0%, rgba(245, 159, 52, 0.1) 100%)
}

.sec_message .sec_visual {
    top: -25rem;
    left: -134rem;
    width: 180rem
}

.sec_message .heading_block {
    text-align: center;
    margin-bottom: 8.2rem
}

.sec_message .message_block {
    text-align: left;
    width: 49.2rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: 0;
    margin-bottom: 11rem
}

.sec_message .youtube_box {
    width: 100%;
    max-width: 64.4rem;
    height: auto;
    aspect-ratio: 1280/720;
    position: relative;
    margin-right: 0;
    margin-left: auto
}

.sec_message iframe {
    width: 100%;
    height: 100%;
    border: none
}

@media screen and (max-width: 767.9px) {
    .sec_message .wrap {
        padding-top: 5rem;
        padding-bottom: 11rem
    }

    .sec_message .heading_block {
        text-align: right;
        margin-bottom: 23.8rem
    }

    .sec_message .bg_square_deco[data-num="01"] {
        --size: 69rem;
        bottom: -37rem;
        left: -56rem
    }

    .sec_message .bg_square_deco[data-num="02"] {
        --size: 45rem;
        top: 3.4rem;
        left: -20em;
        -webkit-transform: rotate(45deg) translateX(44.7rem) translateY(-40.5rem);
        transform: rotate(45deg) translateX(44.7rem) translateY(-40.5rem);
        background: -webkit-gradient(linear, left top, left bottom, color-stop(37.66%, #67b72a), color-stop(99.63%, rgba(245, 159, 52, 0.1)));
        background: linear-gradient(180deg, #427D14 37.66%, rgba(245, 159, 52, 0.1) 99.63%)
    }

    .sec_message .sec_visual {
        top: 3.4rem;
        left: -20em;
        width: 51rem
    }

    .sec_message .sec_tit {
        text-align: right
    }

    .sec_message .message_block {
        margin-bottom: 3.7rem
    }
}

.sec_program {
    position: relative;
    z-index: 70
}

.sec_program .wrap {
    padding-top: 10rem;
    padding-bottom: 13rem
}

.sec_program .bg_square_deco[data-num="01"] {
    --size: 192rem;
    bottom: -29rem;
    left: -187rem;
    opacity: .92;
    background: linear-gradient(135deg, #138a13 25.09%, rgba(244, 30, 42, 0) 51.33%)
}

.sec_program .bg_square_deco[data-num="02"] {
    --size: 130rem;
    bottom: -84.7rem;
    right: -77.7rem;
    opacity: .92;
    background: linear-gradient(179deg, rgba(245, 159, 52, 0.6666666667) 10.58%, rgba(244, 30, 42, 0) 56.3%)
}

.sec_program .sec_visual {
    top: 82rem;
    right: -100rem;
    width: 144rem
}

.sec_program .heading_block {
    text-align: right;
    margin-bottom: 4rem
}

.sec_program .sec_tit {
    text-align: right
}

.sec_program .lead {
    width: 100%;
    max-width: 51rem;
    text-align: left;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-right: 0;
    margin-left: auto;
    margin-bottom: 7rem
}

.sec_program .course_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-column-gap: 2rem;
    -moz-column-gap: 2rem;
    column-gap: 2rem
}

.sec_program .course_block__inner {
    background: #f0f0f0;
    padding: 3rem;
    padding-top: 3.4rem;
    margin: 0;
    width: 40rem;
    max-width: 100%
}

.sec_program .course_block__inner .tit {
    color: var(--color-green);
    font-size: 2.4rem;
    line-height: 1.2;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2.2rem
}

.sec_program .course_block__inner .tit .rubik {
    font-size: 5rem
}

.sec_program .course_block__inner .list li {
    background: #fff;
    color: var(--color-black);
    padding: .5em 1em;
    margin-top: .5rem
}

.sec_program .course_block__inner .list li .time {
    display: inline-block;
    width: 4em
}

.sec_program .case_wrap {
    position: relative;
    margin-top: 10rem
}

.sec_program .case_wrap .tit_wrap {
    text-align: left
}

.sec_program .case_wrap .tit_wrap .tit {
    font-size: 4rem;
    line-height: 1.4;
    font-weight: bold
}

.sec_program .case_wrap .tit_wrap .txt {
    font-size: 1.3rem;
    margin-top: .5em
}

.sec_program .case_wrap .step_wrap {
    padding-bottom: 10rem;
    margin-top: 4rem;
    position: relative
}

.sec_program .case_wrap .step_wrap__inner::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: calc(100% - 1rem);
    width: 2px;
    background: #fff
}

.sec_program .case_wrap .step_wrap__inner .item {
    padding-top: 2.8rem;
    padding-left: 5rem;
    position: relative
}

.sec_program .case_wrap .step_wrap__inner .item::before {
    content: "";
    position: absolute;
    left: 0;
    top: .8rem;
    -webkit-transform: translateX(-40%);
    transform: translateX(-40%);
    width: 14px;
    height: 14px;
    border: 2px solid #fff;
    background: #fff;
    border-radius: 100%
}

.sec_program .case_wrap .step_wrap__inner .item+.item {
    margin-top: 4rem
}

.sec_program .case_wrap .step_wrap__inner .item .rubik {
    color: #fff;
    font-weight: 400;
    font-size: 1.9rem
}

.sec_program .case_wrap .step_wrap__inner .item .stit {
    font-size: 2.6rem;
    line-height: 1.4;
    font-weight: bold;
    margin: .29em 0
}

.sec_program .case_wrap .step_wrap__inner .item .txt {
    line-height: 1.77
}

.sec_program .case_wrap .special_block {
    position: relative;
    max-width: 64.4rem;
    width: 100%
}

.sec_program .case_wrap .special_block__lead {
    margin-bottom: 5rem
}

.sec_program .case_wrap .special_block__detail {
    margin-bottom: 9.6rem
}

.sec_program .case_wrap .special_block__inner {
    margin-bottom: 4.1rem
}

.sec_program .case_wrap .special_block__tit {
    margin-bottom: .5rem;
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1.4
}

.sec_program .case_wrap .special_block__tit--en {
    position: relative;
    top: -0.14em;
    display: inline-block;
    margin-left: 2.2rem;
    font-size: 1.3rem;
    font-family: var(--font-rubik)
}

.sec_program .case_wrap .special_block__explain {
    line-height: 1.96
}

@media screen and (min-width: 768px) {
    .sec_program .special_block__img {
        position: absolute;
        top: 0;
        right: -2rem;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        width: 51.7rem
    }

    .sec_program .case_wrap .case_illust {
        position: absolute;
        bottom: 0;
        right: 0
    }
}

@media screen and (max-width: 767.9px) {
    .sec_program .wrap {
        padding-top: 8.2rem;
        padding-bottom: 3.2rem
    }

    .sec_program .bg_square_deco[data-num="01"] {
        --size: 47rem;
        bottom: 17rem;
        left: -34rem;
        background: linear-gradient(179deg, #427d14 19.58%, rgba(244, 30, 42, 0) 90.3%)
    }

    .sec_program .bg_square_deco[data-num="02"] {
        --size: 73rem;
        bottom: 8.9rem;
        right: -50rem;
        background: linear-gradient(179deg, #138a13 19.58%, rgba(244, 30, 42, 0) 77.3%);
        z-index: -100
    }

    .sec_program .sec_visual {
        top: 64.4rem;
        right: -47.7rem;
        width: 69rem
    }

    .sec_program .heading_block {
        text-align: center;
        margin-bottom: 2.7rem
    }

    .sec_program .sec_tit {
        text-align: center
    }

    .sec_program .lead {
        margin-bottom: 3.8rem
    }

    .sec_program .course_block {
        -webkit-column-gap: .62rem;
        -moz-column-gap: .62rem;
        column-gap: .62rem
    }

    .sec_program .course_block__inner {
        width: 49%;
        margin: 0;
        padding: 3rem 2.7vw 3vw
    }

    .sec_program .course_block__inner .tit {
        font-size: 2.2rem;
        line-height: 1;
        margin-bottom: 1em
    }

    .sec_program .course_block__inner .tit .rubik {
        font-size: 4.6rem
    }

    .sec_program .course_block__inner .list li {
        font-size: 1.27rem
    }

    .sec_program .case_wrap {
        margin-top: 13rem
    }

    .sec_program .case_wrap .case_illust {
        width: 14.7rem;
        margin-bottom: 1.5rem
    }

    .sec_program .case_wrap .tit_wrap {
        text-align: left
    }

    .sec_program .case_wrap .tit_wrap .tit {
        font-size: 2.6rem
    }

    .sec_program .case_wrap .tit_wrap .txt {
        font-size: 1.37rem;
        line-height: 1.5;
        margin-top: .73em
    }

    .sec_program .case_wrap .step_wrap {
        padding-bottom: 4rem;
        margin-top: 4rem;
        position: relative
    }

    .sec_program .case_wrap .step_wrap__inner .item {
        padding-top: 0;
        padding-left: 3rem
    }

    .sec_program .case_wrap .step_wrap__inner .item::before {
        top: .6rem;
        width: 1.4rem;
        height: 1.4rem
    }

    .sec_program .case_wrap .step_wrap__inner .item+.item {
        margin-top: 2.8rem
    }

    .sec_program .case_wrap .step_wrap__inner .item .img {
        margin-top: 1rem
    }

    .sec_program .case_wrap .step_wrap__inner .item .stit {
        font-size: 2.1rem;
        margin: .44rem .31rem
    }

    .sec_program .case_wrap .special_block__lead {
        margin-bottom: 2rem
    }

    .sec_program .case_wrap .special_block__img {
        margin-bottom: 2.9rem
    }

    .sec_program .case_wrap .special_block__detail {
        margin-bottom: 2.5rem
    }

    .sec_program .case_wrap .special_block__inner {
        margin-bottom: 2.28rem
    }

    .sec_program .case_wrap .special_block__tit {
        margin-bottom: .77rem
    }

    .sec_program .case_wrap .special_block__tit--en {
        margin-left: 1.9rem;
        font-size: 1.3rem
    }

    .sec_program .case_wrap .special_block__explain {
        font-size: 1.56rem;
        line-height: 1.7
    }
}

.sec_class {
    background: var(--color-green);
    color: #fff;
    padding: 2rem 0 13rem;
    border-radius: 0 2rem 0 0
}

.sec_class .sec_class_catch{
    font-size: 2rem;
    margin-top: 0.5em;
    line-height: 1.6;
}
@media screen and (max-width: 767.9px) {
    .sec_class .sec_class_catch{
        font-size: 1.8rem;
    }
}

.sec_class .heading_block {
    text-align: center;
    margin-bottom: 10rem
}

@media screen and (max-width: 767.9px) {
    .sec_class .heading_block {
        margin-bottom: 4rem
    }
}

.sec_class .bg_square_deco[data-num="01"] {
    --size: 130rem;
    top: -34.7rem;
    left: -116rem;
    background: linear-gradient(179deg, #427d14 19.58%, rgba(244, 30, 42, 0) 90.3%)
}

@media screen and (max-width: 767.9px) {
    .sec_class .bg_square_deco[data-num="01"] {
        display: none
    }
}

.sec_class .bg_square_deco[data-num="02"] {
    --size: 96rem;
    top: 76.2rem;
    right: -81rem;
    background: linear-gradient(178deg, #006400 20.9%, rgba(213, 58, 12, 0) 94.71%)
}

@media screen and (max-width: 767.9px) {
    .sec_class .bg_square_deco[data-num="02"] {
        display: none
    }
}

@media screen and (max-width: 767.9px) {
    .sec_class {
        padding: 4rem 0 6rem;
        margin-right: 0
    }

    .sec_class .wrap {
        width: 92%
    }
}

.sec_class .tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: .7rem
}

@media screen and (max-width: 767.9px) {
    .sec_class .tabs {
        gap: .5rem
    }
}

.sec_class .tabs .tab_item {
    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: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    border: 1px solid #fff;
    font-size: 2rem;
    color: #fff;
    width: calc((100% - 2.81rem)/5);
    height: 7rem;
    padding: 0 1em;
    position: relative;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.sec_class .tabs .tab_item::before {
    content: "";
    position: absolute;
    right: 1em;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    width: .5em;
    height: .5em;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff
}

.sec_class .tabs .tab_item:hover {
    background: #fff;
    color: var(--color-green);
    cursor: pointer
}

.sec_class .tabs .tab_item:hover::before {
    border-color: var(--color-green)
}

@media screen and (max-width: 767.9px) {
    .sec_class .tabs .tab_item {
        margin-right: 0;
        width: calc((100% - 1.51rem)/3);
        height: 5rem;
        padding: 0 .4em;
        font-size: 1.6rem;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .sec_class .tabs .tab_item::before {
        display: none
    }
}

.sec_class .tabs input[name=tab_item] {
    display: none
}

.sec_class .tabs input[name=tab_item]:checked+.tab_item {
    background: #fff;
    color: var(--color-green)
}

.sec_class .tabs input[name=tab_item]:checked+.tab_item::before {
    border-color: var(--color-green)
}

.sec_class .tabs .tab_content {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    width: 100%;
    padding-top: 4rem;
    clear: both;
    display: none;
    grid-column: 1/6
}

.sec_class .tabs #tab01:checked~#tab01_content,
.sec_class .tabs #tab02:checked~#tab02_content,
.sec_class .tabs #tab03:checked~#tab03_content,
.sec_class .tabs #tab04:checked~#tab04_content,
.sec_class .tabs #tab05:checked~#tab05_content {
    display: block
}

@media screen and (max-width: 767.9px) {
    .sec_class .shop_wrap {
        margin: 0 auto;
        width: 100%
    }
}

.sec_class .shop_wrap .tit {
    font-size: 3.2rem;
    line-height: 1.6;
    font-weight: bold
}

.sec_class .shop_wrap .big {
    font-size: 2rem;
    line-height: 1.6;
    font-weight: bold
}

.sec_class .shop_wrap .txt {
    line-height: 1.82
}

.sec_class .shop_wrap .flex {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-column-gap: 2rem;
    -moz-column-gap: 2rem;
    column-gap: 2rem;
    height: 24rem;
    margin-top: 4rem
}

@media screen and (max-width: 767.9px) {
    .sec_class .shop_wrap .flex {
        height: auto
    }
}

.sec_class .shop_wrap .flex_l {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-right: 0
}

.sec_class .shop_wrap .flex_l p {
    height: 100%
}

.sec_class .shop_wrap .flex_l img {
    width: 33.5rem;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

@media screen and (max-width: 767.9px) {
    .sec_class .shop_wrap .flex_l img {
        width: 100%
    }
}

.sec_class .shop_wrap .flex_r {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
}

.sec_class .shop_wrap .flex_r iframe {
    width: 100%;
    height: 100%
}

@media screen and (max-width: 767.9px) {
    .sec_class .shop_wrap .tit {
        font-size: 2.44rem
    }

    .sec_class .shop_wrap .big {
        margin: .3em 0 .18em
    }

    .sec_class .shop_wrap .flex {
        margin-top: 3.2rem;
        display: block
    }

    .sec_class .shop_wrap .flex_l {
        margin: 0 0 2rem
    }

    .sec_class .shop_wrap .flex_l img {
        width: 100%
    }

    .sec_class .shop_wrap .flex_r {
        /* height: 60vw */
    }
}

.sec_class .schedule_wrap {
    margin-top: 3rem
}

.sec_class .schedule_wrap .stit {
    background: #000;
    color: #fff;
    font-size: 1.6rem;
    line-height: 1.4;
    font-weight: bold;
    padding: .5em 1em;
    margin-bottom: 2rem
}

@media screen and (max-width: 767.9px) {
    .sec_class .schedule_wrap .stit {
        margin-left: auto;
        margin-right: auto;
        width: 100%
    }
}

.sec_class .schedule_wrap .time_frame {
    display: none
}

@media screen and (max-width: 767.9px) {
    .sec_class .schedule_wrap .scroll {
        position: relative;
        margin-left: auto;
        width: calc(100% + 2rem);
        overflow: hidden
    }

    .sec_class .schedule_wrap .scroll .time_frame {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        width: 12.48vw
    }

    .sec_class .schedule_wrap .scroll .time_frame img {
        width: 100%
    }

    .sec_class .schedule_wrap .scroll .scroll_inner {
        overflow-x: auto
    }

    .sec_class .schedule_wrap .scroll .scroll_inner img {
        max-width: inherit;
        width: 200vw
    }
}

.sec_class .price_wrap {
    margin-top: 2.9rem
}

@media screen and (max-width: 767.9px) {
    .sec_class .price_wrap {
        margin-left: auto;
        margin-right: auto;
        width: 100%
    }
}

.sec_class .price_wrap .stit {
    background: #000;
    color: #fff;
    font-size: 1.6rem;
    line-height: 1.4;
    font-weight: bold;
    padding: .5em 1em;
    margin-bottom: 2rem
}

.sec_class .price_wrap .block {
    margin-top: 2.1rem
}

@media screen and (max-width: 767.9px) {
    .sec_class .price_wrap .block {
        margin-top: 1.1rem
    }
}

.sec_class .price_wrap .sub {
    width: 100%;
    margin-bottom: .29em;
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.8
}

.sec_class .price_wrap .sub:nth-of-type(n+2) {
    margin-top: 1.4em
}

@media screen and (max-width: 767.9px) {
    .sec_class .price_wrap .sub:nth-of-type(n+2) {
        margin-top: 1.11em
    }
}

.sec_class .price_wrap .dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 1rem
}

.sec_class .price_wrap .dl dt,
.sec_class .price_wrap .dl dd {
    padding-bottom: .5em;
    margin-bottom: .5em;
    border-bottom: 1px solid rgba(255, 255, 255, .4);
    font-weight: bold
}

.sec_class .price_wrap .dl dt {
    width: 12em
}

.sec_class .price_wrap .dl dd {
    width: calc(100% - 12em)
}

.sec_class .price_wrap .table {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.sec_class .price_wrap .table dt {
    width: 100%;
    margin-top: 1em;
    font-weight: bold
}

.sec_class .price_wrap .table dd {
    width: calc((100% - 1rem)/2);
    background: #fff;
    color: #000;
    font-weight: bold;
    padding: 1em;
    margin: .5rem 0
}

.sec_class .price_wrap .table .w100 {
    width: 100%
}

@media screen and (max-width: 767.9px) {
    .sec_class .price_wrap .table dt {
        margin-top: 0
    }

    .sec_class .price_wrap .table dd {
        width: 100%
    }
}

.sec_class .price_wrap .white {
    background: #fff;
    color: #000;
    padding: 1em;
    font-weight: bold;
    line-height: 1.82
}

.sec_class .price_wrap .white+.white {
    margin-top: 1.1rem
}

.sec_class .price_wrap .white strong {
    color: var(--color-green)
}

.sec_class .price_wrap .price_note {
    margin-top: 2em
}

.sec_question {
    position: relative;
    text-align: left;
    z-index: 30
}

.sec_question .wrap {
    padding-top: 17rem;
    padding-bottom: 10rem
}

.sec_question .bg_square_deco[data-num="01"] {
    --size: 140rem;
    top: -40rem;
    right: 73rem;
    background: linear-gradient(225deg, #67b72a 0.64%, #427D14 38.51%, #006400 55.08%)
}

.sec_question .bg_square_deco[data-num="02"] {
    --size: 140rem;
    top: -40rem;
    right: 73rem;
    -webkit-transform: rotate(45deg) translateX(100%) translateY(-100%);
    transform: rotate(45deg) translateX(100%) translateY(-100%);
    background: linear-gradient(45deg, #67b72a 0.64%, #427D14 34.13%)
}

.sec_question .strong {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 1.8rem 4.7rem 2rem;
    margin-bottom: 5.6rem;
    background: var(--color-black);
    font-size: 3.2rem;
    line-height: 1.5
}

.sec_question .tit {
    margin-bottom: 1.7rem;
    font-size: 3.2rem
}

.sec_question .lead {
    max-width: 76rem;
    margin-bottom: 8.7rem;
    line-height: 1.87
}

.sec_question .img_block {
    margin-bottom: 4rem
}

.sec_question .age_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr)
}

.sec_question .age_list__box {
    --age_color: #E4D661;
    padding: 3rem 3.1rem 3.7rem;
    background: #fff;
    border: 1.3px solid #d9d9d9;
    border-radius: 2rem;
    border-top-left-radius: 0;
    border-bottom-right-radius: 0
}

.sec_question .age_list__box[data-age=pre_golden] {
    --age_color: #E4D661
}

.sec_question .age_list__box[data-age=golden] {
    --age_color: #E7B13E
}

.sec_question .age_list__box[data-age=post_golden] {
    --age_color: #138a13
}

.sec_question .age_list__icon {
    --size: 8rem;
    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;
    width: var(--size);
    height: var(--size);
    border-radius: var(--size);
    background: var(--age_color);
    margin: 0 auto 1.8rem
}

.age_list__box:nth-of-type(3) .age_list__icon {
    background-color: #f59f34;
}

.age_list__box:nth-of-type(3) .age_list__tit {
    color: #f59f34;
}

.sec_question .age_list__tit {
    margin-bottom: 2.5rem;
    color: var(--age_color);
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700
}

.sec_question .age_list__text {
    font-size: 1.4rem;
    line-height: 1.87;
    color: var(--color-black)
}

@media screen and (max-width: 767.9px) {
    .sec_question .wrap {
        padding-top: 7.3rem;
        padding-bottom: 10rem
    }

    .sec_question .bg_square_deco[data-num="01"] {
        --size: 41.7rem;
        top: -14rem;
        right: 22.8rem
    }

    .sec_question .bg_square_deco[data-num="02"] {
        --size: 41.7rem;
        top: -14rem;
        right: 22.9rem;
        -webkit-transform: rotate(45deg) translateX(100%) translateY(-100%);
        transform: rotate(45deg) translateX(100%) translateY(-100%)
    }

    .sec_question .heading_block {
        text-align: center;
        margin-bottom: 4.7rem
    }

    .sec_question .strong {
        width: 100%;
        padding: 1.5rem 2rem 1.7rem;
        margin-bottom: 3.2rem;
        text-align: center;
        font-size: 2rem
    }

    .sec_question .tit {
        margin-bottom: 1.4rem;
        text-align: center;
        font-size: 2rem
    }

    .sec_question .lead {
        margin-bottom: 2rem
    }

    .sec_question .img_block {
        margin-bottom: 2.9rem
    }

    .sec_question .age_list__box {
        padding: 3rem 2rem 2rem
    }

    .sec_question .age_list__icon {
        --size: 8rem;
        margin: 0 auto 1.4rem
    }

    .sec_question .age_list__icon img {
        width: 4.7rem
    }

    .sec_question .age_list__tit {
        margin-bottom: 1.8rem;
        font-size: 2.2rem
    }
}

.sec_voices {
    position: relative;
    z-index: 10;
    text-align: center
}

.sec_voices .wrap {
    padding-top: 20rem;
    padding-bottom: 21rem
}

.sec_voices .heading_block {
    margin-right: 0;
    margin-left: auto;
    text-align: right
}

.sec_voices .bg_square_deco[data-num="01"] {
    --size: 100rem;
    top: -40rem;
    right: -76rem;
    background: linear-gradient(179deg, #67b72a 20.91%, rgba(245, 159, 52, 0) 99.33%)
}

.sec_voices .sec_visual {
    top: -22.8rem;
    left: -77rem;
    width: 114rem
}

.sec_voices .lead {
    text-align: right;
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 5.6rem
}

.sec_voices .voices_list__box {
    position: relative;
    background: #fff;
    color: var(--color-black);
    text-align: left;
    border-radius: 2rem;
    border-top-left-radius: 0;
    border-bottom-right-radius: 0
}

.sec_voices .voices_list__type {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.3
}

.sec_voices .voices_list__tit {
    font-size: 2.44rem;
    font-weight: 700
}

.sec_voices .voices_list__text {
    font-size: 1.6rem;
    line-height: 1.87
}

@media screen and (min-width: 768px) {
    .sec_voices .voices_list__box {
        position: relative;
        width: 100%;
        max-width: 84.7rem;
        min-height: 25rem;
        padding: 4rem 5rem 4.7rem;
        margin-right: 0;
        margin-left: auto;
        border: 1.3px solid #d9d9d9
    }

    .sec_voices .voices_list__box:nth-of-type(3n+1),
    .sec_voices .voices_list__box:nth-of-type(3n+3) {
        padding-left: 21.8rem
    }

    .sec_voices .voices_list__box:nth-of-type(3n+2) {
        padding-right: 21.8rem
    }

    .sec_voices .voices_list__box:nth-of-type(n+1) {
        margin-top: 4rem
    }

    .sec_voices .voices_list__img {
        position: absolute;
        top: 0
    }

    .sec_voices .voices_list__img img {
        width: 100%
    }

    .sec_voices .voices_list__box:nth-of-type(3n+1) .voices_list__img {
        top: 4.4rem;
        left: 6rem;
        width: 11rem
    }

    .sec_voices .voices_list__box:nth-of-type(3n+2) .voices_list__img {
        top: -0.92rem;
        right: 5rem;
        width: 14rem
    }

    .sec_voices .voices_list__box:nth-of-type(3n+3) .voices_list__img {
        top: 4.4rem;
        left: -2.5rem;
        width: 22rem
    }

    .sec_voices .voices_list__type {
        margin-bottom: 1.4rem;
        font-size: 1.6rem
    }

    .sec_voices .voices_list__tit {
        margin-bottom: 2.5rem
    }
}

@media screen and (max-width: 767.9px) {
    .sec_voices .wrap {
        padding-top: 14rem;
        padding-bottom: 1.7rem
    }

    .sec_voices .bg_square_deco[data-num="01"] {
        --size: 39rem;
        top: -8.2rem;
        right: -27rem
    }

    .sec_voices .sec_visual {
        top: -18.7rem;
        left: -27rem;
        width: 47rem
    }

    .sec_voices .heading_block {
        margin-bottom: 1.7rem
    }

    .sec_voices .lead {
        font-size: 2.5rem;
        line-height: 1.4;
        margin-bottom: 3.4rem
    }

    .sec_voices .voices_list__box {
        position: relative;
        width: 100%;
        padding: 2.9rem 2rem 2.7rem;
        border: 1.3px solid #d9d9d9
    }

    .sec_voices .voices_list__img {
        text-align: center
    }

    .sec_voices .voices_list__img img {
        margin: 0 auto 1.8rem;
        height: 9.2rem;
        width: auto
    }

    .sec_voices .voices_list__type {
        margin-bottom: 1rem;
        font-size: 1.44rem
    }

    .sec_voices .voices_list__tit {
        line-height: 1.34;
        font-size: 2.4rem;
        margin-bottom: 1.3rem
    }

    .sec_voices .voices_list__text {
        font-size: 1.56rem
    }
}

.sec_gallery {
    text-align: left
}

.sec_gallery .wrap {
    padding-top: 10rem;
    padding-bottom: 10.4rem
}

.sec_gallery .heading_block {
    margin-bottom: 7rem
}

.sec_gallery .bg_square_deco[data-num="01"] {
    --size: 130rem;
    top: -70rem;
    left: -130rem;
    background: linear-gradient(89deg, #67b72a 61.88%, rgba(245, 159, 52, 0) 100%)
}

.sec_gallery .bg_square_deco[data-num="02"] {
    --size: 130rem;
    top: -56rem;
    right: -125rem;
    opacity: .77;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(13.76%, #006400), color-stop(36.27%, #006400), color-stop(98.56%, rgba(213, 58, 12, 0)));
    background: linear-gradient(180deg, #006400 13.76%, #006400 36.27%, rgba(213, 58, 12, 0) 98.56%);
    z-index: -100
}

.sec_gallery .sec_visual {
    top: 44rem;
    right: -89rem;
    width: 110rem
}

.sec_gallery .gallery_list {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    width: 100%;
    max-width: 77rem
}

.sec_gallery .gallery_list__item {
    aspect-ratio: 1/1
}

.sec_gallery .gallery_list img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

@media screen and (max-width: 767.9px) {
    .sec_gallery .wrap {
        padding-top: 6.2rem;
        padding-bottom: 14rem
    }

    .sec_gallery .heading_block {
        text-align: center;
        margin-bottom: 4rem
    }

    .sec_gallery .bg_square_deco[data-num="01"] {
        --size: 47rem;
        top: -13rem;
        left: -39rem
    }

    .sec_gallery .bg_square_deco[data-num="02"] {
        --size: 41rem;
        top: -8.2rem;
        right: -31rem
    }

    .sec_gallery .sec_visual {
        width: 55rem;
        top: auto;
        bottom: -31rem;
        right: -29rem
    }

    .sec_gallery .gallery_list {
        margin-right: auto;
        margin-left: auto;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem
    }
}

.sec_trial {
    position: relative;
    text-align: center;
    z-index: 10
}

.sec_trial .wrap {
    position: relative;
    padding-top: 9.2rem;
    padding-bottom: 20rem
}

.sec_trial .heading {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 0 5.6rem auto;
    font-size: 4rem;
    line-height: 1.47;
    font-weight: 700;
    text-align: left
}

.sec_trial .sec_visual {
    bottom: -0.1rem;
    left: -55rem;
    width: 137rem
}

.sec_trial .trial_box {
    position: relative;
    display: block;
    width: 100%;
    max-width: 71rem;
    padding: 5.17rem 5.1rem 4rem;
    margin-left: auto;
    margin-right: 0;
    background: #fff;
    color: var(--color-black);
    text-align: left
}

.sec_trial .trial_box__text {
    line-height: 1.8
}

.sec_trial .trial_box__text .marker {
    font-size: 1.2em;
    background: linear-gradient(transparent 70%, #fbed72 0%);
}

.sec_trial .trial_box__text.-large {
    color: var(--color-green);
    font-size: 2.8rem;
    text-align: center;
    line-height: 1.4;
    padding-bottom: 0.5em;
    border-bottom: solid 2px var(--color-green);
    margin-bottom: 24px;
}

.sec_trial .trial_box__tit {
    padding: 1.7rem 2rem 2rem;
    margin: 2.5rem 0 1.7rem;
    background: var(--color-black);
    color: #fff;
    font-size: 2rem;
    font-weight: 700
}

.sec_trial .trial_box__contents {
    font-size: 2rem;
    line-height: 1.87;
    margin-bottom: 3.28rem
}

@media screen and (max-width: 767.9px) {
    .sec_trial {
        text-align: center;
        padding-top: 32rem;
        padding-bottom: 0
    }

    .sec_trial .wrap {
        padding: 4.7rem 2.8rem 3.9rem;
        background: #fff;
        color: var(--color-black);
        width: 100%
    }

    .sec_trial .heading {
        /* color: var(--color-green); */
        width: 100%;
        margin-bottom: 1.8rem;
        text-align: center;
        font-size: 2.8rem
    }

    .sec_trial .trial_box__text.-large {
        font-size: 2.4rem;
    }

    .sec_trial .sec_visual {
        bottom: auto;
        top: -34rem;
        left: -20rem;
        width: 70rem
    }

    .sec_trial .trial_box {
        width: 100%;
        max-width: 62rem;
        padding: 0;
        margin-left: auto;
        margin-right: auto
    }

    .sec_trial .trial_box__tit {
        margin: 2rem 0 1.1rem
    }

    .sec_trial .trial_box__contents {
        font-size: 1.6rem;
        margin-bottom: 2rem
    }
}



@media screen and (min-width: 960px) {
    .pc-none {
        display: none !important
    }
}

@media screen and (min-width: 768px) {
    .sp {
        display: none !important
    }
}

@media screen and (max-width: 959.9px) {
    .tb-none {
        display: none !important
    }

    .pc {
        display: none !important
    }
}

@media screen and (max-width: 767.9px) {
    .sp-none {
        display: none !important
    }
}

.cf {
    zoom: 1
}

.cf::after {
    content: " ";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
    overflow: hidden;
    font-size: .1em;
    line-height: 0
}

/*# sourceMappingURL=common.min.css.map */