@charset "UTF-8";
/*
Template: arkhe
Theme Name: Arkhe Child
Theme URI: https://arkhe-theme.com/ja/
Description: Arkhe用子テーマ
Version: 1.0.0
Text Domain: arkhe
License: GNU General Public License
License URI: http://www.gnu.org/licenses/gpl.html
*/

/* 主要なカスタムプロパティ */
:root {
  --color-white: #FFFFFF;
  --color-pink: #FE5F8C;
  --color-emerald: #1ACCC3;
  --color-darkgray: #333333;
  --color-turquoise: #17B7AF;
  --color-lightgray: #EBEBEB;
  --color-brightpink: #FF7098;
  --color-pale-pink: #FFF0F4;
  --color-salmonred: #E35F5C;
  --color-brightpink2: #F589A7;
  --color-lightemerald: #63D3CD;
  --color-beige2: #DEB59D;
  --color-gray2: #D9D9D9;
  --color-yellow3: #FEDD33;
  --color-gray4: #989898;

  --font-sicrusk: 'SicRusk', sans-serif;
  --font-zenmaru: 'Zen Maru Gothic', sans-serif;
  --font-zenkaku: 'Zen Kaku Gothic New', sans-serif;
}

body {
    font-family: var(--font-zenmaru);
    font-size: 16px;
}

@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
}

/* =========================
   レイアウト系クラス（.l-）
   ========================= */
/* メインビジュアル */
.l-main-visual {

}
.l-content {
    background-color: #fff;
}
/* メッセージ */
.l-message {
    padding-bottom: 140px;
    max-width: calc(var(--ark-width--container) + var(--ark-padding--container) * 2);
    padding-left: var(--ark-padding--container);
    padding-right: var(--ark-padding--container);
}

@media (max-width: 768px) {
    .l-message {
        padding-bottom: 70px;
    }
}

/* 写真セクション */
.l-photo {
    padding-inline: 4vw;
    display: flex;
}
@media (max-width: 768px) {
    .l-photo {
        padding-inline: 6vw;
    }
}
/* メニューボタン */
.l-menu-btns {
    max-width: calc(1440px + var(--ark-padding--container) * 2);
    padding-left: var(--ark-padding--container);
    padding-right: var(--ark-padding--container);
    padding-bottom: 140px;
}
/* お知らせ（ニュース） */
.l-news {
        max-width: 1200px;
}
/* 背景幅広 */
.l-bg-wide {
    position: relative;
    left: calc(50% - 50vw);
    width: 100vw;
    max-width: 100vw;
}
.l-bg-wide__inner {
    margin-inline: auto;
}
.l-bg-wide--accent {
    background-color: var(--color-emerald);
}

.l-header__drawerBtn {
    height: 104px;
    width: 104px;
    position: fixed;
    top: 0;
    right: 0;
    border-radius: 0 0 0 20px;
    background-color: #fe5f8c;
}

@media (max-width: 768px) {
    .l-header__drawerBtn {
        height: 72px;
        width: 72px;
    }
}

.l-header__drawerBtn::before {
    content: '';
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    background-image: url(img/drawerbtn_deco.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: 100%;
    top: 0;
}
.l-header__drawerBtn::after {
    content: '';
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    background-image: url(img/drawerbtn_deco.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: 0;
    top: 100%;
}

.c-iconBtn__icon {
    height: 44px;
    width: 44px;
}

@media (max-width: 768px) {
    .c-iconBtn__icon {
        height: 32px;
        width: 32px;
    }
}

/* =========================
   パーツ系クラス（.p-）
   ========================= */
/* メインビジュアル */
.p-main-visual {
    position: sticky;
    top: 0;
    height: calc(100vh + 120px);
}

@media (max-width: 768px) {
    .p-main-visual {
        height: 69vh;
    }
}

.p-main-visual__img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.p-hearts {
    position: relative;
}
.p-hearts img {
    position: absolute;
    top: -21vw;
    left: calc(50% - 48vw);
    width: 97%;
    z-index: 2;
}
@media (max-width: 768px) {
    .p-hearts img {
        top: -41vw;
    }
}
/* メッセージ */
.p-message {
    position: relative;
    display: flex;
    gap: 12vw;
}
.p-message::before {
    content: '';
    display: block;
    width: 100vw;
    aspect-ratio: 7.5/1;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-image: url(img/cloud.svg);
    background-position: center top -2px;
    background-size: 100%;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    .p-message::before {
        background-image: url(img/cloud_sp.png);
        aspect-ratio: 3.5/1;
    }
}

.p-message--accent {}
.p-message--accent::before {
    background-image: url(img/hearts_blue.svg);
}
@media (max-width: 768px) {
    .p-message--accent::before {
        background-image: url(img/hearts_blue_sp.png);
    }
}
.p-message__catch {}
.p-message__body {
    padding-top: 10em;
}
.p-message__body p {
    color: var(--color-brightpink);
    font-size: min(4.5vw, 36px);
    font-family: var(--font-zenmaru);
    font-weight: bold;
    line-height: 2.5;
}
.p-message--accent .p-message__body p {
    color: #fff;
}

.p-heartwrap {
    position: relative;
}
.p-heartwrap__heart {
    position: absolute;
}
.p-heartwrap__heart--01 {
    top: 20px;
    left: -40px;
}
.p-heartwrap__heart--02 {
    top: 36%;
    right: -30px;
}
.p-heartwrap__heart--03 {
    bottom: 0;
    left: 0;
}
@media (max-width: 768px) {
    .p-heartwrap__heart--01 {
        top: 130px;
        left: 10px;
        width: 30px;
    }
    .p-heartwrap__heart--02 {
        top: 50%;
        right: 0;
        width: 90px;
    }
    .p-heartwrap__heart--03 {
        bottom: 0;
        left: 0;
        width: 40px;
    }
}
.p-parallax {
    will-change: transform;
    transition: transform 0.1s linear;
  }


/* 写真セクション */
.p-photo {
    background-image: url(img/hearts_yellow.svg);
    background-repeat: no-repeat;
    background-position: bottom;
}
@media (max-width: 768px) {
    .p-photo {
        background-image: url(img/hearts_yellow_sp.png);
        background-position: center top 60px;
        background-size: 100%;
    }
}
.p-photo__img {
    width: 50%;
}

.p-photo__img:nth-child(1) {
    border-radius: 1rem 0 0 0;
}

.p-photo__img:nth-child(2) {
    border-radius: 0 1rem 0 0;
}

@media (max-width: 768px) {
    .p-photo__img:nth-child(1) {
        border-radius: 1rem 1rem 0 0;
    }
    
    .p-photo__img:nth-child(2) {
        border-radius: 0 0 0 0;
    }
}

/* メニューボタン */
.p-menu-btns {

}
.p-menu-btns__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 24px;
}
.p-drawer__nav .p-menu-btns__grid {
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 16px;
}
[data-drawer-move=fade] .p-drawer__inner {
        max-width: 1440px;
}
.p-drawer {
    background: #63d3cdcc;
}
@media (max-width: 1000px) {
    .p-drawer__nav .p-menu-btns__grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 16px;
    }
}
@media (min-width: 1000px) {
    .p-drawer {
        padding-bottom: 0;
    }
}
@media (max-width: 768px) {
  .p-menu-btns__grid,.p-drawer__nav .p-menu-btns__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 16px;
  }
}


.p-menu-btns__btn {
    line-height: 0;
    display: block;
    border-radius: 20px;
    box-shadow: 4px 4px 10px #12C0B7;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease, opacity 0.8s ease, transform 0.4s ease;
}

.p-menu-btns__btn:hover {
    transform: scale(1.06)!important;
    box-shadow: 8px 8px 15px #12C0B7;
}

.p-menu-btns__btn.is-visible {
    opacity: 1;
    transform: scale(1);
}

/* お知らせ（ニュース） */
.p-news {}
.p-news {
    padding-block: 140px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}
.p-news__title {}
.p-news__list {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}
.p-news__item {}
.p-news__item-title {
    font-size: 1.5rem;
    color: var(--color-darkgray);
    font-weight: bold;
    font-family: var(--font-zenmaru);
}
.p-news__item-link {
    display: flex;
    flex-direction: column;
    padding: 2rem 3rem;
    background-color: var(--color-pale-pink);
    border-radius: 70px;
    text-decoration: none;
    gap: 2px;
}
.p-news__item-date {
    color: var(--color-pink);
    font-weight: 600;
    font-family: var(--font-zenmaru);
    font-size: 1.25rem;
}
.p-news__more {
    display: block;
    width: 100%;
    max-width: 320px;
    background-color: #FE5F8C;
    text-align: center;
    font-size: 1.4rem;
    padding: 1rem;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 60px;
}

@media (max-width: 999px) {
  .p-message {
    flex-direction: column;
    gap: 3rem;
    align-items: center;
  }
  .p-message__body {
    padding-top: 0;
    text-align: center;
  }
}

@media (max-width: 768px) {
    .l-photo {
        flex-direction: column;
    }
    .p-photo__img {
        width: 100%;
    }
}

/* Arkhe打消し */
@media not all and (min-width: 1000px) {
    .l-content {
        overflow-x: unset!important;
    }
}