@charset "UTF-8";
/*============================
　フォント指定
============================*/
/* ローカルフォント指定 */
@font-face {
  font-family: "demo";
  src: url(../fonts/);
}
/*============================
  ハック・リセット関連
============================*/
html {
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

/* iPhone safari でのデフォルトアイコンを非表示にする */
details summary {
  list-style: none;
}

/* iPhone safari 特有のデフォルトマーカーを非表示にする */
summary::-webkit-details-marker {
  display: none;
}

/* input・select スタイリングリセット */
i {
  font-style: normal;
}

u {
  font-style: normal;
}

@media screen and (max-width: 767px) {
  _::-webkit-full-page-media,
  _:future,
  :root input,
  _::-webkit-full-page-media,
  _:future,
  :root select,
  _::-webkit-full-page-media,
  _:future,
  :root textarea {
    color: initial !important;
    font-size: initial !important;
  }
}
/*============================
  サイト毎汎用デフォルト設定関連
============================*/
:root {
  color-scheme: only light;
  /* 基本カラー設定 */
  --default_color-set01: #ff8800;
  --default_color-set02: #0030b6;
  --default_color-set03: #016c01;
  --default_color-set04: #d00f0f;
  --default_color-set05: #777;
  --font_color-set01: #e60012;
  /* コンテンツ幅 */
  --contents_wide_SS: 375px;
  --contents_wide_S: 960px;
  --contents_wide_default: 1280px;
  --contents_wide_L: 1400px;
  --contents_wide_LL: 1920px;
  --spacing-inline: clamp(20px, 5vw, 40px);
  /* 共通コンテンツ間マージン設定 */
  --contents_margin_SS: 5px;
  --contents_margin_S: 10px;
  --contents_margin_default: 20px;
  --contents_margin_L: 40px;
  --contents_margin_LL: 60px;
  /* 共通角丸設定 */
  --border-radius_S: 3px;
  --border-radius_default: 9px;
  --border-radius_L: 18px;
}

/*============================
　共通設定
============================*/
body {
  font-family: "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  position: relative;
  font-feature-settings: "halt";
  font-weight: 500;
  /* JSで制御する場合、これを強制的にautoにする */
  scroll-behavior: auto !important;
}

html,
body {
  height: 100%;
}

body * {
  background-repeat: no-repeat;
  background-position: center center;
  text-decoration: none;
}

img {
  height: auto;
  max-width: 100%;
  width: auto;
}

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

a:hover {
  transition: 0.3s;
  filter: brightness(120%);
}

/*============================
　ヘッダー
============================*/
.main-header {
  position: fixed;
  top: 0;
  z-index: 9999;
  width: 100%;
}

/*============================
　グローバルメニュー
============================*/
.header-inner {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 20px;
  background-color: rgba(255, 255, 255, 0.2588235294);
  z-index: 10;
  box-sizing: border-box;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

[data-position="target, no1"] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  color: white;
  transition: 0.4s;
}

[data-position="target, no1"].top {
  color: #000;
  background-color: rgba(255, 255, 255, 0.262745098);
}

[data-position="target, no1"] .header-inner {
  background-color: initial;
}

[data-position="target, no1"].fade_in {
  color: #000;
  background-color: rgba(255, 255, 255, 0.262745098);
}

.logo a {
  background-image: url(../image/logo_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: min(26vw, 300px);
  aspect-ratio: 1/0.2;
}

.fade_in .logo a,
.top .logo a {
  background-image: url(../image/logo.svg);
}

/* サブメニューは、PC・SP問わず「最初は絶対に非表示」 */
.sub_menu {
  display: none !important;
  /* 強制的に隠す */
  list-style: none;
  padding: 0;
  margin: 0;
  color: #000;
}

@media (max-width: 767px) {
  .logo a {
    width: 150px;
  }
}
/* ===== PCスタイル (768px以上) ===== */
@media (min-width: 768px) {
  .global_menu {
    flex: 0 1 820px;
  }
  .global_menu ul .contact a {
    width: min(15vw, 200px);
    height: min(5vw, 60px);
    border-radius: 100px;
    padding: 12px 18px;
    color: #000;
    background-color: #fff;
    display: flex;
    flex-wrap: nowrap;
    border: 1px solid #000;
    align-items: center;
    gap: 10px;
    justify-content: center;
    font-weight: 900;
  }
  .global_menu ul .contact a::before {
    content: "";
    display: inline-flex;
    background-repeat: no-repeat;
    background-image: url("../image/icon_mail.png");
    background-size: contain;
    background-position: center;
    width: 20px;
    height: 16px;
  }
  #gnav ul {
    display: flex;
    gap: 5px 20px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 14px;
  }
  .js-dropdown {
    position: relative;
  }
  .js-dropdown > a.nolink {
    pointer-events: none;
    text-decoration: none;
    /* color: #000; */
  }
  /* PCホバー時のみ表示 */
  .js-dropdown:hover > .sub_menu {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    background: rgba(255, 255, 255, 0.831372549);
    min-width: 150px;
    padding-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    text-align: center;
  }
  .js-dropdown:hover > .sub_menu li {
    margin-top: 20px;
  }
  .menu-btn,
  .sp-only {
    display: none;
  }
  /* ハンバーガー */
  .gnav-switch {
    display: none;
  }
}
/* ===== SPスタイル (767px以下) ===== */
@media (max-width: 767px) {
  .header-inner {
    padding: 5px 0 10px;
  }
  /* 重なり順：マスクより上に配置 */
  .logo {
    position: relative;
    z-index: 5;
  }
  .global_menu {
    z-index: 10;
  }
  #gnav {
    position: fixed;
    top: 0;
    right: -300px;
    /* 初期位置：画面外 */
    width: 300px;
    height: 100%;
    background: #fff;
    transition: right 0.3s ease;
    padding: 60px 0;
    box-sizing: border-box;
    z-index: 20;
    /* マスク(5)より上 */
    overflow-y: auto;
  }
  #gnav.open {
    right: 0;
  }
  #gnav ul {
    flex-direction: column;
  }
  #gnav ul li a,
  #gnav ul li span {
    display: block;
    padding: 15px 20px;
    color: #000;
    border-bottom: 1px solid #eee;
    width: auto;
    height: auto;
  }
  #gnav .sp-only > * {
    background-color: #5d5d5d;
    color: #fff;
  }
  /* SPアコーディオン：is-activeがついた時だけ表示 */
  .sub_menu.is-active {
    display: block !important;
    /* !importantで初期のnoneを上書き */
    background: #f4f4f4;
  }
  .sub_menu li a {
    padding-left: 40px;
  }
  /* 背景マスク */
  #wr_closs {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 5;
    /* ロゴ(10)やメニュー(20)より下 */
  }
  body.noscroll {
    overflow: hidden;
  }
  .gnav-switch.menu-btn {
    cursor: pointer;
    color: #fff;
    font-style: normal;
    margin-top: 10px;
    margin-right: 15px;
  }
  .sp-only {
    color: #000;
  }
  /* ハンバーガー */
  .gnav-switch {
    width: 32px;
    height: 23px;
    display: inline-block;
    cursor: pointer;
    position: relative;
  }
  .gnav-switch span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .fade_in .gnav-switch span,
  .top .gnav-switch span {
    background: #000;
  }
  /* 3本線の位置 */
  .gnav-switch span:nth-child(1) {
    top: 0;
  }
  .gnav-switch span:nth-child(2) {
    top: 9px;
  }
  .gnav-switch span:nth-child(3) {
    top: 18px;
  }
  /* ▼ gnav に open が付いた時の ✕ 変形 */
  #gnav.open + .gnav-switch span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  #gnav.open + .gnav-switch span:nth-child(2) {
    opacity: 0;
  }
  #gnav.open + .gnav-switch span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}
/*============================
  パンくず
============================*/
.breadcrumbs {
  padding: 10px 20px;
}

.breadcrumbs ul {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
}

.breadcrumbs ul li {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  font-size: clamp(0.375rem, -0.289rem + 1.386vw, 0.75rem);
}

.breadcrumbs ul li::before {
  content: ">";
  display: inline-block;
}

.breadcrumbs ul li:nth-of-type(1)::before {
  display: none;
}

/*============================
　コンテンツ関連
============================*/
/* ===== レスポンシブ明示指定CSS ===== */
.look_pc {
  display: block;
}

.look_sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .look_pc {
    display: none;
  }
  .look_sp {
    display: block;
  }
}
/*============================
  #js_pagetop
============================*/
.pagetop_posision {
  position: relative;
  margin-bottom: -160px;
  margin-top: 160px;
}

#js_pagetop {
  bottom: 10px;
  right: 20px;
  transition: all 600ms;
  z-index: 9001;
}

#js_pagetop.fade {
  animation: fadeIn 0.4s ease-in 0s forwards;
  display: block;
  opacity: 1;
}

@keyframes fadeIn {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    display: block;
    opacity: 1;
  }
  1% {
    display: none;
    opacity: 0;
  }
  100% {
    display: none;
    opacity: 0;
  }
}
#js_pagetop a {
  display: block;
  width: clamp(4.375rem, 1.054rem + 6.928vw, 6.25rem);
  aspect-ratio: 1/1;
  background-image: url(../image/top.png);
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (min-width: 767px) {
  #js_pagetop {
    position: absolute;
  }
}
@media screen and (max-width: 767px) {
  #js_pagetop {
    bottom: 5px;
    right: 5px;
    position: fixed;
  }
  #js_pagetop a {
    opacity: 0.9;
  }
  #js_pagetop a > i {
    font-size: 20px;
  }
}
/*============================
  .main-footer
============================*/
.main-footer {
  position: sticky;
  top: 100vh;
  height: 200px;
  padding-top: 100px;
  text-align: center;
}

.footer_menu {
  display: flex;
  margin: auto;
  gap: 10px;
  max-width: 1040px;
  padding-left: 120px;
  padding-right: 120px;
  justify-content: space-between;
  font-size: clamp(0.78125rem, 0.615rem + 0.346vw, 0.875rem);
}

.footer_copyright {
  text-align: center;
  display: inline-block;
  margin: clamp(3.4375rem, 1.777rem + 3.464vw, 4.375rem) auto 35px;
  font-size: clamp(0.3125rem, -0.241rem + 1.155vw, 0.625rem);
}

@media (max-width: 767px) {
  .main-footer {
    padding-top: 27.5px;
  }
  .footer_menu {
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding-left: 20px;
    padding-right: 20px;
  }
  .footer_menu li {
    flex: 1 1 100px;
  }
}/*# sourceMappingURL=common.css.map */