/*------------------------------------------
カスタムリセット
---------------------------------------------*/

* {
  font-family: "Zen Kaku Gothic New", var(--font-family-body);
  line-height: var(--line-height-relaxed);
  letter-spacing: var(--letter-spacing-default);
}

html {
  scroll-behavior: smooth !important;
}

/*------------------------------------------

root定義

---------------------------------------------*/
:root {
  /*----------------------------------------------------------------------------------
    カラー設定
----------------------------------------------------------------------------------*/

  /* 元の --color-gray を修正 */
  --color-white: #ffffff;
  --color-black: #333333;
  --color-blue: #478fdd;
  --color-yellow: #ffd000;
  --color-light: #FCFEFD;

  /*----------------------------------------------------------------------------------
    フォント設定、文字サイズ、文字の太さ
----------------------------------------------------------------------------------*/
  --font-family-body: "Noto Sans JP", sans-serif;

  --font-size-fixed-xxs: 12px;
  --font-size-fixed-xs: 14px;
  --font-size-fixed-sm: 18px;
  --font-size-fixed-md: 20px;
  --font-size-fixed-lg: 24px;
  --font-size-fixed-lgx: 28px;
  --font-size-fixed-xl: 40px;
  --font-size-fixed-2xl: 60px;
  --font-weight-medium: 500;
  --font-weight-semi-bold: 600;
  --font-weight-bold: 700;

  /*----------------------------------------------------------------------------------
    余白設定
----------------------------------------------------------------------------------*/
  --space-xs: 4px;
  --space-s: 8px;
  --space-sm: 16px;
  --space-m: 20px;
  --space-ml: 26px;
  --space-l: 40px;
  --space-xl: 60px;
  --space-xxl: 100px; /* サブページの大きなセクション間 */
  --space-xxxl: 200px; /* メインページの大きなセクション間 */

  /*----------------------------------------------------------------------------------
    角丸スタイル
----------------------------------------------------------------------------------*/
  --border-radius-sm: 4px;
  --border-radius-m: 7px;
  --border-radius-lg: 12px;
  --border-radius-xl: 50px;
  --border-radius-full: 50%;
  /*----------------------------------------------------------------------------------
テキストスタイル
----------------------------------------------------------------------------------*/
  --line-height-normal: normal;
  --letter-spacing-tight: 1.2; 
  --line-height-default: 1.5;
  --line-height-relaxed: 2;
  --line-height-loose: 3;

  --letter-spacing-normal: normal;
  --letter-spacing-tight: -0.01em;
  --letter-spacing-default: 0.06em;
  --letter-spacing-relaxed: 0.2em;

  --text-align-justify: justify;
  --text-align-center: center;
  --text-align-right: right;
  --text-align-left: left;

  /*----------------------------------------------------------------------------------
ボックスシャドウ
----------------------------------------------------------------------------------*/
}

/*----------------------------------------------------------------------------------
メディアクエリ
----------------------------------------------------------------------------------*/
@media (max-width: 767px) {
  :root {

    --font-size-fixed-xxs: 10px;
    --font-size-fixed-xs: 12px;
    --font-size-fixed-sm: 14px;
    --font-size-fixed-md: 16px; /* h3 */
    --font-size-fixed-lg: 20px;
    --font-size-fixed-lgx: 24px;
    --font-size-fixed-xl: 26px;
    --font-size-fixed-l: 24px;
    --font-size-fixed-2xl: 48px;
    --line-height-tight: 1.2;  
    --line-height-default: 1.7;

    --space-xxxl: 100px;
  }
}
/*----------------------------------------------------------------------------------
見出し
----------------------------------------------------------------------------------*/

h2 {
  font-weight: var(--font-weight-bold);
  display: flex;
  line-height: var(--line-height-default);
  font-size: 64px;
  color: var(--color--blue);
}

h3 {
  font-family: var(--font-family-accent);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-fixed-md);
  color: var(--color-navy);
}

/*------------------------------------
  Scroll reveal (fade-in)
------------------------------------*/
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

.fade-in.is-visible {
  opacity: 1;
  transform: none;
}

/* optional delay helpers */
.delay-100 {
  transition-delay: 0.1s;
}
.delay-200 {
  transition-delay: 0.2s;
}
.delay-300 {
  transition-delay: 0.3s;
}
.delay-400 {
  transition-delay: 0.4s;
}
.delay-500 {
  transition-delay: 0.5s;
}

#works h3 {
  color: var(--color-sub-black);
}

#description h3 {
  color: var(--color-main);
  margin-bottom: 16px;
}

#policy h3 {
  color: var(--color-main);
  margin-bottom: 16px;
}

.main-color {
  color: var(--color-main);
}

@media (max-width: 767px) {
  h1 {
    font-size: clamp(16px, 3.5vw, 26px);
    padding: 12px 8px;
    width: 100%;
  }
}

/*----------------------------------------------------------------------------------
    ボタン
----------------------------------------------------------------------------------*/

/* 会社概要ボタン */
.btn {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  font-size: var(--font-size-fixed-sm);
}

#news .btn {
  margin-top: 40px;
  display: flex;
  justify-content: normal;
}


#contact .btn {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.btn-about {
  display: inline-flex;
  align-items: center;
  gap: 70px;
  padding: 12px 42px;
  border-radius: 999px;
  border: 2px solid #478fdd;
  background-color: #ffffff;
  color: #333333;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.btn-about img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.btn-about:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  background-color: #f5f9ff;
}

@media (max-width: 767px) {
  .btn {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    font-size: var(--font-size-fixed-sm);
  }
  .btn-about {
    gap: 40px;
    padding: 8px 42px;
}

}

/*----------------------------------------------------------------------------------
    テキストデザイン
----------------------------------------------------------------------------------*/

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

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

.margin-bottom-100 {
  margin-bottom: 100px;
}

.bold {
  font-weight: var(--font-weight-medium);
}

/*----------------------------------------------------------------------------------
    コンテンツレイアウト
----------------------------------------------------------------------------------*/
.wide_1100 {
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0px 16px;
}

.reverse {
  flex-direction: row-reverse;
}

.bg-1 {
  border-radius: 50px 50px 0 0;
  background: linear-gradient(90deg, #dfebf4 0.24%, #f4f4df 99.76%);
  padding: 100px 0px;
}

#goods.bg-1 {
  border-radius: 0px 0px 0 0;
  padding: 0px;
}

.bg-2 {
  border-radius: 50px 50px 0 0;
  background: #f4faff;
  padding: 100px 0px;
}

#food.bg-2 {
  border-radius: 0px 0px 0 0;
  padding: 0px;
}

.bg-3 {
  border-radius: 50px 50px 0 0;
  background: #FEFFF4;
  padding: 100px 0px;
}

@media (max-width: 767px) {
  .padding-sp {
    padding: 0 16px;
  }

  .bg-1 {
    padding: 50px 0px;
}

.bg-2 {
  padding: 50px 0px;
}

.bg-3 {
  padding: 50px 0px;
}

}

/*----------------------------------------------------------------------------------
    レスポンシブbr
----------------------------------------------------------------------------------*/

.br-sp {
  display: block;
}

.br-pc {
  display: none;
}

@media screen and (min-width: 768px) {
  .br-sp {
    display: none;
  }
}

@media screen and (min-width: 1024px) {
  .br-pc {
    display: block;
  }
}

/*----------------------------------------------------------------------------------
    ボックスシャドウ
----------------------------------------------------------------------------------*/
.shadow {
  box-shadow: 0 5px 0 var(--color-gray);
}
/*----------------------------------------------------------------------------------

共通装飾

----------------------------------------------------------------------------------*/
/* TOPページh2タイトル */
.title-en {
  display: inline-block;
  font-size: 30px;
  font-weight: 600;
  background: linear-gradient(90deg, #f15e74 0%, #f8a5b2 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-family-gantari, sans-serif);
}

#youtube .title-en {
  display: inline-block;
  font-size: 30px;
  font-weight: 600;
  background: linear-gradient(90deg, #f15e74 0%, #f8a5b2 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-family-gantari, sans-serif);
  margin-bottom: 30px;
}

.title-container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.title-main {
  font-size: 32px;
  font-weight: bold;
  color: var(--color-sub-black);
  margin: 0;
  line-height: 1.3;
}

.title-sub {
  font-size: var(--font-size-fixed-sm);
}

.title-line {
  font-weight: bold;
  font-size: 18px;
  line-height: 1;
  margin-right: 8px;
}

.text-container {
  padding: 30px 0px 30px 60px;
  position: relative;
}

@media (max-width: 767px) {
  .title-main {
    font-size: 20px;
  }

  .title-en {
    font-size: 20px;
  }
}

.grecaptcha-badge {
  visibility: hidden;
}

.recaptcha-notice {
  font-size: 12px;
}