@charset "utf-8";

/*-------------------------------------------------------
	common
-------------------------------------------------------*/
:root {
  --pallet-beige: #FFF7DC;
  --pallet-deep-beige: #EFD5A8;
  --pallet-brown: #643117;
  --pallet-orange: #DE7E00;
  --pallet-red: #DE0000;
  --pallet-pink-beige: #E6CCBF;
  --pallet-gray: #C5BFBD;
  --pallet-white: #ffffff;

  /* font size */
  --font-size-8px: 0.5rem;
  --font-size-9px: 0.5625rem;
  --font-size-10px: 0.625rem;
  --font-size-11px: 0.6875rem;
  --font-size-12px: 0.75rem;
  --font-size-13px: 0.8125rem;
  --font-size-14px: 0.875rem;
  --font-size-15px: 0.9375rem;
  --font-size-16px: 1rem;
  --font-size-17px: 1.0625rem;
  --font-size-18px: 1.125rem;
  --font-size-19px: 1.1875rem;
  --font-size-20px: 1.25rem;
  --font-size-21px: 1.3125rem;
  --font-size-22px: 1.375rem;
  --font-size-23px: 1.4375rem;
  --font-size-24px: 1.5rem;
  --font-size-25px: 1.5625rem;
  --font-size-26px: 1.625rem;
  --font-size-27px: 1.6875rem;
  --font-size-28px: 1.75rem;
  --font-size-29px: 1.8125rem;
  --font-size-30px: 1.875rem;
  --font-size-31px: 1.9375rem;
  --font-size-32px: 2rem;
  --font-size-33px: 2.0625rem;
  --font-size-34px: 2.125rem;

  --font-size-39px: 2.4375rem;

  --font-size-60px: 3.75rem;

  --font-family-en: "Roboto", sans-serif;
  --font-style-en: normal;
  --font-weight-en: 400;
  --font-weight-en-medium: 500;

  --font-family-ja: "Kiwi Maru", serif;
  --font-style-ja: normal;
  --font-weight-ja: 400;
  --font-weight-ja-medium: 500;

  --width-1920px: 1920px;
	--width-1366px: 1366px;
  --width-1166px: 1166px;
  --width-1166px-space: calc(1166px + 10%);
  --width-850px-space: calc(850px + 10%);
  --width-800px-space: calc(800px + 10%);
  --width-750px-space: calc(750px + 10%);
  --width-700px-space: calc(700px + 10%);
  --width-650px-space: calc(650px + 10%);
  --width-600px-space: calc(600px + 10%);

  --leading-trim: calc((1em - 1lh) / 2);
}

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-family: var(--font-family-ja);
  font-style: var(--font-style-ja);
  font-weight: var(--font-weight-ja);
  font-feature-settings: "palt";
	letter-spacing: .03rem;
  color: var(--pallet-brown);
  background-color: var(--pallet-beige);
}

.pc_only {
  display: block;
}

.sp_only {
  display: none;
}

.visibility_hidden {
  visibility: hidden;
}

.font_ja {
  font-family: var(--font-family-ja);
  font-style: var(--font-style-ja);
  font-weight: var(--font-weight-ja);
}

.font_en {
  font-family: var(--font-family-en);
  font-style: var(--font-style-en);
  font-weight: var(--font-weight-en);
}

a {
	color: inherit;
	text-decoration: none;
}

a:link,
a:visited,
a:active {
	color: inherit;
	text-decoration: none;
}

a:hover {
	text-decoration: none;
	transition: 0.2s ease-in-out;
	opacity: 0.6;
}

.uppercase {
  text-transform: uppercase;
}

.word_part {
  display: inline-block;
}

/* ギャラリー */
.wp-block-gallery.has-nested-images {
  display: flex;
  flex-wrap: wrap;
}

.blocks-gallery-caption.wp-element-caption {
  padding-top: 15px;
}

/* 画像 */
.wp-block-image.aligncenter {
	display: block;
  text-align: center;
}

.wp-block-image.alignleft {
	display: block;
  text-align-last: left;
}

.wp-block-image.alignright {
	display: block;
  text-align: right;
}

/* テキスト */
.news_body a {
  color: var(--pallet-brown);
  text-decoration: underline;
}

/* 共通レイアウト */
.l-content-space {
  padding: 50px 5%;
  margin-inline: auto;
}

.l-content-space__left-space {
  padding: 50px 0 50px 5%;
  margin-inline: auto 0;
}

/* 共通sidebar */

.l-content__sidebar {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 30px 5%;
  max-width: 1366px;
  margin-inline: auto;
}

.l-content__sidebar_main {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.l-content__sidebar_side {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.l-content-space.l-content__sidebar_wrapper {
  padding: 88px 5% 140px;
}

.l-content__sidebar {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 30px 5%;
  max-width: calc(980px + 5%);
  margin-inline: auto;
}

/* 共通タイトル */
.c-title {
    text-align: center;
}

.c-title__ja {
  font-size: var(--font-size-30px);
  font-family: var(--font-family-ja);
  font-style: var(--font-style-ja);
  font-weight: var(--font-weight-ja);
  letter-spacing: 0.14rem;
  display: block;
  padding-bottom: 5px;
}

.c-title__en {
  font-size: var(--font-size-14px);
  font-family: var(--font-family-en);
  font-style: var(--font-style-en);
  font-weight: var(--font-weight-en-medium);
  letter-spacing: 0.2rem;
  color: var(--pallet-orange);
  display: block;
}

.c-title-space {
  margin-bottom: 37px;
}

.c-title-space__left-space {
  padding-left: 5%;
  margin-bottom: 37px;
  margin-inline: auto 0;
}

.c-title__txt {
  font-family: var(--font-family-ja);
  font-style: var(--font-style-ja);
  font-weight: var(--font-weight-ja);
}

.c-title__txt_wrapper {
  display: flex;
  align-items: center;
  gap: 10px 44px;
}

/* 共通ボタン */

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

.c-btn_wrapper {
  display: flex;
  justify-content: center;
}

a.c-btn,
.c-btn {
  min-width: 262px;
  max-width: max-content;
  height: auto;
  padding-block: 16px 19px;
  position: relative;
  display: block;
  text-align: center;
  background-color: var(--pallet-orange);
  /* border: 1px solid var(--pallet-orange); */
  color: var(--pallet-white);
  transition: all 0.3s ease;
  /* display: flex; */
  align-items: center;
  font-size: var(--font-size-14px);
  border-radius: 30px;
  letter-spacing: 0.05rem;
  font-family: var(--font-family-ja);
  font-style: var(--font-style-ja);
  font-weight: var(--font-weight-ja);
}

/* .c-btn::after {
  content: "";
  position: absolute;
  right: 3px;
  vertical-align: middle;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--pallet-brown);
  border-right: 1px solid var(--pallet-brown);
  transform: rotate(45deg);
  transition: all 0.3s ease;
} */

.c-btn::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 11px;
  aspect-ratio: cos(30deg);
  clip-path: polygon(0 0,100% 50%,0 100%);
  background: var(--pallet-white);
  top: 50%;
  right: 26px;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.c-btn:hover {
  opacity: 1;
  background-color: var(--pallet-white);
  background-image: url(../images/background_image_yellow.jpg);
  color: var(--pallet-brown);
  cursor: pointer;
}

.c-btn:hover::after {
  background-color: var(--pallet-brown);
}

/* 共通地 */
.c-background__pink {
  background-image: url(../images/background_image_pink.jpg);
}

.c-background__light-orange {
  background-image: url(../images/background_image_light_orange.jpg);
}

.c-background__pink-beige {
  background-image: url(../images/background_image_pink_beige.jpg);
}

.c-background__yellow-green {
  background-image: url(../images/background_image_yellow_green.jpg);
}

.c-background__light-blue {
  background-image: url(../images/background_image_light_blue.jpg);
}

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

  .pc_only {
    display: none !important;
  }

  .sp_only {
    display: block !important;
  }

  .c-title__ja {
    font-size: var(--font-size-23px);
    padding-bottom: 1px;
  }

  .c-title__en {
    font-size: var(--font-size-11px);
  }

  .c-title-space {
    margin-bottom: 28px;
  }

  .l-product {

    .c-title__ja {
      font-size: var(--font-size-20px);
      padding-bottom: 1px;
    }

    .c-title__en {
      font-size: var(--font-size-9px);
    }

  }

}

/*-------------------------------------------------------
	header
-------------------------------------------------------*/

/* menu */
/* ヘッダーブロック */

.header {
	width: 100%;
	height: 122px;
	position: sticky;
	top: 0;
	right: 0;
	left: 0;
	z-index: 99;
}

.header_logo_img {
  width: clamp(13.438rem, -17.813rem + 41.67vw, 16.563rem); /* 215-265px 1200-1320px */
  height: auto;
  transition: all 0.2s ease;
}

.nav_menu_area {
  display: flex;
  justify-content: flex-end;
  gap: 5px 25px;
  max-width: max-content;
  width: 100%;
  flex-wrap: wrap;
  align-items: flex-end;
}

.nav_menu_wrapper {
  display: flex;
  gap: 6px 21px;
  font-size: var(--font-size-16px);
  justify-content: flex-end;
  padding-right: 5px;
  padding-bottom: 5px;
}

.nav_menu_icon_wrapper {
  display: grid;
  justify-content: center;
  align-items: center;
  justify-items: center;
  padding-top: 1px;
}

.nav_menu_ja {
  font-family: var(--font-family-ja);
  font-style: var(--font-style-ja);
  font-weight: var(--font-weight-ja-medium);
  font-size: var(--font-size-14px);
  letter-spacing: 0;
}

.nav_menu_link_icon {
  display: grid;
  grid-template-columns: 30px auto;
  column-gap: 4px;
  align-items: center;
}

.nav_menu_order {
  padding-inline: 7px 16px;
}

/* お問い合わせ */
.contact {
  background-image: url(../images/background_contact.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  padding: 25px 20px 12px;
  text-align: center;
}

.contact__title {
  font-size: var(--font-size-11px);
  font-weight: var(--font-weight-ja);
  letter-spacing: 0;
}

.contact__number {
  font-family: var(--font-family-en);
  font-style: var(--font-style-en);
  font-weight: var(--font-weight-en-medium);
  font-size: var(--font-size-15px);
  letter-spacing: 0.05rem;
}

/* ハンバーガーメニュー */
.hamburger {
	display: none;
}

.hamburger:hover {
	cursor: pointer;
}

.header__nav-area {
	/* display: none; */
	visibility: hidden;
}

/* .overlay {
  background: black;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  min-height: -webkit-fill-available;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 0;
  visibility: hidden;
  transition: all 0.3s ease;
} */

/* .overlay.-active {
  opacity: 0.5;
  z-index: 98;
  visibility: visible;
  transition: all 0.3s ease;
} */

.nav_btn__sp_wrapper {
  display: none;
}

.header_wrapper {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: space-between;
  padding-inline: 2%;
  gap: 20px;
  padding-block: 6px;
  background-color: var(--pallet-beige);
}

.nav_menu_link {
  display: grid;
  justify-items: center;
}

.header__nav-area {

  a.nav_menu_link {
    display: grid;
    grid-template-columns: 74px 70px;
    align-items: center;
    justify-content: center;
    column-gap: 5px;
    justify-items: start;
  }

  .nav_menu_order {
    padding-inline: 0;
  }

}

.nav_menu_wrapper.nav_menu_wrapper_icon {
  display: grid;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  padding-right: 0;
  padding-bottom: 2px;
}

/* scrollしたときのheader */

.nav_menu_img {
  object-fit: contain;
  /* aspect-ratio: 74 / 54; */
}

.js-scroll.header {
  height: 75px;
}

  .js-scroll .nav_menu_img,
  .js-scroll .nav_menu_ja_instagram,
  .js-scroll .nav_menu_icon_wrapper_recruit {
    animation: fadeOut 0.3s linear 0s forwards;
  }


.js-scroll {

  .header_wrapper {
    /* padding-block: 9px; */
    padding-block: 12px;
    border-bottom: 1px solid var(--pallet-orange);
  }

  .header_logo_img {
    /* width: 144px; */
    width: 210px;
  }

  .nav_menu_img,
  .nav_menu_ja_instagram,
  .nav_menu_icon_wrapper_recruit {
    display: none;
  }

  .nav_menu_wrapper,
  .nav_menu_wrapper.nav_menu_wrapper_icon {
    display: contents;
  }

  .nav_menu_link_icon {
    display: block;
  }

  .nav_menu_area {
    display: flex;
    column-gap: 26px;
    align-items: center;
    padding-right: 180px;
  }

  .nav_menu_order {
    padding-inline: 0;
  }

  .contact {
    position: absolute;
    top: 6px;
    right: 2%;
  }

  .nav_menu_instagram {
    order: 100;
    padding-left: 4px;
  }

  .nav_menu_recruit {
    order: 90;
  }

}

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

  .nav_menu_img {
    width: 68px;
    opacity: 1;
  }

  .nav_menu_wrapper {
    gap: 6px 16px;
    padding-right: 0;
    padding-bottom: 0;
  }

}

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

  .header_wrapper {
    display: block;
    border-bottom: 1px solid var(--pallet-orange);
    height: 60px;
    display: grid;
    justify-items: center;
    align-items: center;
    justify-content: center;
  }

  .header .nav_menu_wrapper {
    flex-direction: column;
  }

	.header {
		height: 60px;
	}

	/* .header_wrapper {
		align-items: center;
	} */

	/* nav */
	.header_wrapper .nav_menu_area {
		display: none;
	}

  .header__nav-area.-active {
    display: block;
  }

  .header_wrapper .nav_menu_wrapper,
  .header_wrapper .nav_btn_wrapper {
		display: none;
  }

  .contact {
    display: none;
  }

	/* ハンバーガーメニュー active */

	.hamburger {
		display: block;
		height: 60px;
		/* margin-left: auto; */
		position: relative;
		z-index: 100;
		width: 60px;
		border: none;
		background-color: transparent;
    position: fixed;
    top: 0;
    right: 0;
	}

	.hamburger_logo_img {
		width: 154px;
		height: auto;
		margin: 0 auto;
		display: block;
	}

	.hamburger.-active .hamburger__line {
		background-color: transparent;
	}

	.hamburger.-active .hamburger__line::before {
		top: 0;
		transform: rotate(15deg);
	}

	.hamburger.-active .hamburger__line::after {
		top: 0;
		transform: rotate(-15deg);
	}

  .hamburger .hamburger__text::before {
    content: 'Menu';
    font-size: var(--font-size-11px);
    font-family: var(--font-family-en);
    font-style: var(--font-style-en);
    font-weight: var(--font-weight-en-medium);
    color: var(--pallet-orange);
	}

	.hamburger.-active .hamburger__text::before {
    content: 'Close';
	}

  .hamburger__line {
    display: block;
    height: 1px;
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    /* background-color: var(--pallet-brown); */
    background-color: transparent;
    transition: 0.4s;
  }

	.hamburger__line:before,
	.hamburger__line:after {
		content: "";
		display: block;
		height: 100%;
		position: absolute;
		width: 100%;
		background-color: var(--pallet-orange);
		transition: inherit;
	}

	.hamburger__line:before {
		/* top: -6px; */
    top: -4px;
	}

	.hamburger__line:after {
		/* top: 6px; */
    top: 4px;
	}

  .hamburger__text {
    position: absolute;
    bottom: 13px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    letter-spacing: 0.13rem;
  }

	.header__nav-area {
		position: fixed;
		top: 0;
		right: -100%;
		z-index: 9;
		height: 100vh;
		width: 100%;
		/* display: none; */
		padding-top: 60px;
		background-color: var(--pallet-white);
		transition: 0.4s;
		visibility: hidden;
    opacity: 0;
    background-color: var(--pallet-beige);

    .contact {
      display: block;
    }
	}

	.header__nav-area.-active {
		right: 0;
    opacity: 1;
		/* display: block; */
		visibility: visible;
    overflow-y: auto;
	}

	.global-navigation {
		padding-top: 13px;
		padding-right: 25px;
		padding-bottom: 20px;
		padding-left: 25px;
	}

	.global-navigation__link.-active::after {
		transform: translateY(-50%) rotate(-90deg);
	}

  .nav_btn__sp_wrapper {
    display: flex;
    gap: 10px;
    position: fixed;
    top: 18px;
    left: 15px;
  }

  .nav_menu_area {
    display: flex;
    justify-content: center;
    gap: 5px 25px;
    max-width: none;
    width: 100%;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: column;
    padding-right: 0;
  }

  .nav_menu_img,
  .nav_menu_ja_instagram,
  .nav_menu_icon_wrapper_recruit {
    display: block;
    opacity: 1 !important;
  }

  .nav_menu_area {
    padding-right: 0;
  }

  .header_logo_img {
    width: 144px;
  }

  .header__nav-area.-active .nav_menu_wrapper.nav_menu_wrapper_icon {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 20px;
    align-items: center;
  }

  .header__nav-area.-active .nav_menu_wrapper {
    gap: 0;
    margin-bottom: 10px;
  }

  .header__nav-area.-active  a.nav_menu_link {
    padding: 10px 50px 9px;
  }

  .header__nav-area.-active .nav_menu:not(:last-of-type) {
    border-bottom: 1px solid var(--pallet-deep-beige);
  }

  .header__nav-area.-active .nav_menu.nav_menu_instagram,
  .header__nav-area.-active .nav_menu.nav_menu_recruit {
    border-bottom: none;
  }

}

/*-------------------------------------------------------
	footer
-------------------------------------------------------*/

.footer {
  position: relative;
  display: grid;
  justify-items: center;
  align-items: end;
  overflow: hidden;
}
.copyright {
  text-align: center;
  font-size: var(--font-size-14px);
  color: var(--pallet-white);
  position: absolute;
  bottom: 12px;
  font-family: var(--font-family-en);
  font-style: var(--font-style-en);
  font-weight: var(--font-style-en-weight);
  letter-spacing: 0.17rem;
}

.footer__img {
  width: 100%;
  min-width: 525px;
  height: auto;
}

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

  .copyright {
    font-size: var(--font-size-10px);
  }

}


/*-------------------------------------------------------
	main images
-------------------------------------------------------*/

/* .parallax {
  position: relative;
  margin-top: 100vh;
  margin-top: 100svh;
  background-color: var(--pallet-white);
} */

.main-image {
  overflow-x: hidden;
  padding-top: 10px;
}

/* トップ画像 */
.main-image__content {
  position: relative;
  width: 100%;
  /* height: calc(100svh - 122px); */
  height: calc(100svh - 100px);
}

/* イラスト */

.main-image__illustration {
  position: absolute;
  width: 100%;
}

.main-image__illustration-01 {
  top: 0;
  left: 0;
  width: clamp(9.75rem, 5.89rem + 6.86vw, 14.125rem); /* 156-226px / 900-1920px */
}

.main-image__illustration-02 {
  /* top: 63px; */
  top: clamp(3.938rem, 1.842rem + 3.73vw, 6.313rem); /* 63-101px / 900-1920px */
  left: clamp(9.625rem, 6.537rem + 5.49vw, 13.125rem); /* 154-210px / 900-1920px */
  width: clamp(6.5rem, 3.963rem + 4.51vw, 9.375rem);
  /* 104-150px / 900-1920px */
}

.main-image__illustration-03 {
  bottom: 0;
  left: -36px;
  width: clamp(24.063rem, 16.673rem + 13.14vw, 32.438rem); /* 385-519px / 900-1920px */
}

.main-image__illustration-04 {
  top: 25px;
  /* right: -22px; */
  right: clamp(-3rem, -0.981rem - 1.68vw, -1.375rem); /* -22-48px / 900-1920px */
  width: clamp(15.75rem, 9.518rem + 11.08vw, 22.813rem); /* 252-365px / 900-1920px */
}

.main-image__illustration-05 {
  bottom: 0;
  right: 0;
  width: clamp(20.938rem, 12.665rem + 14.71vw, 30.313rem); /* 335-485px / 900-1920px */
}

.main-image .n2-ss-slide,
.main-image .n2-ss-slider-2.n2-ow,
.main-image .n2-ss-layers-container,
.main-image .n2-ss-slide-background-image {
  height: calc(100svh - 152px) !important;
}

/* #index_page .n2-ss-slide,
#index_page .n2-ss-slider-2.n2-ow,
#index_page .n2-ss-layers-container,
#index_page .n2-ss-slide-background-image {
  clip-path: circle(50% at center);
  clip-path: url(#smartslider3-custom-clip);
} */

.main-image .n2-ss-slide-backgrounds picture img {
  /* height: 90%; */
  object-fit: cover;
  clip-path: url(#smartslider3-custom-clip-sp);
  -webkit-clip-path: url(#smartslider3-custom-clip-sp);
  display: block;
}

.main-image .n2-ss-slide-backgrounds {
  margin: 0 5% 0;
}

.main-image .n2-ss-widget.n2-ss-control-bullet.n2-ow-all.n2-ss-control-bullet-horizontal {
  bottom: -40px;
}

/* .main-image {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  width: 100svw;
  overflow: hidden;
} */

/* .main-image,
.main-image__content {
  overflow: hidden !important;
} */

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

  /* .main-image {
    width: 100%;
    height: 100vh;
    height: 100svh;
    position: relative;
  } */

  .main-image {
    overflow-x: hidden;
    padding-top: 10px;
  }

  .main-image__content {
    height: 525px !important;
  }

  .main-image .n2-ss-slide,
  .main-image .n2-ss-slider-2.n2-ow,
  .main-image .n2-ss-layers-container,
  .main-image .n2-ss-slide-background-image {
    height: 450px !important;
  }

  /* 画像 */
  .main-image .pc_top_slide_image img,
  .main-image .sp_top_slide_image img {
    height: calc(100svh - 60px) !important;
    object-fit: cover;
  }

  .main-image .n2-ss-slide-backgrounds picture img {
    clip-path: url(#smartslider3-custom-clip-sp);
    -webkit-clip-path: url(#smartslider3-custom-clip-sp);
  }

  .main-image__illustration-01 {
    /* width: 96px; */
    width: clamp(6rem, 3.277rem + 11.62vw, 9.813rem);
    top: -13px;
  }

  .main-image__illustration-02 {
    /* width: 51px; */
    width: clamp(3.188rem, 0.777rem + 10.29vw, 6.563rem);
    top: 102px;
    left: 11px;
  }

  .main-image__illustration-03 {
    /* width: 177px */
    width: clamp(11.063rem, 1.643rem + 40.19vw, 24.25rem);
  }

  .main-image__illustration-04 {
    /* width: 110px; */
    width: clamp(6.875rem, 0.446rem + 27.43vw, 15.875rem);
    top: -7px;
  }

  .main-image__illustration-05 {
    /* width: 145px; */
    width: clamp(9.063rem, 0.446rem + 36.76vw, 21.125rem);
  }

}


/*-------------------------------------------------------
	CONCEPT
-------------------------------------------------------*/

.concept {
  overflow: hidden;
  padding-top: 52px;
  container-type: inline-size;
  container-name: concept;
}

.concept__content_wrapper {
  padding-top: 20px;
  position: relative;
  padding-bottom: 15px;
  max-width: max-content;
  margin-inline: auto;
}

.concept__txt {
  text-align: center;
  line-height: 2.3;
  max-width: 480px;
  margin-inline: auto;
  font-size: var(--font-size-18px);
  letter-spacing: 0;
  padding-bottom: 45px;
}

.concept__img {
  clip-path: url(#concept-clip);
  -webkit-clip-path: url(#concept-clip);
  position: absolute;
}

.concept__img-01 {
  top: 91px;
  left: -268px;
}

.concept__img-02 {
  top: 0;
  right: -195px;
}

.concept__img-03 {
  bottom: 17px;
  right: -302px;
}

.concept__img-bottom {
    width: 100%;
}

@container concept (max-width: 1166px) {

  .concept__img-01 {
    left: -208px;
  }

  .concept__img-02 {
    right: -120px;
  }

  .concept__img-03 {
    right: -222px;
  }

}

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

  .concept {
    padding-top: 0;
  }

  .concept__txt {
    font-size: var(--font-size-15px);
    padding-bottom: 36px;
  }

  .concept__content_wrapper {
    padding-bottom: 345px;
    padding-inline: 5%;
  }

  .concept__img-01 {
    top: auto;
    left: 0%;
    bottom: 156px;
    width: clamp(9.375rem, 7.143rem + 9.52vw, 12.5rem);
  }

  .concept__img-02 {
      right: 8%;
      top: auto;
      bottom: 214px;
      width: clamp(8.125rem, 6.339rem + 7.62vw, 10.625rem);
  }

  .concept__img-03 {
    right: 21%;
    top: auto;
    bottom: 27px;
    width: clamp(9.375rem, 7.143rem + 9.52vw, 12.5rem);
  }

}

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

  .concept__content_wrapper {
    padding-bottom: 333px;
  }

  .concept__img-01 {
    left: 10%;
  }

  .concept__img-02 {
    bottom: 234px;
  }


}

/*-------------------------------------------------------
	news お知らせ 共通
-------------------------------------------------------*/

.news-content__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 50px;
  padding-inline: 5%;
  margin-bottom: 40px;
  max-width: 1366px;
  margin-inline: auto;
}

.news__article {
  display: block;
  padding: 40px 30px 25px;
  background-image: url(../images/background_image_beige.jpg);
  height: 100%;
  /* clip-path: url(#background-news);
  -webkit-clip-path: url(#background-news); */
}

.news__article-wrapper:first-of-type .news__article {
  clip-path: url(#background-news-1);
  -webkit-clip-path: url(#background-news-1);
}

.news__article-wrapper:nth-of-type(2) .news__article {
  clip-path: url(#background-news-2);
  -webkit-clip-path: url(#background-news-2);
}

.news__article-wrapper:nth-of-type(3) .news__article {
  clip-path: url(#background-news-3);
  -webkit-clip-path: url(#background-news-3);
}

.news__article-wrapper:nth-of-type(4) .news__article {
  clip-path: url(#background-news-4);
  -webkit-clip-path: url(#background-news-4);
}

.news__article-wrapper:nth-of-type(5) .news__article {
  clip-path: url(#background-news-5);
  -webkit-clip-path: url(#background-news-5);
}

.news__article-wrapper:nth-of-type(6) .news__article {
  clip-path: url(#background-news-6);
  -webkit-clip-path: url(#background-news-6);
}

.news__article-wrapper:nth-of-type(7) .news__article {
  clip-path: url(#background-news-7);
  -webkit-clip-path: url(#background-news-7);
}

.news__article-wrapper:nth-of-type(8) .news__article {
  clip-path: url(#background-news-8);
  -webkit-clip-path: url(#background-news-8);
}

.news__article-wrapper:nth-of-type(9) .news__article {
  clip-path: url(#background-news-9);
  -webkit-clip-path: url(#background-news-9);
}

.news__article-wrapper {
  position: relative;
}

.news__article-wrapper::before {
  content: '';
  display: inline-block;
  width: 27px;
  height: 33px;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  position: absolute;
  z-index: 2;
  top: -15px;
  right: 50%;
  transform: translateX(-50%);
  left: 50%;
}

.news__article-wrapper:nth-child(3n-2)::before {
  background-image: url(../images/pin_orange.png);
}

.news__article-wrapper:nth-child(3n-1)::before {
  background-image: url(../images/pin_pink.png);
}

.news__article-wrapper:nth-child(3n)::before {
  background-image: url(../images/pin_yellow.png);
}

/* 画像なし */

.news_list_thumbnail_wrapper.no_thumnail {
  border: 1px solid;
}

.news_list_thumbnail.no-thumbnail {
  position: absolute;
  width: 50%;
  height: 50%;
  top: 50%;
  object-fit: contain;
  object-position: 50% 50%;
  right: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.news__date {
  color: var(--pallet-orange);
  font-size: var(--font-size-14px);
  font-family: var(--font-family-en);
  font-style: var(--font-style-en);
  font-weight: var(--font-weight-en);
  letter-spacing: 0.1rem;
  text-align: left;
  padding-top: 4px;
}

.news__information-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 9px;
}

.news__title {
  font-size: var(--font-size-16px);
  padding-bottom: 10px;
  max-width: max-content;
  margin-inline: auto;
  font-weight: var(--font-weight-ja-medium);
}

.news__img-wrapper {
  margin-bottom: 13px;
}

.news-top__img-wrapper .news__img {
  aspect-ratio: 220 / 150;
  object-fit: cover;
  width: 100%;
}

.news__img {
  /* aspect-ratio: 220 / 150;
  object-fit: cover; */
  width: 100%;
}

.news__img-wrapper img {
  width: 100%;
}

.news__img-wrapper.no_thumbnail {
  aspect-ratio: 220 / 150;
  background-color: var(--pallet-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 19%;
}

.news__article {
  transition: all 0.3s ease;
}

.news__article:hover {
  opacity: 0.8;
  cursor: pointer;
}

.news__category-wrapper {
  display: inline-grid;
  row-gap: 3px;
}

a.news__category {
  border: 1px solid;
  padding: 1px 8px 3px;
  border-radius: 999px;
  color: var(--pallet-orange);
  font-size: var(--font-size-11px);
  /* letter-spacing: 0.1rem; */
  text-align: center;
}

/* お知らせ記事なし */
.no-article {
  text-align: center;
  padding: 10vh 5%;
}

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

  .news__title {
    font-size: var(--font-size-14px);
    padding-bottom: 10px;
  }

  .news__date {
    font-size: var(--font-size-13px);
  }
  
  .news__article-wrapper {
    max-width: 400px;
  }

}

/*-------------------------------------------------------
	お知らせ news - トップページ
-------------------------------------------------------*/

.news-top {
  padding-top: 100px;
  padding-bottom: 120px;
  overflow: hidden;
}

.news-top-content__wrapper {
  position: relative;
}

.news-top__illustration {
  position: absolute;
  z-index: -1;
}

.news-top__illustration-01 {
  top: -157px;
  left: 97px;
}

.news-top__illustration-02 {
  top: 50%;
  left: -215px;
  transform: translateY(-50%);
}

.news-top__illustration-03 {
  bottom: -163px;
  left: 140px;
}

.news-top__illustration-04 {
  top: -148px;
  right: 112px;
}

.news-top__illustration-05 {
  top: 115px;
  right: -88px;
}

.news-top__illustration-06 {
  bottom: -185px;
  right: -43px;
}

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

  .news-top {
    padding-top: 60px;
    padding-bottom: 218px;
  }

  .news-top-content__wrapper.news-content__wrapper {
    grid-template-columns: repeat(1, 1fr);
    justify-items: center;
  }

  .news-content__wrapper {
    margin-bottom: 30px;
  }

  .news-top__illustration-01 {
    width: clamp(3.75rem, 0.67rem + 13.14vw, 8.063rem);
    top: -88px;
    left: 51px;
  }

  .news-top__illustration-02 {
    width: clamp(8rem, 1.08rem + 29.52vw, 17.688rem);
    left: -62px;
  }

  .news-top__illustration-03 {
    top: 385px;
    left: 69px;
    width: clamp(3.313rem, -0.125rem + 14.67vw, 8.125rem);
  }

  .news-top__illustration-04 {
    width: clamp(3.375rem, 0.473rem + 12.38vw, 7.438rem);
    top: -79px;
    right: 65px;
  }

  .news-top__illustration-05 {
    width: clamp(4.375rem, 1.25rem + 13.33vw, 8.75rem);
    top: 115px;
    right: 0;
  }

  .news-top__illustration-06 {
    width: clamp(15.75rem, 8.563rem + 30.67vw, 25.813rem);
    bottom: -272px;
    right: 72px;
  }


}

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

  .news-top {
    padding-bottom: 164px;
  }

  .news-top__illustration-03 {
    left: -69px;
  }

  .news-top__illustration-06 {
    bottom: -220px;
    right: 36px;
  }


}

/*-------------------------------------------------------
	pagination
-------------------------------------------------------*/

/* ページ送りエリア */
.pagination {
  margin-top: 20px;
  margin-bottom: 90px;
  text-align: center;
  line-height: 1.5rem;
}

.page_move_block, .page-move-area {
  display: grid;
  justify-content: center;
  align-items: center;
  gap: 50px;
  grid-template-columns: auto auto auto;
  justify-items: center;
}

.page-move-area img {
  width: 25px;
  height: 25px;
}

/* .pagination .page_number {
  margin: 0.3rem;
  padding: 0.5rem;
  font-size: var(--12px);
  font-family: var(--font-family-body);
  font-style: var(--font-style-body);
  font-weight: bold;
  text-decoration: none;
  position: relative;
} */

/* .pagination .page_number:after {
  content: "";
  border: 1px solid var(--pallet-light-brown);
  border-radius: 100%;
  width: 42px;
  height: 42px;
  position: absolute;
  top: -2px;
  left: 6px;
  z-index: 1;
  background-color: transparent;
} */

/* ページ送りアイコン */
.pagination .prev_icon,
.pagination .next_icon {
  font-family: var(--font-family-ja);
  font-style: var(--font-style-ja);
  font-weight: var(--font-weight-ja);
  font-size: var(--14px);
  text-decoration: none;
  position: relative;
}

/* .pagination .prev_icon {
  margin-right: 3%;
} */

.pagination .prev_icon::after {
  content: "< Prev";
  content: '';
  display: inline-block;
  /* width: 50px;
  height: 50px; */
  /* background-image: url(../images/svg/arrow_left.svg);
  background-size: contain; */
	background-repeat: no-repeat;
  vertical-align: middle;
}

/* .pagination .prev_icon::before {
  content: url(../images/svg/arrow-l-black.svg);
  display: inline-block;
  vertical-align: middle;
  transform: scale(1);
  position: absolute;
  top: -2px;
  left: -35px;
} */

/* .pagination .next_icon {
  margin-left: 4%;
} */

.pagination .next_icon::before {
  content: "Next >";
  content: '';
  display: inline-block;
  /* width: 50px;
  height: 50px; */
  /* background-image: url(../images/svg/arrow_right.svg);
  background-size: contain;
	background-repeat: no-repeat; */
  vertical-align: middle;
}

/* .pagination .next_icon::after {
  content: url(../images/svg/arrow-r-black.svg);
    display: inline-block;
    vertical-align: middle;
    transform: scale(1);
    position: absolute;
    top: -2px;
    left: 40px;
} */

/* ページ送りアイコン非表示 */
.visibility-hidden {
  visibility: hidden;
}

/* 参照ページに印をつける */
.pagination .current_page {
  position: relative;
}

/* .pagination .current_page .page_number {
  position: relative;
  z-index: 2;
  color: var(--pallet-white);
  font-size: var(--12px);
  font-family: var(--font-family-body);
  font-style: var(--font-style-body);
  font-weight: bold;
}

.pagination .current_page::after {
  content: "";
  border-bottom: 1px solid var(--pallet-light-brown);
  border-radius: 100%;
  width: 42px;
  height: 42px;
  position: absolute;
  top: -2px;
  left: 6px;
  z-index: 1;
  background-color: var(--pallet-light-brown);
} */

.pagination .page_number {
  font-size: var(--12px);
  text-decoration: none;
  border: 1px solid var(--pallet-brown);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}

.pagination .current_page .page_number {
  background-color: var(--pallet-brown);
  color: var(--pallet-white);
}

/* .pagination .page_number:hover {
  border-radius: 0;
  opacity: 1;
} */

.pagination .current_page .page_number:hover {
  border-radius: 50%;
}

.page_dotted {
  display: inline-block;
  vertical-align: -4px;
}

a.page_number.other_page,
.current_page {
  display: none;
}

.move_icon_img {
  width: 13px;
}

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

  .page_move_block, .page-move-area {
    gap: 20px;
  }

}

/*-------------------------------------------------------
	NEWS 一覧・詳細
-------------------------------------------------------*/

.news-archive {
  padding-top: 100px;
  overflow: hidden;
}

.news-archive__content {
  position: relative;
  max-width: max-content;
  margin-inline: auto;
}

.news-archive__content:has(.no-article) {
  max-width: none;
}

.news-post {
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
  max-width: 930px;
  margin-inline: auto;

  .news__title {
    text-wrap: balance;
  }
}

.news_list_wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 6%;
}

.news-detail__title-wrapper {
  max-width: max-content;
  margin-inline: auto;
  padding-bottom: 35px;
}

.news-detail__title {
  font-family: var(--font-family-ja);
  font-style: var(--font-style-ja);
  font-weight: var(--font-weight-ja);
  font-size: var(--font-size-24px);
  padding-bottom: 16px;
  text-align: center;
  text-wrap: balance;
  line-height: 1.7;
}

.news-detail__info_date {
  color: var(--pallet-orange);
  font-size: var(--font-size-15px);
  font-family: var(--font-family-en);
  font-style: var(--font-style-en);
  font-weight: var(--font-weight-en);
  letter-spacing: 0.1rem;
}

/* .news-detail__category_wrapper {
  color: var(--pallet-orange);
  font-size: var(--font-size-14px);
  border-left: 1px solid var(--pallet-beige);
} */

.news-detail__category_wrapper {
  color: var(--pallet-orange);
  font-size: var(--font-size-14px);
  border-left: 1px solid var(--pallet-beige);
  display: flex;
  column-gap: 5px;
}

a.news-detail__category {
  border: 1px solid;
  padding: 2px 15px 3px;
  border-radius: 999px;
}

.news-detail__info {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.2;
  justify-content: flex-end;
  padding-bottom: 30px;
}

.news-detail__img_wrapper {
  margin-bottom: 45px;
  text-align: center;
}

.news-detail__img {
  width: 100%;
  max-width: max-content;
}

.news-detail__body {
  line-height: 2;
}

.news-detail {
  padding-bottom: 75px;
}

.page-move-area {
  padding-bottom: 35px;
}

.c-btn__news-post_wrapper {
  text-align: right;
  margin-left: auto;
  max-width: max-content;
}

.news-detail__body p a {
  text-decoration: underline;
}

.news-archive__illustration {
  position: absolute;
  z-index: -1;
}

.news-archive__illustration-01 {
  top: -205px;
  left: 0;
}

.news-archive__illustration-02 {
  top: -176px;
  left: 144px;
  width: 200px;
}

.news-archive__illustration-03 {
  bottom: -97px;
  left: 0;
}

.news-archive__illustration-04 {
  top: -166px;
  right: -55px;
}

.news-archive__illustration-05 {
  bottom: -17px;
  right: -38px;
}

.news-archive__illustration-06 {
  bottom: -117px;
  right: 92px;
}

a.move_icon.next_icon {

}

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

  .news-archive .news-content__wrapper {
    grid-template-columns: 1fr;
  }

  .news-post {
    padding: 30px 5% 0;
  }

  .news-detail__title {
    font-size: var(--font-size-18px);
  }

  .news-detail__info {
    padding-bottom: 18px;
  }

  .news-detail__body {
    font-size: var(--font-size-14px);
  }

  .news-detail {
    padding-top: 10px;
    padding-bottom: 30px;
  }

  .news_list_wrapper {
    grid-template-columns: 1fr;
  }
  
  .news-archive__illustration-01 {
    top: -162px;
    left: -10vw;
    width: clamp(3.75rem, 0.67rem + 13.14vw, 8.063rem);
  }

  .news-archive__illustration-02 {
    top: -80px;
    left: -30vw;
    width: clamp(8rem, 1.08rem + 29.52vw, 17.688rem);
  }

  .news-archive__illustration-03 {
    bottom: -97px;
    left: -15vw;
    width: clamp(3.313rem, -0.125rem + 14.67vw, 8.125rem);
  }

  .news-archive__illustration-04 {
    top: -153px;
    right: -30vw;
    width: clamp(15.75rem, 8.563rem + 30.67vw, 25.813rem);
  }

  .news-archive__illustration-05 {
    bottom: 17px;
    right: -20vw;
    width: clamp(4.375rem, 1.25rem + 13.33vw, 8.75rem);
  }

  .news-archive__illustration-06 {
    bottom: -74px;
    right: -5vw;
    width: clamp(3.375rem, 0.473rem + 12.38vw, 7.438rem);
  }


}


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

  .news-archive__illustration-01 {
    top: -162px;
    left: 10px;
  }

  .news-archive__illustration-02 {  
    top: -110px;
    left: -32px;
  }

  .news-archive__illustration-03 {
    bottom: -97px;
    left: 0;
  }

  .news-archive__illustration-04 {
    top: -153px;
    right: -12vw;
  }

  .news-archive__illustration-05 {
    bottom: 75px;
    right: 0;
  }

  .news-archive__illustration-06 {
    bottom: -74px;
    right: 32px;
  }

}

/*-------------------------------------------------------
	カテゴリー
-------------------------------------------------------*/

/* .category {
  padding: 80px 5%;
} */

.category {
  padding: 40px 5%;
  /* border-block: 1px solid var(--pallet-orange); */
  max-width: max-content;
  margin-inline: auto;
  margin-top: 40px;
}

.tag-title {
  margin-bottom: 25px;
  text-align: center;
}

.tag-title__ja {
  font-size: var(--font-size-20px);
  font-family: var(--font-family-ja);
  font-style: var(--font-style-ja);
  font-weight: var(--font-weight-ja);
  letter-spacing: 0.14rem;
  display: block;
  padding-bottom: 5px;
}

.tag-title__en {
  font-size: var(--font-size-12px);
  font-family: var(--font-family-en);
  font-style: var(--font-style-en);
  font-weight: var(--font-weight-en-medium);
  letter-spacing: 0.2rem;
  color: var(--pallet-orange);
  display: block;
}

.tags {
  display: flex;
  gap: 5px 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.selected_tag {
  text-decoration: underline;
}

.tag_link,
.selected_tag {
  padding-bottom: 5px;
  display: block;
}

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

  .tag-title__ja {
    font-size: var(--font-size-20px);
    padding-bottom: 1px;
  }

  .tag-title__en {
      font-size: var(--font-size-9px);
  }

  .tags {
    font-size: var(--font-size-14px);
  }

  .category {
    padding: 36px 5% 10px;
    margin-top: 6px;
  }


}

/*-------------------------------------------------------
	商品紹介 Items
-------------------------------------------------------*/

.items {
  padding-block: 100px 40px;
  overflow: hidden;
}

  .view-more-button {
    margin-top: 50px;
    text-align: center;
    margin-inline: auto;
  }

.l-product {
  margin-inline: 30px;
  margin-bottom: 30px;
  padding-block: 85px 60px;
  padding-inline: 10vw;
}

/* 背景画像の色 */
.l-product:nth-of-type(7n+1) {
  background-image: url(../images/background_image_light_orange.jpg)
}

.l-product:nth-of-type(7n+2) {
  background-image: url(../images/background_image_pink_beige.jpg)
}

.l-product:nth-of-type(7n+3) {
  background-image: url(../images/background_image_pink.jpg)
}

.l-product:nth-of-type(7n+4) {
  background-image: url(../images/background_image_light_orange.jpg)
}

.l-product:nth-of-type(7n+5) {
  background-image: url(../images/background_image_yellow_green.jpg)
}

.l-product:nth-of-type(7n+6) {
  background-image: url(../images/background_image_light_orange.jpg)
}

.l-product:nth-of-type(7n) {
  background-image: url(../images/background_image_light_blue.jpg)
}

.product-name {
  text-align: center;
  font-size: var(--font-size-15px);
}

/* カテゴリー */

.product_category_list__wrapper {
  position: relative;
  max-width: max-content;
  margin-inline: auto;
}

.product_category_list {
  display: flex;
  max-width: 836px;
  justify-content: center;
  flex-wrap: wrap;
  gap: 21px 50px;
  margin-inline: 30px;
  padding-top: 150px;
  padding-inline: 80px;
  padding-bottom: 50px;
  background-image: url(../images/svg/items_menu_top.svg), url(../images/svg/items_menu_bottom.svg), url(../images/svg/items_menu_middle.svg) ;
  background-repeat: no-repeat, no-repeat, repeat-y;
  background-position: top center, bottom center, center;
  background-size: 100% auto, 100% auto, 100% auto;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

a.product_category_list_link {
    width: 129px;
    height: auto;
    display: inline-block;
}

.product_category_list__name {
    text-align: center;
}

/* タイトル */
.product-category-title {
  position: relative;
  display: block;
  max-width: max-content;
  margin-inline: auto; 
  margin-bottom: 45px;

  .c-title {
    text-align: center;
    max-width: max-content;
    margin-inline: auto;
  }

}

.product-category-title__img {
  position: absolute;
  width: auto;
  height: 94px;
  object-fit: contain;
  max-width: none;
}

.product-category-title__img-left {
  top: 50%;
  left: -22px;
  transform: translate(-100%, -50%);
}

.product-category-title__img-right {
  top: 50%;
  right: -22px;
  transform: translate(100%, -50%);
}

/* イラスト */

.items__illustration {
  position: absolute;
}

.items__illustration-01 {
  top: -127px;
  left: -73px;
}

.items__illustration-02 {
  top: 26%;
  left: -288px;
  transform: translateY(-26%);
}

.items__illustration-03 {
  bottom: -29px;
  left: -125px;
}

.items__illustration-04 {
  top: -134px;
  right: -83px;
}

.items__illustration-05 {
  top: 20%;
  right: -268px;
  transform: translateY(-20%);
}

.items__illustration-06 {
  bottom: -28px;
  right: -147px;
}

/* view more */
.page-load-status-gift,
.page-load-status-chocolate,
.page-load-status-decoration-cake,
.page-load-status-maple,
.page-load-status-season,
.page-load-status-baked-sweets,
.page-load-status-cake {
  display: none; /* hidden by default */
  padding-top: 20px;
  /* border-top: 1px solid var(--pallet-white); */
  text-align: center;
  color: var(--pallet-brown);
  font-size: var(--13px);
  font-family: var(--font-family-en);
  font-style: var(--font-stye-en);
  font-weight: var(--font-weight-en-light);
  margin-right: 5%;
  margin-left: 5%;
}

.infinite-scroll-last {
  padding-top: 20px;
  font-size: var(--font-size-14px);
  font-family: var(--font-family-en);
  font-style: var(--font-style-en);
  font-weight: var(--font-weight-en-medium);
  letter-spacing: 0.2rem;
  color: var(--pallet-orange);
}

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

  .items {
    padding-block: 53px 20px;
  }

  .product-name {
    text-align: center;
    font-size: var(--font-size-14px);
  }

  .product_category.l-content-space {
    padding: 50px 5% 87px;
  }

  a.product_category_list_link {
    width: 105px;
  }

  .product_category_list__image {
    width: 95px;
    margin-inline: auto;
    display: block;
  }

  .product_category_list__name {
    font-size: var(--font-size-13px);
    line-height: 1.2;
  }

  .l-product {
    padding-block: 42px;
    padding-inline: 7%;
    margin-inline: 10px;
    margin-bottom: 10px;
  }

  .product-category-title__img {
    height: 50px;
  }

  .product-category-title__img-left {
    left: -12px;
  }

  .product-category-title__img-right {
    right: -12px;
  }

  .product-decoration-cake {

    .product-category-title__img-left {
      left: -5px;
    }

    .product-category-title__img-right {
      right: -5px;
    }

  }

  .product-category-title {
    margin-bottom: 30px;
  }

  .product_category_list {
    max-width: 380px;
    gap: 12px 10px;
    margin-inline: 10px;
    padding-top: 80px;
    padding-inline: 10px;
    padding-bottom: 33px;
    background-image: url(../images/svg/items_menu_top_sp.svg), url(../images/svg/items_menu_bottom_sp.svg), url(../images/svg/items_menu_middle_sp.svg);
  }

}


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

  .product_category_list {
    margin-bottom: 150px;
  }

  .items__illustration-01 {
    top: -78px;
    left: 75px;
    bottom: -52px;
    width: 55px;
  }

  .items__illustration-02 {
    top: auto;
    left: -40px;
    transform: none;
    bottom: -122px;
    width: 114px;
  }

  .items__illustration-03 {
    bottom: -102px;
    left: 33%;
    width: 48px;
  }

  .items__illustration-04 {
    top: -80px;
    right: 82px;
    width: 50px;
  }

  .items__illustration-05 {
    top: auto;
    right: -18px;
    transform: translateY(-20%);
    bottom: -143px;
    width: 104px;
  }

  .items__illustration-06 {
    bottom: -94px;
    right: 33%;
    width: 48px;
  }

}


/*-------------------------------------------------------
	modal
-------------------------------------------------------*/

/* 一覧 */
.product-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 43px 5%;
}

.product-block {
  transition: all 0.3s ease;
}

.product-block:hover {
  cursor: pointer;
  opacity: 0.8;
}

.c-product-thumbnail {
  display: block;
  position: relative;
  width: 100%;
  margin-bottom: 10px;
}

.c-product-thumbnail::before{
  content: "";
  display: block;
  padding-top: 100%;
}

.c-product-thumbnail__img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  object-fit: cover;
}

/* 画像なし */

.c-product-no-thumbnail {
  display: block;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--pallet-beige);
  margin-bottom: 12px;
}

.c-product-no-thumbnail::before {
  content: "";
  display: block;
  padding-top: 100%;
}

.c-product-thumbnail__no-img {
  position: absolute;
  width: 60%;
  height: auto;
  object-fit: cover;
}
 
.square_contents img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  object-fit: cover;
}

/* 商品登録なし */
.no-product {
  text-align: center;
  padding: 10vh 5%;
}

/* スクロールバー全体 */
.scroll-bar::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

/* スクロールバーのトラック(背景) */
.scroll-bar::-webkit-scrollbar-track {
  background: var(--pallet-beige);      /* トラック背景色 */
  border-radius: 0;
}

/* スクロールバーのつまみ部分 */
.scroll-bar::-webkit-scrollbar-thumb {
  background: var(--pallet-deep-beige);         /* つまみの色 */
  border-radius: 3px;      /* 丸みを帯びた角 */
}

/* つまみ部分ホバー時 */
.scroll-bar::-webkit-scrollbar-thumb:hover {
  background: var(--pallet-deep-beige);          /* ホバー時の色 */
}

/* modal */
.product-list .thumbnail-wrapper {
  overflow: hidden;
}

.product-list .thumbnail-wrapper > img {
  cursor: pointer;
  transition: all .5s ease-in-out;
}

.product-list .thumbnail-wrapper > img:hover {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
  opacity: 0.8;
}

.product-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: var(--pallet-white);
  z-index: 200;
  color: var(--pallet-brown);
  /* overflow-y: auto; */
  background-color: var(--pallet-beige);
}

.product-overlay .close-product-overlay {
  display: block;
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 99;
  width: 38px;
  height: 38px;
}

.next {
  position: fixed;
  top: 50%;
  right: 3%;
  transform: translate(0%, 0%);
  cursor: pointer;
  opacity: 1;
  transition: all 0.3s ease-out 0s;
  z-index: 2;
}

.prev {
  position: fixed;
  top: 50%;
  left: 3%;
  transform: translate(0%, 0%);
  cursor: pointer;
  opacity: 1;
  transition: all 0.3s ease-out 0s;
  z-index: 2;
}

.next:hover,
.prev:hover {
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.3s ease-out 0s;
}

.product-overlay .product {
  transition: opacity 0.3s ease-out;
  opacity: 0;
  height: 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  width: 90%;
  margin: auto;
  /* max-width: 900px; */
  max-width: var(--width-1200px-space);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 5%;
  gap: 5%;
  align-items: center;
}

.product-overlay .product_detail {
  background-color: var(--pallet-light-pink);
  height: 100%;
  border: 10px solid var(--pallet-white);
}

.product-overlay .product.active {
  opacity: 1;
  height: auto;
  /* background-color: #2D5588; */
  /* overflow-y: auto;
  height: 100%; */
  position: fixed;
  z-index: 1;
}

.product-overlay .total {
  margin-top: 7rem;
  margin-bottom: 5rem;
  font-size: 14px;
  letter-spacing: 1px;
  text-align: center;
  color: #2D5588;
}

.product-overlay .product .image-area {
  width: 50%;
  margin: auto;
  text-align: center;
}

.product-overlay .product .image-area > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* .product-overlay .product .description-area {
  position: relative;
  width: 40%;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
} */

.product-overlay .product .description-area {
  position: relative;
  width: 40%;
  /* margin: 5rem 0rem 2rem; */
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
  max-height: 70vh;
  /* background: pink; */
  overflow-y: auto;
  padding-right: 10px;
}

#item .item-body ul {
  display: grid;
  gap: 50px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin: 0 auto;
}

#item .item-body ul li .thumbnail-wrapper img {
  width: 100%;
  cursor: pointer;
  transition: all .5s ease-in-out;
}

#item .item-body ul li .thumbnail-wrapper {
  overflow: hidden;
  margin-bottom: 10px;
}

#item .item-body ul li:hover .thumbnail-wrapper img {
  /* -webkit-transform: scale(1.02);
  transform: scale(1.02); */
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
  opacity: 1;
}

#item .item-body ul li:hover {
  cursor: pointer;
  opacity: 1;
}

.item-see-more {
  color: var(--pallet-very-deep-pink);
  text-align: center;
  font-size: var(--13px);
  font-family: var(--font-family-en);
  font-style: var(--font-style-en);
  font-weight: var(--font-weight-en);
}

#item .item-body ul li a img {
  width: 100%;
}

.product_detail .r-button-wrapper {
  margin: 0;
}

.product_detail a.r-button {
  margin: 0 0 15px 0;
}

.c-btn-modal__wrapper {
  margin-top: 13px;
  display: grid;
  row-gap: 14px;
}

/*サブ画像*/
/* .about-area2 {
    position: absolute;
    top: 15%;
	right: 10%;
}
.swiper-slide img {
    max-width: 112px;
    margin: 0 2px 0 0;
}
ul.swiper-wrapper {
    list-style: none;
    display: flex;
} */

.product-overlay .next-prev {
  margin: 4rem 0;
  text-align: center;
}

.product-overlay .next-prev .next,
.product-overlay .next-prev .prev {
  user-select: none;
}

.product-overlay .close-product-overlay,
.product-overlay .next-prev .next,
.product-overlay .next-prev .prev {
  cursor: pointer;
  opacity: 1;
  transition: all 0.3s ease-out 0s;
}

.product-overlay .close-product-overlay:hover,
.product-overlay .next-prev .next:hover,
.product-overlay .next-prev .prev:hover {
  opacity: .6;
  transition: all 0.3s ease-out 0s;
}

/* 画像比率 1枚 */
.image-area {
  display: block;
  position: relative;
  width: 100%;
}
 
.image-area::before {
  content: "";
  display: block;
  padding-top: 100%;
}
 
.product_image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  object-fit: cover;
}

/* 画像比率 複数 */
.modal_slide_img {
  width: 100%;
  height: auto;
}

/* swiper */
.modal_slide {
  width: 50%;
}

.modal_slide_img {
  width: 100%;
}

.product .swiper {
  margin-left: 0;
  margin-right: 0;
}

/* pagination */
span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--pallet-brown);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, .8);
}

span.swiper-pagination-bullet {
  background-color: var(--pallet-beige);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, .7);
}

/*サブ画像*/
.image-area_thumbnail {
  display: block;
  position: relative;
  width: 100%;
  width: 50%;
  margin: auto;
  text-align: center;
}

/* 画像比率 */
.product_main_image_wrapper {
  display: block;
  position: relative;
  width: 100%;
}
 
.product_main_image_wrapper::before {
  content: "";
  display: block;
  padding-top: 100%;
}
 
.product_main_image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

.product-box img {
  cursor: pointer;
}

img.product_ext_image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

.product-box .swiper .swiper-product_detail {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-align: center;
}

.product_ext_image_list.swiper-wrapper {
  list-style: none;
  display: flex;
  /* width: calc(100% / 4); */
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.product-box .swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex: 0 0 auto;
  flex-shrink: 0;
  /* width: 100%; */
  max-width: 1290px;
  height: auto;
  position: relative;
  text-align: center;
}

.product-box .swiper-slide::before {
  content: "";
  display: block;
  padding-top: 100%;
}

.about-area2 {
  position: absolute;
  top: 15%;
	right: 10%;
}

.product_detail .swiper-slide img {
  /* max-width: 112px; */
  margin: 0 2px 0 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product_detail .swiper-slide {
  width: auto;
}


/* 画像なし */

.swiper-slide.swiper-slide-no-img {
  display: block;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--pallet-white);
}

.swiper-slide.swiper-slide-no-img::before {
    content: "";
    display: block;
    padding-top: 100%;
}

.modal_slide_no_img {
    position: absolute;
    width: 45%;
    height: auto;
    object-fit: contain;
}

.name {
  font-size: var(--font-size-22px);
}

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

  .product-overlay .product {
    width: 80%;
    display: block;
    max-width: 500px;
    padding: 0;
  }

  .product-overlay .product.active {
    opacity: 1;
    height: 100%;
    overflow-y: auto;
    max-height: 85%;
    max-width: 400px;
    /* padding: 30px 5% 30px; */
  }

  .product-overlay .total {
    margin-bottom: 2rem;
  }

  .product-overlay .product .image-area > img {
    max-width: 400px;
  }
  
  .product-overlay .product .image-area {
    text-align: center;
    width: 100%;
    /* width: 95%; */
	  max-width: 400px;
  }

  .product-overlay .product .description-area {
    width: 100%;
    margin: 0 auto;
    align-items: center;
  }

  .product-overlay .total {
    margin-top: 3.25rem;
  }

  .product-overlay .close-product-overlay {
    bottom: unset;
    top: 2%;
	  right: 4%;
  }
  
  .product-overlay .product .description-area .explanation {
    margin: 10px 0 10px;
  }

  /* .swiper-slide img {
    max-width: 99px;
  } */

  #item .item-body ul {
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .product_detail a.r-button {
    margin: 0 auto 15px;
  }

  .modal_slide {
    width: 100%;
  }

  .image-area_thumbnail {
    text-align: center;
    width: 100%;
    /* width: 95%; */
    max-width: 400px;
  }

  .product-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 10%;
  }

  .product .swiper {
    margin-bottom: 20px;
  }
  
}

/*-------------------------------------------------------
	お取り寄せ Order
-------------------------------------------------------*/

:root :where(.order .is-layout-flow) > *,
:root :where(.order .is-layout-constrained) > * {
  margin-block-start: 0;
  margin-block-end: 0;
}

.order {
  padding-top: 30px;
  padding-inline: 30px;
}

.order-item__title {
  font-weight: var(--font-weight-ja-medium);
  font-size: var(--font-size-20px);
  line-height: 1.5;
  padding-bottom: 20px;
}

.order-item__title::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background-color: var(--pallet-orange);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  border-radius: 999px;
  margin-right: 13px;
  margin-bottom: 10px;
}

.order-item__title::after {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background-color: var(--pallet-orange);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  border-radius: 999px;
  margin-left: 13px;
  margin-bottom: 10px;
}

.order-item__catchphrase {
  font-size: var(--font-size-18px);
  line-height: 1.6;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 22px;
}

.order__txt {
  font-size: var(--font-size-20px);
}

.order__txt-space {
  padding-bottom: 17px;
}

.order-item__txt-space {
  padding-bottom: 23px;
}

.order-item__txt {
  font-size: var(--font-size-16px);
  line-height: 1.6;
}

.order-item__txt-space {
  padding-bottom: 17px;
}

.order__img {
  padding-bottom: 56px;
}

.order__img img {
  max-width: 780px;
  width: 100%;
  height: auto;
}

.order-item {
  column-gap: 8%;
  max-width: 930px;
  margin-inline: auto;
}

/* slide */

.order-item__slide-wrapper {
  max-width: max-content;
}

.order-item .n2-section-smartslider.fitvidsignore.n2_clear {
  width: 448px !important;
}

.order-item .nextend-thumbnail-scroller {
  column-gap: 8px !important;
}

.order-item .n2-ss-slide-limiter {
  max-width: none !important;
}

.order-item .nextend-thumbnail-horizontal .nextend-thumbnail-next {
  display: none !important;
}

.order-item .nextend-thumbnail-horizontal .n2-thumbnail-dot {
  margin: 0 !important;
}

.order-item .n2-ss-slider-1.n2_ss__touch_element.n2-ow {
  margin-bottom: 20px;
}

/* content */
.order-content__tel a {
  font-family: var(--font-family-en);
  font-style: var(--font-style-en);
  font-weight: var(--font-weight-en-medium);
}

.order-content__tel a::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url(../images/svg/icon_tel_02.svg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: 7px;
}

.order-content__title {
  font-size: var(--font-size-20px);
  font-weight: var(--font-weight-ja-medium);
  max-width: 930px;
  padding: 12px 5% 13px !important;
  line-height: 1.5;
  letter-spacing: 0;
  margin-bottom: 0 !important;
}

.order-content__img img {
  max-width: 530px;
  width: 100%;
}

.order-content__img-2column {
  max-width: 530px;
  width: 100%;
}

.order-content__txt-left {
  max-width: max-content;
  margin-inline: auto;
}

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

  .order {
    padding-top: 11px;
    padding-inline: 23px;
    padding-bottom: 30px;
  }

  .order-item .n2-section-smartslider.fitvidsignore.n2_clear {
    width: 100% !important;
  }

  .order-item {
    justify-content: center;
    row-gap: 32px;
  }

  .wp-block-spacer.order-item__space {
    height: 60px !important;
  }

  .order-item__title {
    text-align: center;
  }

  .order-item__catchphrase {
    font-size: var(--font-size-15px);
    margin-bottom: 22px;
  }

  .order-item__catchphrase {
    text-align: center;
  }

  .order__img {
    padding-bottom: 12px;
  }

  .order__img img {
    max-width: 500px;
  }

  .order__txt {
    font-size: var(--font-size-14px);
    line-height: 1.6;
  }

  .order__space {
    display: none;
  }

  .order-item__txt {
    font-size: var(--font-size-14px);
  }

  .order-item .wp-block-columns {
    flex-wrap: wrap !important;
  }

  .order-item .nextend-thumbnail-scroller {
    grid-template-columns: repeat(4, 1fr);
    width: calc((100% - 24px) / 4) !important;
    aspect-ratio: 329 / 56;
  }

  .order-item .nextend-thumbnail-scroller img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: 50% 50% !important;
  }

  .order-item .n2-ss-slider-1.n2_ss__touch_element.n2-ow {
    margin-bottom: 16px;
  }

  .order-item__price {
    font-size: var(--font-size-13px);
  }

  .order-content__title {
    font-size: var(--font-size-17px) !important;
  }

  .order-content__txt {
    font-size: var(--font-size-14px);
  }

  .order-content__tel a {
    font-size: var(--font-size-26px) !important;
  }

  .wp-block-spacer.order-content__space {
    height: 17px !important;
  }

  .wp-block-spacer.order-content__space-bottom {
    height: 45px !important;
  }

}

/*-------------------------------------------------------
	ONLINE SHOP
-------------------------------------------------------*/

.online_shop__img_wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 455px;
}

a.online_shop__link {
  display: grid;
  place-items: center;
  font-size: clamp(1.375rem, 1.151rem + 0.99vw, 2rem);   /* 22 - 32px/360 - 1366px*/
  font-family: var(--font-family-ja);
  font-style: var(--font-style-ja);
  font-weight: var(--font-weight-ja-demibold);
  color: var(--pallet-white);
}

a.online_shop__link__reserve {
  background-image: url(../images/online_shop_reserve.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
} 

a.online_shop__link__delivery {
  background-image: url(../images/online_shop_delivery.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
} 

a.online_shop__link__reserve:hover {

} 

a.online_shop__link__delivery:hover {

} 

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

  .online_shop__img_wrapper {
    grid-template-columns: 1fr;
  }

}

/*-------------------------------------------------------
	CHEF
-------------------------------------------------------*/

.chef.l-content-space {
  padding: 240px 5% 100px;
}

.chef {
  position: relative;
}

.c-title.c-title__chef {
  position: absolute;
  top: 130px;
  left: 5%;
}

.chef__content_wrapper {
  display: grid;
  grid-template-columns: 1fr clamp(15.625rem, 11.152rem + 19.88vw, 28.125rem); /* 250 - 450px */
  align-items: end;
  justify-content: center;
  gap: 30px 10%;
  max-width: 1166px;
  margin-inline: auto;
}

.chef__name {
  font-size: var(--font-size-30px);
  font-weight: var(--font-weight-ja);
  letter-spacing: 0.2rem;
  padding-bottom: 28px;
}

.chef_history {
  display: grid;
  grid-template-columns: 65px 1fr;
  gap: 15px 5px;
  margin-bottom: 55px;
}

.chef__message {
  line-height: 2.5;
}

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

  .c-title.c-title__chef {
    position: static;
  }

  .chef__content_wrapper {
    grid-template-columns: 1fr;
  }

  .chef__content_img_wrapper {
    grid-row: 1 / 2;
    margin-inline: auto;
  }

  .chef__name {
    font-size: var(--font-size-18px);
    text-align: center;
  }

  .chef_history {
    font-size: var(--font-size-14px);
  }

  .chef__message {
    font-size: var(--font-size-14px);
  }

  .chef.l-content-space {
    padding: 95px 5% 40px;
  }
  
  .chef__img {
    max-width: 60vw;
  }

}

/*-------------------------------------------------------
	ACCESS
-------------------------------------------------------*/

.access-wrapper {
  overflow: hidden;
}

.access {
  padding-top: 80px;
  padding-bottom: 95px;
  margin-inline: 37px;
  padding-inline: 5%;
  position: relative;
}

.access-content__title {
  font-weight: var(--font-weight-ja-medium);;
  font-size: var(--font-size-23px);
  line-height: 1.5;
  text-align: center;
  padding-bottom: 40px;
}

.shop-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 10px;
  justify-items: center;
  justify-content: center;
  max-width: 950px;
  margin-inline: auto;
  padding-bottom: 65px;
  position: relative;
}

.shop-info__content:not(:last-of-type) {
  padding-bottom: 27px;
}

.shop-info__open,
.shop-info__closed {
    display: grid;
    grid-template-columns: 68px 1fr;
}

.shop-info__title {
  font-family: var(--font-family-en);
  font-style: var(--font-style-en);
  font-weight: var(--font-weight-en-medium);
  font-size: var(--font-size-14px);
  letter-spacing: 0.2rem;
  line-height: 1.3;
  color: var(--pallet-orange);
  padding-bottom: 8px;
}

.shop-info__txt {
  font-size: var(--font-size-16px);
  line-height: 1.6;
  letter-spacing: 0;
}

.shop__image-area {
  display: grid;
  grid-template-columns: 0.7fr 0.7fr 1fr;
  gap: 36px;
  align-items: end;
  max-width: 1070px;
  margin-inline: auto;
  position: relative;
  margin-bottom: 73px;
}

.shop__image-wrapper {
  position: relative;
}

.shop_image_add {
  aspect-ratio: 146 / 105;
  object-fit: cover;
  width: 100%;
}

.access__illustration {
  position: absolute;
}

.shop__image {
  aspect-ratio: 414 / 551;
  object-fit: cover;
}

/* map */

.map {
    padding-bottom: 78px;
}

a.map__link {
  font-size: var(--font-size-13px);
  text-decoration: underline;
  display: block;
  text-align: right;
}

.map-content iframe {
  width: 100%;
  height: 540px;
  margin-bottom: 28px;
}

/* line */
.line {
    text-align: center;
}

/* イラスト */
.access__illustration {
  position: absolute;
}

.access__illustration-01 {
  top: -213px;
  left: -119px;
}

.access__illustration-02 {
  top: -227px;
  right: -120px;
}

.access__illustration-03 {
  top: 97px;
  left: -203px;
}

.access__illustration-04 {
  top: 87px;
  right: -158px;
}

.access__illustration-05 {
  top: 7px;
  left: -194px;
}

.access__illustration-06 {
  top: 38px;
  left: 427px;
}

.access__illustration-shop-image {
  top: -76px;
  right: -97px;
}


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

  .shop-content {
    grid-template-columns: 1fr;
    padding-bottom: 40px;
  }

  .access {
    padding-top: 42px;
    padding-bottom: 42px;
    margin-inline: 10px;
    padding-inline: 5%;
    position: relative;
  }

  .line__image {
    max-width: 350px;
    width: 100%;
  }

  .shop-info__title {
    font-size: var(--font-size-12px);
  }

  .shop-info__txt {
    font-size: var(--font-size-14px);
  }

  .shop__image-area {
    grid-template-columns: 1fr;
    grid-template-areas:
    "shopImgEyeCatch"
    "shopImg1"
    "shopImg2";
    justify-items: center;
    gap: 28px;
    max-width: 500px;
    margin-bottom: 40px;
  }

  .shop__image {
    max-width: 320px;
  }

  .map-content iframe {
    height: 400px;
  }

  .access-content__title {
    font-size: var(--font-size-19px);
    padding-bottom: 30px;
  }

  .shop__image-wrapper {
    grid-area: shopImgEyeCatch;
  }

  .shop_image_add-2 {
    grid-area: shopImg1;
    margin-inline: auto 0;
    max-width: 250px;
  }

  .shop_image_add-1 {
    grid-area: shopImg2;
    max-width: 250px;
    margin-top: 50px;
  }

  .access__illustration-shop-image {
    top: -28px;
    right: -38px;
    /* width: 58px; */
    width: clamp(3.625rem, -0.75rem + 18.67vw, 9.75rem);
  }

  .access__illustration-01 {
    top: -144px;
    left: 15px;
    width: clamp(3.125rem, -1.027rem + 17.71vw, 8.938rem);
  }

  .access__illustration-02 {
    top: -150px;
    right: 0;
    width: clamp(5.438rem, -1.438rem + 29.33vw, 15.063rem);
  }

  .access__illustration-03 {
    top: 193px;
    left: -39px;
    width: clamp(3.313rem, -0.125rem + 14.67vw, 8.125rem);
  }

.access__illustration-04 {
    top: 15px;
    right: -19px;
    width: clamp(2.938rem, -0.054rem + 12.76vw, 7.125rem);
}

  .access__illustration-05 {
    /* width: 238px; */
    width: clamp(14.875rem, 2.821rem + 51.43vw, 31.75rem);
    top: auto;
    bottom: 210px;
    left: -27vw;
  }

  .access__illustration-06 {
    /* width: 34px; */
    width: clamp(2.125rem, -1.446rem + 15.24vw, 7.125rem);
    top: auto;
    bottom: 96px;
    left: auto;
    right: -14vw;
  }

  .shop-info__content:not(:last-of-type) {
    padding-bottom: 22px;
  }

  .map {
    padding-bottom: 40px;
  }

}

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

  .access__illustration-06 {
    bottom: 147px;
    right: 0;
  }

}

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

  .map-content iframe {
      height: 235px;
  }

  .access__illustration-05 {
    bottom: 131px;
    left: -19vw;
  }

  .shop__image {
    max-width: 60vw;
  }

  .shop_image_add-2 {
    max-width: 130px;
  }

  .shop_image_add-1 {
    max-width: 130px;
  }

}

/*-------------------------------------------------------
	RECRUIT
-------------------------------------------------------*/

.recruit {
  padding: 40px 5% 70px;
}

.recruit__title {
  font-weight: var(--font-weight-ja-medium);
  font-size: var(--font-size-20px);
  line-height: 1.8;
  text-align: center;
  padding-bottom: 8px;
}

.recruit__title::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background-color: var(--pallet-orange);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  border-radius: 999px;
  margin-right: 14px;
  margin-bottom: 6px;
}

.recruit__title::after {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background-color: var(--pallet-orange);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  border-radius: 999px;
  margin-left: 14px;
  margin-bottom: 6px;
}

.recruit-preface .recruit__title {
  display: none;
}

.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr th, .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr td {
  border-color: var(--pallet-deep-beige);
  border-right: none;
  border-left: none;
  font-weight: var(--font-weight-ja);
}

.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr:first-of-type th,
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr:first-of-type td {
  border-top: none;
}

.no-recruit__txt {
  text-align: center;
  padding: 50px 5%;
}

.recruit__contact {
  text-align: center;
}

.recruit__job_description-content:not(:last-of-type) {
  padding-bottom: 110px;
}

.recruit-preface.recruit__job-description {
  padding-bottom: 95px;
}

.recruit__job-description {
    max-width: 800px;
    margin-inline: auto;
    padding-bottom: 100px;
}

.recruit__job-description:last-of-type {
  padding-bottom: 0;
}

.recruit-sp_only {
  display: none;
}

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

  .recruit {
    padding: 37px 5% 70px;
  }

  .recruit-preface.recruit__job-description {
    padding-bottom: 48px;
  }

  .recruit__job-description {
    padding-bottom: 57px;
  }

  .recruit .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr {
    font-size: var(--font-size-14px);
    line-height: 1.5;
  }

  .recruit .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table th {
    max-width: 100px;
  }

  .recruit .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr th,
  .recruit .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr td {
    padding: 17px 10px 17px 0px;
  }

  .recruit-preface p {
    font-size: var(--font-size-14px);
  }

}

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

  .recruit-sp_only {
    display: block;
  }
}

/*-------------------------------------------------------
	INSTAGRAM
-------------------------------------------------------*/

.instagram-wrapper {
  overflow: hidden;
  padding-top: 90px;
  padding-bottom: 60px;
}

.instagram {
  margin-inline: 30px;
  padding-block: 85px;
  padding-inline: 12.8vw;
}

.instagram-feed {
  padding-bottom: 40px;
  position: relative;
  max-width: 970px;
  margin-inline: auto;
}

.sbinstagram {
  padding-bottom: 22px !important;
}

#sb_instagram #sbi_images {
    padding: 0 !important;
}

#sb_instagram {
  padding-bottom: 0 !important;
} 

/* #sb_instagram #sbi_images {
  width: 2200px;
} */

/* #sb_instagram #sbi_images:first-child {
  padding-left: 0 !important;
} */

/* a.sbi_photo.sbi_imgLiquid_bgSize.sbi_imgLiquid_ready {
  height: 290px !important;
  width: 290px !important;
} */

.instagram__illustration {
  position: absolute;
}

.instagram__illustration-01 {
  top: -230px;
  left: 14px;
}

.instagram__illustration-02 {
  top: 68px;
  left: -272px;
}

.instagram__illustration-03 {
  bottom: -185px;
  left: -90px;
}

.instagram__illustration-04 {
  top: -239px;
  right: 0;
}

.instagram__illustration-05 {
  top: 0px;
  right: -290px;
}

.instagram__illustration-06 {
  bottom: -175px;
  right: -76px;
}

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

  .instagram {
    margin-inline: 10px;
    padding-block: 42px;
    padding-inline: 10%;
    margin-bottom: 10px;
  }

  #sbi_images {
    gap: 10px !important;
  }

  .instagram__illustration-01 {
    width: clamp(3.438rem, -0.045rem + 14.86vw, 8.313rem);
    top: -133px
  }

  .instagram__illustration-02 {
    width: clamp(6.938rem, 1.804rem + 21.9vw, 14.125rem);
    top: 38px;
    left: -30vw;
  }

  .instagram__illustration-03 {
    width: clamp(2.75rem, -0.018rem + 11.81vw, 6.625rem);
    bottom: -108px;
  }

  .instagram__illustration-04 {
    width: clamp(3.688rem, 0.071rem + 15.43vw, 8.75rem);
    top: -150px;
  }

  .instagram__illustration-05 {
    width: clamp(6.313rem, -0.027rem + 27.05vw, 15.188rem);
    right: -29vw;
  }

  .instagram__illustration-06 {
    width: clamp(2.875rem, 0.018rem + 12.19vw, 6.875rem);
    bottom: -116px;
  }

  .instagram-wrapper {
    padding-top: 30px;
    padding-bottom: 15px;
  }


}

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

  .instagram__illustration-01 {
    top: -87px;
    left: -4vw;
  }

  .instagram__illustration-02 {
    top: 57px;
    left: -115px;
  }

  .instagram__illustration-03 {
    bottom: 32px;
    left: -51px;
  }

  .instagram__illustration-04 {
    top: -89px;
    right: -6vw;
  }

  .instagram__illustration-05 {
    top: 48px;
    right: -89px;
  }

  .instagram__illustration-06 {
    bottom: 0;
    right: -66px;
  }

}

/*-------------------------------------------------------
	CONTACT
-------------------------------------------------------*/

.contact.l-content-space {
  padding: 100px 5% 170px;
}

a.contact__tel {
  font-family: var(--font-family-en);
  font-style: var(--font-style-en);
  font-weight: var(--font-weight-en);
  font-size: var(--font-size-39px);
}

a.contact__tel::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 22px;
  background-image: url(../images/svg/icon_tel.svg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-bottom: 5px;
}

.contact__content_wrapper {
  display: flex;
  gap: 15px 50px;
  align-items: center;
  padding-top: 38px;
}

.contact__txt {
  font-size: var(--font-size-14px);
  line-height: 1.8;
}

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


  .contact__content_wrapper {
    flex-direction: column;
  }

  .contact.l-content-space {
    padding: 100px 5% 80px;
  }
  
}

/*-------------------------------------------------------
	他
-------------------------------------------------------*/

.http_error_404__txt {
  padding: 20vh 5%;
  text-align: center;
}

/*フェードインアニメ*/
@keyframes fadeOut {
    0% {
      opacity: 1;
    }

    100% {
      opacity: 0;
    }
}