@charset "UTF-8";

/* ==========================================
  リセット・基本設定
========================================== */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

*:focus {
  outline: none;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  color: #000000;
  -webkit-text-size-adjust: 100%;
  font-family: var(--font-go);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  overflow-x: clip;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

a.img-link,
.img-link-wrap a {
  display: block;
  font-size: 0;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  appearance: none;
  -webkit-appearance: none;
}

button {
  cursor: pointer;
}

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

address {
  font-style: normal;
}

/* ==========================================
  フォント
========================================== */
:root {
  --font-min:
    "Yu Mincho", "Times New Roman", "YuMincho", "Hiragino Mincho ProN",
    "MS PMincho", serif;
  --font-go:
    "Yu Gothic", "Helvetica Neue", "Helvetica", "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  --font-NsanJ:
    "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  --font-NserifJ:
    "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W6",
    "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  --font-shippori:
    "Shippori Mincho B1", "游明朝体", "Yu Mincho", YuMincho,
    "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝",
    "MS PMincho", "MS 明朝", serif;
  --font-ZenOldMin:
    "Zen Old Mincho", "Times New Roman", "YuMincho", "Hiragino Mincho ProN",
    "Yu Mincho", "MS PMincho", serif;
  --font-ZenMaruGo:
    "Zen Maru Gothic", "Helvetica Neue", "Helvetica", "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  --font-futura: "Futura PT", Futura, "Century Gothic", sans-serif;
  --font-kozuka:
    "Kozuka Gothic Pr6N", "小塚ゴシック Pr6N", "Hiragino Sans",
    "ヒラギノ角ゴ ProN", "Yu Gothic", "游ゴシック", sans-serif;
}

/* ==========================================
  ユーティリティ
========================================== */
.taC {
  text-align: center;
}

.fwB {
  font-weight: bold;
}

.dsp_none {
  display: none !important;
}

/*=== PC none / SP none ===*/
@media screen and (min-width: 961px) {
  .pc-none,
  .pc-none_s,
  .pc-none_md,
  .pc-none_480 {
    display: none !important;
  }
}

@media screen and (min-width: 1201px) {
  .pc-none_lg {
    display: none !important;
  }
}

@media screen and (max-width: 1200px) {
  .sp-none_lg {
    display: none !important;
  }
}

@media screen and (max-width: 960px) {
  .sp-none,
  .sp-none_md,
  .sp-none_sm,
  .sp-none_smS,
  .sp-none_xs {
    display: none !important;
  }
}

/* ==========================================
  幅
========================================== */
.wrap {
  max-width: 1200px;
  width: 92%;
  margin: 0 auto;
}

.wrapB {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
}

.wrapW {
  width: 92%;
  margin: 0 auto;
  max-width: 1920px;
}

/* ==========================================
  アンカーリンク
========================================== */
.anchor_link {
  position: relative;
  top: calc(0px - clamp(50px, 7vw, 70px));
  display: block;
}

/* ==========================================
  ホバー
========================================== */
.banner-link {
  display: block;
  transition: all 0.3s ease;
}

@media (hover: hover) {
  .banner-link:hover {
    opacity: 0.8;
    transform: translateY(-4px);
  }
}

/* ==========================================
  アニメーション（inview代替）
========================================== */
.js-fadeup {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
    transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.js-fadeup.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.js-fadeleft {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
    transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.js-fadeleft.is-inview {
  opacity: 1;
  transform: translateX(0);
}

.js-faderight {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
    transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.js-faderight.is-inview {
  opacity: 1;
  transform: translateX(0);
}

.js-zoomin {
  opacity: 0;
  transform: scale(0.9);
  transition:
    opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
    transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.js-zoomin.is-inview {
  opacity: 1;
  transform: scale(1);
}

/* ==========================================
   FVの背景画像用の個別調整
========================================== */
.fv-bg > div {
  width: 100%;
  height: 100%;
}

/* ==========================================
  セクション余白
========================================== */
.sec_PTB {
  padding-block: clamp(6rem, 8vw, 12rem);
}

@media screen and (max-width: 960px) {
  .sec_PTB {
    padding-block: clamp(5rem, 10vw, 8rem);
  }
}

.sec_PT {
  padding-top: clamp(6rem, 8vw, 12rem);
}

@media screen and (max-width: 960px) {
  .sec_PT {
    padding-top: clamp(5rem, 10vw, 8rem);
  }
}

.sec_PB {
  padding-bottom: clamp(6rem, 8vw, 12rem);
}

@media screen and (max-width: 960px) {
  .sec_PB {
    padding-bottom: clamp(5rem, 10vw, 8rem);
  }
}

.sec_PB_m {
  padding-bottom: clamp(3rem, 4vw, 6rem);
}

@media screen and (max-width: 960px) {
  .sec_PB {
    padding-bottom: clamp(2.5rem, 5vw, 4rem);
  }
}

.sec_MT {
  margin-top: clamp(4rem, 6vw, 8rem);
}

@media screen and (max-width: 960px) {
  .sec_MT {
    margin-top: clamp(3rem, 6vw, 5rem);
  }
}

.sec_MT_m {
  margin-top: clamp(3rem, 4vw, 6rem);
}

@media screen and (max-width: 960px) {
  .sec_MT_m {
    margin-top: clamp(2.5rem, 5vw, 4rem);
  }
}

.sec_MT_s {
  margin-top: clamp(2rem, 3vw, 4rem);
}

@media screen and (max-width: 960px) {
  .sec_MT_s {
    margin-top: clamp(1.5rem, 3vw, 2.5rem);
  }
}

.sec_MT_xs {
  margin-top: clamp(1rem, 2vw, 2rem);
}

@media screen and (max-width: 960px) {
  .sec_MT_xs {
    margin-top: 1rem;
  }
}

/* ==========================================
  セクションタイトル共通
========================================== */
.sec-ttl {
  font-family: var(--font-go);
}

.sec-ttl .ttlMain {
  font-family: var(--font-futura);
  font-size: clamp(3.6rem, 7vw, 9.6rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
}

.sec-ttl .ttlMain.jaB {
  font-family: var(--font-go);
  font-weight: bold;
  font-size: clamp(4.5rem, 8vw, 9rem);
  letter-spacing: 0.1em;
}

.sec-ttl .ttlSub {
  margin-top: 0.6em;
  font-family: var(--font-go);
  font-weight: bold;
  font-size: clamp(1.4rem, 2vw, 3rem);
  letter-spacing: 0.05em;
}

.sec-ttl .ttlSub::before {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  background: #111;
  margin: 0 auto 0.8em;
}

#footer.footer-main {
  font-family: var(--font-kozuka);
}

/* ==========================================
  テキスト共通
========================================== */
.basic-txtR {
  font-family: var(--font-go);
  font-size: clamp(2rem, 2.5vw, 3rem);
  font-weight: 400;
  letter-spacing: 0em;
  line-height: 2;
}

.basic-txtR strong {
	display: block;
	margin-top: 25px;
	paddign: 10px 0;
	border-block: 1px solid #333;
  font-size: 1.5em;
}

/* ==========================================
  ボタン共通
========================================== */
.borderlessBtn {
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 0.8em;
}

.borderlessBtn .btn-txt {
  font-family:
    "Yu Mincho", "Times New Roman", "YuMincho", "Hiragino Mincho ProN",
    "MS PMincho", serif;
  font-size: clamp(1.4rem, 1.6vw, 1.6rem);
  letter-spacing: 0.1em;
}

.arwStyle {
  border: 1px solid #000;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100vmax;
  width: clamp(50px, 6vw, 70px);
  aspect-ratio: 78 / 41;
  transition: 0.3s ease-in-out;
  flex-shrink: 0;
}

.arwStyle .arw {
  position: relative;
  display: inline-block;
  width: clamp(14px, 1.8vw, 22px);
  height: 1px;
  background-color: #000;
  transition: 0.3s ease-in-out;
}

.arwStyle .arw::before,
.arwStyle .arw::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: clamp(7px, 0.9vw, 11px);
  height: 1px;
  background-color: #000;
  transform-origin: calc(100% - 0.5px) 50%;
  transition: 0.3s ease-in-out;
}

.arwStyle .arw::before {
  transform: rotate(45deg);
}

.arwStyle .arw::after {
  transform: rotate(-45deg);
}

.arwStyle.wht {
  border-color: #fff;
}

.arwStyle.wht .arw {
  background: #fff;
}

.arwStyle.wht .arw::before,
.arwStyle.wht .arw::after {
  background: #fff;
}

/* ==========================================
  ヘッダー
========================================== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  z-index: 100;
  background: #fff;
  transition: 0.3s ease-in-out;
  overflow-x: clip;
}

#header.header-form {
  background: #fff;
}

#header .header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2% 0 4%;
  height: clamp(80px, 9vw, 100px);
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

#header .header-logo a {
  display: block;
  font-size: 0;
}

.header-logo-block {
  min-width: 0;
  flex: 1 1 auto;
}

#header .header-logo {
  min-width: 0;
}

#header .header-logo img {
  height: clamp(40px, 8vw, 85px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}

.header-right {
  display: flex;
  align-items: center;
  gap: clamp(15px, 2vw, 30px);
  height: 100%;
  flex-shrink: 0;
}

.header-action-btns {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 100%;
}

.header-action-btns a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  font-size: clamp(1.2rem, 1.3vw, 1.4rem);
  font-weight: bold;
  padding: 0 clamp(15px, 2vw, 25px);
  height: clamp(44px, 5vw, 54px);
  transition: 0.3s ease;
}

@media (hover: hover) {
  .header-action-btns a:hover {
    opacity: 0.8;
  }
}

.header-action-btns a .icon img {
  width: clamp(18px, 1.8vw, 24px);
  height: auto;
}

.btn-doc {
  background: #324358;
}

.btn-res {
  background: #c68f54;
}

.btn-evt {
  background: #dfa929;
}

.gNav-trigger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 0;
  height: 100%;
  cursor: pointer;
  flex-shrink: 0;
}

.gNav-trigger .bar {
  width: 28px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}

.gNav-trigger .bar span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
  border-radius: 2px;
  transition: 0.3s ease-in-out;
}

.gNav-trigger .bar span:nth-of-type(1) {
  top: 0;
}

.gNav-trigger .bar span:nth-of-type(2) {
  top: calc(50% - 1px);
}

.gNav-trigger .bar span:nth-of-type(3) {
  bottom: 0;
  width: 60%;
}

.gNav-trigger .menu-txt {
  display: block;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #000;
  line-height: 1;
}

@media screen and (max-width: 960px) {
  #header .header_inner {
    padding: 0 4%;
  }

  .header-logo-block {
    max-width: calc(100% - 80px);
  }
}

/* ==========================================
  ハンバーガーメニュー中身
========================================== */
.GnavWrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  z-index: 99;
  display: flex;
  transform: translateX(100%);
  transition:
    transform 0.3s ease-in-out,
    visibility 0.3s ease-in-out,
    opacity 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.GnavWrap .GnavW-side {
  flex: 1;
  background: rgba(0, 0, 0, 0.5);
}

.GnavWrap .GnavW_main {
  width: 80%;
  max-width: 400px;
  background: #1d2b54;
  color: #fff;
  padding: clamp(70px, 10vw, 100px) 6% clamp(40px, 6vw, 60px);
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.GnavWrap .GnavW_ttl {
  margin-bottom: clamp(25px, 4vw, 40px);
}

.GnavWrap .GnavW_ttl a {
  display: block;
}

.GnavWrap .GnavW_ttl .txt {
  font-size: clamp(1.4rem, 1.6vw, 1.6rem);
  font-weight: bold;
  letter-spacing: 0.05em;
}

.GnavWrap .GnavRgl {
  margin-bottom: clamp(25px, 4vw, 40px);
  font-family: "Bodoni Moda", "游明朝体", "Yu Mincho", YuMincho, serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 1.8vw, 1.8rem);
  letter-spacing: 0.1em;
}

.GnavWrap .GnavRgl .nav-item + .nav-item {
  margin-top: 0.7em;
}

.GnavWrap .GnavW_cnv {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: clamp(1.3rem, 1.4vw, 1.4rem);
}

.GnavWrap .GnavW_cnv li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.GnavWrap .GnavW_cnv li a {
  display: block;
  padding: 0.9em 0;
}

#header.open .gNav-trigger span:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}

#header.open .gNav-trigger span:nth-of-type(2) {
  opacity: 0;
}

#header.open .gNav-trigger span:nth-of-type(3) {
  transform: translateY(-11px) rotate(45deg);
}

#header.open .GnavWrap {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}

.gnav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gnav.is-open {
  opacity: 1;
  visibility: visible;
}

.gnav-inner {
  width: 100%;
  padding: 0 20px;
}

.gnav-list {
  list-style: none;
  text-align: center;
  margin-bottom: 40px;
}

.gnav-list li {
  margin-bottom: 24px;
}

.gnav-list li a {
  color: #fff;
  text-decoration: none;
  font-size: 2rem;
  letter-spacing: 0.1em;
  font-weight: bold;
  transition: opacity 0.3s ease;
}

.gnav-list li a:hover {
  opacity: 0.7;
}

.gnav-cv {
  margin: 0 auto;
  width: 100%;
  max-width: min(400px, 92vw);
}

.gnav-cv .gnav-cv-btns {
  flex-direction: column;
  align-items: stretch;
  height: auto;
  width: 100%;
  gap: 12px;
}

.gnav-cv .gnav-cv-btns a {
  width: 100%;
  box-sizing: border-box;
  min-height: clamp(48px, 12vw, 54px);
  height: auto;
  padding: 10px 16px;
  border-radius: 4px;
}

body.is-locked {
  overflow: hidden;
}

.btn_menu {
  position: relative;
  z-index: 101;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.btn_menu_line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 2px;
  background: #000;
  transition: 0.3s ease;
}

.btn_menu_line:nth-child(1) {
  top: 12px;
}

.btn_menu_line:nth-child(2) {
  top: 21px;
}

.btn_menu_line:nth-child(3) {
  top: 30px;
}

.btn_menu.is-open .btn_menu_line:nth-child(1) {
  top: 21px;
  transform: translateX(-50%) rotate(45deg);
}

.btn_menu.is-open .btn_menu_line:nth-child(2) {
  opacity: 0;
}

.btn_menu.is-open .btn_menu_line:nth-child(3) {
  top: 21px;
  transform: translateX(-50%) rotate(-45deg);
}

.btn_menu.is-open .btn_menu_line {
  background: #fff;
}
/* ==========================================
  フッター
========================================== */
#footer.footer-main {
  background: #000;
  color: #fff;
  padding: clamp(40px, 6vw, 80px) 0 clamp(20px, 3vw, 30px);
  max-width: 100%;
  overflow-x: clip;
  box-sizing: border-box;
}

#footer.footer-main .wrapW {
  min-width: 0;
  max-width: min(100%, 1920px);
}

#footer.footer-main .footer-top {
  display: flex;
  flex-direction: column;
  gap: clamp(30px, 5vw, 50px);
  margin-bottom: clamp(30px, 5vw, 60px);
}

@media screen and (min-width: 961px) {
  #footer.footer-main .footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

#footer.footer-main .footer-left {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.5vw, 14px);
  min-width: 0;
}

@media screen and (min-width: 961px) {
  #footer.footer-main .footer-left {
    margin: 0 auto;
  }
}

#footer.footer-main .footer-logo-lib {
	width: max-content;
  font-size: 0;
  margin-bottom: 4px;
}

#footer.footer-main .footer-logo-lib img {
  height: clamp(26px, 3vw, 34px);
  width: auto;
}

#footer.footer-main .company-name {
  font-size: clamp(1.2rem, 1.3vw, 1.4rem);
  letter-spacing: 0.08em;
}

#footer.footer-main .company-address {
  font-size: clamp(1.1rem, 1.2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.04em;
}

#footer.footer-main .sns-links {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: clamp(6px, 1vw, 12px);
  list-style: none;
}

#footer.footer-main .sns-links li a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}

#footer.footer-main .sns-links li a:hover {
  opacity: 0.6;
}

#footer.footer-main .sns-links li a img {
  width: clamp(35px, 6vw, 50px);
  height: auto;
}

#footer.footer-main .footer-right {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.5vw, 14px);
  min-width: 0;
}

@media screen and (min-width: 961px) {
  #footer.footer-main .footer-right {
    align-items: flex-start;
    text-align: left;
    margin-left: calc(clamp(60px, 10vw, 150px) / 2);
  }
}

#footer.footer-main .footer-contact-label {
  font-size: clamp(1.1rem, 1.2vw, 1.3rem);
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: inline-block;
  padding: 4px 18px;
}

#footer.footer-main .footer-tel {
  font-family: "Kozuka Gothic Pr6N", "小塚ゴシック Pr6N", sans-serif;
  font-weight: 400;
  font-size: clamp(2.8rem, 4vw, 4.8rem);
  letter-spacing: 0.05em;
  line-height: 1;
}

#footer.footer-main .footer-tel a {
  color: #fff;
  text-decoration: none;
}

#footer.footer-main .footer-btn-outline {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  text-decoration: none;
  font-size: clamp(1.1rem, 1.2vw, 1.3rem);
  letter-spacing: 0.1em;
  padding: 8px 28px;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

#footer.footer-main .footer-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

#footer.footer-main .area-text {
  font-size: clamp(1rem, 1.1vw, 1.2rem);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.9;
  overflow-wrap: anywhere;
  word-break: break-word;
}

#footer.footer-main .footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  padding-top: clamp(16px, 2vw, 22px);
}

@media screen and (min-width: 961px) {
  #footer.footer-main .footer-bottom {
    justify-content: space-between;
  }
}

#footer.footer-main .trademark-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  max-width: 100%;
}

#footer.footer-main .trademark-wrap p {
  min-width: 0;
  flex: 1 1 12em;
  font-size: clamp(1rem, 1.1vw, 1.2rem);
  color: rgba(255, 255, 255, 0.5);
}

#footer.footer-main .trademark-wrap img {
  height: clamp(30px, 7vw, 68px);
  width: auto;
  max-width: 100%;
}

#footer.footer-main .footer-copy {
  font-size: clamp(1rem, 1.1vw, 1.2rem);
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.4);
}

/* ==========================================
  ページトップ
========================================== */
.pagetop {
  position: fixed;
  z-index: 8;
  right: 15px;
  bottom: 15px;
}

@media screen and (max-width: 960px) {
  .pagetop {
    display: none !important;
  }
}

.pagetop a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: #1d2223;
  transition: 0.3s ease-in-out;
}

.pagetop a::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(-45deg) translate(2px, 2px);
}

@media (hover: hover) {
  .pagetop a:hover {
    background: #000;
  }
}

/* ==========================================
  SP固定フッターナビ
========================================== */
.footer-nav-sp {
  position: fixed;
  z-index: 7;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  display: flex;
  background: transparent;
  transition: 0.3s;
  box-sizing: border-box;
}

@media screen and (min-width: 961px) {
  .footer-nav-sp {
    display: none;
  }
}

.footer-nav-sp li {
  flex: 1;
  min-width: 0;
}

.footer-nav-sp li a {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: clamp(4px, 1.2vw, 8px);
  min-height: 52px;
  height: 100%;
  padding: 8px clamp(4px, 1.5vw, 10px);
  color: #fff;
  font-size: clamp(1rem, 2.6vw, 1.3rem);
  font-weight: bold;
  line-height: 1.25;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  transition: opacity 0.3s ease;
  overflow-wrap: anywhere;
}

.footer-nav-sp li a .icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.footer-nav-sp li a .icon img {
  width: clamp(16px, 4.2vw, 22px);
  height: auto;
  display: block;
}

.footer-nav-sp li:last-child a {
  border-right: none;
}

@media (hover: hover) {
  .footer-nav-sp li a:hover {
    opacity: 0.85;
  }
}

@media screen and (max-width: 960px) {
  #footer.footer-main {
    padding-bottom: calc(clamp(20px, 3vw, 30px) + 52px);
  }
}
