@charset "utf-8";

/*==========================
common
==========================*/
:root {
    --primary-white: rgba(255, 255, 255);
    --primary-black: #000000;
    --primary-darkGray: #828796;
    --primary-lightGray: #D9D9D9;
    --primary-darkBlue: #46509B;
    --primary-whiteLow: #F9FBFD;
}

html {
    font-size: 62.5%;
}

body {
    margin: 0;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 500;
    color: var(--primary-darkGray);
    background-image: url("../images/back.webp");
    background-position: center top;
    background-repeat: repeat-y;
    background-size: 100% auto;
}

.section--concept,
.section--products,
.section--contact,
.section--shop {
    background-color: var(--primary-whiteLow);
    margin: 0 4.2%;
}

h1 {
    margin: 0;
}

p {
    font-size: 1.2rem;
    font-weight: 400;
    font-style: normal;
    line-height: 1.6;
    letter-spacing: 0.1rem;
    margin: 0;
}

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

.section--products,
.section--contact {
    margin: 5.5rem 4.2% 0;
}

.title {
    font-family: "Lexend", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 3.6rem;
    text-align: center;
    letter-spacing: 0.2rem;
    margin: 0;
}

.sub_title {
    font-weight: 400;
    display: block;
    font-size: 1.2rem;
}

.btn {
    color: var(--primary-white);
    text-align: center;
    font-family: "Lexend", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 1.4rem;
    border-radius: 50px;
    background: var(--primary-darkBlue);
    padding: 1.4rem 0 1.4rem 0;
    position: relative;
    width: 21rem;
    height: auto;
    transition: opacity 0.3s ease;
}

.btn::after {
    content: '';
    width: 11px;
    height: 16px;
    position: absolute;
    background: url(../images/btn_yajirusi.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
}

.btn_more,
.btn_contact,
.btn_shop {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =======ホバー時アニメ ====== */
@media (hover: hover) and (pointer: fine) {
/* btn */
.btn:hover {
    opacity: 0.7;
}

/* news list */
.newslist_item {
    transition: opacity 0.3s ease;
}
.newslist_item:hover {
    opacity: 0.5;
}

/* concept周り */
.concept_about_icon a {
    transition: opacity 0.3s ease;
}
.concept_about_icon a:hover {
    opacity: 0.7;
}

/* products周り */
.products_slide img {
    transition: opacity 0.3s ease;
}
.products_slide img:hover {
    opacity: 0.7;
}

/* footer周り */
.footer_insta_x a {
    transition: opacity 0.3s ease;
}
.footer_insta_x a:hover {
    opacity: 0.5;
}
.shop_btn_inner_g {
    transition: opacity 0.3s ease;
}
.shop_btn_inner_g:hover {
    opacity: 0.5;
}
}
/* ========== */

a {
    display: block;
    margin: 0;
    padding: 0;
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ====== .nav初期表示 ====== */
/* .nav.active表示 */

.nav {
    background: rgba(255, 255, 255, 1);
    width: 100%;
    min-height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;
}

.nav.active {
    transform: translateX(0);
}

/* navアイコンとボタン */
.nav_header {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav_icon_grop {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav_header_logo {
    width: 66px;
    height: 40px;
}

.nav_icon_sns {
    width: 20px;
    height: 20px;
}

.nav_icon_shop {
    width: 28px;
    height: 18px;
}

.nav_close {
    width: 36px;
    height: 17px;
}

/* navメニュー */
.nav_list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    margin: 6rem 0 6rem 0;
}

.item_txt {
    font-size: 2.4rem;
}

.item_sub {
    font-size: 1rem;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.nav_item {
    text-align: center;
    color: var(--primary-darkGray);
    line-height: 0;
    align-items: center;
}

.nav_img {
    width: 100%;
    height: auto;
}

/* nav footer */
.nav_footer {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.nav_footer_sns {
    width: 20px;
    height: 20px;
}

.nav_footer_shop {
    width: 30px;
    height: 20px;
}

.nav_copy {
    text-align: center;
}


/* footer sp */
.footer_pc_img {
    display: none;
}

.footer_sns {
    margin-top: 7rem;
}

.footer_sns_txt {
    font-size: 1.4rem;
    text-align: center;
}

.footer_group {
    background-color: #F9FBFD;
    margin: 0 4.2%;
    padding-bottom: 7rem;
}

.footer_insta_x {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    gap: 2rem;
}

.footer_insta_x img {
    width: 30px;
    height: 30px;
}

.footer {
    width: 100vw;
    height: auto;
    margin: 0;
    display: flex;
    flex-direction: column;
    background-color: var(--primary-darkGray);
    align-items: center;
    padding: 2rem 0 2rem 0;
}

.footer_rogo {
    width: 8rem;
    height: 5rem;
    margin-bottom: 1rem;
}

.copy {
    color: var(--primary-white);
}

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

    /* ====== pc footer ====== */
    .footer_sp_img {
        display: none;
    }

    .footer_pc_img {
        display: block;
    }

    .footer_group {
        padding-bottom: 10rem;
    }

    .shop_btn_inner_g {
        width: 25rem;
        margin: 0;
    }

    .shop_btn_g p {
        font-size: 1.6rem;
    }

    .shop_btn_g img {
        width: 29px;
        height: 21px;
    }

    .footer_shop {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 5.5rem;
        margin-top: 10rem;
    }

    .footer_sns {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0;
    }

    .footer_insta_x {
        margin: 0;
    }

    .footer_sns_txt {
        margin-right: 2rem;
    }

}

/* ====== header sp ====== */
.header_list {
    display: none;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
}

.header_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
}

.header_menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header_icon_sns {
    width: 20px;
    height: 20px;
}

.header_icon_shop {
    width: 30px;
    height: 20px;
}

.header_btn {
    width: 36px;
    height: 17px;
}

.header_logo {
    width: 66px;
    height: 40px;
}

/* === headerアニメ === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.header.is-scrolled {
    background-color: var(--primary-whiteLow);
}


/* ====== main sp ====== */
.visually-hidden {
  position: absolute;
  width: 0px;
  height: 0px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* mvの変なちらつき回避 */
.mainVisual {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.main-visual_slider,
.main-visual_slider .slick-list,
.main-visual_slider .slick-track,
.main-visual_slider .slick-slide,
.main-visual_slider .slick-slide > div {
  height: 100%;
}

.main-visual_slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.main-visual_slider,
.main-visual_slider .slick-track,
.main-visual_slider .slick-list,
.main-visual_slider .slick-slide {
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}
/*  */

.main-visual_slider--pc {
    display: none;
}

.main-visual_slider--tb {
    display: none;
}

/* === main js === */
.mainVisual {
    position: relative;
}

.main-visual_slider {
    position: relative;
}

.main-visual_slider.slick-dotted.slick-slider {
    margin-bottom: 0;
}

.main-visual_slider .slick-dots {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 3.2rem;
    width: auto;
    bottom: auto;
}

.main-visual_slider .slick-dots li {
    margin: 0;
    width: auto;
    height: auto;
}

/* dots sp 大きさ */
.main-visual_slider .slick-dots li button {
    padding: 0;
    width: 12px;
    height: 12px;
}

.main-visual_slider .slick-dots li button:before {
    font-size: 8px;
    color: var(--primary-white);
    opacity: 0.5;
}

.main-visual_slider .slick-dots li.slick-active button:before {
    color: var(--primary-white);
    opacity: 1;
}

/* dots pc 大きさ */
@media screen and (min-width: 768px) {
    .main-visual_slider .slick-dots li button {
        width: 20px;
        height: 20px;
    }

    .main-visual_slider .slick-dots li button:before {
        font-size: 12px;
    }
}

/* --- */

.mainVisual {
    object-fit: cover;
    width: 100%;
    height: auto;
}

.main-visual_slider img {
    width: 100%;
    height: auto;
}

/* common pc */
@media screen and (min-width: 1023px) {
    .section--concept,
    .section--products,
    .section--contact,
    .section--shop {
        background-color: var(--primary-whiteLow);
        margin: 0 7.6%;
    }

    p {
        font-size: 1.4rem;
        line-height: 2;
    }

    .btn {
        border-radius: 50px;
        background: var(--primary-darkBlue);
        padding: 1.4rem 0 1.4rem 0;
        position: relative;
        width: 25rem;
    }

    .btn p {
        font-size: 1.6rem;
    }

    .btn::after {
        content: '';
        width: 14px;
        height: 19px;
    }

    /* ====== header ====== */
    .header_btn {
        display: none;
    }

    .header {
        display: flex;
        align-items: end;
        justify-content: center;
        position: fixed;
    }

    .header_inner {
        max-width: 1160px;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header_list_icon {
        display: flex;
        gap: 3.5rem;
    }

    .header_list {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 3.5rem;
    }

    .item_txt {
        font-size: 1.6rem;
    }

    .header_icon_sns {
        width: 25px;
        height: 25px;
    }

    .header_icon_shop {
        width: 36px;
        height: 25px;
    }

    /* ====== nav ====== */
    .nav,
    .nav_header,
    .nav_img,
    .nav_copy,
    .nav_icon_grop,
    .nav_list {
        display: none;
    }

    /* ====== main pc ====== */
    .main-visual_slider--sp {
        display: none;
    }

    .main-visual_slider--tb {
        display: none;
    }

    .main-visual_slider--pc {
        display: block;
    }

    .title {
        font-size: 3.6rem;
    }

    .sub_title {
        font-size: 1.4rem;
    }

    .footer_group {
        margin: 0 7.6%;
    }
}

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

    .main-visual_slider--tb {
        display: block;
    }

    .main-visual_slider--pc {
        display: none;
    }

    .main-visual_slider--sp {
        display: none;
    }
}

html.is-hash-loading .mainVisual {
    visibility: hidden;
}