﻿
/* --------------------------------------------------------------------------
   共通スタイル
-------------------------------------------------------------------------- */

/* リセットスタイル */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	overflow-x: hidden;
}

body {
	margin: 0px;
	padding: 0px;
	width: 100%;
	overflow-x: hidden;
	color: #232323;	
	background-color: #FFF;
}

h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form {
	margin: 0px;
	padding: 0px;
}

ul,ol {
	list-style-type: none;
}

img {
	border: none;
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}

img[data-hover] {
	transition: opacity 150ms ease-out;
}

.motion-ready .js-reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--motion-delay, 0ms);
  will-change: opacity, transform;
}

.motion-ready .js-reveal--fade {
  transform: none;
}

.motion-ready .js-reveal--left {
  transform: translate3d(-34px, 0, 0);
}

.motion-ready .js-reveal--right {
  transform: translate3d(34px, 0, 0);
}

.motion-ready .js-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.site-nav {
  transition:
    height 0.35s ease,
    background-color 0.35s ease,
    box-shadow 0.35s ease;
}

.site-nav.is-scrolled {
  height: 78px;
  background-color: rgba(255, 255, 255, 0.98);
  border-bottom-color: #E2DED4;
  box-shadow: 0 8px 24px rgba(35, 35, 35, 0.08);
}

.site-nav__link {
  position: relative;
  transition: color 0.3s ease;
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45em;
  width: 100%;
  height: 1px;
  background-color: #3D9A6D;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.35s ease;
}

.site-nav__link:hover::after,
.site-nav__link:focus-visible::after,
.site-nav__link--is-active::after {
  transform: scaleX(1);
  transform-origin: left center;
}

@media (prefers-reduced-motion: reduce) {
  .motion-ready .js-reveal,
  .site-nav,
  .site-nav__link,
  .site-nav__link::after {
    transition: none;
  }
}

input,textarea,select {
  margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-size: 1em;
}

form {
	margin: 0px;
}

table {
	border-collapse:collapse;
	font-size: 100%;
	border-spacing: 0;
}

form {
  margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

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

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



/* フォント基本設定　*/
:root {
  --font-ja: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  --font-sans-ja: "Noto Sans JP", sans-serif;
  --font-en-heading: "Tangerine", cursive;
  --font-en-body: "Cormorant Garamond", serif;
  --font-accent: "Zen Kaku Gothic New", sans-serif;
  --max-content: 1160px;
  --color-text: #232323;

  /* 下層ページ共通レスポンシブ変数（service基準） */
  --sp-section-gap: 80px;       /* セクション間の余白 */
  --sp-heading-gap: 32px;       /* 見出し画像/タイトル下の余白 */
  --sp-block-gap: 24px;         /* 内部ブロック間の余白 */
  --sp-text-size: 14px;         /* 本文フォントサイズ */
  --sp-heading-size: 20px;      /* 見出し(h4等)フォントサイズ */
  --sp-title-size: 18px;        /* ページ大見出し(h3)フォントサイズ */
  --sp-text-line: 1.9;          /* 本文行間 */
  --sp-title-img-width: 160px;  /* lower_contents_title画像の幅 */
  --sp-title-img-height: 48px;  /* lower_contents_title画像の高さ */
}

.heading-en {
  font-family: var(--font-en-heading);
  font-size: 2.6rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.en-text {
  font-family: var(--font-en-body);
  letter-spacing: 0.04em;
  line-height: 1.6;
}

.accent {
  font-family: var(--font-accent);
  font-weight: 500;
  letter-spacing: 0.04em;
}


/* 共通デザインスタイル　*/
a {
	color: #232323;
	text-decoration: none;
}

a:hover img.alpha {
	opacity: 0.8;
	filter: alpha(opacity=80);
}

.header_tel a,
.table_tel a,
.footer_tel a,
.bottom_tel a,
.tel a {
	text-decoration: none;
}

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

body {
  font-family: var(--font-ja);
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: #232323;
}





/* --------------------------------------------------------------------------
   ヘッダー
-------------------------------------------------------------------------- */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  width: 100%;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.site-nav__inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  width: 1120px;
  max-width: var(--max-content);
  margin-inline: auto;
  padding: 1.125rem 1.2rem;
}

.site-nav__brand {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
}

.site-nav__brand img {
  display: block;
  width: 216px;
  height: auto;
}

.site-nav__brand:hover {
  text-decoration: none;
  opacity: 0.7;
}

.site-nav__shop-link,
.site-nav__toggle {
  display: none;
}

.site-nav__list {
  height: 45px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  color: #272525;
}

.site-nav__list #nav_shop::after {
  content: url(../images/header/shop_header_hover.png);
  position: absolute;
  top: 15%;
  margin-left: 0.5%;
}

.site-nav__link {
  font-size: 0.875rem;
  color: #fff;
  white-space: nowrap;
  letter-spacing: 0.08em;
}

.site-nav.is-scrolled .site-nav__link {
  color: var(--color-text);
}

.site-nav__link:hover {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.site-nav.is-scrolled .site-nav__link:hover {
  color: #8A8F8C;
}

.site-nav__link--is-active {
  font-weight: 600;
  text-underline-offset: 0.35em;
  text-decoration-thickness: 1px;
}



/* ヘッダーレスポンシブ：768px以下 */
@media (max-width: 768px) {
  .site-nav {
    height: 72px;
    background-color: rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: none;
  }

  .site-nav.is-scrolled {
    height: 72px;
    background-color: rgba(255, 255, 255, 0.98);
    border-bottom-color: #E2DED4;
    box-shadow: 0 8px 24px rgba(35, 35, 35, 0.08);
  }

  .site-nav__inner {
    position: relative;
    width: 100%;
    max-width: none;
    height: 72px;
    padding: 0 20px;
    gap: 18px;
  }

  .site-nav__brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .site-nav__brand img {
    width: min(216px, 44vw);
  }

  .site-nav__shop-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-family: var(--font-en-body);
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    color: #fff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .site-nav__toggle {
    display: inline-flex;
    position: relative;
    align-items: center;
    justify-content: center;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    margin: 0 -10px 0 0;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .site-nav__toggle span {
    position: absolute;
    width: 38px;
    height: 2px;
    background-color: #fff;
    transition: transform 0.25s ease;
  }

  .site-nav.is-scrolled .site-nav__shop-link {
    color: #232323;
  }

  .site-nav.is-scrolled .site-nav__toggle span {
    background-color: #232323;
  }

  .site-nav__toggle span:first-child {
    transform: translateY(-5px);
  }

  .site-nav__toggle span:last-child {
    transform: translateY(5px);
  }

  .site-nav.is-menu-open .site-nav__toggle span:first-child {
    transform: rotate(18deg);
  }

  .site-nav.is-menu-open .site-nav__toggle span:last-child {
    transform: rotate(-18deg);
  }

  .site-nav__list {
    position: absolute;
    top: 72px;
    left: 0;
    display: block;
    width: 100%;
    height: auto;
    max-height: 0;
    overflow: hidden;
    background-color: #2F3A35;
    transition: max-height 0.35s ease;
  }

  .site-nav__list li a{
    font-size: 16px;
  }

  .site-nav.is-menu-open .site-nav__list {
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }

  body.is-nav-open {
    overflow: hidden;
  }

  .site-nav__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .site-nav__item#nav_shop {
    display: none;
  }

  .site-nav__link {
    display: block;
    padding: 24px 20px;
    font-size: 18px;
    font-weight: 600;
    color: #F8F7F2;
    letter-spacing: 0.08em;
  }

  .site-nav.is-scrolled .site-nav__list .site-nav__link {
    color: #F8F7F2;
  }

  .site-nav__link:hover,
  .site-nav__link:focus-visible,
  .site-nav__link--is-active {
    color: #fff;
    background-color: rgba(61, 154, 109, 0.16);
  }

  .site-nav__list #nav_shop::after {
    content: none;
  }
}





/* --------------------------------------------------------------------------
   フッター
-------------------------------------------------------------------------- */

.footer {
  background-color: #D9D9D9;
  margin-top: 280px;
  color: #333333;
  font-size: 14px;
}

.footer__inner {
  width: min(100% - 40px, 1160px);
  margin: 0 auto;
  padding: 100px 0 88px;
}

.footer__middle,
.footer__bottom {
  margin: 0 33px;
}


/* 上段：ロゴ */
.footer__top {
  margin-bottom: 40px;
  text-align: left;
}

.footer__logo {
  display: block;
  width: 200px;
  height: auto;
  margin: 0;
}


/* 中段：会社情報、SNS、Contact */
.footer__middle {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: nowrap;
}

.footer__info {
  width: 300px;
  height: auto;
  flex: 0 1 auto;
  white-space: nowrap;
}

.footer__address {
  font-size: 15px;
  line-height: 2.0;
  margin: 0;
  display: inline;
}

.footer__info p {
  display: inline;
  margin: 0 auto;
  margin-right: 15px;
}

.footer__tel-link {
  color: #333333;
  text-decoration: none;
  transition: opacity 0.3s ease, border-bottom 0.3s ease;
  border-bottom: 1px solid transparent;
}

.footer__tel-link:hover {
  opacity: 0.7;
  border-bottom-color: #232323;
}

.footer__sns {
  flex: 0 1 auto;
  margin-left: auto;
}

.footer__sns-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer__sns-link:hover {
  opacity: 0.7;
}

.footer__contact {
  flex: 0 1 auto;
}

.footer__contact-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer__contact-link:hover {
  opacity: 0.7;
}

.footer__icon {
  height: 24px;
  width: auto;
  display: block;
}


/* Instagramアイコンホバースタイル */
.footer__sns-link .footer__icon {
  width: 110px;
  height: 36px;
  transition: all 0.3s ease;
}

.footer__sns-link:hover .footer__icon {
  opacity: 1;
}


/* Contactアイコンホバースタイル */
.footer__contact-link .footer__icon {
  width: 110px;
  height: 37px;
  transition: all 0.3s ease;
}

.footer__contact-link:hover .footer__icon {
  opacity: 1;
}


/* 下段：ナビゲーション、Online Shop */
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
 
}

.footer__nav {
  flex: 1 1 auto;
  min-width: 300px;
}

.footer__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__nav-item {
  margin: 0;
}

.footer__link {
  font-size: 13px;
  color: #232323;
  text-decoration: none;
  transition: opacity 0.3s ease, border-bottom 0.3s ease;
  border-bottom: 1px solid transparent;
  line-height: 1.8;
}

.footer__shop {
  flex: 0 1 auto;
}

.footer__shop a {
  width: 150px;
  height: 56px;
}

.footer__shop a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer__shop-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer__shop-link:hover {
  opacity: 0.7;
}

.readmore a,
.inquiry_cta_button,
.footer__sns-link,
.footer__contact-link {
  display: inline-block;
}

.readmore a,
.inquiry_cta_button {
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.35s ease;
}

.readmore a:hover,
.readmore a:focus-visible,
.inquiry_cta_button:hover,
.inquiry_cta_button:focus-visible {
  transform: translateY(-4px);
  filter: drop-shadow(0 8px 14px rgba(35, 35, 35, 0.12));
}

.footer__nav ul li {
  font-weight: bold;
}

.footer__nav ul li a:hover {
  border-bottom-color: #777777;
}


/* 最下部：コピーライト */
.footer__copyright {
  margin: 64px 0 0;
}

.footer__copyright-inner {
  border-top: 1px solid #979797;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 56px 0 0;
  text-align: center;
}

.footer__logo-small {
  display: inline-block;
}

.footer__logo-small img {
  width: 100px;
  height: 85px;
  object-fit: contain;
}

.footer__copyright-text {
  font-family: var(--font-accent);
  font-size: 12px;
  color: #777;
  margin: 16px 0 0;
  letter-spacing: 0.01em;
  line-height: 1.8;
  flex: 0 1 auto;
}



/* フッターレスポンシブ：768px以下 */
@media (max-width: 768px) {
 .footer {
    margin-top: 120px;
  }

  .footer__inner {
    width: auto;
    padding: 40px 20px;
  }

  .footer__top {
    margin-bottom: 30px;
    text-align: center;
  }

  .footer__logo {
    height: auto;
    width: 150px;
  }

  .footer__middle {
    gap: 20px;
    margin-bottom: 30px;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__info {
    width: 100%;
    white-space: normal;
  }

  .footer__info p {
    display: block;
    margin-right: 0;
    margin-bottom: 8px;
  }

  .footer__sns {
    margin-left: 0;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 30px;
  }

  .footer__nav {
    width: 100%;
    min-width: auto;
  }

  .footer__nav-list {
    flex-direction: column;
    gap: 12px;
  }

  .footer__shop {
    width: 100%;
  }

  .footer__shop-link {
    width: 150px;
  }

  .footer__divider {
    margin: 30px 0;
  }

  .footer__copyright {
    padding: 24px 20px;
  }

  .footer__copyright-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer__logo-small-img {
    height: 30px;
  }
}





/* --------------------------------------------------------------------------
   ページデザイン
-------------------------------------------------------------------------- */

/* 下層ページ共通スタイル */

.page_main_inner {
  width: min(100% - 40px, 1160px);
  margin: 0 auto;
}

.page_mv img {
  width: 100%;
  height: 732px;
  object-fit: cover;
  object-position: center center;
  animation: page_mv_ken_burns 7s ease-out both;
}

.page_mv {
  overflow: hidden;
}



/* 下層ページ共通デザイン レスポンシブ：768px以下 */
@media only screen and (max-width: 768px) {
  /* メインビジュアル */
  .page_mv img {
    height: clamp(360px, 72svh, 560px);
    object-position: center center;
  }

  /* ページメインコンテンツ */
  .page_main_inner {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
  }

  /* セクションタイトル画像：共通で縮小・左寄せ */
  .lower_contents_title {
    width: 90%;
    max-width: 200px;
    height: auto;
    text-align: left;
    margin-left: 0;
    margin-right: auto;
  }

}



/* セクションタイトル画像 */
.top_contents_title,
.lower_contents_title {
  margin-bottom: 48px;
}

.lower_contents_title {
  height: 84px;
  max-width: 300px;
}

.top_contents_title img,
.lower_contents_title img {
  display: block;
  max-width: 100%;
  height: auto;
}

.lower_contents_title p:last-child {
  font-size: 16px;
  text-align: center;
}


/* 食の1文字のみコーポレートカラーに変更 */
span.green {  
  color: #3D9A6D; 
}






/* ここからページ固有スタイル */

/* --------------------------------------------------------------------------
   01.Topページ
   -------------------------------------------------------------------------- */

/* 共通スタイル*/
.top_inner01 {
  width: 1076px;
  margin: 0 auto;
}


/* 改行デザイン */
.line_break {
  display: block;
}


/* Read More アイコンデザイン */
.readmore a {
  width: 100%;
}

.readmore img {
  display: block;
  max-width: 145px;
  height: auto;
  object-fit: contain;
}

.top_page_main .readmore {  /* トップページでは常に要素内右寄せ */
  width: 100%;
}

.top_page_main .readmore img {
  margin-left: auto;
  margin-right: 40px;
}


/* ここまで 共通スタイル*/



/* メインビジュアルSec */
.mv_full {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  /*background-color: rgba(215, 215, 215, 0.1);*/
}

.top_page_main {
  overflow-x: hidden;
}

.mv_full video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  animation: mv_ken_burns 14s ease-out both;
}

.mv_full video.sp_video {
  display: none;
}


/* 企業メッセージSec */
.corporate_message {
  margin: 100px auto;
}

.corporate_message h2 {
  font-size: 32px;
  font-weight: 300;
  line-height: 1.8em;
  text-align: center;
}


/* 企業ミッションSec */
.mission {
  width: 100%;
  padding: 88px 0;
  background-color: #F6F6F6;
}

.mission h3 {
  margin: 0 auto 64px;
  font-size: 32px;
  font-weight: 300;
  line-height: 2em;
  text-align: center;
}

.mission h3 span:nth-of-type(2) {
  margin-top: 16px;
  font-size: 34px;
  letter-spacing: 2.4px;
}

.mission .mission_text {
  text-align: center;
}

.mission .mission_text p {
  margin: 0 auto 40px;
  line-height: 2em;
  text-align: center;
}


/* 企業イメージSec */
.corporate_image .parallax img {
  width: 100%;
  object-fit: cover;
  filter: brightness( 75% );
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.08);
  will-change: transform;
}


/* 事業紹介Sec */
.top_service {
  margin: 128px 0;
}

.top_service .top_contents_title {
  max-width: 195px;
  height: 84px;
  margin: 0 auto 100px;
}

.top_service_contents ul {
  display: flex;
  align-items: center;
}

.top_service_contents ul li {
  width: 50%;
  height: 500px;
  align-self: center;
  text-align: center;
}

.top_service_contents ul li a {
  width: 90%;
  height: 100%;
  margin: 0 auto;
  display: inline-block;
  vertical-align: middle;
  transition:
  transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
  box-shadow 0.45s ease;
}

.top_service_contents ul li a:hover,
.top_service_contents ul li a:focus-visible {
  transform: translateY(-8px);
}

.top_service_contents ul li a h4 {
  margin: 48px auto 40px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.8em;
  color: #222426;
}

.top_service_contents ul li a p {
  margin: 32px 0 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 2em;
  color: #37413D;
}

.top_service_contents ul li a > img {
  display: block;
  max-width: 380px;
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.45s cubic-bezier(0.33, 1, 0.68, 1);
}

.top_service_contents ul li a:hover > img,
.top_service_contents ul li a:focus-within > img {
  transform: scale(0.9) translateY(6px);
}

@media (prefers-reduced-motion: reduce) {
  /* 事業紹介Sec レスポンシブ：768px以下 */
  .top_service_contents ul li a > img {
    transition: none;
  }
}


/* 産直事業 */
#topSantyoku {
  background-color: #F3F1EB;
}

/* 産地視察コーディネート*/
#topCordinate {
  background-color: #F1F4F2;
}

.top_service_text {
  margin: 116px auto 48px;
  text-align: center;
}

.top_service_text p {
  font-size: 18px;
  list-style: 2em;
}


/* お取引先紹介Sec */
.top_partners {
  margin: 188px auto 0;
}

.top_partners_contents {
  margin: 0 auto 80px;
}

.top_partners .top_contents_title {
  display: flex;
  justify-content: flex-end;
}

.top_partners_contents ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top_partners_contents ul li:hover {
  opacity: 0.8;
}

.top_partners_contents ul li a {
  display: block;
  overflow: hidden;
}

.top_partners_contents ul li img {
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.top_partners_contents ul li a:hover img,
.top_partners_contents ul li a:focus-visible img {
  transform: scale(1.05);
}

.top_partners_text {
  margin: 0 0 56px 64px;
}

.top_partners_text h4 {
  margin-bottom: 32px;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.8em;
}

.top_partners_text .top_partners_details {
  line-height: 2em;
}


/* オンラインショップSec */
.top_onlineShop {
  width: 100%;
  margin: 188px 0 0;
}

.top_onlineShop_loop {
  overflow: hidden;
  width: 100%;
}

.top_onlineShop_banner {
  width: 100%;
  height: 665px;
  background-image: url(../images/contents/01.top/onlineShop_back.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.shop_innner {
  width: 70%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.shop_innner .shop_inner_left {
  width: 496px;
  margin-left: 2em;
  align-self: center;
}

.shop_innner .shop_inner_right {
  margin: 0 2em 6em 0;
  align-self: flex-end;
}

.shop_innner .shop_inner_right:hover {
  opacity: 0.8;
}


/* ループ文字（figure 内画像を左方向へ無限スクロール） */
@keyframes top_online_shop_loop_scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@-webkit-keyframes top_online_shop_loop_scroll {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes mv_ken_burns {
  from {
    transform: scale(1.06);
  }

  to {
    transform: scale(1);
  }
}

@keyframes page_mv_ken_burns {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1);
  }
}

.top_onlineShop_loop .loop_fadein {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  width: max-content;
  min-width: max-content;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
  -webkit-animation: top_online_shop_loop_scroll 50s linear infinite;
  animation: top_online_shop_loop_scroll 50s linear infinite;
  -webkit-animation-play-state: running;
  animation-play-state: running;
}

.top_onlineShop_loop figure {
  flex-shrink: 0;
  margin: 0;
}

.top_onlineShop_loop figure img {
  display: block;
  width: auto;
  max-width: none;
  height: auto;
}

@media (prefers-reduced-motion: reduce) {
  .top_onlineShop_loop .loop_fadein {
    -webkit-animation-duration: 90s;
    animation-duration: 90s;
  }

  .mv_full video,
  .page_mv img {
    animation: none;
  }
}


/* お知らせSec */
.top_news {
  padding: 128px 0;
  background-color: rgba(217, 217, 217, 0.2);
}

.top_news ul {
  width: 70%;
  margin-left: auto;
  margin-right: 2em;
}

.top_news ul li {
  height: 40px;
  margin: 0 0 4em;
  display: flex;
  align-items: flex-start;
  line-height: 1em;
  border-bottom: 2px solid #D9D9D9;
}

.top_news ul li:hover {
  border-bottom: 1px solid #3D9A6D;
}

.top_news ul li a {
  display: flex;
  align-items: flex-start;
  height: 40px;
  line-height: 1em;
  transition: transform 0.35s ease;
}


.top_news ul a:hover,
.top_news ul a:focus-visible {
  transform: translateX(10px);
}

.top_news ul li time {
  margin-right: 2em;
  font-family: var(--font-accent);
  font-size: 16px;
  letter-spacing: 0.1em;
  font-weight: bold;
  color: #3D9A6D;
}

.top_news ul li p:first-of-type {
  font-weight: bold;
}

.top_news ul li p:nth-of-type(2) {
  margin-left: auto;
}


/* お問い合わせSec */
.top_contact {
  padding: 0 0 128px;
  background-color: rgba(217, 217, 217, 0.2);
}

.top_contact .top_inner01 {
  border: 1px solid #DEDEDE;
  background-color: #FFF;
  padding: 1em 0;
}

.top_contact .top_inner02 {
  width: 97%;
  margin: 0 auto;
  border: 1px solid #DEDEDE;
}

.top_contact .top_contents_title {
  margin: 48px 0;
  display: flex;
  justify-content: flex-end;
}

.top_contact .top_contact_contents {
  width: 50%;
  margin: 0 auto 24px;
  text-align: center;
  font-size: 18px;
  line-height: 2em;
  letter-spacing: 0.08em;
}



/* トップページ固有デザイン レスポンシブ：768px以下 */
@media only screen and (max-width: 768px) {

  .top_inner01 {
    width: calc(100% - 48px);
    margin: 0 auto;
    padding: 0;
  }

 
  /* メインビジュアル */
  .mv_full {
    min-height: 100svh;
  }

  .mv_full video {
    height: 100svh;
  }

  .mv_full video.pc_video {
    display: none;
  }

  .mv_full video.sp_video {
    display: block;
  }


  /* 企業メッセージ */
  .corporate_message {
    margin: 72px auto;
  }

  .corporate_message h2 {
    font-size: 24px;
    line-height: 1.9;
  }


  /* 企業ミッション */
  .mission {
    padding: 64px 0 120px;
  }

  .mission h3 {
    margin-bottom: 40px;
    font-size: 20px;
    line-height: 1.8;
  }

  .mission h3 span:nth-of-type(2) {
    margin-top: 16px;
    font-size: 20px;
    letter-spacing: 0.08em;
  }

  .mission .mission_text p {
    margin-bottom: 28px;
    line-height: 1.9;
    text-align: left;
  }


  /* 企業イメージ */
  .corporate_image .parallax img {
    height: 360px;
  }

  .top_page_main .readmore img {
    margin-right: 0;
  }


  /* 事業紹介 */
  .top_service {
    margin: 0;
    padding: 120px 0 88px;
  }

  .top_contents_title img {
    width: 82%;
  }

  .top_service .top_contents_title {
    height: auto;
    margin-bottom: 56px;
  }

  .top_service_contents ul {
    flex-direction: column;
  }

  .top_service_contents ul li {
    width: 100%;
    height: auto;
  }

  .top_service_contents ul li a {
    width: 100%;
    padding: 44px 20px;
  }

  .top_service_contents ul li a h4 {
    margin: 0 auto 28px;
    font-size: 18px;
    line-height: 1.8;
  }

  .top_service_contents ul li a p {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.8;
  }

  .top_service_contents ul li a > img {
    max-width: 280px;
  }

  .top_service_text {
    margin: 56px auto 32px;
    text-align: left;
  }

  .top_service_text p {
    font-size: 16px;
    line-height: 1.9;
  }


  /* お取引先紹介 */
  .top_partners {
    margin: 0;
    padding: 0 0 88px;
  }

  .top_partners_contents {
    margin: 88px 0 48px;
  }

  .top_partners_contents ul {
    flex-direction: column;
    gap: 20px;
  }

  .top_partners_contents ul li,
  .top_partners_contents ul li img {
    width: 100%;
  }

  .top_partners .top_contents_title {
    justify-content: flex-start;
    padding-top: 48px;
  }

  .top_partners_text {
    margin: 40px 0 36px;
  }

  .top_partners_text h4 {
    margin-bottom: 24px;
    font-size: 24px;
    line-height: 1.7;
  }

  .top_partners_text .top_partners_details {
    line-height: 1.9;
  }


  /* オンラインショップ */
  .top_onlineShop {
    margin-top: 64px;
  }

  .top_onlineShop_loop figure img {
    height: 64px;
  }

  .top_onlineShop_banner {
    height: auto;
    min-height: 520px;
  }

  .shop_innner {
    width: 100%;
    padding: 56px 20px;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
  }

  .shop_innner .shop_inner_left {
    width: min(100%, 360px);
    margin: 24px 0 0;
  }

  .shop_innner .shop_inner_right {
    margin: 40px 0 0;
    align-self: flex-end;
  }

  .shop_innner .shop_inner_right img {
    width: 120px;
    height: auto;
  }


  /* お知らせ */
  .top_news {
    padding: 88px 0;
  }

  .top_news .top_contents_title img {
    width: 118px;
  }

  .top_news ul {
    width: 100%;
    margin: 40px 0 0;
  }

  .top_news ul li {
    height: auto;
    display: block;
    margin: 0 0 2em;
    padding: 0;
    
  }

  .top_news ul li a {
    height: auto;
    min-height: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.7;
    padding: 20px 0 24px;
  }

  .top_news ul li time {
    margin-right: 0;
    font-size: 14px;
  }

  .top_news ul li p:nth-of-type(2) {
    margin-left: 0;
  }

  .top_news ul li p img {
    width: 90%;
    height: auto;
  }


  /* お問い合わせ */
  .top_contact {
    padding: 0 20px 80px;
  }

  .top_contact .top_inner01 {
    width: 100%;
    padding: 8px;
  }

  .top_contact .top_inner02 {
    width: 100%;
  }

  .top_contact .top_contents_title {
    justify-content: center;
    margin: 40px 0 32px;
  }

  .top_contact .top_contact_contents  {
    width: 100%;
    margin: 0 auto 28px;
    padding: 0 12px;
    font-size: 16px;
    line-height: 1.9;
    text-align: left;
  }

  .top_contact .top_contact_contents p {
    width: 90%;
    margin: 0 auto;
  }

  .top_contact .top_contact_contents p br {
    display: none;
  }

  .inquiry_cta_img {
    width: min(88%, 320px);
    height: auto;
    margin: 0 auto;
  }

}





/* --------------------------------------------------------------------------
   02.About
   -------------------------------------------------------------------------- */

/* イントロSec　*/
.about_intro {
  width: 1076px;
  margin: 128px auto 300px;
}

.about_message p {
  margin-bottom: 40px;
  font-size: 18px;
  letter-spacing: 0.34px;
  line-height: 40px;
}

.about_message p:nth-of-type(1) {
  margin-bottom: 56px;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 2.0px;
}

.about_message h3 {
  margin-bottom: 56px;
  font-size: 36px;
  font-weight: 300;
  color: #37413D;
  letter-spacing: 5.4px;
  line-height: 2.5em;
}

.about_contents {
  width: 100%;
  margin-bottom: 160px;
  background-color: rgba(215, 215, 215, 0.1);
}

.about_contents:last-child {
  margin-bottom: 0;
}


/* 偶数番目のセクションタイトルは左寄せ、奇数番目のセクションタイトルは右寄せにする */
.about_contents:nth-of-type(even) .lower_contents_title {
  text-align: left;
  margin-bottom: 48px;
  margin-left: -150px;
  margin-right: auto;
}

.about_contents:nth-of-type(odd) .lower_contents_title {
  text-align: right;
  margin-bottom: 48px;
  margin-left: auto;
  margin-right: -150px;
}

/* タイトル画像 表示切替 */
.sp_lower_contents_title {
  display: none;
}


/* 代表挨拶Sec　*/
#greeting {
  padding-bottom: clamp(64px, 8vw, 120px);
}

.about_greeting {
  margin: clamp(32px, 5vw, 64px) 0 0;
}

.about_greeting_contents {
  width: 1076px;
  margin: 0 auto;
}

.about_greeting__image {
  width: 100%;
  height: auto;
  margin: 0 auto clamp(32px, 5vw, 56px);
}

.about_greeting__image img {
  width: 100%;
  height: auto;
  display: block;
}

.about_greeting__message {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.about_greeting__message p {
  margin-bottom: 1.2em;
  font-size: 18px;
}

.about_greeting__message .about_greeting__subtitle {
  width: 100%;
  margin-bottom: 32px;
  font-size: clamp(22px, 2.6vw, 28px);
  letter-spacing: 2.4%;
  color: #37413D;
}

.about_greeting_syomei {
  width: fit-content;
  margin: 64px 0 0 auto;
}

.about_greeting_syomei .syomei01 {
  margin: 32px 0 0;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 3.6%;
}

.about_greeting_syomei .syomei_flex {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.about_greeting_syomei .syomei_flex p:first-child {
  margin-right: 16px;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 8%;
  color: #1B1B1B;
}

.about_greeting_syomei .syomei_flex p:last-child {
  font-family: var(--font-en-body); 
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 2%;
  color: #8C8782;
} 

@media only screen and (max-width: 1120px) {
  .about_greeting_contents {
    width: 100%;
    padding: 0 20px;
  }
}


/* 会社概要Sec　*/
.about_list {
  border-top: 1px solid #CCCCCC;
  width: 1076px;
  margin: 0 auto;
  padding: 64px 0 100px;
  letter-spacing: 0.6px;
}

.about_list dl {
  width: 1000px;
  margin: 0 auto;
}

.about_row {
  display: flex;
  align-items: center;
  height: 60px;
  border-bottom: 1px solid #CCCCCC;
}

.about_row:last-of-type {
  height: 80px;
}

.about_list dl dt {
  width: 240px;
  height: auto;
}


/* アクセスSec　*/
.about_map {
  width: 1075px;
  height: 425px;
  margin: 0 auto;
  padding-bottom: 56px;
}

.about_map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}


/* Aboutページ レスポンシブ：768px以下 */
@media only screen and (max-width: 768px) {
  .about_intro {
    width: 100%;
    margin: 64px 0 120px;
    padding: 0 20px;
  }

  .about_message h3 {
    margin-bottom: 32px;
    font-size: 24px;
    letter-spacing: 1.2px;
    line-height: 1.8;
  }

  .about_message p {
    margin-bottom: var(--sp-block-gap);
    font-size: var(--sp-text-size);
    letter-spacing: 0.02em;
    line-height: var(--sp-text-line);
  }

  .about_message p:nth-of-type(1) {
    margin-bottom: 32px;
    font-size: 16px;
    letter-spacing: 0.8px;
    font-weight: 300;
  }

  .about_message p br:nth-of-type(1) {
    display: none;
  }

  .about_contents {
    width: 100%;
    margin-bottom: var(--sp-section-gap);
    padding: 0 20px;
    background-color: transparent;
  }

  #greeting {
    padding: 0 20px 64px;
    background-color: rgba(215, 215, 215, 0.1);
  }


  /* タイトル画像 切り替え/デザイン */
  .about_contents .lower_contents_title  {
    display: none;
  }

  .sp_lower_contents_title {
    display: block;
    width: 50%;
    max-width: 164px;
    margin-bottom: 2em;
  }

  .about_contents:nth-of-type(even) .lower_contents_title,
  .about_contents:nth-of-type(odd) .lower_contents_title {
    margin-left: 0;
    margin-right: 0;
  }


  .about_greeting {
    margin: var(--sp-block-gap) 0 0;
  }

  .about_greeting_contents {
    width: 100%;
    padding: 0;
  }

  .about_greeting__image {
    width: 100%;
    margin-bottom: var(--sp-heading-gap);
  }

  .about_greeting__message {
    width: 100%;
  }

  .about_greeting__message p {
    margin-bottom: var(--sp-block-gap);
    font-size: var(--sp-text-size);
    line-height: var(--sp-text-line);
  }

  .about_greeting__message .about_greeting__subtitle {
    margin-bottom: var(--sp-heading-gap);
    font-size: var(--sp-heading-size);
    letter-spacing: 0.08em;
    line-height: 1.7;
  }

  .about_greeting_syomei {
    width: fit-content;
    max-width: 100%;
    margin: 24px 0 0 auto;
  }

  .about_greeting_syomei .syomei01 {
    margin: 16px 0 0;
    font-size: 14px;
    letter-spacing: 1.2px;
  }

  .about_greeting_syomei .syomei_flex {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .about_greeting_syomei .syomei_flex p:first-child {
    margin-right: 12px;
    font-size: 18px;
  }

  .about_greeting_syomei .syomei_flex p:last-child {
    font-size: 16px;
  }

  .about_list {
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
  }

  .about_list dl {
    width: 100%;
  }

  .about_row {
    height: auto;
    flex-wrap: wrap;
    border-bottom: 1px solid #CCCCCC;
    padding: 16px 0;
  }

  .about_row:last-of-type {
    height: auto;
  }

  .about_list dl dt {
    width: 100%;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: var(--sp-text-size);
  }

  .about_list dl dd {
    width: 100%;
    font-size: var(--sp-text-size);
    line-height: 1.8;
  }

  .about_map {
    width: 100%;
    height: 300px;
    margin: 0 auto;
    padding: 0 20px 40px;
  }


  

}





/* --------------------------------------------------------------------------
   03.Service
   -------------------------------------------------------------------------- */
  
   /* 導入Sec */
  #service_title {
    margin-top: 128px;
    font-size: 24px;
    letter-spacing: 1.4px;
  }

  section[aria-labelledby="service_title"] {
    margin-bottom: 264px;
  }

  section[aria-labelledby="service_title"] p:first-of-type {
    font-size: 18px;
    letter-spacing: 1.2px;
    margin: 32px auto 40px;
  }

  .service_intro p:first-child {
    margin: 0;
    padding: 0;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 16px;
    letter-spacing: 1.5px;
    text-align: center;
}

  .service_intro p:last-child {
    margin: 6px 0 48px 0;
    padding: 0;
    font-size: 30px;
    letter-spacing: 2.4px;
    text-align: center;
  }


   /* 組織図Sec */ 
  .soshikizu-desktop img,
  .soshikizu-mobile img {
    width: 100%;
    height: auto;
    display: block;
  }

  .soshikizu-desktop {
    display: block;
  }

  .soshikizu-mobile {
    display: none;
  }

  .soshikizu-mobile img {
    margin-bottom: 20px;
  }


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

    .soshikizu-mobile {
      display: block;
    }
  }


/* 事業内容詳細Sec */
  #service_details {
    width: 100%;
  }

  .service_contents {
    margin-bottom: 160px;
  }

  .service_contents_box {
    border-top: 1px solid #DDD;
    border-bottom: 1px solid #DDD;
  }


  /* 奇数番目のセクションタイトルは左寄せ、偶数番目のセクションタイトルは右寄せにする */
  .service_contents:nth-of-type(odd) .lower_contents_title {
    text-align: left;
    margin-bottom: 48px;
    margin-left: 0;
  }

  .service_contents:nth-of-type(even) .lower_contents_title {
    text-align: right;
    margin-bottom: 48px;
    margin-left: auto;
  }

  .service_contents_main {
    width: 1080px;
    margin: 48px auto;
    display: flex;
    gap: 16px;
    justify-content: space-around;
    align-items: center;
  }

  .service_contents:nth-of-type(even) .service_contents_main {
    flex-direction: row-reverse;
  }


  /* フレックスデザイン  一部デザイン04.partnersと共通デザインあり */
  .service_flex_item {
    flex: 1;
    margin: 50px auto 50px 0;
  }

  .service_flex_item .flex_item_img {
    width: 475px;
    height: 315px;
  }

  .service_flex_item .flex_item_img img {
    width: 100%;
    height: auto;
    display: block;
  }

  .flex_item_heading {
    font-family: var(--font-ja);
    font-size: 28px;
    margin: 0 0 40px 40px;
  }

  .flex_item_text {
    font-family: var(--font-ja);
    width: 384px;
    margin-left: 64px;
  }

  .service_contents:nth-of-type(even) .flex_item_heading {
    margin: 0 40px 40px 0;
  }

  .service_contents:nth-of-type(even) .flex_item_text {
    margin-right: 40px;
    margin-left: 24px;
  }

  .service_contents:nth-of-type(even) .flex_item_img {
    text-align: right;
    margin-left: auto;
  }


  /* お問い合わせSec */
  .inquiry_cta {
    text-align: center;
    padding: 40px 0;
  }

  .inquiry_cta_text {
    font-family: var(--font-ja);
    font-size: 18px;
    margin-bottom: 40px;
  }

  .inquiry_cta_button {
    display: inline-block;
    text-decoration: none;
  }

  .inquiry_cta_img {
  display: block;
  max-width: 100%;
  height: auto;
  transition: opacity 0.3s ease;
}



/* Seviceページ レスポンシブ：768px以下 */
  @media (max-width: 768px) {

  /* フォントサイズ調整 */
  #serviceMission .service_intro_text {
    font-size: 16px;
    text-align: left;
  }

  #serviceMission .service_intro_text02  {
    width: 98%;
    font-size: 18px;
    text-align: left;
  }

  /* Service詳細セクション：縦並びに統一 */
  #service_details {
    width: 100%;
    padding: 0 20px;
  }

  #service_details .service_contents {
    margin-bottom: 120px;
  }

  .service_contents {
    margin-bottom: var(--sp-section-gap);
  }

  .service_contents_box {
    border: none;
  }

  /* すべてのセクションタイトルを統一（左寄せ） */
  .service_contents:nth-of-type(odd) .lower_contents_title,
  .service_contents:nth-of-type(even) .lower_contents_title {
    text-align: left;
    margin: 0 0 var(--sp-heading-gap) 0;
    max-width: 100%;
  }

  /* 横並びレイアウトを縦並びに統一 */
  .service_contents_main,
  .service_contents:nth-of-type(even) .service_contents_main {
    display: block;
    width: 100%;
    margin: var(--sp-block-gap) 0;
  }

  /* フレックスアイテムの統一 */
  .service_flex_item {
    display: block;
    width: 100%;
    margin: 0 0 var(--sp-block-gap);
    flex: none;
  }

  .service_flex_item:last-child {
    margin-bottom: 0;
  }

  .service_flex_item .flex_item_img {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: var(--sp-heading-gap);
    clear: both;
  }

  .service_flex_item .flex_item_img img {
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: cover;
    display: block;
  }
  
  .service_flex_item + .service_flex_item {
    margin-top: 0;
  }

  /* 見出しとテキストのマージンを統一 */
  .flex_item_heading,
  .service_contents:nth-of-type(even) .flex_item_heading {
    display: block;
    clear: both;
    margin: 0 0 1em;
    font-size: var(--sp-heading-size);
    font-weight: 500;
    letter-spacing: 0.04em;
  }

  /* デザイン上挿入していた改行を非表示 */
  .flex_item_heading br {
    display: none;
  }

  .flex_item_text,
  .service_contents:nth-of-type(even) .flex_item_text {
    width: 100%;
    margin: 0;
    font-size: var(--sp-text-size);
    line-height: var(--sp-text-line);
    letter-spacing: 0.02em;
  }

  .service_contents .flex_item_text {
    padding-top: 0;
  }

  /* お問い合わせセクション */
  .inquiry_cta {
    text-align: center;
    padding: 32px 0;
  }

  .inquiry_cta_text {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .inquiry_cta_button {
    display: inline-block;
  }

  .inquiry_cta_img {
    max-width: 280px !important;
  }

  #partnersDetails .readmore {
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }

  #partnersDetails .readmore img {
    margin-right: 0;
  }

}





/* --------------------------------------------------------------------------
   04.Partners
   -------------------------------------------------------------------------- */

  /* 導入Sec */
  .partners_intro {
    width: 100%;
    height: auto;
    margin-top: 0;
    padding: 120px 0;
    box-sizing: border-box;
  }

  .partners_intro h3,
  .partners_intro div {
    text-align: center;
  }

  .partners_intro h3 {
    margin: 0 auto 56px;
    font-size: 32px;
    line-height: 64px;
    font-weight: 300;
    letter-spacing: 2.4px;
    color: #222426;
  }

  .partners_intro div {
    width: 1076px;
    margin: 0 auto 0;
  }

  .partners_intro div p {
    font-size: 16px;
    line-height: 40px;
    letter-spacing: 1.8%;
    color: #000;
  }


  /* パートナー紹介Sec 　フレックスデザインは03.serviceと共通デザイン*/
  #partnersDetails {
    margin: 240px auto 0;
    /* readmore 画像の右端を .service_flex_item 列と揃える微調整（px で変更可） */
    --partners-readmore-img-margin-right: 0px;
  }

  #partnersDetails .lower_contents_title {
    text-align: left;
    margin-left: -64px;
    margin-right: auto;
  }

  #partnersDetails .service_flex_item {
    margin: 0;
    /* readmoreのアイコン表示のため */
  }

  #partnersDetails .service_flex_item .flex_item_img {
    text-align: right;
    margin-left: 16px;
  }

  #partnersDetails .readmore {
    width: 1080px;
    max-width: 100%;
    margin: 0 auto 48px;
    box-sizing: border-box;
  }

  #partnersDetails .readmore a {
    display: block;
  }

  #partnersDetails .readmore img {
    width: 90%;
    margin-left: auto;
    margin-right: var(--partners-readmore-img-margin-right);
  }

  #partnersDetails .service_contents_main {
  flex-direction: row;
  }

  #partnersDetails .service_flex_item .flex_item_heading {
    margin: 40px 0 var(--sp-heading-gap) 40px;
  }

  #partnersDetails .flex_item_heading p {
    margin-top: var(--sp-block-gap);
  }

  #partnersDetails .flex_item_text {
    margin-right: 0;
    margin-left: 64px;
  }

  .flex_item_heading {
    line-height: 1.6;
    letter-spacing: 0.04em;
  }

  .flex_item_text {
    line-height: 2;
    letter-spacing: 0.03em;
  }


  /* お取引先一覧Sec */
  .partners_example {
    margin-left: 16px;
  }

  .partners_example h4 {
    margin-bottom: 1.5em;
    font-size: 18px;
    line-height: 2em;
    letter-spacing: 8%;
    font-weight: 400;
  }

  .partners_example dl dt {
    letter-spacing: 8%;
    margin-bottom: 1.2em;
  }

  .partners_example dl .partners_list_flex {
    display: flex;
    flex-wrap: wrap;
    width: 1000px;
    margin: 0 0 2em 1.8em;
    border-bottom: 1px solid #DDD;
  }

  .partners_list_flex span {
    margin-right: 0.8em;
  }

  .partners_list_flex span::after {
    content: "/";
    margin-left: 0.8em;
  }

  .partners_list_flex span:last-child::after {
    content: none;
  }



  /* 04.Partners レスポンシブ：768px以下 */
  @media (max-width: 768px) {

    .partners_intro {
      height: auto;
      padding: 64px 0;
    }

    .partners_intro h3 {
      margin: 0 auto var(--sp-heading-gap);
      font-size: var(--sp-title-size);
      line-height: 1.8;
      padding: 0 20px;
    }

    .partners_intro div {
      width: 100%;
      padding: 0 20px;
    }

    .partners_intro div p {
      font-size: var(--sp-text-size);
      line-height: var(--sp-text-line);
      letter-spacing: 0.02em;
    }

    #partnersDetails {
      margin: var(--sp-section-gap) auto 0;
    }

    #partnersDetails .lower_contents_title {
      margin-left: 0;
      margin-right: 0;
    }

    #partnersDetails .service_flex_item .flex_item_img {
      text-align: left;
      margin-left: 0;
    }

    #partnersDetails .service_flex_item .flex_item_heading {
      margin: 0 0 var(--sp-heading-gap) 0;
    }

    #partnersDetails .flex_item_text {
      margin-left: 0;
    }

    .partners_example {
      margin-left: 0;
    }

    .partners_example h4 {
      font-size: var(--sp-heading-size);
      letter-spacing: 0.08em;
    }

    .partners_example dl .partners_list_flex {
      width: 100%;
      margin: 0 0 var(--sp-block-gap);
      padding-bottom: 1em;
    }

    .partners_example dl dt {
      font-size: var(--sp-text-size);
    }

    .partners_list_flex span {
      font-size: var(--sp-text-size);
    }

  }





   /* --------------------------------------------------------------------------
   05.News
   -------------------------------------------------------------------------- */

   /* お知らせSec */
  #news_title {
    margin: 140px 0 100px;
  }

  .news_article {
    margin-bottom: 100px;
    padding: 56px 42px;
    background-color: rgba(217, 217, 217, 0.2);
    font-family: var(--font-accent);
    font-weight: 500;
    letter-spacing: 0.04em;
  } 

  .article_flex {
    background-color: #FFF;
    padding: 48px 0;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
  }

  .article_flex_item .news_img {
    width: 340px;
    height: 240px;
  }

  .article_flex_item h4 {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.8em;
    color: #3D9A6D;
  }

  .article_flex_item time {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.8em;
    color: #9FA0A0;
  }

  .article_flex_item .main_text {
    width: 540px;
    margin: 2em 0 0;
    font-weight: 600;
    line-height: 1.8em;
    color: #333;
  }

  .article_flex_item .main_text a:hover {
    color: #3D9A6D;
    opacity: 0.8;
  }



  /* 05.News レスポンシブ：768px以下 */
  @media (max-width: 768px) {

    #news_title {
      margin: var(--sp-section-gap) 0 var(--sp-heading-gap);
    }

    #news_title img {
      width: 110px;
      height: auto;
    }

    .news_article {
      margin-bottom: var(--sp-section-gap);
      padding: 24px 20px;
    }

    .article_flex {
      padding: 20px;
      flex-direction: column;
      align-items: stretch;
      gap: var(--sp-block-gap);
    }

    .article_flex_item .news_img,
    .article_flex_item p img {
      width: 100%;
      height: auto;
      max-height: 240px;
      object-fit: cover;
    }

    .article_flex_item h4 {
      font-size: var(--sp-heading-size);
      line-height: 1.6em;
    }

    .article_flex_item time {
      font-size: 13px;
    }

    .article_flex_item .main_text {
      width: 100%;
      margin: 1em 0 0;
      font-size: var(--sp-text-size);
      line-height: var(--sp-text-line);
    }

  }





   /* --------------------------------------------------------------------------
   06.Contact
   -------------------------------------------------------------------------- */

  /*導入メッセージ*/
  .contact_message {
  text-align: center;
  }

  /*フォームデザイン*/
  .contact .form_cover {
    width: 888px;
    margin: 80px auto 0;
    padding: 56px 0;
    border: 1px solid rgba(217, 217, 217, 0.85);
    background-color: rgba(217, 217, 217, 0.1);
  }

  .form_inner {
    width: 840px;
    position: relative;
    overflow: hidden;
    padding-top: 100%;
  }

  .form_inner iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: none;
  }

  /*.form_inner p {
    margin: 0 0 40px;
    font-family: var(--font-accent);
    font-size: 18px;
    font-weight: medium;
    letter-spacing: 0.1em;
    color: #3D9A6D;
  }


  .form_inner p input,
  .form_inner p textarea {
    width: 800px;
    height: 56px;
    margin: 0.8em 0 0;
    padding: 0.1em 0.4em;
    color: #232323;
    font-family: var(--font-en-body);
    border: 2px solid rgba(61, 154, 109, 0.5);
    border-radius: 10px;
    background-color: #FFF;
  }

  .form_inner p textarea {
    padding: 1em;
    height: 150px;
  }

  form .submit {
    width: 840px;
    margin: 80px auto 0;
    text-align: center;
  }

  form .submit button {
    width: 360px;
    height: 56px;
  }*/



  /* 06.Contact レスポンシブ：768px以下 */
  @media (max-width: 768px) {

    #news_title {
      margin: var(--sp-section-gap) 0 var(--sp-heading-gap);
    }

    #news_title img {
      width: 110px;
      height: auto;
    }

    .contact_message {
      font-size: var(--sp-text-size);
      line-height: var(--sp-text-line);
      padding: 0 4px;
      text-align: left;
    }

    .contact .form_cover {
      width: 100%;
      margin: var(--sp-heading-gap) auto 0;
      padding: 24px 20px;
    }

    .form_inner {
      width: 100%;
    }

    .form_inner p {
      margin: 0 0 var(--sp-block-gap);
      font-size: var(--sp-text-size);
      line-height: var(--sp-text-line);
    }

    .form_inner p input,
    .form_inner p textarea {
      width: 100%;
      height: 48px;
    }

    .form_inner p textarea {
      height: 140px;
    }

    form .submit {
      width: 100%;
      margin: 40px auto 0;
    }

    form .submit button {
      width: 100%;
      max-width: 280px;
      height: 52px;
    }

  }
 




  /* --------------------------------------------------------------------------
   07.Interview
   -------------------------------------------------------------------------- */
  .page_main_interview {
    margin: 240px auto 0;
    --iv-section-space: 160px;
    --iv-block-space: 80px;
    --iv-media-space: 64px;
    --iv-heading-space: 32px;
    --iv-text-space: 24px;
  }

  /* インタビュー内共デザイン */
  .page_main_interview p {
    font-family: var(--font-sans-ja);
    font-size: 16px;
    font-weight: 400;
    line-height: 2em;
    letter-spacing: 0.04em;
    color: #232323;
  }
  
  .page_main_interview h3,
  .page_main_interview h4 {
    font-family: "Meiryo", sans-serif;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.8em;
    letter-spacing: 0.05em;
    color: #37413D;
  }

  .page_main_interview h4 {
    margin: 0 0 var(--iv-heading-space);
    padding-top: 0;
    font-size: 20px;
  }

  .iv_main {
    margin: 0 0 var(--iv-section-space);
    padding-top: 0;
  }

  .iv_main .iv_main_subtitle {
    margin: 0 0 var(--iv-heading-space);
    font-weight: 500;
    line-height: 1.8em;
    letter-spacing: 0.07em;
  }

  #iv_main_subtitle02 { /* レイアウトのためmb:0にする */
    margin-bottom: var(--iv-heading-space);
  }

  #iv_main_subtitleLast { /* レイアウトのためmbより広く */
    margin-bottom: var(--iv-media-space);
  }

  
  /* タイトル */
  .iv_title {
    margin-bottom: var(--iv-section-space);
    font-family: "Meiryo", sans-serif;
  }

  .iv_title h2,
  .iv_title p:first-of-type {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.8em;
    letter-spacing: 0.05em;
    color: #37413D;
  }

  .iv_title h2 span {
    display: block;
  }

  .iv_title p:first-of-type {
    margin: var(--iv-text-space) 0 var(--iv-media-space);
    font-size: 24px;
  }


  /* 導入 */
  .iv_intro {
    margin-bottom: var(--iv-section-space);
  }

  .iv_intro p img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 0 var(--iv-media-space);
  }

  .iv_intro h3 {
    margin-bottom: var(--iv-heading-space);
  }

  .iv_intro dl {
    margin: 0;
    display: flex;
    flex-direction: column;
    row-gap: 12px;
  }

  .iv_intro dl div {
    display: flex;
    gap: 1em;
  }

  .iv_intro dl dt,
  .iv_intro dl dd {
    width: auto;
  }

  .iv_intro dl dt::after {
    content: "：";
  }


  /* インタビュー内容メイン */
  .iv_main > p:first-child {
    margin: 0 0 var(--iv-media-space);
  }

  .iv_main > p:first-child img {
    display: block;
    width: 100%;
    height: auto;
  }

  .iv_main_contents_symmetric {
    margin: var(--iv-block-space) 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .iv_main_contents_symmetric:last-child {
    margin-bottom: 0;
  }


  .iv_main_contents_symmetric p img {
    width: 470px;
    height: 324px;
    object-fit: cover;
  }

  .iv_main_contents_symmetric_text {
    width: 580px;
  }

  .iv_main_contents_symmetric_text .takada_shop_list {
    margin: var(--iv-text-space) 0 0;
  }

  .iv_main_contents_symmetric_text .takada_shop_list li {
    margin-top: 12px;
  }

  .iv_main_contents_symmetric_text .takada_shop_list a:hover {
    border-bottom: 1px solid #9FA0A0;
    opacity: 0.8;
  }


  /* お取り扱い商品 */
  .product_list_item {
    margin-bottom: var(--iv-block-space);
  }

  .product_list_item:last-of-type {
    margin-bottom: 0;
  }

  .product_list_item dt {
    margin-bottom: var(--iv-text-space);
    font-family: var(--font-sans-ja);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8em;
    letter-spacing: 0.07em;
  }

  .iv_main_contents .inquiry_cta {
    margin: 120px 0 0;
  }


  /* プロフィール */
  .iv_main_profiles {
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .iv_main_profiles .iv_main_profiles_image img {
    width: 470px;
    height: 548px;
    object-fit: cover;
  }

  .iv_main_profiles .iv_main_profiles_text {
    width: 580px;
  }

  .iv_main_profiles #iv_profiles_title {
    margin: 0 0 var(--iv-media-space);
    font-size: 16px;
    font-weight: bold;
    line-height: 2em;
    letter-spacing: 0.08em;
  }

  .iv_main_profiles .iv_main_profiles_text span {
    display: block;
  }



  /* 07.Interview レスポンシブ：768px以下 */
  @media (max-width: 768px) {

    .page_main_interview {
      margin: var(--sp-section-gap) auto 0;
      --iv-section-space: var(--sp-section-gap);
      --iv-block-space: var(--sp-block-gap);
      --iv-media-space: var(--sp-heading-gap);
      --iv-heading-space: var(--sp-heading-gap);
      --iv-text-space: 16px;
    }

    .page_main_interview p {
      font-size: var(--sp-text-size);
      line-height: var(--sp-text-line);
    }

    .page_main_interview h3,
    .page_main_interview h4 {
      font-size: var(--sp-title-size);
      line-height: 1.7em;
    }

    .page_main_interview h4 {
      font-size: var(--sp-heading-size);
    }

    .iv_title h2,
    .iv_title p:first-of-type {
      font-size: var(--sp-title-size);
    }

    .iv_title p:first-of-type {
      font-size: 16px;
    }

    .iv_intro dl {
      row-gap: 8px;
      font-size: var(--sp-text-size);
    }

    .iv_intro dl div {
      gap: 0.5em;
      flex-wrap: wrap;
    }

    .iv_main_contents_symmetric {
      flex-direction: column;
      align-items: stretch;
      gap: 20px;
    }

    .iv_main_contents_symmetric p img {
      width: 100%;
      height: auto;
      max-height: 280px;
      object-fit: cover;
    }

    .iv_main_contents_symmetric_text {
      width: 100%;
    }

    .iv_main_contents_symmetric_text .takada_shop_list li {
      font-size: 13px;
      word-break: break-all;
    }

    .product_list_item dt {
      font-size: var(--sp-text-size);
    }

    .iv_main_profiles {
      flex-direction: column;
      align-items: stretch;
      gap: var(--sp-heading-gap);
    }

    .iv_main_profiles .iv_main_profiles_image img {
      width: 100%;
      height: auto;
      max-height: 360px;
      object-fit: cover;
    }

    .iv_main_profiles .iv_main_profiles_text {
      width: 100%;
    }

    .iv_main_profiles #iv_profiles_title {
      font-size: var(--sp-text-size);
    }

  }




























  

   


























