@charset "utf-8";
/* ==================================
comon
===================================== */
html {
    font-size: 62.5%;
    scroll-padding-top: 60px;
    scroll-behavior: smooth;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4rem;
    color: #000000;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

@media screen and (min-width: 1024px) {
    body {
        font-size: 1.6rem;
        font-style: normal;
    }

}

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

/* ================================
header
=================================== */
.header,.nav__header {
    display: flex;
    background: #D6DDEA;
    width: 100%;
    height: 60px;
    margin: 0 auto;
    position: fixed;
    justify-content: space-between;
    z-index: 100;
}

.header__topic,.nav__topic {
    padding: 7px 0 0 5%;
    width: 189px;
    height: 45px;
}

/* .nav */
/* overlay-styles.css */
.hamburger-overlay {
    position: fixed;
    top: 7px;
    right: 20px;
    z-index: 1000;
    width: 48px;
    height: 48px;
    border: none;
    background: transparent;
    cursor: pointer;
}

.hamburger-overlay__line {
    position: absolute;
    left: 11px;
    width: 26px;
    height: 2px;
    background-color: #333;
    transition: all .6s;
}

.hamburger-overlay__line:nth-of-type(1) { top: 14px; }
.hamburger-overlay__line:nth-of-type(2) { top: 23px; }
.hamburger-overlay__line:nth-of-type(3) { top: 32px; }

.hamburger-overlay.active .hamburger-overlay__line {
    background-color: #333;
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
    transform: translateY(9px) rotate(-45deg);
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
    opacity: 0;
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
    transform: translateY(-9px) rotate(45deg);
}

.nav-overlay {
    position: fixed;
    margin-top: 60px;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.838);
    visibility: hidden;
    opacity: 0;
    transition: all .6s;
    z-index: 900;
}

.nav-overlay.active {
    visibility: visible;
    opacity: 1;
}

.nav-overlay__content {
    width: auto;
    text-align: right;
}

.nav-overlay__list {
    margin: 0;
    padding: 20px 20px 0 0;
    list-style: none;
}

.nav-overlay__item {
    opacity: 0;
    transform: translateY(20px);
    transition: all .6s;
}

.nav-overlay.active .nav-overlay__item {
    opacity: 1;
    transform: translateY(0);
}

.nav-overlay.active .nav-overlay__item:nth-child(1) { transition-delay: 0.1s; }
.nav-overlay.active .nav-overlay__item:nth-child(2) { transition-delay: 0.2s; }
.nav-overlay.active .nav-overlay__item:nth-child(3) { transition-delay: 0.3s; }
.nav-overlay.active .nav-overlay__item:nth-child(4) { transition-delay: 0.4s; }
.nav-overlay.active .nav-overlay__item:nth-child(5) { transition-delay: 0.5s; }
.nav-overlay.active .nav-overlay__item:nth-child(6) { transition-delay: 0.6s; }
.nav-overlay.active .nav-overlay__item:nth-child(7) { transition-delay: 0.7s; }
.nav-overlay.active .nav-overlay__item:nth-child(8) { transition-delay: 0.8s; }
.nav-overlay.active .nav-overlay__item:nth-child(9) { transition-delay: 0.9s; }

.nav-overlay__link {
    display: inline-block;
    padding: 7px;
    color: #000000;
    font-size: 1.4rem;
    text-decoration: none;
    transition: color .3s;
}

.nav_span {
    font-size: 0.8rem;
}

.nav-overlay__link:hover {
    color: #4a90e2;
}

@media screen and (min-width: 1024px) {
    .nav-overlay__link {
        font-size: 1.6rem;
    }
}

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

    .header {
        width: 100%;
        height: 95px;
        margin: 0 auto;
        padding: 30px 5% 20px;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        box-sizing: border-box;
    }

    .header__topic {
        width: 260px;
        padding: 0;
        flex-shrink: 0;
    }

    .nav-overlay {
        position: static;
        margin-top: 0;
        width: auto;
        height: auto;
        background: transparent;
        visibility: visible !important;
        opacity: 1 !important;
        transition: none;
    }

    .nav-overlay__content {
        margin-top: 0;
        padding: 0;
        display: flex;
        text-align: center;
        line-height: 1em;
        flex-wrap: wrap;
    }

    .nav-overlay__list {
        display: flex;
        gap: 30px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .nav-overlay__item {
        opacity: 1 !important;
        transform: none !important;
        transition: none;
    }

    .nav-overlay__link {
        display: inline-block;
        padding: 0;
        color: #000;
        font-size: 1.8rem;
        text-decoration: none;
    }

    .hamburger-overlay {
        display: none;
    }
}


/* ================================
topic
=================================== */
/* topic */
.section__topic {
    color: #565757;
    width: 100%;
    height: 111px;
    font-size: 4rem;
    font-weight: 700;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: normal;
    position: relative;
    z-index: 1;
    opacity: 0; /* ←初期は非表示 */
    transform: translateY(20px);
    transition: opacity 1s ease-out 0.3s, transform 1s ease-out 0.3s;
}

.section__topic.left {
    align-items: flex-start;
}

.section__topic.right {
    align-items: flex-end;
}


/* span */
.section__topic span {
    font-size: 1.4rem;
    padding: 0 30px;
}

/* topic__animation */
.section__topic.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.bg-heading{
    padding: 30px 30px 0 30px;
}


/* topic__back */
.bg-heading::after {
    content: attr(data-bg);
    position: absolute;
    top: 50%;
    padding-top: 2vw;
    transform: translateY(-50%); /* 垂直中央 */
    font-size: 8rem;
    color: rgba(0, 0, 0, 0.05);
    white-space: nowrap;
    pointer-events: none;
    z-index: -1;
}

.bg-heading[data-align="right"]::after {
    right: 0;
    transform: translateX(0%) translateY(-50%);
    text-align: right;
}

/* 見出し右寄せ → 背景文字は左端に配置 */
.bg-heading[data-align="left"]::after {
    left: 0;
    transform: translateX(0%) translateY(-50%);
    text-align: left;
}

/* topic_tablet */
@media screen and (min-width: 768px) {
    .section__topic {
        font-size: 7.6rem;
        margin-bottom: 60px;
    }

    .section__topic span {
        font-size: 2.2rem;
    }

    .bg-heading::after {
        font-size: 16rem;
    }
}

/* topic_pc */
@media screen and (min-width: 1024px) {
    
    .section__topic {
        font-size: 9.6rem;
        margin-bottom: 50px;
    }

    .section__topic span {
        font-size: 3.2rem;
        padding: 0 10%;
    }

    .bg-heading {
        padding: 90px 10% 0;
    }

    .bg-heading::after {
        font-size: 25rem;
        padding: 120px 3% 50px;
    }
}



/* ================================
mainimage
=================================== */
.mainimage__pc,.mainimage__pc__shadow {
    display: none;
}

:root{
    --start: .6s;
    --fade:  1.2s;
    --gap:   .2s;
    --glitchX: 1.5px;
    --logoDelay: calc(var(--start) + var(--fade) + var(--gap));
    --logoBaseX: -50%;    /* SP = 中央基準 */
    --scrollBaseX: -50%; 
}

/* コンテナ：重ねる土台 */
.mainimage{
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100svh;
    overflow: hidden;
    isolation: isolate;
}

/* 影と本体：常に全面・完全に重ねる */
.mainimage__sp,
.mainimage__sp__shadow{
    padding-top: 55px;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;   /* 縦横比維持。はみ出しは左右が切れる */
    display: block;
}

/* クロスフェード */
.mainimage__sp{
    z-index: 1;
    opacity: 0;
    animation: fade-in var(--fade) ease-out var(--start) forwards;
    will-change: opacity;
}
.mainimage__sp__shadow{
    z-index: 0;
    opacity: 1;
    animation: fade-out var(--fade) ease-out var(--start) forwards;
    will-change: opacity;
}

/* logo */
.mainimage__logo{
    position: absolute;
    left: 50%;
    bottom: 10%;
    transform: translateX(var(--logoBaseX));
    width: 100;
    height: auto;
    object-fit: contain;
    z-index: 2;
    opacity: 0;
    animation:
        logo-fade   .55s ease-out var(--logoDelay) forwards,
        logo-glitch 1.05s steps(16) var(--logoDelay) 1;
    will-change: transform, filter, opacity;
}

/* キーフレーム */
@keyframes fade-in  { from{opacity:0} to{opacity:1} }
@keyframes fade-out { from{opacity:1} to{opacity:0} }

@keyframes logo-fade{
    from{ opacity:0; filter:blur(2px) contrast(120%); }
    to  { opacity:1; filter:none; }
}
@keyframes logo-glitch{
    0%   { transform: translateX(var(--logoBaseX)); }
    6%   { transform: translateX(calc(var(--logoBaseX) - var(--glitchX))); filter: hue-rotate(8deg) contrast(120%); }
    8%   { transform: translateX(var(--logoBaseX)); filter:none; }
    14%  { transform: translateX(calc(var(--logoBaseX) + var(--glitchX))); filter: hue-rotate(-10deg) saturate(130%); }
    16%  { transform: translateX(var(--logoBaseX)); filter:none; }
    28%  { transform: translateX(calc(var(--logoBaseX) - (var(--glitchX) * .6))); }
    30%  { transform: translateX(var(--logoBaseX)); }
    42%  { transform: translateX(calc(var(--logoBaseX) + (var(--glitchX) * .6))); filter: contrast(130%); }
    44%  { transform: translateX(var(--logoBaseX)); filter:none; }
    100% { transform: translateX(var(--logoBaseX)); filter:none; }
}

/* モーション軽減環境ではフェードのみ */
@media (prefers-reduced-motion: reduce){
    .mainimage__sp        { animation: fade-in  .6s ease-out var(--start) forwards; }
    .mainimage__sp__shadow{ animation: fade-out .6s ease-out var(--start) forwards; }
    .mainimage__logo      { animation: logo-fade .6s ease-out var(--logoDelay) forwards; }
}

/* scrollmark */
.mainimage__scroll{
    position: absolute;
    left: 50%;
    bottom: 6%;
    transform: translate(var(--scrollBaseX), 0);
    width: 10%;
    height: auto;
    z-index: 3;
    opacity: 0;
    /* ①ふわっと出現 → ②ゆるい上下ボブをリピート */
    animation:
        scroll-fade .6s ease-out calc(var(--logoDelay) + .2s) forwards,
        scroll-bob 1.8s ease-in-out calc(var(--logoDelay) + .8s) infinite;
    /* クリックしやすく */
    cursor: pointer;
}

/* 出現アニメ（少しだけ下から） */
@keyframes scroll-fade{
  from{ opacity:0; transform: translate(var(--scrollBaseX), 6px); }
  to  { opacity:1; transform: translate(var(--scrollBaseX), 0); }
}

/* ふわふわ上下 */
@keyframes scroll-bob{
  0%,100% { transform: translate(var(--scrollBaseX), 0); }
  50%     { transform: translate(var(--scrollBaseX), 8px); }
}

/* モーション軽減：ボブは止める、フェードのみ */
@media (prefers-reduced-motion: reduce){
  .mainimage__scroll{
    animation: scroll-fade .6s ease-out calc(var(--logoDelay) + .2s) forwards;
  }
}

/* キーフレーム */
@keyframes fade-in  { from{opacity:0} to{opacity:1} }
@keyframes fade-out { from{opacity:1} to{opacity:0} }


/* mainimage_pc */
@media screen and (min-width: 1024px) {
    /* 変数で中央→右寄せに切替（X移動0） */
    :root{
        --logoBaseX: 0;      /* ← これで最初から右寄せ基準 */
        --scrollBaseX: 0;    /* ← これで最初から右寄せ基準 */
    }

    /* SPを隠してPCを表示 */
    .mainimage__sp,
    .mainimage__sp__shadow { 
    display: none; 
    }

    .mainimage__pc,
    .mainimage__pc__shadow{
        display: block;
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* PC側にも同じクロスフェードを適用 */
    .mainimage__pc{
        z-index: 1;
        opacity: 0;
        animation: fade-in var(--fade) ease-out var(--start) forwards;
        will-change: opacity;
    }
    .mainimage__pc__shadow{
        z-index: 0;
        opacity: 1;
        animation: fade-out var(--fade) ease-out var(--start) forwards;
        will-change: opacity;
    }

    /* ロゴ・スクロールを右下に配置（変数でX=0基準だから最初から右下） */
    .mainimage__logo{
        width: 40vw;
        left: auto;
        right: 5%;
        padding-bottom: 20px;
    }

    .mainimage__scroll{
        width: 5vw;
        left: auto;
        right: 10%;
    }

}



/* ================================
main
=================================== */
/* 共通設定 */

.button {
    color: #FFF;
    width: 190px;
    height: 30px;
    padding: 20px 30px;
    margin:0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background: #4984C8;
}

.button:hover {
    filter: brightness(1.1);
}

.contents {
    max-width: 1440px;
    margin: 0 auto;
}

@media screen and (min-width: 1024px) {
    .button {
        width: 430px;
        height: 35px;
        padding: 30px;
    }
}


/* ================================
message
=================================== */
.section__section--message {
    background-color: #4984C8;
}

.section__topic--message,.section__topic--message + span {
    color: #ffffff;
}

.messageimage__pc {
    display: none;
}
.messageimage__sp {
    width: 100%;
    margin-top: 10px;
}

.message__text {
    color: #ffffff;
    font-size: 1.4rem;
    line-height: 27px;
    padding: 30px 35px;
    display: flex;
    justify-content: center;
}

.message__logo {
    width: 87px;
    height: 58px;
    display: block;
    margin-left: auto;
}


/* message____tablet */
@media screen and (min-width: 768px) {
    .messageimage__sp {
        margin-top: 60px;
    }

    .message__text {
        font-size: 1.8rem;
    }
}


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

    .message__item {
        display: flex;
        justify-content: space-between;
        flex-direction:row-reverse
    }

    .messageimage__pc {
        display: block;
        position: relative; 
        z-index: 1;
        margin-top: -206px;
        margin-right: -5vw;
    }
    
    .message__contents {
        margin: 80px 0 0 8%;
    }

    .messageimage__sp {
        display:none;
    }

    .message__logo {
        display: none;
    }

}

@media screen and (min-width: 1440px) {
    .messageimage__pc {
        margin-right: 8vw;
    }
    .message__text {
        font-size: 20px;
        line-height: 40px;
        padding: 30px 35px 0;
    }
    
}

/* ================================
about
=================================== */
#about::after {
    color: #E2E7F0;
}

.section__section--about {
    background-color: #D6DDEA;
}

.about__contents {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
}

.about__image {
    max-width: none;  
    width: 165%;
    margin-left: -70vw;
    margin-top: -5vw;
}

.about__container {
    position: absolute;
    right: 0;
    text-align: right;
}

.about__pick--sp {
    margin-right: 10%;
}

.about__pick--pc {
    display: none;
}


.about__list {
    background-color: #ffffff;
    display: flex;
    width: 75vw;
    border-radius: 30px 0 0 30px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px 7vw;
    margin-bottom: 50px;
    margin-left: auto;
}

.about__heading,.result__heading {
    font-size: 2.0rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-decoration:underline;
    text-decoration-color:#4984C8;
    text-decoration-thickness: 3px;
    text-underline-offset: 20px;
}

.about__text {
    text-align: left;
}

.about__movie--induction {
    color: #4984C8;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.about__movie {
    width: 247px;
    height: 137px;
    aspect-ratio: 247/137;
    border-radius: 10px;
}


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

    .about__image {
        width: 130%;
        margin-left: -40vw;
        margin-top: -10px;
    }

}


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

    .about__image {
        width: 80%;
        margin-left: -10vw;
        margin-top: -10px;
    }

    .about__list {
        width: 360px;
        margin-right: 10%;
        margin-bottom: 80px;
        padding: 50px 60px 60px 60px;
        z-index: 1;
    }

    .about__pick--sp {
        margin-right: 55%;
    }
}

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

.about__image {
        width: 70%;
        max-width: 700px;
        margin: 0;
        margin-top: -10vw;
        margin-left: -5vw;
        z-index: 1;
    }

    .about__container {
        width: 50%;       /* 右半分 */
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .about__list {
        width: 460px;
        margin-right: 10%;
        padding: 50px 60px 60px 60px;
        border-radius: 40px;
        z-index: 2;
    }

    .about__pick--sp {
        display: none;
    }

    .about__pick--pc {
        display: none;
    }
    
    .about__movie {
        width: 350px;
        height: 250px;
    }
}

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

    .about__image {
        width: 70%;
        max-width: 700px;
        margin: 0;
        margin-top: -10vw;
        margin-left: 5vw;
    }


    .about__list {
        width: 460px;
        margin-right: 10%;
        padding: 50px 60px 60px 60px;
        border-radius: 40px;
        z-index: 2;
    }

        .about__pick--pc {
        display: block;
        transform: scale(-1, 1);
        width: 128px;
        height: 36px;
        margin-right: 0;
        z-index: 3;
    }

}

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

    .about__contents {
        margin-top: 150px;
    }

}


/* ================================
profile
=================================== */
.section__section--profile {
    background-color: #D9D9D9;
    padding-bottom: 70px;
}

#profile::after {
    color: #E4E4E4;
}

.profile__pick--sp {
    display: block;
}

.profile__pick--pc {
    display: none;
}

.moka__image {
    width: 290vw;
    max-width: 290px;
    margin: 20px auto;
    display: block;
}

.profile__moka--contents {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile__container {
    background-color: #ffffff;
    border-radius: 40px;
    display: flex;
    padding: 35px 20px 50px 20px;
    margin: 0 10%;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    align-self: stretch;
}

.profile__about {
    line-height: 25px;
}

.profile__name {
    font-size: 2.0rem;
    font-weight: 600;
    line-height: 190%;
    text-align: center;
}

.profile__subheading {
    color: #ffffff;
    background: #616161;
    font-size: 1.6rem;
    display: flex;
    padding: 0 50px;
    margin-bottom: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-sizing: border-box;
    width: 100%;
}

/* voice */
.voice {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
}

.voice__item {
    background-color: #ECECEC;
    font-size: 1.1rem;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    margin: 5px 0;
    gap: 5px;
}

.voice__title {
    line-height: 15px;
}

.icon-pause {
    display: none;
}

.voice__btn {
    border: none;
    width: 15px;
}

.voice__btn:hover {
    color: #4984C8;
}


.voice__btn.is-playing .icon-play {
  display: none;
}

.voice__btn.is-playing .icon-pause {
  display: inline;
}

/* mokabee */

.mokabee__image {
    width: 203vw;
    max-width: 203px;
    margin: 20px auto;
    display: block;
}

.mokabee__image--pc {
    display: none;
}

.profile__mokabee--contents {
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

@media screen and (min-width: 1024px) {
    .profile__pick--sp {
        display: none;
    }

    .profile__contents {
        display: flex;
        flex-direction: row;
        align-items: center;
        flex-wrap: nowrap;
        max-width: 600px;
    }

    .profile__container {
        margin: 0;
    }

    .profile__moka {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction:row-reverse;
        margin: 6%;
    }

    .profile__moka--contents {
        flex-direction: row-reverse;
    }

    .profile__pick--pc {
        display: block;
    }

    .moka__image {
        flex: 1;
        max-width: 430px;
        margin: 0;
    }

    /* mokabee */
    .profile__mokabee {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        margin: 6%;
        gap: 5vw;
    }

    .profile__mokabee--contents {
        margin: 0;
    }

    .profile__container--mokabee {
        width: 400px;
    }

    .profile__pick--mokabee {
        transform: scale(-1, 1);
    }

    .mokabee__image {
        display: none;
    }

    .mokabee__image--pc {
        display: block;
        max-width: 250px;
    }

}

@media screen and (min-width: 1440px) {
    .profile__moka {
        gap: 5vw;
    }
    .profile__mokabee {
        justify-content: center;
    }
}

/* ================================
work
=================================== */

.section__section--work {
    background-color: #EFF4F6;
    padding-bottom: 70px;
}

#work::after {
    color: #FFFFFF80;
}

.work__contents {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    padding: 30px 10px;
    margin: 0 10%;
    margin-top: 35px;
    border-radius: 50px;
    border: 5px solid #FFF;
}

.work__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.work__subheading {
    font-size: 2.0rem;
    font-weight: 600;
}


.work__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 3vw;
}

.work__topic {
    font-weight: 600;
}

.work__text {
    padding: 30px 8px 8px;
}

.work__results {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
}

.work__mokabee {
    width: 122px;
}

.work__mokabee--pc {
    display: none;
}

.work__button {
    color: #FFF;
    display: flex;
    width: 251px;
    padding: 20px 0;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background: #4984C8;
}

@media screen and (min-width: 1024px) {
    .section__section--work {
        padding-bottom: 0;
    }

    .work__contents {
        margin-top: 100px;
    }

    .work__container {
        display: flex;
        justify-content: space-between;
    }

    .work__item {
        margin: 30px;
    }

    .work__mokabee {
        display: none;
    }

    .work__mokabee--pc {
        width: 280px;
        display: flex;
        margin-top: -7vw;
    }
}


/* ================================
goods
=================================== */

.section__section--goods {
    background-color: #fff;
    margin-bottom: 70px;
}

/* スライドショー */
.slider {
    width: 100%;            /* 画面幅いっぱい */
    overflow: hidden;       /* 横スクロールを防ぐ */
    border-radius: 10px;
    position: relative;
}

.goods__slider {
    margin-top: 35px;
    margin-bottom: 35px;
    display: flex;
    width: calc(200%);   /* 画像2枚分の幅 */
    animation: scroll 30s linear infinite;
}

.goods__slider img {
    width: 100%;         /* 1枚の画像を横幅いっぱい */
    flex-shrink: 0;
}

@keyframes scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-70%); } /* 半分流したらリセット */
}

.goods__button {
    color: #FFF;
    width: 251px;
    padding: 20px 0;
    margin:0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background: #4984C8;
}

@media screen and (min-width: 1024px) {
    .goods__slider {
        margin: 100px 0 70px 0;
    }
}

/* ================================
contact
=================================== */

.section__section--contact {
    background-color: #ECECEC;
}

#contact::after {
    color: #DCE3E9;
}

.contact__contents {
    background-color: #fff;
    margin-top: 35px;
    padding-bottom: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

.contact__work {
    display: flex;
    padding: 30px;
    margin: 40px 10% 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    align-self: stretch;
    background: #F4F4F4;
}

.contact__subheading {
    font-weight: 700;
}

.contact__list {
    list-style-type: disc;/* リストの左側に黒丸 */
	margin-left: 24px;/* リストの左側に余白 */
	text-align: left;
}

.contact__button--work {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 3px;
    background-color: #FF7B83;
}

.contact__button--work span {
    font-size: 1rem;
    color: #ffffffa4;
}

.contact__mokabee--sp {
    width: 50%;
    margin: 0;
    position: relative;
    margin: -5vw 0 0 -5vw;
}

.contact__mokabee--pc {
    display: none;
}

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

    .contact__mokabee--sp {
        width: 40%;
    }

}


@media screen and (min-width: 1024px) {
    .section__section--contact{
        padding-bottom: 60px;
    }

    .contact__contents {
        margin: 100px;
    }

    .contact__mokabee--sp {
        display: none;
    }

    .contact__mokabee--pc {
        width: 26%;
        margin: 0;
        display: block;
        position: relative;
        left: calc(70%);
        margin-top: -18%;
        animation: mokabee-bob 3.5s ease-in-out infinite;
    }

    @keyframes mokabee-bob {
        0%, 100% { transform: translateY(0); }
        50%      { transform: translateY(16px); } /* 振幅は好みで 6〜16px に */
    }
}


/* ================================
Link
=================================== */

.section__section--link {
    background-color: #4984C8;
    padding-bottom: 70px;
}

#link::after {
    color: #5B90CE;
}

.link__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 35px;
}

.link__button {
    display: flex;
    width: 190px;
    height: 60px;
    padding: 0 28px;
    align-items: center;
    border-radius: 90px;
    background: #E3F3FF;
    gap: 10%;
}

.link__button span {
    font-weight: 700;
    display: flex;
    flex-grow: 1;  
    justify-content: center;
}

.link__button:hover {
    filter: brightness(1.1); /* 10% 明るく */
}

@media screen and (min-width: 1024px) {
    .section__section--link {
        background-image: url(https://i.gyazo.com/8db7b2a9e1e8e1a1b527f665e79d2f80.png);
        background-repeat:  no-repeat;
        background-position: left center;
    }

    .link__list {
        margin: 100px 10%;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        place-items: center;
    }
}

@media screen and (min-width: 1440px) {
    .link__list {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        place-items: center;
        gap: 50px;
    }
}


/* ================================
footer
=================================== */
.footer {
    padding-top: 20px;
    background-color: #E3EAF6;
}

.footer__topic {
    padding: 7px 0 0 5%;
    width: 189px;
    height: 45px;
}

.menu {
    padding: 0 10% 50px;
}

.menu__list {
    line-height: 15px;
    margin: 35px 0;
    gap: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.menu__list span {
    font-size: 0.8rem;
}

.footer__link {
    display: flex;
    align-items: center;
}

.footer__link__button {
    margin-right: 15px;
}

.copy {
    margin: 0 auto;
    text-align: center;
    padding-bottom: 30px;
    font-size: 1.2rem;
    font-weight: 400;
}

/* footer_pc */

@media screen and (min-width: 1024px) {
    .footer{
        padding: 40px 5% 30px ;
        align-items: flex-start;
    }
    .footer__group{
        margin: 40px 0 60px;
    }

    .footer__topic{
        width: 200px;
        height: 45px;
        padding: 0;
    }

    .menu {
        padding: 0;
        margin-left: 20px;
    }

    .menu__list{
        font-size: 1.6rem;
        padding: 0;
        margin: 40px 0 15px;
        display: flex;
        flex-direction: row;
        text-align: center;
        line-height: 20px;
        gap: 30px;
    }

    .nav-overlay__link:hover {
        color: #4a90e2;
    }

}

@media screen and (min-width: 1440px) {
    .menu__list{
        font-size: 1.8rem;
    }

    .footer__topic{
        width: 260px;
        margin-bottom: 10px;
    }
}
