 
/* 
Theme Name: だるまや
Author: だるまや
Author URI: https://◆◆◆◆◆◆/
Version: 1.0
*/
@charset "UTF-8";
/* CSS Document */
html {
    font-size: 62.5%;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}
body {
    width: 100%;
    height: 100%;
    font-size: clamp(1.6rem, 2vw, 1.8rem);
    line-height: 1.94;
    letter-spacing: normal;
}
*,
*:before,
*:after {
    box-sizing:border-box;
}
/* ------------------------------------- /
/     共通
/* ------------------------------------- */
.taC {
    text-align: center;
}
.taR {
    text-align: right;
}
.fw600 {
    font-weight: 600;
}
.fwB {
    font-weight: bold;
}
.space {
    margin-top: 128px;
}


/* ------------------------------------- /
/     inner
/* ------------------------------------- */
.inner {
    width: min(100%, 1366px);
    margin: 0 auto;
    padding: 0 min(6%, calc((1366px - 1200px) / 2));
}
@media screen and (max-width:600px){
.inner {
    padding: 0 4%;
}
}

/* ------------------------------------- /
/     pc-none、sp-none
/* ------------------------------------- */
.pc-none {
    display: none;
}
.pc-none768 {
    display: none;
}
.pc-none__inline {
    display: none;
}
.pc-none__inline768 {
    display: none;
}
.pc-none__inline1200 {
    display: none;
}
@media screen and (max-width:1200px){
.pc-none__inline1200 {
    display: inline;
}
.sp-none1200 {
    display: none;
}
}
@media screen and (max-width:768px){
.pc-none768 {
    display: block;
}
.pc-none__inline768 {
    display: inline;
}
.sp-none768 {
    display: none;
}
}
@media screen and (max-width:600px){
.pc-none {
    display: block;
}
.pc-none__inline {
    display: inline;
}
.sp-none {
    display: none !important;
}
}

/* ------------------------------------- /
/     サイトカラー、フォント
/* ------------------------------------- */
body {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    color: var(--color-black);
    background-color :var(--color-white);
}
a {
    color: var(--color-black);
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}

::selection {
    background: #bf2e01;
    color: var(--color-white);
}
:root {
    --font-jp: 'Noto Sans JP', sans-serif;
    --font-en: 'Montserrat', sans-serif;
    --font-min: 'Noto Serif JP', serif;
    --color-red: #CB3939;
    --color-black: #1C1C1C;
    --color-white: #ffffff;
}
.font-jp {
    font-family: var(--font-jp);
}
.font-en {
    font-family: var(--font-en);
}
.font-min {
    font-family: var(--font-min);
    font-weight: 500;
}
.color-white {color: #fff;a{color: #fff;}}

/* ------------------------------------- /
/    header
/* ------------------------------------- */
/* main {
    padding-top: 90px;
} */
.header {
    background-color: #ffffff;
    padding: 19px 60px;
    display: flex;
    justify-content: space-between;
    z-index: 999;
    width: 100%;
    position: fixed;
    top: 0;
}
.logo {
    width: min(168px, 10%);
    transition: opacity 0.4s ease;
}
.logo:hover {
    opacity: 0.7;
}
.header__nav {
    display: flex;
    align-items: center;
    transition: right 0.4s ease;
    z-index: 999;
}
.nav__list {
    display: flex;
    justify-content: flex-end;
    gap: 25px;
    margin-right: 20px;
}
.nav__list a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}
.nav__list img {
    transition: .1s cubic-bezier(0.45, 0, 0.55, 1);
}
.nav__list a:hover img {
    transform: scale(0.9);
}
.nav__list li img {
    width: 19.7px;
    height: 23px;
}
.ec__button {
    color: var(--color-white);
    background-color: var(--color-red);
    border-radius: 17px;
    padding: 1px 0;
    width: 130px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin-right: 11px;
    cursor: pointer;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}
.ec__button:hover {
    background: var(--color-white);
    color: var(--color-red);
    text-decoration: none;
    border: 1px solid var(--color-red);
}
.ec__button::before {
    content: '';
    display: block;
    background: url(../img/icon_cart.svg);
    width: 15.5px;
    height: 14px;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}
.ec__button:hover::before {
    content: '';
    background: url(../img/icon_cart_red.svg);
    width: 15.5px;
    height: 14px;
}
.header__insta {
    width: 21px;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}
.header__insta:hover {
    transform: scale(0.9);
}
.hamburger {
    width: 50px;
    border: none;
    background: none;
    display: none;
    cursor: pointer;
}

@media (max-width: 1300px) {
    /* main {
        padding-top: 71px;
    } */
    .header {
        padding: 10px 15px;
    }
    .logo {
        width: 130px;
    }
    .header__nav {
        width: 300px;
        flex-direction: column;
        background-color: var(--color-white);
        position: absolute;
        top: 0;
        right: -300px;
        padding: 30px;
        margin-top: 70px;
        display: none;
    }
    .header__nav.active{
        right: 0!important;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        flex-direction: row;
    }
    .header .nav__list{
        flex-direction: column;
        margin-bottom: 30px;
        margin-right: 0;
        width: 100%;
    }
    .header .ec__button {
        margin-right: 20px;
    }
    .hamburger {
        display: block;
    }
    .hamburger span {
        width: 100%;
        height: 2px;
        background-color: var(--color-black);
        position: relative;
        transition: ease .4s; /*ハンバーガーメニュークリック時の三本線の動きを遅延*/
        display: block;
    }
    .hamburger span:nth-child(1) {
        top: 0;
    }
    .hamburger span:nth-child(2) {
        margin: 8px 0;
    }
    .hamburger span:nth-child(3) {
        top: 0;
    }
    .hamburger.active span:nth-child(1) {
        transform:rotate(45deg);
        display: none;
    }
    .hamburger.active span:nth-child(2) {
        transform:rotate(-45deg);
        top: 2px;
        margin: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform:rotate(45deg);
    }
}
@media (max-width: 768px) {
    /* main {
        padding-top: 60px;
    } */
    .header__nav {
        margin-top: 60px;
    }
}
@media (max-width: 425px) {
    .header__nav {
        width: 100%;
    }
}

/* ------------------------------------- /
/    mv
/* ------------------------------------- */
.mv_wrapper {
    margin: 0 auto;
    padding: 0 8%;
    width: min(1800px,100%);
    position: relative;
    overflow: hidden;
}
.mv__side__text {
    position: absolute;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 400;
    letter-spacing: 0.3em;
    writing-mode: vertical-rl;
    top: 50%;
    z-index: 99;
}
.mv__side__text.left {
    left: 0;
    transform: translateY(-50%);
}
.mv__side__text.right {
    right: 0;
    transform: rotate(180deg) translateY(50%);
}
.top__swiper {
    width: 100%;
    max-width: 1508px;
    margin: 0 auto;
    /* padding-top: min(129px, 9.9%); */
    position: relative;
    overflow: visible;
}
.mv__top {
    position: absolute;
    content: '';
    background: url(../img/mv_top.png) no-repeat;
    background-size: contain;
    background-position: top center;
    width: min(744.63px, 49.36%);
    aspect-ratio: 744.63 / 176.1;
    z-index: 99;
    top: -11%;
    left: 50%;
    transform: translateX(-50%);
}
.mv__left {
    position: absolute;
    content: '';
    background: url(../img/mv_left.png) no-repeat;
    background-size: contain;
    background-position: top center;
    width: min(219.45px, 14.54%);
    aspect-ratio: 219.45 / 225.68;
    z-index: 99;
    bottom: 16.99%;
    left: -0.7%;
}
.mv__right {
    position: absolute;
    content: '';
    background: url(../img/mv_right.png) no-repeat;
    background-size: contain;
    background-position: top center;
    width: min(219.45px, 14.54%);
    aspect-ratio: 219.45 / 225.68;
    z-index: 99;
    bottom: 16.99%;
    right: -0.7%;
}
/* .top__swiper::before {
    position: absolute;
    content: '';
    background: url(../img/mv_ornament.png) no-repeat;
    background-size: contain;
    background-position: top center;
    width: 100%;
    height: 100%;
    z-index: 999;
    top: 6.86%;
} */
.top__swiper .swiper-slide {
    position: relative;
    padding: 0 9.92%;
}
.top__swiper .swiper-slide img {
    width: 100%;
}
.mv_wrapper .swiper-pagination {
    position: unset;
    margin-top: 24px;
    z-index: 999;
}
.top__swiper .swiper-button-prev,
.top__swiper .swiper-button-next {
    width: min(16.44px, 3%);
    height: min(40.06px, 12%);
    aspect-ratio: 16.4 / 40;
    cursor: pointer;
    position: absolute;
    top: 42.1%;
    transform: translateY(-50%);
    z-index: 999;
}
.top__swiper .swiper-button-prev {
    position: absolute;
    left: 6%;
}
.top__swiper .swiper-button-next {
    position: absolute;
    right: 6%;
}
.top__swiper .swiper-button-prev::after,
.top__swiper .swiper-button-next::after {
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    height: 100%;
    width: 100%;
    margin: auto;
}
.top__swiper .swiper-button-prev::after {
    background-image: url(../img/mv_prev.svg);
    position: absolute;
    /* left: 3.3%; */
}
.top__swiper .swiper-button-next::after {
    background-image: url(../img/mv_next.svg);
    position: absolute;
    /* right: 3.3%; */
}
.top__swiper .swiper-slide img {
    height: auto;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ページネーションの余白 */
.mv_wrapper .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.mv_wrapper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 10px;
}
.mv_wrapper  .swiper-pagination-bullet {
    background-color: #DDDDDD;
    width: 15px;
    height: 15px;
    opacity: 1;
}
.mv_wrapper  .swiper-pagination-bullet-active{
    background-color: var(--color-red);
}

@media (max-width: 768px) {
    .mv__side__text {
        display: none;
    }
    .mv_wrapper {
        padding: 0 3%;
    }
    .mv_wrapper  .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
    .mv_wrapper .swiper-pagination {
        margin-top: 10px;
    }
}


/* ------------------------------------- /
/    section__title
/* ------------------------------------- */
.section__title {
    color: var(--color-white);
}
.section__title__txt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.section__title__txt span {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: clamp(1.2rem, 1.5vw, 1.8rem);
    letter-spacing: 0.15em;
    line-height: 1.27;
}
.section__title__txt h2 {
    font-size: clamp(2.2rem, 3vw, 5.0rem);
    font-weight: 700;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* gap: 4.16%; */
    line-height: 1.48;
}
.section__title__txt h2::before,
.section__title__txt h2::after {
    content: '';
    background: url(../img/tubuwhite.svg);
    background-size: contain;
    /* background-position: center; */
    background-repeat: space;
    width: 30.89%;
    height: 6.78px;
    /* aspect-ratio: 37076 / 678; */
}

/* red */
.section__title.red {
    color: var(--color-red);
}
.section__title.red h2::before,
.section__title.red h2::after {
    content: '';
    background: url(../img/tubured.svg);
    background-size: contain;
    background-repeat: space;
    width: 30.89%;
    height: 6.78px;
}
.map__wrapper .section__title h2::before,
.map__wrapper .section__title h2::after {
    width: 30.89%;
}
.insta__wrapper .section__title h2::before,
.insta__wrapper .section__title h2::after {
    width: 34.96%;
}
.news__wrapper .section__title h2::before,
.news__wrapper .section__title h2::after {
    width: 29.26%;
}
.burning__wrapper .section__title h2::before,
.burning__wrapper .section__title h2::after {
    width: 25.19%;
}
.colors__wrapper .section__title h2::before,
.colors__wrapper .section__title h2::after {
    width: 28.45%;
}
.types__wrapper .section__title h2::before,
.types__wrapper .section__title h2::after {
    width: 33.33%;
}
@media (max-width: 768px) {
    .section__title {
        margin-bottom: 35px!important;
    }
    .section__title__txt {
        gap: 0;
    }
    .section__title h2::before,
    .section__title h2::after {
        width: 20%!important;
    }
    .section__title.red h2::before,
    .section__title.red h2::after {
        width: 20%!important;
    }
}
@media (max-width: 425px) {
    .section__title h2::before,
    .section__title__txt h2::after {
        width: 18%!important;
    }
    .section__title.red h2::before,
    .section__title.red h2::after {
        width: 18%!important;
    }
}

/* ------------------------------------- /
/    button
/* ------------------------------------- */
.button {
    width: min(380px, 60%);
    height: 80px;
    border: solid 2px var(--color-white);
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 26px 0;
    margin: 0 auto;
    cursor: pointer;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
    background: var(--color-red);
    color: var(--color-white);
}
.button:hover {
    background: var(--color-white);
    color: var(--color-red);
    text-decoration: none;
    border: solid 2px var(--color-red);
}
.button span{
    color: var(--color-white);
    position: relative;
    font-size: clamp(1.6rem, 2vw, 1.8rem);
    font-weight: 700;
    line-height: 1.3;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}
.button:hover span {
    color: var(--color-red);
}
.button span::after {
    content: '';
    background: url(../img/right_arrow_white.svg) no-repeat center;
    background-size: contain;
    width: 22.2px;
    height: 4.8px;
    position: absolute;
    bottom: 50%;
    margin-left: 15.7px;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}
.button:hover span::after {
    content: '';
    background: url(../img/right_arrow_red.svg) no-repeat center;
    background-size: contain;
    width: 22.2px;
    height: 4.8px;
    position: absolute;
    bottom: 50%;
    margin-right: 15.7px;
    transform: translateX(10px);
}
.button.return span::after{
    display: none;
}
.button.return span::before {
    content: '';
    background: url(../img/left_arrow_white.svg) no-repeat center;
    background-size: contain;
    width: 22.2px;
    height: 4.8px;
    position: absolute;
    left: -15.7px;
    transform: translateX(-100%);
    bottom: 50%;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}
.button.return:hover span::before {
    content: '';
    background: url(../img/left_arrow_red.svg) no-repeat center;
    background-size: contain;
    width: 22.2px;
    height: 4.8px;
    position: absolute;
    left: -25.7px;
    transform: translateX(-100%);
    bottom: 50%;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}
@media (max-width: 425px) {
    .button {
        height: 60px;
    }
}

/* ------------------------------------- /
/    top about
/* ------------------------------------- */
.about__wrapper {
    background-color: var(--color-red);
}
.about__wrapper .section__title {
    margin-bottom: 72px;
}
.about__content {
    color: var(--color-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.about__content img {
    width: 45.83%;
    border-radius: 15px;
}
.about__flex__txt {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    width: 50%;
}
.about__flex__txt h3 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.8;
}
.about__flex__txt p {
    line-height: 1.94;
}
.about__box {
    background-color: var(--color-white);
    width: 100%;
    padding: 40px 40px 67px 54px;
    border-radius: 15px;
}
.about__box__title {
    color: var(--color-red);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    margin-bottom: 30px;
}
.about__box__title span {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    line-height: 1.27;
    letter-spacing: 0.1em;
}
.about__box__title h3 {
    font-size: clamp(2.0rem, 3vw, 3.0rem);
    font-weight: 700;
    line-height: 1.5;
}
.about__box__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.about__box__content p {
    width: 50%;
}
.about__box__content img {
    width: 43.25%;
}

@media (max-width: 1200px) {
}
@media (max-width: 768px) {
    .about__content img {
        width: 100%;
        margin-bottom: 40px;
    }
    .about__flex__txt {
        width: 100%;
    }
    .about__box {
        padding: 30px 20px;
    }
    .about__box__content {
        flex-direction: column-reverse;
    }
    .about__box__content p {
        width: 100%;
    }
    .about__box__content img {
        width: 100%;
        margin-bottom: 40px;
    }
}
@media (max-width: 600px) {
}

/* ------------------------------------- /
/    top map
/* ------------------------------------- */
.map__wrapper .section__title {
    margin-bottom: 78px;
}
.map__img {
    border-radius: 15px;
}

/* ------------------------------------- /
/    top insta
/* ------------------------------------- */
.insta__wrapper .section__title {
    margin-bottom: 78px;
}
/* .insta__feed {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 27px;
} */
.insta__feed img {
    border-radius: 10px;
}
/* @media (max-width: 768px) {
    .insta__feed {
        gap: 10px;
    }
} */

/* ------------------------------------- /
/    top banner
/* ------------------------------------- */

/* ------------------------------------- /
/    top news
/* ------------------------------------- */
.news__wrapper {
    background-color: var(--color-red);
}
.news__wrapper .section__title {
    margin-bottom: 74px;
}
.news__swiper {
    overflow: hidden;
}
.news__category {
    width: 100%;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.news__category__item {
    color: var(--color-red);
    background-color: var(--color-white);
    width: 90px;
    height: 30px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}
.news__category__item::marker {
    display: none;
}
.news__category__item:hover {
    background: var(--color-red);
    color: var(--color-white);
    border: 1px solid var(--color-white);
}
.news__category__item a {
    color: var(--color-red);
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}
.news__category__item:hover a {
    color: var(--color-white);
}
.news__list {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    row-gap: 70px;
    column-gap: 5%;
}
.news__list.swiper-wrapper {
    flex-wrap: nowrap;
    column-gap: 5%;
}
.news__item {
    height: auto;
    width: 30%;
    display: flex;
    justify-content: space-between;
}
.news__card {
    width: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 15px;
    overflow: hidden;
}
.news__card__image {
    border-radius: 15px 15px 0 0;
}
.news__card__image img{
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}
.news__card__image:hover img{
    transform: scale(1.1);
}
.news__card__body {
    height: 100%;
    background-color: var(--color-white);
    padding: 20px 20px 22px;
    border-radius: 0 0 15px 15px;
    z-index: 99;
}
.news__card__meta {
    color: var(--color-red);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.news__card__category {
    background-color: rgba(203, 57, 57, 0.07);
    border-radius: 40px;
    width: 90px;
    display: flex;
    justify-content: center;
    font-size: 1.6rem;
}
.news__card__date {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 1.6rem;
}
.news__card__text {
    line-height: 1.62;
    margin-bottom: 10px;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}
.news__card__text:hover {
    color: #535353;
}
.news__button {
    display: block;
    width: 60px;
    height: 30px;
    border: 1px solid var(--color-red);
    border-radius: 18px;
    margin: 0 0 0 auto;
    overflow: hidden;
}
.news__button a {
    display: flex;
    justify-content: center;
    align-items: center;
}
.news__button img{
    width: 22.2px;
    height: 100%;
    margin: 0 auto;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}
.news__button:hover img {
    transform: translateX(5px);
}

@media (max-width: 1024px) {
    /* .news__item {
        width: 47%;
    } */
}
@media (max-width: 768px) {
    .news__category {
        margin-bottom: 25px;
    }
    .news__list {
        gap: 4%;
        row-gap: 35px;
    }
    .news__list.swiper-wrapper {
        gap: 0;
    }
    .news__item.swiper-slide {
        padding: 2%;
    }
}
@media (max-width: 600px) {
}

/* ------------------------------------- /
/    news archive
/* ------------------------------------- */
@media (max-width: 768px) {
    .news__wrapper.archive .news__item{
        width: 48%;
    }
}
@media (max-width: 425px) {
    .news__wrapper.archive .news__item{
        width: 100%;
    }
}

/* ------------------------------------- /
/    breadcrumb
/* ------------------------------------- */
.breadcrumb__wrapper {
    background-color: var(--color-red);
}
.breadcrumb__wrapper.white {
    background-color: var(--color-white);
}
.breadcrumb {
    width: 100%;
    color: var(--color-white);
    font-size: clamp(1.4rem, 2vw, 1.6rem);
    font-weight: 500;
    line-height: 1.625;
}
.breadcrumb a {
    color: var(--color-white);
}
.breadcrumb.black {
    color: var(--color-black);
}
.breadcrumb.black a {
    color: var(--color-black);
}
.breadcrumb a:hover {
    text-decoration: none;
}

/* ------------------------------------- /
/    footer
/* ------------------------------------- */
.footer {
    background-color: #E3CCA7;
    padding: 87px 0 116px;

}
.footer__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}
.footer__info {
    font-size: 1.6rem;
    /* width: 50%; */
}
.footer__logo {
    margin-bottom: 43px;
    width: 210px;
    transition: opacity 0.4s ease;
}
.footer__logo:hover {
    opacity: 0.7;
}
.footer__access {
    margin-bottom: 15px;
}
.footer__tel {
    font-family: 'Outfit', sans-serif;
    margin-bottom: 11px;
}
.footer__tel::before {
    content: '';
}
.footer__sns {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-white);
    border-radius: 50%;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}
.footer__sns:hover {
    transform: scale(0.9);
}
.footer__sns img {
    width: 16px;
}
.footer__nav-group {
    width: min(420px, 50%);
    min-width: 350px;
    margin-bottom: 20px;
}
.footer__nav {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    margin: 20px 0;
}
.footer__nav .nav__list {
    flex-direction: column;
}
.footer .ec__button {
    margin: 0 0 0 auto;
}
.copyright {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.94;
    width: 100%;
    text-align: right;
    transition: opacity 0.4s ease;
}
.copyright:hover {
    text-decoration: none;
    opacity: 0.7;
}

@media (max-width: 1024px) {
    .footer {
        padding: 50px 0;
    }
    .footer__nav-group {
        width: 56%;
    }
}
@media (max-width: 768px) {
    .footer {
        padding: 60px 0;
    }
    .footer__info {
        width: 100%;
    }
    .footer__nav-group {
        width: 100%;
    }
    .footer .nav__list {
        width: 50%;
        gap: 15px;
        margin-right: 10px;
    }
    .footer .ec__button {
        margin: 0 auto 0 0;
    }
}
@media (max-width: 600px) {
}

/* ------------------------------------- /
/    page__title
/* ------------------------------------- */
.page__title {
    color: var(--color-white);
}
.page__title__txt {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 68px;
}
.page__title__txt::after {
    content: '';
    background: url(../img/tubuwhite.svg);
    background-size: contain;
    background-repeat: space;
    width: 100%;
    height: 6.78px;
    margin-top: 68.8px;
}
.page__title__txt span {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: clamp(1.6rem, 2vw, 1.8rem);
    letter-spacing: 0.15em;
    line-height: 1.27;
    margin-bottom: 10px;
}
.page__title__txt h1,
.page__title__txt h2 {
    font-size: clamp(3.0rem, 5vw, 5.0rem);
    font-weight: 700;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* gap: 4.16%; */
    line-height: 1.48;
}

@media (max-width: 1024px) {
    .page__title__txt::after {
        margin-top: 35px;
    }
}
@media (max-width: 768px) {
    .page__title {
        margin-bottom: 50px!important;
    }
    .page__title__txt {
        margin-bottom: 35px;
    }
}
@media (max-width: 600px) {
}


/* ------------------------------------- /
/    about
/* ------------------------------------- */
.about__wrapper .page__title {
    margin-bottom: 105px;
}
.about__txt {
    text-align: center;
}

.wish__wrapper .section__title {
    margin-bottom: 68px;
}
.wish__img {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.wish__img img {
    width: 48.3%;
    border-radius: 10px;
}

.burning__wrapper .section__title{
    margin-bottom: 86px;
}
.burning__box {
    padding: 60px 5% 52px;
    background-color: #FEF7E5;
}
.burning__box__title {
    background: url(../img/ribbon.png) no-repeat;
    background-size: contain;
    color: var(--color-white);
    font-size: clamp(1.8rem, 2vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin: 0 auto 50px;
    width: max(300px, 57.5%);
    aspect-ratio: 690 / 80;
    display: flex;
    align-items: center;
    justify-content: center;
}
.burning__content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 5%;
}
.burning__item {
    width: 50%;
}
.burning__item img {
    margin-bottom: 30px;
    border-radius: 15px;
}
.burning__item__name {
    color: var(--color-red);
    font-size: clamp(1.8rem, 2vw, 2.2rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 14px;
}
.burning__item__desc {
    line-height: 1.94;
}
.daruma__world {
    position: relative;
}
.daruma__world__box {
    padding: 60px 5% 52px;
    background-color: #FEF7E5;
}
.daruma__world__box__title {
    background: url(../img/ribbon.png) no-repeat;
    background-size: contain;
    color: var(--color-white);
    font-size: clamp(1.8rem, 2vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin: 0 auto 50px;
    width: max(300px, 57.5%);
    aspect-ratio: 690 / 80;
    display: flex;
    align-items: center;
    justify-content: center;
}
.daruma__world__content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 5%;
    max-width: 900px;
    margin: 0 auto;
}
.daruma__world__item img {
    margin-bottom: 30px;
    border-radius: 15px;
}
.daruma__world__item__name {
    color: var(--color-black);
    font-size: clamp(1.8rem, 2vw, 2.2rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 14px;
}
.daruma__world__item__desc {
    line-height: 1.94;
    text-align: center;
}
.daruma__world::before{
    display: block;
    content: '';
    background-image: url(../img/lantern.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 16.66%;
    aspect-ratio: 200 / 338;
    position: absolute;
    bottom: 0;
    left: -9.1%;
    transform: rotate(-15deg);
    z-index: 99;
}
.daruma__world::after{
    display: block;
    content: '';
    background-image: url(../img/daruma_red.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 17.41%;
    aspect-ratio: 209 / 216;
    position: absolute;
    top: 37px;
    right: -17.4%;
    transform: translateX(-50%);
    z-index: 99;
}
@media (max-width: 1440px) {
    .daruma__world::before{
        width: 12%;
        left: -5%;
    }
    .daruma__world::after{
        width: 12%;
        right: -10%;
        top: 12%;
    }
}
@media (max-width: 768px) {
    .wish__img img {
        width: 100%;
        margin-bottom: 30px;
    }
    .burning__box {
        padding: 40px 5%;
        background-color: #FEF7E5;
    }
    .burning__box__title {
        margin-bottom: 20px;
        width: 100%;
    }
    .burning__content {
        flex-direction: column;
        gap: 60px;
    }
    .burning__item {
        width: 100%;
    }
}
@media (max-width: 600px) {
    .daruma__world::before{
        display: none;
    }
    .daruma__world::after{
        display: none;
    }
}
@media (max-width: 425px) {
    .wish__img img {
        margin-bottom: 15px;
    }
}

.colors__wrapper {
    background-color: var(--color-red);
    position: relative;
}
.colors__wrapper .about__txt {
    color: var(--color-white);
}
.colors__info__box {
    background-color: var(--color-white);
    border-radius: 15px;
    padding: 74px 0 78px;
}
.colors__info__content {
    width: 83.33%;
    margin: 0 auto;
}
.colors__info__table {
    width: min(1000px, 100%);
    padding: 5%;
}
.colors__info__table tr {
    display: flex;
    align-items: center;
    height: 65px;
    margin-bottom: 28px;
    text-align: center;
}
.colors__info__table th {
    color: var(--color-white);
    font-size: clamp(1.6rem, 2vw, 1.8rem);
    text-align: center;
    position: relative;
    z-index: 99;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.colors__info__table th::before {
    content: '';
    display: block;
    background-color: var(--color-black);
    border-radius: 5px;
    width: 90%;
    height: 65px;
    position: absolute;
    z-index: -1;
    top: 0;
}
.colors__info__table th::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 15px solid #1e1e1e;
}
.colors__info__table .col {
    border: 1px solid #A8A8A8;
    border-radius: 5px;
}
.col.black .col-color {
    color: var(--color-white);
    background-color: #505050;
}
.col.red .col-color {
    color: var(--color-white);
    background-color: #CB3939;
}
.col.blue .col-color {
    color: var(--color-white);
    background-color: #3988CB;
}
.col.green .col-color {
    color: var(--color-white);
    background-color: #82A839;
}
.col.pink .col-color {
    color: var(--color-black);
    background-color: #FCB2D4;
}
.col.yellow .col-color {
    color: var(--color-black);
    background-color: #FFF577;
}
.col.orange .col-color {
    color: var(--color-black);
    background-color: #FFAB57;
}
.col.white .col-color {
    color: var(--color-black);
    background-color: #FFFFFF;
}
.col.gold .col-color {
    color: var(--color-white);
    background-color: #C7B634;
}
.colors__info__table .col td {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}
.colors__info__table .col-color {
    width: 11.01%;
}
.colors__info__table .col-benefit {
    width: 25.22%;
}
.colors__info__table .col-origin {
    /* width: 63.96%; */
    width: 74.78%;
}
.colors__info__table .col .col-color {
    border-right: 1px solid #A8A8A8;
}
.colors__info__table .col .col-origin {
    border-left: 1px solid #A8A8A8;
}
.types__wrapper .section__title {
    margin-bottom: 68px;
}
.types__wrapper .about__txt {
    margin-bottom: 69px;
}
.types__list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 60px;
}
.types__list li {
    width: 30%;
    display: flex;
    align-items: flex-start;
}
.types__img {
    width: 100px;
    object-fit: contain;
}
.types__text {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.types__name {
    color: var(--color-red);
    font-size: clamp(1.8rem, 2vw, 2.2rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}
.types__desc {
    line-height: 1.94;
}
.decoration__inner {
    width: min(100%, 1800px);
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}
.decoration__inner > span:nth-of-type(1) {
    display: block;
    content: '';
    background-image: url(../img/daruma_pink.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 122px;
    height: 143px;
    position: absolute;
    top: 25.25%;
    left: calc(50% + 699px);
    transform: rotate(29deg);
}
.decoration__inner > span:nth-of-type(2) {
    display: block;
    content: '';
    background-image: url(../img/daruma_yellow.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 182px;
    height: 205px;
    position: absolute;
    bottom: 35.84%;
    right: calc(50% + 648px);
    transform: rotate(-15deg);
}
.decoration__inner > span:nth-of-type(3) {
    display: block;
    content: '';
    background-image: url(../img/daruma_white.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 242px;
    height: 275px;
    position: absolute;
    bottom: 10.3%;
    left: calc(50% + 550px);
    transform: rotate(23deg);
}
@media (max-width: 1650px) {
    .decoration__inner > span:nth-of-type(1) {
        left: 90%;
    }
    .decoration__inner > span:nth-of-type(2) {
        right: 83%;
    }
    .decoration__inner > span:nth-of-type(3) {
        left: 82%;
    }
}
@media (max-width: 768px) {
    .decoration__inner > span:nth-of-type(1) {
        display: none;
    }
    .decoration__inner > span:nth-of-type(2) {
        display: none;
    }
    .decoration__inner > span:nth-of-type(3) {
        display: none;
    }
    .colors__info__box {
        overflow-x: scroll;
        padding: 35px 5%;
    }
    .colors__info__content {
        width: 100%;
        margin: 0;
    }
    .colors__info__content img {
        width: 650px;
        aspect-ratio: 1000 / 898;
        height: 100%;
        object-fit: contain;
    }
    .colors__info__table tr {
        flex-wrap: wrap;
        height: auto;
    }
    .colors__info__table th {
        display: none;
    }
    .colors__info__table .col .col-color {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #A8A8A8;
    }
    .types__list {
        row-gap: 30px;
    }
    .types__list li{
        width: 48%;
    }
}
@media (max-width: 425px) {
    .types__list li {
        width: 100%;
    }
}

/* ------------------------------------- /
/    contact
/* ------------------------------------- */
.contact__wrapper {
    background-color: var(--color-red);
}
.form__container {
    width: 100%;
    background-color: var(--color-white);
    border-radius: 15px;
    padding: 130px 20px 116px;
}
.form__box {
    width: min(900px, 85%);
    margin: 0 auto;
}
.form__box dl {
    margin-bottom: 25px;
}
.form__box dt{
    color: var(--color-red);
    font-size: clamp(1.6rem, 2vw, 2.0rem);
    font-weight: 700;
    line-height: 1.45;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 15px;
}
.form__box .required {
    width: 70px;
    color: var(--color-white);
    font-size: clamp(1.4rem, 2vw, 1.6rem);
    font-weight: 500;
    background-color: var(--color-red);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px 0;
    margin-left: 15px;
}
.form__box dd input,
.form__box textarea {
    width: 100%;
    height: 70px;
    background-color: #F0F0F0;
    border: none;
    border-radius: 5px;
    /* padding: 23px 30px 20px; */
    padding: 0 min(30px, 3.3%);
    font-size: clamp(1.8rem, 2vw, 2.0rem);
}
.form__box dd input::selection,
.form__box dd textarea::selection {
  background: none;
  color: #747474;
}
.form__box dd input::-moz-selection,
.form__box textarea::-moz-selection {
    color: #414141;
}
.form__box textarea {
    height: 350px;
    padding: min(23px, 3%) min(30px, 3%);
    line-height: 1.7;
}
.form__box dd input::placeholder,
.form__box textarea::placeholder {
    color: #A8A8A8;
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    line-height: 1.5;
}
.form__box .input_error {
    background-color: #ffe5e5;
}
.contact-form__error.false {
    display: none;
}
.contact-form__error {
    color: var(--color-red);
    font-size: 1.6rem;
}
.privacy-policy {
    height: 362px;
    border: 1px solid var(--color-red);
    border-radius: 5px;
    padding: 23px 11px 23px 23px;
    margin-bottom: 30px;
}
.privacy-policy__box {
    height: 100%;
    overflow-y: scroll;
}
.privacy-policy__item,
.privacy-policy__item h2 {
    color: var(--color-red);
    font-size: clamp(1.4rem, 2vw, 1.6rem);
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 1em;
}
.privacy-policy__box::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

.privacy-policy__box::-webkit-scrollbar-track {
    background-color: #F0F0F0;
    border-radius: 9px;
}

.privacy-policy__box::-webkit-scrollbar-thumb {
    background-color: var(--color-red);
    border: 2px solid transparent;
    background-clip: content-box;
    border-radius: 6px;
}

.privacy-policy__box::-webkit-scrollbar-button {
    display: none;
}
.form__agree{
    color: var(--color-red);
    font-size: clamp(1.6rem, 2rem, 2.0rem);
    font-weight: 700;
    margin-bottom: 78px;
    text-align: center;
}
.form__agree label {
    margin: 0 auto;
    width: 184px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: relative;
}
.form__agree label::before {
    display: block;
    content: '';
    width: 29px;
    height: 29px;
    background-color: #F0F0F0;
    border-radius: 5px;
    margin-right: 15px;
}
.form__agree label::after {
    position: absolute;
    display: none;
    content: '';
    background-image: url(../img/check.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 29px;
    height: 29px;
    left: 0;
}
.form__agree.active label::after {
    display: block;
}
.contact__thanks__text {
    text-align: center;
}
@media (max-width: 1024px) {
}
@media (max-width: 768px) {
    .form__container {
        padding: 70px 20px 60px;
    }
    .form__box dd input {
        height: 50px;
    }
    .form__box textarea {
        height: 200px;
    }
    .privacy-policy {
        padding: 15px 5px 15px 10px;
    }
    .form__agree {
        margin-bottom: 40px;
    }
}
@media (max-width: 425px) {
    .form__container {
        padding: 35px 20px 30px;
    }
}


/* ------------------------------------- /
/    single news
/* ------------------------------------- */
.news__wrapper {
    background-color: var(--color-red);
}
.news__wrapper .page__title {
    margin-bottom: 70px;
}
.news__single__box {
    width: 100%;
    background-color: var(--color-white);
    border-radius: 15px;
    padding: 100px 12.5%;
}
.news__title {
    font-size: clamp(1.8rem, 2vw, 2.5rem);
    font-weight: 700;
    line-height: 1.8;
    margin-bottom: 40px;
}
.single__thumb {
    aspect-ratio: 900 / 550;
    border-radius: 15px;
    object-fit: cover;
}
.single__detail img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 55px;
    object-fit: cover;
}
.single__detail h2 {
    color: var(--color-red);
    font-size: clamp(1.8rem, 2vw, 2.2rem);
    font-weight: 700;
    line-height: 1.6;
    display: flex;
    flex-wrap: wrap;
}
.single__detail h2::after {
    content: '';
    display: block;
    background: url(../img/tubured.svg);
    background-size: contain;
    background-repeat: space;
    width: 100%;
    height: 6.78px;
    margin: 20px 0 30px;
}
.single__detail h3 {
    font-size: clamp(1.8rem, 2vw, 2.0rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}
.single__detail h3::before {
    content: '';
    display: block;
    background: url(../img/icon_daruma_red.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 30px;
    height: 33px;
    min-width: 25px;
    margin-right: 7px;
}
.single__detail p {
    margin-bottom: 54px;
}
.single__detail > *:last-child {
  margin-bottom: 0 !important;
}
.pagination {
    background-color: var(--color-red);
}
.pagination-list {
    /* width: 224px; */
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pagination-list li {
    margin: 0 10px;
}
.pagination-list li,
.pagination-list li a {
    color: var(--color-white);
    font-family: 'Outfit', sans-serif;
}
.pagination-list .current {
    margin: 0 32px;
    position: relative;
}
.pagination-list .current::before {
    display: block;
    content: '';
    width: 50px;
    height: 50px;
    border: 1px solid var(--color-white);
    border-radius: 50%;
    position: absolute;
    transform: translateY(-50%) translateX(-50%);
    top: 50%;
    left: 50%;
}
.button.news-single__return span::after {
    display: none;
}
.button.news-single__return span::before {
    content: '';
    background: url(../img/left_arrow_white.svg) no-repeat center;
    background-size: contain;
    width: 22.2px;
    height: 4.8px;
    position: absolute;
    bottom: 50%;
    left: -37px;
    margin-right: 15.7px;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}
.button.news-single__return:hover span::before {
    content: '';
    background: url(../img/left_arrow_red.svg) no-repeat center;
    background-size: contain;
    width: 22.2px;
    height: 4.8px;
    position: absolute;
    bottom: 50%;
    left: -47px;
    margin-right: 15.7px;
}
.single__pagination {
    padding: 80px 0 96px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.single__pagination .prev {
    display: block;
    width: 60px;
    height: 30px;
    border: 1px solid var(--color-white);
    border-radius: 18px;
    cursor: pointer;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}
.single__pagination .prev:hover {
    background-color: var(--color-white);
}
.single__pagination .prev img{
    width: 22.2px;
    height: 100%;
    margin: 0 auto;
}
.single__pagination .next,
.single__pagination .previous {
    display: block;
    width: 60px;
    height: 30px;
    border: 1px solid var(--color-white);
    border-radius: 18px;
    cursor: pointer;
}
.single__pagination .next img,
.single__pagination .previous img {
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}
.single__pagination .next:hover img{
    transform: translateX(-5px);
}
.single__pagination .previous:hover img {
    transform: translateX(5px);
}
.single__pagination .next img,
.single__pagination .previous img{
    width: 22.2px;
    height: 100%;
    margin: 0 auto;
}
@media (max-width: 600px) {
    .single__pagination .button {
        width: 50%;
        height: 60px;
    }
}
@media (max-width: 768px) {
    .news__single__box {
        padding: 5%;
    }
    .news__title {
        line-height: 1.5;
    }
    .single__detail h2 {
        line-height: 1.4;
    }
    .single__pagination {
        padding: 40px 0;
    }
}