@charset "UTF-8";
/**  Mixins */
/*------------------------------------*\
    breakpoint vars
\*------------------------------------*/
/*------------------------------------*\
    breakpoint mixin
\*------------------------------------*/
/** Break desktop first**/
/* Slider */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: "";
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir=rtl] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
    color: transparent;
    width: 32px;
    height: 92px;
    min-width: initial;
    border-radius: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0;
    transition: all 0.3s;
}
.slick-arrow:hover {
    opacity: 0.6;
}
.slick-arrow::before, .slick-arrow::after {
    content: "";
    width: 7px;
    height: 2px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
}
.slick-arrow:hover {
    color: transparent;
}
.slick-arrow.slick-prev {
    left: 0;
}
.slick-arrow.slick-prev::before {
    transform: rotate(-45deg);
    top: calc(50% - 2px);
}
.slick-arrow.slick-prev::after {
    transform: rotate(45deg);
    top: calc(50% + 2px);
}
.slick-arrow.slick-next {
    right: 0;
}
.slick-arrow.slick-next::before {
    transform: rotate(45deg);
    top: calc(50% - 2px);
}
.slick-arrow.slick-next::after {
    transform: rotate(-45deg);
    top: calc(50% + 2px);
}

.slick-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 9;
}
.slick-dots li {
    margin: 0 5px;
    padding: 0;
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}
.slick-dots li.slick-active {
    background: #000;
}
.slick-dots li button {
    padding: initial;
    max-width: initial;
    min-width: initial;
    color: transparent;
    font-size: 0;
}

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

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

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

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
}

[tabindex="-1"]:focus {
    outline: 0 !important;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    cursor: help;
    border-bottom: 0;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
}

address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit;
}

ol,
ul,
dl {
    margin-top: 0;
    margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
    margin-bottom: 0;
}

dt {
    font-weight: 700;
}

dd {
    margin-bottom: 0.5rem;
    margin-left: 0;
}

blockquote {
    margin: 0 0 1rem;
}

b,
strong {
    font-weight: bolder;
}

small {
    font-size: 80%;
}

sub,
sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

a {
    color: #6096c4;
    text-decoration: none;
}
a:hover {
    opacity: 0.8;
}

a:not([href]):not([tabindex]) {
    color: inherit;
    text-decoration: none;
}

a:not([href]):not([tabindex]):hover,
a:not([href]):not([tabindex]):focus {
    color: inherit;
    text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
    outline: 0;
}

pre,
code,
kbd,
samp {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 1em;
}

pre {
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
}

figure {
    margin: 0;
    padding: 0;
}

img {
    vertical-align: middle;
    border-style: none;
}

svg {
    overflow: hidden;
    vertical-align: middle;
}

table {
    border-collapse: collapse;
}

caption {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    color: #6c757d;
    text-align: left;
    caption-side: bottom;
}

th {
    text-align: inherit;
}

label {
    display: inline-block;
    margin-bottom: 0.5rem;
}

button {
    border-radius: 0;
}

button:focus {
    outline: 1px dotted;
    outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

select {
    word-wrap: normal;
}

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

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
    cursor: pointer;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
    padding: 0;
    border-style: none;
}

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

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
    -webkit-appearance: listbox;
}

textarea {
    overflow: auto;
    resize: vertical;
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}

legend {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    line-height: inherit;
    color: inherit;
    white-space: normal;
}

progress {
    vertical-align: baseline;
}

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

[type=search] {
    outline-offset: -2px;
    -webkit-appearance: none;
}

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

::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button;
}

output {
    display: inline-block;
}

summary {
    display: list-item;
    cursor: pointer;
}

template {
    display: none;
}

[hidden] {
    display: none !important;
}

:root {
    --white: #ffffff;
    --black: #000000;
    --smoke: #f4f5ef;
    --gray: #e5e5e5;
    --brown: #968876;
    --primary: #e45e39;
    --second: #d75e5b;
    --text-body: #635442;
    --radius: 5px;
}

/* Base Setting
---------------------------------------- */
body {
    margin: 0;
    padding: 0;
    font-size: 1rem;
    font-family: "Noto Sans JP", sans-serif;
    overflow-wrap: break-word;
    font-weight: 400;
    color: var(--text-body);
    overflow-x: hidden;
    line-height: 1.5;
    position: relative;
    width: 100%;
    background: var(--white);
    letter-spacing: 0.05em;
}

a {
    transition: all 0.3s;
    color: var(--text-body);
    outline: none !important;
}
a:hover {
    opacity: 0.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
}

h1 {
    font-size: 2.25rem;
    line-height: 1.3;
}
@media (min-width: 48em) {
    h1 {
        font-size: 2.875rem;
    }
}

h2 {
    font-size: 2.5rem;
    line-height: 1.15;
}
@media (min-width: 48em) {
    h2 {
        font-size: 3.5rem;
    }
}

h3 {
    font-size: 2.125rem;
    line-height: 1.16;
}
@media (min-width: 48em) {
    h3 {
        font-size: 2.5rem;
    }
}

h4 {
    font-size: 1.75rem;
    line-height: 1.16;
}
@media (min-width: 48em) {
    h4 {
        font-size: 2.25rem;
    }
}

h5 {
    font-size: 1.25rem;
    line-height: 1.2;
}
@media (min-width: 48em) {
    h5 {
        font-size: 1.5rem;
    }
}

h6 {
    font-size: 1.125rem;
    line-height: 1.3;
}
@media (min-width: 48em) {
    h6 {
        font-size: 1.25rem;
    }
}

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

.container-fluid, .container-sm, .container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 25px;
    position: relative;
}

.intro ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.elements__item, .points, .content-video {
    font-size: 4vw;
    line-height: 1.74;
    font-weight: 500;
}
@media only screen and (min-width: 768px) {
    .elements__item, .points, .content-video {
        font-size: 24px;
        line-height: 1.75;
        font-weight: 700;
        font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック体", "游ゴシック", "Yu Gothic", "Yu Gothic Medium", Meiryo, "Helvetica Neue", "Noto Sans JP", Arial, sans-serif;
    }
}
.elements__item p, .points p, .content-video p {
    margin-bottom: 25px;
}
@media only screen and (min-width: 768px) {
    .elements__item p, .points p, .content-video p {
        margin-bottom: 40px;
    }
}
.elements__item p:last-of-type, .points p:last-of-type, .content-video p:last-of-type {
    margin: 0;
}
.elements__item p small, .points p small, .content-video p small {
    font-size: 15px;
    display: inline-block;
}
@media only screen and (min-width: 768px) {
    .elements__item p small, .points p small, .content-video p small {
        font-size: 16px;
    }
}

.site-wrap {
    max-width: 1000px;
    margin-inline: auto;
    background: #f5f3f2;
}

video {
    width: 100%;
    height: auto;
}

input[type=text],
input[type=email],
input[type=password],
input[type=phone],
input[type=search],
textarea,
select {
    border: 1px solid var(--gray);
    border-radius: var(--radius);
    padding: 15px 24px;
    outline: none !important;
}

.btn, .btn-second {
    transition: all 0.3s;
    color: var(--white);
    padding: 10px 25px;
    text-align: center;
    display: inline-flex;
    outline: none !important;
    border-radius: var(--radius);
    background: var(--primary);
    text-transform: uppercase;
    border: 0;
    font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Hiragino Kaku Gothic Pro", "游ゴシック体", "游ゴシック", "Yu Gothic", "Yu Gothic Medium", Meiryo, "Helvetica Neue", "Noto Sans JP", Arial, sans-serif;
    font-weight: 600;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    font-size: 18px;
    min-height: 45px;
    min-width: 224px;
}
@media only screen and (min-width: 768px) {
    .btn, .btn-second {
        min-width: 340px;
        font-size: 19px;
        min-height: 49px;
    }
}
.btn:hover, .btn-second:hover {
    opacity: 0.7;
    color: var(--white);
}

.btn-second {
    background: #6d8531;
}

.btn-arrow {
    background: var(--primary);
    color: var(--white);
    font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Hiragino Kaku Gothic Pro", "游ゴシック体", "游ゴシック", "Yu Gothic", "Yu Gothic Medium", Meiryo, "Helvetica Neue", "Noto Sans JP", Arial, sans-serif;
    font-weight: 600;
    font-size: 29px;
    line-height: 1.2;
    border-radius: 200px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 17px 30px;
    border: 1px solid var(--white);
}
.btn-arrow::after {
    content: "";
    width: 32px;
    height: 32px;
    background: url("../images/arrow-circle-orange.svg") no-repeat 0 0/100%;
}
.btn-arrow:hover {
    color: var(--white);
    opacity: 0.7;
}

.container-sm {
    max-width: 750px;
}

.container-fluid {
    max-width: 1920px;
}
@media (min-width: 48em) {
    .container-fluid {
        padding: 0 64px;
    }
}

.hamburger {
    position: relative;
    width: 28px;
    height: 18px;
    line-height: 1;
    cursor: pointer;
    display: block;
    right: 0;
    z-index: 99;
    opacity: 1;
}
.hamburger span {
    width: 28px;
    height: 2px;
    background: #555555;
    backface-visibility: hidden;
    position: absolute;
    display: block;
    margin: auto;
    transition: 0.3s all ease;
    transform: rotate(0deg);
    border-radius: 5px;
    top: calc(50% - 1px);
    left: calc(50% - 14px);
}
.hamburger span::before, .hamburger span::after {
    content: "";
    transform-origin: center center;
    width: 100%;
    height: 2px;
    background: #555555;
    backface-visibility: hidden;
    position: absolute;
    left: 0;
    top: 8px;
    transition: 0.3s all ease;
    border-radius: 5px;
    opacity: 1;
}
.hamburger span::after {
    top: -8px;
}
.hamburger.active span {
    transform: rotate(225deg);
}
.hamburger.active span::before {
    transform: rotate(-90deg);
    top: 0;
}
.hamburger.active span::after {
    opacity: 0;
}

.arrow-down {
    max-width: 52px;
    margin: 25px auto;
    display: block;
}
@media only screen and (min-width: 768px) {
    .arrow-down {
        max-width: 73px;
        margin: 40px auto;
    }
}

.section-button {
    text-align: center;
    margin-top: 25px;
}
@media only screen and (min-width: 768px) {
    .section-button {
        margin-top: 45px;
    }
}

@media screen and (min-width: 1024px) {
    .pcbr {
        display: block;
    }

    .spbr {
        display: none;
    }
}
@media screen and (max-width: 1024px) {
    .pcbr {
        display: none;
    }

    .spbr {
        display: block;
    }
}
@media only screen and (min-width: 768px) {
    .hide-pc {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .hide-sp {
        display: none;
    }
}

.slick-slider .slick-arrow {
    width: 49px;
    height: 49px;
    border-radius: 100%;
    z-index: 10;
    border: 0;
    outline: none;
}
.slick-slider .slick-arrow::before, .slick-slider .slick-arrow::after {
    display: none;
}
.slick-slider .slick-arrow.slick-prev {
    background: url("../images/slider-arrow-left.svg") no-repeat 50% 50%/15px #59575746;
    left: 20px;
}
.slick-slider .slick-arrow.slick-next {
    background: url("../images/slider-arrow-right.svg") no-repeat 50% 50%/15px #59575746;
    right: 20px;
}
.slick-slider .slick-dots {
    display: flex;
    gap: 10px 35px;
    flex-wrap: wrap;
    bottom: 0;
}
.slick-slider .slick-dots li {
    margin: 0;
    border: 0;
    box-shadow: none;
    background: none;
    width: auto;
    height: auto;
}
.slick-slider .slick-dots li button {
    background: #d7d8d8;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    display: block;
    border: 0;
    box-shadow: none;
}
.slick-slider .slick-dots li.slick-active button {
    background: var(--primary);
}

.site-footer {
    text-align: center;
    padding-top: 10px;
}
@media only screen and (min-width: 768px) {
    .site-footer {
        padding-top: 20px;
    }
}
.site-footer h3 {
    font-weight: 400;
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック体", "游ゴシック", "Yu Gothic", "Yu Gothic Medium", Meiryo, "Helvetica Neue", "Noto Sans JP", Arial, sans-serif;
    margin: 0 0 20px;
    line-height: 1.3;
    font-size: 17px;
}
@media only screen and (min-width: 768px) {
    .site-footer h3 {
        font-size: 20px;
        margin: 0 0 25px;
    }
}
.site-footer h4 {
    font-size: 13px;
    font-weight: 400;
    margin: 0 auto 8px;
    line-height: 1.3;
    color: #595757;
    gap: 10px;
    display: flex;
    align-items: center;
    max-width: 390px;
}
@media only screen and (min-width: 768px) {
    .site-footer h4 {
        font-size: 14px;
        max-width: 412px;
    }
}
.site-footer h4::before, .site-footer h4::after {
    content: "";
    flex-basis: 0;
    flex-grow: 1;
    border-bottom: 1px solid #595757;
}
.site-footer figure img {
    max-width: 388px;
}
@media only screen and (min-width: 768px) {
    .site-footer figure img {
        max-width: 410px;
    }
}
.site-footer .btn-second {
    margin-top: 30px;
}
.site-footer__bottom {
    background: #958776;
    color: var(--white);
    font-weight: 400;
    margin-top: 24px;
    font-size: 12px;
    padding: 9px 20px;
}
@media only screen and (min-width: 768px) {
    .site-footer__bottom {
        font-size: 13px;
        padding: 10px 20px;
    }
}
.site-footer__bottom p {
    margin: 0;
}

/** pages */
.banner picture {
    display: block;
    width: 100%;
}
.banner picture img {
    width: 100%;
    height: 100%;
}

.intro {
    padding-block: 25px 0;
}
@media only screen and (min-width: 768px) {
    .intro {
        padding-block: 40px 20px;
    }
}
.intro ul {
    line-height: 1.6;
    font-weight: 500;
    font-size: 21px;
}
@media only screen and (min-width: 768px) {
    .intro ul {
        font-size: 23px;
    }
}
.intro ul li {
    background: url("../images/check.svg") no-repeat 0 5px/31px;
    padding-left: 40px;
}
@media only screen and (min-width: 768px) {
    .intro ul li {
        background-size: 35px;
        padding-left: 45px;
    }
}
.intro ul li + li {
    margin-top: 15px;
}
@media only screen and (min-width: 768px) {
    .intro ul li + li {
        margin-top: 40px;
    }
}
@media only screen and (min-width: 768px) {
    .intro__inner {
        display: flex;
    }
}
.intro__list {
    margin-bottom: 25px;
}
@media only screen and (min-width: 768px) {
    .intro__list {
        width: 50%;
        margin-bottom: 0;
    }
}
.intro__content {
    text-align: center;
    line-height: 1.7;
    font-weight: 700;
    font-size: 22px;
}
@media only screen and (min-width: 768px) {
    .intro__content {
        width: 50%;
        font-size: 19px;
    }
}
.intro__content span {
    color: var(--primary);
    font-size: 31px;
}
@media only screen and (min-width: 768px) {
    .intro__content span {
        font-size: 27px;
    }
}
.intro__content p {
    margin: 0;
}
.intro__content figure {
    margin-top: 20px;
}
.intro__content figure img {
    width: 100%;
    max-width: 337px;
}
@media only screen and (min-width: 768px) {
    .intro__content figure img {
        max-width: 353px;
    }
}
.intro .section-button {
    position: relative;
    z-index: 1;
    padding-bottom: 50px;
}
@media only screen and (min-width: 768px) {
    .intro .section-button {
        padding-block: 0;
    }
}
.intro .section-button::after {
    content: "";
    width: 100%;
    border-bottom: 1.4px solid var(--primary);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}
@media only screen and (min-width: 768px) {
    .intro .section-button::after {
        border-bottom-width: 2px;
        bottom: calc(50% - 1px);
    }
}

.worries {
    padding-block: 0 45px;
    position: relative;
    z-index: 1;
    margin-top: -13px;
}
@media only screen and (min-width: 768px) {
    .worries {
        padding-block: 20px 70px;
        margin-top: 0;
    }
}
.worries__heading {
    display: block;
    text-align: center;
    margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
    .worries__heading {
        margin-bottom: 30px;
    }
}
.worries__list {
    padding-bottom: 35px;
    margin-inline: -25px;
}
@media only screen and (min-width: 768px) {
    .worries__list {
        padding-bottom: 60px;
        margin-inline: 0;
    }
}
.worries__list picture {
    display: block;
}
.worries__list picture img {
    width: 100%;
}
@media only screen and (min-width: 768px) {
    .worries__list picture img {
        margin-left: -7px;
    }
}

.picture picture {
    display: block;
}
.picture picture img {
    width: 100%;
}

.content-video {
    padding-block: 30px 25px;
}
@media only screen and (min-width: 768px) {
    .content-video {
        padding-block: 50px 25px;
    }
}
.content-video h2 {
    text-decoration: underline;
    text-align: center;
    font-weight: 700;
    margin: 0 0 20px;
    font-size: 29px;
}
@media only screen and (min-width: 768px) {
    .content-video h2 {
        font-size: 48px;
        margin: 0 0 30px;
    }
}

.points {
    letter-spacing: 0;
    padding-block: 20px 0;
}
.points__heading {
    margin-bottom: 45px;
    text-align: center;
    letter-spacing: 0.05em;
}
.points__heading h3 {
    color: var(--brown);
    font-size: 27px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}
@media only screen and (min-width: 768px) {
    .points__heading h3 {
        font-size: 41px;
        margin: 0 0 5px;
    }
}
.points__heading h2 {
    font-size: 37px;
    font-weight: 700;
    margin: 0 0 20px;
    line-height: 1.2;
}
@media only screen and (min-width: 768px) {
    .points__heading h2 {
        font-size: 52px;
    }
}
.points__heading h2 strong {
    color: var(--primary);
    font-size: 76px;
    font-weight: 700;
}
@media only screen and (min-width: 768px) {
    .points__heading h2 strong {
        font-size: 108px;
    }
}
.points__heading h2 span {
    color: var(--primary);
    font-size: 48px;
}
@media only screen and (min-width: 768px) {
    .points__heading h2 span {
        font-size: 68px;
    }
}
.points__heading h4 {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}
@media only screen and (min-width: 768px) {
    .points__heading h4 {
        font-size: 29px;
    }
}
.points__inner {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}
.points__item {
    display: flex;
    gap: 12px;
}
@media only screen and (min-width: 768px) {
    .points__item {
        gap: 15px;
    }
}
.points__item + .points__item {
    margin-top: 35px;
}
@media only screen and (min-width: 768px) {
    .points__item + .points__item {
        margin-top: 55px;
    }
}
.points__item label {
    margin: 0;
    width: 50px;
    height: 50px;
    background: var(--primary);
    border: 3px solid var(--white);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 37px;
    color: var(--white);
}
@media only screen and (min-width: 768px) {
    .points__item label {
        width: 70px;
        height: 70px;
        font-size: 52px;
    }
}
.points__item--body {
    width: calc(100% - 62px);
}
@media only screen and (min-width: 768px) {
    .points__item--body {
        width: calc(100% - 85px);
    }
}
.points__item--body h3 {
    font-size: 22px;
    line-height: 1.2;
    margin: 0 0 10px;
    font-weight: 500;
    color: var(--text-body);
    letter-spacing: 0.08em;
}
@media only screen and (min-width: 768px) {
    .points__item--body h3 {
        font-size: 31px;
    }
}
.points__item--body h2 {
    font-size: 33px;
    margin: 0;
    line-height: 1.2;
    font-weight: 500;
    color: var(--primary);
    letter-spacing: 0.08em;
}
@media only screen and (min-width: 768px) {
    .points__item--body h2 {
        font-size: 47px;
    }
}

.elements h2 {
    text-align: center;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 50px;
    color: #968876;
    font-size: 29px;
}
@media only screen and (min-width: 768px) {
    .elements h2 {
        font-size: 42px;
        margin: 0 0 75px;
    }
}
.elements h2 u {
    color: var(--primary);
}
.elements h2 span {
    font-size: 38px;
    color: var(--primary);
}
@media only screen and (min-width: 768px) {
    .elements h2 span {
        font-size: 54px;
    }
}
.elements h2 strong {
    font-weight: 700;
    font-size: 53px;
    color: var(--primary);
}
@media only screen and (min-width: 768px) {
    .elements h2 strong {
        font-size: 75px;
    }
}
.elements__item + .elements__item {
    margin-top: 110px;
    position: relative;
}
@media only screen and (min-width: 768px) {
    .elements__item + .elements__item {
        margin-top: 144px;
    }
}
.elements__item + .elements__item::before {
    content: "";
    position: absolute;
    background: #968876;
    left: calc(50% - 9px);
    top: -65px;
    border-radius: 50%;
    width: 18px;
    height: 18px;
}
@media only screen and (min-width: 768px) {
    .elements__item + .elements__item::before {
        width: 24px;
        height: 24px;
        left: calc(50% - 12px);
        top: -90px;
    }
}
.elements__item--heading::after {
    content: "";
    display: block;
    clear: both;
}
.elements__item--heading h5 {
    margin: 0 0 12px;
    font-weight: 700;
    line-height: 1.2;
    font-size: 22px;
}
@media only screen and (min-width: 768px) {
    .elements__item--heading h5 {
        font-size: 37px;
        margin: 0 0 20px;
    }
}
.elements__item--heading h5 u {
    color: var(--primary);
}
.elements__item--heading h4 {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.3;
    margin: 0 0 24px;
    display: flex;
    gap: 10px;
    color: var(--primary);
}
@media only screen and (min-width: 768px) {
    .elements__item--heading h4 {
        font-size: 47px;
        margin: 0 0 40px;
        gap: 14px;
    }
}
.elements__item--heading h4 label {
    margin: 0;
    width: 67px;
    min-width: 67px;
    height: 67px;
    background: var(--primary);
    border: 3px solid var(--white);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 49px;
    color: var(--white);
}
@media only screen and (min-width: 768px) {
    .elements__item--heading h4 label {
        width: 104px;
        min-width: 104px;
        height: 104px;
        font-size: 77px;
    }
}
.elements__item--heading h4 small {
    font-size: 24px;
}
@media only screen and (min-width: 768px) {
    .elements__item--heading h4 small {
        font-size: 37px;
    }
}
.elements__item--heading h3 {
    font-size: 28px;
    font-weight: 500;
    margin: 0 0 20px;
    line-height: 1.7;
}
@media only screen and (min-width: 768px) {
    .elements__item--heading h3 {
        font-size: 43px;
        margin: 0 0 25px;
    }
}
.elements__item--heading img {
    max-width: 97px;
    float: right;
}
@media only screen and (min-width: 768px) {
    .elements__item--heading img {
        max-width: 150px;
    }
}
.elements__item:last-child .elements__item--heading img {
    margin-top: -55px;
}
@media only screen and (min-width: 768px) {
    .elements__item:last-child .elements__item--heading img {
        margin-top: -100px;
    }
}

.online-course h2 {
    font-weight: 700;
    font-size: 34px;
    line-height: 1.36;
    margin: 0 0 35px;
    text-align: center;
}
@media only screen and (min-width: 768px) {
    .online-course h2 {
        font-size: 38px;
        margin: 0 0 50px;
    }
}
.online-course h2 u {
    color: var(--primary);
}
.online-course h3 {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
    margin: 30px 0 5px;
}
@media only screen and (min-width: 768px) {
    .online-course h3 {
        font-size: 20px;
        margin: 40px 0 10px;
    }
}

.academy {
    padding-block: 45px;
    text-align: center;
}
.academy h3 {
    font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Hiragino Kaku Gothic Pro", "游ゴシック体", "游ゴシック", "Yu Gothic", "Yu Gothic Medium", Meiryo, "Helvetica Neue", "Noto Sans JP", Arial, sans-serif;
    font-weight: 600;
    font-size: 14px;
    margin: 0 0 10px;
    line-height: 1.3;
}
@media only screen and (min-width: 768px) {
    .academy h3 {
        font-size: 21px;
        margin: 0 0 20px;
    }
}
.academy h3 span {
    font-size: 21px;
}
@media only screen and (min-width: 768px) {
    .academy h3 span {
        font-size: 39px;
    }
}
.academy h2 {
    font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Hiragino Kaku Gothic Pro", "游ゴシック体", "游ゴシック", "Yu Gothic", "Yu Gothic Medium", Meiryo, "Helvetica Neue", "Noto Sans JP", Arial, sans-serif;
    font-weight: 600;
    font-size: 16px;
    margin: 0;
    line-height: 1.3;
}
@media only screen and (min-width: 768px) {
    .academy h2 {
        font-size: 31px;
    }
}
.academy h2 span {
    font-size: 21px;
    color: var(--primary);
}
@media only screen and (min-width: 768px) {
    .academy h2 span {
        font-size: 40px;
    }
}
.academy picture {
    display: block;
}
.academy picture img {
    max-width: 835px;
}

.instructors__inner {
    padding-block: 30px 35px;
    border-top: 1.4px solid var(--primary);
    border-bottom: 1.4px solid var(--primary);
}
@media only screen and (min-width: 768px) {
    .instructors__inner {
        border-top-width: 2px;
        border-bottom-width: 2px;
        padding-block: 40px;
    }
}
.instructors h2 {
    color: var(--primary);
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 30px;
}
@media only screen and (min-width: 768px) {
    .instructors h2 {
        font-size: 45px;
    }
}
.instructors__list {
    padding: 0 0 50px;
}
@media only screen and (min-width: 768px) {
    .instructors__list {
        padding: 0 30px 40px;
    }
}
.instructors__list .slick-arrow.slick-prev {
    left: 7px;
}
.instructors__list .slick-arrow.slick-next {
    right: 7px;
}
.instructors__item--inner {
    background: var(--white);
    position: relative;
    padding: 32px 20px 30px 45px;
}
@media only screen and (min-width: 768px) {
    .instructors__item--inner {
        display: flex;
        gap: 45px;
        padding: 35px 35px 75px 85px;
    }
}
.instructors__item--inner::before, .instructors__item--inner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}
.instructors__item--inner::before {
    width: 22px;
    background: var(--primary);
    z-index: 1;
}
@media only screen and (min-width: 768px) {
    .instructors__item--inner::before {
        width: 47px;
    }
}
.instructors__item--inner::after {
    width: 13px;
    background: #958776;
    z-index: 2;
}
@media only screen and (min-width: 768px) {
    .instructors__item--inner::after {
        width: 28px;
    }
}
@media only screen and (max-width: 767px) {
    .instructors__item--info {
        width: 53%;
    }
}
.instructors__item--meta {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
    .instructors__item--meta {
        width: 225px;
        margin-bottom: 0;
    }
}
@media only screen and (max-width: 767px) {
    .instructors__item--meta {
        display: flex;
        justify-content: space-between;
    }
}
.instructors__item--meta h4 {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    margin: 0 0 10px;
    letter-spacing: 0.02em;
}
@media only screen and (min-width: 768px) {
    .instructors__item--meta h4 {
        font-size: 19px;
    }
}
.instructors__item--meta p {
    margin: 0;
}
.instructors__item--meta h3 {
    font-size: 33px;
    font-weight: 500;
    line-height: 1.3;
    margin: 10px 0 5px;
}
.instructors__item--meta h6 {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.3;
    margin: 0 0 25px;
}
@media only screen and (max-width: 767px) {
    .instructors__item--meta figure {
        width: 45%;
        margin: -32px -20px 0 0;
    }
}
.instructors__item--meta figure img {
    width: 100%;
}
.instructors__item--body {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8125;
    letter-spacing: 0.02em;
}
@media only screen and (min-width: 768px) {
    .instructors__item--body {
        font-size: 16px;
        flex-basis: 0;
        flex-grow: 1;
    }
}
.instructors__item--body h3 {
    line-height: 1.77;
    font-weight: 600;
    margin: 0 0 20px;
    font-size: 18px;
}
@media only screen and (min-width: 768px) {
    .instructors__item--body h3 {
        font-size: 17px;
    }
}
.instructors__item--body h4 {
    color: var(--primary);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8125;
    letter-spacing: 0.02em;
    margin: 15px 0 0;
}
@media only screen and (min-width: 768px) {
    .instructors__item--body h4 {
        font-size: 16px;
        margin: 20px 0 0;
    }
}

.content-bottom {
    padding-top: 35px;
    font-size: 21px;
    line-height: 1.75;
    font-weight: 700;
}
@media only screen and (min-width: 768px) {
    .content-bottom {
        font-size: 24px;
        padding-top: 50px;
    }
}
.content-bottom figure {
    text-align: center;
    margin-bottom: 35px;
}
@media only screen and (min-width: 768px) {
    .content-bottom figure {
        margin-bottom: 55px;
    }
}
.content-bottom figure img {
    max-width: 380px;
}
@media only screen and (min-width: 768px) {
    .content-bottom figure img {
        max-width: 558px;
    }
}
.content-bottom h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.5;
    margin: 35px 0 15px;
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック体", "游ゴシック", "Yu Gothic", "Yu Gothic Medium", Meiryo, "Helvetica Neue", "Noto Sans JP", Arial, sans-serif;
    text-align: center;
}
@media only screen and (min-width: 768px) {
    .content-bottom h2 {
        font-size: 40px;
        margin: 55px 0 20px;
        font-family: "Noto Sans JP", sans-serif;
    }
}
.content-bottom p {
    margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
    .content-bottom p {
    font-size: 4vw;
}
}
@media only screen and (min-width: 768px) {
    .content-bottom p {
        margin-bottom: 25px;
    }
}
.content-bottom p small {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    display: inline-block;
    letter-spacing: 0.01em;
}
@media only screen and (min-width: 768px) {
    .content-bottom p small {
        font-size: 16px;
    }
}
@media only screen and (min-width: 992px) {
    .content-bottom .section-button .btn-arrow {
        border-width: 5.6px;
        padding: 22px 50px;
    }
}

.iframe-container{
    position: relative;
    padding-bottom: 56.25%;
}
.iframe-container iframe{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.site-wrap--subpage{
    position: relative;
}
.site-wrap--subpage .logo{
    position: fixed;
    top: 33%;
    left: 2.5vw;
    z-index: 11;
    display: none;
}
.site-wrap--subpage .bg_icon{
    position: fixed;
    bottom: 10%;
    left: 2.5vw;
    z-index: 11;
    display: none;
}
@media only screen and (min-width: 768px){
    .site-wrap--subpage .logo{
        display: block;
    }
    .site-wrap--subpage .bg_icon{
        display: block;
    }
}
@media only screen and (max-width: 1200px){
    .site-wrap--subpage .logo{
        width: 40vw;
    }
    .site-wrap--subpage .bg_icon{
        width: 21vw;
    }
}
@media only screen and (min-width: 1200px){
    .site-wrap--subpage .logo{
        left: calc(25vw - 290px);
    }
    .site-wrap--subpage .bg_icon {
        left: calc(25vw - 144px);
    }
    .site-wrap--subpage .container--subpage{
        transform: translateX(50%);
    }
}
.site-wrap--subpage .container--subpage{
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    position: relative;
    z-index: 10;
}
.site-wrap--subpage .con--button{
    padding-inline: 5%;
    padding-block: 10%;
}
.site-wrap--subpage .con--button02{
    padding-inline: 24%;
    padding-bottom: 10%;
}
.site-wrap--subpage .mt-bt{
    margin-top: -10%;
}

.site-wrap--subpage::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/subpage/background.png);
    background-position: bottom left;
    /*background-size: cover;*/
    z-index: -1;
}
.site-wrap--subpage::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background-image: url(../images/subpage/background_bar.png);
    background-position: center;
    background-size: cover;
    z-index: -1;
}
@media only screen and (min-width: 1200px){
    .site-wrap--subpage::before{
        background-image: url(../images/subpage/background1200.png);
        background-position: bottom left;
    }
}

.site-wrap--subpage02::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/subpage02/background.png);
    background-position: center;
    background-size: cover;
    background-color: #ffebc6;
    z-index: -1;
}
.site-wrap--subpage02 .container--subpage{
    max-width: 500px;
    margin: 0 auto;
    background: #ffd259;
}
.site-wrap--subpage02 .con--button{
    padding: 5% 24%;
}
.site-wrap--subpage02 .iframebox{
    padding-inline: 7%;
}
.site-wrap--subpage02 .container--subpage>img:last-child{
    padding-bottom: 7%;
    background: #fff;
}

.swiper04{
    padding-bottom: 50px;
}

.form-wrap{
    padding: 40px 50px;
    background: #005BAA;
}
.form-inner{
    background: #fff;
    border-radius: 16px;
    padding: 30px 15px;
    margin-bottom: 40px;
}
.form-inner h3{
    font-size: 17px;
    line-height: 24px;
    text-align: center;
}
.form-inner h2{
    font-size: 20px;
    line-height: 28px;
    text-align: center;
}
.form-inner ul{
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}
.form-inner ul li{
    padding: 10px 10px 10px 40px;
    background: url(../images/subpage02/icon_check.png) left 9px center no-repeat;
    font-size: 13px;
    line-height: 18px;
    border-bottom: 1px dashed #005BAA;
}

.form-inner table tr{
    border-bottom: 1px solid #9D9FA2;
}
.form-inner table th,
.form-inner table td{
    font-size: 10px;
    line-height: 22px;
    padding: 12px 15px 12px;
}

input[type=email], input[type=password], input[type=phone], input[type=search], input[type=text], select, textarea{
    padding: 6px 12px;
    width: 100%;
    font-size: 10px;
    line-height: 22px;
}

.form-inner table td p{
    margin: 0;
}
.checkbox-wrap{
    display: flex;
    align-items: center;
    gap: 7px;
}
.form-wrap .info{
    font-size: 7px;
    line-height: 12px;
    padding: 15px 30px;
}
/*====================*/
.intro-btn{
    margin: 0;
    padding: 10px 15px 0;
    font-size: 14px;
    text-align: center;
}
.form-wrap-blue{
    padding: 15px;
    background: #2484C6;
}
.form-wrap-blue h2{
    color: #fff;
    font-size: 30px;
    line-height: 28px;
    text-align: center;
    position: relative;
	font-family: "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", "Noto Serif JP", serif;
}
.form-wrap-blue h2:after {
    position: absolute;
    left: -15px;
    top: 99%;
    transform: translateY(30%);
    width: 100%;
    border-left: 50vw solid transparent;
    border-right: 50vw solid transparent;
    border-top: 25px solid #2484c6;
    content: "";
}
@media only screen and (min-width: 500px){
    .form-wrap-blue h2:after {
        border-left: 250px solid transparent;
        border-right: 250px solid transparent;
        border-top: 25px solid #2484c6;
    }
}
.form-wrap-blue .form-inner{
    border-radius: 0;
    margin-bottom: 0;
}
span{
    background: #808285;
    color: #fff;
    font-size: 10px;
    padding: 0px 6px 1px;
    line-height: 1;
    margin-right: 5px;
}
span.required{
    background: #ed1c24;
    color: #fff;
}
.form-wrap button{
    display: block;
    margin: 30px auto;
    background: #009EDB;
    background: linear-gradient(0deg,rgba(0, 158, 219, 0.8) 0%, rgba(68, 200, 245, 1) 100%);
    color: #fff;
    font-size: 20px;
    line-height: 40px;
    width: 153px;
    height: 46px;
    border-radius: 8.5px;
    border: none;
}
.form-wrap button.btn-yellow{
    background: #F8D78C;
background: linear-gradient(0deg,rgba(248, 215, 140, 0.8) 0%, rgba(254, 210, 98, 1) 100%);
    color: #000;
}
.form-wrap-blue .info{
    background: rgba(36,132,198,0.1);
    padding: 10px;
    border-top: none;
    margin-top: 30px;
}

table .static-txt th{
    font-size: 15px;
}
table .static-txt td{
    font-size: 20px;
}
.position-relative{
    position: relative;
}
.position-relative a{
    position: absolute;
    top: 40px;
    left: 80px;
    height: 39px;
    right: 80px;
}
.thanks-main{
    height: 100vh;
    position: relative;
}
.thanks-main p{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    font-size: 16px;
}
@media only screen and (min-width: 768px){
    .thanks-main p{
        font-size: 24px;
    }
}