@charset "utf-8";
/*==============================
common
===============================*/
:root {
    --primary-brown: #462502;
    --primary-white: #fff;
    --primary-purple: #D5CBDC;
    --primary-darkpurple: #52038A;
}

html {
    font-size: 62.5%;
}

body {
    font-family: 
        'Zen Kaku Gothic New',sans-serif,
        'Cinzel',serif,
        'IM Fell English',serif;
    font-style: normal;
    color: var(--primary-brown);
    line-height: 1.5;
    background-image: url(../images/background_image.jpg);
    background-size: cover;
}

img {
    max-width: 100%;
    height: auto;
}
.section_title {
    color:var(--primary-brown);
    font-family: "IM FELL English";
    font-size: 1.4rem;
    font-weight: 400;
    margin-top: 42px;
    margin-left: 8%;
    display: inline-flex;
}
.section_title::before {
    content: '';
    width: 14px;
    height: 14px;
    background-image: url(../images/menu_icon_brown.svg);
    background-size: contain;
    margin-right: 8px;
    margin-top: 2px;
}
/* tablet 426px */
@media screen and (min-width:426px) {
    .section_title {
        font-size: 3rem;
        line-height: 1.8; /* 54px */
        letter-spacing: 0.9px;
    }
    .section_title::before {
        content: '';
        width: 34px;
        height: 36px;
        background-image: url(../images/menu_icon_brown.svg);
        background-size: contain;
        margin-right: 9px;
        margin-top: 4px;
    }
}
/*==============================
Container 
============================= */
.container {
    position: relative;
    width: 100%;
}
/*==============================
header
===============================*/
.header {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    padding: 0 4.8% 0 5.3%;
    height: 44px;
    display: flex;
    align-items: center;
    /* text-align: center; */
    justify-content: space-between;
}
/* tablet 426px */
@media screen and (min-width:426px) {
    .header {
        padding: 27px 4.8% 27px 13%;
        height: 100px;
    }
}
@media screen and (min-width:1024px) {
    .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 4%;
        height: 100px;
    }    
}
.header__topic {
    width: 169px;
    height: 28px;
}

@media screen and (min-width:426px) {
    .header__topic {
        width: 375px;
        height: 46px;
        margin: 0 !important;
        display: flex;
        align-items: center;
    }
}
@media screen and (min-width:1024px) {
    .header__topic {
        width: 375px;
        height: 46px;
        margin: 0 !important;
        display: flex;
        align-items: center;
        padding-left: 5%;
    }
}
@media screen and (min-width:1280px) {
    .header__topic {
        width: 428px;
        height: 48px;
        margin: 0 !important;
        display: flex;
        align-items: center;
    }
}

.header__topic a {
    display: flex;
    align-items: center;
}
.logo {
    display: inline-block;
    width: 21px;
    height: 28px;
    margin-right: 6px;
}

@media screen and (min-width:426px) {
    .logo {
        width: 27px;
        height: 38px;
        margin-right: 16px;
    }
}
/* @media screen and (min-width:1025px) {
    .logo {
        width: 37px;
        height: 48px;
        margin-right: 16px;
    }
} */
.logo_name {
    display: inline-block;
    color: #FFF;
    font-family: Cinzel;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.4; /* 18.2px */
    letter-spacing: 0.26px;
}
@media screen and (min-width:426px) {
    .logo_name {
        font-size: 2.4rem;
        letter-spacing: 1.02px;
    }
}
@media screen and (min-width:1024px) {
    .logo_name {
        font-size: 2rem;
        letter-spacing: 1.02px;
    }    
}
@media screen and (min-width:1280px) {
    .logo_name {
        font-size: 2.8rem;
    }
    
}
.form_btn {
    /* width: 65px;
    height: 20px;
    margin-left: 17.6%;
    padding: 5px 17px;
    border-radius: 10px;
    border: 1px solid #000;
    background-color: #FFF;
    color: #000;
    font-family: "Zen Kaku Gothic New";
    font-size: 0.7rem; */
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 5px 17px;
    background: linear-gradient(145deg, #0f0f0f, #1c1c1c);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: #fff;
    font-family: "Zen Kaku Gothic New";
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    z-index: 1;
}
.form_btn::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, #971a8f, #ecd017, #971a8f);
    animation: rotate 4s linear infinite;
    z-index: -2;
}
.form_btn::after {
    content: "";
    position: absolute;
    inset: 2px;
    background: #0a0a0a;
    border-radius: inherit;
    z-index: -1;
}
.form_btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.2);     
}
.form_btn:hover .arrow {
    transform: translateX(6px);
}
.arrow {
    width: 11px;
    height: 11px;
    transition: transform 0.3s ease-in-out;
    color: #ecd017;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media screen and (min-width:768px) {
    .form_btn {
        padding: 8px 20px;
        border-radius: 22px;
        color: #fff;
        font-family: "Zen Kaku Gothic New";
        font-size: 1.3rem;
        gap: 6px;
        text-align: center;
    }
    .arrow {
    width: 17px;
    height: 17px;
    transition: transform 0.3s ease-in-out;
    color: #ecd017;
    }
}
@media screen and (min-width:1280px) {
    .form_btn {
        padding: 12px 50px;
        border-radius: 22px;
        color: #fff;
        font-family: "Zen Kaku Gothic New";
        font-size: 1.5rem;
        text-align: center;
    }
    .arrow {
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease-in-out;
    color: #ecd017;
    }
}
.header__menu {
    width: 21px;
    height: 38px;
    margin-top: 6px;
}
.header__menu-txt {
    margin-top: 5px;
    color: #FFF;
    font-family: "IM FELL English";
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.24px;
}
@media screen and (min-width:1024px) {
    .header_menu {
        display: none;
    }
    .header__btn {
        display: none;
        margin-top: 0 !important;
    }
    .header__menu-txt {
        display: none;
    }
}
/* navの初期表示 */
.nav {
    background-image: url(../images/background_image.jpg);
    background-size: cover;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translatex(-100%);
    transition: transform 0.4s;
    overflow: auto;
    max-height: 100vh;
}
@media screen and (min-width:1024px) {
    .nav {
        background: transparent;
        width: auto;
        height: auto;
        padding: 0;
        position: static;
        transform: translatex(0);
        margin-right: 20px;
    }
}
.nav__header {
    padding: 0 4.8% 0px 5.3%;
    height: 44px;
    display: flex;
    align-items: center;
    position: relative;
}
@media screen and (min-width:1024px) {
    .nav__header {
        display: none;
        width: 0;
    }
}
.nav__topic  {
    width: 21px;
    height: 37px;
    position: absolute;
    top: 7px;
    right: 4%;
}
.nav__topic-btn {
    width: 21px;
    height: 22px;
}
.nav__topic-txt {
    color: var(--primary-brown);
    font-family: "IM FELL English";
    font-size: 0.9rem;
    font-weight: 400;
    margin-top: 3px;
}
.nav__main {
    padding: 15px 6%;
}
@media screen and (min-width:1024px) {
    .nav__main {
        padding: 0 0 15px 0;
        display: flex;
        align-items: center;
        margin: 0;
    }
}

.main__item {
    color: var(--primary-brown);
    font-family: "IM FELL English";
    font-size: 1.2rem;
    margin-top: 14px;
}
@media screen and (min-width:768px) {
    .main__item {
        color: var(--primary-brown);
        font-size: 1rem;
        margin-left: 12px;
    }
}
@media screen and (min-width:1024px) {
    .main__item {
        color: var(--primary-white);
        font-size: 1.1rem;
        margin-right: 10px !important;
    }
}
@media screen and (min-width:1280px) {
    .main__item {
        color: var(--primary-white);
        font-size: 2rem;
        margin-right: 20px;
    }
    
}
.main__item::after {
    content: '';
    display: block;
    width: 87%;
    height: 1px;
    background-color: #D9D9D9;
    margin-top: 14px;
}
@media screen and (min-width:1024px) {
    .main__item::after {
        display: none;
    }
}
.nav__form {
    display: flex;
    padding: 15px 6%;
}

@media screen and (min-width:1024px) {
    .nav__form {
        display: none;
    }
}
.form__item {
    margin-right: 8px;
    display: flex;
}
.nav_btnKaidan {
    width: 158px;
    height: 30px;
    border-radius: 4px;
    border: 1px solid var(--primary-brown);
    background-color: var(--primary-white);
    color: var(--primary-brown);
    font-family: "Zen Kaku Gothic New";
    font-size: 1.2rem;
    line-height: 1;
    padding: 8px 29px 7px;
}
.nav_btnContact {
    width: 158px;
    height: 30px;
    border-radius: 4px;
    background-color: var(--primary-brown);
    color: var(--primary-white);
    font-family: "Zen Kaku Gothic New";
    font-size: 1.2rem;
    line-height: 1;
    letter-spacing: -0.48px;
    padding: 8px 44px 7px;
}
.nav_snsList {
    display: flex;
    align-items: center;
    margin-left: 21px;
}
@media screen and (min-width:1024px) {
    .nav_snsList {
        display: none;
    }
}
.nav_snsList--item {
    margin-right: 19px;
    width: 19px;
    height: 19px;
}
.nav_snsList--item:nth-child(1) {
    width: 83px;
    height: 31px;
    aspect-ratio: 83/31;
    margin-right: 10px;
}
.nav_snsList--item:nth-of-type(4) {
    width: 20px;
    height: 14px;
}
/* .nav.active表示 */
.nav.active {
    transform:translateX(0);
}

/*==============================
main
===============================*/
.article__header {
    position: relative;
    width: 100%;
    height: 100%;
    margin-bottom: 52px;
}
.mv {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block  ;
}
.mv .mvImg_pc {
    display: none;
}
@media screen and (min-width:426px) {
    .mv .mvImg_sp {
        display: none;
    }
    .mv .mvImg_pc {
        display: block;
    }
    
}
.mvTitle {
    position: absolute;
    top: 52px;
    left: 8%;
    z-index: 10;
}
.mvTitle__name {
    display: block;
    color: #FFF;
    font-family: "Zen Kaku Gothic New";
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.4; /* 15.29px */
    letter-spacing: 0.11px;
}
.mvTitle__comment {
    margin-top: 12px;
    display: block;
    color: #FFF;
    font-family: "IM FELL English";
    font-size: 0.7rem;
    line-height: 1.4; /* 9.8px */
    letter-spacing: -0.14px;
}
@media screen and (min-width:426px) {
    .mvTitle {
        top: 100px;
        left: 10%;
    }
}
@media screen and (min-width:768px) {
    .mvTitle__name {
       font-size: 2.4rem;
       font-weight: 500;
       line-height: 1.7; /* 59.5px */
       letter-spacing: 5.44px;
    }
     .mvTitle__comment {
        font-size: 1.4rem;
        line-height: 1.7; /* 29.75px */
        letter-spacing: 0.51px;
    }
}
@media screen and (min-width:1269px) {
    .mvTitle {
        top: 167px;
        left: 10%;
    }
    .mvTitle__name {
        font-size: 3.4rem;
        font-weight: 500;
        line-height: 1.7; /* 59.5px */
        letter-spacing: 5.44px;
    }
    .mvTitle__comment {
        font-size: 1.7rem;
        line-height: 1.7; /* 29.75px */
        letter-spacing: 0.51px;
    }
}
/* .scroll_sp {
    width: 26px;
    height: 85px;
    position: absolute;
    top: 90%;
    left: 4.2%;
}
.scroll_pc {
    display: none;
}
@media screen and (min-width:426px) {
    .scroll_sp {
        display: none;
    }
    .scroll_pc {
        display: block;
        width: 77px;
        height: 124px;
        margin-left: 10%;
    }
    
} */
.icon__scroll {
    position: absolute;
    right: 4.2%;
    width: 40px;
    text-align: center;
    bottom: 40px;
}
.scroll__inner {
    position: relative;
}
.scroll__circle {
    top: 0;
    width: 100%;
    height: auto;
    animation: scroll-bounce 3.0s ease-in-out infinite;
}
.scroll__line {
    position: absolute;
    top: 20px;
    left: 50%;
    width: 1px;
    height: 70px;
}
@keyframes scroll-bounce {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(35px);
    }
    100% {
        transform: translateY(70px);
    }
}
@media screen and (min-width:768px) {
    .icon__scroll {
        right: 5%;
        width: 63px;
        bottom: 100px;
    }
    .scroll__line {
        top: 50px;
        height: 120px;
    }
    @keyframes scroll-bounce {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(60px);
    }
    100% {
        transform: translateY(120px);
    }
}
@media screen and (min-width:1190px) {
    .icon__scroll {
        right: 5%;
        width: 100px;
        bottom: 100px;
    }
    .scroll__line {
        top: 50px;
        height: 120px;
    }
     @keyframes scroll-bounce {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(50px);
    }
    100% {
        transform: translateY(100px);
    }
    }
}
}
/*==============================
pickup
===============================*/
.pickupContents {
    position: relative;
    width: 100%;
    /* padding: 0 8%; */
    box-sizing: border-box;
}
.btn-archive {
    position: absolute;
    top: 49px;
    right: 30px;
    width: 83px;
    height: 83px;
    background-color: #fff;
    border: 1px solid var(--primary-brown);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #462502;
    font-family: "Zen Kaku Gothic New";
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.1px;
    z-index: 50;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-archive:hover {
    transform:translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.btn-archive::after {
    content: '';
    background-image: url(../images/pickup_arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 1px;
    right: 0.8%;
    width: 22px;
    height: 22px;
    /* background-color: var(--primary-brown); */
    /* color: #FFF; */
    border-radius: 50%;
    /* display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px; */
}
@media screen and (min-width:1024px) {
    .btn-archive {
        position: absolute;
        top: 40px;
        right: 8%;
        width: 137px;
        height: 137px;
        font-size: 1.8rem;
        font-weight: 400;
        letter-spacing: -0.72px;
    }
    .btn-archive::after {
        position: absolute;
        top: 1px;
        right: 0.8%;
        width: 41px;
        height: 41px;
        font-size: 12px;
    }
}
.pickup__title {
    margin-left: 8%;
    display: flex;
    align-items: center;
}
.pickup__mainTitle {
    color: var(--primary-brown);
    font-family: "IM FELL English";
    font-size: 2rem;
    letter-spacing: 0.4px;
}
@media screen and (min-width:1024px) {
    .pickup__mainTitle {
        font-size:3.7rem;
        letter-spacing: 1.48px;
    }
}
.pickup__subTitle {
    margin-left: 6%;
    color: var(--primary-brown);
    font-family: "Zen Kaku Gothic New";
    font-size: 1rem;
    letter-spacing: -1.19px;
}
@media screen and (min-width:1024px) {
    .pickup__subTitle {
        margin-left: 5%;
        font-size: 1.7rem;
    }
}
.pickUp__list {
    margin-top: 52px;
}
@media screen and (min-width:1024px) {
    .pickUp__list {
        margin-top: 71px;
        padding: 0 8%;
    }
}
.pickUp__listItem a, .pickUp_title {
    display: block;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}
.pickUp_itemInner {
    width: 95%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.pickUp_img {
   width: 301px;
   /* max-width: 100%; */
   height: 201px;
   border-radius: 31px; 
   display: block;
   margin: 0 auto;
   object-fit: cover;
}
@media screen and (min-width:768px) {
    .pickUp_img {
        width: 355px;
        max-width: 100%;
        height: 251px;
        border-radius: 26px;
    }
}
.pickUp_link {
    position: relative;
    display: block;
    width: 100%;
}
.pickUp_link::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid var(--primary-brown);
    padding: 4px 20px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--primary-brown);
    z-index: 5;
}
/* .pickUp__listItem:nth-of-type(1) .pickUp_link::after { content: "出演情報" !important; }
.pickUp__listItem:nth-of-type(2) .pickUp_link::after { content: "イベント" !important; }
.pickUp__listItem:nth-of-type(3) .pickUp_link::after { content: "出演作品" !important; } */

.is-youtube .pickUp_link::after {content: "出演情報" !important;}
.is-event .pickUp_link::after {content: "イベント" !important;}
.is-info .pickUp_link::after  {content:"出演情報" !important}

.pickUp_title {
    margin-top: 20px;
}
.pickUp_mainTitle {
    margin-bottom: 5px;
    color: var(--primary-brown);
    font-family: "Zen Kaku Gothic New";
    font-size: 1.5rem;
    line-height: 1;
    letter-spacing: -0.75px;
}
.pickUp_date {
    color: var(--primary-brown);
    font-family: "Albert Sans";
    font-size: 1.1rem;
    line-height: 1;
}
@media screen and (min-width:1361px) {
    .pickUp_link::after {
        padding: 9px 22px;
        border-radius: 19px;
        font-size: 1.4rem;
    }
    .pickUp_mainTitle {
        margin: 30px 0 18px;
        font-size: 2rem;
        line-height: 1;
    }
    .pickUp_date {
        font-size: 1.5rem;
        line-height: 1;
    }
}
/*==============================
about
===============================*/
.profile {
    padding-bottom: 20px;
}
@media screen and (min-width:1024px) {
    .profile {
        padding: 70px 8% 120px;
    }
}
.profile_name {
    margin-top: 52px;
    text-align: center;
    color: var(--primary-brown);
    font-family: "IM FELL English";
    font-size: 2rem;
    letter-spacing: 0.4px;
}
@media screen and (min-width:1024px) {
    .profile_name {
        margin-top: 116px;
        text-align: left;
        font-size: 3.7rem;
        letter-spacing: 1.48px;
    }
}
.profile_img_sp {
    display: block;
    margin: 22px auto 0;
    width: 330px;
    height: 330px;
}
.profile_img_pc {
    display: none;
}
.profile_txt {
    margin: 22px auto 0;
    width: 74%;
    color:  var(--primary-brown);
    font-family: "Zen Kaku Gothic New";
    font-size: 1.2rem;
    line-height: 1.9; /* 23.16px */
    letter-spacing: -0.84px;
}
.profile_history {
    margin: 20px auto 0;
    width: 74%;
    color:  var(--primary-brown);
    font-family: "Zen Kaku Gothic New";
    font-size: 1.2rem;
    line-height: 1.9; /* 23.16px */
    letter-spacing: -0.84px;
}
.profile_other {
    margin: 20px auto 10px;
    width: 74%;
    color:  var(--primary-brown);
    font-family: "Zen Kaku Gothic New";
    font-size: 1.2rem;
    line-height: 1.9; /* 23.16px */
    letter-spacing: -0.84px;
}
@media screen and (min-width:1024px) {
    .profile_content {
        display: flex;
        margin-top: 48px;
        align-items: center;
    }
    .profile_img_sp {
        display: none;
    }
    .profile_img_pc {
        display: block;
        /* justify-content: center; */
    }
    .profile_detail {
        margin-left: 8%;
    }
    .profile_txt, .profile_history, .profile_other {
        font-size: 2rem;
        line-height: 1.9; /* 38.6px */
        letter-spacing: -1.4px;
    }
}
/*==============================
works
===============================*/
.section--works {
    background-image: url(../images/works_background_sp.png);
    background-size: cover;
    padding-bottom: 43px;
}
@media screen and (min-width:1024px) {
    .section--works {
        background-image: url(../images/works_background_pc.png);
        padding: 200px 11% 228px;
    }
}
.works_news {
    display: block;
    width: 90%;
    margin: 26px auto 0;
}
@media screen and (min-width:1024px) {
    .works_news {
        margin: 79px auto 0;
        display: flex;
        justify-content: center;
        gap: 20px;
        width: 100%;
    }
}
.news_item  {
    display: flex;
    align-items: center;
    width: 100%;
    height: auto;
    border-radius: 23px;
    background-color: var(--primary-purple);
    border: 1px solid var(--primary-darkpurple);
    margin: 14px auto 0;
    padding: 17px;
    position: relative;
}
.news_item::after {
    content: '→';
    display: flex;
    text-align: center;
    justify-content: center;
    padding-top: 4px;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    color: #fff;
    background-color: var(--primary-brown);
    position: absolute;
    top: 50%;
    transform: translateY(-10px);
    right: 15px;
}
.worksNews__itemImg {
    width: 52px;
    height: 52px;
    margin-right: 11px;
}
.worksNews__itemTxt {
    padding-right: 35px;
}
.worksNews__subtitle {
    color: var(--primary-brown);
    font-family: "Zen Kaku Gothic New";
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1; /* 15px */
    letter-spacing: -1.05px;
    margin-right: 9px;
}
.worksNews__date {
    color: var(--primary-brown);
    font-family: "Zen Kaku Gothic New";
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1; /* 12px */
}
.worksNews__txt {
    margin-top: 7px;
    color: var(--primary-brown);
    font-family: "Zen Kaku Gothic New";
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.4; /* 12px */
}
@media screen and (min-width:1024px) {
    .worksNews__item {
        margin-right: 0;
    }
    .news_item {
        margin: 0;
        width: 370px;
        height: auto;
        border-radius: 22px;
        padding: 20px 26px;
    }
    .worksNews__itemImg {
        width: 79px;
        height: 79px;
    }
    .worksNews__subtitle {
    color: var(--primary-brown);
    font-family: "Zen Kaku Gothic New";
    font-size: 1.8rem;
    margin-right: 8px;
    }
    .worksNews__date {
        font-size: 1.4rem;
    }
    .worksNews__txt {
        margin-top: 13px;
        /* width: 198px; */
        font-size: 1.3rem;
        line-height: 1.7; /* 12px */
    }
}
@media screen and (min-width:1440px) {
    .worksNews__item {
        margin-right: 1.5%;
    }
    .news_item {
        margin: 0;
        width: 529px;
        height: auto;
        border-radius: 22px;
        padding: 20px 26px;
        align-items: center;
        margin: 0 auto;
    }
    .worksNews__itemImg {
        width: 79px;
        height: 79px;
        margin-right: 28px;
    }
    .worksNews__subtitle {
    color: var(--primary-brown);
    font-family: "Zen Kaku Gothic New";
    font-size: 1.8rem;
    margin-right: 8px;
    }
    .worksNews__date {
        font-size: 1.4rem;
    }
    .worksNews__txt {
        margin-top: 13px;
        width: 294px;
        font-size: 1.5rem;
        line-height: 1.7; /* 12px */
    }
}
.works_list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 5%;
    /* margin-bottom: 43px; */
}
@media screen and (min-width:1024px) {
    .works_list{
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
    }
}
.works_item a {
    position: relative;
    display: block;
    overflow: hidden;
    /* border-radius: 20px; */
}
@media screen and (min-width:1024px) {
    .works_item a {
        transition: transform 0.4s ease;
    }
    .works_item a:hover {
        transform: translateY(-10px);
    }
    .works_item a img {
        transition: transform 0.4s ease;
    }
    .works_item a:hover {
        transform: scale(1.1);
    }
}
.works_listItem_sp {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    aspect-ratio: 2/3;
    object-fit: cover;
}
.works_listItem_pc {
    display: none;
}
.works_title {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-white);
    font-family: "Zen Kaku Gothic New";
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.9; /* 28.95px */
    letter-spacing: -1.05px;
}
.works_arrow {
    display: none;
}
@media screen and (min-width:1024px) {
    .works_listItem_sp {
        display: none;
    }
    .works_listItem_pc {
        display: block;
        width: 100%;
        height: auto;
        border-radius: 17px;
        aspect-ratio: 9/16;
        object-fit: cover;
    }
    .works_title {
        position: absolute;
        bottom: 82px;
        font-size: 1.7rem;
    }
    .works_arrow {
        display: block;
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
    }
}
/*==============================
shop
===============================*/
.section--shop {
    overflow: hidden;
    margin-bottom: 50px;
}
@media screen and (min-width:768px) {
    .section--shop {margin-bottom: 100px;    
    }
}
@media screen and (min-width:768px) {
    .section--shop {
        padding: 100px 0;
    }
}
.shop_container {
    max-width: 1000px;
    margin: 54px auto 0;
    position: relative;
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (min-width:1300px) {
    .shop_container {
        max-width: 1200px;
    }    
}
.shop_txt {
    text-align: center;
    z-index: 10;
    position: relative;
}
.shop_title {
    color: var(--primary-brown);
    font-family: Cinzel;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.9; /* 57.9px */
    letter-spacing: 0.6px;
}
.shop_detail {
    color: var(--primary-brown);
    text-align: center;
    font-family: "Zen Kaku Gothic New";
    font-size: 1.3rem;
    line-height: 1.6; /* 21.06px */
}
@media screen and (min-width:768px) {
    .shop_title {
        font-size: 4rem;
        letter-spacing: 1.2px;
    }
    .shop_detail {
        font-size: 1.6rem;
    }
    .sp_br {
        display: none;
    }
}
.shopImg_item {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    object-fit: cover;
}
.shopImg_item img {
    border-radius: 7px;
    overflow: hidden;
}
.item1 {top: 5%; left: 5%; width: 140px;}
.item2 {top: 15%; right: 5%; width: 140px;}
.item3 {bottom: 12%; left: 5%; width: 156px;}
.item4 {bottom: 5%; right: 5%; width: 139px;}

@media screen and (min-width:768px) {
    .shopImg_item  img{
        border-radius: 11px;
        overflow: hidden;
    }
    .item1 {top:0; left: 10%; width: 200px;}
    .item2 {top: 10%; right: 10%; width: 200px;}
    .item3 {bottom: -10%; left: 5%; width: 220px;}
    .item4 {bottom: -10%; right: 5%; width: 220px;} 
}
@media screen and (min-width:1024px) {
    .shopImg_item img{
        border-radius: 11px;
        overflow: hidden;
    }
    .item1 {top:0; left: 5%; width: 290px;}
    .item2 {top: 0; right: 10%; width: 300px;}
    .item3 {bottom:-10%;left:10%; width: 310px;}
    .item4 {bottom:-10%; right:15%; width: 300px;} 
}
@media screen and (min-width:1280px) {
    .shopImg_item {
        border-radius: 11px;
        overflow: hidden;
    }
    .item1 {top:0; left: 0; width: 310px;}
    .item2 {top: 0; right: 5%; width: 320px;}
    .item3 {bottom:-15%;left:5%; width: 330px;}
    .item4 {bottom:-15%; right:10%; width: 320px;} 
}
.item1 { animation: float 6s ease-in-out infinite; }
.item2 { animation: float 8s ease-in-out infinite -2s; } /* 開始をずらす */
.item3 { animation: float 7s ease-in-out infinite -1s; }
.item4 { animation: float 9s ease-in-out infinite -3s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/*==============================
blog
===============================*/
.section--blog {
    background-image: url(../images/note_background_sp.png);
    background-size: cover;
    /* background-repeat: no-repeat; */
    padding-bottom: 40px;
}
@media screen and (min-width:1024px) {
    .section--blog {
        background-image: url(../images/note_background_pc.png);
        padding-bottom: 110px;
    }
}
.note_logo {
    width: 42%;
    height: auto;
    margin: 14px auto 0;
}
@media screen and (min-width:1024px) {
    .note_logo {
        width: 21%;
        margin: 0 auto;
    }    
}
.note_topics a {
    display: block;
    margin-top: 29px;
    padding: 0 10%;
    position: relative;
}
.note_topics::after {
    content: '';
    display: block;
    width: 80%;
    height: 1px;
    background-color: var(--primary-brown);
    margin: 34px auto 0;
    /* margin-left: 10%; */
}
.noteTopics_title {
    display: flex;
    align-items: center;
}
.noteTopics_category {
    display: block;
    background-color: var(--primary-white);
    border-radius: 9px;
    border: 1px solid var(--primary-brown);
    padding: 3px 23px;
    margin-right: 4%;
    color: var(--primary-brown);
    font-family: "Zen Kaku Gothic New";
    font-size: 0.8rem;
    line-height: 1.6; /* 12.96px */
    letter-spacing: 0.8px;
    text-align: center;
}
.noteTopics_date {
    color: var(--primary-brown);
    font-family: "Albert Sans";
    font-size: 0.9rem;
    letter-spacing: 0.22px;
}
.noteTopics_txt {
    margin-top: 12px; 
    width: 85%;
}
.noteTopics_txt::after {
    content: '→';
    display: flex;
    text-align: center;
    justify-content: center;
    padding-top: 4px;
    width: 48px;
    height: 29px;
    border-radius: 50%;
    font-size: 14px;
    color: #fff;
    background-color: var(--primary-brown);
    position: absolute;
    top: 60%;
    /* transform: translateY(-50%); */
    right: 20px;
}
.noteTopics_detail {
    color: var(--primary-brown);
    font-family: "Zen Kaku Gothic New";
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.9; /* 20.79px */
}
@media screen and (min-width:768px) {
    .noteTopics_category{
        /* width: 120px;
        height: 28px; */
        border-radius: 14px;
        font-size: 1.1rem;
    }
    .noteTopics_date {
        font-size: 1.6rem;
    }
    .noteTopics_txt::after {
    content: '→';
    display: flex;
    text-align: center;
    justify-content: center;
    padding-top: 4px;
    width: 71px;
    height: 44px;
    border-radius: 50%;
    font-size: 21px;
    color: #fff;
    background-color: var(--primary-brown);
    position: absolute;
    top: 60%;
    /* transform: translateY(-50%); */
    right: 10%;
    }
    .noteTopics_detail {
        font-size: 2rem;
    }
}
/*==============================
contact
===============================*/
.section--contact {
    padding-bottom: 67px;
}
@media screen and (min-width:768px) {
    .section--contact {
        padding-bottom: 50px;
    }
}
.contact_txt {
    margin-top: 40px;
}
.contact_detail {
    display: block;
    margin: 0 auto;
    width: 75%;
    color: var(--primary-brown);
    font-family: "Zen Kaku Gothic New";
    font-size: 1.1rem;
    line-height: 1.7; /* 18.48px */
}
@media screen and (min-width:768px) {
    .contact_detail {
        width: 50%;
        font-size: 2rem;
        line-height: 1.9;
        text-align: center;
    }    
}
@media screen and (min-width:1024px) {
    .contact_detail {
        width: 50%;
        font-size: 2.5rem;
        line-height: 1.9;
        text-align: center;
    }
}
.contact_btn {
    margin: 14px auto 0;
    width: 77%;
    max-width: 500px;
    border-radius: 3px;
    border: 1px solid #000;
    background: #FFF;
    transition: all 0.3s ease;
}
.contact_btn:hover {
    background-color: #eae2ae;
    opacity: 0.8;
}
.contact_link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    height: 100%;
}
.contactBtn_txt {
    color: var(--primary-brown);
    font-family: "Zen Kaku Gothic New";
    font-size: 1.1rem;
    font-weight: 400;
    flex-grow: 1;
    display: flex;
    text-align: center;
    justify-content: center;
}
.contactBtn_txt::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 22px;
    background: url(../images/mail.svg) no-repeat center / contain;
    margin-right: 26px;
}
.contactBtn_txt::after {
    content: '';
    display: inline-block;
    width: 60px;
    height: 15px;
    background: url(../images/arrow_brown.svg) no-repeat center / contain;
    margin-left: 26px;
}
@media screen and (min-width:768px) {
    .contact_btn {
        margin: 70px auto 0;
        width: 41%;
        border-radius: 10px;
    }
    .contact_link {
        padding: 20px 3%;
    }
    .contactBtn_txt {
        font-size: 1.5rem;
    }
    .contactBtn_txt::before {
        content: '';
        display: inline-block;
        width: 52px;
        height: 29px;
        margin-right: 5%;
    }
    .contactBtn_txt::after {
        content: '';
        display: inline-block;
        width: 56px;
        height: 12px;
        margin-top: 5px;
        margin-left: 7%;
    }
}
@media screen and (min-width:1024px) {
    .contactBtn_txt {
        font-size: 2rem;
    }
    .contact_link {
        padding: 39px 3%;
    }
}
.snsList_title {
    margin-top: 19px;
    text-align: center;
    color: var(--primary-brown);
    font-family: "IM FELL English";
    font-size: 1.5rem;
    line-height: 1.7; /* 25.2px */
    letter-spacing: 1.2px;
}
.snsList {
    margin-top: 9px;
    display: flex;
    justify-content: center;
    gap: 38px;
    align-items: center;
}
.snsIcon_item1 {
    width: 23px;
    height: 23px;
}
.snsIcon_item2 {
    width: 21px;
    height: 22px;
}
.snsIcon_item3 {
    width: 23px;
    height: 16px;
}
@media screen and (min-width:1024px) {
    .snsList_title {
        margin-top: 64px;
        font-size: 3.2rem;
        line-height: 1.5;
        letter-spacing: 1.92px;
    }
    .snsList {
        margin-top: 20px;
        gap: 33px;
    }
    .snsIcon_item1 {
        width: 46px;
        height: 43px;
    }
    .snsIcon_item2 {
        width: 42px;
        height: 41px;
    }
    .snsIcon_item3 {
        width: 49px;
        height: 32px;
    }    
}
/*==============================
footer
===============================*/
.footer {
    padding: 25px 12%;
    text-align: center;
}
@media screen and (min-width:768px) {
    .footer {
        padding: 0 21% 20px;
    }
}
.footerMenu__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    max-width: 75%;
    margin: 0 auto 18px;
    gap: 10px 17px;
}
.footerMenu_item a {
    width: 20%;
    margin-bottom: 10px;
    text-align: center;
    color: var(--primary-brown);
    font-family: "IM FELL English";
    font-size: 0.9rem;
    letter-spacing: 1.35px;
    transition: opacity 0.3s;
}
.footerMenu_item a:hover {
    opacity: 0.6;
}
.copy {
    color: var(--primary-brown);
    font-family: "IM FELL English";
    font-size: 0.9rem;
    letter-spacing: 1.35px;
}
@media screen and (min-width:768px) {
    .footerMenu_item a {
        font-size: 1rem;
    }
    .copy {
        font-size: 1rem;
    }
}
@media screen and (min-width:1024px) {
    .footerMenu__list {
        gap: 43px 44px;
    }
    .footerMenu_item a {
        font-size: 1.7rem;
        letter-spacing: 2.64px;
    }
    .copy {
        font-size: 1.4rem;
    }    
}