html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}
body {
    line-height: 1;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
nav ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after {
    content: '';
    content: none;
}
q:before, q:after {
    content: '';
    content: none;
}
a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}
ins {
    background-color: #ff9;
    color: #000;
    text-decoration: none;
}
mark {
    background-color: #ff9;
    color: #000;
    font-style: italic;
    font-weight: bold;
}
del {
    text-decoration: line-through;
}
abbr[title], dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #cccccc;
    margin: 1em 0;
    padding: 0;
}
input, select {
    vertical-align: middle;
}
* {
    box-sizing: border-box;
}
*::before, *::after {
    box-sizing: border-box;
}
a, area, button, [role="button"], input:not([type="range"]), label, select, summary, textarea {
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}
html {
    font-size: 3.86vw;
}
@media screen and (min-width: 768px) {
    html {
        font-size: 1.8vw;
    }
}
@media screen and (min-width: 1000px) {
    html {
        font-size: 18px;
    }
}
body {
    font-family: "Zen Kaku Gothic New",sans-serif;
    font-weight: 500;
    font-style: normal;
}
body a {
    color: inherit;
    text-decoration: none;
}
body img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}
body em {
    font-style: normal;
}
body li {
    list-style: none;
}
body h1, body h2, body h3, body h4, body h5, body h6 {
    font-weight: inherit;
}
.wrap {
    background: #fff;
    width: 100%;
    color: #402f34;
}
body a {
    transition: all .2s ease-in-out;
    cursor: pointer;
}
@media screen and (min-width: 768px) {
    body a:hover {
        opacity: .7;
    }
}
.wrap img {
    width: 100%;
    height: auto;
}
.wrap .font {
    font-family: "Jost",sans-serif;
    font-weight: 400;
    font-style: normal;
}
.header {
    background: #fff;
    width: 100%;
    color: #402f34;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;
}
.header__inner {
    width: 85%;
    margin: 0 auto;
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
}
@media screen and (min-width: 768px) {
    .header__inner {
        width: 90%;
        max-width: 1000px;
    }
}
.header__heading {
    margin: 0 auto;
    padding: .6rem 0;
}
.header__heading img {
    width: auto;
    height: 2.8rem;
}
.header__nav {
    transition: all .2s ease-in-out;
    background: #402f34;
    width: fit-content;
    max-width: 100vw;
    height: 0;
    padding: 0;
    display: block;
    position: absolute;
    top: 4rem;
    right: 0;
    opacity: 0;
    overflow: hidden;
}
.header__nav.is-active {
    height: auto;
    opacity: 1;
}
.header__nav.is-active a {
    padding: .3em;
    color: #f8f5dc;
    cursor: pointer;
    display: block;
}
.header__nav-item {
    padding: .5rem 2rem;
    text-align: center;
}
.header__nav-item:first-child {
    padding-top: 2rem;
}
.header__nav-item:last-child {
    padding-bottom: 2rem;
}
.header__nav-item a {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: left;
}
.header__nav-button {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1100;
}
.header__nav-button button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    background-color: #402f34;
    width: 4rem;
    height: 4rem;
    border: 1px solid #402f34;
    position: relative;
    cursor: pointer;
}
.header__nav-button button span, .header__nav-button button::before, .header__nav-button button::after {
    background-color: #f8f5dc;
    width: 60%;
    height: 4px;
    margin: auto;
    display: block;
    position: absolute;
    right: 0;
    left: 0;
}
.header__nav-button button span {
    color: transparent;
    font-size: 1px;
    overflow: hidden;
    top: 0;
    bottom: 0;
    animation: navToggleCenter_reverse .1s;
}
.header__nav-button button::before {
    content: '';
    top: 20%;
    animation: navToggleTop_reverse .1s;
}
.header__nav-button button::after {
    content: '';
    top: calc(80% - 4px);
    animation: navToggleBottom_reverse .1s;
}
.header__nav-button button.is-open span {
    opacity: 0;
    animation: navToggleCenter .2s;
}
.header__nav-button button.is-open::before {
    top: calc(50% - (4px / 2));
    transform: rotate(45deg) scale(1.2);
    animation: navToggleTop .2s;
}
.header__nav-button button.is-open::after {
    top: calc(50% - (4px / 2));
    transform: rotate(-45deg) scale(1.2);
    animation: navToggleBottom .2s;
}
.header__nav a {
    cursor: none;
    display: none;
}
@media screen and (min-width: 768px) {
    .header {
        transition: all .2s ease-in-out;
        position: fixed;
        background: none;
    }
    .header.is-blur {
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(10px);
    }
    .header__inner {
        width: 100%;
        max-width: none;
        display: block;
    }
    .header__heading {
        margin: 0;
        padding: .6rem 0 .6rem 1rem;
    }
}
@keyframes navToggleCenter {
    0% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}
@keyframes navToggleCenter_reverse {
    0% {
        opacity: 0;
    }
    50%, 100% {
        opacity: 1;
    }
}
@keyframes navToggleTop {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(45deg) scale(1.2);
    }
    100% {
        top: calc(50% - (4px / 2));
    }
}
@keyframes navToggleTop_reverse {
    0% {
        top: calc(50% - (4px / 2));
    }
    50% {
        transform: rotate(0deg) scale(1);
    }
    100% {
        top: 20%;
    }
}
@keyframes navToggleBottom {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(-45deg) scale(1.2);
    }
    100% {
        top: calc(50% - (4px / 2));
    }
}
@keyframes navToggleBottom_reverse {
    0% {
        top: calc(50% - (4px / 2));
    }
    50% {
        transform: rotate(0deg) scale(1);
    }
    100% {
        top: calc(80% - 4px);
    }
}
.visual {
    background-color: #fff;
    background-image: url("../images/visual.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 45rem;
}
.visual__inner {
    width: 85%;
    margin: 0 auto;
    width: 90%;
}
@media screen and (min-width: 768px) {
    .visual__inner {
        width: 90%;
        max-width: 1000px;
    }
}
.visual__heading {
    margin: 0 auto;
    padding: 3rem 0 0;
    font-weight: 700;
    display: flex;
    flex-flow: column;
    align-items: center;
}
.visual__heading .season {
    font-size: 1.7rem;
}
.visual__heading .season .large {
    font-size: 1.66em;
}
.visual__heading .shop {
    background-image: url("../images/visual_heading02.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 9em;
    line-height: 2.2em;
    font-size: 1.31rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.visual__heading .image {
    max-width: 18rem;
    margin: 0 auto;
    padding: 1rem 0 0;
}
.visual__catch {
    filter: drop-shadow(2px 2px 2px rgba(64, 47, 52, 0.2));
    max-width: 14rem;
    padding: 6rem 0 7rem;
}
@media screen and (min-width: 768px) {
    .visual__catch {
        filter: drop-shadow(3px 3px 3px rgba(64, 47, 52, 0.2));
    }
}
.visual__catch-item {
    font-feature-settings: 'palt';
    font-size: 1.45rem;
}
.visual__catch-item .marker {
    margin: 0 0 .3em;
    padding: .1em;
    display: inline-block;
}
.visual__catch-item .marker01 {
    background: linear-gradient(45deg, #ffa998, #ff8778);
    color: white;
}
.visual__catch-item .marker02 {
    background: linear-gradient(45deg, #ff8778, #ffa998);
    color: white;
}
.visual__appeal {
    filter: drop-shadow(2px 2px 2px rgba(64, 47, 52, 0.2));
    padding: 0 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: .3rem;
}
@media screen and (min-width: 768px) {
    .visual__appeal {
        filter: drop-shadow(3px 3px 3px rgba(64, 47, 52, 0.2));
    }
}
@media screen and (min-width: 768px) {
    .visual {
        background-image: url("../images/visual-pc.webp");
        min-height: 0;
        font-size: 1.3vw;
        aspect-ratio: 20 / 11;
    }
    .visual__inner {
        width: 85%;
        max-width: none;
        padding: 0;
    }
    .visual__heading, .visual__catch, .visual__appeal {
        max-width: 29em;
        margin: 0 0 0 auto;
    }
    .visual__heading {
        padding: 7em 0 0;
    }
    .visual__heading .season {
        font-size: 2.11em;
    }
    .visual__heading .shop {
        width: 8.8em;
        line-height: 2.4em;
        font-size: 1.66em;
    }
    .visual__heading .image {
        max-width: 24em;
    }
    .visual__catch {
        padding: 2em 0;
    }
    .visual__catch-item {
        width: fit-content;
        margin: 0 auto;
        padding: .1em;
        font-size: 1.7em;
    }
    .visual__catch-item .marker {
        margin: 0 0 .3em;
        padding: 0;
        display: inline;
    }
    .visual__catch-item .marker01, .visual__catch-item .marker02 {
        background: none;
        color: white;
    }
    .visual__catch-item01 {
        background: linear-gradient(45deg, #ffa998, #ff8778);
        margin-bottom: .5em;
    }
    .visual__catch-item02 {
        background: linear-gradient(45deg, #ff8778, #ffa998);
    }
    .visual__appeal {
        padding: 0 0 5em;
        grid-gap: .5em;
    }
}
.contents {
    background: transparent;
    color: #402f34;
}
.contents .video, .contents .map {
    width: fit-content;
    margin: 0 auto;
}
.contents .video iframe, .contents .video video {
    width: 100%;
    max-width: 1000px;
    height: auto;
    aspect-ratio: 16 / 9;
}
.contents .map iframe, .contents .map video {
    width: 100%;
    max-width: 1000px;
    height: auto;
    aspect-ratio: 16 / 9;
}
.cv {
    background-color: #ffa998;
    background-image: url("../images/cv.webp");
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 2.5rem 0;
    position: relative;
}
.cv-first .cv__campaign {
    padding: 0 0 1.5rem;
}
.cv-first .cv__heading {
    padding: 0 0 .5rem;
}
.cv__inner {
    width: 85%;
    margin: 0 auto;
}
@media screen and (min-width: 768px) {
    .cv__inner {
        width: 90%;
        max-width: 1000px;
    }
}
.cv__text {
   width: fit-content;
    margin: 0 auto 1em;
    font-weight: 600;
    letter-spacing: .05em;
    line-height: 1.5;
	font-size: 1.2em;
}
.cv__text .font {
	font-size: 1.61em;
}
.cv__text .small {
	font-size: .8em;
	letter-spacing: 0;
}
.cv__text .circle {
	border:  2px solid #402f34;
	border-radius: 100rem;
	font-size: 1em;
	padding: 0 1em;
    margin-right: .5em;
}
.cv__text .pc {
  display: none;
}
.cv__text .sp {
  display: block;
}
@media screen and (min-width: 768px) {
    .cv__text .pc {
  display: block;
}
.cv__text .sp {
  display: none;
}
}
.cv__catch {
    background-color: #f8f5dc;
    width: fit-content;
    margin: 0 auto;
    padding: .2em 1em;
    border: .3rem solid currentColor;
    border-radius: 10em;
    color: #ffa998;
    font-size: 1.31rem;
    font-weight: 600;
    position: absolute;
    top: -1.5rem;
    right: 0;
    left: 0;
    z-index: 10;
}
.cv__catch::before {
    content: '';
    background-color: #f8f5dc;
    width: 1rem;
    height: calc(1rem / 2 * tan(60deg));
    margin: 0 auto;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    position: absolute;
    top: calc(100% - 1px);
    right: 0;
    left: 0;
}
.cv__catch .font {
    font-weight: 500;
}
.cv__catch .large {
    margin: 0 .1em;
    font-size: 1.61em;
}
.cv__heading {
    padding: 0 0 .5rem;
    line-height: 1.6em;
    font-size: 1.62rem;
    font-weight: 700;
    text-align: center;
}
.cv__heading .emphasis {
    color: #f8f5dc;
}
.cv__button {
    padding: 0 0 2rem;
    text-align: center;
    display: grid;
    grid-template-columns: 100%;
    grid-gap: 1rem 0;
}
.cv__button-item .catch {
    line-height: 1.8em;
    font-size: 1.06rem;
    text-align: center;
}
.cv__button-item01 .button a {
    transition: all .2s ease-in-out;
    cursor: pointer;
    filter: drop-shadow(2px 2px 2px rgba(64, 47, 52, 0.2));
    background-color: #7f9aec;
    width: 92%;
    margin: 0 auto;
    border-radius: 10em;
    line-height: 2.6em;
    color: white;
    font-size: 1.56em;
    font-weight: 700;
    text-align: center;
    display: block;
    position: relative;
}
.cv__button-item01 .button a .icon {
    width: 2.7em;
    display: block;
    position: absolute;
    top: -.5em;
    left: -1em;
}
@media screen and (min-width: 768px) {
    .cv__button-item01 .button a:hover {
        opacity: .7;
    }
}
@media screen and (min-width: 768px) {
    .cv__button-item01 .button a {
        filter: drop-shadow(3px 3px 3px rgba(64, 47, 52, 0.2));
    }
}
@media screen and (min-width: 768px) {
    .cv__button-item01 .button a {
        width: 100%;
    }
    .cv__button-item01 .button a .icon {
        left: -.5em;
    }
}
.cv__button-item02 .button a {
    transition: all .2s ease-in-out;
    cursor: pointer;
    filter: drop-shadow(2px 2px 2px rgba(64, 47, 52, 0.2));
    background-color: #06c755;
    width: 76%;
    margin: 0 auto;
    border-radius: 10em;
    line-height: 2.6em;
    color: white;
    font-size: 1.06em;
    font-weight: 700;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cv__button-item02 .button a .icon {
    width: 2em;
    margin-right: .5em;
    display: flex;
    align-items: center;
}
@media screen and (min-width: 768px) {
    .cv__button-item02 .button a:hover {
        opacity: .7;
    }
}
@media screen and (min-width: 768px) {
    .cv__button-item02 .button a {
        filter: drop-shadow(3px 3px 3px rgba(64, 47, 52, 0.2));
    }
}
@media screen and (min-width: 768px) {
    .cv__button-item02 .button a {
        max-width: 18rem;
        font-size: 1.12em;
    }
}
.cv__box {
    background-color: #f8f5dc;
    padding: .5rem .5rem .5rem 1.5rem;
    border-radius: .5rem;
    display: grid;
    align-items: flex-end;
    grid-template-columns: auto 7rem;
    position: relative;
}
.cv__box .icon {
    width: 3.62rem;
    position: absolute;
    top: -.5rem;
    left: -1.5rem;
}
.cv__box .catch {
    padding: 0 0 .2rem;
    line-height: 1.3em;
    font-size: .94rem;
    font-weight: 700;
    text-align: center;
    grid-column: 1 / 2;
}
.cv__box .catch .emphasis {
    line-height: 2em;
    border-bottom: 1px solid currentColor;
    color: #ffa998;
    font-size: 1.3em;
}
.cv__box .catch .emphasis br {
    display: none;
}
.cv__box .text {
    line-height: 1.3em;
    font-size: .7rem;
    text-align: center;
    grid-column: 1 / 2;
}
.cv__box .image {
    border-radius: .5rem;
    overflow: hidden;
    grid-column: 2 / 3;
    grid-row: 1 / 3;
}
@media screen and (min-width: 768px) {
    .cv {
        background-image: url("../images/cv-pc.webp");
        padding: 3rem 0;
    }
    .cv-first .cv__inner {
        align-items: center;
    }
    .cv-first .cv__campaign {
        padding: 0;
    }
    .cv__inner {
        display: flex;
        flex-flow: wrap;
        align-items: flex-end;
        justify-content: space-between;
    }
    .cv__catch {
        font-size: 1.78rem;
        top: -2rem;
    }
    .cv__heading {
        width: 100%;
        padding: 0 0 2rem;
        font-size: 2rem;
    }
    .cv__heading br {
        display: none;
    }
    .cv__campaign {
        width: 50%;
    }
    .cv__button {
        width: calc(50% - 2.5rem);
        padding: 0;
        grid-gap: 2rem 0;
    }
    .cv__button-item .catch {
        font-size: 1.12rem;
    }
    .cv__box {
        width: calc(50% - 2.5rem);
        padding: 1rem 1rem 1rem 2rem;
        grid-template-columns: auto 9rem;
    }
    .cv__box .icon {
        width: 5rem;
    }
    .cv__box .catch {
        padding: 0;
        line-height: 1.8em;
        font-size: 1.33rem;
    }
    .cv__box .catch .emphasis {
        line-height: 1.4em;
        font-size: 1.42em;
    }
    .cv__box .catch .emphasis br {
        display: block;
    }
    .cv__box .text {
        line-height: 1.6em;
    }
    .cv__box .image {
        height: 100%;
    }
    .cv__box .image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        aspect-ratio: 175 / 191;
    }
}
.problem, .point, .recommend, .merit, .program, .voice, .plan, .faq, .access {
    padding: 2rem 0;
    overflow: hidden;
}
@media screen and (min-width: 768px) {
    .problem, .point, .recommend, .merit, .program, .voice, .plan, .faq, .access {
        padding: 3rem 0;
    }
}
.problem__inner, .point__inner, .recommend__inner, .merit__inner, .program__inner, .voice__inner, .plan__inner, .faq__inner, .access__inner {
    width: 85%;
    margin: 0 auto;
}
@media screen and (min-width: 768px) {
    .problem__inner, .point__inner, .recommend__inner, .merit__inner, .program__inner, .voice__inner, .plan__inner, .faq__inner, .access__inner {
        width: 90%;
        max-width: 1000px;
    }
}
.problem__heading, .point__heading, .recommend__heading, .merit__heading, .program__heading, .voice__heading, .plan__heading, .faq__heading, .access__heading {
    padding: 0 0 2rem;
    text-align: center;
}
.problem__heading .sub, .point__heading .sub, .recommend__heading .sub, .merit__heading .sub, .program__heading .sub, .voice__heading .sub, .plan__heading .sub, .faq__heading .sub, .access__heading .sub {
    font-family: "Jost",sans-serif;
    font-weight: 400;
    font-style: normal;
    padding: 0 0 .3em;
    color: #7f9aec;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: .05em;
}
.problem__heading .main, .point__heading .main, .recommend__heading .main, .merit__heading .main, .program__heading .main, .voice__heading .main, .plan__heading .main, .faq__heading .main, .access__heading .main {
    line-height: 1.8em;
    font-size: 1.18rem;
    font-weight: 700;
}
.problem__heading .main .large, .point__heading .main .large, .recommend__heading .main .large, .merit__heading .main .large, .program__heading .main .large, .voice__heading .main .large, .plan__heading .main .large, .faq__heading .main .large, .access__heading .main .large {
    font-size: 1.42em;
}
@media screen and (min-width: 768px) {
    .problem__heading, .point__heading, .recommend__heading, .merit__heading, .program__heading, .voice__heading, .plan__heading, .faq__heading, .access__heading {
        padding: 0 0 2rem;
    }
    .problem__heading .sub, .point__heading .sub, .recommend__heading .sub, .merit__heading .sub, .program__heading .sub, .voice__heading .sub, .plan__heading .sub, .faq__heading .sub, .access__heading .sub, .problem__heading .main, .point__heading .main, .recommend__heading .main, .merit__heading .main, .program__heading .main, .voice__heading .main, .plan__heading .main, .faq__heading .main, .access__heading .main {
        font-size: 1.89rem;
    }
    .problem__heading .main .large, .point__heading .main .large, .recommend__heading .main .large, .merit__heading .main .large, .program__heading .main .large, .voice__heading .main .large, .plan__heading .main .large, .faq__heading .main .large, .access__heading .main .large {
        font-size: 1.35em;
    }
}
.problem {
    padding: 0;
}
.problem-bg02 {
    background-color: #7f9aec;
    color: white;
}
.problem__inner01 {
    padding: 2rem 0;
    width: 100%;
    padding-bottom: 0;
}
@media screen and (min-width: 768px) {
    .problem__inner01 {
        padding: 3rem 0;
    }
}
.problem__inner02 {
    padding: 2rem 0;
}
@media screen and (min-width: 768px) {
    .problem__inner02 {
        padding: 3rem 0;
    }
}
.problem__catch {
    background-image: url("../images/contents_frame.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 16.7rem;
    height: 4.8rem;
    margin: 0 auto;
    padding: .5em 0 0;
    line-height: 1.3em;
    font-weight: 600;
    text-align: center;
    display: block;
}
.problem__heading {
    padding: .5rem 0;
    line-height: 1.6em;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
}
.problem__text {
    padding: 0 0 2rem;
    line-height: 1.6em;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
}
.problem__text .emphasis {
    color: #fdf5a6;
}
.problem__text .logo {
    width: 7.6em;
    margin: 0 .1em 0 2.1em;
    vertical-align: baseline;
    display: inline-block;
    position: relative;
    top: -.2em;
}
.problem__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: .5rem;
}
.problem__list-item {
    background-color: white;
    background-image: url("../images/contents_corner.svg");
    background-position: left top;
    background-repeat: no-repeat;
    background-size: 1.6em auto;
    padding: .6rem 0;
    line-height: 1.8em;
    color: #402f34;
    font-size: .94rem;
    font-weight: 700;
    text-align: center;
    border-radius: .5rem;
}
.problem__list-item .font {
    font-weight: 500;
}
.problem__list-item .large {
    font-size: 1.26em;
}
.problem__list-item01 {
    background-color: #aad6ec;
}
.problem__list-item02 {
    background-color: #ffa998;
}
.problem__list-item03 {
    background-color: #d2f0a9;
}
.problem__list-item04 {
    background-color: #fdf5a6;
}
.problem__list-item05 {
    background-color: #ffbbde;
    grid-column: 1 / 3;
}
@media screen and (min-width: 768px) {
    .problem {
        padding: 0;
    }
    .problem__inner01 {
        padding-bottom: 0;
    }
    .problem__inner02 {
        padding-bottom: 1rem;
    }
    .problem__catch {
        background-image: url("../images/contents_frame-pc.svg");
        width: 26.7rem;
        height: 5.44rem;
        padding: 1em 0 0;
        font-size: 1.33rem;
    }
    .problem__catch br {
        display: none;
    }
    .problem__heading {
        padding: .5rem 0;
        font-size: 2.22rem;
    }
    .problem__text {
        padding: 0 0 2rem;
        font-size: 2.22rem;
    }
    .problem__text br:nth-child(3), .problem__text br:nth-child(6) {
        display: none;
    }
    .problem__list {
        grid-template-columns: repeat(6, 1fr);
    }
    .problem__list-item {
        padding: 1rem 0;
        line-height: 1.6em;
        font-size: 1.56rem;
    }
    .problem__list-item .large {
        font-size: 1.26em;
    }
    .problem__list-item01 {
        grid-column: 1 / 3;
    }
    .problem__list-item02 {
        grid-column: 3 / 5;
    }
    .problem__list-item03 {
        grid-column: 5 / 7;
    }
    .problem__list-item04 {
        grid-column: 1 / 4;
    }
    .problem__list-item05 {
        grid-column: 4 / 7;
    }
}
.point {
    background-color: #f8f5dc;
    background-image: url("../images/point.webp");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100% auto;
}
.point__heading {
    padding: 10rem 0 3rem;
    line-height: 1.6em;
    font-size: 1.06rem;
    font-weight: 700;
}
.point__heading .logo {
    width: 9em;
    margin-right: .1em;
    vertical-align: baseline;
    display: inline-block;
    position: relative;
    top: -.2em;
}
.point__heading .large {
    font-size: 2.33em;
    font-weight: 500;
}
.point__heading .medium {
    font-size: 1.65em;
}
.point__heading .marker {
    background-color: #7f9aec;
    background-image: linear-gradient(90deg, #7f9aec, #aad6ec);
    margin: .2em 0;
    padding: .1em .2em;
    line-height: 1em;
    color: white;
    font-weight: 500;
    display: inline-block;
}
.point__box {
    margin: 0 auto 2rem;
}
.point__box-item {
    position: relative;
}
.point__box-item .number {
    width: 3.2rem;
    position: absolute;
    top: 0;
    left: 0;
}
.point__box-item .heading {
    padding: 0 0 0 3.5rem;
    line-height: 1.6em;
    font-size: 1.5rem;
    font-weight: 700;
}
.point__box-item .heading .large {
    font-size: 1.66em;
}
.point__box-item .heading .font {
    font-weight: 500;
    vertical-align: text-bottom;
}
.point__box-item .heading .emphasis {
    margin: 0 .1em;
    color: #7f9aec;
}
.point__box-item .heading .emphasis-price {
    position: relative;
}
.point__box-item .heading .emphasis-price .tax {
    line-height: 1em;
    font-size: .3em;
    font-weight: 700;
    position: absolute;
    top: -.2rem;
    right: 1.4rem;
}
.point__box-item .catch {
    padding: 1rem 0;
    text-align: center;
}
.point__box-item .catch-item01 {
    background-image: url("../images/contents_frame.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 10.6rem;
    height: 3rem;
    margin: 0 auto;
    line-height: 2em;
    font-size: 1.12rem;
    font-weight: 600;
    text-align: center;
    display: block;
}
.point__box-item .catch-item02 {
    width: fit-content;
    margin: .2rem auto .4rem;
    padding: 0 1.5em;
    border-bottom: .1em solid currentColor;
    line-height: 1.8em;
    font-size: 1.12rem;
    font-weight: 700;
}
.point__box-item .catch-item03 {
    line-height: 1.8em;
    font-size: 1.5rem;
    font-weight: 700;
}
.point__box-item .catch-item03 .large {
    font-size: 1.33em;
}
.point__box-item .catch-item03 .emphasis {
    color: #7f9aec;
}
.point__box-item .catch-item03 .font {
    line-height: 1em;
    font-weight: 500;
    vertical-align: text-bottom;
}
.point__box-item .catch-item03 .font.large {
    font-size: 1.75em;
}
.point__box-item .text {
    padding: .6rem 0 1rem;
    line-height: 1.8em;
    font-size: .88rem;
}
.point__box-item .map {
    margin: 0 0 0 -2rem;
}
.point__box-item .map iframe {
    width: 102vw;
}
.point__box01 .image, .point__box02 .image {
    margin: 0 -.5rem 0 0;
}
.point__box03 .image {
    margin: 0;
}
.point__box04 .image, .point__box05 .image {
    margin: 0 -1.3rem 0 0;
}
@media screen and (min-width: 768px) {
    .point {
        background-image: url("../images/point-pc.webp");
        padding-top: 0;
    }
    .point__heading {
        padding: 30vw 0 3rem;
        font-size: 1.89rem;
    }
    .point__box {
        margin: 0 auto 3rem;
        display: flex;
        flex-flow: wrap;
        justify-content: space-between;
    }
    .point__box-item {
        width: calc((100% - 2rem) / 2);
    }
    .point__box-item03, .point__box-item04 {
        width: 100%;
    }
    .point__box-item .number {
        width: 4.55rem;
    }
    .point__box-item .heading {
        padding: 0 0 0 5.5rem;
        font-size: 1.7rem;
    }
    .point__box-item .heading .large {
        font-size: 1.7em;
    }
    .point__box-item .catch {
        padding: 1rem 0;
    }
    .point__box-item .catch-item03 {
        font-size: 1.56rem;
    }
    .point__box-item .text {
        padding: .6rem 0 1rem;
        font-size: 1rem;
    }
    .point__box-item .map {
        width: 100%;
        margin: 0;
    }
    .point__box-item .map iframe {
        width: 100%;
        height: 20rem;
        aspect-ratio: auto;
    }
   .point__box02, .point__box04, .point__box07 {
        flex-flow: row-reverse;
    }
}
.recommend {
    background-color: #aad6ec;
    background-image: url("../images/recommend.webp");
    background-position: 0 calc(100% - 1.5rem);
    background-repeat: no-repeat;
    background-size: 100% auto;
    padding-bottom: 1rem;
}
.recommend__inner {
    width: 100%;
}
.recommend__heading {
    width: 85%;
    margin: 0 auto 1rem;
    padding: 0;
    line-height: 1.6em;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
}
.recommend__heading::before, .recommend__heading::after {
    content: '';
    background-image: url("../images/contents_corner.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 1.6em;
    display: block;
    aspect-ratio: 1 / 1;
    position: absolute;
}
.recommend__heading::before {
    top: 0;
    left: 0;
}
.recommend__heading::after {
    right: 0;
    bottom: 0;
    transform: rotate(180deg);
}
.recommend__heading .emphasis {
    color: #f8f5dc;
    font-size: 1.33em;
    font-weight: 900;
    font-style: italic;
}
@media screen and (min-width: 768px) {
    .recommend {
        background-image: none;
        padding-bottom: 0;
    }
    .recommend__inner {
        background-image: url("../images/recommend-pc.webp");
        background-position: 0 100%;
        background-repeat: no-repeat;
        background-size: 100% auto;
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
    }
    .recommend__heading {
        width: 36rem;
        margin: 0 auto 2rem;
        padding: .5rem 0;
        line-height: 1.6em;
        font-size: 1.5rem;
    }
    .recommend__heading::before, .recommend__heading::after {
        width: 1.2em;
    }
    .recommend__heading br:last-child {
        display: none;
    }
    .recommend__image {
        width: 95%;
        margin: 0 auto;
        padding: 0 0 0 35%;
    }
}
.merit {
    background-color: #f4f4f6;
    background-image: url("../images/contents_top_b.svg"), url("../images/contents_bottom_y.svg"), linear-gradient(180deg, #aad6ec 13rem, transparent 13rem);
    background-position: 0 12rem, center bottom, center top;
    background-repeat: no-repeat;
    background-size: 100% auto;
    padding-bottom: 6rem;
}
.merit__inner {
    width: 90%;
}
.merit__heading {
    padding: 0 0 1rem;
}
.merit__heading .sub {
    color: #f8f5dc;
}
.merit__text {
    padding: 0 0 2rem;
    line-height: 1.6em;
    font-size: .94rem;
    text-align: center;
}
.merit__text .marker {
    background-color: #402f34;
    padding: .1em;
    line-height: 1em;
    color: #f8f5dc;
    display: inline-block;
}
.merit__box {
    background-color: #f4f4f6;
    margin: 0 auto 1.5rem;
    padding: 1rem;
    border: .1rem solid currentColor;
    border-radius: .5rem;
    position: relative;
}
.merit__box .number {
    font-family: "Jost",sans-serif;
    font-weight: 400;
    font-style: normal;
    background-image: url("../images/contents_corner.svg");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: contain;
    width: 2.66em;
    padding: .5em 0 0 .2em;
    color: #aad6ec;
    font-size: 1.87rem;
    font-weight: 500;
    display: block;
    aspect-ratio: 1 / 1;
    position: absolute;
    top: -.3em;
    left: -.3em;
}
.merit__box .heading {
    padding: .5em 0 0;
    line-height: 1.6em;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
}
.merit__box .heading .marker {
    background: linear-gradient(transparent 50%, #aad6ec 50%);
    font-size: 1.12em;
}
.merit__box .text {
    padding: .8rem 0 1rem;
    line-height: 1.8em;
    font-size: .88rem;
}
.merit__box .image {
    border-radius: .5rem;
    overflow: hidden;
}
.merit__box:last-child {
    margin: 0 auto;
}
@media screen and (min-width: 768px) {
    .merit {
        background-image: url("../images/contents_top_b-pc.svg"), url("../images/contents_bottom_y-pc.svg"), linear-gradient(180deg, #aad6ec 13rem, transparent 13rem);
        background-position: 0 12rem, center bottom, center top;
        padding-bottom: 6rem;
    }
    .merit__inner {
        width: 90%;
    }
    .merit__heading {
        padding: 0 0 1rem;
    }
    .merit__heading .sub {
        color: #f8f5dc;
    }
    .merit__text {
        padding: 0 0 3rem;
        font-size: 1.12rem;
    }
    .merit__text-item br {
        display: none;
    }
    .merit__text-item01 br:nth-child(2) {
        display: block;
    }
    .merit__box {
        max-width: 46rem;
        margin: 0 auto 3rem;
        padding: 2rem;
        display: flex;
        flex-flow: wrap;
        justify-content: space-between;
    }
    .merit__box .number {
        width: 2.66em;
        padding: .5em 0 0 .2em;
        font-size: 1.87rem;
        top: -.3em;
        left: -.3em;
    }
    .merit__box .heading {
        width: 100%;
        padding: 0 0 2rem;
        font-size: 1.78rem;
    }
    .merit__box .heading .marker {
        font-size: 1.12em;
    }
    .merit__box .heading br {
        display: none;
    }
    .merit__box .text {
        width: calc(50% - 2rem);
        padding: 0;
        font-size: 1rem;
    }
    .merit__box .image {
        width: 50%;
    }
    .merit__box:last-child {
        margin: 0 auto;
    }
}
.program {
    background-color: #f8f5dc;
    padding: 0;
}
.program__box {
    display: grid;
    grid-template-columns: 100%;
    grid-gap: 1.5rem 0;
}
.program__box-item .catch {
    background-color: #7f9aec;
    width: fit-content;
    min-width: 14em;
    margin: 0 auto;
    padding: 0 1em;
    line-height: 1.6em;
    border-radius: 10em;
    color: white;
    font-size: .88rem;
    font-weight: 700;
    text-align: center;
}
.program__box-item .heading {
    padding: 0 0 .5rem;
    line-height: 1.6em;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}
.program__box-item .text {
    padding: .8rem 0 1rem;
    line-height: 1.8em;
    font-size: .88rem;
}
.program__box-item .text .small {
    font-size: .8em;
}
.program__box-item .image {
    border-radius: .5rem;
    overflow: hidden;
}
@media screen and (min-width: 768px) {
    .program__box {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 2rem;
    }
    .program__box-item .catch {
        font-size: 1rem;
    }
    .program__box-item .heading {
        font-size: 1.67rem;
    }
    .program__box-item .text {
        font-size: 1rem;
    }
}
.voice {
    background-color: #aad6ec;
    background-image: url("../images/contents_top_y.svg");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100% auto;
    padding-top: 6rem;
}
.voice__inner {
    width: 100%;
}
.voice__heading {
    padding: 0;
}
.voice__heading .sub {
    color: #f8f5dc;
}
.voice__text {
    padding: .5rem 0 2rem;
    line-height: 1.6em;
    font-size: .77rem;
    text-align: center;
}
.voice__box {
    padding: 0 0 2rem;
}
.voice__box-item {
    background-color: #402f34;
    width: 85%;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 1rem;
    color: #f8f5dc;
    position: relative;
}
.voice__box-item .image {
    width: 6.56rem;
    margin: calc((6.56rem / 2) * -1 - 2rem) auto 0;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
}
.voice__box-item .profile {
    background-color: #f8f5dc;
    width: fit-content;
    min-width: 6em;
    margin: .5rem auto 0;
    padding: 0 1em;
    line-height: 1.4em;
    border-radius: 10em;
    color: #402f34;
    font-size: .88rem;
    font-weight: 700;
    text-align: center;
}
.voice__box-item .heading {
    padding: 1rem 0;
    border-bottom: .1em solid currentColor;
    line-height: 1.6em;
    font-size: 1.31rem;
    font-weight: 700;
    text-align: center;
}
.voice__box-item .text {
    padding: 1rem 0 0;
    line-height: 1.8em;
    font-size: .88rem;
}
.voice .swiper-container {
    padding: calc(6.56rem / 2) 0 1.3rem;
}
.voice .swiper-slide {
    height: auto;
}
@media screen and (min-width: 768px) {
    .voice {
        background-image: url("../images/contents_top_y-pc.svg");
        padding-top: 15vw;
    }
    .voice__inner {
        width: 90%;
    }
    .voice__heading {
        padding: 0;
    }
    .voice__text {
        font-size: .88rem;
    }
    .voice__box {
        max-width: 46rem;
        margin: 0 auto;
        padding: 0 0 2rem;
    }
    .voice__box-item .image {
        width: 6.2rem;
        margin: 0;
        position: absolute;
        top: 1rem;
        left: 2rem;
    }
    .voice__box-item .profile {
        margin: .5rem 0 0 8rem;
        padding: 0 1em;
        font-size: .88rem;
    }
    .voice__box-item .heading {
        padding: .5rem 0 2rem 8rem;
        font-size: 1.33rem;
        text-align: left;
    }
    .voice__box-item .heading br {
        display: none;
    }
    .voice__box-item .text {
        padding: 1rem 0 0;
    }
    .voice .swiper-container {
        padding: 0 0 1.3rem;
    }
    .voice .swiper-slide {
        height: auto;
    }
}
.plan {
    background-color: #ffa998;
    background-image: url("../images/contents_bottom_w.svg"), url("../images/plan.webp"), linear-gradient(0deg, #f4f4f6 13rem, transparent 13rem);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100% auto, cover, 100% auto;
    color: #f8f5dc;
    padding-bottom: 7rem;
    position: relative;
}
.plan::after {
    content: '';
    background-color: #f4f4f6;
    width: 100%;
    height: 2px;
    display: block;
    position: absolute;
    bottom: -1px;
    left: 0;
    z-index: 2;
}
.plan__heading {
    padding: 0 0 1.5rem;
}
.plan__heading .sub, .plan__heading .main {
    color: inherit;
}
.plan__text {
	padding-bottom: 3.5rem;
    text-align: center;
    font-size: .9rem;
}
.plan__text .font {
	font-size: 1rem;
    font-weight: 500;
}
.plan__text .small {
	font-size: .7rem;
}

.plan__box01 {
    display: grid;
    grid-template-columns: 100%;
    grid-gap: 2rem 0;
}
.plan__box01 .plan__box-item {
    background-image: url("../images/plan_box.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: .5rem;
    aspect-ratio: 701 / 223;
}
.plan__box01 .plan__box-item .catch {
    background-color: #f8f5dc;
    width: fit-content;
    min-width: 16em;
    margin: calc(((2.6em) / 2) * -1) auto 1.5rem;
    padding: 0 1em;
    line-height: 2.6em;
    border-radius: 10em;
    color: #ff8778;
    font-size: .88rem;
    font-weight: 700;
    text-align: center;
}
.plan__box01 .plan__box-item .catch br {
    display: none;
}
.plan__box01 .plan__box-item .price {
    padding: 0 0 0 1.5rem;
    display: grid;
    align-items: center;
    grid-template-columns: 7rem auto;
    grid-gap: 0 1rem;
}
.plan__box01 .plan__box-item .price .head {
    padding: .5em 0;
    border-top: .1em solid currentColor;
    border-bottom: .1em solid currentColor;
    font-weight: 700;
    text-align: center;
}
.plan__box01 .plan__box-item .price .body {
    width: fit-content;
    font-size: 1.75rem;
    position: relative;
}
.plan__box01 .plan__box-item .price .body .font {
    font-weight: 500;
}
.plan__box01 .plan__box-item .price .body .large {
    font-size: 1.67em;
}
.plan__box01 .plan__box-item .price .body .tax {
    line-height: 1em;
    font-size: .3em;
    font-weight: 700;
    position: absolute;
    top: .5em;
    right: -.2em;
}
.plan__box02 {
    padding: 2rem 0 0;
    color: #402f34;
    text-align: center;
}
.plan__box02 .plan__box-item .catch {
    background-image: url("../images/contents_frame.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 10.6rem;
    height: 3rem;
    margin: 0 auto;
    line-height: 2em;
    font-size: 1.12rem;
    font-weight: 600;
    text-align: center;
    display: block;
}
.plan__box02 .plan__box-item .text {
    padding: .5rem 0 1rem;
    line-height: 1.4em;
    font-size: 1.43rem;
    font-weight: 700;
    text-align: center;
}
.plan__note {
    padding: .5rem 0 0 1em;
    line-height: 1.6em;
    font-size: .77rem;
    text-indent: -1em;
}
@media screen and (min-width: 768px) {
    .plan {
        background-image: url("../images/contents_bottom_w.svg"), url("../images/plan-pc.webp"), linear-gradient(0deg, #f4f4f6 13rem, transparent 13rem);
        padding-bottom: calc(20vw + 1rem);
    }
    	.plan__text {
		font-size: 1.12rem;
	}
	.plan__text .font {
		font-size: 1.4rem;
	}
	    .plan__text .small {
        font-size: .9rem;
    }

    .plan__box01 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 0 1rem;
    }
    .plan__box01 .plan__box-item {
        background-image: url("../images/plan_box-pc.webp");
        aspect-ratio: auto;
    }
    .plan__box01 .plan__box-item .catch {
        min-width: 12em;
        margin: calc(((2.6em) / 2) * -1) auto 1.5rem;
        padding: .5em;
        line-height: 1.4em;
        font-size: 1.12rem;
    }
    .plan__box01 .plan__box-item .catch br {
        display: block;
    }
    .plan__box01 .plan__box-item .price {
        padding: 0 1.5rem 1.5rem;
        text-align: center;
        display: grid;
        justify-content: center;
        grid-template-columns: 100%;
        grid-gap: 1rem 0;
    }
    .plan__box01 .plan__box-item .price .head {
        padding: .5em 0;
        font-size: 1.12rem;
    }
    .plan__box01 .plan__box-item .price .body {
        margin: 0 auto;
        font-size: 2rem;
    }
    .plan__box02 {
        width: 90%;
        margin: 0 auto;
        padding: 3rem 0 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .plan__box02 .plan__box-item {
        width: 50%;
    }
    .plan__box02 .plan__box-item .catch {
        width: 14.33rem;
        height: 4.11rem;
        font-size: 1.56rem;
    }
    .plan__box02 .plan__box-item .text {
        padding: .5rem 0 1rem;
        font-size: 1.78rem;
    }
    .plan__note {
        padding: 1rem 0 0 1em;
        font-size: .88rem;
        text-align: center;
    }
}
.faq {
    background-color: #f4f4f6;
    background-image: url("../images/contents_bottom_y.svg");
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100% auto;
    padding: 0 0 6rem;
}
.faq__heading {
    padding: 0;
}
.faq__heading .sub {
    color: #aad6ec;
}
.faq__heading-sub {
    background-image: url("../images/contents_frame.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 16.7rem;
    height: 4.8rem;
    margin: 2rem auto .5rem;
    padding: 0 0 1em;
    line-height: 1.3em;
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq__list {
    display: grid;
    grid-template-columns: 100%;
    grid-gap: .5rem 0;
}
.faq__list-item {
    border-radius: .5rem;
    overflow: hidden;
}
.faq__list-item .head, .faq__list-item .body {
    display: flex;
    align-items: flex-start;
    position: relative;
}
.faq__list-item .head {
    background-color: #aad6ec;
    min-height: 3rem;
    padding: .5rem 2rem .5rem 0;
    border-radius: .5rem;
    line-height: 1.4em;
    font-size: 1rem;
    font-weight: 700;
    align-items: center;
    position: relative;
    cursor: pointer;
}
.faq__list-item .head::before {
    transition: all .2s ease-in-out;
    content: '';
    background-image: url("../images/arrow_br.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 1rem;
    height: 1rem;
    display: block;
    position: absolute;
    top: 50%;
    right: .5rem;
    transform: translateY(-50%) rotate(-180deg);
}
.faq__list-item .head.is-active::before {
    transform: translateY(-50%);
}
.faq__list-item .body {
    transition: all .2s ease-in-out;
    height: 0;
    padding: 0 1rem 0 0;
    line-height: 1.8em;
    font-size: 1rem;
}
.faq__list-item .body.is-active {
    padding: 3vw 3vw 3vw 0;
    height: auto;
    min-height: 3rem;
}
.faq__list-item .icon {
    font-family: "Jost",sans-serif;
    font-weight: 400;
    font-style: normal;
    padding: 0 3vw;
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
}
.faq__list-item .icon-a {
    color: #aad6ec;
}
.faq__list-item a {
    color: #7f9aec;
    border-bottom: 1px solid #7f9aec;
}
@media screen and (min-width: 768px) {
    .faq__heading-sub {
        width: 18.33rem;
        height: 5rem;
        font-size: 1.12rem;
    }
    .faq__list {
        max-width: 46rem;
        margin: 0 auto;
        grid-gap: 1rem 0;
    }
    .faq__list-item .head {
        padding: .5rem 3rem .5rem 0;
        font-size: 1.11rem;
    }
    .faq__list-item .head::before {
        right: 1rem;
    }
    .faq__list-item .body {
        padding: 0;
    }
    .faq__list-item .body.is-active {
        padding: .5rem 0;
    }
    .faq__list-item .icon {
        padding: 0 1rem;
        font-size: 2rem;
    }
}
.access {
    background-color: #f8f5dc;
    padding: 0 0 4rem;
}
.access__text {
    text-align: center;
    padding: 2rem 0;
    font-size: .88rem;
}
.access__list {
    padding: 0;
    display: grid;
    grid-template-columns: 100%;
    grid-gap: 1.5rem 0;
}
.access__list-item .head {
    font-size: 1.12rem;
    display: flex;
    align-items: center;
}
.access__list-item .head .icon {
    background-color: #7f9aec;
    width: 1.44em;
    height: 1.44em;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.access__list-item .head .icon img {
    width: 60%;
    height: 70%;
    object-fit: contain;
}
.access__list-item .head .text {
    padding: 0 0 0 .5em;
    color: #7f9aec;
    font-weight: 700;
}
.access__list-item .body {
    padding: .3rem 0 0;
    line-height: 1.6em;
    font-size: .88rem;
}
.access__list-item .body .small {
    line-height: 1.2em;
    font-size: .9em;
}
.access__list-item .body a {
    border-bottom: 1px solid #402f34;
}
.access .map {
    width: 100%;
    margin: 0;
}
@media screen and (min-width: 768px) {
    .access {
        padding: 0 0 4rem;
    }
    .access__list {
        width: fit-content;
        max-width: 46rem;
        margin: 0 auto;
        grid-gap: 2rem 0;
    }
    .access__list-item {
        display: grid;
        grid-template-columns: 8rem auto;
        grid-gap: 0 2rem;
        align-items: flex-start;
    }
    .access__list-item .head {
        font-size: 1.33rem;
    }
    .access__list-item .body {
        padding: 0;
        font-size: 1rem;
    }
    .access__list-item .body .small {
        font-size: .8em;
    }
    .access .map iframe {
        height: 20rem;
        aspect-ratio: auto;
    }
}
.footer {
    background: #fff;
    color: #402f34;
}
.footer-bg01 {
    background-color: #aad6ec;
    background-image: url("../images/footer.webp");
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 2rem 0;
}
.footer-bg02 {
    background: white;
    padding: 1rem 0;
}
.footer__inner {
    width: 85%;
    margin: 0 auto;
    text-align: center;
}
@media screen and (min-width: 768px) {
    .footer__inner {
        width: 90%;
        max-width: 1000px;
    }
}
.footer__heading {
    width: 10rem;
    margin: 0 auto;
}
.footer__text {
    padding: 1rem 0;
    line-height: 1.8em;
    font-size: .88rem;
}
.footer__logo {
    display: block;
}
.footer__logo01 {
    width: 3.44rem;
}
.footer__logo02 {
    width: 14rem;
    margin: 0 auto;
    padding: 1rem 0;
}
.footer__box {
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer__link01 {
    width: 70%;
    margin: 0 auto;
    display: flex;
    flex-flow: wrap;
    align-items: center;
    justify-content: center;
}
.footer__link01 .footer__link-item a {
    line-height: 1.8em;
    font-size: .88rem;
    border-bottom: 1px solid currentColor;
}
.footer__link01 .footer__link-item02 {
    padding: 0 0 0 2rem;
}
.footer__link01 .footer__link-item02 a {
    border: none;
}
.footer__link01 .footer__link-item03 {
    width: 100%;
    padding: 1rem 0 0;
}
.footer__link01 .instagram {
    width: 2rem;
    display: block;
}
.footer__link02 {
    width: 20em;
    font-size: .77rem;
    display: flex;
    flex-flow: wrap;
}
.footer__link02 .footer__link-item {
    width: fit-content;
    padding: 0 0 .2rem 1.5rem;
}
.footer__link02 .footer__link-item a {
    line-height: 1.8em;
    border-bottom: 1px solid currentColor;
}
.footer__link02 .footer__link-item01, .footer__link02 .footer__link-item03 {
    padding-left: 1em;
}
.footer__copyright {
    line-height: 1.8em;
    font-size: .88rem;
    text-align: center;
}
@media screen and (min-width: 768px) {
    .footer-bg01 {
        background-image: url("../images/footer-pc.webp");
        padding: 3rem 0;
    }
    .footer-bg02 {
        padding: 2rem 0;
    }
    .footer__link01 {
        width: 20rem;
    }
}
.floating {
    width: 100%;
    position: sticky;
    bottom: 0;
    right: 0;
    z-index: 1000;
}
.floating__button a {
    transition: all .2s ease-in-out;
    cursor: pointer;
    background-color: #ff8778;
    background-image: linear-gradient(45deg, #ffa998, #ff8778);
    width: 100%;
    line-height: 2.6em;
    color: white;
    font-size: 1.31em;
    font-weight: 700;
    text-align: center;
    display: block;
    position: relative;
}
@media screen and (min-width: 768px) {
    .floating__button a:hover {
        opacity: .7;
    }
}
@media screen and (min-width: 768px) {
    .floating__button a {
        filter: drop-shadow(2px 2px 2px rgba(64, 47, 52, 0.2));
        background: #7f9aec;
        max-width: 16rem;
        border-radius: 10em;
        line-height: 3rem;
        font-size: 1.11rem;
    }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
    .floating__button a {
        filter: drop-shadow(3px 3px 3px rgba(64, 47, 52, 0.2));
    }
}
@media screen and (min-width: 768px) {
    .floating {
        width: 100%;
        position: fixed;
        top: .5rem;
        right: 4.5rem;
        bottom: auto;
    }
    .floating__button a {
        margin: 0 0 0 auto;
    }
}
