/*
Theme Name:yumekobo
Theme URI:
Version: 1.0
Author: imawaka
Author URI: https://yoshida-designbu.com/
License: imawaka
*/


/*リセットcss*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	font-size: 100%;
	vertical-align: baseline;
}

html {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

caption, th, td {
	text-align: left;
	font-weight: normal;
	vertical-align: middle;
}

q, blockquote {
	quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
	content: "";
	content: none;
}

img {
	vertical-align: bottom;
}

a img {
	border: none;
}

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

input[type="button"], input[type="submit"] {
	-webkit-appearance: none;
}

br.clear {
	clear: both;
}

/*リセットcssここまで*/


/*--------------
common
--------------*/
html {
    font-size: 62.5%;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

:root {
    --color-purple100: #8e599a;
    --color-purple10: #f4eef5;
    --color-darkBlue100: #8892c0;
    --color-darkBlue50: #c3c8df;
    --color-darkBlue10: #f3f4f9;
    --color-lightBlue: #95c0dd;
    --color-green: #7eb5ad;
    --color-white: #ffffff;
    --color-black: #333333;
    --space-80px: 80px;
    --space-70px: 70px;
    --space-50px: 50px;
    --space-40px: 40px;
    --space-30px: 30px;
    --space-20px: 20px;
    --space-15px: 15px;
    --space-10px: 10px;
    --font-26px: 2.6rem;
    --font-24px: 2.4rem;
    --font-18px: 1.8rem;
    --font-16px: 1.6rem;
    --font-14px: 1.4rem;
    --font-13px: 1.3rem;
    --font-12px: 1.2rem;
    --font-10px: 1.0rem;
    --font-regular: 400;
    --font-medium: 500;
    --font-bold: 700;
    --font-black: 800;
    --font-ZenKakuGothicAntique: "Zen Kaku Gothic Antique", sans-serif;
    --font-ZenMaruGothic: "Zen Maru Gothic", sans-serif;
}

body {
	color: var(--color-black);
	font-family: var(--font-ZenKakuGothicAntique);
	font-size: var(--font-14px);
	line-height: 1.6;
	font-weight: 400;
	font-feature-settings: "palt";
}

a {
    text-decoration: none;
    transition: all 0.5s;
	color: var(--color-black);
}

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

picture {
    display: block;
}

.hidden {
    visibility: hidden;
    height: 0!important;
    margin: 0!important;
    border: 0!important;
    padding: 0!important;
}

.link {
    display: block;
}

.spanblock {
    display: block;
}

.pc {
    display: none;
}
.tab {
    display: none;
}
.sp {
    display: block;
}

/* @media screen and (min-width: 600px) {

    :root {
        --space-80px: max(80px, 12.6vw);
        --space-70px: max(70px, 11vw);
        --space-50px: max(50px, 7.9vw);
        --space-40px: max(40px, 6.3vw);
        --space-30px: max(30px, 4.7vw);
        --space-20px: max(20px, 3.1vw);
        --space-15px: max(15px, 2.4vw);
        --space-10px: max(10px, 1.6vw);
    }

} */

@media screen and (min-width: 1000px) {

    :root {
        --space-80px: 85px;
        --space-70px: 75px;
        --space-50px: 55px;
        --space-40px: 45px;
        --space-30px: 35px;
        --space-20px: 25px;
        --space-15px: 20px;
        --space-10px: 15px;
        --font-24px: 2.6rem;
        --font-18px: 2.0rem;
        --font-16px: 1.8rem;
        --font-14px: 1.6rem;
        --font-13px: 1.5rem;
        --font-12px: 1.4rem;
        --font-10px: 1.2rem;
    }

    a:hover {
        opacity: 0.4;
    }

    .tab {
        display: block;
    }
    .sp {
        display: none;
    }

}


/*--------------
動き
--------------*/

/* 文字が飛び出す */

.scroll-flyIn {
    opacity: 0;
    transform: translateY(150%) scale(0);
}

.scroll-flyIn-animation {
    animation: flyIn 0.5s forwards;
}

@keyframes flyIn {

    0% {
        opacity: 0;
        transform: translateY(150%) scale(0);
    }
    60% {
        transform: translateY(-10%) scale(1.1);
    }
    80% {
        transform: translateY(5%) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}

/* カクカク */

.kakukaku {
    animation: kakukaku 2s steps(2, end) infinite;
}

@keyframes kakukaku {
    0% {
        rotate: -3deg;
    }
    100% {
        rotate: 6deg;
    }
}

/* きらきらが拡大縮小 */

.kirakira {
    animation: kirakira 2s steps(2, end) infinite;
}

@keyframes kirakira {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.3);
    }
}

/* 文字が小さく飛び出す */

.scroll-fadeIn {
    opacity: 0;
    transform: translateY(20%) scale(0.9);
}

.scroll-fadeIn-animation {
    animation: fadeIn 0.5s forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20%) scale(0.9);
    }
    60% {
        transform: translateY(-2%) scale(1.02);
    }
    80% {
        transform: translateY(1%) scale(0.99);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* スライドイン */

.scroll-slideIn {
    transform: translateY(105%); /* 下にずらしてスタート */
}

.scroll-slideIn-animation {
    animation: slideIn 0.4s forwards; /* 0.6秒で元の位置に戻る */
}

@keyframes slideIn {
    0% {
        transform: translateY(105%);
    }
    100% {
        transform: translateY(0);
    }
}


/*--------------
loading
--------------*/

#loading {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    z-index: 99999;
    background: var(--color-purple100);
    text-align: center;
}

#loading_box {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loadingImage {
    max-width: 100px;
    width: 20%;
    margin: 0 auto;
    position: relative;
}

.loadingImage--deco {
    width: 20%;
    position: absolute;
    animation: kirakira-loading 2s steps(2, end) infinite;
}

@keyframes kirakira-loading {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.8);
    }
}

.loadingImage--deco01 {
    bottom: 0;
    right: -25px;
}

.loadingImage--deco02 {
    top: 0;
    left: -35px;
    animation-delay: 1s;
}

.loadingText {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 4px;
    color: var(--color-white);
    font-size: 2.2rem;
    font-weight: var(--font-bold);
}

/* Loadingの文字の動き */

.loadingText span {
    animation: wave 1.2s ease-in-out infinite;
}

@keyframes wave {
    0%   { transform: translateY(0); }
    25%  { transform: translateY(-12px); }
    50%  { transform: translateY(0); }
    100%  { transform: translateY(0); }
}

.loadingText span:nth-child(1) { animation-delay: 0s; }
.loadingText span:nth-child(2) { animation-delay: 0.07s; }
.loadingText span:nth-child(3) { animation-delay: 0.14s; }
.loadingText span:nth-child(4) { animation-delay: 0.21s; }
.loadingText span:nth-child(5) { animation-delay: 0.28s; }
.loadingText span:nth-child(6) { animation-delay: 0.35s; }
.loadingText span:nth-child(7) { animation-delay: 0.42s; }


/*--------------
header
--------------*/

/* header */

nav.globalMenuSp {
    display: none;
}

header,
.hamburger {
    opacity: 0;
    pointer-events: none; /* 非表示中はクリック不可 */
    transition: opacity 0.3s ease;
}

header.is-visible,
.hamburger.is-visible {
    opacity: 1;
    pointer-events: auto;
}

header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 9;
    transition: 0.6s;
}

header h1 {
    width: 80px;
    position: absolute;
    top: 15px;
    left: 4%;
    z-index: 9;
}

.hamburger {
    display: block;
    width: 60px;
    position: fixed;
    z-index: 11;
    cursor: pointer;
    top: 20px;
    right: 6px;
    text-align: center;
}

.hamburger .close {
    display: none;
}

.hamburger.active .open {
    display: none;
}

.hamburger.active .close {
    display: block;
}

nav.globalMenuSp {
    display: block;
    position: fixed;
    z-index: 10;
    top: 0;
    left: 50%;
    max-width: 450px;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -20px); /* ←最初は少し上に隠す */
    transition:
    opacity .6s ease,
    visibility .6s ease,
    transform .6s ease;
    background-color: var(--color-purple100);

    @media screen and (min-width: 900px) {
        left: 0;
        transform: translateY(-20px);
    }
}
.globalMenuSp.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0); /* ←アクティブ時に元の位置へ */

    @media screen and (min-width: 900px) {
        transform: translateY(0);
    }
}

nav.globalMenuSp::before {
    content: "";
    display: block;
    width: 100%;
    height: 330px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: url(./img/common/globalMenuSp_bg.png) no-repeat center / cover;
    opacity: 0.6;
}

.globalMenuSp-wrapper {
    padding: var(--space-80px) 0 0;
    position: relative;
}

.gMenu-logo, .gMenu-list {
    position: relative;
    z-index: 1;
}

.gMenu-logo {
    max-width: 200px;
    width: 25vh;
    margin: 0 auto;
    opacity: 0;
}

.gMenu-logo a {
    display: block;
}

/* ↓ここからpcNavと共通 */

.menu-list {
    margin-top: var(--space-30px);
}

.menu-list a {
    display: block;
    width: fit-content;
    margin: 1.6em auto 0px;
    font-size: min(1.6rem, 2.8vh);
    font-weight: var(--font-medium);
    line-height: 1;
    letter-spacing: 1px;
    color: var(--color-white);
}

.menu-list li:first-of-type a {
    margin-top: 0;
}

.menu-list-instagram a::before {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-right: 5px;
    background: url(./img/common/instagram_icon.svg) no-repeat left / 1em;
}

/* ↑ここまでpcNavと共通 */

.gMenu__deco {
    max-width: 100px;
    width: 18%;
    position: absolute;
    bottom: 30px;
}

.gMenu__deco01 {
    left: 20px;
}

.gMenu__deco02 {
    right: 20px;
    animation-delay: 1s;
}

/* ↓ここから動き */

.globalMenuSp.active .gMenu-logo, 
.globalMenuSp.active .gMenu-list li {
    opacity: 0;
    animation: flyIn 0.5s forwards;
}

.globalMenuSp.active .gMenu-logo {
    animation-delay: 0.2s;
}

.globalMenuSp.active .gMenu-list li:nth-of-type(1) {
    animation-delay: 0.3s;
}

.globalMenuSp.active .gMenu-list li:nth-of-type(2) {
    animation-delay: 0.35s;
}

.globalMenuSp.active .gMenu-list li:nth-of-type(3) {
    animation-delay: 0.4s;
}

.globalMenuSp.active .gMenu-list li:nth-of-type(4) {
    animation-delay: 0.45s;
}

.globalMenuSp.active .gMenu-list li:nth-of-type(5) {
    animation-delay: 0.5s;
}

.globalMenuSp.active .gMenu-list li:nth-of-type(6) {
    animation-delay: 0.55s;
}

/* ↑ここまで動き */

@media screen and (min-width: 450px) {

    header, .hamburgerContainer {
        width: 450px;
        top: 0;
        left: 50%;
        transform: translate(-50%);
    }

    .hamburgerContainer {
        position: fixed;
        z-index: 11;
    }

    .hamburger {
        position: absolute;
    }

}

@media screen and (min-width: 900px) {

    header, .hamburgerContainer {
        left: 0;
        transform: initial;
    }

}

@media screen and (min-width: 1200px) {

    header h1, .hamburger {
        display: none;
    }

}


/*--------------
pcサイド画面
--------------*/

.pcSide {
    display: none;
}

.bodyInner {
    background-color: var(--color-white);
}

@media screen and (min-width: 450px) {

    .bodyContainer {
    background: linear-gradient(
        to bottom,
        #8e599a 0%,   /* 一番上 */
        #8892c0 33%,
        #95c0dd 66%,
        #7eb5ad 100% /* 一番下 */
    );
    position: relative;
    }

    .bodyContainer::before {
        content: "";
        background: url(./img/common/bodyContainer__bg.webp) no-repeat center / cover;
        display: block;
        width: 100%;
        height: 60vh;
        position: fixed;
        bottom: 0;
        opacity: 0.6;
    }

    .bodyInner {
        width: 450px;
        margin: 0 auto;
        box-shadow: 8px 0px 7px -7px rgb(0 0 0 / 40%), -8px 0px 7px -7px rgb(0 0 0 / 40%);
        position: relative;
    }

}

@media screen and (min-width: 900px) {

    .bodyInner {
        margin: 0;
    }

    .pcSide__deco {
        position: absolute;
        bottom: min(30px, 3vh);
    }

    /* ↓ここから動き */

    .pcSide, .pcSide__deco  {
        opacity: 0;
    }

    .pcSide.animate  {
        animation: fadeIn 0.5s forwards;
        animation-delay: 0.3s;
    }

    .pcSide.no-animate, .pcSide.no-animate .pcSide__deco {
        opacity: 1;
    }

    .pcSide.animate .pcSide__deco {
        animation: topKv-flyIn 0.4s forwards 0.8s; /* ぴょん！ */
    }

    .pcSide__deco01 img, .pcSide__deco03 img {
        animation: kirakira 2s steps(2, end) infinite;
    }

    .pcSide__deco02 img, .pcSide__deco04 img {
        animation: kirakira 2s steps(2, end) infinite 1s;
    }

    /* ↑ここまで動き */

    /* pcAside */

    .pcAside {
        display: flex;
        justify-content: center;
        align-items: center;
        width: calc(100% - 450px);
        height: 100%;
        position: fixed;
        top: 0;
        right: 0;
    }

    .pcAside-inner {
        max-width: 350px;
        width: 80%;
        color: var(--color-white);
    }

    .pcAside-information {
        border: 2px solid var(--color-white);
        border-radius: 30px;
        padding: min(25px, 2.5vh);
        position: relative;
    }

    .pcAside-information__image {
        width: 5vh;
        margin: 0 auto;
    }

    .pcAside-information__title {
        margin-top: 10px;
        font-size: min(2rem, 2.3vh);
        font-weight: var(--font-medium);
        text-align: center;
        line-height: 1;
        letter-spacing: 2px;
    }

    .pcAside-information__details {
        margin-top: min(15px, 1.5vh);
    }

    .pcAside-information__details dl {
        display: flex;
        font-size: var(--font-12px);
    }

    .pcAside-information__details dl dt,
    .pcAside-information__details dl dd {
        margin-top: 0.8em;
        padding-top: 0.8em;
        font-size: min(1.4rem, 1.7vh);
        line-height: 1.4;
    }

    .pcAside-information__details dl:first-of-type dt,
    .pcAside-information__details dl:first-of-type dd {
        margin-top: 0;
    }

    .pcAside-information__details dl:last-of-type dt,
    .pcAside-information__details dl:last-of-type dd {
        padding-bottom: 1em;
    }

    .pcAside-information__details dt {
        width: 100px;
        text-align: center;
        border-top: 1px solid var(--color-white);
    }

    .pcAside-information__details dl:last-of-type dt {
        border-bottom: 1px solid var(--color-white);
    }

    .pcAside-information__details dd {
        width: calc(100% - 100px);
        border-top: 1px solid rgba(255, 255, 255, 0.5);
    }

    .pcAside-information__details dl:last-of-type dd {
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    }

    .pcAside-information__detailsNote {
        display: block;
        margin-top: 2px;
        font-size: 80%;
        line-height: 1.4;
    }

    .pcAside-informationDeco {
        width: 30px;
        position: absolute;
        top: -28px;
        right: -26px;
    }

    .pcAside-button a {
        display: block;
        margin-top: 1em;
        border: 1px solid var(--color-white);
        border-radius: 100px;
        padding: 0.6em 1.5em;
        font-size: min(1.6rem, 1.2vw);
        font-weight: var(--font-medium);
        letter-spacing: 1px;
        background: url(./img/common/pcAside-button--arow.svg) no-repeat center right 1.5em / 1.2em;
        color: var(--color-white);
    }

    .pcAside-button--shop a {
        display: flex;
        gap: 8px;
    }

    .pcAside-button--shop a::before {
        content: "";
        display: block;
        width: 1.3em;
        height: 1.4em;
        background: url(./img/common/pcAside-button--shopDeco.svg) no-repeat center / 1.2em;
    }

    .pcSide__deco03 {
        width: 10%;
        left: 20px;
    }

    .pcSide__deco04 {
        width: 10%;
        right: 20px;
    }

}

@media screen and (min-width: 1200px) {

    .bodyInner {
        margin: 0 auto;
    }

    /* pcSide */

    .pcSide {
        width: calc((100% - 450px) / 2);
    }

    /* pcNav */

    .pcNav {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        position: fixed;
        top: 0;
    }

    .pcNav {
        left: 0;
    }

    .pcNav-logo {
        width: 25vh;
        margin: 0 auto;
    }

    .pcNav-list {
        width: fit-content;
        margin: 30px auto 0;
    }

    .pcNav-list li a {
        margin: 1.6em 0;
        padding-left: 1.3em;
        font-size: min(1.8rem, 2.2vh);
        position: relative;
    }

    .pcNav-list li a.is-current::before {
        content: "";
        display: block;
        width: 1em;
        height: 1.3em;
        background: url(./img/common/pcNav-listDeco.svg) no-repeat center left / 1em;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }

    .pcSide__deco01 {
        width: 18%;
        left: 30px;
    }

    .pcSide__deco02 {
        width: 18%;
        right: 30px;
    }

}


/*--------------
Top共通
--------------*/

.topSec {
    width: 90%;
    margin: var(--space-50px) auto;
    position: relative;
    scroll-margin-top: var(--space-50px);
}

.topSec__title {
    margin-bottom: var(--space-20px);
    font-size: var(--font-26px);
    font-weight: var(--font-bold);
    text-align: center;
    line-height: 1.5;
}

.top__button {
    margin: var(--space-30px) auto 0;
    border-radius: 10px;
    background-color: var(--color-purple100);
}

.top__button a {
    display: block;
    padding: 0.3em 0 0.4em;
    background: url(./img/top/topNewsButton--arrow.svg) no-repeat right 15px center;
    background-size: 0.5em;
    font-weight: var(--font-medium);
    color: var(--color-white);
    text-align: center;
    letter-spacing: 1px;
}


/*--------------
KV(キービジュアル
--------------*/

.topKv {
    width: 100%;
    height: min(700px, 90vh);
    padding-top: var(--space-20px);
    position: relative;
    overflow: hidden;
    background: url(./img/top/topKv_bg.png) no-repeat top/cover;

    @media screen and (min-width: 450px) {
        min-height: 700px;
    }
}

.topKv__logoImage {
    width: 82%;
    margin: 0 auto;
}

.topKv__deco {
    position: absolute;
    width: 15%;
}

.topKv__deco01 {
    right: 4%;
    bottom: 30%;
}

.topKv__deco02 {
    left: 5%;
    bottom: 4%;
    animation-delay: 1s;
}

/* ↓ここから動き */

.topKv .topKv__logoImage,
.topKv .topKv__deco {
    opacity: 0;
}

.topKv.animate .topKv__logoImage {
    animation: topKv-flyIn 0.4s forwards;
}

@keyframes topKv-flyIn {

    0% {
        opacity: 0;
        transform: translateY(80%) scale(0);
    }
    60% {
        transform: translateY(-10%) scale(1.1);
    }
    80% {
        transform: translateY(5%) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}

.topKv.animate .topKv__deco {
    animation: topKv-flyIn 0.4s forwards 0.8s; /* ぴょん！ */
}

.topKv.animate .topKv__deco01 img {
    animation: kirakira 2s steps(2, end) infinite;
}

.topKv.animate .topKv__deco02 img {
    animation: kirakira 2s steps(2, end) infinite 1s;
}

/* ↑ここまで動き */


/*--------------
topNews
--------------*/

.topNews__cateList {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.topNews__cateItem {
    width: 33%;
    padding: 0.2em;
    font-size: var(--font-13px);
    font-weight: var(--font-medium);
    color: var(--color-white);
    text-align: center;
    cursor: pointer;
}

.topNews__cateItem:nth-of-type(1) {
    border-radius: 10px 0 0 10px;
    background-color: var(--color-purple100);
}

.topNews__cateItem:nth-of-type(2) {
    background-color: var(--color-green);
}

.topNews__cateItem:nth-of-type(3) {
    border-radius: 0 10px 10px 0;
    background-color: var(--color-darkBlue100);
}

.topNews__cateItem a {
    display: block;
}

.topNews__main {
    margin-top: var(--space-30px);
}

.newsListLink {
    margin-top: 16px;
    border-top: 1px dotted #808080;
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.newsListLink::before {
    content: "";
    width: 40px;
    height: 1px;
    background-color: var(--color-black);
    position: absolute;
    top: -1px;
    right: 0;
}

.newsListLink:first-of-type {
    margin-top: 0;
}

.newsListLink:last-of-type {
    border-bottom: 1px dotted #808080;
    padding-bottom: 16px;
}

.newsListLink:last-of-type::after {
    content: "";
    width: 40px;
    height: 1px;
    background-color: var(--color-black);
    position: absolute;
    bottom: -1px;
    right: 0;
}

.newsList {
    width: calc(100% - 40px);
    padding-left: 5%;
}

.newsList dt {
    font-size: var(--font-12px);
}

.newsDate {
    color: #808080;
    letter-spacing: 1px;
}

.newsCate {
    margin-left: 0.4em;
    border-radius: 8px;
    padding: 2px 0.8em;
    color: var(--color-white);
    line-height: 1;
}

/* カテゴリーが "topics" のとき */
.newsList--topics .newsCate {
    background-color: var(--color-green);
}

/* カテゴリーが "event" のとき */
.newsList--event .newsCate {
    background-color: var(--color-darkBlue100);
}

.newsList dd {
    margin-top: 0.6em;
    font-weight: var(--font-medium);
}

.newsList--arrow {
    width: 10px;
    margin: 0 15px;
}

.topNews__button {
    width: 90%;
}


/*--------------
topFun
--------------*/

.topFun {
    overflow: hidden;
    border-radius: 70px;
    padding: var(--space-40px) 0 0;
    background-color: var(--color-purple10);
}


.topFun .topSec__title {
    color: var(--color-purple100);
}

.topFun__illustContainer {
    position: relative;
    margin: var(--space-30px) auto;
}

.topFun__illust {
    width: 22%;
    margin: 0 auto;
}

.topFun__illustDeco {
    position: absolute;
    width: 5%;
}

.topFun__illustDeco01 {
    top: -20%;
    right: 26%;
}

.topFun__illustDeco02 {
    bottom: -5%;
    left: 26%;
    animation-delay: 1s;
}

.topFun__text {
    font-family: var(--font-ZenMaruGothic);
    font-weight: var(--font-medium);
    line-height: 2.1;
    text-align: center;
    color: var(--color-purple100);
}

.topFun__image {
    width: 60%;
    margin: var(--space-20px) auto 0;
}


/*--------------
topHowto
--------------*/

.topHowto__container {
    overflow: hidden;
    margin-top: 120px;
    border-radius: 70px;
    padding: var(--space-40px) 0 var(--space-80px);
    background-color: var(--color-darkBlue10);
    position: relative;
    z-index: 1;
}

.topHowto::after {
    content: "";
    background: url(./img/top/characterDeco.png) no-repeat center / contain;
    display: block;
    width: 22%;
    height: 100px;
    position: absolute;
    top: -80px;
    left: 10%;
    opacity: 0;
    transform: translateY(150%) scale(0);
}

.topHowto-animation::after {
    animation:
    flyIn 0.5s forwards, 
    kakukaku2 2s steps(2, end) infinite;
}

@keyframes kakukaku2 {
    0% {
        rotate: -4deg;
    }
    100% {
        rotate: 8deg;
    }
}

.topHowto__inner {
    width: 90%;
    margin: var(--space-50px) auto 0;
    scroll-margin-top: var(--space-50px);
}

.topHowto__inner:first-of-type {
    margin-top: 0;
}

.topHowto__inner .topSec__title {
    color: var(--color-darkBlue100);
}


/*--------------
polish
--------------*/

.topHowto__polish__text {
    margin-top: var(--space-20px);
    font-family: var(--font-ZenMaruGothic);
    font-weight: var(--font-medium);
    color: var(--color-darkBlue100);
}

.topHowto__polish__movie {
    margin-top: var(--space-20px);
}


/*--------------
steps
--------------*/

.topHowto__steps__list--item {
    border-radius: 20px;
    padding: var(--space-20px);
    background-color: var(--color-white);
    position: relative;
}

.topHowto__steps__list--itemTitle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-darkBlue100);
    font-family: var(--font-ZenMaruGothic);
    color: var(--color-white);
    line-height: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2px;
    position: absolute;
    top: -10px;
    left: -10px;
}

.topHowto__steps__list--itemTitle02 {
    background-color: var(--color-green);
    left: 40px;
}

.topHowto__steps__list--itemTitle02 small {
    font-size: 65%;
    padding-left: 3px;
}

.topHowto__steps__list--itemTitle span {
    display: block;
    width: 100%;
    text-align: center;
}

.topHowto__steps__list--itemTitle span {
    font-size: var(--font-24px);
}

.topHowto__steps__list--itemText {
    margin-top: var(--space-15px);
    font-family: var(--font-ZenMaruGothic);
    font-weight: var(--font-medium);
    color: var(--color-darkBlue100);
}

.topHowto__steps__list--itemText p {
    margin-top: 0.5em;
}

.topHowto__steps__list--itemText p:first-of-type {
    margin-top: 0;
}

.topHowto__steps__list--itemText span.bgColor01 {
    background-color: #e5e5e5;
}

.topHowto__steps__list--itemText span.bgColor02 {
    background-color: #f5e9da;
}

/* ↓ここから動き(steps) */

.topHowto__steps__list .slick-track {
  display: flex;
  align-items: stretch; /* 高さを均一化 */
}

.topHowto__steps__list .slick-slide {
  display: flex !important;
  height: auto !important; /* 自動調整OFF */
}

.topHowto__steps__list--item {
  flex: 1; /* 伸ばして全体を埋める */
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* 内容を上詰め */
}

.topHowto__steps__list .slick-slide,
.topVoice__list .slick-slide {
  margin: 10px 10px 0; /* 左右に10pxの余白を追加 */
}

.topHowto__steps__list .slick-list,
.topVoice__list .slick-list {
  margin: -10px -10px 0; /* はみ出し防止のための打ち消し */
}

.slick-arrow{
	display: none!important;
}

.slick-dots {
    margin-top: var(--space-20px);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 13px;
}

.slick-dots li {
    line-height: 1;
}

.slick-dots li button {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 50%;
    background-color: #cccccc;
    font-size: 0;
    cursor: pointer;
}

.slick-dots .slick-active button {
    width: 15px;
    height: 15px;
    background: var(--color-purple100);
    color: var(--color-purple100);
}

/* ↑ここまで動き(steps) */


/*--------------
information
--------------*/

.topHowto__information {
    margin-top: 100px;
    position: relative;
}

.topHowto__information__box {
    border-radius: 20px;
    padding: var(--space-20px);
    padding-bottom: var(--space-80px);
    background-color: var(--color-white);
    position: relative;
    z-index: 1;
}

.topHowto__information::after {
    content: "";
    background: url(./img/top/characterDeco.png) no-repeat center / contain;
    display: block;
    width: 22%;
    height: 100px;
    position: absolute;
    top: -13%;
    left: 8%;
    animation: kakukaku2 2s steps(2, end) infinite;
}

@keyframes kakukaku2 {
    0% {
        rotate: -4deg;
    }
    100% {
        rotate: 8deg;
    }
}

.topHowto__information .topSec__title {
    letter-spacing: 2px;
}

.topHowto__information__details dl {
    margin-top: var(--space-15px);
    display: flex;
    font-weight: var(--font-medium);
}

.topHowto__information__details dl:first-of-type {
    margin-top: 0;
}

.topHowto__information__details dt {
    width: 80px;
    border-bottom: 1px solid var(--color-darkBlue100);
    padding-bottom: 5px;
}

.topHowto__information__details dd {
    width: calc(100% - 80px);
    border-bottom: 1px solid var(--color-darkBlue50);
    padding-bottom: 5px;
    padding-left: 1em;
}

.topHowto__information__detailsImportant {
    font-size: 140%;
    line-height: 1;
}

.topHowto__information__detailsNote {
    display: block;
    font-size: 12px;
    font-weight: var(--font-medium);
    color: var(--color-darkBlue100);
}

.topHowto__image {
    width: 70%;
    margin: var(--space-20px) auto 0;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 105%);
    z-index: 1;
}
.topHowto__image.scroll-slideIn-animation {
    animation: slideIn2 0.4s forwards; /* 0.6秒で元の位置に戻る */
}
@keyframes slideIn2 {
    0% {
        transform: translate(-50%, 105%);
    }
    100% {
        transform: translate(-50%, 0);
    }
}


/*--------------
topVoice
--------------*/

.topVoice__title {
    color: var(--color-purple100);
}

.topVoice__titleText {
    font-weight: var(--font-medium);
    color: var(--color-purple100);
}

.topVoice__list {
    margin-top: var(--space-30px);
}


/*--------------
topSlide
--------------*/

.topSlide {
    margin: var(--space-80px) 0;
}

.topSlideInner {
    margin-top: var(--space-15px);
}

.topSlideInner:first-of-type {
    margin-top: 0;
}

.swiper-wrapper {
  transition-timing-function: linear;
}

.swiper-slide {
    overflow: hidden;
    margin: 0 7.5px;
    border-radius: 10px;
}


/*--------------
topFaq
--------------*/

.topFaqContainerDeco {
    padding-top: var(--space-40px);
    transform: translateY(0.5px);
    position: relative;
}

.topFaqContainerDecoText {
    width: 80%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.topFaqContainer {
    scroll-margin-top: 200px;
    padding-bottom: var(--space-50px);
    background-color: var(--color-lightBlue);

    /* ▼Instagramが復活したらつかう
    padding-bottom: 100px; */
}

.topFaq {
    margin: 0 auto;
    color: var(--color-white);
}

.topFaq__title {
    margin-bottom: var(--space-20px);
    font-size: var(--font-18px);
    font-weight: var(--font-bold);
    text-align: center;
    letter-spacing: 2px;
}

.accordion-item {
    margin-top: var(--space-10px);
    border: 2px solid var(--color-white);
    border-radius: 10px;
    padding: 1em;
    font-weight: var(--font-medium);
    letter-spacing: 1px;
}

.accordion-item:first-of-type {
    margin-top: 0;
}

.accordion-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    line-height: 1.4;
}

.accordion-title div:first-of-type,
.accordion-content {
    position: relative;
    padding-left: 1.2em;
}

.accordion-title div:first-of-type {
    width: calc(100% - 25px);
}

.accordion-title div:first-of-type::before {
    content: "";
    content: "Q";
    position: absolute;
    top: 0;
    left: 0;
}

.accordion-plus {
    width: 1em;
    height: 1em;
    position: relative;
}

.accordion-plus::before, .accordion-plus::after {
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    top: 48%;
    background-color: var(--color-white);
    transition: 0.4s;
}

.accordion-plus::before {
    transform: rotate(0deg);
}

.accordion-plus::after {
    transform: rotate(90deg);
}

/*closeというクラスがついたら形状変化*/

.accordion-title.close .accordion-plus::before {
	transform: rotate(0deg);
}

.accordion-title.close .accordion-plus::after {
	transform: rotate(0deg);
}

.accordion-content {
    display: none;
    margin-top: 0.5em;
}

.accordion-content::before {
    content: "";
    content: "A";
    position: absolute;
    top: 0;
    left: 0;
}

.topFaq__contactButton a {
    display: block;
    margin-top: var(--space-10px);
    border-radius: 10px;
    padding: 1em;
    background-color: var(--color-white);
    font-weight: var(--font-medium);
    color: var(--color-lightBlue);
    letter-spacing: 1px;
    text-align: center;
}

.topFaq__contactButton a span {
    padding-right: 2em;
    background: url(./img/top/topFaq__contactButtonDeco.svg) no-repeat bottom 1px right / 1.4em;
}

/* topInstagram */

.topInstagram {
    padding-bottom: var(--space-50px);
}

.topInstagram__inner {
    width: 70%;
    margin: -80px auto 0;
}

.topInstagram__button {
    width: 30%;
    margin: -50px auto 0;
}

.topInstagram__button a {
    display: block;
}

.topInstagram__button a:hover {
    opacity: initial;
    transform: scale(1.15);
}


/*--------------
Footer
--------------*/

/* banner */

.bannerList {
    width: 90%;
    margin: var(--space-50px) auto;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-15px);

    /* ▼Instagramが復活したらつかう
    margin: 0 auto var(--space-50px); */
}

.banner__item {
    width: 100%;
}

.banner__item a {
    display: block;
}

/* footerInner */

.footerInner {
    background-color: var(--color-green);
    color: var(--color-white);
}

.footer__info {
    height: 300px;
}

.footer__copy {
    text-align: center;
    padding: var(--space-20px) 0;
}

.footer__topLinkButtonContainer {
    max-width: 450px;
    width: 100%;
    height: calc(80px + 2%);
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    z-index: 2;

    @media screen and (min-width: 900px) {
        left: 0;
        transform: initial;

        @media screen and (min-width: 1200px) {
            left: 50%;
            transform: translate(-50%);
        }

    }
}

.footer__topLinkButton {
    width: 80px;
    position: absolute;
    right: 3%;
    top: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
}

.footer__topLinkButton.is-visible {
    opacity: 1;
    visibility: visible;
}

.footer__topLinkButton a {
    display: block;
}

.footer__topLinkButton a:hover {
    opacity: initial;
}


/*--------------
下層共通
--------------*/

.mainUnderArea {
    min-height: 60vh;
    padding: 80px 0 60px;

    @media screen and (min-width: 1200px) {
        padding-top: 50px;
    }
}

.underSec {
    width: 90%;
    margin: 0 auto;
    position: relative;
}


/*--------------
お知らせ
--------------*/

.mainUnderArea--news {
    background: linear-gradient(to bottom, #7eb5ad 0%, /* 一番上 */ #95c0dd 33%, #8892c0 66%, #8e599a 100% /* 一番下 */);
    padding-bottom: 0;
}

.newsPage__deco {
    position: relative;
    transform: translateY(0.5px);
}

.newsPage__starDeco {
    position: absolute;
}

.newsPage__starDeco01 {
    width: 18%;
    top: -12%;
    right: 3%;
}

.newsPage__starDeco02 {
    width: 15%;
    top: -2%;
    left: 3%;
    animation-delay: 1s;
}

.pageNewsContainer {
    min-height: 45vh;
    padding-bottom: 60px;
    background-color: var(--color-white);
}

.pageNews__titleBox {
    position: absolute;
    top: -50px;
    width: 100%;
}

.pageNews__titleDeco {
    width: 15%;
    margin: 0 auto 5px;
    transform: translateX(8%);
}

.pageNews__title {
    font-size: 30px;
    font-weight: var(--font-bold);
    color: var(--color-purple100);
    text-align: center;
    line-height: 1.5;
}

.pageNewsInner {
    padding-top: 75px;
}

/* archive */

.pageNews__button {
    width: 100%;
}

.archive-nav {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}

.archive-nav p a {
    position: relative;
}

.archive-nav p.archive-nav--prev a {
    padding-left: 1.3em;
}

.archive-nav p.archive-nav--next a {
    padding-right: 1.3em;
}

.archive-nav p a::before {
    content: "";
    width: 1.1em;
    height: 1.1em;
    background: url(./img/common/newsList--arrow.svg) no-repeat center / contain;
    position: absolute;
    top: 50%;
}

.archive-nav p.archive-nav--prev a::before {
    transform: translateY(-48%) scaleX(-1);
    left: 0;
}

.archive-nav p.archive-nav--next a::before {
    transform: translateY(-48%);
    right: 0;
}

/* single */

.pageNewsContainer--single {
    padding-bottom: 20px;
}

.pageNewsInner--single {
    padding-top: 0;
    transform: translateY(-40px);
}

.single__titleBox {
    padding-bottom: var(--space-10px);
    border-bottom: 1px solid var(--color-purple100);
    margin-bottom: var(--space-20px);
}

.single__subTitleBox {
    display: flex;
    justify-content: center;
    font-size: var(--font-12px);
}

.single-days {
    color: #808080;
    letter-spacing: 1px;
}

.single-Cate {
    margin-left: 0.4em;
    border-radius: 8px;
    padding: 2px 0.8em;
    font-size: var(--font-12px);
    color: var(--color-white);
    line-height: 1.4;
}

.single-Cate--topics {
    background-color: var(--color-green);
}

.single-Cate--event {
    background-color: var(--color-darkBlue100);
}

.single__title {
    width: fit-content;
    margin: 10px auto 0;
    font-size: var(--font-18px);
    font-weight: var(--font-medium);
}

.single__main h3, 
.single__main h4, 
.single__main h5, 
.single__main h6, 
.single__main ul, 
.single__main ol, 
.single__main p {
    margin-top: 1em;
}

.single__main h3, 
.single__main h4, 
.single__main h5, 
.single__main h6 {
    font-weight: var(--font-medium);
    color: var(--color-purple100);
}

.single__main h3 {
    background-color: var(--color-purple10);
    border-radius: 5px;
    padding: 0.5em;
    font-size: var(--font-16px);
}

.single__main h4 {
    padding-bottom: 0.3em;
    border-bottom: 1px solid var(--color-purple100);
    font-size: var(--font-15px);
}

.single__main h5 {
    padding-left: 0.5em;
    border-left: 1px solid var(--color-purple100);
}

.single__main ul li {
    padding-left: 1em;
    text-indent: -1em;
}

.single__main ul li::before {
    content: "・";
    color: var(--color-purple100);
}

.single__main strong {
    font-weight: var(--font-bold);
}

.single__main a {
    color: var(--color-purple100);
    font-weight: var(--font-medium);
    text-decoration: underline;
}


/*--------------
404
--------------*/

.mainUnderArea--404 {
    display: flex;
    align-items: center;
}

.page404-container h2 {
    font-family: var(--font-ZenMaruGothic);
    font-size: 110px;
    font-weight: var(--font-medium);
    color: var(--color-purple100);
    line-height: 1;
    text-align: center;
}

.page404-text {
    margin-top: var(--space-20px);
    font-weight: var(--font-medium);
    text-align: center;
}