@charset "utf-8";
/* common */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Noto+Serif+JP:wght@200..900&display=swap');

article, aside, main, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  color: var(--black);
  font-feature-settings: "palt";
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: .02em;
  background-color: var(--base);
  line-height: 2;
  -webkit-text-size-adjust: 100%;
}

.weight100   {
  font-weight:100
  }

.weight300   {
  font-weight:300
  }

.weight400   {
  font-weight:400
  }

.weight500   {
  font-weight:500
  }

.weight600   {
  font-weight:600
  }

.weight700   {
  font-weight:700
  }

.weight900   {
  font-weight:900
  }

:root {
  --brown01: #B89782;
  --brown02: #E1D4C7;
  --brown03: #F6F1EB;
  --brown05: #513933;
  --orange: #FF9900;
  --black: #333333;
  --white: #FFFFFF;
  --gray: #F7F7F7;
}


.sp-only {
  display: none;
}

.sptab-only {
  display: none;
}

.scroll-prevent {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%; 
}
 
.font-en {
  font-family: "Montserrat", sans-serif;
}


@media (max-width: 1000px) {
  .sptab-only {
    display: block;
  }
}

@media (max-width: 768px) {
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }
}

/* common */
h1 {
  font-family: "Noto Serif JP", serif;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--brown05);
}

h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--brown05);
}

h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--brown05);
}

h4 {
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--brown05);
}

.f-serif {
  font-family: "Noto Serif JP", serif;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.4rem;
  }

  h2 {
    font-size: 2.4rem;
  }

  h3 {
    font-size: 2rem;
  }
}

/* layout */
main {
  padding-top: 84px;
}

.l-flex {
  display: flex;
}

.l-flex.align-center {
  align-items: center;
}

.l-flex-column {
  display: flex;
  flex-direction: column;
  row-gap: 80px;
}

.l-section.large {
  padding: 100px 0;
}

.l-normal__flame {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.l-small__flame {
  width: 100%;
  max-width: 620px;
}

.l-section__title {
  margin-bottom: 40px;
}

.l-section__title p {
  color: var(--orange);
  margin-bottom: 8px;
}

.l-section__title p.f-large {
  font-size: 2rem;
  line-height: 1.6;
}

@media (max-width: 1000px) {
  .l-normal__flame {
    padding: 0 24px;
  }

  .l-section.large,
  .l-section.large.l-normal__flame {
    padding: 100px 24px;
  }

}

@media (max-width: 768px) {
  main {
    padding-top: 70px;
  }

  .l-flex {
    flex-direction: column;
  }

  .l-flex-column {
    row-gap: 60px;
  }

  .l-section.large {
    padding: 80px 0;
  }

  .l-section.large.l-normal__flame {
    padding: 80px 24px;
  }

  .l-section__title p.f-large {
    font-size: 1.6rem;
  }
}

/* button */
.l-btn__big {
  width: 307px;
  height: 58px;
  background-color: var(--orange);
  border-radius: 9999px;
  transition: all 0.3s ease;
  border: 1px solid var(--orange);
  cursor: pointer;
}

.l-btn__big a {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  column-gap: 4px;
}

.l-btn__big a span {
  color: #FFFFFF;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
}

.l-btn__middle {
  width: fit-content;
  /* height: 45px; */
  background-color: var(--brown03);
  border-radius: 9999px;
  padding: 17px 68px 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid var(--brown03);
}

.l-btn__middle a span {
  color: var(--brown05);
  font-size: 1.6rem;
  line-height: 1.3;
}

.l-btn__middle .ico_open_in_new {
  padding-bottom: 4px;
}

.l-btn__small a {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  column-gap: 4px;
}


.l-btn__small {
  width: fit-content;
  /* height: 45px; */
  background-color: var(--brown03);
  border-radius: 9999px;
  padding: 13px 40px 12px;
  transition: all 0.3s ease;
  border: 1px solid var(--brown03);
  cursor: pointer;
}

.l-btn__small a {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  column-gap: 4px;
}

.l-btn__small a span {
  color: var(--brown05);
  font-size: 1.6rem;
  line-height: 1.3;
}

@media (min-width: 769px) {
  .l-btn__big:hover {
    background: #FFC266;
  }

  .l-btn__middle:hover,
  .l-btn__small:hover {
    border: 1px solid var(--orange);
  }
}

@media (max-width: 768px) {

  .l-btn__middle {
    padding: 17px 40px 16px
  }
}

/* header */
.l-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding: 20px 0;
  background-color: #ffffff;
  z-index: 50;
}

.l-header__inner {
  width: 100%;
  max-width: 1232px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

.l-header__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.l-header__logo span {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 8px;
}

.l-header__nav .l-nav__list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 32px;
}

.l-header__nav .l-nav__list li a {
  position: relative;
  color: var(--brown05);
}

.l-header__nav .l-nav__list li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: var(--orange);
  transform: scale(0, 1);
  transform-origin: left top;
  transition: all 0.3s ease;
}

.l-header__nav .l-nav__list li a.current::after {
  transform: scale(1,1);
}

@media (min-width: 769px) {
  .l-header__nav .l-nav__list li a:hover::after {
    transform: scale(1,1);
  }

}

.l-header__shopBtn {
  margin-left: 32px;
}

.l-header__shopBtn a {
  display: block;
}

.l-openbtn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 13px;
  cursor: pointer;
  z-index: 1001;
}

.l-openbtn span {
  display: block;
  height: 1px;
  width: 100%;
  background-color: var(--brown05);
  transition: all 0.3s ease;
  z-index: 1001;
}

.l-openbtn.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.l-openbtn.active span:nth-child(2) {
  opacity: 0;
}

.l-openbtn.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ナビゲーションメニューのスタイル */
.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  z-index: 1000;
  transition: right 0.3s ease;
  padding: 70px 40px 40px;
}

.nav-menu.active {
  right: 0; /* アクティブ時に画面内に表示 */
}

.hamburger-nav {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  padding: 40px 0;
}

.hamburger-nav:nth-child(1) {
  border-bottom: 1px solid var(--brown02);
}

.hamburger-nav:nth-child(1) {
  border-bottom: 1px solid var(--brown02);
}

.hamburger-nav a {
  display: block;
  line-height: 1.6;
  color: var(--brown05);
}

/* オーバーレイ背景 */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgba(0, 0, 0, 0.5); */
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1280px) {
  .l-header__inner {
    max-width: calc(100vw - 48px);
  }
}

@media (max-width: 768px) {
  .l-header {
    padding: 13px 16px 13px 12px;
  }

  .l-header__inner {
    max-width: 100%;
  }

  .l-header__logo {
    z-index: 1001;
  }

  .l-header .align-right {
    margin-left: auto;
  }

  .l-header__shopBtn {
    margin-left: 0;
    margin-right: 28px;
    padding-top: 10px;
    z-index:1001;
  }
}

/* footeｒ */
footer {
  padding-top: 40px;
  background: var(--brown03);
}

.footer-inner {
  justify-content: space-between;
  width: 100%;
  max-width: calc(1160px + 48px);
  margin: 0 auto 12px;
  padding: 0 24px;
}

.footer-nav__wrap {
  justify-content: flex-end;
  column-gap: 60px;
}

.footer-nav {
  margin-bottom: 24px;
}

.footer-nav li {
  padding: 12px 0;
}

.footer-nav li a {
  position: relative;
  line-height: 1.6;
  color: var(--brown05);
}

.footer-nav li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: var(--orange);
  transform: scale(0, 1);
  transform-origin: left top;
  transition: all 0.3s ease;
}

.footer-nav li a img {
  width: 16px;
  margin-left: 4px;
  padding-bottom: 5px;
}

.footer-nav__sns {
  display: flex;
  column-gap: 24px;
}

.footer-bottom {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 12px;
  background-image: url(../images/ft-img01.png);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 200px 52.4px;
}

.footer-bottom p {
  font-size: 1rem;
  line-height: 28px;
  text-align: right;
  color: var(--brown05);
}

@media (min-width: 769px) {
  .footer-nav li a:hover::after {
    transform: scale(1,1);
  }

}

@media (max-width: 768px) {
  .footer-inner {
    margin-bottom: 0;
  }

  .footer-inner .l-header__logo {
    align-items: flex-start;
    margin-bottom: 60px;
  }

  .footer-nav {
    margin-bottom: 60px;
  }

  .footer-nav__sns {
    margin-bottom: 60px;
  }

  .footer-bottom  {
    padding: 0;
    padding: 0 24px 110px;
    background-position: center bottom;

  }

  .footer-bottom p {
    text-align: left;
  }
}

/* アニメーション */
.fade-in-el {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-el.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ページトップ */
#pagetop {
  width: 20px;
  position: fixed;
  right: 20px;
  bottom: 32px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

#pagetop.show {
  opacity: 1;
  visibility: visible;
}

#pagetop img {
  width: 100%;
}


/* トップページ */
/* main visual */
.home-mv img {
  width: 100%;
}


/* introduction */
.home-introduction .message {
  font-size: 2rem;
  line-height: 2.4;
  text-align: center;
  margin-bottom: 100px;
  color: var(--brown05);
}

.home-introduction__image img {
  width: 100%;
  margin-bottom: 80px;
}

.about-kokoyuta {
  justify-content: space-between;
  column-gap: 40px;
}

.about-kokoyuta .l-section__title {
  width: 50%;
}

.about-content {
  width: 50%;
}

.about-text {
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .home-introduction .message {
    font-size: 1.5rem;
    line-height: 2.4;
    margin-bottom: 80px;
  }

  .home-introduction__image img {
    margin-bottom: 40px;
  }

  .about-kokoyuta .l-section__title {
    width: 100%;
  }

  .about-content {
    width: 100%;
  }
  
  .about-content .l-btn__small {
    margin: 0 auto;
  }
}

/* about biscotti */
.l-section.large.about-biscotti {
  padding-top: 80px;
  background: var(--brown03);
  background-image: url(../images/top-img02.webp);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 420px;
}

.about-biscotti__inner {
  margin-bottom: 80px;
}

.about-kokoyuta__text {
  margin-bottom: 40px;
}

.about-kokoyuta__card {
  padding: 24px;
  background: var(--brown02);
  position: relative;
}

.about-kokoyuta__card h4 {
  margin-bottom: 12px;
}

.about-kokoyuta__card .l-flex {
  align-items: flex-start;
  column-gap: 24px;
}

.about-kokoyuta__card .italia-biscotti {
  flex: 1;
}

.about-kokoyuta__card img {
  width: 120px;
}

.l-products__scroll .small-title {
  font-weight: 500;
  color: var(--orange);
  position: relative;
  margin-bottom: 20px;
  margin-left: calc((100vw - 960px)/2);
}

.l-products__scroll .small-title::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--orange);
  position: absolute;
  top: 14px;
  left: 76px;
}

.products-list {
  justify-content: flex-start;
  /* column-gap: 20px; */
  margin-bottom: 80px;
}

.products-item {
  display: flex;
  width: 200px;
  flex-direction: column;
  align-items: center;
  row-gap: 12px;
  margin-right: 20px;
}

.products-item img {
  width: 100%;
}

.products-item p {
  text-align: center;
  line-height: 1.6;
}

.about-biscotti .l-btn__big {
  margin: 0 auto 80px;
}

.about-biscotti .l-btn__big .ico_open_in_new {
  width: 18px;
  height: 18px;
}

.recipe-link__card__inner {
  display: flex;
  width: 636px;
  height: 140px;
  margin: 0 auto;
  border-radius: 8px;
}

.recipe-link__card__image {
  border-radius: 8px 0 0 8px;
}

.recipe-link__card .arranged-recipe {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #FFFFFF;
  padding: 24px;
  border-radius: 0 8px 8px 0;
}

.recipe-link__card .arranged-recipe h4 {
  margin-bottom: 24px;
}

.arranged-recipe__title {
  color: var(--orange);
}

.arranged-recipe__link {
  font-size: 1.6rem;
  line-height: 1.3;
}

.arranged-recipe__link img {
  margin-left: 4px;
}

@media (max-width: 1000px) {
  .l-products__scroll .small-title {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .l-section.large.about-biscotti {
    background-size: 220px;
    padding-top: 154px;
  }

  .products-list {
    flex-direction: row;
    margin-bottom: 0;
    /* margin-bottom: 60px; */
  }

  .products-item {
    padding-bottom: 60px;
  }

  .about-kokoyuta__card {
    padding: 40px 24px 24px;
  }

  .about-kokoyuta__card h4 {
    margin-bottom: 40px;
  }
  
  .about-kokoyuta__card img {
    width: 100px;
    position: absolute;
    top: 12px;
    left: 214px;
  }
  
  .l-products__scroll .small-title {
    margin-left: 24px;
  }

  .recipe-link__card {
    margin: 0 24px;
  }

  .recipe-link__card__inner {
    width: 100%;
    flex-direction: column;
    height: inherit;
  }
  
  .recipe-link__card__image {
    border-radius: 8px 8px 0 0;
  }
  
  .recipe-link__card .arranged-recipe {
    border-radius: 0 0 8px 8px;
    padding-top: 20px;
  }
}

/* swiper custom */
.swiper {
  padding-left: calc((100vw - 960px)/2);
  padding-right: 200px;
  touch-action: pan-y pinch-zoom;
  -webkit-overflow-scrolling: touch;
}

.swiper-slide {
  width: 200px;
}

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

.swiper-horizontal .swiper-button-prev {
  left: 50px;
  top: 30%;
}

.swiper-horizontal .swiper-button-next {
  right: 50px;
  top: 30%;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 40px;
  margin: auto;
  width: 40px;
}

.swiper-button-prev::after {
  background-image: url(../images/arrow-back.svg);
}

.swiper-button-next::after {
  background-image: url(../images/arrow-next.svg);
}

.swiper-slide img {
  height: auto;
  width: 100%;
}

.swiper-button-next svg, 
.swiper-button-prev svg {
  display: none;
}

@media (max-width: 768px) {
  .swiper {
    padding-left: 24px;
  }

  .swiper-button-prev::after,
  .swiper-button-next::after {
    content: none;
  }
}

/* selected ingredients */
.selected-ingredients {
  margin-bottom: 40px;
}

.selected-ingredients__image img {
  width: 100%;
  margin-bottom: 80px;
}

.selected-ingredients__content {
  width: 100%;
  max-width: 560px;
  margin-left: auto;
}

.selected-ingredients__text {
  margin-bottom: 40px;
}

.selected-ingredients .l-btn__small {
  margin-left: auto;
}

.sozai-image__wrap {
  width: 100%;
  max-width: 1280px;
  height: 330px;
  margin: 0 auto;
  position: relative;
}

.sozai-image__1 {
  position: absolute;
  top: -294px;
  left: 0;
  width: 360px;
}

.sozai-image__2 {
  position: absolute;
  top: 0;
  left: 280px;
  width: 200px;
}

.sozai-image__3 {
  position: absolute;
  top: 120px;
  right: 40px;
  width: 200px;
}

@media (max-width: 1000px) {
  .sozai-image__1 {
    top: -90px;
  }

  .sozai-image__2 {
    top: 200px;
  }
}

@media (max-width: 768px) {
  .selected-ingredients__image img {
    margin-bottom: 40px;
  }

  .sozai-image__wrap {
    height: auto;
    padding-bottom: 80px;
  }

  .sozai-image__1 {
    position: inherit;
    top: inherit;
    left: inherit;
    width: 64%;
    margin-bottom: 40px;
  }

  .sozai-image__2 {
    position: inherit;
    top: inherit;
    left: inherit;
    width: 32%;
    transform: translateY(80px);
  }

  .sozai-image__3 {
    position: inherit;
    top: inherit;
    left: inherit;
    width: 32%;
  }

  .sozai-image__wrap_2 {
    display: flex;
    justify-content: flex-end;
    column-gap: 8px;
  }

  .selected-ingredients .l-btn__small {
    margin: 0 auto;
    text-align: center;
  }
}

/* cv_area */
.cv_img {
  width: 50%;
}

.cv_img img {
  width: 100%;
}

.cv_content {
  display: flex;
  width: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 24px;
  background: var(--brown01);
  color: #FFFFFF;
}

.cv_content h2 {
  color: var(--white);
  text-align: center;
}

@media (max-width: 1000px) {
  .cv_img {
    width: 35%;
    height: 330px;
  }
  
  .cv_img img {
    width: auto;
    height: 100%;
  }
  
  .cv_content {
    width: 65%;
  }
}

@media (max-width: 768px) {
  .cv_img {
    width: 100%;
    height: inherit;
  }
  
  .cv_img img {
    width: 100%;
    height: auto;
  }

  .cv_content {
    width: 100%;
    padding: 32px 24px;
  }
}

/* blog section */
.blog-sec {
  background: var(--gray);
}

.blog-sec__inner {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  column-gap: 40px;
}

.blog-sec .l-section__title {
  width: 256px;
}

.blog-wrap {
  flex: 1;
  column-gap: 40px;
}

.blog-item {
  width: 50%;
  background: #FFFFFF;
  border-radius: 0 0 8px 8px;
}

.blog-item__inner {
  display: flex;
  flex-direction: column;
}

.blog-content {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  padding: 24px;
}

.blog-item .blog-img {
  width: 100%;
  border-radius: 8px 8px 0 0;
}

.blog-text {
  word-break: break-word;
}

.blog-link {
  font-size: 1.6rem;
  line-height: 1.3;
  color: var(--brown05);
}

.blog-link img {
  margin-left: 4px;
}

@media (max-width: 768px) {
  .blog-sec__inner {
    padding: 0 24px;
  }

  .blog-sec .l-section__title {
    width: 100%;
  }

  .blog-wrap {
    row-gap: 40px;
  }

  .blog-item {
    width: 100%;
  }
}

/* contact */
.contact-sec__inner {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
  align-items: center;
}


@media (max-width: 768px) {
  .l-section.large .contact-sec__inner {
    padding: 0 24px;
    row-gap: 24px;
  }
  
  .biz .l-section.large .contact-sec__inner {
    padding: 24px;
  }
}

/* aboutページ */
/* ファーストビュー */
.about-fv {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.about-fv h1 {
  margin-bottom: 80px;
}

.about-fv__img {
  width: 100%;
  margin-bottom: 60px;
}

.about-fv h2 {
  text-align: center;
  margin-bottom: 40px;
}

.about-fv h2 .small-text {
  font-size: 1.6rem;
}

.about-fv__text {
  text-align: center;
  margin-bottom: 40px;
}

.about-main__text {
  /* margin-bottom: 24px; */
}

.about-moto {
  display: flex;
  flex-direction: column;
  row-gap: 60px;
}

.about-small-content {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}

.about-small-content .nowrap {
  letter-spacing: -1px;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .about-fv {
    margin-bottom: 0;
  }

  .about-fv h1 {
    margin-bottom: 40px;
  }


  .about-fv__img {
    width: 100vw;
    margin-bottom: 40px;
  }

  .about-fv__text {
    text-align: left;
  }
}

/* about-sec */
/* .about h2 {
  margin-bottom: 40px;
}
 */
.about .contact-sec h2 {
  margin-bottom: 0;
}

.about-sec__cont {
  margin-bottom: 120px;
}

.about-about__kokoyuta {
  column-gap: 80px;
}

.about-monotema {
  column-gap: 80px;
}

.about-monotema .l-section__title {
  margin-bottom: 0;
}

.about .content-wrap {
  width: 50%;
}

.about .content-wrap.w50 {
  width: calc((100% - 80px)/2);
}

.about .content-wrap.w64 {
  width: calc((100% - 80px)*0.64545);
}

.about .img-wrap {
  flex: 1;
}

.about .img-wrap  img {
  width: 100%;
}

.about-sozai {
  position: relative;
  column-gap: 80px;
}

.sozai-contentwrap {
  display: flex;
  flex-direction: column;
  row-gap: 120px;
  max-width: 312px;
  flex: 1;
}

.sozai-contentwrap img  {
  width: 100%;
}

.sozai-img02__wrap {
  position: absolute;
  left: 0;
  top: 535px;
}

.sozai-img02__wrap img {
  max-width: 312px;
}

.about-staff img {
  width: 100%;
  margin-bottom: 60px;
}

.about-staff__content {
  max-width: 680px;
}


.about-profile__wrap {
  background: var(--gray);
  padding: 60px;
  
}

.about-profile__wrap h3 {
  margin-bottom: 40px;
}

.about-profile__wrap dl {
}

.about-profile__wrap dl dt {
  position: relative;
  color: var(--brown05);
  font-weight: bold;
  padding-left: 17px;
}

.about-profile__wrap dl dt::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  position: absolute;
  left: 3px;
  top: 11px;
}

.about-profile__wrap dl dd {
  position: relative;
  margin-bottom: 30px;
  padding-left: 14px;
}

.about-profile__wrap dl dd:not(:last-child)::after {
  content: '';
  width: 11px;
  height: 14px;
  background: url(../images/arrow-down.svg) no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -22px;
  left: 14px;
}

.profile-title__subtext {
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--brown05);
}

.message-sec {
  align-items: center;
  text-align: center;
  margin-bottom: 20px;
}

.message-cont {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}

.message-sec img {
  max-width: 798px;
}

@media (max-width: 768px) {
  .about-sec__cont {
    margin-bottom: 80px;
    row-gap: 40px;
  }
  
  .about-sec__cont.about-sozai {
    margin-bottom: 60px;
  }

  .about .content-wrap,
  .about .content-wrap.w50,
  .about .content-wrap.w64 {
    width: 100%;
  }

  .about .img-wrap {
    width: 100%;
  }

  .about-about__kokoyuta {
    flex-direction: column-reverse;
    row-gap: 40px;
  }

  .about-about__kokoyuta .img-wrap img {
    display: block;
    width: 100%;
    margin-left: auto;
  }

  .about-monotema .img-wrap {
    width: 76.533%;
    margin-bottom: 60px;
  }

  .sozai-contentwrap {
    width: 100%;
    max-width: 100%;
    margin-bottom: 40px;
  }

  .sozai-contentwrap img {
    width: 100%;
  }
  
  /* .sozai-imgwrap img {
    display: block;
    width: 40%;
    transform: translate(0, 0);
    margin-left: auto;
  } */

  .sozai-img02__wrap {
    position: relative;
    top: inherit;
  }
  
  .sozai-img02__wrap img {
    max-width: 100%;
  }

  .about-staff__content {
    max-width: 100%;
  }

  .about-profile__wrap {
    padding: 20px;
  }

  .about-profile__wrap h3 {
    margin-bottom: 24px;
  }


  .about .contact-sec__inner h2 {
    margin-bottom: 0;
  }

  .about-sozai {
    flex-direction: column-reverse;
  }

  .about-sozai.about-sozai01,
  .about-sozai.about-sozai02 {
    flex-direction: column;
  }

  .about-monotema .l-section__title {
    margin-bottom: 0;
  }
  
  .message-sec {
    row-gap: 40px;
    margin-bottom: 0;
  }

  .message-sec img {
    max-width: 100%;
  }

  .message-cont {
    text-align: left;
  }

}

/* bizページ */
/* ファーストビュー */
.biz-fv {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.biz-fv.l-section.large {
  padding-bottom: 120px;
}

.biz-fv h1 {
  margin-bottom: 80px;
}

.biz-fv__img {
  width: 100%;
  margin-bottom: 60px;
}

.biz-fv__text {
  text-align: center;
  margin-bottom: 40px;
}

.biz-fv__copy {
  width: fit-content;
  position: relative;
  font-weight: bold;
  color: var(--orange);
  margin: 0 auto 12px;
}

.biz-fv__copy::before {
  content: '';
  width: 15px;
  height: 17px;
  position: absolute;
  left: -20px;
  top: 10px;
  background: url(../images/deco01-l.svg);
}

.biz-fv__copy::after {
  content: '';
  width: 15px;
  height: 17px;
  position: absolute;
  right: -20px;
  top: 10px;
  background: url(../images/deco01-r.svg);
}

/* サービス */
.btob-fv__img {
  width: 100%;
  margin-bottom: 60px;
}

.biz h2 {
  margin-bottom: 40px;
}

.biz .contact-sec h2 {
  margin-bottom: 0;
}

.service-top {
  margin-bottom: 80px;
}  

.h3-line {
  position:  relative;
  margin-bottom: 54px;
}

.h3-line::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--orange);
  position: absolute;
  bottom: -14px;
  left: 0;
}

.service-point {
  margin-bottom: 80px
}

.point-list {
  column-gap: 12px;
}

.point-item {
  width: 25%;
  border-radius: 8px;
  background: var(--brown03);
}

.point-item img {
  width: 100%;
  border-radius: 8px 8px 0 0;
}

.point-item .point-detail {
  padding: 20px;
}

.point-item .point-detail h4 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 27px;;
  margin-bottom: 12px;
}

.service-machine {
  border: 1px solid var(--brown02);
  padding: 24px;
  margin-bottom: 120px;
}

.machine-detail {
  align-items: flex-start;
  column-gap: 40px;
}

.machine-text {
  flex: 1;
}

.machine-img {
  width: 240px;
}

.machine-wrap__inner {
  column-gap: 40px;
}

.video-thumbnail {
  
}

.video-note {
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: right;
  color: var(--brown05);
  margin-top: 4px;
}

.biz-sample__wrap {
  display: flex;
  column-gap: 8.4px;
}

.biz-profile .about-profile__wrap {
  background: var(--gray);
  padding: 40px;
  
}

.biz-profile .about-profile__wrap h3 {
  margin-bottom: 40px;
}

.biz-profile .about-profile__wrap dl {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.biz-profile .about-profile__wrap dl dt {
  width: 100px;
  white-space: nowrap;
  padding-left: 0;
}

.biz-profile .about-profile__wrap dl dt::before {
  content: none;
}

.biz-profile .about-profile__wrap dl dd {
  width: calc(100% - 112px);
  margin-bottom: 0;
  padding-left: 0;
}

.biz-profile .about-profile__wrap dl dd::after {
  content: none;
}

.biz-profile {
  margin-top: 80px;
}

@media (max-width: 768px) {
  .service-machine {
    margin-bottom: 80px;
  }
  .biz-fv h1 {
    margin-bottom: 40px;
  }

  .btob-fv__img {
    width: 100vw;
    margin-bottom: 40px;
  }

  .biz-fv__text {
    text-align: left;
  }

  .biz-fv.l-section.large {
    padding-bottom: 80px;
  }

  .service-top {
    margin-bottom: 60px;
  }

  .point-list {
    row-gap: 24px;
  }

  .point-item {
    width: 100%;
  }

  .machine-img {
    width: 100%;
    row-gap: 8px;
  }

  .machine-img__01 {
    width: 87%;
  }

  .machine-img__02 {
    width: 53%;
    margin-left: auto;
  }

  .machine-text {
    margin-bottom: 40px;
  }

  .biz-sample__wrap {
    flex-wrap: wrap;
    gap: 8px 7px;
  }

  .biz-sample__wrap img {
    width: calc((100% - 7px)/2);
    flex-wrap: wrap;
  }

  .biz-profile .about-profile__wrap {
    padding: 20px;
  }

  .biz-profile .about-profile__wrap h3 {
    margin-bottom: 24px;
  }

  .biz-profile .about-profile__wrap dl {
    flex-direction: column;
    gap: 0;
  }

  .biz-profile .about-profile__wrap dl dt {
    width: 100%;
  }

  .biz-profile .about-profile__wrap dl dd {
    width: 100%;
    margin-bottom: 12px;
  }

  .biz-profile .about .contact-sec__inner h2 {
    margin-bottom: 0;
  }
  
  .biz .contact-sec h2 {
    text-align: center;
  }

}

/* 事例紹介 */
.case-nav {
  height: 64px;
  background: var(--brown03);
  align-items: center;
  justify-content: flex-start;
  padding: 0 20px;
  column-gap: 24px;
  margin-bottom: 80px
}

.case-nav__item a {
  position: relative;
  color: var(--brown05);
  line-height: 1.3;
  padding-right: 20px;
}

.case-nav__item a::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background: url(../images/chevron_down.svg);
  position: absolute;
  top: 0;
  right: -4px;
}

.case-item {
  align-items: flex-start;
  column-gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--brown02);
}

.case-item img {
  width: 230px;
}

.case-detail {
  flex: 1;
}

.case-item .title {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.6;
  color: var(--brown05);
  margin-bottom: 12px;
}

.case-item .client-name {
  line-height: 1.6;
  color: var(--brown05);
  margin-bottom: 24px
}

.case-list__gyoushu {
  margin-bottom: 40px;
}

.case-item__gyoushu {
  margin-bottom: 24px;
  padding-left: 16px
}

.case-item__gyoushu .title-small {
  position: relative;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 4px;
  color: var(--brown05);
}

.case-item__gyoushu .title-small::before {
  content: '';
  display: block;
  width: 14px;
  height: 16px;
  background: url(../images/bean.svg) no-repeat;
  background-size: contain;
  position: absolute;
  left: -16px;
  top: 5px
}

.shop-link {
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
  line-height: 1.3;
  padding: 4px 0;
  color: var(--brown05);
  position: relative;
}

.shop-link img {
  width: 20px;
  height: 20px;
  margin: 0 0 4px 4px;
}

.biz-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 12px;
}

.biz-contact span {
  text-align: center;
}

/* モーダルウィンドウ全体を初期状態で非表示にし、画面全体を覆う */
.modal {
  display: none; /* 初期状態では非表示 */
  position: fixed; /* 画面に固定 */
  z-index: 1000; /* 他の要素より手前に表示 */
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow: auto;
  background-color: rgba(0,0,0,0.7); /* 半透明の黒い背景 */
}

/* モーダルコンテンツ（動画を囲む部分） */
.modal-content {
  margin: 0;
  padding: 20px;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 閉じるボタン */
.close {
  color: #fff;
  float: right;
  font-size: 40px;
  font-weight: bold;
  position: absolute;
  top: calc(50% - 330px);
  left: calc(50% + 440px - 32px );
  /* top: 10px; */
  /* right: 25px; */
  cursor: pointer;
}

/* ビデオサムネイル */
.video-thumbnail {
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.video-thumbnail:hover {
  opacity: 0.8;
}

.video-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

/* モーダル内の動画 */
#videoPlayer {
  width: 880px;
  height: auto;
  max-width: 100%;
  max-height: 100vh;
  object-fit: contain;
}

@media (max-width: 1000px) {
  .close {
    left: calc(100% - 60px);
  }
}

  @media (max-width: 768px) {
  .case-nav {
    height: auto;
    align-items: flex-start;
    padding: 20px;
    row-gap: 12px;
  }

  .case-item img {
    width: 100%;
    margin-bottom: 40px;
  }

  .case-item .client-name {
    font-size: 1.4rem;
  }

  .case-item .title {
    margin-bottom: 24px;
  }

  /* モーダルのモバイル対応 */
  .modal-content {
    margin: 0;
    padding: 15px;
    width: 100%;
    height: 100%;
  }

  .close {
    font-size: 30px;
    top: 5px;
    right: 15px;
    left: inherit;
  }

  /* モバイルでの動画サイズ */
  #videoPlayer {
    width: 100%;
  }
}

/* biz　お問い合わせ */
.case-wrap {
  position: relative;
}

.biz .contact-sec {
  margin-top: 20px;
}

.biz .contact-sec__inner {
  max-width: 960px;
  margin: 0 auto;
  border: 1px solid var(--brown02);
  padding: 40px;

}

.scroll-target {
  position: absolute;
  top: -84px; /* ヘッダー高 */
  visibility: hidden;
  pointer-events: none; 
}


@media (max-width: 768px) {
  .biz .contact-sec {
    padding: 80px 24px 60px;
    margin-top: 0;
  }
  
  
}

