@font-face {
    font-family: CenturyGothic-Bold;
    src: url(../font/Century-Gothic-Bold.ttf) format("truetype");
}

@font-face {
    font-family: CenturyGothic;
    src: url(../font/CenturyGothic.ttf) format("truetype");
}

html {
    font-size: 1px;
}

.tag__link {
    display: inline-block;
    overflow: hidden;
}

.tag__link img {
    max-width: 100%;
    height: auto;
    display: block;
}
.tag__link span {
    overflow: hidden;
    white-space: normal; /* テキストがはみ出た場合に改行する */
    display: inline-block;
    max-width: 100%; 
    text-overflow: ellipsis;
}
body {
    font-family: "Noto Sans JP", sans-serif;
    color: #000;
    box-sizing: border-box;
    margin: 0;
    border: 0;
    line-height: 1.4;
    font-weight: 500;
    font-size: 16px;
    background: #fff;
}

* {
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
figure {
    margin: 0;
}

.d-flex {
    display: flex;
}

.flex-reserve {
    flex-direction: row-reverse;
}

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

p {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

.align-items-center {
    align-items: center;
}

.pc {
    display: flex !important;
}

.pc-block {
    display: block !important;
}

.font-mincho {
    font-family: "Hina Mincho", serif;
}

.sp {
    display: none !important;
}

.sp-block {
    display: none !important;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-around {
    justify-content: space-around;
}

.justify-content-end {
    justify-content: flex-end;
}

.align-items-baseline {
    align-items: baseline;
}

.text-center {
    text-align: center !important;
}

.center {
    margin-left: auto;
    margin-right: auto;
}

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

.jusify-content-left {
    justify-content: left !important;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaled_x {
    0% {
        -webkit-clip-path: inset(0 100% 0 0);
        clip-path: inset(0 100% 0 0);
    }

    100% {
        opacity: 1;
        -webkit-clip-path: inset(0);
        clip-path: inset(0);
    }
}

.anim {
    opacity: 0;
}

.anim.fadeInUp.is-animated {
    animation: fadeInUp 1s ease-in-out forwards;
}

.anim.fadeIn.is-animated {
    animation: fadeIn 1s ease-in-out forwards;
}

.anim.fadeInLeft.is-animated {
    animation: fadeInLeft 1s ease-in-out forwards;
}

.anim.fadeInRight.is-animated {
    animation: fadeInRight 1s ease-in-out forwards;
}

.anim.scaled_x.is-animated {
    transform-origin: left;
    animation: scaled_x 1s ease-in-out forwards;
}

.anim.scaled_y.is-animated {
    transform-origin: right;
    animation: scaled_x 1s ease-in-out forwards;
}

@media screen and (max-width: 768px) {
    html {
        font-size: 0.133333vw;
    }

    .pc {
        display: none !important;
    }

    .pc-block {
        display: none !important;
    }

    .sp {
        display: flex !important;
    }

    .sp-block {
        display: block !important;
    }
}

header {
    width: 100%;
    height: 65rem;
    padding: 0 105rem 0 40rem;
    background: white;
    box-shadow: 0rem 4rem 0rem rgba(18, 54, 96, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 3;
}

header .logo {
    width: 177rem;
    display: flex;
}

header nav ul {
    display: flex;
    align-items: center;
}

header nav ul li {
    padding: 0 35rem;
}

header nav ul li:last-child {
    padding-right: 0;
}

header nav ul li a {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 16rem;
    text-align: left;
    color: #123660;
    position: relative;
}

header nav ul li a:hover:after {
    width: 100%;
}

header nav ul li a:after {
    content: "";
    width: 0;
    height: 0;
    border-bottom: 1rem solid #123660;
    position: absolute;
    left: 0;
    bottom: -5rem;
    transition: 0.4s;
}

.frontview {
    padding: 120rem 0;
    margin-top: 65rem;
}

.frontview .inner {
    width: 970rem;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.frontview .inner .content__text .lbl__mark {
    width: 160rem;
    height: 39rem;
    border-radius: 19.5rem;
    margin-bottom: 15rem;
    background: #123660;
    display: flex;
    justify-content: center;
    align-items: center;
}

.frontview .inner .content__text .lbl__mark span {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: normal;
    font-size: 20rem;
    text-align: center;
    color: #fafafa;
}

.frontview .inner .content__text .t__wrapper {
    display: flex;
    align-items: center;
}

.frontview .inner .content__text .t__wrapper .logo__txt {
    width: 196rem;
    margin-right: 10rem;
    display: flex;
}

.frontview .inner .content__text .t__wrapper .txt {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 30rem;
    text-align: left;
    color: #123660;
}

.frontview .inner .content__text .c__txt {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: normal;
    font-size: 16rem;
    line-height: 25.6rem;
    margin-top: 30rem;
    text-align: left;
    color: #123660;
}

.frontview .inner .image__wrapper {
    width: 350rem;
    display: flex;
}

.title__wrapper {
    display: inline-block;
    position: relative;
    padding: 0 40rem;
}

.title__wrapper.--blue:before {
    background: #cfeaf2;
}

.title__wrapper.search span {
    left: 20rem;
}

.title__wrapper.search:after {
    content: "";
    width: 28rem;
    height: 28rem;
    background: url(../img/search_icon.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 20rem;
    top: 50%;
    transform: translateY(-50%);
}

.title__wrapper span {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
    font-size: 24rem;
    text-align: left;
    color: #123660;
    position: relative;
}

.title__wrapper:before {
    content: "";
    width: 100%;
    height: 15rem;
    background: #fff;
    position: absolute;
    left: 50%;
    bottom: -1rem;
    transform: translate(-50%) skew(-30deg);
    z-index: 0;
}

.section-using-method {
    width: 100%;
    background: #cfeaf2;
    padding: 1rem 0 120rem;
    text-align: center;
}

.section-using-method .using-content {
    display: inline-block;
    padding-top: 100rem;
}

.section-using-method .using-content .d-using__text {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40rem 0 0;
}

.section-using-method .using-content .image__wrapper {
    width: 164rem;
    margin-left: 40rem;
}

.section-using-method .using-content .t__txt {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 20rem;
    text-align: left;
    color: #123660;
}

.section-using-method .using-content .c__txt {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: normal;
    font-size: 16rem;
    line-height: 25.6rem;
    margin-top: 10rem;
    text-align: left;
    color: #123660;
}

.section-using-method .find-frame {
    text-align: center;
    padding-top: 100rem;
}

.section-using-method .find-frame .search__wrapper {
    width: 880rem;
    margin: auto;
    margin-top: 50rem;
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
}

.section-using-method .find-frame .search__wrapper.c01 {
    justify-content: center;
}

.section-using-method .find-frame .search__wrapper .p__item {
    width: 33.3333333333%;
    padding: 0 15rem;
    margin-bottom: 15rem;
}

.section-using-method .find-frame .search__wrapper .p__item a {
    width: 100%;
    height: 44rem;
    border-radius: 10rem;
    background: #fff;
    border: 1rem solid #123660;
    box-shadow: 0rem 5rem 0rem #123660;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.section-using-method .find-frame .search__wrapper .p__item a:hover {
    background: #06b4d6;
}

.section-using-method .find-frame .search__wrapper .p__item a:hover span {
    color: white;
}

.section-using-method .find-frame .search__wrapper .p__item a span {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 16rem;
    text-align: left;
    color: #123660;
}

.bg__dots {
    width: 80%;
    height: 314rem;
    background: url(../img/dot_pattern04.png);
    background-size: cover;
    position: absolute;
    bottom: 100rem;
    right: 0;
    z-index: -1;
}

.section-element__wrapper {
    padding-top: 130rem;
    text-align: center;
    position: relative;
}

.section-element__wrapper#item05 {
    padding-top: 0;
}

.section-element__wrapper#item05 .content__inner .c__item .image__wrapper {
    height: 190rem;
}

.section-element__wrapper .note__txt {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: normal;
    font-size: 16rem;
    line-height: 25.6rem;
    margin-top: 8rem;
    text-align: center;
    color: #123660;
}

.section-element__wrapper img {
    -o-object-fit: contain;
    object-fit: contain;
}

.section-element__wrapper.--other .content__inner {
    justify-content: center;
    margin-top: 25rem;
}

.section-element__wrapper.--other .content__inner .c__item.--long {
    margin-bottom: 40rem;
}

.section-element__wrapper.--other .content__inner .c__item.--long .image__wrapper {
    height: 180rem;
}

.section-element__wrapper.--other .content__inner .c__item.--long .image__wrapper.c01 {
    height: 90rem;
}

.section-element__wrapper.--other .content__inner .c__item {
    width: 320rem;
    margin-bottom: 0;
}

.section-element__wrapper.--other .content__inner .c__item .image__wrapper {
    height: 100rem;
}

.section-element__wrapper.--other .content__inner .c__item .image__wrapper.c01 {
    height: 50rem;
}

.section-element__wrapper.--other .content__inner .c__item.QR .image__wrapper {
    height: 250rem;
}

.section-element__wrapper .d__txt {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
    font-size: 20rem;
    margin-top: 50rem;
    text-align: center;
    color: #123660;
}

.section-element__wrapper .content__inner {
    width: 728rem;
    margin: auto;
    margin-top: 60rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.section-element__wrapper .content__inner.--center {
    justify-content: center;
}

.section-element__wrapper .content__inner.c01 {
    width: 780rem;
}

.section-element__wrapper .content__inner.c01 .c__item {
    width: 380rem;
}

.section-element__wrapper .content__inner.c01 .c__item .tag__link {
    padding: 15rem;
}

.section-element__wrapper .content__inner.c01 .c__item .tag__link span {
    font-size: 16rem;
    color: #123660;
    text-align: left;
}

.section-element__wrapper .content__inner.--sublink {
    margin-top: 40rem;
    visibility: hidden;
    opacity: 0;
    display: none;
}

.section-element__wrapper .content__inner.--sublink .c__item {
    margin-bottom: 0;
}

.section-element__wrapper .content__inner.--sublink.active {
    display: flex;
    visibility: visible;
    animation: 0.5s fadeIn forwards;
}

.section-element__wrapper .content__inner .c__item {
    width: 300rem;
    margin-bottom: 70rem;
}

.section-element__wrapper .content__inner .c__item.--long:last-child {
    margin-bottom: 0;
}

.section-element__wrapper .content__inner .c__item.--long {
    width: 100%;
    margin-bottom: 60rem;
}

.section-element__wrapper .content__inner .c__item.--long .image__wrapper {
    height: 90rem;
}

.section-element__wrapper .content__inner .c__item.h100 .image__wrapper {
    height: 100rem;
}

.section-element__wrapper .content__inner .c__item .image__wrapper {
    width: 100%;
    height: 250rem;
}

.section-element__wrapper .content__inner .c__item .lbl {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: normal;
    font-size: 16rem;
    margin: 10rem 0;
    text-align: center;
    color: #123660;
}

.section-element__wrapper .content__inner .c__item .tag__link {
    width: 100%;
    height: auto;
    background: #cfeaf2;
    border: 2rem solid #afc8d8;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    pointer-events: none;
    padding: 15rem;
}

.section-element__wrapper .content__inner .c__item .tag__link span {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: normal;
    font-size: 14rem;
    text-align: left;
    color: #527077;
    width: 100%;
}

.section-element__wrapper .sublink {
    margin-top: 50rem;
    display: flex;
    justify-content: center;
}

.section-element__wrapper .sublink ul {
    display: flex;
    justify-content: center;
}

.section-element__wrapper .sublink ul li {
    padding: 0 15rem;
}

.section-element__wrapper .sublink ul li.active:last-child span {
    background: #ff577c;
}

.section-element__wrapper .sublink ul li.active span {
    background: #06b4d6;
}

.section-element__wrapper .sublink ul li.active span>span {
    color: white;
}

.section-element__wrapper .sublink ul li:hover span {
    background: #06b4d6;
}

.section-element__wrapper .sublink ul li:hover span span {
    color: white;
}

.section-element__wrapper .sublink ul li:hover:last-child span {
    background: #ff577c;
}

.section-element__wrapper .sublink ul li span {
    width: 264rem;
    height: 41rem;
    border-radius: 10rem;
    background: #fff;
    border: 1rem solid #123660;
    box-shadow: 0rem 5rem 0rem #123660;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}

.section-element__wrapper .sublink ul li span span {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 16rem;
    text-align: left;
    color: #123660;
    transition: 0.3s;
}

.section-advantages {
    padding-top: 130rem;
    text-align: center;
    position: relative;
}

.section-advantages.c01 .content__inner .c__item .tag__link span {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: normal;
    font-size: 16rem;
    line-height: 20.8rem;
    text-align: left;
    color: #123660;
}

.section-advantages img {
    -o-object-fit: contain;
    object-fit: contain;
}

.section-advantages .content__inner {
    max-width: 1004rem;
    width: 95%;
    margin: auto;
    margin-top: 60rem;
    display: flex;
    flex-wrap: wrap;
}

.section-advantages .content__inner .c__item {
    width: 33.3333333333%;
    padding: 0 17rem;
    margin-bottom: 50rem;
}

.section-advantages .content__inner .c__item .inner {
    width: 100%;
}

.section-advantages .content__inner .c__item .inner .content__text {
    width: 100%;
    height: auto;
    border-radius: 10rem;
    background: #fff;
    border: 2rem solid #afc8d8;
    padding-top: 34rem;
    padding-bottom: 30rem;
    position: relative;
}

.section-advantages .content__inner .c__item .inner .content__text .bar {
    width: 100%;
    height: 27rem;
    background: #cfeaf2;
    position: absolute;
    bottom: 75rem;
    left: 0;
}

.section-advantages .content__inner .c__item .inner .content__text .image__wrapper {
    width: auto;
    height: 174rem;
    position: relative;
    z-index: 1;
}

.section-advantages .content__inner .c__item .inner .content__text .image__wrapper img {
    -o-object-fit: contain;
    object-fit: contain;
}

.section-advantages .content__inner .c__item .inner .content__text .lbl__inner {
    width: 100%;
    height: 64rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.section-advantages .content__inner .c__item .inner .content__text .lbl__inner span {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
    font-size: 20rem;
    text-align: center;
    color: #123660;
}

.section-advantages .content__inner .c__item .inner .tag__lbl {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
    font-size: 16rem;
    margin-top: 15rem;
    text-align: left;
    color: #123660;
}

.section-advantages .content__inner .c__item .inner .tag__link {
    width: 100%;
    height: auto;
    background: #cfeaf2;
    border: 2rem solid #afc8d8;
    margin-top: 17rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    pointer-events: none;
    padding: 15rem;
}

.section-advantages .content__inner .c__item .inner .tag__link span {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: normal;
    font-size: 14rem;
    text-align: left;
    color: #527077;
}

footer {
    margin-top: 100rem;
    background: #082d59;
    padding: 25rem 0 20rem;
}

footer ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

footer ul li {
    padding: 0 25rem;
}

footer ul li a {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 15rem;
    text-align: left;
    color: #fff;
}

footer .copyright {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: normal;
    font-size: 16rem;
    margin-top: 40rem;
    text-align: center;
    color: #f8fdff;
}

.intro__frontview {
    background: #06b4d6;
    padding: 100rem 0;
    margin-top: 65rem;
}

.intro__frontview .t__title {
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro__frontview .t__title .logo__txt {
    width: 301rem;
    display: flex;
    margin-right: 10rem;
}

.intro__frontview .t__title .txt {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 50rem;
    line-height: 65rem;
    text-align: left;
    color: #fff;
}

.intro__frontview .detail__txt {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: normal;
    font-size: 18rem;
    line-height: 28.8rem;
    margin-top: 15rem;
    text-align: center;
    color: #fff;
}

.intro-title__wrapper {
    display: inline-block;
}

.intro-title__wrapper.banner .ja__txt::before,
.intro-title__wrapper.banner .ja__txt::after {
    background: url(../img/sub/img_medicine3.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.intro-title__wrapper .ja__txt {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 32rem;
    line-height: 41.6rem;
    text-align: center;
    color: #123660;
    position: relative;
}

.intro-title__wrapper .ja__txt:before {
    content: "";
    width: 24rem;
    height: 25rem;
    background: url(../img/sub/img_medicine2.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: -64rem;
    top: 50%;
    transform: translateY(-50%);
}

.intro-title__wrapper .ja__txt:after {
    content: "";
    width: 24rem;
    height: 25rem;
    background: url(../img/sub/img_medicine2.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    right: -64rem;
    top: 50%;
    transform: translateY(-50%);
}

.intro-title__wrapper .en__txt {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
    font-size: 13rem;
    line-height: 20.8rem;
    margin-top: 5rem;
    text-align: center;
    color: #123660;
}

.using-method {
    text-align: center;
    padding-top: 100rem;
}

.using-method .content__wrapper {
    width: auto;
    margin: auto;
    margin-top: 25rem;
    background: white;
    padding: 30rem 50rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.using-method .content__wrapper .content__text {
    width: auto;
}

.using-method .content__wrapper .content__text .t__txt {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 20rem;
    line-height: 26rem;
    text-align: left;
    color: #06b4d6;
}

.using-method .content__wrapper .content__text .c__txt {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: normal;
    font-size: 16rem;
    line-height: 25.6rem;
    margin-top: 20rem;
    text-align: left;
    color: #123660;
}

.using-method .content__wrapper .image__wrapper {
    width: 164rem;
    margin-left: 60rem;
    display: flex;
}

.section-banner-list {
    padding-top: 100rem;
    text-align: center;
}

.section-banner-list .note__txt {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: normal;
    font-size: 16rem;
    line-height: 25.6rem;
    margin-top: 24rem;
    text-align: center;
    color: #123660;
}

.section-banner-list .sublink {
    width: 940rem;
    margin: auto;
    margin-top: 25rem;
}

.section-banner-list .sublink ul {
    display: flex;
    flex-wrap: wrap;
}

.section-banner-list .sublink ul li {
    width: 25%;
    padding: 0 5rem;
}

.section-banner-list .sublink ul li a {
    width: 225rem;
    height: 70rem;
    border-radius: 6rem;
    background: #fff;
    border: 2rem solid #123660;
    box-shadow: 0rem 5rem 0rem #123660;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.section-banner-list .sublink ul li a:hover {
    background: #06b4d6;
}

.section-banner-list .sublink ul li a:hover span {
    color: white;
}

.section-banner-list .sublink ul li a span {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 18rem;
    line-height: 23.4rem;
    text-align: center;
    color: #123660;
    transition: 0.3s;
}

.section-banner-list .sub-title__wrapper {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 24rem;
    line-height: 36.4rem;
    text-align: left;
    color: #123660;
    padding-left: 17rem;
    position: relative;
}

.section-banner-list .sub-title__wrapper.--small {
    font-size: 20rem;
    line-height: 30rem;
}

.section-banner-list .sub-title__wrapper:after {
    content: "";
    width: 10rem;
    height: 10rem;
    background: #06b4d6;
    border: 2rem solid #123660;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.section-banner-list .online-guidance-banner {
    padding-top: 74rem;
    width: 930rem;
    margin: auto;
}

.section-banner-list .online-guidance-banner.--step .step__items {
    width: 100%;
    margin-top: 20rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.section-banner-list .online-guidance-banner.--step .step__items .s__item {
    width: 300rem;
    margin-bottom: 45rem;
}

.section-banner-list .online-guidance-banner.--step .step__items .s__item .lbl {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
    font-size: 20rem;
    line-height: 26rem;
    text-align: center;
    color: #123660;
}

.section-banner-list .online-guidance-banner.--step .step__items .s__item .content__frame {
    width: 300rem;
    height: auto;
    border-radius: 10rem;
    margin-top: 15rem;
    background: #fff;
    border: 2rem solid #afc8d8;
    padding: 30rem 0;
    position: relative;
}

.section-banner-list .online-guidance-banner.--step .step__items .s__item .content__frame .bar {
    width: 100%;
    height: 27rem;
    background: #cfeaf2;
    position: absolute;
    bottom: 73rem;
    left: 0;
}

.section-banner-list .online-guidance-banner.--step .step__items .s__item .content__frame .image__wrapper {
    width: auto;
    height: 184rem;
    position: relative;
    z-index: 1;
}

.section-banner-list .online-guidance-banner.--step .step__items .s__item .content__frame .image__wrapper img {
    -o-object-fit: contain;
    object-fit: contain;
}

.section-banner-list .online-guidance-banner.--step .step__items .s__item .content__frame .t__txt {
    width: 100%;
    height: 60rem;
    margin-top: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.section-banner-list .online-guidance-banner.--step .step__items .s__item .content__frame .t__txt span {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
    font-size: 20rem;
    text-align: center;
    color: #123660;
}

.section-banner-list .online-guidance-banner.--step .step__items .s__item .n__txt {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: normal;
    font-size: 13rem;
    line-height: 16.9rem;
    margin-top: 15rem;
    text-align: left;
    color: #123660;
}

.section-banner-list .online-guidance-banner.--step .step__items .s__item .dummy__txt {
    width: 100%;
    padding: 15rem;
    text-align: left;
}

.section-banner-list .online-guidance-banner.--step .step__items .s__item .dummy__txt span {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: normal;
    font-size: 16rem;
    line-height: 20.8rem;
    text-align: left;
    color: #123660;
}

.section-banner-list .online-guidance-banner .d__txt {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: normal;
    font-size: 16rem;
    line-height: 25.6rem;
    margin-top: 2rem;
    padding-left: 17rem;
    text-align: left;
    color: #123660;
}

.section-banner-list .online-guidance-banner .content__inner {
    width: 100%;
    background: white;
    margin-top: 30rem;
    padding: 50rem 75rem;
}

.section-banner-list .online-guidance-banner .content__inner .c__item {
    width: 100%;
    margin-bottom: 50rem;
}

.section-banner-list .online-guidance-banner .content__inner .c__item:last-child {
    margin-bottom: 0;
}

.section-banner-list .online-guidance-banner .content__inner .c__item:last-child .item__inner {
    margin-bottom: 0;
}

.section-banner-list .online-guidance-banner .content__inner .c__item.--middle .item__inner .c__element {
    width: 100%;
    margin-top: 0;
}

.section-banner-list .online-guidance-banner .content__inner .c__item.--middle .item__inner .c__element .image__wrapper {
    width: 100%;
    height: 240rem;
}

.section-banner-list .online-guidance-banner .content__inner .c__item.--center .item__inner .c__element {
    width: 370rem;
    margin: auto;
    margin-top: 20rem;
}

.section-banner-list .online-guidance-banner .content__inner .c__item.--center .item__inner .c__element .image__wrapper {
    width: 100%;
    height: 150rem;
}

.section-banner-list .online-guidance-banner .content__inner .c__item.--long .item__inner .c__element {
    width: 100%;
}

.section-banner-list .online-guidance-banner .content__inner .c__item.--long .item__inner .c__element .image__wrapper {
    width: 100%;
    height: 140rem;
}

.section-banner-list .online-guidance-banner .content__inner .c__item .item__inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 60rem;
}

.section-banner-list .online-guidance-banner .content__inner .c__item .item__inner .c__element {
    width: 380rem;
    margin-top: 20rem;
    margin-bottom: 20rem;
}

.section-banner-list .online-guidance-banner .content__inner .c__item .item__inner .c__element:last-child {
    margin-bottom: 0;
}

.section-banner-list .online-guidance-banner .content__inner .c__item .item__inner .c__element .lbl {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 16rem;
    line-height: 20.8rem;
    text-align: left;
    color: #123660;
}

.section-banner-list .online-guidance-banner .content__inner .c__item .item__inner .c__element .image__wrapper {
    width: 350rem;
    height: 300rem;
    margin: auto;
    margin-top: 10rem;
}

.section-banner-list .online-guidance-banner .content__inner .c__item .item__inner .c__element .n__txt {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: normal;
    font-size: 13rem;
    line-height: 16.9rem;
    margin-top: 14rem;
    text-align: left;
    color: #123660;
}

.section-banner-list .online-guidance-banner .content__inner .c__item .item__inner .c__element .tag__content {
    background: #f5f5f5;
    padding: 15rem;
}

.section-banner-list .online-guidance-banner .content__inner .c__item .item__inner .c__element .tag__content p {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: normal;
    font-size: 16rem;
    line-height: 20.8rem;
    text-align: left;
    color: #123660;
}

@media screen and (max-width: 1060px) {
    html {
        font-size: 0.8px;
    }

    header {
        padding: 0 55rem 0 40rem;
    }
}

@media screen and (max-width: 768px) {
    html {
        font-size: 0.23364485vw;
    }

    header {
        padding: 0 40rem;
    }

    .frontview {
        padding: 90rem 0 80rem;
        margin-top: 65rem;
    }

    .frontview .inner {
        width: 338rem;
        margin: auto;
        display: block;
    }

    .frontview .inner .content__text .t__wrapper .logo__txt {
        width: 132rem;
        margin-right: 5rem;
    }

    .frontview .inner .content__text .t__wrapper .txt {
        font-size: 20rem;
    }

    .frontview .inner .content__text .c__txt {
        font-size: 14rem;
        line-height: 25.6rem;
        margin-top: 20rem;
    }

    .frontview .inner .image__wrapper {
        width: 257rem;
        margin: auto;
        margin-top: 60rem;
    }

    .section-using-method .using-content {
        display: inline-block;
        width: 348rem;
        margin: auto;
        padding-top: 60rem;
    }

    .title__wrapper span {
        font-size: 20rem;
    }

    .section-using-method .using-content .t__txt {
        font-size: 16rem;
    }

    .section-using-method .using-content .c__txt {
        font-size: 14rem;
        line-height: 25.6rem;
    }

    .section-using-method .find-frame {
        padding-top: 60rem;
    }

    .section-using-method .find-frame .search__wrapper {
        width: 348rem;
        margin: auto;
        margin-top: 30rem;
    }

    .section-using-method .find-frame .search__wrapper .p__item {
        width: 264rem;
        margin: auto;
        margin-bottom: 15rem;
        padding: 0;
    }

    .section-element__wrapper {
        padding-top: 60rem;
    }

    .section-element__wrapper .content__inner {
        width: 348rem;
        margin: auto;
        margin-top: 40rem;
        justify-content: center;
    }

    .section-element__wrapper .content__inner .c__item {
        margin-bottom: 30rem;
    }

    .section-element__wrapper .content__inner .c__item .lbl {
        font-size: 14rem;
        margin: 5rem 0;
    }

    .section-element__wrapper .content__inner .c__item.--long .image__wrapper {
        height: 44rem;
    }

    .section-element__wrapper .content__inner .c__item.--long {
        width: 100%;
        margin-bottom: 30rem;
    }

    .section-advantages {
        padding-top: 60rem;
    }

    .section-advantages .content__inner {
        width: 300rem;
        margin: auto;
        margin-top: 40rem;
    }

    .section-advantages .content__inner .c__item {
        width: 100%;
        padding: 0;
        margin-bottom: 30rem;
    }

    .section-advantages .content__inner .c__item .inner .tag__lbl {
        margin-top: 6rem;
    }

    .section-advantages .content__inner .c__item .inner .tag__link {
        margin-top: 6rem;
    }

    .section-element__wrapper .d__txt {
        font-size: 16rem;
        margin-top: 30rem;
    }

    .section-element__wrapper.--other .content__inner {
        justify-content: center;
        margin-top: 20rem;
    }

    .section-element__wrapper.--other .content__inner .c__item.--long .image__wrapper {
        height: auto;
        display: flex;
    }

    .section-element__wrapper.--other .content__inner .c__item.--long {
        width: 100%;
        margin-bottom: 30rem;
    }

    .section-element__wrapper.--other .content__inner .c__item .image__wrapper {
        height: auto;
        display: flex;
    }

    .section-element__wrapper .d__txt {
        font-size: 16rem;
        margin-top: 40rem;
    }

    .section-element__wrapper.--other .content__inner .c__item {
        width: 320rem;
        margin-bottom: 0;
    }

    .section-element__wrapper.--other .content__inner .c__item.QR {
        width: 300rem;
    }

    .section-element__wrapper.--other .content__inner .c__item.--long .image__wrapper.c01 {
        height: auto;
        display: flex;
    }

    .section-element__wrapper.--other .content__inner .c__item.c02 {
        width: 320rem;
    }

    .section-element__wrapper .sublink {
        margin-top: 30rem;
        display: block;
    }

    .section-element__wrapper .sublink ul {
        width: 264rem;
        margin: auto;
        display: block;
    }

    .section-element__wrapper .sublink ul li {
        width: 100%;
        padding: 7.5rem 0;
    }

    .section-element__wrapper .content__inner.--sublink {
        margin-top: 30rem;
    }

    .section-element__wrapper .content__inner.--sublink .c__item {
        margin-bottom: 30rem;
    }

    .section-element__wrapper .content__inner .c__item.--long .image__wrapper {
        height: auto;
        display: flex;
    }

    footer {
        margin-top: 60rem;
        background: #082d59;
        padding: 20rem 0;
    }

    footer .copyright {
        font-size: 14rem;
        margin-top: 0;
    }

    .bg__dots {
        width: 100%;
    }

    .section-advantages .content__inner .c__item .inner .content__text .lbl__inner {
        width: 100%;
        height: auto;
        margin-top: 6rem;
    }

    .sp-menu {
        width: 30rem;
        height: 24rem;
        position: relative;
    }

    .sp-menu.open span:nth-child(1) {
        top: 11rem;
        transform: rotate(45deg);
    }

    .sp-menu.open span:nth-child(2) {
        width: 0;
    }

    .sp-menu.open span:nth-child(3) {
        top: 11rem;
        transform: rotate(-45deg);
    }

    .sp-menu span {
        width: 100%;
        height: 0;
        border-bottom: 4rem solid #082d59;
        border-radius: 2rem;
        position: absolute;
        left: 0;
        top: 0;
        transition: 0.3s;
    }

    .sp-menu span+span {
        top: 11rem;
    }

    .sp-menu span+span+span {
        top: 23rem;
    }

    header nav ul {
        width: 100%;
        height: 100%;
        background: white;
        position: fixed;
        top: 65rem;
        left: 0;
        display: block;
        padding-top: 40rem;
        display: none;
    }

    header nav ul li {
        padding: 20rem 0;
        text-align: center;
    }

    header.intro {
        justify-content: center;
    }

    .intro__frontview {
        padding: 80rem 0;
    }

    .intro__frontview .t__title .logo__txt {
        width: 163rem;
    }

    .intro__frontview .t__title .txt {
        font-size: 26rem;
        line-height: 34rem;
    }

    .intro__frontview .detail__txt {
        width: 345rem;
        margin: auto;
        font-size: 16rem;
        line-height: 28.8rem;
        margin-top: 45rem;
        text-align: justify;
    }

    .using-method {
        padding-top: 60rem;
    }

    .intro-title__wrapper .ja__txt {
        font-size: 20rem;
        line-height: 26rem;
    }

    .intro-title__wrapper .en__txt {
        font-size: 11rem;
        line-height: 20.8rem;
        margin-top: 2rem;
    }

    .intro-title__wrapper .ja__txt:before {
        left: -44rem;
    }

    .intro-title__wrapper .ja__txt::after {
        right: -44rem;
    }

    .using-method .content__wrapper {
        width: 388rem;
        margin: auto;
        margin-top: 15rem;
        padding: 30rem;
        display: block;
    }

    .using-method .content__wrapper .content__text .t__txt {
        font-size: 16rem;
    }

    .using-method .content__wrapper .content__text .c__txt {
        font-size: 14rem;
        line-height: 25.6rem;
        margin-top: 10rem;
        text-align: justify;
    }

    .using-method .content__wrapper .image__wrapper {
        margin: auto;
        margin-top: 30rem;
    }

    .section-banner-list {
        padding-top: 60rem;
    }

    .section-banner-list .note__txt {
        font-size: 14rem;
        line-height: 25.6rem;
        margin-top: 15rem;
    }

    .section-banner-list .sublink {
        width: 398rem;
        margin: auto;
        margin-top: 15rem;
    }

    .section-banner-list .sublink ul li {
        width: 50%;
        padding: 5rem;
    }

    .section-banner-list .sublink ul li a {
        width: 100%;
        height: 75rem;
        border-radius: 6rem;
    }

    .section-banner-list .sublink ul li a span {
        font-size: 16rem;
    }

    .section-banner-list .online-guidance-banner {
        padding-top: 60rem;
        width: 388rem;
    }

    .section-banner-list .sub-title__wrapper {
        font-size: 20rem;
        line-height: 1.5;
    }

    .section-banner-list .sub-title__wrapper:after {
        width: 8rem;
        height: 8rem;
    }

    .section-banner-list .online-guidance-banner .d__txt {
        font-size: 16rem;
        line-height: 20.6rem;
    }

    .section-banner-list .online-guidance-banner .content__inner {
        margin-top: 10rem;
        padding: 30rem 0 0;
    }

    .section-banner-list .sub-title__wrapper.--small {
        font-size: 16rem;
    }

    .section-banner-list .online-guidance-banner .content__inner .c__item .item__inner .c__element {
        width: 100%;
    }

    .section-banner-list .online-guidance-banner .content__inner .c__item .item__inner .c__element .image__wrapper {
        width: 350rem;
        height: auto;
        display: flex;
    }

    .section-banner-list .online-guidance-banner .content__inner .c__item .item__inner .c__element .n__txt {
        font-size: 14rem;
        line-height: 16.9rem;
        margin-top: 11rem;
    }

    .section-banner-list .online-guidance-banner .content__inner .c__item .item__inner .c__element .tag__content p {
        font-size: 14rem;
    }

    .section-banner-list .online-guidance-banner .content__inner .c__item .item__inner .c__element {
        margin-bottom: 0;
    }

    .section-banner-list .online-guidance-banner .content__inner .c__item {
        margin-bottom: 30rem;
    }

    .section-banner-list .online-guidance-banner .content__inner .c__item .item__inner {
        margin-bottom: 30rem;
    }

    .section-banner-list .online-guidance-banner .content__inner .c__item.--long .item__inner .c__element .image__wrapper {
        width: 100%;
        height: auto;
        display: flex;
    }

    .section-banner-list .online-guidance-banner .content__inner .c__item.--center .item__inner .c__element .image__wrapper {
        width: 100%;
        height: auto;
        display: flex;
    }

    .section-banner-list .sub-title__wrapper:after {
        top: 10rem;
        transform: unset;
    }

    .section-banner-list .online-guidance-banner.--step .step__items {
        justify-content: center;
    }

    .section-banner-list .online-guidance-banner.--step .step__items .s__item .lbl {
        font-size: 16rem;
        line-height: 20rem;
    }

    .section-banner-list .online-guidance-banner.--step .step__items .s__item .content__frame {
        border-radius: 10rem;
        margin-top: 6rem;
    }

    .section-banner-list .online-guidance-banner.--step .step__items .s__item .content__frame .t__txt {
        width: 100%;
        height: auto;
        margin-top: 20rem;
    }

    .section-banner-list .online-guidance-banner.--step .step__items .s__item {
        width: 100%;
        margin-bottom: 20rem;
    }

    .section-banner-list .online-guidance-banner.--step .step__items .s__item .content__frame {
        margin: auto;
        margin-top: 5rem;
    }

    .section-banner-list .online-guidance-banner.--step .step__items .s__item .n__txt {
        font-size: 14rem;
        line-height: 16.9rem;
        margin-top: 10rem;
    }

    .section-banner-list .online-guidance-banner.--step .step__items .s__item .dummy__txt span {
        font-size: 14rem;
        line-height: 20.8rem;
    }

    .section-banner-list .online-guidance-banner .content__inner .c__item.--middle .item__inner .c__element .image__wrapper {
        width: 100%;
        height: auto;
    }

    .section-using-method .using-content .d-using__text {
        margin: 20rem 0 0;
    }

    .section-element__wrapper .content__inner.c01 {
        width: 388rem;
    }

    .frontview .inner .content__text .lbl__mark {
        width: 114rem;
        height: 30rem;
        margin-bottom: 5rem;
    }

    .frontview .inner .content__text .lbl__mark span {
        font-size: 14rem;
    }

    .section-using-method .using-content .d-using__text {
        display: block;
    }

    .section-using-method .using-content .image__wrapper {
        margin: auto;
        margin-top: 50rem;
    }

    .section-element__wrapper .content__inner.c01 .c__item .tag__link span {
        font-size: 14rem;
    }

    .section-element__wrapper .content__inner.c01 .c__item.--long .image__wrapper {
        height: 42rem;
    }

    .section-element__wrapper .note__txt {
        display: inline-block;
        text-align: justify;
    }

    .section-element__wrapper .note__txt {
        margin-top: 15rem;
    }

    .section-element__wrapper#item05 .content__inner .c__item .image__wrapper {
        height: 88rem;
    }

    .title__wrapper {
        display: inline-block;
        position: relative;
        padding: 0 25rem;
    }

    .section-advantages.c01 .content__inner {
        width: 388rem;
    }

    .section-advantages .content__inner .c__item .inner .content__text {
        width: 300rem;
        margin: auto;
    }

    .section-advantages.c01 .content__inner .c__item .inner .tag__lbl {
        margin-top: 10rem;
        padding-left: 45rem;
    }
}

/*# sourceMappingURL=style.css.map */