/* 
 * common.css
 * コンポーネント以外で使用する共通スタイル
 */
body,
html {
  scroll-behavior: smooth;
  box-sizing: content-box;
  /* height: 5000px; */
}
/* スクロール禁止 */
html._menuOpen {
  overflow: hidden;
}

html._menuOpen .bg,
html._menuOpen .header:not(._menu),
html._menuOpen main,
html._menuOpen .footer {
  filter: blur(5px);
}

body {
  font-family: "Hiragino Kaku Gothic Pro", "Noto Sans JP", sans-serif, Meiryo;
}

/* 
 * 文字サイズ指定のアクセシビリティ対応のためフォント指定は以下の形式で行う 
 * font-size: calc(20 / var(--root-font-size) * 1rem);
 */
:root {
  --root-font-size: 16;
}
a {
  transition: opacity 0.3s ease;
}
a:hover {
  opacity: 0.5;
}

.pc-only {
  display: block;
}

.s .pc-only {
  display: none;
}

.sp-only {
  display: none;
}

.s .sp-only {
  display: block;
}

/* 
 * フォント指定用クラス
 * ex)
 * <p class="ff-NotoSansJP">...</p>
 *
 * .ff-NotoSansJP {
 *   font-family: 'Noto Sans JP', sans-serif, 'Hiragino Kaku Gothic Pro', 'Meiryo';
 * }
 */

/************
ヘッダー
************/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 95px;
  /* background-color: rgba(0, 0, 0, 0.3); */
  z-index: 10;
  width: 100%;
}
.header-inner {
  padding: 16px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.s .header-inner {
  padding: 12px clamp(16px, calc(24 / var(--design-width) * 100vw), 24px);
}

.s .header-inner {
  position: relative;
}

/* .s .header._scrolled::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 90%;
  background: rgb(247 41 41 / 80%);
} */

.s .menu._open .header._scrolled::before {
  content: none;
}

header._menu .header-inner {
  justify-content: flex-end;
}
.header-old {
  font-size: calc(14 / var(--root-font-size) * 1rem);
  color: #fff;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", sans-serif, Meiryo;
  letter-spacing: 8px;
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  width: fit-content;
  transition: opacity 0.2s ease;
}
.s .header {
  height: 84px;
}
.s .header-old {
  position: absolute;
  font-size: calc(10 / var(--root-font-size) * 1rem);
  left: 20%;
  right: auto;
  top: 110%;
  margin: unset;
}
/* 920px以下の場合 */
@media screen and (max-width: 1230px) {
  .header-old {
    position: relative;
    bottom: 0;
  }
}

.header-btns {
  display: flex;
  gap: 10px;
}
.s .header-btns {
  gap: 5px;
}
.header-btn {
  width: 145px;
  height: 44px;
  border-radius: 9999px;
  font-size: calc(14 / var(--root-font-size) * 1rem);
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  /* padding: 0 20px; */
  text-align: left;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border 0.3s ease;
  text-decoration: none;
}

.s .header-btn {
  width: 88px;
  height: 32px;
  font-size: calc(10 / var(--root-font-size) * 1rem);
  gap: 10px;
}
.header-fakeBtn {
  width: 145px;
  height: 44px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}
.s .header-fakeBtn {
  width: 88px;
  height: 32px;
}
.header-btn._transparent {
  border: 1px solid #fff;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.3);
  font-weight: 500;
}
.header-btn._transparent:hover {
  border: 1px solid rgba(0, 0, 0, 1);
  color: rgba(0, 0, 0, 1);
  background-color: #fff;
  opacity: 1;
}
.header-btn._red {
  border: 1px solid #fd0200;
  color: #fff;
  background-color: #fd0200;
  font-weight: 500;
}
.header-btn._red:hover {
  border: 1px solid #fff;
  color: #fd0200;
  background-color: #fff;
}

.header-btn._white {
  border: 1px solid #f1f1f1;
  color: #272727;
  background-color: #ffffff;
  font-weight: 500;
}
.header-btn._white:hover {
  border: 1px solid #272727;
  color: #ffffff;
  background-color: #272727;
}

.header-btnpNum {
  width: 30px;
  height: 16px;
  background-color: #fff;
  border-radius: 9999px;
  font-size: calc(12 / var(--root-font-size) * 1rem);
  font-weight: bold;
  color: #fd0200;
  display: flex;
  justify-content: center;
  align-items: center;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}
.header-btn._transparent:hover > .header-btnpNum {
  background-color: #fd0200;
  color: #fff;
}
.s .header-btnpNum {
  font-size: calc(10 / var(--root-font-size) * 1rem);
  width: 20px;
  height: 12px;
}
/* .header-logoWrapper {
  padding: 12px 24px;
  background-color: #fff;
  height: 100%;
  display: flex;
  align-items: center;
  border-radius: 0 0 16px 0;
}
.s .header-logoWrapper {
  padding: 0px 12px;
} */
.header-logo {
  width: 94px;
  margin-top: 7px;
}
.header-logo a > img {
  width: 100%;
}
.s .header-logo {
  width: 60px;
  margin-top: 0;
}
.s .header-logo img {
  width: 100%;
}

.header-btnHamburger {
  width: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 16px;
  transition: background-color 0.3s ease;
}
.s .header-btnHamburger {
  width: 10px;
  height: 9px;
}
.header-btnHamburger span {
  width: 100%;
  height: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.header-btn._red .header-btnHamburger span {
  background-color: #fff;
}
.header-btn._white .header-btnHamburger span {
  background-color: #272727;
}
.header-btn._red:hover > .header-btnHamburger span {
  background-color: #fd0200;
}
.header-btn._white:hover > .header-btnHamburger span {
  background-color: #ffffff;
}
.s .header-btnHamburger span {
  height: 1px;
}

.header-btn._active .header-btnHamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.s .header-btn._active .header-btnHamburger span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.header-btn._active .header-btnHamburger span:nth-child(2) {
  opacity: 0;
}

.header-btn._active .header-btnHamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.s .header-btn._active .header-btnHamburger span:nth-child(3) {
  transform: translateY(-4px) rotate(-45deg);
}
.header-recruitLink {
  position: absolute;
  right: 40px;
  bottom: 0;
}
.s .header-recruitLink {
  right: 5%;
  bottom: -7px;
}
.header-recruitLink > a {
  font-size: calc(12 / var(--root-font-size) * 1rem);
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-recruitLink._white > a {
  color: #fff;
}

.header-recruitLink._black > a {
  color: #272727;
}
.header-linkArrow {
  width: 12px;
}
.header-linkArrow > img {
  width: 100%;
}
/************
ボタン
************/
.c-btn {
  position: relative;
  font-family: "Montserrat", sans-serif;
  min-width: 200px;
  height: 60px;
  border-radius: 9999px;
  font-size: calc(20 / var(--root-font-size) * 1rem);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease;
  padding: 0 50px;
}
.c-btn._large {
  min-width: 260px;
}
.s .c-btn {
  width: 120px;
  height: 40px;
  min-width: 150px;
  font-size: calc(10 / var(--root-font-size) * 1rem);
  padding: 0 10% 0 5%;
}
.c-btn a {
  text-decoration: none;
  color: unset;
}

/* 波紋アニメーション用の疑似要素 */
.c-btn::before,
.c-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
}

/* ホバー時の波紋アニメーション */
.c-btn:hover::before {
  animation: ripple 1.5s ease-out;
}

.c-btn:hover::after {
  animation: ripple 1.5s ease-out 0.25s;
}

/* 波紋アニメーションの定義 */
@keyframes ripple {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    width: 400px;
    height: 400px;
    opacity: 0;
  }
}

.c-btn._red {
  border: 1px solid #fd0200;
  color: #fff;
  background-color: #fd0200;
  text-decoration: none;
}
.c-btn._red:hover {
  opacity: 1;
}
.c-btn._gray {
  border: 1px solid #ffffff;
  color: #333;
  background-color: #dae0e5;
}
.c-btn._transparent {
  border: 1px solid #fff;
  color: #fff;
  background-color: transparent;
  text-decoration: none;
}
.c-btn._transparent:hover {
  opacity: 1;
}
.c-btnArrow {
  position: absolute;
  right: 24px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  height: fit-content;
  z-index: 1;
}
.c-btnArrow img {
  width: 100%;
}
.s .c-btnArrow {
  width: 10px;
  right: 16px;
  right: 7%;
}
.s .c-btnArrow img {
  width: 100%;
}
.c-btnText {
  position: relative;
  z-index: 1;
}
.c-simpleBtn {
  width: 140px;
  height: 60px;
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.c-simpleBtn:hover {
  opacity: 0.7;
  transform: translateY(-4px);
}
.s .c-simpleBtn {
  width: 80px;
  height: 40px;
}
.c-simpleBtn > img {
  width: 14px;
  height: 14px;
}

.s .c-simpleBtn > img {
  width: 10px;
  height: 10px;
}

/************
メニュー
************/
.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 20;
  color: #fff;
  opacity: 0;
  z-index: -1;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  padding: clamp(calc(36 / var(--root-font-size) * 1rem), calc(90 / var(--design-width) * 100vw), calc(90 / var(--root-font-size) * 1rem)) clamp(calc(36 / var(--root-font-size) * 1rem), calc(72 / var(--design-width) * 100vw), calc(72 / var(--root-font-size) * 1rem));
}
.menu-inner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  overflow-y: scroll;
}
.menu-inner ul {
  padding-bottom: 6.94vw;
}
.s .menu-inner {
  height: fit-content;
}

.s .menu {
  height: 100vh;
  align-items: center;
  padding: 20% 5% 10%;
  overflow: scroll;
}
@supports (height: 100dvh) {
  .s .menu {
    height: 100dvh;
  }
}

.menu._open {
  opacity: 1;
  visibility: visible;
  z-index: 20;
}

.menu a {
  text-decoration: none;
  color: inherit;
}

.menu-snsItem._fb,
.menu-snsItem._x {
  width: 26px;
}
.menu-snsItem._note {
  width: 40px;
}
.menu-snsItem > img {
  width: 100%;
}
.menu-left {
  position: relative;
  width: 50%;
  margin-top: 10vh;
}
.s .menu-left {
  margin-top: 0;
  width: 100%;
}
.menu-left .menu-subMenu {
  display: none;
}
.s .menu-left .menu-subMenu {
  display: flex;
}

.menu-right {
  width: 50%;
}
.s .menu-right {
  display: none;
}
.menu-subMenu {
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  position: absolute;
  margin: auto;
  height: fit-content;
}
.menu-subMenu._show {
  
}
/* .menu-subMenu {
  display: flex;
  flex-direction: column;
  gap: clamp(calc(12 / var(--root-font-size) * 1rem), calc(25 / var(--design-width) * 100vw), calc(35 / var(--root-font-size) * 1rem));
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  height: fit-content;
} */
.s .menu-subMenu {
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  overflow: hidden;
  max-height: 0;
  padding-top: 0;
  border-top: none;
  transition:
    max-height 0.6s ease,
    opacity 0.6s ease,
    visibility 0.6s ease,
    padding-top 0.6s ease;
}
.s .menu-subMenu._show {
  max-height: 1000px;
  /* padding-top: 5%; */
  border-top: solid 1px rgba(255, 255, 255, 0.5);
}
.menu-subMenu._show {
  opacity: 1;
  visibility: visible;
}
.menu-subMenu > li {
  font-size: clamp(calc(12 / var(--root-font-size) * 1rem), calc(32 / var(--design-width) * 100vw), calc(32 / var(--root-font-size) * 1rem));
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #fff;
  font-weight: 700;
  margin-bottom: 47px;
}
.menu-subMenu > li:last-child {
  margin-bottom: 0;
}

.s .menu-subMenu > li {
  margin-bottom: 16px;
}

.menu-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(calc(12 / var(--root-font-size) * 1rem), calc(25 / var(--design-width) * 100vw), calc(25 / var(--root-font-size) * 1rem));
}
.s .menu-list {
  text-align: center;
  gap: 14px;
}
.menu-listTitleEn {
  font-size: clamp(calc(36 / var(--root-font-size) * 1rem), calc(52 / var(--design-width) * 100vw), calc(52 / var(--root-font-size) * 1rem));
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
}
.s .menu-listTitleEn {
  font-size: calc(36 / var(--root-font-size) * 1rem);
}
.menu-listTitleEn._large {
  font-size: clamp(calc(18 / var(--root-font-size) * 1rem), calc(80 / var(--design-width) * 100vw), calc(80 / var(--root-font-size) * 1rem));
}
.s .menu-listTitleEn._large {
  font-size: calc(48 / var(--root-font-size) * 1rem);
}
.menu-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  transform: translate(-35px, 0);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.s .menu-item {
  flex-direction: column;
  transform: translate(0, 0);
  gap: 0px;
}
.menu-item:hover {
  opacity: 0.7;
}
.s .menu-item:hover {
  opacity: 1;
}
.menu-itemArrow {
  position: relative;
  width: 28px;
  height: 4px;
  background: #ffffff;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.menu-item._active .menu-itemArrow {
  opacity: 1;
}
.menu-item._active {
  transform: translate(0, 0);
}

.menu-item._active {
}

.menu-itemArrow:before,
.menu-itemArrow:after {
  content: "";
  position: absolute;
  right: -4px;
  width: 15px;
  height: 4px;
  transform-origin: center right;
  background: #ffffff;
}
.menu-itemArrow:before {
  top: 1px;
  transform: rotate(45deg);
}
.menu-itemArrow::after {
  top: -1px;
  transform: rotate(-45deg);
}
/* .menu-item._active::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(
    calc(12 / var(--root-font-size) * 1rem),
    calc(25 / var(--design-width) * 100vw),
    calc(25 / var(--root-font-size) * 1rem)
  );
  color: #fff;
}
.menu-item._active {
  padding-left: clamp(
    calc(12 / var(--root-font-size) * 1rem),
    calc(25 / var(--design-width) * 100vw),
    calc(25 / var(--root-font-size) * 1rem)
  );
} */
.menu-item > a {
  display: flex;
  gap: 30px;
  align-items: center;
}
.s .menu-item > a {
  flex-direction: column;
  gap: 0px;
}
.menu-listTitleJa {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(calc(10 / var(--root-font-size) * 1rem), calc(14 / var(--design-width) * 100vw), calc(14 / var(--root-font-size) * 1rem));
  margin-left: 6px;
}
.menu-listTitleJa._large {
  font-size: clamp(calc(10 / var(--root-font-size) * 1rem), calc(20 / var(--design-width) * 100vw), calc(20 / var(--root-font-size) * 1rem));
  margin-left: 15px;
}
.s .menu-listTitleJa {
  font-size: calc(14 / var(--root-font-size) * 1rem);
}
.s .menu-item._active .menu-listTitleJa {
  padding-bottom: 3%;
  margin-left: 0;
}
.menu-snsArea {
  position: absolute;
  /* margin-top: clamp(60px, calc(80 / var(--design-width) * 100vw), 80px); */

  padding: clamp(calc(20 / var(--root-font-size) * 1rem), calc(40 / var(--design-width) * 100vw), calc(40 / var(--root-font-size) * 1rem)) clamp(calc(36 / var(--root-font-size) * 1rem), calc(72 / var(--design-width) * 100vw), calc(72 / var(--root-font-size) * 1rem));
  bottom: 0;
  left: 0;
  width: 100%;
}
.s .menu-snsArea {
  position: relative;
  margin: 0 auto;
}
.menu-sns {
  display: flex;
  align-items: center;
  gap: 13px;
}
.s .menu-sns {
  justify-content: center;
}

.menu-other {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  margin-top: clamp(10px, calc(20 / var(--design-width) * 100vw), 20px);
}
.s .menu-other {
  justify-content: center;
  gap: 15px;
}
.menu-other > a {
  font-size: calc(14 / var(--root-font-size) * 1rem);
  color: rgba(255, 255, 255, 0.5);
}
.s .menu-other > a {
  font-size: calc(10 / var(--root-font-size) * 1rem);
}
.menu-other > a:not(:last-child)::after {
  content: "|";
  margin-left: 15px;
  color: rgba(255, 255, 255, 0.5);
}
.menu-border {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background-color: rgba(255, 255, 255, 0.3);
}
.s .menu-border {
  display: none;
}
.menu-right {
  padding-left: clamp(20px, calc(42 / var(--design-width) * 100vw), 42px);
  margin-top: 10vh;
}

.menu-group {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  height: 100%;
  overflow-y: auto;
}
.s .menu-group {
  height: fit-content;
}
.menu-groupTitle {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  margin-bottom: 32px;
}
.s .menu-groupTitle {
  flex-direction: column;
  gap: 10px;
}
.menu-groupTitleEn {
  font-size: clamp(calc(36 / var(--root-font-size) * 1rem), calc(52 / var(--design-width) * 100vw), calc(52 / var(--root-font-size) * 1rem));
  font-weight: bold;
  font-family: "Jost", sans-serif;
  line-height: 1;
}

.menu-groupTitleJa {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(calc(12 / var(--root-font-size) * 1rem), calc(14 / var(--design-width) * 100vw), calc(14 / var(--root-font-size) * 1rem));
}

/* .menu-groupList {
  display: flex;
  gap: clamp(calc(10 / var(--root-font-size) * 1rem), calc(15 / var(--design-width) * 100vw), calc(15 / var(--root-font-size) * 1rem)) clamp(calc(10 / var(--root-font-size) * 1rem), calc(15 / var(--design-width) * 100vw), calc(15 / var(--root-font-size) * 1rem));
  margin-top: clamp(calc(15 / var(--root-font-size) * 1rem), calc(30 / var(--design-width) * 100vw), calc(30 / var(--root-font-size) * 1rem));
  flex-wrap: wrap;
  overflow-y: scroll;
  padding-bottom: clamp(calc(20 / var(--root-font-size) * 1rem), calc(40 / var(--design-width) * 100vw), calc(40 / var(--root-font-size) * 1rem));
} */

.menu-groupList {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px 32px;
  width: 100%;
}

/*.s .menu-groupItem {
  width: 48%;
} */

.s .menu-groupLogo {
  width: 100%;
  height: auto;
}
.menu-groupItem {
  max-width: 140px;
  width: 100%;
}

.menu-groupLogo {
  max-width: 140px;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
}

.menu-groupLogo > img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 比率を維持してコンテナ全体を覆う */
  object-position: center; /* 画像の中央を基準に配置 */
  transition: transform 0.3s ease;
}
.menu-groupName {
  font-weight: 400;
  font-size: calc(14 / var(--root-font-size) * 1rem);
  color: #fff;
  margin-top: 5px;
  line-height: 1.5;
}

@media screen and (min-width: 1024px) and (max-height: 590px) {
  .menu-inner {
    align-items: flex-start;
  }
  .menu-subMenu {
    /* top: 0; */
    bottom: auto;
  }
  .menu {
    padding: clamp(calc(36 / var(--root-font-size) * 1rem), calc(120 / var(--design-width) * 100vw), calc(120 / var(--root-font-size) * 1rem)) clamp(calc(36 / var(--root-font-size) * 1rem), calc(72 / var(--design-width) * 100vw), calc(72 / var(--root-font-size) * 1rem));
  }
}

/************
フッター
************/
.footer {
  position: relative;
  z-index: 1;
  background-color: #272727;
}
.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  box-sizing: border-box;
}
.footer-baseInfo {
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  padding: 56px 72px 34px;
  align-items: flex-start;
}
.s .footer-baseInfo {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 40px 15px 15px;
}
.footer-baseInfoLogoArea {
  width: 50%;
}
.s .footer-baseInfoLogoArea {
  width: 100%;
}

.footer-baseInfoNoteArea {
  width: 50%;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.3);
  padding: 22px 22px 22px 35px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  height: 180px;
  position: relative;
}
.s .footer-baseInfoNoteArea {
  width: 100%;
  padding: 18px 20px 20px 20px;
  /* height: 180px; */
}

.footer-address {
  font-size: calc(14 / var(--root-font-size) * 1rem);
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.8;
  margin-top: 12px;
}
.s .footer-address {
  text-align: left;
}

.s .footer-address .sp-margin {
  margin-left: 6em;
}

.s .footer-NoteBox {
  text-align: left;
  flex-direction: column;
  display: flex;
  gap: 10px;
}

.footer-address > p:first-child {
  font-size: calc(22 / var(--root-font-size) * 1rem);
  font-weight: 700;
}
.footer-address > p:last-child {
  font-size: calc(16 / var(--root-font-size) * 1rem);
}

.s .footer-address > p:first-child {
  font-size: calc(20 / var(--root-font-size) * 1rem);
}

.s .footer-address > p:last-child {
  font-size: calc(12 / var(--root-font-size) * 1rem);
}

.footer-logo {
  width: 164px;
}
.footer-logo > img {
  width: 100%;
}
.footer-NoteItemBtn {
  position: absolute;
  right: 20px;
  bottom: 20px;
  border: #fff solid 1px;
  background-color: rgba(255, 255, 255, 0.9);
}
.s .footer-NoteItemBtn {
  position: absolute;
  right: 20px;
  bottom: 20px;
  margin: 0 0 0 auto;
}
.footer-NoteItemTitle {
  font-size: calc(25 / var(--root-font-size) * 1rem);
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-bottom: 7px;
  font-weight: bold;
}
.s .footer-NoteItemTitle {
  font-size: calc(22 / var(--root-font-size) * 1rem);
  line-height: 1;
}
.footer-NoteText {
  font-size: calc(16 / var(--root-font-size) * 1rem);
  line-height: 1.5;
}

.s .footer-NoteText {
  font-size: calc(14 / var(--root-font-size) * 1rem);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding: 20px 30px;
  flex-wrap: wrap;
}
.s .footer-bottom {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.s .footer {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.footer-sns {
  display: flex;
  align-items: center;
  gap: 20px;
}
.s .footer-sns {
  justify-content: center;
}

.s .footer-snsItem._fb,
.s .footer-snsItem._x {
  width: 26px;
}
.s .footer-snsItem._note {
  width: 40px;
}
.s .footer-snsItem > img {
  width: 100%;
}

.footer-link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  margin-top: clamp(10px, calc(20 / var(--design-width) * 100vw), 20px);
}
.s .footer-link {
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}
.footer-link > a {
  font-size: calc(14 / var(--root-font-size) * 1rem);
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

.footer-link br {
  display: none;
}

.s .footer-link > a {
  font-size: calc(10 / var(--root-font-size) * 1rem);
  width: 35%;
}

.footer-link > a:not(:last-child)::after {
  content: "|";
  margin-left: 15px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-copyWrite {
  font-size: calc(12 / var(--root-font-size) * 1rem);
  color: rgba(255, 255, 255, 0.5);
  margin-top: 20px;
  text-align: end;
}

.footer-copyWrite span {
  font-size: calc(11 / var(--root-font-size) * 1rem);
}

.s .footer-copyWrite {
  text-align: center;
  font-size: calc(10 / var(--root-font-size) * 1rem);
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  color: #ffffff;
  justify-content: flex-start;
  padding: 56px 72px 34px;
  row-gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.s .footer-menu {
  justify-content: flex-start;
  padding: 20px 17px;
  width: 100%;
  gap: 30px 10px;
}

.footer-menuItem {
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.5;
  width: 25%;
  min-width: 250px;
}
.footer-menuItem a {
  color: #fff;
  text-decoration: none;
}
.s .footer-menuItem {
  width: 47%;
  min-width: unset;
  text-align: left;
}
.footer-menuItem._groupList {
  width: 50%;
}
.s .footer-menuItem._groupList {
  width: 100%;
}
.footer-subMenuWrapper {
  display: flex;
}
.s .footer-subMenuWrapper {
  flex-direction: column;
  gap: 0;
}
.footer-subMenuWrapper > .footer-subMenu {
  width: 50%;
}
.s .footer-subMenuWrapper > .footer-subMenu {
  width: 100%;
}
.footer-subMenuTitle {
  font-size: calc(20 / var(--root-font-size) * 1rem);
  font-weight: bold;
}
.s .footer-subMenuTitle {
  font-size: calc(18 / var(--root-font-size) * 1rem);
}
.footer-subMenu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}

.footer-subMenu > li > a {
  font-size: calc(15 / var(--root-font-size) * 1rem);
  color: #ffffff;
  text-decoration: none;
  font-weight: 400;
}
.s .footer-subMenu > li > a {
  font-size: calc(12 / var(--root-font-size) * 1rem);
}

/* 1145px以下 */
@media screen and (max-width: 1145px) {
  .footer-menu {
    gap: 20px;
  }
  .footer-subMenuWrapper {
    gap: 20px;
  }
}

/* MENU対応 */

@media screen and (max-width: 768px) {
  .s .menu-groupList {
    justify-content: flex-start;
    grid-template-columns: repeat(3, 1fr);
  }
  .s .menu-groupItem,
  .s .menu-groupLogo {
    max-width: 200px;
  }
}

@media screen and (max-width: 600px) {
  .s .menu-groupList {
    justify-content: flex-start;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 20px;
  }
}

.l .only-s {
  display: none;
}

.s .only-s {
  display: block;
}
