@charset "UTF-8";

/*----------------------------------------------------
    基本設定
----------------------------------------------------*/
:root {
  --color-white: rgba(255, 255, 255, 1);
  --color-black: rgba(0, 0, 0, 1);
  --color-text: #462A00;
  --color-base: #FFFBF8;
  --color-main: #F34343;
  --color-sub: #FF8730;
  --color-accent: #2A3FFF;
  --font-sub: 'Kiwi Maru', serif;
  /* margin */
  --margin-120: clamp(100px, 5.3vw, 120px);
  --margin-100: clamp(70px, 5.3vw, 100px);
  --margin-80: clamp(70px, 4.2vw, 80px);
  --margin-60: clamp(50px, 3.5vw, 60px);
  --margin-50: clamp(30px, 2.7vw, 50px);
  --margin-40: clamp(25px, 2.2vw, 40px);
  --margin-30: clamp(20px, 1.8vw, 30px);
  --margin-20: clamp(10px, 1.2vw, 20px);
  --margin-15: clamp(10px, 1.2vw, 15px);
  /* fontsize */
  --fontsize-24: clamp(1.25rem, 0.9877rem + 0.5464vw, 1.5rem);
  --fontsize-26: clamp(1.25rem, 0.9877rem + 0.5464vw, 1.625rem);
  --fontsize-36: clamp(1.75rem, 1.2254rem + 1.0929vw, 2.25rem);
  --fontsize-48: clamp(2.25rem, 1.4631rem + 1.6393vw, 3rem);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Zen Kaku Gothic New', sans-serif, 'メイリオ', '游ゴシック', 'Yu Gothic', YuGothic, Arial, sans-serif;
  font-weight: 500;
  color: var(--color-text);
  background-color: var(--color-base);
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 0em;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
}


img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  display: inline-block;
  color: var(--color-text);
}

a:hover {
  cursor: pointer;
}

::before,
::after {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

ol {
  list-style: none;
}

figure {
  margin: 0;
}

address {
  font-style: normal;
}

th,
td {
  margin: 0;
  font-weight: 400;
}

dl,
dt,
dd {
  margin: 0;
}

/* .padt30{
  padding-top: 30px;
}

.padt40{
  padding-top: 40px;
}

.padt50{
  padding-top: 50px;
} */

.fixed {
  position: fixed;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

/* body {}

.inner {}

h1 {}

h2 {}

h3 {}

h4 {}

h5 {} */

section {
  padding-block-start: var(--margin-120);
  margin-block-end: var(--margin-100);
}

.contents-wrapper {
  width: calc(100% - 40px);
  max-width: 1540px;
  margin-inline: auto;
}

.swiper-slide {
  cursor: pointer;
}

@media screen and (max-width: 1023px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  section {
    margin-block-end: 0;
  }
}

/*----------------------------------------------------
	header
----------------------------------------------------*/
.header {
  position: fixed;
  z-index: 999;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 50px;
  background-color: var(--color-main);
  padding: 5px 20px;
}

.header-logo {
  width: clamp(100px, 10vw, 150px);
}

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

@media screen and (max-width: 767px) {}

/* ========ハンバーガーメニュー======= */
.drawer-menu {
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
}

.hambarger-btn {
  position: relative;
  top: 0;
  right: 0;
  z-index: 999;
  background-color: var(--color-main);
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}


.hambarger-btn .bar,
.hambarger-btn .bar:before,
.hambarger-btn .bar:after {
  content: '';
  display: block;
  height: 1px;
  width: 30px;
  background-color: var(--color-white);
  position: absolute;
  transition: 0.5s;
}

.hambarger-btn .bar:before {
  bottom: 10px;
}

.hambarger-btn .bar:after {
  top: 10px;
}


#drawer-check:checked~.hambarger-btn .bar {
  background-color: rgba(255, 255, 255, 0);
}

#drawer-check:checked~.hambarger-btn .bar::before {
  bottom: 0;
  transform: rotate(45deg);
  background-color: var(--color-white);
}

#drawer-check:checked~.hambarger-btn .bar::after {
  top: 0;
  transform: rotate(-45deg);
  background-color: var(--color-white);
}

#drawer-check {
  display: none;
}

/* 背景ロック */
.fixed {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* 背景overlay */
.drawer-overlay {
  position: fixed;
  top: 0px;
  left: 0;
  content: '';
  background: rgba(0, 29, 31, 0.4);
  width: 100%;
  height: 100%;
  display: none;
}

#drawer-check:checked~.drawer-overlay {
  top: 0;
  display: block;
}

/* ========gnav======= */
/* SP */
.sp-nav {
  width: 80vw;
  height: 100vh;
  background-color: var(--color-main);
  position: fixed;
  top: 0px;
  right: -120%;
  transition: 0.7s;
  padding-block: 60px;
  padding-inline: 40px;
  overflow: auto;
}

#drawer-check:checked~.sp-nav {
  right: 0%;
}

.sp-menu-list {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.sp-menu-link {
  display: flex;
  align-items: center;
  column-gap: 8px;
  font-size: var(--fontsize-24);
  color: var(--color-white);
}

.sp-menu-link span {
  display: block;
}

.sp-menu-icon {
  width: 24px;
  height: 24px;
  background-image: url(../images/icon-menu.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.submenu-list {
  margin-inline-start: var(--margin-50);
}

.submenu-link {
  display: flex;
  align-items: center;
  column-gap: 7px;
  font-size: 1.125rem;
  color: var(--color-white);
}

.submenu-link span {
  display: block;
}

.submenu-icon {
  width: 15px;
  height: 15px;
  background-image: url(../images/icon-submenu.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}


/*----------------------------------------------------
	footer
----------------------------------------------------*/
.footer {
  color: var(--color-white);
  background-color: var(--color-main);
  text-align: center;
  letter-spacing: 0.1em;
  padding-block: 20px;
}

@media screen and (max-width: 767px) {}

/*----------------------------------------------------
	top common
----------------------------------------------------*/
.main-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.sidebar-wrapper {
  width: 22%;
  padding: 20px;
}

.main {
  width: 78%;
}

@media screen and (max-width: 1100px) {
  .sidebar-wrapper {
    width: 25%;
  }

  .main {
    width: 75%;
  }
}

@media screen and (max-width: 1023px) {
  .sidebar-wrapper {
    display: none;
  }

  .main {
    width: 100%;
  }
}

/*----------------------------------------------------
	sidebar
----------------------------------------------------*/
.sidebar {
  position: sticky;
  top: 20px;
  height: calc(100vh - 100px);
  background-color: var(--color-main);
  border-radius: 30px;
  padding: 90px 20px;
}

.sidebar-logo {
  width: clamp(150px, 15vw, 217px);
  margin-block-end: 4vh;
}

.menu-list {
  display: flex;
  flex-direction: column;
  row-gap: 0.6vh;
}

.menu-link {
  display: flex;
  align-items: center;
  column-gap: 15px;
  font-size: var(--fontsize-24);
  color: var(--color-white);
}

.menu-link span {
  display: block;
}

.menu-icon {
  width: 36px;
  height: 36px;
  background-image: url(../images/icon-menu.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.submenu-list {
  margin-inline-start: var(--margin-50);
}

.submenu-link {
  display: flex;
  align-items: center;
  column-gap: 7px;
  font-size: 1.125rem;
  color: var(--color-white);
}

.submenu-link span {
  display: block;
}

.submenu-icon {
  width: 15px;
  height: 15px;
  background-image: url(../images/icon-submenu.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

/* 該当エリアに入った時 */
.menu-link.active,
.submenu-link.active {
  position: relative;
}

.menu-link.active span,
.submenu-link.active span {
  opacity: 0.8;
}

.menu-link.active::after {
  position: absolute;
  top: 0;
  right: -21px;
  content: '';
  width: 20px;
  height: 100%;
  opacity: 1;
  background-color: var(--color-base);
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}

@media screen and (max-width: 1536px) {
  .menu-link {
    column-gap: 7px;
  }

  .menu-icon {
    width: 25px;
    height: 25px;
  }

  .submenu-link {
    font-size: 1rem;
  }
}

@media screen and (max-width: 1440px) {
  .sidebar-logo {
    margin-block-end: 50px;
  }


  .menu-link {
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 1100px) {

  .menu-link {
    font-size: 1rem;
  }
}

/*----------------------------------------------------
	parts
----------------------------------------------------*/
.section-title {
  font-size: var(--fontsize-48);
  font-weight: 700;
}

.section-title span {
  display: block;
  text-transform: uppercase;
  font-family: var(--font-sub);
  font-size: var(--fontsize-26);
  letter-spacing: 0.2em;
  font-weight: 500;
  color: var(--color-main);
  margin-block-start: 10px;
  margin-inline-start: 10px;
}

.section-title.white,
.section-title.white span {
  color: var(--color-white);
}

.section-subtitle {
  font-size: var(--fontsize-48);
  margin-block-end: var(--margin-20);
}

.more-btn {
  width: fit-content;
  color: var(--color-white);
  background-color: var(--color-accent);
  font-size: var(--fontsize-26);
  border-radius: 30px;
  margin-inline: auto;
  padding: 10px 40px;
}

.more-btn.sp {
  width: 250px;
  text-align: center;
  padding: 15px 40px;
}

@media screen and (max-width: 1023px) {}

@media screen and (max-width: 767px) {
  .section-title {
    font-size: 1.5rem;
  }

  .section-title span {
    font-size: 1rem;
    letter-spacing: 0.1em;
    margin-block-start: 0;
    margin-inline-start: 5px;
  }

  .section-subtitle {
    font-size: 2rem;
  }
}

/*----------------------------------------------------
	fv
----------------------------------------------------*/
.fv {
  position: relative;
  padding-block-start: 20px;
}

.fv-image {
  position: relative;
  width: clamp(600px, 90%, 1400px);
  aspect-ratio: 1.555/1;
  margin-inline: auto;
  overflow: hidden;
}

.fv-image::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: '';
  width: 101%;
  height: 101%;
  background-image: url(../images/mask-image.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}


/* scroll icon */
.scrolldown {
  position: absolute;
  left: 50%;
  bottom: 0%;
  transform: translateX(-50%);
  letter-spacing: 0.15em;
  font-size: var(--fontsize-24);
  font-weight: 700;
  text-transform: capitalize;
}

.scrolldown::after {
  content: "";
  position: absolute;
  background-color: var(--color-text);
}


.scrolldown:after {
  top: 150%;
  left: 50%;
  width: 3px;
  height: 100px;
  -webkit-animation: sdl 2s cubic-bezier(1, 0, 0, 1) infinite;
  animation: sdl 2s cubic-bezier(1, 0, 0, 1) infinite;
}

/*下からの距離が変化して全体が下→上→下に動く*/
@-webkit-keyframes sdl {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }

  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }

  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }

  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

@keyframes sdl {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }

  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }

  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }

  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

@media screen and (max-width: 1440px) {
  .fv-image {
    width: 900px;
  }
}

@media screen and (max-width: 1439px) {
  .fv-image {
    width: clamp(600px, 95%, 1400px);
  }
}

@media screen and (max-width: 1023px) {
  .fv {
    padding-block-start: var(--margin-80);
  }

  .scrolldown {
    font-size: 1rem;
  }

  .scrolldown:after {
    top: 150%;
    left: 50%;
    width: 1px;
    height: 50px;
  }
}

@media screen and (max-width: 767px) {}

@media screen and (max-width: 767px) {
  .fv-image {
    width: 100%;
  }

  .scrolldown {
    bottom: -5%;
  }

  .scrolldown:after {
    height: 30px;
  }
}

/*----------------------------------------------------
	concept
----------------------------------------------------*/
.concept-box {
  position: relative;
  z-index: 0;
  width: 90%;
  background-color: var(--color-sub);
  color: var(--color-white);
  border-radius: 100px;
  padding: 80px 50px;
  margin-inline: auto;
  overflow: hidden;
}

.concept-box::after {
  position: absolute;
  z-index: -1;
  content: '';
  top: -50px;
  right: 0;
  width: 50%;
  height: 110%;
  background-image: url(../images/omoi-image01.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-top-left-radius: 50%;
}

.concept-title {
  margin-block-end: var(--margin-40);
}

.concept-text {
  max-width: 550px;
  font-size: var(--fontsize-26);
  margin-block-start: 40px;
}

@media screen and (max-width: 1100px) {
  .concept-box {
    border-radius: 70px;
  }

  .concept-box::after {
    width: 40%;
    height: 130%;
    border-top-left-radius: 100%;
  }

  .concept-text {
    text-shadow: 2px 3px 3px rgba(143, 56, 0, 0.6);
  }
}

@media screen and (max-width: 1023px) {
  .concept-box {
    width: 100%;
    border-radius: 50px;
    padding: 60px 30px;
  }
}

@media screen and (max-width: 767px) {
  .concept {
    padding-block-start: var(--margin-120);
  }

  .concept-box {
    border-radius: 5px;
    padding: 20px;
  }

  .concept-box::after {
    top: 0;
    width: 45%;
    height: 100%;
    border-top-left-radius: 0;
  }

  .concept-text {
    width: 50%;
    font-size: 1rem;
    margin-block-start: 20px;
  }
}

/*----------------------------------------------------
	products
----------------------------------------------------*/
.products-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 950px;
  margin-block-end: var(--margin-80);
}

.products-catch {
  max-width: 410px;
  font-size: var(--fontsize-26);
}

/* 矢印をはみ出させるためのラッパー */
.products-slider-wrapper {
  position: relative;
}

.products-slider {
  width: 95%;
}

.products-slider-item {
  width: 330px;
}

.products-slide-image {
  aspect-ratio: 1/1.15;
  border-top-left-radius: 70%;
  overflow: hidden;
}

.products-slide-caption {
  text-align: center;
  font-size: var(--fontsize-36);
  margin-block-start: var(--margin-20);
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev,
.swiper-button-next {
  top: 40%;
  width: clamp(50px, 5.5vw, 100px);
  height: clamp(50px, 5.5vw, 100px);
}

.swiper-button-prev {
  left: -10px;
}

.swiper-button-next {
  right: 20%;
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev::after,
.swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  width: clamp(50px, 5.5vw, 100px);
  height: clamp(50px, 5.5vw, 100px);
  margin: auto;
}

/* 前への矢印カスタマイズ */
.swiper-button-prev::after {
  background-image: url(../images/icon-prev.png);
}

/* 次への矢印カスタマイズ */
.swiper-button-next::after {
  background-image: url(../images/icon-next.png);
}

/* 各商品 */
.product-item-box {
  max-width: 1150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 20px;
  margin-inline: auto;
}

.product-item-txts {
  width: 35%;
}

.product-item-text {
  font-size: var(--fontsize-26);
  margin-block-end: 50px;
}

.subslider-wrapper {
  width: 48%;
}

.products-subslider-item {
  max-width: 550px;
  aspect-ratio: 1.375/1;
  border-radius: 50px;
  overflow: hidden;
}

.slider-thumbnail {
  padding-block-start: 20px;
}

.slider-thumbnail-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.slider-thumbnail-item {
  width: calc((100% - 90px) / 4);
  border-radius: 50px;
  overflow: hidden;
  opacity: .5;
  transition: opacity .5s;
}

.slider-thumbnail-item.swiper-slide-thumb-active {
  opacity: 1;
}

@media screen and (max-width: 1100px) {
  .product-item-box {
    justify-content: center;
  }

  .product-item-txts {
    width: 40%;
  }

}

@media screen and (max-width: 1023px) {
  .products-head {
    display: block;
  }

  .products-catch {
    padding-block-start: 20px;
  }

  .products-slider {
    width: 80%;
  }

  .swiper-button-prev {
    left: 10%;
  }

  .swiper-button-next {
    right: 10%;
  }

  .product-item-box {
    flex-direction: column;
    row-gap: 30px;
  }

  .product-item-txts {
    width: 100%;
  }

  .product-item-text {
    margin-block-end: 0;
  }

  .subslider-wrapper {
    width: 80%;
  }

  .products-subslider-item {
    max-width: inherit;
  }
}

@media screen and (max-width: 767px) {
  .products-slider {
    width: 100%;
  }

  .products-slide-caption {
    font-size: 1rem;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 40px;
    height: 40px;
  }

  .swiper-button-prev::after,
  .swiper-button-next::after {
    width: 40px;
    height: 40px;
  }

  .swiper-button-prev {
    left: 0;
  }

  .swiper-button-next {
    right: 0;
  }

  .product-item {
    padding-block-start: 50px;
  }

  .product-item-text {
    font-size: 1.125rem;
  }

  .products-subslider-item {
    border-radius: 30px;
  }

  .subslider-wrapper {
    width: 100%;
  }

  .slider-thumbnail {
    padding-block-start: 10px;
  }


  .slider-thumbnail-item {
    width: calc((100% - 30px) / 4);
    border-radius: 20px;
  }
}


/*----------------------------------------------------
	gallery
----------------------------------------------------*/

.gallery-slider {
  margin-block-start: 40px;
}

.gallery-slider-wrapper {
  /* スライドの動き等速 */
  transition-timing-function: linear;
}

.gallery-slider-item {
  max-width: 400px;
  aspect-ratio: 1.6/1;
  border-radius: 50px;
  overflow: hidden;
}

@media screen and (max-width: 767px) {}


/*----------------------------------------------------
	banner
----------------------------------------------------*/
.banner {
  padding-block: 120px;
}

.banner-wrapper {
  display: flex;
  justify-content: center;
  column-gap: clamp(60px, 8vw, 150px);
}


@media screen and (max-width: 767px) {

  .banner-wrapper {
    flex-direction: column;
    row-gap: 20px;
  }
}