@charset "UTF-8";

/* GoogleFonts読み込み 下記のライセンス記述は削除禁止 */


/*
* "Noto Sans JP" licensed under the SIL Open Font License 1.1
* by https://fonts.google.com/specimen/Noto+Sans+JP
*/

@font-face {
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 400;
    src: url("fonts/NS-400.woff2") format("woff2"), url("fonts/NS-400.woff") format("woff");
    font-display: swap;
}

@font-face {
    font-family: "Noto Sans JP";
    font-style: normal;
    font-weight: 900;
    src: url("fonts/NS-900.woff2") format("woff2"), url("fonts/NS-900.woff") format("woff");
    font-display: swap;
}

@font-face {
    font-family: "Noto Sans JP Vertical";
    font-style: normal;
    font-weight: 900;
    src: url("fonts/NS-900-vertical.woff2") format("woff2"), url("fonts/NS-900-vertical.woff2") format("woff");
    font-display: swap;
}


/*
---------------------------------------------

    base settings

*/

:root {
    font-size: 62.5%;
    --s-2: calc(var(--s1) / 2);
    --s1: 0.8rem;
    --s2: calc(var(--s1) * 2);
    --s3: calc(var(--s1) * 3);
    --s4: calc(var(--s1) * 4);
    --s5: calc(var(--s1) * 5);
    --s6: calc(var(--s1) * 6);
    --s7: calc(var(--s1) * 7);
    --s8: calc(var(--s1) * 8);
    --s9: calc(var(--s1) * 9);
    --s10: calc(var(--s1) * 10);
}

@media screen and (max-width: 1148px) {
     :root {
        font-size: 0.8710801394vw;
    }
}

body {
    margin: 0;
    padding: 0;
    background: #fff;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    -webkit-text-size-adjust: 100%;
    line-height: 1;
    color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-weight: normal;
    clear: both;
}

ul,
ol,
dl,
p,
img,
form,
dt,
dd,
figure {
    margin: 0;
    padding: 0;
    border: 0;
}

li {
    list-style: none;
}

input,
button,
textarea,
select {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    font-size: 1.5rem;
    font-family: "Noto Sans JP", sans-serif;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

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

a {
    color: #000;
    transition: opacity 0.5s ease, color 0.5s ease;
    outline: none;
}

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

p {
    line-height: 2;
}

p+p {
    margin-top: 1em;
}

strong {
    font-weight: 700;
}

em {
    font-style: italic;
    font-weight: normal;
}

small {
    font-size: 80%;
}

* {
    box-sizing: border-box;
}

.sp_br {
    display: none;
}

.pc_br {
    display: inline;
}

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

@media screen and (max-width: 767px) {
    .for-pc {
        display: none !important;
    }
}


/*
---------------------------------------------

    layout center

*/

.l-center {
    max-width: 110rem;
    margin-right: auto;
    margin-left: auto;
    padding-right: var(--s3);
    padding-left: var(--s3);
    box-sizing: content-box;
}


/*
---------------------------------------------

    layout grid

*/

.l-grid {
    --minmum: calc((100% - 13rem) / 2);
    display: grid;
    grid-gap: 13rem;
}

.l-grid--no-gap {
    --minmum: 50%;
    grid-gap: 0;
}

@supports (width: min(var(--minmum),
100%)) {
    .l-grid {
        grid-template-columns: repeat(auto-fill, minmax(min(var(--minmum), 100%), 1fr));
    }
}


/*
---------------------------------------------

    layout sidebar

*/

.l-sidebar {
    display: flex;
    gap: var(--s3);
}

.l-sidebar__side {
    width: 22.5rem;
    margin-top: 1rem;
}

.l-sidebar__main {
    flex: 1;
}


/*
---------------------------------------------

    layout column

*/

.l-column-01 {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s4);
}

.l-column-01__side {
    width: 42rem;
}

.l-column-01__main {
    flex: 1;
}

.l-column-02 {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s6);
}

.l-column-02__side {
    width: 32rem;
}

.l-column-02__main {
    flex: 1;
}


/*
---------------------------------------------

    layout column areas

*/

.l-column-areas-01 {
    display: grid;
    grid-template-areas: "title title title" "img catch text";
    grid-template-columns: calc((100% - var(--s9)) / 2) 1fr calc((100% - var(--s9)) / 2);
    grid-template-rows: auto 1fr;
    grid-gap: 0;
    align-items: flex-end;
}

.l-column-areas-01__cell-01 {
    grid-area: title;
}

.l-column-areas-01__cell-02 {
    grid-area: img;
    position: relative;
    z-index: -1;
}

.l-column-areas-01__cell-03 {
    grid-area: catch;
}

.l-column-areas-01__cell-04 {
    grid-area: text;
}

.l-column-areas-01--row-reverse {
    grid-template-areas: "title title title" "text catch img";
}

.l-column-areas-02 {
    display: grid;
    grid-template-areas: "img title" "img text-area";
    grid-template-columns: 50% 50%;
    grid-template-rows: auto 1fr;
    grid-gap: 0;
}

.l-column-areas-02__cell-01 {
    grid-area: title;
}

.l-column-areas-02__cell-02 {
    grid-area: img;
}

.l-column-areas-02__cell-03 {
    grid-area: text-area;
}

.l-column-areas-03 {
    display: grid;
    grid-template-areas: "img title" "img text-area";
    grid-template-columns: 1fr 50%;
    grid-template-rows: auto 1fr;
    grid-gap: var(--s2) var(--s5);
}

.l-column-areas-03__cell-01 {
    grid-area: title;
}

.l-column-areas-03__cell-02 {
    grid-area: img;
}

.l-column-areas-03__cell-03 {
    grid-area: text-area;
}

.l-column-areas-03--row-reverse {
    grid-template-areas: "title img" "text-area img";
    grid-template-columns: 50% 1fr;
}


/*
---------------------------------------------

    layout float

*/

.l-float {
    margin: var(--s6) 0;
    display: flow-root;
}

.l-float__left-pc {
    width: 37rem;
    margin-right: var(--s5);
    margin-bottom: var(--s2);
    float: left;
}

.l-float__right-pc {
    width: 37rem;
    margin-left: var(--s5);
    margin-bottom: var(--s2);
    float: right;
}

.l-float__center {
    width: 50rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--s2);
}

.l-float__left {
    width: 19rem;
    margin-right: var(--s5);
    margin-bottom: var(--s2);
    float: left;
}

.l-float__right {
    width: 19rem;
    margin-left: var(--s5);
    margin-bottom: var(--s2);
    float: right;
}


/*
---------------------------------------------

    layout scroll x

*/

.l-scroll-x {
    width: 100%;
    padding-bottom: var(--s1);
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-color: #ddd transparent;
    scrollbar-width: 0.6rem;
}

.l-scroll-x::-webkit-scrollbar {
    height: 0.6rem;
}

.l-scroll-x::-webkit-scrollbar-track {
    border-radius: 0.3rem;
    background: #eee;
}

.l-scroll-x::-webkit-scrollbar-thumb {
    border-radius: 0.3rem;
    background: #ddd;
}


/*
---------------------------------------------

    layout footer

*/

.l-footer {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s3) var(--s6);
}

.l-footer__cell-01 {
    width: 100%;
}

.l-footer__cell-02 {
    width: 35rem;
    flex-shrink: 0;
}

.l-footer__cell-03 {
    flex: 1;
}


/*
---------------------------------------------

    icon

*/

.icon-plus {
    width: var(--s3);
    height: var(--s3);
    position: relative;
}

.icon-plus::before {
    content: "";
    width: 100%;
    height: 0.2rem;
    background: #7782A1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-plus::after {
    content: "";
    width: 0.2rem;
    height: 100%;
    background: #7782A1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s;
}

.icon-plus-circle {
    width: 3.6rem;
    height: 3.6rem;
    border: 1px solid #707070;
    border-radius: 100%;
    position: relative;
}

.icon-plus-circle::before {
    content: "";
    width: var(--s2);
    height: 0.2rem;
    background: #707070;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-plus-circle::after {
    content: "";
    width: 0.2rem;
    height: var(--s2);
    background: #707070;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s;
}

.is-open>.icon-plus:after,
.is-open>.icon-plus-circle:after {
    transform: translate(-50%, -50%) rotate(90deg);
}


/*
---------------------------------------------

    list

*/

.main-area .subList li,
.main-area ul:not([class]) li {
    padding: 0 0 0 1.2em;
    font-size: 100%;
    line-height: 1.5;
    position: relative;
}

.main-area .subList li::before,
.main-area ul:not([class]) li::before {
    content: "";
    width: 1rem;
    height: 1rem;
    background: #1A87B9;
    border-radius: 10rem;
    position: absolute;
    top: 0.4em;
    left: 0;
}

.main-area .subList li+li,
.main-area ul:not([class]) li+li {
    margin-top: 1em;
}

.main-area ul:not([class]) {
    margin: var(--s5) 0;
}

.main-area .subList {
    margin: 0.8em 0;
}

.main-area ol:not([class]) {
    margin: var(--s5) 0;
    counter-reset: number;
}

.main-area ol:not([class]) li {
    padding: 0 0 0 1.6em;
    font-size: 100%;
    line-height: 1.5;
    position: relative;
    counter-increment: number;
}

.main-area ol:not([class]) li::before {
    content: counter(number, decimal-leading-zero);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #0F3295;
    text-align: center;
    font-weight: 900;
    position: absolute;
    top: 0;
    left: 0;
}

.main-area ol:not([class]) li+li {
    margin-top: 1em;
}

.list-check__item+.list-check__item {
    margin-top: 0.5em;
}

.list-check__link {
    padding: 0 0 0 var(--s3);
    background: url("img/icon-check-green.svg") no-repeat top 0.4em left/1.75rem auto;
    display: block;
    font-weight: 900;
    text-decoration: none;
    line-height: 2;
}


/*
---------------------------------------------

    btn

*/

.btn-web {
    width: 100%;
    margin: var(--s5) auto;
    position: relative;
}

.btn-web a {
    width: 100%;
    max-width: 41.6rem;
    min-height: 9rem;
    margin: 0 auto;
    padding: 2rem var(--s6);
    background-image: url("img/arrow-02-green-right.svg"), linear-gradient(100deg, #21A22F, #46B57A);
    background-repeat: no-repeat;
    background-size: 2.8rem auto, contain;
    background-position: center right var(--s1), 0 0;
    border-radius: 10rem;
    box-shadow: 0 var(--s1) 0 #8ED9B0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
}

.btn-web a:hover {
    color: #fff;
    opacity: 0.5;
}

.btn-internal {
    width: 100%;
    margin: var(--s5) auto;
    position: relative;
}

.btn-internal a {
    width: 100%;
    max-width: 41.6rem;
    min-height: 9rem;
    margin: 0 auto;
    padding: 2rem var(--s6);
    background-image: url("img/arrow-02-blue-right.svg"), linear-gradient(100deg, #4D6ED5, #5BA1CB);
    background-repeat: no-repeat;
    background-size: 2.8rem auto, contain;
    background-position: center right var(--s1), 0 0;
    border-radius: 10rem;
    box-shadow: 0 var(--s1) 0 #8EBFDE;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
}

.btn-internal a:hover {
    color: #fff;
    opacity: 0.5;
}

.btn-internal--arrow-down a {
    background-image: url("img/arrow-02-blue-down.svg"), linear-gradient(100deg, #4D6ED5, #5BA1CB);
}

.btn-link {
    margin: var(--s2) auto;
    text-align: right;
}

.btn-link a {
    margin: 0;
    padding: var(--s1) 2.8rem var(--s1) 0;
    background: url("img/arrow-01-blue-right.svg") no-repeat center right/2rem auto;
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1.5;
    text-decoration: none;
}

.btn-link a:hover {
    text-decoration: underline;
}

.btn-link--white a {
    color: #fff;
    background-image: url("img/arrow-01-white-right.svg");
}

.btn-link-02 {
    margin: var(--s2) auto;
    display: flex;
    justify-content: flex-end;
}

.btn-link-02 a {
    min-height: 4.2rem;
    margin: 0;
    padding: 0 var(--s7) 0 0;
    background: url("img/arrow-03-white-right.svg") no-repeat center right/4.2rem auto;
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: 900;
    line-height: 1.5;
    text-decoration: none;
}

.btn-link-02 a:hover {
    text-decoration: none;
    opacity: 0.5;
}

.btn-tel {
    display: none;
}


/*
---------------------------------------------

    table

*/

table {
    width: 100%;
    border-collapse: collapse;
    border-top: 1px solid #C7C7C7;
    border-left: 1px solid #C7C7C7;
}

th,
td {
    padding: var(--s1) var(--s2);
    border-right: solid 1px #C7C7C7;
    border-bottom: solid 1px #C7C7C7;
    line-height: 1.5;
    word-break: break-all;
}

th {
    background: #F8F8F8;
    font-weight: normal;
}

tbody th {
    background: #F8F8F8;
    width: 20%;
}

.l-scroll-x table {
    width: inherit;
}

.l-scroll-x table th,
.l-scroll-x table td {
    min-width: 20rem;
}


/*
---------------------------------------------

    caption

*/

.caption {
    margin-top: 1em;
    display: block;
    color: #7D7D7D;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
    word-break: break-all;
}

.caption a {
    color: #7D7D7D;
}


/*
---------------------------------------------

	catch

*/

.catch-01 {
    color: #0F3295;
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.5;
}


/*
---------------------------------------------

	text

*/

.marker {
    background: linear-gradient(transparent 60%, #C7FFDD 60%);
    font-weight: 900;
}

.txt_bold {
    font-weight: 900;
}

.text-note {
    color: #535353;
    font-size: 1.2rem;
    text-align: center;
    line-height: 1.36;
}


/*
---------------------------------------------

	subgrid card

*/

.subgrid-card {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 5;
    grid-gap: var(--s2);
}


/*
---------------------------------------------

    comment

*/

.comment-box {
    max-width: 53.4rem;
    margin: 0 auto var(--s5);
    padding: var(--s2) var(--s2);
    background: #fff;
    border: 1px solid #0F3295;
    border-radius: 0.5rem;
    color: #0F3295;
    font-size: 1.8rem;
    font-weight: 900;
    text-align: center;
    position: relative;
    z-index: 1;
}

.comment-box::after {
    content: "";
    width: 0;
    height: 0;
    border: 1.4rem solid transparent;
    border-top-color: #0F3295;
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translate(-50%, 100%);
}

.comment-box--invert {
    border-color: #8EBFDE;
}

.comment-box--invert::after {
    border-top-color: #8EBFDE;
}

.comment-box--text-large {
    font-size: 2.2rem;
}


/*
---------------------------------------------

	pankuzu

*/

#pankuzu {
    width: 100%;
    margin: var(--s2) auto;
    padding: var(--s1) 0;
    color: #7D7D7D;
    font-size: 1.2rem;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
}

#pankuzu>span {
    color: #7D7D7D;
}

#pankuzu a {
    color: #7D7D7D;
}

#pankuzu>span span br {
    display: none;
}


/*
---------------------------------------------

    header

*/

.header-area {
    width: 100%;
    padding: var(--s1) 0 var(--s5);
    position: absolute;
}

.header-area--low {
    position: relative;
}

.header-area--low::after {
    content: "";
    width: 100%;
    height: 51.2rem;
    background-image: url("img/low-header-bg-01.png"), url("img/low-header-bg-02.png");
    background-position: top -14rem right calc(50% + 50rem), top 1rem left calc(50% + 24rem);
    background-size: 65.6rem auto, 88.7rem auto;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.header-area--low .header-site-name {
    position: static;
}

.header-logo {
    width: 18.5rem;
}

.header-logo__link {
    display: block;
}

.header-logo__link:hover {
    opacity: 0.5;
}

.header-site-name {
    margin: 0 8.4rem 0 0;
    font-size: 1.2rem;
    line-height: 1.36;
    text-align: right;
    position: absolute;
    top: var(--s1);
    right: 0;
}

.header-site-name__link {
    display: inline-block;
    text-decoration: none;
}

.header-site-name__link:hover {
    opacity: 0.5;
}


/*
---------------------------------------------

    main

*/

.main-area {
    overflow: hidden;
}

.main-area--low {
    background: url("img/low-main-bg-01.png") repeat-y top center/212.4rem auto;
}


/*
---------------------------------------------

    footer

*/

.footer-area {
    padding: var(--s6) 0 0;
    background: #313339;
    color: #FFF;
}

.footer-main {
    max-width: 110rem;
    margin-right: auto;
    margin-left: auto;
    padding-right: var(--s3);
    padding-left: var(--s3);
    box-sizing: content-box;
}

.footer-host-box {
    padding: var(--s3) var(--s6);
    border: 1px solid #fff;
    display: flex;
    gap: var(--s6);
}

.footer-host-box__side {
    width: 22rem;
}

.footer-host-box__main {
    flex: 1;
}

.footer-host-box__label {
    width: 17.2rem;
    margin-top: var(--s1);
}

.footer-host-box__logo {
    width: 100%;
    margin-top: var(--s3);
}

.footer-host-box .btn-link {
    margin: 0;
}

.footer-logo {
    width: 26.8rem;
    margin: var(--s4) auto;
}

.footer-logo__link {
    display: block;
}

.footer-logo__link:hover {
    opacity: 0.5;
}

.footer-box+.footer-box {
    margin-top: var(--s3);
}

.footer-menu-title {
    margin-bottom: var(--s-2);
    font-size: 1.4rem;
    font-weight: 900;
    line-height: 1.5;
    border-bottom: 1px solid #FFF;
}

.footer-menu-title__link {
    padding: 0 0 var(--s1);
    display: block;
    color: #FFF;
    text-decoration: none;
}

.footer-menu-title__link:hover {
    color: #FFF;
    opacity: 0.5;
}

.footer-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 0 var(--s2);
}

.footer-menu__item {
    width: calc((100% - var(--s2) * 2) / 3);
    font-size: 1.4rem;
    line-height: 1.5;
}

.footer-menu__link {
    padding: var(--s-2) 0;
    display: block;
    color: #FFF;
    text-decoration: none;
}

.footer-menu__link:hover {
    color: #FFF;
    opacity: 0.5;
}

.footer-menu-sub {
    margin-left: var(--s1);
}

.footer-menu-sub__item {
    font-size: 1.2rem;
    line-height: 1.5;
}

.footer-menu-sub__link {
    padding: var(--s-2) 0 var(--s-2) 1.2em;
    display: block;
    color: #FFF;
    text-decoration: none;
    position: relative;
}

.footer-menu-sub__link::before {
    content: "-";
    position: absolute;
    top: var(--s-2);
    left: 0;
}

.footer-menu-sub__link:hover {
    color: #FFF;
    opacity: 0.5;
}

.footer-disclaimer {
    margin: var(--s4) 0 0;
    font-size: 1.2rem;
    line-height: 1.36;
}

.footer-disclaimer__label {
    display: inline;
}

.footer-disclaimer__text {
    display: inline;
}

.footer-nocopy {
    margin: var(--s4) 0 0;
    font-size: 1.2rem;
}

.footer-bottom {
    margin: var(--s5) 0 0;
    padding: var(--s2) 0;
}

.footer-bottom__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 1.2rem;
}

.footer-copyright__link {
    color: #FFF;
    text-decoration: none;
}

.footer-copyright__link:hover {
    color: #FFF;
    text-decoration: underline;
}

.footer-sitemap {
    margin: 0;
    font-size: 1.2rem;
}

.footer-sitemap__link {
    color: #FFF;
    text-decoration: none;
}

.footer-sitemap__link:hover {
    color: #FFF;
    text-decoration: underline;
}


/*
---------------------------------------------

	sp gnavi

*/

.gnavi-btn {
    width: var(--s9);
    height: var(--s9);
    background: #313339;
    border: 0.2rem solid #fff;
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: var(--s1);
    right: var(--s1);
    z-index: 200;
    cursor: pointer;
    transition: opacity 0.6s, visibility 0.6s;
}

.gnavi-btn span {
    width: var(--s4);
    height: 0.2rem;
    display: inline-block;
    background: #fff;
    position: absolute;
    left: 1.8rem;
    transition: transform 0.4s, opacity 0.4s;
}

.gnavi-btn span:nth-of-type(1) {
    top: 2.7rem;
}

.gnavi-btn span:nth-of-type(2) {
    top: 3.7rem;
}

.gnavi-btn.is-active span:nth-of-type(1) {
    transform: translateY(0.5rem) rotate(-45deg);
}

.gnavi-btn.is-active span:nth-of-type(2) {
    transform: translateY(-0.5rem) rotate(45deg);
}

.gnavi-btn.is-show {
    opacity: 1;
    visibility: visible;
}

.gnavi-area {
    width: 100%;
    max-width: 37.5rem;
    height: 100vh;
    padding: 10rem 0;
    background: #313339;
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    transform: translateX(100%);
    transition: transform 0.8s ease, opacity 0.8s ease;
    opacity: 0;
    overflow-x: hidden;
    overflow-y: auto;
}

.gnavi-menu-box {
    border-top: 1px solid #fff;
}

.gnavi-menu-box__title {
    border-bottom: 1px solid #fff;
}

.gnavi-menu-box__title__link {
    padding: 1.2rem var(--s7) 1.2rem var(--s3);
    display: block;
    color: #fff;
    font-weight: 700;
    line-height: 1.5;
    text-decoration: none;
    background: url("img/arrow-01-white-right.svg") no-repeat right var(--s3) center/2rem auto;
}

.gnavi-menu-box__title__link:hover {
    color: #fff;
    opacity: 0.6;
}

.gnavi-menu-box__title__btn {
    padding: 1.2rem var(--s7) 1.2rem var(--s3);
    color: #fff;
    font-weight: 700;
    line-height: 1.5;
    display: block;
    cursor: pointer;
    transition: opacity 0.5s;
    position: relative;
}

.gnavi-menu-box__title__btn::after {
    content: "";
    width: 2rem;
    height: 2rem;
    background: url("img/arrow-01-white-down.svg") no-repeat center/100%;
    position: absolute;
    top: 50%;
    right: var(--s3);
    transform: translate(0, -50%) rotate(0);
    transition: transform 0.3s;
}

.gnavi-menu-box__title__btn:hover {
    opacity: 0.6;
}

.gnavi-menu-box__title.is-open .gnavi-menu-box__title__btn::after {
    transform: translate(0, -50%) rotate(180deg);
}

.gnavi-menu-box__content {
    background: rgba(255, 255, 255, 0.1);
}

.gnavi-menu__item,
.gnavi-menu-sub__item {
    position: relative;
}

.gnavi-menu__item::before,
.gnavi-menu-sub__item::before {
    content: "└";
    color: #fff;
    position: absolute;
    top: var(--s2);
    left: var(--s3);
}

.gnavi-menu__link,
.gnavi-menu-sub__link {
    padding: 1.2rem var(--s7) 1.2rem var(--s6);
    display: block;
    color: #fff;
    font-weight: 700;
    line-height: 1.5;
    text-decoration: none;
    background: url("img/arrow-01-white-right.svg") no-repeat right var(--s3) center/2rem auto;
}

.gnavi-menu__link:hover,
.gnavi-menu-sub__link:hover {
    color: #fff;
    opacity: 0.6;
}

.gnavi-menu__item {
    border-bottom: 1px solid #fff;
}

.gnavi-menu-sub__item {
    border-top: 1px solid #fff;
}

.is-gnavi-open .gnavi-area {
    opacity: 1;
    transform: translateX(0);
}


/*
---------------------------------------------

    side navi

*/

.side-navi__item {
    border-bottom: 1px solid #80879A;
}

.side-navi__item+.side-navi__item {
    margin-top: var(--s3);
}

.side-navi__link {
    padding: 1.2rem var(--s4) 1.2rem var(--s1);
    background: #80879A url("img/arrow-01-white-right.svg") no-repeat center right var(--s1)/2rem auto;
    display: block;
    color: #fff;
    font-size: 1.6rem;
    text-decoration: none;
    line-height: 1.36;
}

.side-navi__link:hover {
    color: #fff;
    opacity: 0.5;
}

.side-navi-sub__item {
    border-top: 1px solid #80879A;
}

.side-navi-sub__link {
    padding: 1.2rem var(--s4) 1.2rem var(--s1);
    background: rgba(255, 255, 255, 0.54) url("img/arrow-01-gray-right.svg") no-repeat center right var(--s1)/2rem auto;
    display: block;
    font-size: 1.4rem;
    text-decoration: none;
    line-height: 1.36;
}

.side-navi-sub__link:hover {
    opacity: 0.5;
}


/*
---------------------------------------------

    page

*/

.page-top {
    width: var(--s9);
    height: var(--s9);
    border-radius: 10rem;
    opacity: 0;
    visibility: hidden;
    position: fixed;
    right: var(--s3);
    bottom: var(--s3);
    z-index: 10;
    transition: opacity 0.6s, visibility 0.6s;
}

.page-top__link {
    width: 100%;
    height: 100%;
    display: block;
}

.page-top__link:hover {
    opacity: 0.5;
}

.page-top.is-show {
    opacity: 1;
    visibility: visible;
}

.page-banner {
    width: 15.7rem;
    height: 18.7rem;
    background: #fff;
    box-shadow: 1px 0.4rem 1rem rgba(45, 151, 57, 0.41);
    opacity: 0;
    visibility: hidden;
    position: fixed;
    right: 0;
    bottom: 11.8rem;
    z-index: 10;
    transition: opacity 0.6s, visibility 0.6s;
}

.page-banner__link {
    width: 100%;
    height: 100%;
    padding: 11rem 1rem 1rem 2.1rem;
    display: block;
    background: url("img/banner-01.png") no-repeat center/100% 100%;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-decoration: none;
}

.page-banner__link:hover {
    color: #fff;
    opacity: 0.6;
}

.page-banner__em-02 {
    font-size: 2.3rem;
    line-height: 1.36;
}

.page-banner__more {
    margin-top: 0.4em;
    padding-right: 2rem;
    background: url("img/arrow-05-white-right.svg") no-repeat center right/1rem auto;
    display: inline-block;
    font-size: 1.3rem;
}

.page-banner.is-show {
    opacity: 1;
    visibility: visible;
}

.page-mask {
    width: 100%;
    height: 100%;
    background: rgba(49, 51, 57, 0.2);
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 25;
    transition: opacity 0.4s, visibility 0.4s;
}

.is-gnavi-open .page-mask {
    opacity: 1;
    visibility: visible;
}


/*
---------------------------------------------

    section

*/

.section-title-01 {
    margin-bottom: var(--s9);
    font-size: 5.8rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    line-height: 1.4;
}

.section-title-01__link {
    display: inline-block;
    text-decoration: none;
}

.section-title-01__link:hover {
    opacity: 0.5;
}

.section-title-01__link>*:last-child {
    margin-right: var(--s8);
}

.section-title-01__link>*:last-child::before {
    content: "";
    width: var(--s5);
    height: var(--s5);
    background: url("img/arrow-01-blue-right-large.svg") no-repeat center/100% auto;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(var(--s8), -50%);
}

.section-title-01__line-01 {
    display: inline-block;
    color: #0F3295;
    font-size: 3.6rem;
    line-height: 1.36;
}

.section-title-01__em-01 {
    padding: 0 0.1em;
    display: inline-block;
    color: #fff;
    font-size: 7.4rem;
    position: relative;
    z-index: 1;
}

.section-title-01__em-01::after {
    content: "";
    width: 0%;
    height: calc(100% - 0.1em);
    background: #000;
    position: absolute;
    top: calc(50% + 0.05em);
    left: 0;
    z-index: -1;
    transform: translate(0, -50%);
    transition: width 0.4s;
}

.section-title-01__em-01.is-animated::after {
    width: 100%;
}

.section-title-01__em-02 {
    padding: 0 0.1em;
    display: inline-block;
    font-size: 7.4rem;
    position: relative;
    z-index: 1;
    transform: translate(0, var(--s4));
}

.section-title-01__em-02::after {
    content: "";
    width: 0%;
    height: calc(100% - 0.1em);
    background: #fff;
    position: absolute;
    top: calc(50% + 0.05em);
    left: 0;
    z-index: -1;
    transform: translate(0, -50%);
    transition: width 0.4s 0.2s;
}

.section-title-01__em-02.is-animated::after {
    width: 100%;
}

.section-title-01--align-right {
    text-align: right;
}

.section-title-02 {
    padding-bottom: 16.8rem;
    font-size: 7rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    line-height: 1.36;
    position: relative;
    z-index: 1;
}

.section-title-02::after {
    content: "";
    height: 10.7rem;
    background: no-repeat center/contain;
    position: absolute;
    bottom: var(--s4);
    z-index: -1;
}

.section-title-02__link {
    display: inline-block;
    text-decoration: none;
}

.section-title-02__link:hover {
    opacity: 0.5;
}

.section-title-02__link>*:last-child {
    margin-right: var(--s8);
}

.section-title-02__link>*:last-child::before {
    content: "";
    width: var(--s5);
    height: var(--s5);
    background: url("img/arrow-01-blue-right-large.svg") no-repeat center/100% auto;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(var(--s8), -50%);
}

.section-title-02__small {
    display: inline-block;
    color: #0F3295;
    font-size: 3.6rem;
    line-height: 1.36;
}

.section-title-02__em-01 {
    display: inline-block;
    color: #fff;
    position: relative;
    z-index: 1;
}

.section-title-02__em-01::after {
    content: "";
    width: 0%;
    height: calc(100% - 0.3em);
    background: #000;
    position: absolute;
    top: calc(50% + 0.05em);
    left: 0;
    z-index: -1;
    transform: translate(0, -50%);
    transition: width 0.4s;
}

.section-title-02__em-01.is-animated::after {
    width: 100%;
}

.section-title-02--qa::after {
    width: 68.2rem;
    background-image: url("img/text-contents.svg");
    left: calc(40% + var(--s10));
}

.section-title-02--resources::after {
    width: 131.4rem;
    background-image: url("img/text-human-resources-01.svg");
    left: 0;
}


/*
---------------------------------------------

    index

*/

.index-box {
    width: 100%;
    max-width: 58rem;
    margin: var(--s5) auto;
    background: #F8F8F8 url("img/text-index.svg") no-repeat top left/22rem auto;
}

.index-box__label {
    height: var(--s10);
    padding: 0 var(--s5) 0 var(--s5);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 0.3em;
    cursor: pointer;
}

.index-box__content {
    margin: 0 auto;
    padding: 0 4rem var(--s5);
}

.index-box .chapter {
    counter-reset: number;
}

.index-box .chapter .chapter-h {
    line-height: 1.5;
}

.index-box .chapter .chapter-h a {
    text-decoration: none;
}

.index-box .chapter .chapter-h-two {
    padding: 0 0 0 1.8em;
    font-size: 100%;
    line-height: 1.5;
    font-weight: bold;
    position: relative;
    counter-increment: number;
}

.index-box .chapter .chapter-h-two::before {
    content: counter(number, decimal-leading-zero);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #0F3295;
    text-align: center;
    font-weight: 900;
    position: absolute;
    top: 0;
    left: 0;
}

.index-box .chapter .chapter-h-two+.chapter-h-two {
    margin-top: 1em;
}

.index-box .chapter .chapter-h-three+.chapter-h-two {
    margin-top: 1em;
}

.index-box .chapter .chapter-h-three {
    margin-top: var(--s1);
    padding: 0 0 0 var(--s6);
    font-size: 1.3rem;
    position: relative;
}

.index-box .chapter .chapter-h-three::before {
    content: "└";
    color: #7d7d7d;
    position: absolute;
    top: 0.1em;
    left: var(--s4);
}


/*
---------------------------------------------

    relation

*/

.relation-box {
    width: 100%;
    max-width: 58rem;
    margin: var(--s5) auto;
    background: #F8F8F8 url("img/text-links.svg") no-repeat top left/21.4rem auto;
}

.relation-box__label {
    height: var(--s10);
    padding: var(--s2) var(--s5);
    display: flex;
    align-items: center;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 0.3em;
}

.relation-box__content {
    margin: 0 auto;
    padding: 0 5rem var(--s3);
}

.relation-list__item+.relation-list__item {
    margin-top: 0.5em;
}

.relation-list__link {
    padding: 0 0 0 var(--s4);
    background: url("img/arrow-01-blue-right.svg") no-repeat top 0.4em left/2rem auto;
    display: inline-block;
    line-height: 2;
    text-decoration: none;
}

.relation-list__link:hover {
    opacity: 0.5;
}


/*
---------------------------------------------

    summary

*/

.summary-box-01 {
    margin: var(--s9) 0;
    display: flex;
    align-items: flex-start;
    gap: var(--s3);
}

.summary-box-01__label {
    padding: var(--s3) var(--s3) var(--s3) 0;
    flex-shrink: 0;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 0.3em;
    position: relative;
}

.summary-box-01__label::after {
    content: "";
    width: 100vw;
    height: 100%;
    background: #313339;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.summary-box-01__content {
    padding: var(--s1) 0;
    flex: 1;
}

.summary-box-02 {
    margin: var(--s9) 0;
    padding: var(--s9) var(--s4) var(--s5);
    background: url("img/text-summary.svg") no-repeat 0 0/37.2rem auto;
    position: relative;
}

.summary-box-02::before {
    content: "";
    width: 100%;
    height: calc(100% - var(--s4));
    background: linear-gradient(0deg, #E4F2F9, #D5EBF6);
    box-shadow: 0.2rem 0.8rem 1rem rgba(207, 219, 225, 0.8);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.summary-box-02__catch {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.5;
}

.summary-box-02>*:last-child {
    margin-bottom: 0;
}

.summary-box-02 .l-float {
    margin-top: 0;
    margin-bottom: 0;
}


/*
---------------------------------------------

    interview

*/

.interview-box-01 {
    margin: var(--s9) 0;
    padding: var(--s9) var(--s5) var(--s3) 40rem;
    background: url("img/text-interview.svg") no-repeat top right/40.9rem auto;
    color: #fff;
    position: relative;
}

.interview-box-01::before {
    content: "";
    width: calc(100% - var(--s10));
    height: calc(100% - 5.5rem);
    background: linear-gradient(-60deg, #8ED2BD, #4AB86B);
    box-shadow: 1px 0.4rem 1rem rgba(45, 151, 57, 0.41);
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.interview-box-01__thumb {
    width: 36.3rem;
    position: absolute;
    top: var(--s3);
    left: 0;
}

.interview-box-01__thumb::before {
    content: "";
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.interview-box-01__catch {
    font-size: 2.4rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    line-height: 1.5;
}

.interview-box-01>*:last-child {
    margin-bottom: 0;
}

.interview-box-01 .l-float {
    margin-top: 0;
    margin-bottom: 0;
}


/*
---------------------------------------------

    profile

*/

.profile-box-01 {
    margin: var(--s9) 0;
    display: flex;
    align-items:flex-start;
}

.profile-box-01__thumb {
    width: 28.7rem;
    flex-shrink: 0;
    position: relative;
	margin-top: -3rem;
}

.profile-box-01__thumb::before {
    content: "";
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.profile-box-01__content {
    padding: var(--s6) var(--s3) var(--s3);
    flex: 1;
    position: relative;
}

.profile-box-01__content::after {
    content: "";
   width: calc(100% - -7rem);
    height: 100%;
    background: linear-gradient(-60deg, #D9F0E9, #C1E7CD);
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.profile-box-01__label {
    padding: var(--s1) var(--s3);
    background: #329851;
    color: #fff;
    font-weight: 900;
    letter-spacing: 0.3em;
    line-height: 1.5;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(0, 0);
}

.profile-box-01__label>* {
    display: inline;
}

.profile-box-01__label>*:first-child {
    margin-right: 0.7em;
    padding-right: 0.7em;
    position: relative;
}

.profile-box-01__label>*:first-child::after {
    content: "";
    width: 1px;
    height: 1em;
    background: #fff;
    position: absolute;
    bottom: 0.15em;
    right: 0;
}

.profile-box-02 {
    margin: var(--s9) 0;
    display: flex;
}

.profile-box-02__side {
    width: 36.3rem;
	margin-top: -2rem;
}

.profile-box-02__main {
    padding: 0 var(--s4);
    flex: 1;
    position: relative;
}

.profile-box-02__main::after {
    content: "";
    width: calc(100% - -7rem);
    height:100%;
    background: linear-gradient(-60deg, #DDE4F9, #B7CAFF);
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.profile-box-02__thumb {
    width: 100%;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.profile-box-02__thumb::before {
    content: "";
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.profile-box-02__label {
    padding: var(--s1) var(--s3) var(--s1) 0;
    display: inline-block;
    color: #fff;
    font-weight: 900;
    letter-spacing: 0.3em;
    line-height: 2;
    position: relative;
    z-index: 1;
}

.profile-box-02__label::after {
    content: "";
    width: calc(100% + var(--s5));
    height: 100%;
    background: #000;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.profile-box-02__name {
    margin: var(--s2) 0;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.5;
    letter-spacing: 0.1em;
}

.profile-box-02__text {
    margin: var(--s2) 0;
}


/*
---------------------------------------------

    schedule

*/

.schedule-box-01 {
    margin: var(--s5) 0 var(--s9);
}

.schedule-box-01__label {
    margin-bottom: var(--s4);
    padding: 0 var(--s3) var(--s2);
    border-bottom: 1px solid #1A87B9;
    font-size: 2.4rem;
    font-weight: 900;
}

.schedule-list__item {
    line-height: 1.5;
    display: flex;
    gap: var(--s2);
    position: relative;
}

.schedule-list__item::before {
    content: "";
    width: 1rem;
    height: 1rem;
    background: #1A87B9;
    border-radius: 10rem;
    position: absolute;
    top: 0.6em;
    left: 0;
    z-index: 1;
}

.schedule-list__item::after {
    content: "";
    width: 1px;
    height: calc(100% - var(--s2));
    background: #7D7D7D;
    position: absolute;
    bottom: calc(var(--s1) * -1);
    left: 0.5rem;
    z-index: -2;
    transform: translate(-50%, 0);
}

.schedule-list__item:last-child::after {
    display: none;
}

.schedule-list__item+.schedule-list__item {
    margin-top: var(--s1);
}

.schedule-list__time {
    padding-left: 2rem;
    flex-shrink: 0;
    color: #0F3295;
    font-size: 1.8rem;
    font-weight: 900;
}

.schedule-list__text {
    padding: 0.2em 0;
}


/*
---------------------------------------------

    qa

*/

.qa-box {
    margin: var(--s8) 0;
}

.qa-box__label {
    margin-bottom: var(--s3);
    padding-left: var(--s6);
    color: #0F3295;
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.5;
    position: relative;
}

.qa-box__label::before {
    content: "Q.";
    color: #1A87B9;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    opacity: 0.2;
    position: absolute;
    top: -0.2em;
    left: 0;
}

.qa-box__content {
    display: flow-root;
}

.qa-box__thumb {
    width: 10rem;
    height: 10rem;
    margin: var(--s1) var(--s2) var(--s1) 0;
    float: left;
    position: relative;
}

.qa-box__thumb::before {
    content: "";
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border-radius: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.qa-box__text {
    position: relative;
}

.qa-box__text::before {
    content: "A.";
    margin-bottom: var(--s-2);
    display: block;
    color: #1A87B9;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    opacity: 0.2;
}


/*
---------------------------------------------

    host

*/

.host-box-01 {
    margin: var(--s9) 0;
    padding: 0 var(--s4) var(--s6) 0;
    color: #fff;
    position: relative;
}

.host-box-01::after {
    content: "";
    width: calc(100% + 50vw - 50%);
    height: 100%;
    background: url("img/host-box-bg-01.jpg") no-repeat right bottom/cover;
    box-shadow: 0.3rem 0.8rem 1.5rem rgba(70, 103, 207, 0.4);
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.host-box-01__label {
    margin-bottom: var(--s6);
    padding: var(--s2) var(--s9) var(--s2) 0;
    display: inline-block;
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 0.5em;
    position: relative;
    z-index: 1;
}

.host-box-01__label::after {
    content: "";
    width: 50vw;
    height: 100%;
    background: #000;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.host-box-01__name {
    margin-bottom: var(--s3);
    font-size: 2.6rem;
    font-weight: 900;
    letter-spacing: 0.07em;
}

.host-box-01__name__small {
    padding-right: var(--s2);
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.1em;
}

.host-box-01__thumb {
    position: relative;
}

.host-box-01__thumb::before {
    content: "";
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.host-box-01__catch {
    margin-bottom: var(--s2);
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.5;
}

.host-box-01__marker {
    background: linear-gradient(transparent 75%, #42B37C 75%);
}

.host-box-01 .btn-link {
    margin-bottom: 0;
}


/*
---------------------------------------------

    toggle sp

*/

.toggle-sp-content {
    display: block;
}


/*
---------------------------------------------

    toggle

*/

.toggle-btn {
    margin: var(--s3) auto;
    padding: var(--s3) var(--s7) var(--s3) var(--s3);
    background: #000;
    border: 0.2rem solid #000;
    color: #FFF;
    line-height: 1.5;
    position: relative;
    transition: opacity 0.3s;
    cursor: pointer;
}

.toggle-btn::before {
    content: "";
    width: var(--s3);
    height: 0.2rem;
    background: #fff;
    position: absolute;
    top: 50%;
    right: var(--s3);
    transform: translate(0, -50%);
}

.toggle-btn::after {
    content: "";
    width: 0.2rem;
    height: var(--s3);
    background: #fff;
    position: absolute;
    top: 50%;
    right: 3.5rem;
    transform: translate(0, -50%);
    transition: transform 0.3s;
}

.toggle-btn.is-open::after {
    transform: translate(0, -50%) rotate(270deg);
}

.toggle-content {
    display: none;
}


/*
---------------------------------------------

    top

*/

.bg-illust-01 {
    width: 120rem;
    height: 100%;
    background: url("img/illust-01.png") no-repeat left top/100% auto;
    opacity: 0.28;
    position: fixed;
    top: var(--s1);
    left: 53%;
    transform: translate(-54%, 0);
    z-index: -1;
    transition: background-size 0.6s, opacity 0.6s, top 0.6s;
}

.bg-illust-01.is-animated {
    background-size: 60.2rem auto;
    opacity: 0.77;
    top: 96rem;
    left: 47%;
    position: absolute;
}

.mv-section {
    padding: 13rem 0 8.4rem;
}

.mv-title {
    margin-bottom: var(--s5);
    font-size: 8.4rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    line-height: 1.3;
}

.mv-title__line-01 {
    color: #0F3295;
    font-size: 3.6rem;
    text-shadow: #fff 1px 0 10px;
}

.mv-title__line-02 {
    color: #fff;
    position: relative;
}

.mv-title__line-02::after {
    content: "";
    width: 0%;
    height: calc(100% - 0.3em);
    background: #000;
    position: absolute;
    top: calc(50% + 0.05em);
    left: 0;
    z-index: -1;
    transform: translate(0, -50%);
    transition: width 0.6s;
}

.mv-title__line-02.is-animated::after {
    width: 100%;
}

.mv-title__small {
    font-size: 7.4rem;
}

.mv-text {
    font-size: 1.8rem;
    text-shadow: #fff 1px 0 10px;
}

.mv-note {
    color: #515151;
    font-size: 1.2rem;
}

.page-index {
    background: #DBE6EC;
}

.page-index-list {
    max-width: 110rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.page-index-list__item {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    line-height: 1.5;
    overflow: hidden;
    position: relative;
}

.page-index-list__item::before {
    content: "";
    width: var(--s4);
    height: var(--s4);
    background: #525A71;
    border-radius: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.page-index-list__item:nth-child(2)::before {
    background-color: #345BCB;
}

.page-index-list__item:nth-child(3)::before {
    background-color: #3A9BC8;
}

.page-index-list__link {
    padding: var(--s3) 0;
    display: block;
    text-decoration: none;
}

.page-index-list__link:hover {
    opacity: 0.5;
}

.page-index-list__inner {
    padding-left: var(--s3);
    background: url("img/arrow-04-black-down.svg") no-repeat center left var(--s-2)/0.92rem auto;
}

.introduction-section {
    padding: var(--s8) 0;
}

.introduction-title {
    margin-bottom: 30rem;
    font-size: 7rem;
    font-weight: 900;
    text-align: right;
    letter-spacing: 0.07em;
    line-height: 1.36;
    opacity: 0;
    transform: translate(0, var(--s8));
    transition: opacity 1s, transform 1s;
}

.introduction-title__line {
    background: linear-gradient(80deg, #0F3295 0%, #31A5D9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.introduction-title__em {
    font-size: 8.4rem;
}

.introduction-title__small {
    font-size: 6rem;
}

.introduction-title.is-animated {
    opacity: 1;
    transform: translate(0, 0);
}

.introduction-text {
    font-size: 1.8rem;
    background: linear-gradient(360deg, rgb(255 255 255), rgb(255 255 255 / 0%));
    font-weight: 900;
    padding: 1rem;
}

.introduction-text__em {
    color: #0F3295;
    font-size: 2.6rem;
}

.about-section {
    padding: 19.7rem 0 7rem;
    background-image: url("img/about-bg-01.png"), linear-gradient(0deg, #415D98, #191919);
    background-repeat: no-repeat;
    background-position: top var(--s1) center, 0 0;
    background-size: 135rem auto, cover;
    position: relative;
    z-index: 1;
}

.about-section::after {
    content: "";
    width: 52rem;
    height: 52rem;
    background: url(img/about-bg-02.png) no-repeat 0 0/contain;
    position: absolute;
    top: 65rem;
    left: 65%;
    z-index: -1;
    transform: translate(calc(var(--s10) * -1), 0);
}

.about-section__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-title {
    width: 100%;
    max-width: 76.6rem;
    margin: 0 auto 2rem;
    padding: var(--s5) 0 var(--s7);
    background: linear-gradient(0deg, #111D33, #14275D);
    display: inline-block;
    color: #fff;
    font-size: 2.2rem;
    font-weight: 900;
    text-align: center;
    letter-spacing: 0.07em;
    line-height: 2.73;
    position: relative;
}

.about-title__em {
    background: linear-gradient(transparent 70%, #42B37C 70%);
}

.unit_01 {
    margin: 0 auto 12rem;
    opacity: 0;
    transform: translate(0, 0);
    transition: opacity 1s, transform 1s;
}

.unit_01.is-animated {
    opacity: 1;
    transform: translate(0, var(--s8));
}

.unit_02 {
    margin: 5rem auto;
    text-align: center;
    transform: translate(0, 0);
    transition: opacity 0.7s, transform 0.7s;
}

.unit_02.is-animated {
    opacity: 1;
    transform: translate(0, var(--s8));
}

.about-text {
    color: #fff;
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    position: relative;
    z-index: 2;
    line-height: 1.7;
}

.about-em {
    margin: var(--s6) 0 5rem;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.about-em__en {
    width: 60.7rem;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    transform: translate(9.6rem, -98%);
}

.about-em__text {
    color: #fff;
    font-size: 6.6rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    line-height: 1.36;
}

.about-em__text::after {
    content: "";
    width: 0%;
    height: 100%;
    background: linear-gradient(80deg, #0F3295 0%, #31A5D9 100%);
    opacity: 0.71;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: -1;
    transform: translate(0, -50%);
    transition: width 0.6s;
}

.about-em__text.is-animated::after {
    width: 100%;
}

.skill-section {
    padding: 7rem 0 0;
    background: url("img/skill-bg-01.png") no-repeat top center/100% 100%;
}

.skill-lead {
    text-align: right;
}

.skill-block-wrapper {
    margin: 10rem 0 6rem;
    position: relative;
}

.skill-block-wrapper::before {
    content: "";
    width: 66.5rem;
    height: 15.6rem;
    background: url("img/text-skills.svg") no-repeat 0 0/contain;
    position: absolute;
    top: 0;
    right: calc(50% + var(--s2));
    transform: translate(0, -78%);
}

.skill-block {
    padding: var(--s6) 0 var(--s8);
    position: relative;
    z-index: 1;
}

.skill-block::after {
    content: "";
    width: 100vw;
    height: 100%;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.19) 50%, #E8F1FF);
    opacity: 0.41;
    position: absolute;
    top: 0;
    right: calc(var(--s4) * -1);
    z-index: -2;
}

.skill-block__title {
    color: #0F3295;
    font-size: 4.8rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    line-height: 1.5;
}

.skill-block__photo {
    width: calc(100% + 21.5rem);
    margin-left: -15.5rem;
}

.skill-block__copy {
    margin: 0 0 auto;
    padding: var(--s1) 0 0;
    background: #000;
    display: inline-block;
    color: #fff;
    font-family: "Noto Sans JP Vertical", sans-serif;
    font-size: 6.4rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.2em;
    text-orientation: upright;
    writing-mode: vertical-rl;
    z-index: 1;
}

.skill-block__text-area {
    padding-left: var(--s4);
}

.skill-block__en {
    width: calc(100% + 12.5rem);
    margin: calc(var(--s4) * -1) -21.5rem var(--s5) 0;
}

.skill-block__en__img {
    width: 100%;
    height: 25rem;
}

.skill-block+.skill-block {
    margin-top: var(--s7);
}

.skill-block.l-column-areas-01--row-reverse::after {
    left: calc(var(--s4) * -1);
    right: auto;
}

.skill-block.l-column-areas-01--row-reverse .skill-block__title {
    text-align: right;
}

.skill-block.l-column-areas-01--row-reverse .skill-block__photo {
    margin-left: -8rem;
    margin-left: -6rem;
    width: calc(100% + 18.5rem);
}

.skill-block.l-column-areas-01--row-reverse .skill-block__text-area {
    padding-left: 0;
    padding-right: var(--s4);
}

.skill-block.l-column-areas-01--row-reverse .skill-block__en {
    margin-left: -12.5rem;
}

.skill-summary {
    padding: 0 var(--s6) 10rem;
    background-image: url("img/text-dx-engineer.svg");
    background-repeat: no-repeat;
    background-position: bottom var(--s2) right var(--s6);
    background-size: 77.8rem auto;
}

.skill-summary__text {
    font-size: 4.2rem;
    font-weight: 900;
    line-height: 1.67;
    letter-spacing: 0.07em;
}

.skill-summary__text__em-01 {
    margin-top: var(--s1);
    background-image: linear-gradient(#fff, #fff);
    background-size: 0 82%;
    background-position: top 0.2em left;
    background-repeat: no-repeat;
    font-size: 6.2rem;
    transition: background-size 0.6s;
}

.skill-summary__text__em-01.is-animated {
    background-size: 100% 82%;
}

.skill-summary__text__em-02 {
    font-size: 7.5rem;
    background-image: linear-gradient(#fff, #fff);
    background-size: 0 82%;
    background-position: top 0.2em left;
    background-repeat: no-repeat;
    font-size: 6.2rem;
    transition: background-size 0.6s;
}

.skill-summary__text__em-02.is-animated {
    background-size: 100% 82%;
}

.host-bg-01 {
    background-image: url("img/host-bg-01.png"), linear-gradient(0deg, #F8F9FF 0%, #DEE6FA 50%, #C0CAE8 80%, #1941AE 100%);
    background-repeat: no-repeat;
    background-position: top right, 0 0;
    background-size: 134.7rem auto, 100% 100%;
}

.host-bg-02 {
    background: linear-gradient(0deg, #9DCBE1 0%, #DDEDF6 50%, #E7EFFA 100%);
}

.host-bg-03 {
    background-image: url("img/host-bg-02-top.png"), url("img/host-bg-02-bottom.png"), url("img/host-bg-03.png"), linear-gradient(0deg, #F4F6FE 0%, #EEF2FF 50%, #E9EFFE 80%, #FFFFFF 100%);
    background-repeat: no-repeat;
    background-position: top left, bottom right, top right, 0 0;
    background-size: 99rem auto, 99rem auto, 69.6rem auto, 100% 100%;
    overflow: hidden;
}

.host-label {
    margin-bottom: var(--s9);
    padding: var(--s2) var(--s9) var(--s2) 0;
    display: inline-block;
    color: #fff;
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 0.5em;
    position: relative;
    z-index: 1;
}

.host-label::after {
    content: "";
    width: 50vw;
    height: 100%;
    background: #000;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.host-title {
    margin-bottom: var(--s9);
    color: #fff;
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    line-height: 1.5;
}

.host-title__em {
    color: #000;
    font-size: 6rem;
    position: relative;
    z-index: 1;
}

.host-title__em::after {
    content: "";
    width: 0%;
    height: calc(100% - 0.3em);
    background: #fff;
    position: absolute;
    top: calc(50% + 0.05em);
    left: 0;
    z-index: -1;
    transform: translate(0, -50%);
    transition: width 0.6s;
}

.host-title__em.is-animated::after {
    width: 100%;
}

.host-box-02__photo {
    margin-top: var(--s4);
    position: relative;
    z-index: 2;
}

.host-box-02__photo::before {
    content: "";
    width: 100%;
    height: auto;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.host-box-02__title {
    padding: var(--s3) 0 var(--s3) var(--s4);
    color: #fff;
    font-size: 3.2rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.host-box-02__title::after {
    content: "";
    width: calc(50vw + var(--s5));
    height: 100%;
    background: linear-gradient(80deg, #0F3295 0%, #31A5D9 100%);
    position: absolute;
    top: 0;
    left: calc(var(--s5) * -1);
    z-index: -1;
}

.host-box-02__title__en {
    color: #0F3295;
    font-size: 3rem;
    letter-spacing: 0.1em;
    line-height: 1;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(0, -100%);
}

.host-box-02__text-area {
    padding: var(--s4) 0 var(--s4) var(--s4);
    position: relative;
    z-index: 1;
}

.host-box-02__text-area::after {
    content: "";
    width: calc(50vw + var(--s5));
    height: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    left: calc(var(--s5) * -1);
    z-index: -1;
}

.host-features {
    padding: 18rem 0 0;
}

.features-title {
    margin: 0 0 var(--s9);
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    line-height: 1.5;
    text-align: center;
    position: relative;
    z-index: 1;
}

.features-title__em {
    font-size: 5rem;
    position: relative;
}

.features-title__em::before {
    content: "";
    width: 96rem;
    height: 15.6rem;
    background: url("img/text-features.svg") no-repeat center/contain;
    position: absolute;
    bottom: 0;
    right: -5rem;
    z-index: -2;
}

.features-title__em::after {
    content: "";
    width: 0%;
    height: calc(100% - 0.3em);
    background: #fff;
    position: absolute;
    top: calc(50% + 0.05em);
    left: 0;
    z-index: -1;
    transform: translate(0, -50%);
    transition: width 0.6s;
}

.features-title__em.is-animated::after {
    width: 100%;
}

.features-card-wrapper {
    padding: 0 0 var(--s6);
    position: relative;
    z-index: 1;
}

.features-card-wrapper::after {
    content: "";
    width: 100vw;
    height: calc(100% - var(--s10));
    background: linear-gradient(0deg, #fff, rgba(255, 255, 255, 0.17));
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: -1;
    transform: translate(-50%, 0);
}

.features-card__title {
    margin-bottom: var(--s4);
    color: #0F3295;
    font-size: 3.2rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    line-height: 1.5;
}

.features-card__thumb {
    width: 86%;
    margin: 0 auto var(--s2);
    position: relative;
    z-index: 1;
}

.features-card__thumb::before {
    content: "";
    width: 100%;
    height: 15.6rem;
    background: no-repeat top right/auto 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    transform: translate(0, -99%);
}

.features-card--01 .features-card__thumb::before {
    background-image: url("img/number-01.svg");
}

.features-card--02 .features-card__thumb::before {
    background-image: url("img/number-02.svg");
}

.features-card:nth-child(2n) {
    margin-top: 9.6rem;
}

.host-career {
    margin: var(--s10) 0 0;
    position: relative;
    z-index: 2;
}

.career-title-wrapper {
    margin-bottom: var(--s5);
    position: relative;
    z-index: 1;
}

.career-title-wrapper::after {
    content: "";
    width: 93.7rem;
    height: 19.9rem;
    background: url("img/text-career.svg") no-repeat center/contain;
    position: absolute;
    top: 50%;
    left: 40%;
    z-index: -1;
    transform: translate(-17.5rem, -50%);
}

.career-title {
    background: linear-gradient(80deg, #0F3295 0%, #31A5D9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-size: 4.6rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    line-height: 1.36;
    opacity: 0;
    transform: translate(0, var(--s8));
    transition: opacity 1s, transform 1s;
}

.career-title__em {
    font-size: 5.6rem;
}

.career-title.is-animated {
    opacity: 1;
    transform: translate(0, 0);
}

.career-note {
    font-size: 1.8rem;
    line-height: 1.5;
}

.career-card-wrapper {
    margin: var(--s4) 0;
}

.career-card {
    padding: var(--s5) var(--s6) var(--s5) 0;
    position: relative;
    z-index: 1;
}

.career-card::after {
    content: "";
    width: 50vw;
    height: 100%;
    background: #fff;
    border-right: 1px solid #000;
    border-bottom: 0.2rem solid #000;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.career-card__header {
    padding-right: var(--s5);
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.career-card__header>.icon-plus {
    position: absolute;
    top: 2.8rem;
    right: 0;
}

.career-card__content {
    padding: var(--s4) var(--s5) 0 0;
}

.career-card__title {
    color: #0F3295;
    font-size: 2.6rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    line-height: 1.5;
}

.career-card__en {
    margin-top: var(--s1);
    color: #A3B4DC;
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    line-height: 1.5;
}

.career-card:nth-child(2n) {
    padding-right: 0;
    padding-left: var(--s6);
    border-right: none;
    border-left: 1px solid #000;
}

.career-card:nth-child(2n)::after {
    left: 0;
    right: auto;
}

.career-card:nth-child(1)::after,
.career-card:nth-child(2)::after {
    border-top: 0.2rem solid #000;
}

.host-experience {
    padding: 7rem 0 var(--s10);
    /* background: url("img/arrow-05-blue-down.svg") no-repeat top var(--s5) center/6.7rem auto; */
}

.host-experience>*:last-child {
    margin-top: 7rem;
    margin-bottom: 0;
	z-index: 1;
}

.experience-text {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 2.4;
    position: relative;
    z-index: 1;
}

.experience-text__em {
    font-size: 2.6rem;
}

.experience-text::before {
    content: "";
    width: 107.1rem;
    height: 34.2rem;
    background: url("img/text-engineer-experience.svg") no-repeat center/contain;
    position: absolute;
    top: 50%;
    right: 40%;
    z-index: -2;
    transform: translate(31.7rem, -50%);
}

.experience-text::after {
    content: "";
    width: 66.5rem;
    height: 83.3rem;
    background: url("img/host-experience-bg-01.png") no-repeat center/contain;
    position: absolute;
    top: 75%;
    left: 50%;
    z-index: -1;
    transform: translate(0, -50%);
}

.host-voice {
    padding: var(--s8) 0 10rem;
}

.voice-card-wrapper {
    margin-top: 7rem;
    padding-top: 12rem;
    position: relative;
    z-index: 1;
}

.voice-card-wrapper::before {
    content: "";
    width: 56.9rem;
    height: 15.6rem;
    background: url("img/text-voice.svg") no-repeat center/contain;
    position: absolute;
    top: calc(var(--s6) * -1);
    right: calc(var(--s9) * -1);
    z-index: -1;
}

.voice-card-wrapper::after {
    content: "";
    width: 100vw;
    height: 48%;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0.44) 50%, #fff 100%);
    opacity: 0.63;
    position: absolute;
    left: 0;
    bottom: var(--s7);
    z-index: -1;
}

.voice-card-wrapper.slick-slider .slick-list {
    overflow: visible;
}

.voice-card-wrapper.slick-initialized .slick-slide.voice-card {
    display: flex !important;
}

.voice-card-wrapper .slick-prev,
.voice-card-wrapper .slick-next {
    width: 6.8rem;
    height: 6.8rem;
    background: no-repeat center/contain;
    color: transparent;
    position: absolute;
    top: 0;
    transition: opacity 0.5s;
}

.voice-card-wrapper .slick-prev:hover,
.voice-card-wrapper .slick-next:hover {
    opacity: 0.5;
}

.voice-card-wrapper .slick-prev {
    background-image: url("img/arrow-06-blue-left.svg");
    left: 0;
}

.voice-card-wrapper .slick-next {
    background-image: url("img/arrow-06-blue-right.svg");
    left: 10rem;
}

.voice-card {
    width: 43rem;
    margin-right: var(--s8);
    display: flex;
    align-items: flex-start;
}

.voice-card__title {
    color: #fff;
    font-family: "Noto Sans JP Vertical", sans-serif;
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1.4;
    letter-spacing: 0.1em;
    text-orientation: upright;
    writing-mode: vertical-rl;
}

.voice-card__title__line {
    padding: var(--s1) 0;
    background: #000;
    display: inline-block;
}

.voice-card__content {
    flex: 1;
}

.voice-card__thumb {
    margin: var(--s2) var(--s4) 0 0;
    position: relative;
    z-index: 1;
}

.voice-card__thumb::before {
    content: "";
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.voice-card__name {
    margin: 0 var(--s4) 0 0;
    padding: var(--s2) var(--s1);
    color: #0F3295;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 0.3em;
    line-height: 1.5;
    text-align: center;
}

.voice-card__name__label {
    font-size: 1.6rem;
}

.voice-card__name>* {
    display: inline;
}

.voice-card__name>*:first-child {
    margin-right: 0.7em;
    padding-right: 0.7em;
    position: relative;
}

.voice-card__name>*:first-child::after {
    content: "";
    width: 1px;
    height: 1em;
    background: #fff;
    position: absolute;
    bottom: 0.15em;
    right: 0;
}

.voice-card .btn-internal {
    margin: 0 0 0 var(--s1);
}

.host-attractiveness {
    padding: 10rem 0 0;
}

.attractiveness-card-wrapper {
    padding-top: 12rem;
    position: relative;
    z-index: 1;
}

.attractiveness-card-wrapper::before {
    content: "";
    width: 123rem;
    height: 11.4rem;
    background: url("img/text-attractiveness.svg") no-repeat center/contain;
    position: absolute;
    top: 0;
    right: -21rem;
    z-index: -1;
}

.attractiveness-card {
    padding: var(--s5) 0;
}

.attractiveness-card__title {
    color: #0F3295;
    font-size: 3.6rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    line-height: 1.36;
    position: relative;
    z-index: 1;
}

.attractiveness-card__title::before {
    content: "";
    width: 100%;
    height: 14.2rem;
    background: no-repeat center right/auto 100%;
    position: absolute;
    bottom: calc(var(--s2) * -1);
    right: var(--s1);
    z-index: -1;
}

.attractiveness-card__photo {
    position: relative;
    z-index: 1;
}

.attractiveness-card__photo::after {
    content: "";
    width: 100vw;
    height: 26rem;
    background: linear-gradient(0deg, rgba(39, 76, 179, 0.03), rgba(77, 164, 204, 0.18));
    position: absolute;
    bottom: calc(var(--s5) * -1);
    right: 50%;
    z-index: -1;
}

.attractiveness-card+.attractiveness-card {
    margin-top: var(--s5);
}

.attractiveness-card--01 .attractiveness-card__title::before {
    background-image: url("img/number-01.svg");
}

.attractiveness-card--02 .attractiveness-card__title::before {
    background-image: url("img/number-02.svg");
}

.attractiveness-card--03 .attractiveness-card__title::before {
    background-image: url("img/number-03.svg");
}

.l-column-areas-03--row-reverse .attractiveness-card__photo::after {
    right: auto;
    left: 50%;
}

.host-example {
    padding: 0 0 12rem;
}

.example-title {
    margin: var(--s10) 0 var(--s7);
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    line-height: 1.5;
    text-align: center;
    position: relative;
    z-index: 1;
}

.example-title::before {
    content: "";
    width: 60rem;
    height: 10.5rem;
    background: url("img/text-example.svg") no-repeat center/contain;
    position: absolute;
    bottom: 0;
    right: 40%;
    z-index: -2;
    transform: translate(-16rem, 0);
}

.example-title__em {
    font-size: 5rem;
    position: relative;
}

.example-title__em::after {
    content: "";
    width: 0%;
    height: calc(100% - 0.3em);
    background: #fff;
    position: absolute;
    top: calc(50% + 0.05em);
    left: 0;
    z-index: -1;
    transform: translate(0, -50%);
    transition: width 0.6s;
}

.example-title__em.is-animated::after {
    width: 100%;
}

.example-tab-btn-wrapper {
    display: none;
}

.example-card-wrapper {
    width: calc(100% + var(--s6));
    margin-left: calc(var(--s3) * -1);
    margin-right: calc(var(--s3) * -1);
    padding-bottom: calc(var(--s9) * 2);
    display: flex;
    gap: var(--s4);
    align-items: flex-start;
}

.example-card {
    width: calc((100% - var(--s4) * 2) / 3);
    padding: 0 var(--s3);
    position: relative;
    z-index: 1;
}

.example-card::after {
    content: "";
    width: 100%;
    height: calc(100% - var(--s10));
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.example-card__thumb {
    margin-bottom: var(--s4);
}

.example-card__img {
    border: 1px solid #B7B7B7;
}

.example-card:nth-child(3n+2) {
    transform: translateY(var(--s9));
}

.example-card:nth-child(3n+3) {
    transform: translateY(calc(var(--s9) * 2));
}

.example-summary {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.example-summary__label {
    padding: var(--s-2) var(--s3) var(--s-2) 0;
    color: #fff;
    font-weight: 900;
    letter-spacing: 0.3em;
    line-height: 1.36;
    position: relative;
    z-index: 2;
}

.example-summary__label::after {
    content: "";
    width: calc(100% + var(--s3));
    height: 100%;
    background: #000;
    position: absolute;
    bottom: 0;
    left: calc(var(--s3) * -1);
    z-index: -1;
}

.example-summary__content {
    padding: var(--s2) 0 var(--s3);
}

.example-summary__copy {
    margin-bottom: var(--s1);
    color: #0F3295;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    line-height: 1.5;
}

.example-summary--answer {
    margin-top: var(--s8);
    position: relative;
}

.example-summary--answer::before {
    content: "";
    width: 4.2rem;
    height: 3.6rem;
    background: url("img/arrow-05-gray-down.svg") no-repeat center/contain;
    position: absolute;
    top: calc(var(--s8) * -1);
    left: 50%;
    transform: translate(-50%, 0);
}

.example-summary--answer .example-summary__content {
    position: relative;
    z-index: 1;
}

.example-summary--answer .example-summary__content::after {
    content: "";
    width: calc(100% + var(--s6));
    height: calc(100% + var(--s2));
    background: #E3F2F9;
    position: absolute;
    bottom: 0;
    left: calc(var(--s3) * -1);
    z-index: -1;
}

.example-summary--answer .example-summary__copy {
    color: #1A87B9;
}

.host-box-03 {
    margin: 0 0 var(--s9);
    padding: var(--s7) var(--s5) var(--s7) 0;
    color: #fff;
    position: relative;
    z-index: 1;
}

.host-box-03::after {
    content: "";
    width: calc(100% + 50vw - 50% + var(--s4));
    height: 100%;
    background: url("img/host-box-bg-02.jpg") no-repeat right bottom/cover;
    position: absolute;
    top: 0;
    right: calc(var(--s4) * -1);
    z-index: -1;
}

.host-box-03__title {
    margin-bottom: var(--s7);
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    line-height: 1.5;
}

.host-box-03__title__em-01 {
    margin-right: 0.2em;
    color: #000;
    font-size: 5rem;
    position: relative;
    z-index: 1;
}

.host-box-03__title__em-01::after {
    content: "";
    width: 0%;
    height: calc(100% - 0.3em);
    background: #fff;
    position: absolute;
    top: calc(50% + 0.05em);
    left: 0;
    z-index: -1;
    transform: translate(0, -50%);
    transition: width 0.6s;
}

.host-box-03__title__em-01.is-animated::after {
    width: 100%;
}

.host-box-03__title__em-02 {
    font-size: 5rem;
}

.host-box-03__company {
    margin: 0 0 var(--s1);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    line-height: 1.5;
}

.host-box-03__name {
    margin-bottom: var(--s4);
    padding: 2rem 0;
    display: flex;
    align-items: center;
    gap: var(--s9);
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: 0.3em;
    position: relative;
    z-index: 1;
}

.host-box-03__name::after {
    content: "";
    width: calc(100% + var(--s6));
    height: 100%;
    background: #000;
    position: absolute;
    top: calc(50% + 0.05em);
    right: 0;
    z-index: -1;
    transform: translate(0, -50%);
}

.host-box-03__name__small {
    font-size: 1.7rem;
}

.host-box-03__thumb {
    position: relative;
}

.host-box-03__thumb::before {
    content: "";
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.host-box-03__catch {
    margin-bottom: var(--s4);
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.5;
    letter-spacing: 0.1em;
}

.host-box-03__marker {
    background: linear-gradient(transparent 75%, #42B37C 75%);
}

.host-box-03 .btn-web {
    margin: var(--s5) 0 var(--s3);
}

.host-box-03 .btn-web a {
    margin-right: 0;
}

.host-box-03 .btn-link {
    margin-bottom: 0;
}

.qa-section {
    padding: var(--s8) 0 0;
    background: #fff url("img/qa-bg-01.png") no-repeat top left/153rem auto;
    overflow: hidden;
}

.qa-card-wrapper {
    border-top: 0.2rem solid #000;
    background: #fff;
}

.qa-card {
    padding: var(--s4) var(--s5) var(--s4) calc(50vw - 55rem);
    border-right: 0.1rem solid #000;
    border-bottom: 0.2rem solid #000;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    grid-gap: 0;
    align-items: flex-start;
    text-decoration: none;
}

.qa-card:hover {
    opacity: 0.5;
}

.qa-card__label {
    margin-bottom: var(--s2);
    color: #A3B4DC;
    font-weight: 900;
    letter-spacing: 0.07em;
}

.qa-card__title {
    margin-bottom: var(--s4);
    padding-right: var(--s6);
    background: url("img/arrow-01-blue-right-large.svg") no-repeat center right/var(--s5) auto;
    color: #0F3295;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.36;
    letter-spacing: 0.07em;
}

.qa-card__text {
    padding: 0 var(--s8) 0 var(--s5);
    position: relative;
}

.qa-card__text::before {
    content: "A.";
    color: #D3EBF6;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    position: absolute;
    top: -0.1em;
    left: 0;
}

.qa-card:nth-child(even) {
    padding: var(--s4) calc(50vw - 55rem) var(--s4) var(--s5);
    border-right: none;
    border-left: 0.1rem solid #000;
}

.resources-section {
    padding: 16.8rem 0 13.6rem;
    background: #fff url("img/resources-bg-01.png") no-repeat top right/115.9rem auto;
    overflow: hidden;
}

.resources-card-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem var(--s2);
}

.resources-card__link {
    height: 100%;
    background: no-repeat center/cover;
    display: block;
    color: #fff;
    text-decoration: none;
}

.resources-card__link:hover {
    color: #fff;
    opacity: 0.5;
}

.resources-card__inner {
    width: 100%;
    padding: var(--s4) var(--s4) var(--s7);
    background: url("img/arrow-01-white-right-large.svg") no-repeat right var(--s4) bottom var(--s2)/var(--s5) auto;
}

.resources-card__title {
    min-height: 4em;
    margin-bottom: var(--s7);
    display: flex;
    align-items: center;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.36;
    letter-spacing: 0.07em;
}

.resources-card--01 {
    max-width: calc((100% - var(--s2)) / 2 - 3rem);
    flex: 1;
}

.resources-card--01 .resources-card__link {
    padding-left: calc((100vw - 110rem) / 2);
    background-image: url("img/resources-card-bg-01.jpg");
}

.resources-card--02 {
    width: calc((110rem - var(--s2)) / 2 + 3rem);
    margin-right: auto;
}

.resources-card--02 .resources-card__link {
    background-image: url("img/resources-card-bg-02.jpg");
}

.resources-card--03 {
    width: 100%;
}

.resources-card--03 .resources-card__link {
    max-width: 110rem;
    margin: 0 auto;
    background-image: url("img/resources-card-bg-03.jpg");
}

.resources-card--04 {
    width: calc((110rem - var(--s2)) / 2 - 3rem);
    margin-left: auto;
}

.resources-card--04 .resources-card__link {
    background-image: url("img/resources-card-bg-04.jpg");
}

.resources-card--05 {
    max-width: calc((100% - var(--s2)) / 2 + 3rem);
    flex: 1;
}

.resources-card--05 .resources-card__link {
    padding-right: calc((100vw - 110rem) / 2);
    background-image: url("img/resources-card-bg-05.jpg");
}


/*
---------------------------------------------

    low

*/

.main-area--low h1 {
    margin: var(--s4) 0 var(--s3);
    padding: var(--s4) var(--s3);
    background: linear-gradient(0deg, rgba(77, 164, 204, 0.07), rgb(89 173 211 / 23%));
    color: #0F3295;
    font-size: 4.4rem;
    font-weight: 900;
    line-height: 1.36;
    letter-spacing: 0.1em;
    text-align: center;
}

.main-area--low h1+.text-note {
    margin-top: calc(var(--s3) * -1);
    margin-bottom: var(--s5);
}

.main-area--low h2 {
    margin: 2em 0 1em;
    padding: var(--s2) var(--s3);
    background: #42444b;
    color: #fff;
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1.5;
}

.main-area--low h2 a {
    padding-right: var(--s4);
    background: url("img/arrow-01-white-right.svg") no-repeat center right/2rem auto;
    display: block;
    color: #fff;
    text-decoration: none;
}

.main-area--low h2 a:hover {
    color: #fff;
    opacity: 0.6;
}

.main-area--low h3 {
    margin: 4rem 0 2rem;
    padding: var(--s1) var(--s2);
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.5;
    background: #e0eef3;
    color: #0F3295;
}

.main-area--low h3 a {
    padding-right: var(--s4);
    background: url("img/arrow-01-gray-right.svg") no-repeat center right/2rem auto;
    display: block;
    color: #0F3295;
    text-decoration: none;
}

.main-area--low h3 a:hover {
    opacity: 0.6;
}

.main-area--low h4 {
    margin: 2em 0 1em;
    color: #0F3295;
    font-size: 2rem;
    padding-bottom: 0.5rem;
    font-weight: 900;
    border-bottom: 1px solid #0f3295;
    line-height: 1.36;
}

.main-area--low h4 a {
    padding-right: var(--s4);
    background: url("img/arrow-01-blue-right.svg") no-repeat center right/2rem auto;
    display: block;
    color: #0F3295;
    text-decoration: none;
}

.main-area--low h4 a:hover {
    color: #0F3295;
    opacity: 0.6;
}

.main-area--low .low-eye-catch {
    margin-bottom: 0.5rem;
}

.main-area--low .low-title-sub {
    margin-bottom: -1.4em;
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
    letter-spacing: 0.1em;
    line-height: 1.36;
}

.main-area--low .low-title-sub-order {
    display: flex;
    flex-flow: column;
}

.main-area--low .low-title-sub-order h1 {
    order: 2;
}

.main-area--low .low-title-sub-order .low-title-sub {
    order: 1;
}

.low-main-area {
    padding-bottom: 12rem;
}

.low-main-area>*:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 767px) {
    /*
  ---------------------------------------------

      sp base settings

  */
     :root {
        font-size: 2.6666666667vw;
    }
    body {
        font-size: 1.4rem;
    }
    .sp_br {
        display: inline;
    }
    .pc_br {
        display: none;
    }
    #pankuzu>span span br {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    /*
  ---------------------------------------------

      sp layout center

  */
    .l-center {
        padding-right: var(--s2);
        padding-left: var(--s2);
        box-sizing: border-box;
    }
    /*
  ---------------------------------------------

      sp layout grid

  */
    .l-grid {
        grid-gap: var(--s2);
        grid-template-columns: 100%;
    }
    .l-grid--no-gap {
        grid-gap: 0;
    }
    /*
  ---------------------------------------------

      sp layout sidebar

  */
    .l-sidebar__side {
        display: none;
    }
    .l-sidebar__main {
        width: 100%;
    }
    /*
  ---------------------------------------------

      sp layout column

  */
    .l-column-01 {
        gap: var(--s3);
    }
    .l-column-01__side {
        width: 100%;
    }
    .l-column-01__main {
        width: 100%;
    }
    .l-column-02 {
        gap: var(--s2);
    }
    .l-column-02__side {
        width: 100%;
    }
    .l-column-02__main {
        width: 100%;
    }
    /*
  ---------------------------------------------

      sp layout column areas

  */
    .l-column-areas-01 {
        grid-template-areas: "title catch" "img catch" "text text";
        grid-template-columns: 1fr 4.4rem;
        grid-template-rows: auto auto 1fr;
        gap: var(--s2) 0;
        align-items: flex-start;
    }
    .l-column-areas-01--row-reverse {
        grid-template-areas: "catch title" "catch img" "text text";
        grid-template-columns: 4.4rem 1fr;
    }
    .l-column-areas-02 {
        grid-template-areas: "title" "img" "text-area";
        grid-template-columns: 100%;
        grid-template-rows: auto auto 1fr;
    }
    .l-column-areas-03 {
        grid-template-areas: "title" "img" "text-area";
        grid-template-columns: 100%;
        grid-template-rows: auto auto 1fr;
        grid-gap: 0;
    }
    .l-column-areas-03--row-reverse {
        grid-template-areas: "title" "img" "text-area";
        grid-template-columns: 100%;
    }
    /*
  ---------------------------------------------

      sp layout float

  */
    .l-float {
        margin: var(--s3) 0;
    }
    .l-float__left-pc {
        width: 100%;
        margin-right: 0;
        float: none;
    }
    .l-float__right-pc {
        width: 100%;
        margin-left: 0;
        float: none;
    }
    .l-float__center {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    .l-float__left {
        width: 12rem;
        margin-top: var(--s1);
        margin-right: var(--s2);
        margin-bottom: var(--s1);
    }
    .l-float__right {
        width: 12rem;
        margin-top: var(--s1);
        margin-left: var(--s2);
        margin-bottom: var(--s1);
    }
    /*
  ---------------------------------------------

      sp layout footer

  */
    .l-footer {
        gap: var(--s4) 0;
        justify-content: center;
    }
    .l-footer__cell-01 {
        width: calc(100% - var(--s4));
    }
    .l-footer__cell-02 {
        width: calc(100% - var(--s4));
    }
}

@media screen and (max-width: 767px) {
    /*
  ---------------------------------------------

      sp icon

  */
    .icon-plus-circle {
        width: 2.9rem;
        height: 2.9rem;
    }
    .icon-plus-circle::before {
        width: 1rem;
        height: 0.15rem;
    }
    .icon-plus-circle::after {
        width: 0.15rem;
        height: 1rem;
    }
    /*
  ---------------------------------------------

      sp list

  */
    .main-area ul:not([class]) {
        margin: var(--s3) 0;
    }
    .main-area ol:not([class]) {
        margin: var(--s3) 0;
    }
    /*
  ---------------------------------------------

      sp btn

  */
    .btn-web {
        margin: var(--s3) auto;
    }
    .btn-web a {
        width: 90%;
        min-height: var(--s9);
        padding: var(--s1) var(--s4);
        background-size: 2rem auto, contain;
        font-size: 1.6rem;
    }
    .btn-web a:hover {
        opacity: 1;
    }
    .btn-internal {
        margin: var(--s3) auto;
    }
    .btn-internal a {
        width: 90%;
        min-height: var(--s9);
        padding: var(--s1) var(--s4);
        background-size: 2rem auto, contain;
        font-size: 1.6rem;
    }
    .btn-internal a:hover {
        opacity: 1;
    }
    .host-voice .btn-internal a {
        font-size: 1.4rem;
        background-size: 1.5rem auto, contain;
        padding: var(--s1) var(--s3);
    }
    .btn-link {
        margin: var(--s1) auto;
    }
    .btn-link a:hover {
        text-decoration: none;
    }
    .btn-tel {
        margin: var(--s3) auto;
        display: block;
        position: relative;
    }
    .btn-tel a {
        width: 90%;
        min-height: var(--s9);
        margin: 0 auto;
        padding: var(--s1) var(--s4);
        background: linear-gradient(100deg, #2D2D2D, #606060);
        border-radius: 10rem;
        box-shadow: 0 var(--s1) 0 #808080;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 1.6rem;
        font-weight: 900;
        line-height: 1.5;
        text-align: center;
        text-decoration: none;
    }
    /*
  ---------------------------------------------

      sp caption

  */
    .caption {
        font-size: 1rem;
    }
    .caption-scroll {
        font-size: 1rem;
    }
    .caption-scroll::-webkit-scrollbar {
        height: 0.4rem;
    }
    .caption-scroll::-webkit-scrollbar-track {
        border-radius: 0.2rem;
    }
    .caption-scroll::-webkit-scrollbar-thumb {
        border-radius: 0.2rem;
    }
    /*
  ---------------------------------------------

  	sp catch

  */
    .catch-01 {
        font-size: 1.6rem;
    }
    /*
  ---------------------------------------------

      sp comment

  */
    .comment-box {
        max-width: 90%;
        margin-bottom: var(--s3);
        font-size: 1.6rem;
        line-height: 1.5;
    }
    .comment-box::after {
        border-width: 1rem;
    }
    .comment-box--text-large {
        font-size: 1.6rem;
    }
    /*
  ---------------------------------------------

  	sp pankuzu

  */
    #pankuzu {
        margin: 0 0 var(--s3);
    }
    /*
  ---------------------------------------------

      sp header

  */
    .header-area {
        padding: var(--s1) 0;
    }
    .header-area--low::after {
        background: url("img/low-header-bg-01.png") no-repeat top -23.8rem left -21.6rem/65.6rem auto;
    }
    .header-logo {
        width: 16.4rem;
    }
    .header-logo__link:hover {
        opacity: 1;
    }
    .header-site-name {
        margin: 0 var(--s2) calc(var(--s2) * -1);
        position: static;
    }
    .header-site-name__link:hover {
        opacity: 1;
    }
    /*
  ---------------------------------------------

      sp main

  */
    .main-area--low {
        background-image: url("img/low-main-bg-01-sp.png");
        background-size: 100% auto;
    }
    /*
  ---------------------------------------------

      sp footer

  */
    .footer-area {
        padding: var(--s4) 0 var(--s7);
    }
    .footer-main {
        padding-right: 0;
        padding-left: 0;
        box-sizing: border-box;
    }
    .footer-host-box {
        padding: var(--s3);
        flex-wrap: wrap;
        gap: var(--s2);
    }
    .footer-host-box__side {
        width: 100%;
    }
    .footer-host-box__main {
        flex: 1;
    }
    .footer-host-box__label {
        margin-top: 0;
    }
    .footer-host-box__logo {
        width: 17.2rem;
        margin-top: var(--s2);
    }
    .footer-host-box .btn-link {
        margin-top: var(--s2);
    }
    .footer-logo {
        width: 20.8rem;
        margin: 0;
    }
    .footer-logo__link:hover {
        opacity: 1;
    }
    .footer-box+.footer-box {
        margin-top: 0;
    }
    .footer-menu-title {
        margin-bottom: 0;
    }
    .footer-menu-title__link {
        padding: 1.2rem var(--s5) 1.2rem var(--s2);
        position: relative;
    }
    .footer-menu-title__link::after {
        content: "";
        width: 2rem;
        height: 2rem;
        background: url("img/arrow-01-white-down.svg") no-repeat center/100%;
        position: absolute;
        top: 50%;
        right: var(--s2);
        transform: translate(0, -50%) rotate(0);
        transition: transform 0.3s;
    }
    .footer-menu-title__link:hover {
        opacity: 1;
    }
    .footer-menu-title__link.is-open::after {
        transform: translate(0, -50%) rotate(180deg);
    }
    .footer-menu {
        background: rgba(255, 255, 255, 0.1);
        gap: 0;
    }
    .footer-menu__item {
        width: 100%;
        border-bottom: 1px solid #fff;
    }
    .footer-menu__link {
        padding: 1.2rem var(--s2);
    }
    .footer-menu__link:hover {
        opacity: 1;
    }
    .footer-menu-sub {
        margin-left: var(--s2);
        margin-bottom: var(--s1);
    }
    .footer-menu-sub__link {
        padding: var(--s1) var(--s2) var(--s1) 1.1em;
    }
    .footer-menu-sub__link::before {
        top: var(--s1);
    }
    .footer-menu-sub__link:hover {
        opacity: 1;
    }
    .footer-disclaimer {
        margin-top: var(--s3);
    }
    .footer-bottom {
        margin: 0;
        padding: 0;
    }
    .footer-bottom__inner {
        flex-direction: column-reverse;
    }
    .footer-copyright {
        width: 100%;
        padding: 1rem 0;
        text-align: center;
    }
    .footer-sitemap {
        margin-left: auto;
        font-size: 1.4rem;
        font-weight: 900;
        line-height: 1.5;
    }
    .footer-sitemap__link {
        padding: 1.2rem var(--s4) 1.2rem var(--s2);
        background: url("img/arrow-01-white-right.svg") no-repeat right center/2rem auto;
        display: block;
    }
    .footer-sitemap__link:hover {
        opacity: 1;
    }
    /*
  ---------------------------------------------

  	sp gnavi

  */
    .gnavi-btn {
        width: var(--s6);
        height: var(--s6);
        top: var(--s-2);
        right: var(--s-2);
    }
    .gnavi-btn span {
        width: var(--s3);
        left: 1rem;
    }
    .gnavi-btn span:nth-of-type(1) {
        top: 1.8rem;
    }
    .gnavi-btn span:nth-of-type(2) {
        top: 2.6rem;
    }
    .gnavi-btn.is-active span:nth-of-type(1) {
        transform: translateY(0.4rem) rotate(-45deg);
    }
    .gnavi-btn.is-active span:nth-of-type(2) {
        transform: translateY(-0.4rem) rotate(45deg);
    }
    .gnavi-area {
        max-width: 100%;
        padding: var(--s10) 0;
    }
    .gnavi-menu-box__title__link:hover {
        opacity: 1;
    }
    .gnavi-menu-box__title__btn:hover {
        opacity: 1;
    }
    .gnavi-menu__link:hover,
    .gnavi-menu-sub__link:hover {
        opacity: 1;
    }
    /*
  ---------------------------------------------

      sp page

  */
    .page-top {
        width: var(--s6);
        height: var(--s6);
        right: var(--s1);
        bottom: var(--s-2);
    }
    .page-top__link:hover {
        opacity: 1;
    }
    .page-banner {
        width: 30.2rem;
        height: 5.3rem;
        right: auto;
        left: 0;
        bottom: 0;
    }
    .page-banner__link {
        padding: 0 0 0 1.5rem;
        background-image: url("img/banner-01-sp.png");
        display: flex;
        align-items: center;
    }
    .page-banner__link:hover {
        opacity: 1;
    }
    .page-banner__em-01,
    .page-banner__em-02 {
        font-size: 1.7rem;
        margin: 0 0.2rem 0.2rem;
    }
    .page-banner__more {
        margin-top: 0;
        margin-left: 0;
        font-size: 1.4rem;
    }
    /*
  ---------------------------------------------

      sp section

  */
    .section-title-01 {
        margin-bottom: var(--s4);
        font-size: 2.5rem;
    }
    .section-title-01__link:hover {
        opacity: 1;
    }
    .section-title-01__link>*:last-child {
        margin-right: var(--s4);
    }
    .section-title-01__link>*:last-child::before {
        width: var(--s3);
        height: var(--s3);
        transform: translate(var(--s4), -50%);
    }
    .section-title-01__line-01 {
        font-size: 1.8rem;
    }
    .section-title-01__em-01 {
        font-size: 3.4rem;
    }
    .section-title-01__em-02 {
        font-size: 3.4rem;
        transform: translate(0, var(--s1));
    }
    .section-title-01--voice .section-title-01__em-02 {
        transform: translate(0em, 0);
		padding: 0;
    }
    .section-title-01--attractiveness .section-title-01__em-02 {
        transform: translate(3.8em, -0.06em);
    }
    .section-title-02 {
        font-size: 3rem;
    }
    .section-title-02::after {
        bottom: var(--s2);
    }
    .section-title-02__link:hover {
        opacity: 1;
    }
    .section-title-02__link>*:last-child {
        margin-right: var(--s4);
        display: inline-block;
    }
    .section-title-02__link>*:last-child::before {
        width: var(--s3);
        height: var(--s3);
        transform: translate(var(--s4), -50%);
    }
    .section-title-02__link br:last-child::before {
        content: none;
    }
    .resources-section .section-title-02__link>.section-title-02__em-01 {
        position: relative;
    }
    .resources-section .section-title-02__link>.section-title-02__em-01::before {
        content: "";
        width: var(--s5);
        height: var(--s5);
        background: url(img/arrow-01-blue-right-large.svg) no-repeat center/100% auto;
        position: absolute;
        top: 50%;
        right: -2rem;
        transform: translate(var(--s8), -50%);
        width: var(--s3);
        height: var(--s3);
        transform: translate(var(--s4), -50%);
    }
    .section-title-02__small {
        font-size: 1.8rem;
    }
    .section-title-02__em-01 {
        font-size: 3.4rem;
    }
    .section-title-02--qa {
        padding-bottom: 8.8rem;
    }
    .section-title-02--qa::after {
        width: 31.8rem;
        height: 5rem;
        left: auto;
        right: calc(var(--s2) * -1);
    }
    .section-title-02--resources {
        padding-bottom: 8rem;
    }
    .section-title-02--resources::after {
        width: 36rem;
        height: 10.4rem;
        background-image: url("img/text-human-resources-02.svg");
        left: auto;
        right: calc(var(--s2) * -1);
    }
    /*
  ---------------------------------------------

      sp index

  */
    .index-box {
        background-size: 13.8rem auto;
    }
    .index-box__label {
        height: inherit;
        padding: var(--s1) var(--s2);
        font-size: 1.8rem;
    }
    .index-box__content {
        margin: 0 auto;
        padding: var(--s1) var(--s2) var(--s2);
    }
    .index-box .chapter .chapter-h-three {
        padding: 0 0 0 var(--s5);
    }
    .index-box .chapter .chapter-h-three::before {
        left: var(--s3);
    }
    /*
  ---------------------------------------------

      relation

  */
    .relation-box {
        background-size: 13.4rem auto;
    }
    .relation-box__label {
        height: inherit;
        padding: var(--s2);
        font-size: 1.8rem;
    }
    .relation-box__content {
        padding: 0 var(--s2) var(--s2);
    }
    .relation-list__item+.relation-list__item {
        margin-top: 0.5em;
    }
    .relation-list__link {
        padding: 0 0 0 var(--s4);
        background-position: top 0.3em left;
    }
    .relation-list__link:hover {
        opacity: 1;
    }
    /*
  ---------------------------------------------

      sp summary

  */
    .summary-box-01 {
        margin: var(--s5) 0;
        flex-direction: column;
        gap: var(--s-2);
    }
    .summary-box-01__label {
        padding: var(--s1) var(--s2) var(--s1) 0;
        font-size: 1.6rem;
    }
    .summary-box-01__content {
        padding: var(--s1) 0;
    }
    .summary-box-02 {
        margin: var(--s7) 0;
        padding: var(--s5) 0;
        background-size: 23.2rem auto;
    }
    .summary-box-02::before {
        width: calc(100% + var(--s4));
        height: calc(100% - var(--s2));
        left: 50%;
        transform: translate(-50%, 0);
    }
    .summary-box-02__catch {
        font-size: 1.8rem;
    }
    /*
  ---------------------------------------------

      sp interview

  */
    .interview-box-01 {
        width: calc(100% + var(--s2));
        margin: var(--s7) 0 var(--s7) calc(var(--s2) * -1);
        padding: var(--s4) 0 var(--s2);
        background-position: 0 0;
        background-size: 25.6rem auto;
    }
    .interview-box-01::before {
        width: 100%;
        bottom: 0;
    }
    .interview-box-01__thumb {
        width: 100%;
        position: relative;
        top: 0;
    }
    .interview-box-01__catch {
        margin: var(--s2);
        font-size: 1.8rem;
    }
    .interview-box-01__text {
        margin: var(--s2);
    }
    .interview-box-01 .btn-link-02 {
        margin-right: var(--s2);
        margin-left: var(--s2);
    }
    /*
  ---------------------------------------------

      sp profile

  */
    .profile-box-01 {
        margin: var(--s7) 0;
        align-items: center;
        flex-direction: column;
    }
    .profile-box-01__thumb {
        width: 24.7rem;
        margin-bottom: calc(var(--s7) * -1);
        position: relative;
        z-index: 1;
    }
    .profile-box-01__content {
        padding: 0;
    }
    .profile-box-01__content::after {
        width: 100%;
    }
    .profile-box-01__label {
        width: 100%;
        padding: var(--s9) var(--s3) var(--s2);
        text-align: center;
        position: static;
        transform: translate(0, 0);
    }
    .profile-box-01__text {
        padding: var(--s2);
    }
    .profile-box-02 {
        margin: var(--s7) 0;
        align-items: center;
        flex-direction: column;
    }
    .profile-box-02__side {
        width: 24.7rem;
		margin-top: 0;
    }
    .profile-box-02__main {
        padding: var(--s2);
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: var(--s2);
    }
    .profile-box-02__main::after {
        height: calc(100% + var(--s10));
    }
    .profile-box-02__label {
        padding: var(--s1) var(--s1) var(--s1) 0;
    }
    .profile-box-02__label::after {
        width: calc(100% + var(--s2));
    }
    .profile-box-02__name {
        margin: 0;
        font-size: 1.6rem;
    }
    .profile-box-02__text {
        margin: 0;
    }
    /*
  ---------------------------------------------

      sp schedule

  */
    .schedule-box-01 {
        margin: var(--s7) 0;
    }
    .schedule-box-01__label {
        margin-bottom: var(--s2);
        padding: 0 0 var(--s2);
        font-size: 2.2rem;
    }
    .schedule-list__item::before {
        top: 0.5em;
    }
    .schedule-list__time {
        font-size: 1.6rem;
    }
    /*
  ---------------------------------------------

      sp qa

  */
    .qa-box {
        margin: var(--s6) 0;
    }
    .qa-box__label {
        margin-bottom: var(--s2);
        font-size: 1.6rem;
    }
    .qa-box__label::before {
        top: 0;
    }
    .qa-box__thumb {
        width: 7.4rem;
        height: 7.4rem;
    }
    /*
  ---------------------------------------------

      sp host

  */
    .host-box-01 {
        margin: var(--s7) 0;
        padding: 0 var(--s2) var(--s3) 0;
    }
    .host-box-01::after {
        width: calc(100% + var(--s2));
        background-image: url("img/host-box-bg-01-sp.jpg");
    }
    .host-box-01__label {
        margin: 0 auto var(--s4) calc(var(--s2) * -1);
        padding: 1rem var(--s4);
        font-size: 1.6rem;
    }
    .host-box-01__label::after {
        width: 100%;
    }
    .host-box-01__name {
        font-size: 2rem;
        line-height: 1.5;
    }
    .host-box-01__name__small {
        padding-right: 0;
        display: block;
    }
    .host-box-01__catch {
        font-size: 1.8rem;
    }
    /*
  ---------------------------------------------

       sp toggle sp

  */
    .toggle-sp-content {
        display: none;
    }
    /*
  ---------------------------------------------

      sp tab

  */
    .tab-sp-content {
        display: none;
    }
    .tab-sp-content.is-active {
        display: block;
    }
}

@media screen and (max-width: 767px) {
    /*
  ---------------------------------------------

  	sp top

  */
    .bg-illust-01 {
        width: 90%;
        background-position: center top;
        top: var(--s8);
        transform: translate(-50%, 0);
        background-size: 100%;
        left: 50%;
    }
    .bg-illust-01.is-animated {
        background-size: 80% auto;
        top: 88rem;
        left: 48%;
    }
    .mv-section {
        padding: 12.6rem 0 var(--s3);
    }
    .mv-title {
        margin-bottom: var(--s2);
        font-size: 3.4rem;
    }
    .mv-title__line-01 {
        font-size: 1.8rem;
    }
    .mv-title__line-03 {
        font-size: 3rem;
    }
    .mv-title__small {
        font-size: 2.6rem;
    }
    .mv-text {
        font-size: 1.4rem;
    }
    .page-index-list {
        flex-direction: column;
    }
    .page-index-list__item {
        font-size: 1.4rem;
        text-align: center;
    }
    .page-index-list__item::before {
        width: var(--s3);
        height: var(--s3);
    }
    .page-index-list__item+.page-index-list__item {
        border-top: 1px solid #9B9B9B;
    }
    .page-index-list__link {
        padding: 2rem 0 1.5rem;
    }
    .page-index-list__link:hover {
        opacity: 1;
    }
    .page-index-list__inner {
        background-size: 0.662rem auto;
    }
    .introduction-section {
        padding: var(--s4) 0;
    }
    .introduction-title {
        margin-bottom: 22.8rem;
        font-size: 3rem;
        transform: translate(0, var(--s8));
    }
    .introduction-title.is-animated {
        margin-bottom: 70%;
    }
    .introduction-title__em {
        font-size: 3.4rem;
    }
    .introduction-title__small {
        font-size: 2.4rem;
    }
    .introduction-text {
        font-size: 1.5rem;
        padding: 0;
        margin-top: 70%;
    }
    .introduction-text__em {
        font-size: 1.6rem;
    }
    .about-section {
        padding: 18.8rem 0 var(--s4);
        background-image: url(img/about-bg-01_sp.png), linear-gradient(0deg, #415D98, #191919);
        background-size: 95% auto, cover;
    }
    .about-section::after {
        width: 35.5rem;
        height: 21.3rem;
        top: 62rem;
        left: var(--s7);
        transform: translate(0, 0);
    }
    .about-title {
        margin: 0 auto 3rem;
        padding: var(--s4) var(--s3);
        font-size: 1.6rem;
        line-height: 1.875;
    }
    .unit_01 {
        margin: 0 auto 8rem;
    }
    .unit_01.is-animated {
        transform: translate(0, var(--s4));
    }
    .unit_02.is-animated {
        transform: translate(0, var(--s4));
    }
    .about-text {
        font-size: 1.9rem;
        line-height: 1.67;
    }
    .about-em {
        margin: var(--s1) 0 var(--s2);
    }
    .about-em__en {
        width: 16.6rem;
        transform: translate(0, -80%);
    }
    .about-em__text {
        font-size: 2.8rem;
        line-height:1.6;
    }
    .about-em__text__line-sp {
        position: relative;
    }
    .about-em__text__line-sp::after {
        content: "";
        width: 0%;
        height: 100%;
        background: linear-gradient(80deg, #0F3295 0%, #31A5D9 100%);
        opacity: 0.71;
        position: absolute;
        top: 50%;
        left: 0;
        z-index: -1;
        transform: translate(0, -50%);
        transition: width 0.6s;
    }
    .about-em__text::after {
        display: none;
    }
    .about-em__text.is-animated .about-em__text__line-sp::after {
        width: 100%;
    }
    .skill-section {
        padding: var(--s4) 0 0;
    }
    .skill-lead {
        text-align: left;
    }
    .skill-block-wrapper {
        margin: var(--s9) 0 var(--s3);
    }
    .skill-block-wrapper::before {
        width: 30.2rem;
        height: 7.1rem;
        right: auto;
        left: calc(var(--s2) * -1);
        transform: translate(0, -98%);
    }
    .skill-block {
        padding: var(--s3) 0;
    }
    .skill-block::after {
        right: calc(var(--s2) * -1);
    }
    .skill-block__title {
        font-size: 2.4rem;
    }
    .skill-block__photo {
        width: calc(100% + var(--s2));
        margin-left: calc(var(--s2) * 0);
    }
    .skill-block__copy {
        font-size: 3.2rem;
        line-height: 1.4;
    }
    .skill-block__text-area {
        padding-left: 0;
        padding-bottom: 0;
        position: relative;
    }
    .skill-block__en {
        width: 21.6rem;
        margin: 0;
        position: absolute;
        top: calc(var(--s3) * -1);
        left: 0;
        transform: translate(0, -100%);
    }
    .skill-block__en__img {
        height: 8.55rem;
    }
    .skill-block+.skill-block {
        margin-top: var(--s3);
    }
    .skill-block.l-column-areas-01--row-reverse::after {
        left: calc(var(--s2) * -1);
        right: auto;
    }
    .skill-block.l-column-areas-01--row-reverse .skill-block__title {
        margin-left: var(--s3);
        text-align: left;
    }
    .skill-block.l-column-areas-01--row-reverse .skill-block__photo {
        margin-left: -1rem;
        width: calc(100% + 1rem);
    }
    .skill-block.l-column-areas-01--row-reverse .skill-block__text-area {
        padding-right: 0;
    }
    .skill-block.l-column-areas-01--row-reverse .skill-block__en {
        margin-left: 0;
        left: var(--s7);
    }
    .skill-summary {
        padding: 0 0 4rem;
        background-position: bottom var(--s2) right;
        background-size: 100% auto;
    }
    .skill-summary__text {
        font-size: 1.8rem;
    }
    .skill-summary__text__em-01 {
        margin-top: var(--s1);
        font-size: 2.1rem;
    }
    .skill-summary__text__em-02 {
        font-size: 2.8rem;
    }
    .unit_02 {
        margin: 3rem auto 4rem;
    }
    .host-bg-01 {
        background-image: url("img/host-bg-01-sp.png"), linear-gradient(0deg, #F8F9FF 0%, #DEE6FA 50%, #C0CAE8 80%, #1941AE 100%);
        background-size: 100% auto, 100% 100%;
    }
    .host-bg-03 {
        background-image: url("img/host-bg-02-top.png"), url("img/host-bg-02-bottom.png"), url("img/host-bg-03.png"), linear-gradient(0deg, #F4F6FE 0%, #F1F3FC 50%, #D9E2F8 80%, #F6F9FF 100%);
        background-size: 40.4rem auto, 40.4rem auto, 36.6rem auto, 100% 100%;
    }
    .host-label {
        margin-bottom: var(--s4);
        padding: var(--s1) var(--s4) var(--s1) var(--s2);
        font-size: 1.6rem;
    }
    .host-title {
        margin-bottom: var(--s6);
        font-size: 2.2rem;
    }
    .host-title__em {
        font-size: 3rem;
    }
    .host-box-02 {
        position: relative;
        z-index: 1;
    }
    .host-box-02::after {
        content: "";
        width: calc(100% + var(--s2));
        height: 100%;
        background: #fff;
        position: absolute;
        top: 0;
        right: 0;
        z-index: -1;
    }
    .host-box-02__photo {
        margin-top: var(--s2);
        margin-right: var(--s3);
    }
    .host-box-02__photo::before {
        content: "";
        width: 100%;
        height: 180px;
    }
    .host-box-02__title {
        padding: var(--s2) var(--s3) var(--s2) 0;
        font-size: 2rem;
    }
    .host-box-02__title::after {
        width: calc(100% + var(--s2));
        left: calc(var(--s2) * -1);
    }
    .host-box-02__title__en {
        font-size: 2rem;
    }
    .host-box-02__text-area {
        padding: var(--s2) var(--s3) var(--s2) 0;
    }
    .host-box-02__text-area::after {
        display: none;
    }
    .host-features {
        padding: var(--s5) 0 0;
    }
    .features-title {
        margin: 0 0 var(--s4);
        font-size: 2.4rem;
    }
    .features-title__em {
        font-size: 2.8rem;
    }
    .features-title__em::before {
        width: 30.5rem;
        height: 5rem;
        left: 50%;
        right: auto;
        bottom: var(--s2);
        transform: translate(-50vw, 0);
    }
    .features-card-wrapper::after {
        height: 100%;
        background: linear-gradient(0deg, #fff, rgba(255, 255, 255, 0.31));
    }
    .features-card {
        position: relative;
        z-index: 1;
    }
    .features-card__title {
        margin: var(--s3) 0;
        font-size: 2.2rem;
    }
    .features-card__thumb {
        width: 100%;
        position: relative;
    }
    .features-card__thumb::before {
        height: 8.5rem;
        top: calc(var(--s3) * -1);
    }
    .features-card:nth-child(2n) {
        margin-top: 0;
    }
    .features-card+.features-card {
        margin-top: var(--s2);
    }
    .host-career {
        margin-top: var(--s4);
    }
    .career-title-wrapper {
        margin-bottom: var(--s4);
    }
    .career-title-wrapper::after {
        width: 23.4rem;
        height: 5rem;
        right: calc(var(--s2) * -1);
        left: auto;
        transform: translate(0, -50%);
    }
    .career-title {
        font-size: 2.4rem;
    }
    .career-title__em {
        font-size: 3rem;
    }
    .career-note {
        font-size: 1.6rem;
    }
    .career-card-wrapper {
        margin: var(--s2) 0;
    }
    .career-card {
        padding: var(--s3) 0;
    }
    .career-card::after {
        width: 100vw;
        border-right: none;
        right: auto;
        left: 50%;
        transform: translate(-50%, 0);
    }
    .career-card__header {
        padding-right: var(--s4);
    }
    .career-card__header>.icon-plus {
        top: 1.4rem;
    }
    .career-card__content {
        padding: var(--s4) 0 0;
    }
    .career-card__title {
        font-size: 1.8rem;
    }
    .career-card__en {
        font-size: 1.4rem;
    }
    .career-card:nth-child(2n) {
        padding-left: 0;
        border-left: none;
    }
    .career-card:nth-child(2n)::after {
        left: 50%;
    }
    .career-card:nth-child(2)::after {
        border-top: none;
    }
    .host-experience {
        padding: var(--s3) 0 var(--s5);
        background-position: top var(--s2) center;
        background-size: var(--s4) auto;
    }
    .host-experience .btn-web {
        position: relative;
        z-index: 1;
    }
    .experience-text {
        margin-bottom: 21rem;
        font-size: 1.5rem;
        line-height: 2;
    }
    .experience-text__em {
        font-size: 1.8rem;
    }
    .experience-text::before {
        width: 34.8rem;
        height: 11.6rem;
        top: var(--s1);
        right: auto;
        left: calc(var(--s1) * -1);
        transform: translate(0, 0);
    }
    .experience-text::after {
        width: 100%;
        height: 23rem;
        top: 2rem;
        left: 0;
        text-align: center;
        margin: auto;
        bottom: var(--s1);
        transform: translate(0, 100%);
    }
    .host-voice {
        padding: var(--s4) 0 var(--s7);
    }
    .voice-card-wrapper {
        margin-top: var(--s2);
        padding-top: var(--s9);
    }
    .voice-card-wrapper::before {
        width: 20.7rem;
        height: 5.7rem;
        top: calc(var(--s1) * -1);
        right: 0;
    }
    .voice-card-wrapper::after {
        bottom: var(--s5);
    }
    .voice-card-wrapper .slick-prev,
    .voice-card-wrapper .slick-next {
        width: 4.4rem;
        height: 4.4rem;
    }
    .voice-card-wrapper .slick-prev:hover,
    .voice-card-wrapper .slick-next:hover {
        opacity: 1;
    }
    .voice-card-wrapper .slick-next {
        left: var(--s8);
    }
    .voice-card {
        width: 27.2rem;
        margin-right: var(--s4);
    }
    .voice-card__title {
        font-size: 1.8rem;
    }
    .voice-card__title__line {
        padding: var(--s1) 0;
    }
    .voice-card__thumb {
        margin-top: var(--s1);
    }
    .voice-card__thumb::before {
        border-width: var(--s1);
    }
    .voice-card__name {
        padding: 1rem var(--s-2);
        font-size: 1.4rem;
    }
    .voice-card__name__label {
        font-size: 1.4rem;
    }
    .voice-card__name>* {
        display: block;
    }
    .voice-card__name>*:first-child {
        margin-right: 0;
        padding-right: 0;
    }
    .voice-card__name>*:first-child::after {
        display: none;
    }
    .host-attractiveness {
        padding: var(--s4) 0 0;
    }
    .attractiveness-card-wrapper {
        padding-top: var(--s3);
    }
    .attractiveness-card-wrapper::before {
        width: 34.6rem;
        height: 3.2rem;
        right: 0;
        top: -1rem
    }
    .attractiveness-card {
        padding: var(--s3) 0 var(--s4);
        position: relative;
        z-index: 1;
    }
    .attractiveness-card::after {
        content: "";
        width: 100vw;
        height: 37rem;
        background: linear-gradient(0deg, rgba(39, 76, 179, 0.03), rgba(77, 164, 204, 0.18));
        position: absolute;
        left: 50%;
        bottom: 0;
        z-index: -1;
        transform: translate(-50%, 0);
    }
    .attractiveness-card__title {
        margin-bottom: var(--s3);
        font-size: 2.2rem;
    }
    .attractiveness-card__title::before {
        height: 8.5rem;
        bottom: 0;
        right: 0;
    }
    .attractiveness-card__photo {
        margin-bottom: var(--s2);
    }
    .attractiveness-card__photo::after {
        display: none;
    }
    .attractiveness-card+.attractiveness-card {
        margin-top: var(--s4);
    }
    .host-example {
        padding: 0 0 var(--s6);
    }
    .example-title {
        margin: var(--s4) 0 var(--s6);
        font-size: 2.4rem;
    }
    .example-title::before {
        width: 28rem;
        height: 4.8rem;
        bottom: var(--s2);
        left: 0;
        right: auto;
        transform: translate(calc(var(--s2) * -1), 0);
    }
    .example-title__em {
        font-size: 2.8rem;
    }
    .example-tab-btn-wrapper {
        display: flex;
        gap: var(--s-2);
        align-items: flex-end;
        justify-content: space-between;
    }
    .example-tab-btn {
        min-width: 10.5rem;
        padding: var(--s1) var(--s2);
        background-color: #9EA4B5;
        color: #fff;
        font-size: 1.5rem;
        font-weight: 900;
        letter-spacing: 0.3em;
        text-align: center;
    }
    .example-tab-btn.is-active {
        padding: var(--s2);
        background-color: #525A71;
        flex: 1;
    }
    .example-card-wrapper {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding-bottom: 0;
        display: block;
    }
    .example-card {
        width: 100%;
        padding: 0;
        background: #fff;
    }
    .example-card::after {
        display: none;
    }
    .example-card__thumb {
        margin-bottom: var(--s4);
    }
    .example-card__img {
        border: none;
    }
    .example-card:nth-child(3n+2) {
        transform: translateY(0);
    }
    .example-card:nth-child(3n+3) {
        transform: translateY(0);
    }
    .example-summary__label {
        padding: var(--s-2) var(--s3);
        font-size: 1.5rem;
    }
    .example-summary__label::after {
        width: 100%;
        min-width: 14rem;
        left: 0;
    }
    .example-summary__content {
        padding: var(--s2) var(--s3);
    }
    .example-summary__copy {
        margin-bottom: var(--s1);
        font-size: 1.8rem;
    }
    .example-summary--answer {
        margin-top: var(--s5);
    }
    .example-summary--answer::before {
        width: 3.2rem;
        height: 2.8rem;
        top: calc(var(--s5) * -1);
    }
    .example-summary--answer .example-summary__content::after {
        width: 100%;
        left: 0;
    }
    .host-box-03 {
        margin: 0 0 var(--s6);
        padding: var(--s4) var(--s2) var(--s3) 0;
    }
    .host-box-03::after {
        width: 100vw;
        background-image: url("img/host-box-bg-02-sp.jpg");
        right: 0;
    }
    .host-box-03__title {
        margin-bottom: var(--s2);
        font-size: 2rem;
        text-align: center;
    }
    .host-box-03__title__em-01 {
        font-size: 2.6rem;
    }
    .host-box-03__title__em-02 {
        font-size: 2.4rem;
    }
    .host-box-03__company {
        margin: 0 0 var(--s1);
        font-size: 1.6rem;
    }
    .host-box-03__thumb {
        width: 60%;
    margin: auto;
    }
    .host-box-03__name {
        margin-bottom: var(--s3);
        padding: var(--s2) 0;
        gap: var(--s5);
        font-size: 2rem;
    }
	.host-box-03 .btn-web a {
    margin: auto;
}
	
    .host-box-03__name__small {
        font-size: 1.4rem;
    }
    .host-box-03__catch {
        margin-bottom: var(--s3);
        font-size: 1.8rem;
    }
    .host-box-03 .btn-web {
        margin: var(--s4) 0 var(--s2);
    }
    .qa-section {
        padding: var(--s4) 0 0;
        background-image: url("img/qa-bg-01-sp.png");
        background-size: 100% auto;
    }
    .qa-card-wrapper {
        border-top: 0.2rem solid #000;
    }
    .qa-card {
        padding: var(--s3) var(--s2);
        border-right: none;
    }
    .qa-card:hover {
        opacity: 1;
    }
    .qa-card__label {
        margin-bottom: var(--s1);
        font-size: 1.6rem;
    }
    .qa-card__title {
        min-width: 87%;
        margin-bottom: var(--s3);
        padding-right: var(--s4);
        background-size: var(--s3) var(--s3);
        display: inline-block;
        font-size: 2.2rem;
    }
    .qa-card__text {
        padding: 0 0 0 var(--s5);
    }
    .qa-card__text::before {
        font-size: 3rem;
    }
    .qa-card:nth-child(even) {
        padding: var(--s3) var(--s2);
        border-left: none;
    }
    .resources-section {
        padding: var(--s5) 0 var(--s7);
        background-image: url("img/resources-bg-01-sp.png");
        background-size: 100% auto;
    }
    .resources-card-wrapper {
        gap: var(--s1) 0;
    }
    .resources-card__link:hover {
        opacity: 1;
    }
    .resources-card__inner {
        padding: var(--s3) var(--s2) var(--s8);
        background-size: var(--s3) var(--s3);
        background-position: right var(--s2) bottom var(--s3);
    }
    .resources-card__title {
        margin-bottom: var(--s3);
        font-size: 2.2rem;
    }
    .resources-card--01 {
        max-width: 100%;
    }
    .resources-card--01 .resources-card__link {
        background-image: url("img/resources-card-bg-01-sp.jpg");
    }
    .resources-card--02 {
        width: 100%;
        margin-right: 0;
    }
    .resources-card--02 .resources-card__link {
        background-image: url("img/resources-card-bg-02-sp.jpg");
    }
    .resources-card--03 .resources-card__link {
        background-image: url("img/resources-card-bg-03-sp.jpg");
    }
    .resources-card--04 {
        width: 100%;
        margin-left: 0;
    }
    .resources-card--04 .resources-card__link {
        background-image: url("img/resources-card-bg-04-sp.jpg");
    }
    .resources-card--05 {
        max-width: 100%;
    }
    .resources-card--05 .resources-card__link {
        background-image: url("img/resources-card-bg-05-sp.jpg");
    }
}


/* iPhone XR用のスタイル */

@media only screen and (min-device-width: 412px) and (max-device-width: 767px) and (-webkit-min-device-pixel-ratio: 2) {
    .bg-illust-01.is-animated {
        /* iPhone XRの画面サイズに対するスタイルを指定 */
        background-size: 80% auto;
        top: 85rem;
        left: 48%;
        width: 85%;
        height: 40%;
    }
}

@media screen and (max-width: 767px) {
    /*
  ---------------------------------------------

      sp low

  */
    .main-area--low h1 {
        padding: 1.5rem var(--s2);
        font-size: 2.6rem;
    }
    .main-area--low h2 {
        padding: var(--s1) var(--s2);
        font-size: 2rem;
    }
    .main-area--low h2 a:hover {
        opacity: 1;
    }
    .main-area--low h3 {
        font-size: 1.8rem;
        margin: 3rem 0 2rem;
    }
    .main-area--low h3 a:hover {
        opacity: 1;
    }
    .main-area--low h4 {
        font-size: 1.6rem;
    }
    th {
        padding: var(--s1) 0.5rem;
    }
    .btn-link a {
        font-size: 1.5rem;
    }
    .main-area--low h4 a:hover {
        opacity: 1;
    }
    .main-area--low .low-eye-catch {
        width: calc(100% + var(--s4));
        margin: 0 calc(var(--s2) * -1) 0;
    }
    .main-area--low .low-title-sub {
        font-size: 1.6rem;
		margin-bottom: -1.8em;
    }
    .low-main-area {
        padding-bottom: var(--s9);
    }
}