/* ==========================================================================
   1. Base - 変数定義、リセット、基本設定
   ========================================================================== */

:root {
  /* base */
  --mw: 1920px;
  --bw: 1400;

  /* base width */
  --mb-width: 80%;

  /* Colors（TG） */
  --color-main: #a40000;
  --color-body: #f9f9fa;
  --color-white: #f9f9fa;
  --color-white-rgb: 255, 255, 255;
  --color-black: #0d0c0c;
  --color-base: #0d0c0c;
  --color-black-light: #252525;
  --color-gray-tg: #d9d9d9;
  --color-red: #a40000;
  --color-blue-tg: #0062d3;
  --color-gray: #666666;
  --color-border: rgba(12, 12, 12, 0.1);
  --color-border-dark: rgba(255, 255, 255, 0.1);
  --color-overlay: rgba(12, 12, 12, 0.2);
  --color-yellow: #777134;
  --color-blue: #283f6d;

  /* font-weight */
  --font-weight-300: 300;
  --font-weight-400: 400;
  --font-weight-500: 500;
  --font-weight-600: 600;
  --font-weight-700: 700;
  --font-weight-800: 800;
  --font-weight-900: 900;

  /* style */
  --leading-trim: calc((1em - 1lh) / 2);
  --radius: 9999px;

  /* animation */
  --transition: 0.75s;

  /* Fonts */
  --font-en: "GeneralSans", sans-serif;
  --font-ja-sans: "Noto Sans JP", sans-serif;
  --font-num: "GeneralSans", sans-serif;


  --font-size-xs: clamp(10px, calc(12 * var(--mw) / var(--bw)), 12px);
  --font-size-sm: clamp(12px, calc(14 * var(--mw) / var(--bw)), 14px);
  --font-size-base: clamp(14px, calc(16 * var(--mw) / var(--bw)), 18px);
  --font-size-lg: clamp(16px, calc(18 * var(--mw) / var(--bw)), 20px);
  --font-size-xl: clamp(18px, calc(24 * var(--mw) / var(--bw)), 28px);
  --font-size-2xl: clamp(22px, calc(32 * var(--mw) / var(--bw)), 36px);
  --font-size-3xl: clamp(30px, calc(48 * var(--mw) / var(--bw)), 54px);
  --font-size-4xl: clamp(40px, calc(80 * var(--mw) / var(--bw)), 90px);

/*
--font-size-xs: clamp(0.9rem, 0.21vi + 0.83rem, 1.13rem);
--font-size-sm: clamp(1.12rem, 0.35vi + 1.01rem, 1.5rem);
--font-size-base: clamp(1.4rem, 0.56vi + 1.22rem, 2rem);
--font-size-lg: clamp(1.75rem, 0.85vi + 1.48rem, 2.67rem);
--font-size-xl: clamp(2.19rem, 1.27vi + 1.78rem, 3.55rem);
--font-size-2xl: clamp(2.73rem, 1.85vi + 2.14rem, 4.74rem);
--font-size-3xl: clamp(3.42rem, 2.68vi + 2.56rem, 6.31rem);
--font-size-4xl: clamp(4.27rem, 3.84vi + 3.04rem, 8.42rem);
*/
  /* Spacing */

  --space-xs: clamp(0.4rem, 1vw, 0.8rem);
  --space-sm: clamp(1rem, 2vw, 1.6rem);
  --space-md: clamp(20px, calc(35 * var(--mw) / var(--bw)), 3.5rem);
  --space-lg: clamp(3.5rem, 6vw, 6.4rem);
  --space-xl: clamp(5rem, 8vw, 9.6rem);
  --space-xxl: clamp(7rem, 10vw, 12.8rem);

  /* Layout */
  --width-container: 1400px;
  --width-container-sm: 1200px;
  --header-height: 80px;
  --header-height-sp: 64px;
}

@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.eot?qqj2y");
  src:
    url("../fonts/icomoon.eot?qqj2y#iefix") format("embedded-opentype"),
    url("../fonts/icomoon.ttf?qqj2y") format("truetype"),
    url("../fonts/icomoon.woff?qqj2y") format("woff"),
    url("../fonts/icomoon.svg?qqj2y#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: 'GeneralSans';
  src: url('../fonts/GeneralSans-Medium.woff2') format('woff2'),
       url('../fonts/GeneralSans-Medium.woff') format('woff'),
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}

[class^="icon-"],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-rednote:before {
  content: "\e938";
}
.icon-line:before {
  content: "\e937";
}
.icon-whatsapp:before {
  content: "\e935";
}
.icon-linkedin:before {
  content: "\e936";
}
.icon-wechat:before {
  content: "\e934";
}
.icon-tiktok:before {
  content: "\e92e";
}
.icon-user-fill:before {
  content: "\e92f";
}
.icon-instagram-logo:before {
  content: "\e930";
}
.icon-x-logo:before {
  content: "\e931";
}
.icon-check-circle:before {
  content: "\e92c";
}
.icon-warning-circle:before {
  content: "\e92d";
}
.icon-trash-simple:before {
  content: "\e92b";
}
.icon-file-pdf:before {
  content: "\e92a";
}
.icon-magnifying-glass:before {
  content: "\e929";
}
.icon-crown-simple-fill:before {
  content: "\e928";
}
.icon-crown-simple:before {
  content: "\e927";
}
.icon-check-circle-fill:before {
  content: "\e926";
}
.icon-printer:before {
  content: "\e925";
}
.icon-arrow-clockwise:before {
  content: "\e924";
}
.icon-currency-jpy:before {
  content: "\e923";
}
.icon-caret-right:before {
  content: "\e922";
}
.icon-magnifying-glass-plus:before {
  content: "\e920";
}
.icon-caret-left:before {
  content: "\e921";
}
.icon-clock:before {
  content: "\e91e";
}
.icon-heart-fill:before {
  content: "\e91f";
}
.icon-squares-four:before {
  content: "\e91d";
}
.icon-note-pencil:before {
  content: "\e91b";
}
.icon-star:before {
  content: "\e91c";
}
.icon-package:before {
  content: "\e917";
}
.icon-money:before {
  content: "\e918";
}
.icon-chats-circle:before {
  content: "\e919";
}
.icon-laptop:before {
  content: "\e91a";
}
.icon-eye-slash:before {
  content: "\e915";
}
.icon-caret-down:before {
  content: "\e916";
}
.icon-eye:before {
  content: "\e914";
}
.icon-upload-simple:before {
  content: "\e913";
}
.icon-user:before {
  content: "\e911";
}
.icon-lock:before {
  content: "\e912";
}
.icon-list:before {
  content: "\e910";
}
.icon-truck:before {
  content: "\e90b";
}
.icon-trend-up:before {
  content: "\e90c";
}
.icon-list-dashes:before {
  content: "\e90d";
}
.icon-receipt:before {
  content: "\e90e";
}
.icon-tag:before {
  content: "\e90f";
}
.icon-globe-hemisphere-west:before {
  content: "\e900";
}
.icon-storefront:before {
  content: "\e901";
}
.icon-bell:before {
  content: "\e902";
}
.icon-user-gear:before {
  content: "\e903";
}
.icon-sign-out:before {
  content: "\e904";
}
.icon-envelope-simple:before {
  content: "\e905";
}
.icon-chat-dots:before {
  content: "\e906";
}
.icon-handshake:before {
  content: "\e907";
}
.icon-shopping-bag:before {
  content: "\e908";
}
.icon-heart:before {
  content: "\e909";
}
.icon-gavel:before {
  content: "\e90a";
}
.icon-youtube:before {
  content: "\e932";
}
.icon-facebook:before {
  content: "\e933";
}

/* Reset & Base Styles */
html {
  font-size: 62.5%; /* 1rem = 10px */
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-ja-sans);
  font-size: var(--font-size-base);
  color: var(--color-black);
  background-color: #fff;
  margin: 0;
  padding: 0;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
ul,
ol,
dl,
dt,
dd,
.m-faq-category {
  font-weight: normal;
  margin: 0;
  padding: 0;
  scroll-margin-top:var(--header-height);
}

ul,
ol {
  list-style: none;
}

select {
  appearance: none;
}
em {
  font-style: normal;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* Box Sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
  font-feature-settings: "palt";
}

fieldset {
  border: none;
  padding: var(--space-sm) 0;
  display: flex;
  gap: var(--space-sm);
  margin: 0;
  flex-wrap: wrap;
}


.pc{
display:block;
}

@media (max-width: 599px) {

.pc{
display:none;
}
}