@charset "UTF-8";
/**
 * ▼ 使用するリセットCSSを1つだけ選んでコメントを外してください。
 *
 * - the-new-css-reset:
 *   デフォルトスタイルをほぼ全て削除する超ミニマルなリセット。
 *   → 自分で全てのスタイルを定義したい場合に最適。
 *
 * - modern-css-reset:
 *   フォームやUIパーツにも配慮された汎用的なリセット。
 *   → ベーススタイルを少し残しつつ整えたい場合におすすめ。
 *
 * - ress:
 *   normalize.cssをベースにした古いブラウザにも対応する安定型。
 *   → 互換性を重視したい場合はこちら。
 */
/**
 * Minified by jsDelivr using clean-css v5.3.3.
 * Original file: /npm/the-new-css-reset@1.8.0/css/reset.css
 *
 * Do NOT use SRI with dynamically generated files! More information: https://www.jsdelivr.com/using-sri-with-dynamic-files
 */
:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

*,
::after,
::before {
  box-sizing: border-box;
}

a,
button {
  cursor: revert;
}

menu,
ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
}

table {
  border-collapse: collapse;
}

input,
textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  appearance: revert;
}

pre {
  all: revert;
}

::placeholder {
  color: unset;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
}


/**
 * ▼ メディアクエリ用ブレイクポイント
 *
 * - $bp-sp:
 *   スマホの上限幅（例: ~767px）
 * - $bp-tab:
 *   タブレットの上限幅（例: ~1023px）
 */
/**
 * ▼ メディアクエリミックスイン
 *
 * - media-pc:
 *   PC向けのスタイルを適用するためのメディアクエリ。
 * - media-tab:
 *   タブレット向けのスタイルを適用するためのメディアクエリ。
 * - media-sp:
 *   スマホ向けのスタイルを適用するためのメディアクエリ。
 */
/**
 * ▼ fluidスケーリングに関する設定
 *
 * - $fluid-vw-min / $fluid-vw-max:
 *   clamp()で滑らかに変化させる際のビューポート最小・最大値。
 *   → 通常はスマホ〜PCの幅（375〜1280pxなど）を想定。
 */
/**
 * ▼ fluid()
 *
 * - clamp()を生成するSass関数。
 * - 引数に最小サイズ・最大サイズを渡すことで、
 *   指定したビューポート範囲内で値を滑らかに変化させる。
 *
 * 使用例:
 *   font-size: fluid(14, 20);
 */
/**
 * @function vw-○○()
 * 指定されたサイズを基準に、ビューポート幅に応じたvw単位の値を計算します。
 * 
 * @param {Number} $size - 基準となるサイズ（ピクセル単位）。
 * @param {Number} $viewport - ビューポートの幅（デフォルトは1920px, 768px, 375px）。
 * @return {String} - 計算されたvw単位の値。
 */
:root {
  /*----- カラー -----*/
  --color-primary: #E50012;
  --color-base-black: #1B1B1B;
  --color-base-white: #FFF;
  --color-bg-gray: #F6F6F6;
  --color-disable: #DEDEDE;
  /*----- フォント -----*/
  --font-futura: "futura-pt", sans-serif;
  /*----- フォント -----*/
  --font-size-base: clamp(1.4rem, 1.5vw, 1.8rem);
  --font-size-xxs: clamp(1rem, 1.17vw, 1.4rem);
  --font-size-h3: clamp(1.8rem, 2.92vw, 5.6rem);
  --font-size-h4: clamp(1.8rem, 2.08vw, 4rem);
  --font-size-h5: clamp(1.6rem, 2.67vw, 3.2rem);
  --font-size-h6: clamp(1.2rem, 2vw, 2.4rem);
  --font-size-h2_en: clamp(4rem, 7.29vw, 14rem);
  --font-size-h3_en: clamp(2.2rem, 5.21vw, 10rem);
  --font-size-h4_en: clamp(1.8rem, 2.92vw, 5.6rem);
  --font-size-h5_en: clamp(1.6rem, 2.67vw, 3.2rem);
  --font-size-h6_en: clamp(1.4rem, 2vw, 2.4rem);
}

html {
  font-size: 10px;
}
@media (max-width: 1000px) {
  html {
    font-size: 1vw; /* 10px / 1000px * 100 */
  }
}
@media (max-width: 767px) {
  html {
    font-size: 2.6667vw; /* 10px / 375px * 100 */
  }
}

body {
  color: var(--color-base-black);
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}
@media (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

.xl-inner {
  margin: 0 auto;
  max-width: 1200px;
}
@media (max-width: 1300px) {
  .xl-inner {
    width: 85%;
  }
}
@media (min-width: 980px) and (max-width: 1300px) and (max-height: 750px) {
  .xl-inner {
    width: 75%;
  }
}
@media (max-width: 767px) {
  .xl-inner {
    margin: 0;
    padding: 0 2.75rem;
    width: 100% !important;
  }
}

.l-inner {
  margin: 0 auto;
  max-width: 1024px;
}
@media (max-width: 1200px) {
  .l-inner {
    width: 80%;
  }
}
@media (min-width: 980px) and (max-width: 1300px) and (max-height: 750px) {
  .l-inner {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .l-inner {
    margin: 0;
    padding: 0 2.75rem;
    width: 100% !important;
  }
}

.sticky-panel {
  position: relative;
  display: block;
  background-color: var(--color-primary);
}
.sticky-panel-2 {
  background-color: var(--color-base-white);
}
.sticky-panel-3 {
  background-color: var(--color-bg-gray);
}

.anchor-fade {
  animation: anchorFade 0.35s ease-out;
}

@keyframes anchorFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.grid-pattern {
  position: relative;
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), rgba(255, 255, 255, 0.3) calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), rgba(255, 255, 255, 0.3) calc(100% - 1px));
  background-size: clamp(10rem, 12.5vw, 24rem) clamp(10rem, 12.5vw, 24rem);
  background-repeat: repeat;
  background-position: top left;
  z-index: 0;
}
@media (max-width: 767px) {
  .grid-pattern {
    background-size: 10rem 10rem;
    background-position: top center;
  }
}
.grid-pattern.--red {
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), rgba(229, 0, 18, 0.2) calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), rgba(229, 0, 18, 0.2) calc(100% - 1px));
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  width: 100%;
}
@media (max-width: 767px) {
  .news-list {
    gap: 0.8rem;
  }
}
.news-list li {
  overflow: hidden;
}
.news-list li a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2.4rem;
  padding: clamp(1.4rem, 1.46vw, 2.8rem);
  border: 1px solid var(--color-primary);
  transition: color 0.2s ease 0.1s border 0.2s ease;
  z-index: 1;
}
@media (max-width: 767px) {
  .news-list li a {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1.2rem 1.4rem;
  }
}
.news-list li a::after {
  position: absolute;
  background: var(--color-primary);
  inset: 0;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
  content: "";
}
.news-list li a::before {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--color-base-white);
  top: 0;
  left: 0;
  z-index: -2;
  content: "";
}
.news-list li:hover a {
  border: 1px solid var(--color-base-white);
  transition: color 0.2s ease 0.1s border 0.2s;
}
.news-list li:hover a::after {
  transform: translateY(0);
}
.news-list li:hover .news-list__day {
  color: var(--color-base-white);
}
.news-list li:hover .news-list__text {
  color: var(--color-base-white);
}
.news-list__day {
  font-family: var(--font-futura);
  color: var(--color-primary);
  font-style: italic;
  font-size: var(--font-size-h6);
  font-weight: 600;
  transition: color 0.2s ease;
}
@media (max-width: 767px) {
  .news-list__day {
    line-height: 1;
    font-size: 1.4rem;
  }
}
.news-list__text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-size: var(--font-size-base);
  transition: color 0.2s ease;
}
@media (max-width: 767px) {
  .news-list__text {
    font-size: 1.2rem;
  }
}

.js-scroll-x,
.js-scroll-y {
  padding: 0 clamp(2.4rem, 2.5vw, 4.8rem) 0 0;
  height: 60vh;
  scrollbar-width: thin;
}
@media (max-width: 1300px) {
  .js-scroll-x,
  .js-scroll-y {
    height: 57vh;
  }
}
@media (max-width: 767px) {
  .js-scroll-x,
  .js-scroll-y {
    padding: 0 2rem 0 0;
    height: 70vh;
  }
}

.simplebar-scrollbar.simplebar-visible:before {
  opacity: 1;
}

.simplebar-track {
  background-color: var(--color-bg-gray);
}

.simplebar-horizontal {
  height: 0 !important;
}

.simplebar-scrollbar::before {
  background-color: var(--color-primary);
  border-radius: 0;
  opacity: 1;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.6rem;
  padding-top: 4.8rem;
}
@media (max-width: 767px) {
  .breadcrumb {
    padding-top: 2.8rem;
  }
}
.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  color: var(--color-disable);
  font-family: var(--font-futura);
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 600;
}
@media (max-width: 767px) {
  .breadcrumb li {
    font-size: 1.2rem;
  }
}
.breadcrumb li a {
  color: var(--color-primary);
  transition: all 0.25s ease;
}
.breadcrumb li a:hover {
  opacity: 0.7;
}
.breadcrumb li:not(:last-of-type)::after {
  display: block;
  width: 10rem;
  height: 2px;
  background: var(--color-primary);
  content: "";
}

.scroll-bar-wrap {
  position: absolute;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}

.scroll-bar {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  top: 19%;
  right: 7.45rem;
  transition: opacity 0.3s ease-in-out;
  z-index: 10;
}
@media (max-width: 767px) {
  .scroll-bar {
    gap: 1rem;
    top: 15%;
    right: 2rem;
  }
}
.scroll-bar svg {
  width: 0.2rem;
  height: 10rem;
}
@media (max-width: 767px) {
  .scroll-bar svg {
    width: 0.1rem;
    height: 5rem;
  }
}
.scroll-bar__txt {
  display: inline-block;
  line-height: 0.8;
  writing-mode: vertical-rl;
  color: var(--color-base-white);
  font-family: var(--font-futura);
  font-style: italic;
  font-size: 1.8rem;
  font-weight: 600;
}
@media (min-width: 980px) and (max-width: 1300px) and (max-height: 750px) {
  .scroll-bar__txt {
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  .scroll-bar__txt {
    font-size: 1.2rem;
  }
}
.scroll-bar .arrowPath {
  stroke-dasharray: 140;
  stroke-dashoffset: 140;
  animation: arrowStrokePath 1.25s linear infinite;
}
@keyframes arrowStrokePath {
  0% {
    stroke-dashoffset: 140;
  }
  60% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -130;
  }
}

.page-transition-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-primary);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s;
}
.page-transition-overlay__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
}
.page-transition-overlay__logo svg {
  width: 48rem;
  height: auto;
}
@media (max-width: 767px) {
  .page-transition-overlay__logo svg {
    width: 24rem;
  }
}

.page-transition-overlay.active {
  opacity: 1;
  pointer-events: all;
}

svg .svg-elem-1 {
  stroke-dashoffset: 558.1870117188px;
  stroke-dasharray: 558.1870117188px;
  fill: transparent;
}

.page-transition-overlay.active svg.active .svg-elem-1 {
  stroke-dashoffset: 0;
  fill: rgb(255, 255, 255);
  -webkit-transition: stroke-dashoffset 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) 0s, fill 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s;
  transition: stroke-dashoffset 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) 0s, fill 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s;
}

svg .svg-elem-2 {
  stroke-dashoffset: 321.5480041504px;
  stroke-dasharray: 321.5480041504px;
  fill: transparent;
}

.page-transition-overlay.active svg.active .svg-elem-2 {
  stroke-dashoffset: 0;
  fill: rgb(255, 255, 255);
  -webkit-transition: stroke-dashoffset 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s, fill 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) 0.7s;
  transition: stroke-dashoffset 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s, fill 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) 0.7s;
}

svg .svg-elem-3 {
  stroke-dashoffset: 184.9503479004px;
  stroke-dasharray: 184.9503479004px;
  fill: transparent;
}

.page-transition-overlay.active svg.active .svg-elem-3 {
  stroke-dashoffset: 0;
  fill: rgb(255, 255, 255);
  -webkit-transition: stroke-dashoffset 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s, fill 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s;
  transition: stroke-dashoffset 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s, fill 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s;
}

svg .svg-elem-4 {
  stroke-dashoffset: 193.1215057373px;
  stroke-dasharray: 193.1215057373px;
  fill: transparent;
}

.page-transition-overlay.active svg.active .svg-elem-4 {
  stroke-dashoffset: 0;
  fill: rgb(255, 255, 255);
  -webkit-transition: stroke-dashoffset 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s, fill 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s;
  transition: stroke-dashoffset 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s, fill 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s;
}

svg .svg-elem-5 {
  stroke-dashoffset: 282.6674804688px;
  stroke-dasharray: 282.6674804688px;
  fill: transparent;
}

.page-transition-overlay.active svg.active .svg-elem-5 {
  stroke-dashoffset: 0;
  fill: rgb(255, 255, 255);
  -webkit-transition: stroke-dashoffset 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) 0.48s, fill 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) 1s;
  transition: stroke-dashoffset 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) 0.48s, fill 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) 1s;
}

svg .svg-elem-6 {
  stroke-dashoffset: 336.6149902344px;
  stroke-dasharray: 336.6149902344px;
  fill: transparent;
}

.page-transition-overlay.active svg.active .svg-elem-6 {
  stroke-dashoffset: 0;
  fill: rgb(255, 255, 255);
  -webkit-transition: stroke-dashoffset 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s, fill 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s;
  transition: stroke-dashoffset 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s, fill 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s;
}

svg .svg-elem-7 {
  stroke-dashoffset: 174.2608337402px;
  stroke-dasharray: 174.2608337402px;
  fill: transparent;
}

.page-transition-overlay.active svg.active .svg-elem-7 {
  stroke-dashoffset: 0;
  fill: rgb(255, 255, 255);
  -webkit-transition: stroke-dashoffset 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) 0.72s, fill 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s;
  transition: stroke-dashoffset 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) 0.72s, fill 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s;
}

svg .svg-elem-8 {
  stroke-dashoffset: 185.0796661377px;
  stroke-dasharray: 185.0796661377px;
  fill: transparent;
}

.page-transition-overlay.active svg.active .svg-elem-8 {
  stroke-dashoffset: 0;
  fill: rgb(255, 255, 255);
  -webkit-transition: stroke-dashoffset 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) 0.84s, fill 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s;
  transition: stroke-dashoffset 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) 0.84s, fill 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s;
}

svg .svg-elem-9 {
  stroke-dashoffset: 282.5149536133px;
  stroke-dasharray: 282.5149536133px;
  fill: transparent;
}

.page-transition-overlay.active svg.active .svg-elem-9 {
  stroke-dashoffset: 0;
  fill: rgb(255, 255, 255);
  -webkit-transition: stroke-dashoffset 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) 0.96s, fill 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4s;
  transition: stroke-dashoffset 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) 0.96s, fill 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4s;
}

svg .svg-elem-10 {
  stroke-dashoffset: 254.2204742432px;
  stroke-dasharray: 254.2204742432px;
  fill: transparent;
}

.page-transition-overlay.active svg.active .svg-elem-10 {
  stroke-dashoffset: 0;
  fill: rgb(255, 255, 255);
  -webkit-transition: stroke-dashoffset 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) 1.08s, fill 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s;
  transition: stroke-dashoffset 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) 1.08s, fill 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s;
}

svg .svg-elem-11 {
  stroke-dashoffset: 216.2408752441px;
  stroke-dasharray: 216.2408752441px;
  fill: transparent;
}

.page-transition-overlay.active svg.active .svg-elem-11 {
  stroke-dashoffset: 0;
  fill: rgb(255, 255, 255);
  -webkit-transition: stroke-dashoffset 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s, fill 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s;
  transition: stroke-dashoffset 0.4s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s, fill 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s;
}

.u-block {
  display: block !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-block-tab {
    display: block !important;
  }
}
@media (max-width: 767px) {
  body .u-block-sp {
    display: block !important;
  }
}
.u-inline {
  display: inline !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-inline-tab {
    display: inline !important;
  }
}
@media (max-width: 767px) {
  body .u-inline-sp {
    display: inline !important;
  }
}
.u-inline-block {
  display: inline-block !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-inline-block-tab {
    display: inline-block !important;
  }
}
@media (max-width: 767px) {
  body .u-inline-block-sp {
    display: inline-block !important;
  }
}
.u-flex {
  display: flex !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-flex-tab {
    display: flex !important;
  }
}
@media (max-width: 767px) {
  body .u-flex-sp {
    display: flex !important;
  }
}
.u-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-inline-flex-tab {
    display: inline-flex !important;
  }
}
@media (max-width: 767px) {
  body .u-inline-flex-sp {
    display: inline-flex !important;
  }
}
.u-grid {
  display: grid !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-grid-tab {
    display: grid !important;
  }
}
@media (max-width: 767px) {
  body .u-grid-sp {
    display: grid !important;
  }
}
.u-hidden {
  display: none !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-hidden-tab {
    display: none !important;
  }
}
@media (max-width: 767px) {
  body .u-hidden-sp {
    display: none !important;
  }
}
@media (max-width: 1023px) {
  .u-is-pc {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .u-is-tab {
    display: none !important;
  }
}
@media (min-width: 1024px) {
  .u-is-tab {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .u-is-sp {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .u-is-pc-tab {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .u-is-tab-sp {
    display: none !important;
  }
}

.u-grid-cols-none {
  grid-template-columns: none !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-grid-cols-none-tab {
    grid-template-columns: none !important;
  }
}
@media (max-width: 767px) {
  body .u-grid-cols-none-sp {
    grid-template-columns: none !important;
  }
}
.u-grid-cols-1 {
  grid-template-columns: repeat(1, 1fr) !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-grid-cols-1-tab {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}
@media (max-width: 767px) {
  body .u-grid-cols-1-sp {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}
.u-grid-cols-2 {
  grid-template-columns: repeat(2, 1fr) !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-grid-cols-2-tab {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 767px) {
  body .u-grid-cols-2-sp {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
.u-grid-cols-3 {
  grid-template-columns: repeat(3, 1fr) !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-grid-cols-3-tab {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (max-width: 767px) {
  body .u-grid-cols-3-sp {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
.u-grid-cols-4 {
  grid-template-columns: repeat(4, 1fr) !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-grid-cols-4-tab {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}
@media (max-width: 767px) {
  body .u-grid-cols-4-sp {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}
.u-grid-cols-5 {
  grid-template-columns: repeat(5, 1fr) !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-grid-cols-5-tab {
    grid-template-columns: repeat(5, 1fr) !important;
  }
}
@media (max-width: 767px) {
  body .u-grid-cols-5-sp {
    grid-template-columns: repeat(5, 1fr) !important;
  }
}
.u-grid-cols-6 {
  grid-template-columns: repeat(6, 1fr) !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-grid-cols-6-tab {
    grid-template-columns: repeat(6, 1fr) !important;
  }
}
@media (max-width: 767px) {
  body .u-grid-cols-6-sp {
    grid-template-columns: repeat(6, 1fr) !important;
  }
}
.u-grid-autofit-160 {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.u-grid-autofit-200 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.u-grid-autofit-240 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.u-grid-autofit-300 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.u-grid-autofit-360 {
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
}

.u-col-span-full {
  grid-column: span 1/-1 !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-col-span-full-tab {
    grid-column: span 1/-1 !important;
  }
}
@media (max-width: 767px) {
  body .u-col-span-full-sp {
    grid-column: span 1/-1 !important;
  }
}
.u-col-span-1 {
  grid-column: span 1/span 1 !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-col-span-1-tab {
    grid-column: span 1/span 1 !important;
  }
}
@media (max-width: 767px) {
  body .u-col-span-1-sp {
    grid-column: span 1/span 1 !important;
  }
}
.u-col-span-2 {
  grid-column: span 2/span 2 !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-col-span-2-tab {
    grid-column: span 2/span 2 !important;
  }
}
@media (max-width: 767px) {
  body .u-col-span-2-sp {
    grid-column: span 2/span 2 !important;
  }
}
.u-col-span-3 {
  grid-column: span 3/span 3 !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-col-span-3-tab {
    grid-column: span 3/span 3 !important;
  }
}
@media (max-width: 767px) {
  body .u-col-span-3-sp {
    grid-column: span 3/span 3 !important;
  }
}
.u-col-span-4 {
  grid-column: span 4/span 4 !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-col-span-4-tab {
    grid-column: span 4/span 4 !important;
  }
}
@media (max-width: 767px) {
  body .u-col-span-4-sp {
    grid-column: span 4/span 4 !important;
  }
}
.u-col-span-5 {
  grid-column: span 5/span 5 !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-col-span-5-tab {
    grid-column: span 5/span 5 !important;
  }
}
@media (max-width: 767px) {
  body .u-col-span-5-sp {
    grid-column: span 5/span 5 !important;
  }
}
.u-col-span-6 {
  grid-column: span 6/span 6 !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-col-span-6-tab {
    grid-column: span 6/span 6 !important;
  }
}
@media (max-width: 767px) {
  body .u-col-span-6-sp {
    grid-column: span 6/span 6 !important;
  }
}
.u-gap-0 {
  gap: 0rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-gap-0-tab {
    gap: 0rem !important;
  }
}
@media (max-width: 767px) {
  body .u-gap-0-sp {
    gap: 0rem !important;
  }
}
.u-gap-4 {
  gap: 0.4rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-gap-4-tab {
    gap: 0.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-gap-4-sp {
    gap: 0.4rem !important;
  }
}
.u-gap-8 {
  gap: 0.8rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-gap-8-tab {
    gap: 0.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-gap-8-sp {
    gap: 0.8rem !important;
  }
}
.u-gap-12 {
  gap: 1.2rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-gap-12-tab {
    gap: 1.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-gap-12-sp {
    gap: 1.2rem !important;
  }
}
.u-gap-16 {
  gap: 1.6rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-gap-16-tab {
    gap: 1.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-gap-16-sp {
    gap: 1.6rem !important;
  }
}
.u-gap-20 {
  gap: 2rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-gap-20-tab {
    gap: 2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-gap-20-sp {
    gap: 2rem !important;
  }
}
.u-gap-24 {
  gap: 2.4rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-gap-24-tab {
    gap: 2.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-gap-24-sp {
    gap: 2.4rem !important;
  }
}
.u-gap-28 {
  gap: 2.8rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-gap-28-tab {
    gap: 2.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-gap-28-sp {
    gap: 2.8rem !important;
  }
}
.u-gap-32 {
  gap: 3.2rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-gap-32-tab {
    gap: 3.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-gap-32-sp {
    gap: 3.2rem !important;
  }
}
.u-gap-36 {
  gap: 3.6rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-gap-36-tab {
    gap: 3.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-gap-36-sp {
    gap: 3.6rem !important;
  }
}
.u-gap-40 {
  gap: 4rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-gap-40-tab {
    gap: 4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-gap-40-sp {
    gap: 4rem !important;
  }
}
.u-gap-48 {
  gap: 4.8rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-gap-48-tab {
    gap: 4.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-gap-48-sp {
    gap: 4.8rem !important;
  }
}
.u-gap-56 {
  gap: 5.6rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-gap-56-tab {
    gap: 5.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-gap-56-sp {
    gap: 5.6rem !important;
  }
}
.u-gap-64 {
  gap: 6.4rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-gap-64-tab {
    gap: 6.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-gap-64-sp {
    gap: 6.4rem !important;
  }
}
.u-gap-72 {
  gap: 7.2rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-gap-72-tab {
    gap: 7.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-gap-72-sp {
    gap: 7.2rem !important;
  }
}
.u-gap-80 {
  gap: 8rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-gap-80-tab {
    gap: 8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-gap-80-sp {
    gap: 8rem !important;
  }
}
.u-justify-center {
  justify-content: center !important;
}

.u-justify-between {
  justify-content: space-between !important;
}

.u-items-center {
  align-items: center !important;
}

.u-flex-row {
  flex-direction: row !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-flex-row-tab {
    flex-direction: row !important;
  }
}
@media (max-width: 767px) {
  body .u-flex-row-sp {
    flex-direction: row !important;
  }
}
.u-flex-col {
  flex-direction: column !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-flex-col-tab {
    flex-direction: column !important;
  }
}
@media (max-width: 767px) {
  body .u-flex-col-sp {
    flex-direction: column !important;
  }
}
.u-font-normal {
  font-weight: 400 !important;
}

.u-font-midium {
  font-weight: 500 !important;
}

.u-font-bold {
  font-weight: 700 !important;
}

.u-text-left {
  text-align: left !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-text-left-tab {
    text-align: left !important;
  }
}
@media (max-width: 767px) {
  body .u-text-left-sp {
    text-align: left !important;
  }
}
.u-text-center {
  text-align: center !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-text-center-tab {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  body .u-text-center-sp {
    text-align: center !important;
  }
}
.u-text-right {
  text-align: right !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-text-right-tab {
    text-align: right !important;
  }
}
@media (max-width: 767px) {
  body .u-text-right-sp {
    text-align: right !important;
  }
}
.u-text-xs {
  font-size: 1.2rem !important;
}
@media (max-width: 767px) {
  .u-text-xs {
    font-size: 1rem !important;
  }
}

.u-text-sm {
  font-size: 1.4rem !important;
}
@media (max-width: 767px) {
  .u-text-sm {
    font-size: 1.2rem !important;
  }
}

.u-text-md {
  font-size: 1.6rem !important;
}
@media (max-width: 767px) {
  .u-text-md {
    font-size: 1.4rem !important;
  }
}

.u-text-lg {
  font-size: 1.8rem !important;
}
@media (max-width: 767px) {
  .u-text-lg {
    font-size: 1.6rem !important;
  }
}

.u-text-xl {
  font-size: 2rem !important;
}
@media (max-width: 767px) {
  .u-text-xl {
    font-size: 1.8rem !important;
  }
}

.u-text-2xl {
  font-size: 2.4rem !important;
}
@media (max-width: 767px) {
  .u-text-2xl {
    font-size: 2rem !important;
  }
}

.u-text-3xl {
  font-size: 3rem !important;
}
@media (max-width: 767px) {
  .u-text-3xl {
    font-size: 2.4rem !important;
  }
}

.u-text-10 {
  font-size: 1rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-text-10-tab {
    font-size: 1rem !important;
  }
}
@media (max-width: 767px) {
  body .u-text-10-sp {
    font-size: 1rem !important;
  }
}
.u-text-12 {
  font-size: 1.2rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-text-12-tab {
    font-size: 1.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-text-12-sp {
    font-size: 1.2rem !important;
  }
}
.u-text-14 {
  font-size: 1.4rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-text-14-tab {
    font-size: 1.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-text-14-sp {
    font-size: 1.4rem !important;
  }
}
.u-text-16 {
  font-size: 1.6rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-text-16-tab {
    font-size: 1.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-text-16-sp {
    font-size: 1.6rem !important;
  }
}
.u-text-18 {
  font-size: 1.8rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-text-18-tab {
    font-size: 1.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-text-18-sp {
    font-size: 1.8rem !important;
  }
}
.u-text-20 {
  font-size: 2rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-text-20-tab {
    font-size: 2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-text-20-sp {
    font-size: 2rem !important;
  }
}
.u-text-24 {
  font-size: 2.4rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-text-24-tab {
    font-size: 2.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-text-24-sp {
    font-size: 2.4rem !important;
  }
}
.u-text-30 {
  font-size: 3rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-text-30-tab {
    font-size: 3rem !important;
  }
}
@media (max-width: 767px) {
  body .u-text-30-sp {
    font-size: 3rem !important;
  }
}
.u-link {
  color: var(--color-primary);
  text-decoration: none;
}
.u-link:hover {
  text-decoration: underline;
}

.u-ul-default {
  margin: 1rem 0;
  padding-left: 4rem;
  list-style-type: disc;
}
.u-ul-default li {
  list-style: inherit;
}

.u-ol-default {
  margin: 1rem 0;
  padding-left: 4rem;
  list-style-type: decimal;
}
.u-ol-default li {
  list-style: inherit;
}

.u-ul-asterisk {
  list-style: none;
  padding-left: 0;
}
.u-ul-asterisk > li {
  position: relative;
  padding-left: 1em;
}
.u-ul-asterisk > li::before {
  content: "※";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

.u-input, .u-textarea {
  display: inline-block;
  width: 100%;
  padding: 0.4rem 0.8rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  color: inherit;
  font: inherit;
}
.u-input:focus, .u-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.u-textarea {
  resize: vertical;
  min-height: 4rem;
}

.u-button {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  border: 1px solid transparent;
  border-radius: 4px;
  background-color: var(--color-primary);
  color: #fff;
  font: inherit;
  cursor: pointer;
  text-align: center;
}
.u-button:hover {
  border: 1px solid color-mix(in srgb, var(--color-primary) 90%, black);
  background-color: color-mix(in srgb, var(--color-primary) 90%, black);
}
.u-button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

.u-default-checkbox {
  appearance: auto;
  -webkit-appearance: auto;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.u-default-radio {
  appearance: auto;
  -webkit-appearance: auto;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.u-select {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  color: inherit;
  font: inherit;
  cursor: pointer;
}
.u-select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.u-aspect-square {
  aspect-ratio: 1 !important;
}

.u-aspect-16x9 {
  aspect-ratio: 1.7777777778 !important;
}

.u-aspect-4x3 {
  aspect-ratio: 1.3333333333 !important;
}

.u-aspect-3x2 {
  aspect-ratio: 1.5 !important;
}

.u-aspect-2x3 {
  aspect-ratio: 0.6666666667 !important;
}

.u-aspect-3x4 {
  aspect-ratio: 0.75 !important;
}

.u-aspect-9x16 {
  aspect-ratio: 0.5625 !important;
}

.u-w-auto {
  width: auto !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-w-auto-tab {
    width: auto !important;
  }
}
@media (max-width: 767px) {
  body .u-w-auto-sp {
    width: auto !important;
  }
}
.u-w-full {
  width: 100% !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-w-full-tab {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  body .u-w-full-sp {
    width: 100% !important;
  }
}
.u-w-screen {
  width: 100vw !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-w-screen-tab {
    width: 100vw !important;
  }
}
@media (max-width: 767px) {
  body .u-w-screen-sp {
    width: 100vw !important;
  }
}
.u-h-auto {
  height: auto !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-h-auto-tab {
    height: auto !important;
  }
}
@media (max-width: 767px) {
  body .u-h-auto-sp {
    height: auto !important;
  }
}
.u-h-full {
  height: 100% !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-h-full-tab {
    height: 100% !important;
  }
}
@media (max-width: 767px) {
  body .u-h-full-sp {
    height: 100% !important;
  }
}
.u-h-screen {
  height: 100vh !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-h-screen-tab {
    height: 100vh !important;
  }
}
@media (max-width: 767px) {
  body .u-h-screen-sp {
    height: 100vh !important;
  }
}
.u-mt-0 {
  margin-top: 0rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mt-0-tab {
    margin-top: 0rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mt-0-sp {
    margin-top: 0rem !important;
  }
}
.u-mb-0 {
  margin-bottom: 0rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mb-0-tab {
    margin-bottom: 0rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mb-0-sp {
    margin-bottom: 0rem !important;
  }
}
.u-my-0 {
  margin-top: 0rem !important;
  margin-bottom: 0rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-my-0-tab {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
}
@media (max-width: 767px) {
  body .u-my-0-sp {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
}
.u-pt-0 {
  padding-top: 0rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pt-0-tab {
    padding-top: 0rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pt-0-sp {
    padding-top: 0rem !important;
  }
}
.u-pb-0 {
  padding-bottom: 0rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pb-0-tab {
    padding-bottom: 0rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pb-0-sp {
    padding-bottom: 0rem !important;
  }
}
.u-py-0 {
  padding-top: 0rem !important;
  padding-bottom: 0rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-py-0-tab {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
}
@media (max-width: 767px) {
  body .u-py-0-sp {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
}
.u-mt-4 {
  margin-top: 0.4rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mt-4-tab {
    margin-top: 0.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mt-4-sp {
    margin-top: 0.4rem !important;
  }
}
.u-mb-4 {
  margin-bottom: 0.4rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mb-4-tab {
    margin-bottom: 0.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mb-4-sp {
    margin-bottom: 0.4rem !important;
  }
}
.u-my-4 {
  margin-top: 0.4rem !important;
  margin-bottom: 0.4rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-my-4-tab {
    margin-top: 0.4rem !important;
    margin-bottom: 0.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-my-4-sp {
    margin-top: 0.4rem !important;
    margin-bottom: 0.4rem !important;
  }
}
.u-pt-4 {
  padding-top: 0.4rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pt-4-tab {
    padding-top: 0.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pt-4-sp {
    padding-top: 0.4rem !important;
  }
}
.u-pb-4 {
  padding-bottom: 0.4rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pb-4-tab {
    padding-bottom: 0.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pb-4-sp {
    padding-bottom: 0.4rem !important;
  }
}
.u-py-4 {
  padding-top: 0.4rem !important;
  padding-bottom: 0.4rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-py-4-tab {
    padding-top: 0.4rem !important;
    padding-bottom: 0.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-py-4-sp {
    padding-top: 0.4rem !important;
    padding-bottom: 0.4rem !important;
  }
}
.u-mt-8 {
  margin-top: 0.8rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mt-8-tab {
    margin-top: 0.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mt-8-sp {
    margin-top: 0.8rem !important;
  }
}
.u-mb-8 {
  margin-bottom: 0.8rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mb-8-tab {
    margin-bottom: 0.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mb-8-sp {
    margin-bottom: 0.8rem !important;
  }
}
.u-my-8 {
  margin-top: 0.8rem !important;
  margin-bottom: 0.8rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-my-8-tab {
    margin-top: 0.8rem !important;
    margin-bottom: 0.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-my-8-sp {
    margin-top: 0.8rem !important;
    margin-bottom: 0.8rem !important;
  }
}
.u-pt-8 {
  padding-top: 0.8rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pt-8-tab {
    padding-top: 0.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pt-8-sp {
    padding-top: 0.8rem !important;
  }
}
.u-pb-8 {
  padding-bottom: 0.8rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pb-8-tab {
    padding-bottom: 0.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pb-8-sp {
    padding-bottom: 0.8rem !important;
  }
}
.u-py-8 {
  padding-top: 0.8rem !important;
  padding-bottom: 0.8rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-py-8-tab {
    padding-top: 0.8rem !important;
    padding-bottom: 0.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-py-8-sp {
    padding-top: 0.8rem !important;
    padding-bottom: 0.8rem !important;
  }
}
.u-mt-12 {
  margin-top: 1.2rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mt-12-tab {
    margin-top: 1.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mt-12-sp {
    margin-top: 1.2rem !important;
  }
}
.u-mb-12 {
  margin-bottom: 1.2rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mb-12-tab {
    margin-bottom: 1.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mb-12-sp {
    margin-bottom: 1.2rem !important;
  }
}
.u-my-12 {
  margin-top: 1.2rem !important;
  margin-bottom: 1.2rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-my-12-tab {
    margin-top: 1.2rem !important;
    margin-bottom: 1.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-my-12-sp {
    margin-top: 1.2rem !important;
    margin-bottom: 1.2rem !important;
  }
}
.u-pt-12 {
  padding-top: 1.2rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pt-12-tab {
    padding-top: 1.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pt-12-sp {
    padding-top: 1.2rem !important;
  }
}
.u-pb-12 {
  padding-bottom: 1.2rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pb-12-tab {
    padding-bottom: 1.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pb-12-sp {
    padding-bottom: 1.2rem !important;
  }
}
.u-py-12 {
  padding-top: 1.2rem !important;
  padding-bottom: 1.2rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-py-12-tab {
    padding-top: 1.2rem !important;
    padding-bottom: 1.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-py-12-sp {
    padding-top: 1.2rem !important;
    padding-bottom: 1.2rem !important;
  }
}
.u-mt-16 {
  margin-top: 1.6rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mt-16-tab {
    margin-top: 1.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mt-16-sp {
    margin-top: 1.6rem !important;
  }
}
.u-mb-16 {
  margin-bottom: 1.6rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mb-16-tab {
    margin-bottom: 1.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mb-16-sp {
    margin-bottom: 1.6rem !important;
  }
}
.u-my-16 {
  margin-top: 1.6rem !important;
  margin-bottom: 1.6rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-my-16-tab {
    margin-top: 1.6rem !important;
    margin-bottom: 1.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-my-16-sp {
    margin-top: 1.6rem !important;
    margin-bottom: 1.6rem !important;
  }
}
.u-pt-16 {
  padding-top: 1.6rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pt-16-tab {
    padding-top: 1.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pt-16-sp {
    padding-top: 1.6rem !important;
  }
}
.u-pb-16 {
  padding-bottom: 1.6rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pb-16-tab {
    padding-bottom: 1.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pb-16-sp {
    padding-bottom: 1.6rem !important;
  }
}
.u-py-16 {
  padding-top: 1.6rem !important;
  padding-bottom: 1.6rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-py-16-tab {
    padding-top: 1.6rem !important;
    padding-bottom: 1.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-py-16-sp {
    padding-top: 1.6rem !important;
    padding-bottom: 1.6rem !important;
  }
}
.u-mt-20 {
  margin-top: 2rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mt-20-tab {
    margin-top: 2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mt-20-sp {
    margin-top: 2rem !important;
  }
}
.u-mb-20 {
  margin-bottom: 2rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mb-20-tab {
    margin-bottom: 2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mb-20-sp {
    margin-bottom: 2rem !important;
  }
}
.u-my-20 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-my-20-tab {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-my-20-sp {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
}
.u-pt-20 {
  padding-top: 2rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pt-20-tab {
    padding-top: 2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pt-20-sp {
    padding-top: 2rem !important;
  }
}
.u-pb-20 {
  padding-bottom: 2rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pb-20-tab {
    padding-bottom: 2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pb-20-sp {
    padding-bottom: 2rem !important;
  }
}
.u-py-20 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-py-20-tab {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-py-20-sp {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
}
.u-mt-24 {
  margin-top: 2.4rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mt-24-tab {
    margin-top: 2.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mt-24-sp {
    margin-top: 2.4rem !important;
  }
}
.u-mb-24 {
  margin-bottom: 2.4rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mb-24-tab {
    margin-bottom: 2.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mb-24-sp {
    margin-bottom: 2.4rem !important;
  }
}
.u-my-24 {
  margin-top: 2.4rem !important;
  margin-bottom: 2.4rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-my-24-tab {
    margin-top: 2.4rem !important;
    margin-bottom: 2.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-my-24-sp {
    margin-top: 2.4rem !important;
    margin-bottom: 2.4rem !important;
  }
}
.u-pt-24 {
  padding-top: 2.4rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pt-24-tab {
    padding-top: 2.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pt-24-sp {
    padding-top: 2.4rem !important;
  }
}
.u-pb-24 {
  padding-bottom: 2.4rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pb-24-tab {
    padding-bottom: 2.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pb-24-sp {
    padding-bottom: 2.4rem !important;
  }
}
.u-py-24 {
  padding-top: 2.4rem !important;
  padding-bottom: 2.4rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-py-24-tab {
    padding-top: 2.4rem !important;
    padding-bottom: 2.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-py-24-sp {
    padding-top: 2.4rem !important;
    padding-bottom: 2.4rem !important;
  }
}
.u-mt-28 {
  margin-top: 2.8rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mt-28-tab {
    margin-top: 2.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mt-28-sp {
    margin-top: 2.8rem !important;
  }
}
.u-mb-28 {
  margin-bottom: 2.8rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mb-28-tab {
    margin-bottom: 2.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mb-28-sp {
    margin-bottom: 2.8rem !important;
  }
}
.u-my-28 {
  margin-top: 2.8rem !important;
  margin-bottom: 2.8rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-my-28-tab {
    margin-top: 2.8rem !important;
    margin-bottom: 2.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-my-28-sp {
    margin-top: 2.8rem !important;
    margin-bottom: 2.8rem !important;
  }
}
.u-pt-28 {
  padding-top: 2.8rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pt-28-tab {
    padding-top: 2.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pt-28-sp {
    padding-top: 2.8rem !important;
  }
}
.u-pb-28 {
  padding-bottom: 2.8rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pb-28-tab {
    padding-bottom: 2.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pb-28-sp {
    padding-bottom: 2.8rem !important;
  }
}
.u-py-28 {
  padding-top: 2.8rem !important;
  padding-bottom: 2.8rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-py-28-tab {
    padding-top: 2.8rem !important;
    padding-bottom: 2.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-py-28-sp {
    padding-top: 2.8rem !important;
    padding-bottom: 2.8rem !important;
  }
}
.u-mt-32 {
  margin-top: 3.2rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mt-32-tab {
    margin-top: 3.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mt-32-sp {
    margin-top: 3.2rem !important;
  }
}
.u-mb-32 {
  margin-bottom: 3.2rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mb-32-tab {
    margin-bottom: 3.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mb-32-sp {
    margin-bottom: 3.2rem !important;
  }
}
.u-my-32 {
  margin-top: 3.2rem !important;
  margin-bottom: 3.2rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-my-32-tab {
    margin-top: 3.2rem !important;
    margin-bottom: 3.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-my-32-sp {
    margin-top: 3.2rem !important;
    margin-bottom: 3.2rem !important;
  }
}
.u-pt-32 {
  padding-top: 3.2rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pt-32-tab {
    padding-top: 3.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pt-32-sp {
    padding-top: 3.2rem !important;
  }
}
.u-pb-32 {
  padding-bottom: 3.2rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pb-32-tab {
    padding-bottom: 3.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pb-32-sp {
    padding-bottom: 3.2rem !important;
  }
}
.u-py-32 {
  padding-top: 3.2rem !important;
  padding-bottom: 3.2rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-py-32-tab {
    padding-top: 3.2rem !important;
    padding-bottom: 3.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-py-32-sp {
    padding-top: 3.2rem !important;
    padding-bottom: 3.2rem !important;
  }
}
.u-mt-36 {
  margin-top: 3.6rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mt-36-tab {
    margin-top: 3.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mt-36-sp {
    margin-top: 3.6rem !important;
  }
}
.u-mb-36 {
  margin-bottom: 3.6rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mb-36-tab {
    margin-bottom: 3.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mb-36-sp {
    margin-bottom: 3.6rem !important;
  }
}
.u-my-36 {
  margin-top: 3.6rem !important;
  margin-bottom: 3.6rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-my-36-tab {
    margin-top: 3.6rem !important;
    margin-bottom: 3.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-my-36-sp {
    margin-top: 3.6rem !important;
    margin-bottom: 3.6rem !important;
  }
}
.u-pt-36 {
  padding-top: 3.6rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pt-36-tab {
    padding-top: 3.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pt-36-sp {
    padding-top: 3.6rem !important;
  }
}
.u-pb-36 {
  padding-bottom: 3.6rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pb-36-tab {
    padding-bottom: 3.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pb-36-sp {
    padding-bottom: 3.6rem !important;
  }
}
.u-py-36 {
  padding-top: 3.6rem !important;
  padding-bottom: 3.6rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-py-36-tab {
    padding-top: 3.6rem !important;
    padding-bottom: 3.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-py-36-sp {
    padding-top: 3.6rem !important;
    padding-bottom: 3.6rem !important;
  }
}
.u-mt-40 {
  margin-top: 4rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mt-40-tab {
    margin-top: 4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mt-40-sp {
    margin-top: 4rem !important;
  }
}
.u-mb-40 {
  margin-bottom: 4rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mb-40-tab {
    margin-bottom: 4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mb-40-sp {
    margin-bottom: 4rem !important;
  }
}
.u-my-40 {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-my-40-tab {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-my-40-sp {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
}
.u-pt-40 {
  padding-top: 4rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pt-40-tab {
    padding-top: 4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pt-40-sp {
    padding-top: 4rem !important;
  }
}
.u-pb-40 {
  padding-bottom: 4rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pb-40-tab {
    padding-bottom: 4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pb-40-sp {
    padding-bottom: 4rem !important;
  }
}
.u-py-40 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-py-40-tab {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-py-40-sp {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
}
.u-mt-48 {
  margin-top: 4.8rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mt-48-tab {
    margin-top: 4.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mt-48-sp {
    margin-top: 4.8rem !important;
  }
}
.u-mb-48 {
  margin-bottom: 4.8rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mb-48-tab {
    margin-bottom: 4.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mb-48-sp {
    margin-bottom: 4.8rem !important;
  }
}
.u-my-48 {
  margin-top: 4.8rem !important;
  margin-bottom: 4.8rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-my-48-tab {
    margin-top: 4.8rem !important;
    margin-bottom: 4.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-my-48-sp {
    margin-top: 4.8rem !important;
    margin-bottom: 4.8rem !important;
  }
}
.u-pt-48 {
  padding-top: 4.8rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pt-48-tab {
    padding-top: 4.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pt-48-sp {
    padding-top: 4.8rem !important;
  }
}
.u-pb-48 {
  padding-bottom: 4.8rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pb-48-tab {
    padding-bottom: 4.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pb-48-sp {
    padding-bottom: 4.8rem !important;
  }
}
.u-py-48 {
  padding-top: 4.8rem !important;
  padding-bottom: 4.8rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-py-48-tab {
    padding-top: 4.8rem !important;
    padding-bottom: 4.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-py-48-sp {
    padding-top: 4.8rem !important;
    padding-bottom: 4.8rem !important;
  }
}
.u-mt-56 {
  margin-top: 5.6rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mt-56-tab {
    margin-top: 5.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mt-56-sp {
    margin-top: 5.6rem !important;
  }
}
.u-mb-56 {
  margin-bottom: 5.6rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mb-56-tab {
    margin-bottom: 5.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mb-56-sp {
    margin-bottom: 5.6rem !important;
  }
}
.u-my-56 {
  margin-top: 5.6rem !important;
  margin-bottom: 5.6rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-my-56-tab {
    margin-top: 5.6rem !important;
    margin-bottom: 5.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-my-56-sp {
    margin-top: 5.6rem !important;
    margin-bottom: 5.6rem !important;
  }
}
.u-pt-56 {
  padding-top: 5.6rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pt-56-tab {
    padding-top: 5.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pt-56-sp {
    padding-top: 5.6rem !important;
  }
}
.u-pb-56 {
  padding-bottom: 5.6rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pb-56-tab {
    padding-bottom: 5.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pb-56-sp {
    padding-bottom: 5.6rem !important;
  }
}
.u-py-56 {
  padding-top: 5.6rem !important;
  padding-bottom: 5.6rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-py-56-tab {
    padding-top: 5.6rem !important;
    padding-bottom: 5.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-py-56-sp {
    padding-top: 5.6rem !important;
    padding-bottom: 5.6rem !important;
  }
}
.u-mt-64 {
  margin-top: 6.4rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mt-64-tab {
    margin-top: 6.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mt-64-sp {
    margin-top: 6.4rem !important;
  }
}
.u-mb-64 {
  margin-bottom: 6.4rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mb-64-tab {
    margin-bottom: 6.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mb-64-sp {
    margin-bottom: 6.4rem !important;
  }
}
.u-my-64 {
  margin-top: 6.4rem !important;
  margin-bottom: 6.4rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-my-64-tab {
    margin-top: 6.4rem !important;
    margin-bottom: 6.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-my-64-sp {
    margin-top: 6.4rem !important;
    margin-bottom: 6.4rem !important;
  }
}
.u-pt-64 {
  padding-top: 6.4rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pt-64-tab {
    padding-top: 6.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pt-64-sp {
    padding-top: 6.4rem !important;
  }
}
.u-pb-64 {
  padding-bottom: 6.4rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pb-64-tab {
    padding-bottom: 6.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pb-64-sp {
    padding-bottom: 6.4rem !important;
  }
}
.u-py-64 {
  padding-top: 6.4rem !important;
  padding-bottom: 6.4rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-py-64-tab {
    padding-top: 6.4rem !important;
    padding-bottom: 6.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-py-64-sp {
    padding-top: 6.4rem !important;
    padding-bottom: 6.4rem !important;
  }
}
.u-mt-72 {
  margin-top: 7.2rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mt-72-tab {
    margin-top: 7.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mt-72-sp {
    margin-top: 7.2rem !important;
  }
}
.u-mb-72 {
  margin-bottom: 7.2rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mb-72-tab {
    margin-bottom: 7.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mb-72-sp {
    margin-bottom: 7.2rem !important;
  }
}
.u-my-72 {
  margin-top: 7.2rem !important;
  margin-bottom: 7.2rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-my-72-tab {
    margin-top: 7.2rem !important;
    margin-bottom: 7.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-my-72-sp {
    margin-top: 7.2rem !important;
    margin-bottom: 7.2rem !important;
  }
}
.u-pt-72 {
  padding-top: 7.2rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pt-72-tab {
    padding-top: 7.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pt-72-sp {
    padding-top: 7.2rem !important;
  }
}
.u-pb-72 {
  padding-bottom: 7.2rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pb-72-tab {
    padding-bottom: 7.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pb-72-sp {
    padding-bottom: 7.2rem !important;
  }
}
.u-py-72 {
  padding-top: 7.2rem !important;
  padding-bottom: 7.2rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-py-72-tab {
    padding-top: 7.2rem !important;
    padding-bottom: 7.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-py-72-sp {
    padding-top: 7.2rem !important;
    padding-bottom: 7.2rem !important;
  }
}
.u-mt-80 {
  margin-top: 8rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mt-80-tab {
    margin-top: 8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mt-80-sp {
    margin-top: 8rem !important;
  }
}
.u-mb-80 {
  margin-bottom: 8rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mb-80-tab {
    margin-bottom: 8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mb-80-sp {
    margin-bottom: 8rem !important;
  }
}
.u-my-80 {
  margin-top: 8rem !important;
  margin-bottom: 8rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-my-80-tab {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-my-80-sp {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
}
.u-pt-80 {
  padding-top: 8rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pt-80-tab {
    padding-top: 8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pt-80-sp {
    padding-top: 8rem !important;
  }
}
.u-pb-80 {
  padding-bottom: 8rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pb-80-tab {
    padding-bottom: 8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pb-80-sp {
    padding-bottom: 8rem !important;
  }
}
.u-py-80 {
  padding-top: 8rem !important;
  padding-bottom: 8rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-py-80-tab {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-py-80-sp {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
}
.u-mt-96 {
  margin-top: 9.6rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mt-96-tab {
    margin-top: 9.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mt-96-sp {
    margin-top: 9.6rem !important;
  }
}
.u-mb-96 {
  margin-bottom: 9.6rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mb-96-tab {
    margin-bottom: 9.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mb-96-sp {
    margin-bottom: 9.6rem !important;
  }
}
.u-my-96 {
  margin-top: 9.6rem !important;
  margin-bottom: 9.6rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-my-96-tab {
    margin-top: 9.6rem !important;
    margin-bottom: 9.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-my-96-sp {
    margin-top: 9.6rem !important;
    margin-bottom: 9.6rem !important;
  }
}
.u-pt-96 {
  padding-top: 9.6rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pt-96-tab {
    padding-top: 9.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pt-96-sp {
    padding-top: 9.6rem !important;
  }
}
.u-pb-96 {
  padding-bottom: 9.6rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pb-96-tab {
    padding-bottom: 9.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pb-96-sp {
    padding-bottom: 9.6rem !important;
  }
}
.u-py-96 {
  padding-top: 9.6rem !important;
  padding-bottom: 9.6rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-py-96-tab {
    padding-top: 9.6rem !important;
    padding-bottom: 9.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-py-96-sp {
    padding-top: 9.6rem !important;
    padding-bottom: 9.6rem !important;
  }
}
.u-mt-112 {
  margin-top: 11.2rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mt-112-tab {
    margin-top: 11.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mt-112-sp {
    margin-top: 11.2rem !important;
  }
}
.u-mb-112 {
  margin-bottom: 11.2rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mb-112-tab {
    margin-bottom: 11.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mb-112-sp {
    margin-bottom: 11.2rem !important;
  }
}
.u-my-112 {
  margin-top: 11.2rem !important;
  margin-bottom: 11.2rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-my-112-tab {
    margin-top: 11.2rem !important;
    margin-bottom: 11.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-my-112-sp {
    margin-top: 11.2rem !important;
    margin-bottom: 11.2rem !important;
  }
}
.u-pt-112 {
  padding-top: 11.2rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pt-112-tab {
    padding-top: 11.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pt-112-sp {
    padding-top: 11.2rem !important;
  }
}
.u-pb-112 {
  padding-bottom: 11.2rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pb-112-tab {
    padding-bottom: 11.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pb-112-sp {
    padding-bottom: 11.2rem !important;
  }
}
.u-py-112 {
  padding-top: 11.2rem !important;
  padding-bottom: 11.2rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-py-112-tab {
    padding-top: 11.2rem !important;
    padding-bottom: 11.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-py-112-sp {
    padding-top: 11.2rem !important;
    padding-bottom: 11.2rem !important;
  }
}
.u-mt-120 {
  margin-top: 12rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mt-120-tab {
    margin-top: 12rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mt-120-sp {
    margin-top: 12rem !important;
  }
}
.u-mb-120 {
  margin-bottom: 12rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mb-120-tab {
    margin-bottom: 12rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mb-120-sp {
    margin-bottom: 12rem !important;
  }
}
.u-my-120 {
  margin-top: 12rem !important;
  margin-bottom: 12rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-my-120-tab {
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }
}
@media (max-width: 767px) {
  body .u-my-120-sp {
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }
}
.u-pt-120 {
  padding-top: 12rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pt-120-tab {
    padding-top: 12rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pt-120-sp {
    padding-top: 12rem !important;
  }
}
.u-pb-120 {
  padding-bottom: 12rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pb-120-tab {
    padding-bottom: 12rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pb-120-sp {
    padding-bottom: 12rem !important;
  }
}
.u-py-120 {
  padding-top: 12rem !important;
  padding-bottom: 12rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-py-120-tab {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }
}
@media (max-width: 767px) {
  body .u-py-120-sp {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }
}
.u-mt-128 {
  margin-top: 12.8rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mt-128-tab {
    margin-top: 12.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mt-128-sp {
    margin-top: 12.8rem !important;
  }
}
.u-mb-128 {
  margin-bottom: 12.8rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mb-128-tab {
    margin-bottom: 12.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mb-128-sp {
    margin-bottom: 12.8rem !important;
  }
}
.u-my-128 {
  margin-top: 12.8rem !important;
  margin-bottom: 12.8rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-my-128-tab {
    margin-top: 12.8rem !important;
    margin-bottom: 12.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-my-128-sp {
    margin-top: 12.8rem !important;
    margin-bottom: 12.8rem !important;
  }
}
.u-pt-128 {
  padding-top: 12.8rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pt-128-tab {
    padding-top: 12.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pt-128-sp {
    padding-top: 12.8rem !important;
  }
}
.u-pb-128 {
  padding-bottom: 12.8rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pb-128-tab {
    padding-bottom: 12.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pb-128-sp {
    padding-bottom: 12.8rem !important;
  }
}
.u-py-128 {
  padding-top: 12.8rem !important;
  padding-bottom: 12.8rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-py-128-tab {
    padding-top: 12.8rem !important;
    padding-bottom: 12.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-py-128-sp {
    padding-top: 12.8rem !important;
    padding-bottom: 12.8rem !important;
  }
}
.u-ml-0 {
  margin-left: 0rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-ml-0-tab {
    margin-left: 0rem !important;
  }
}
@media (max-width: 767px) {
  body .u-ml-0-sp {
    margin-left: 0rem !important;
  }
}
.u-mr-0 {
  margin-right: 0rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mr-0-tab {
    margin-right: 0rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mr-0-sp {
    margin-right: 0rem !important;
  }
}
.u-mx-0 {
  margin-left: 0rem !important;
  margin-right: 0rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mx-0-tab {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mx-0-sp {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
  }
}
.u-pl-0 {
  padding-left: 0rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pl-0-tab {
    padding-left: 0rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pl-0-sp {
    padding-left: 0rem !important;
  }
}
.u-pr-0 {
  padding-right: 0rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pr-0-tab {
    padding-right: 0rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pr-0-sp {
    padding-right: 0rem !important;
  }
}
.u-px-0 {
  padding-left: 0rem !important;
  padding-right: 0rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-px-0-tab {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }
}
@media (max-width: 767px) {
  body .u-px-0-sp {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }
}
.u-ml-4 {
  margin-left: 0.4rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-ml-4-tab {
    margin-left: 0.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-ml-4-sp {
    margin-left: 0.4rem !important;
  }
}
.u-mr-4 {
  margin-right: 0.4rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mr-4-tab {
    margin-right: 0.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mr-4-sp {
    margin-right: 0.4rem !important;
  }
}
.u-mx-4 {
  margin-left: 0.4rem !important;
  margin-right: 0.4rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mx-4-tab {
    margin-left: 0.4rem !important;
    margin-right: 0.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mx-4-sp {
    margin-left: 0.4rem !important;
    margin-right: 0.4rem !important;
  }
}
.u-pl-4 {
  padding-left: 0.4rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pl-4-tab {
    padding-left: 0.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pl-4-sp {
    padding-left: 0.4rem !important;
  }
}
.u-pr-4 {
  padding-right: 0.4rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pr-4-tab {
    padding-right: 0.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pr-4-sp {
    padding-right: 0.4rem !important;
  }
}
.u-px-4 {
  padding-left: 0.4rem !important;
  padding-right: 0.4rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-px-4-tab {
    padding-left: 0.4rem !important;
    padding-right: 0.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-px-4-sp {
    padding-left: 0.4rem !important;
    padding-right: 0.4rem !important;
  }
}
.u-ml-8 {
  margin-left: 0.8rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-ml-8-tab {
    margin-left: 0.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-ml-8-sp {
    margin-left: 0.8rem !important;
  }
}
.u-mr-8 {
  margin-right: 0.8rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mr-8-tab {
    margin-right: 0.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mr-8-sp {
    margin-right: 0.8rem !important;
  }
}
.u-mx-8 {
  margin-left: 0.8rem !important;
  margin-right: 0.8rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mx-8-tab {
    margin-left: 0.8rem !important;
    margin-right: 0.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mx-8-sp {
    margin-left: 0.8rem !important;
    margin-right: 0.8rem !important;
  }
}
.u-pl-8 {
  padding-left: 0.8rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pl-8-tab {
    padding-left: 0.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pl-8-sp {
    padding-left: 0.8rem !important;
  }
}
.u-pr-8 {
  padding-right: 0.8rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pr-8-tab {
    padding-right: 0.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pr-8-sp {
    padding-right: 0.8rem !important;
  }
}
.u-px-8 {
  padding-left: 0.8rem !important;
  padding-right: 0.8rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-px-8-tab {
    padding-left: 0.8rem !important;
    padding-right: 0.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-px-8-sp {
    padding-left: 0.8rem !important;
    padding-right: 0.8rem !important;
  }
}
.u-ml-12 {
  margin-left: 1.2rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-ml-12-tab {
    margin-left: 1.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-ml-12-sp {
    margin-left: 1.2rem !important;
  }
}
.u-mr-12 {
  margin-right: 1.2rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mr-12-tab {
    margin-right: 1.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mr-12-sp {
    margin-right: 1.2rem !important;
  }
}
.u-mx-12 {
  margin-left: 1.2rem !important;
  margin-right: 1.2rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mx-12-tab {
    margin-left: 1.2rem !important;
    margin-right: 1.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mx-12-sp {
    margin-left: 1.2rem !important;
    margin-right: 1.2rem !important;
  }
}
.u-pl-12 {
  padding-left: 1.2rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pl-12-tab {
    padding-left: 1.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pl-12-sp {
    padding-left: 1.2rem !important;
  }
}
.u-pr-12 {
  padding-right: 1.2rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pr-12-tab {
    padding-right: 1.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pr-12-sp {
    padding-right: 1.2rem !important;
  }
}
.u-px-12 {
  padding-left: 1.2rem !important;
  padding-right: 1.2rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-px-12-tab {
    padding-left: 1.2rem !important;
    padding-right: 1.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-px-12-sp {
    padding-left: 1.2rem !important;
    padding-right: 1.2rem !important;
  }
}
.u-ml-16 {
  margin-left: 1.6rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-ml-16-tab {
    margin-left: 1.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-ml-16-sp {
    margin-left: 1.6rem !important;
  }
}
.u-mr-16 {
  margin-right: 1.6rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mr-16-tab {
    margin-right: 1.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mr-16-sp {
    margin-right: 1.6rem !important;
  }
}
.u-mx-16 {
  margin-left: 1.6rem !important;
  margin-right: 1.6rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mx-16-tab {
    margin-left: 1.6rem !important;
    margin-right: 1.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mx-16-sp {
    margin-left: 1.6rem !important;
    margin-right: 1.6rem !important;
  }
}
.u-pl-16 {
  padding-left: 1.6rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pl-16-tab {
    padding-left: 1.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pl-16-sp {
    padding-left: 1.6rem !important;
  }
}
.u-pr-16 {
  padding-right: 1.6rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pr-16-tab {
    padding-right: 1.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pr-16-sp {
    padding-right: 1.6rem !important;
  }
}
.u-px-16 {
  padding-left: 1.6rem !important;
  padding-right: 1.6rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-px-16-tab {
    padding-left: 1.6rem !important;
    padding-right: 1.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-px-16-sp {
    padding-left: 1.6rem !important;
    padding-right: 1.6rem !important;
  }
}
.u-ml-20 {
  margin-left: 2rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-ml-20-tab {
    margin-left: 2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-ml-20-sp {
    margin-left: 2rem !important;
  }
}
.u-mr-20 {
  margin-right: 2rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mr-20-tab {
    margin-right: 2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mr-20-sp {
    margin-right: 2rem !important;
  }
}
.u-mx-20 {
  margin-left: 2rem !important;
  margin-right: 2rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mx-20-tab {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mx-20-sp {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
}
.u-pl-20 {
  padding-left: 2rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pl-20-tab {
    padding-left: 2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pl-20-sp {
    padding-left: 2rem !important;
  }
}
.u-pr-20 {
  padding-right: 2rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pr-20-tab {
    padding-right: 2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pr-20-sp {
    padding-right: 2rem !important;
  }
}
.u-px-20 {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-px-20-tab {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-px-20-sp {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
}
.u-ml-24 {
  margin-left: 2.4rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-ml-24-tab {
    margin-left: 2.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-ml-24-sp {
    margin-left: 2.4rem !important;
  }
}
.u-mr-24 {
  margin-right: 2.4rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mr-24-tab {
    margin-right: 2.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mr-24-sp {
    margin-right: 2.4rem !important;
  }
}
.u-mx-24 {
  margin-left: 2.4rem !important;
  margin-right: 2.4rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mx-24-tab {
    margin-left: 2.4rem !important;
    margin-right: 2.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mx-24-sp {
    margin-left: 2.4rem !important;
    margin-right: 2.4rem !important;
  }
}
.u-pl-24 {
  padding-left: 2.4rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pl-24-tab {
    padding-left: 2.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pl-24-sp {
    padding-left: 2.4rem !important;
  }
}
.u-pr-24 {
  padding-right: 2.4rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pr-24-tab {
    padding-right: 2.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pr-24-sp {
    padding-right: 2.4rem !important;
  }
}
.u-px-24 {
  padding-left: 2.4rem !important;
  padding-right: 2.4rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-px-24-tab {
    padding-left: 2.4rem !important;
    padding-right: 2.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-px-24-sp {
    padding-left: 2.4rem !important;
    padding-right: 2.4rem !important;
  }
}
.u-ml-28 {
  margin-left: 2.8rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-ml-28-tab {
    margin-left: 2.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-ml-28-sp {
    margin-left: 2.8rem !important;
  }
}
.u-mr-28 {
  margin-right: 2.8rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mr-28-tab {
    margin-right: 2.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mr-28-sp {
    margin-right: 2.8rem !important;
  }
}
.u-mx-28 {
  margin-left: 2.8rem !important;
  margin-right: 2.8rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mx-28-tab {
    margin-left: 2.8rem !important;
    margin-right: 2.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mx-28-sp {
    margin-left: 2.8rem !important;
    margin-right: 2.8rem !important;
  }
}
.u-pl-28 {
  padding-left: 2.8rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pl-28-tab {
    padding-left: 2.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pl-28-sp {
    padding-left: 2.8rem !important;
  }
}
.u-pr-28 {
  padding-right: 2.8rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pr-28-tab {
    padding-right: 2.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pr-28-sp {
    padding-right: 2.8rem !important;
  }
}
.u-px-28 {
  padding-left: 2.8rem !important;
  padding-right: 2.8rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-px-28-tab {
    padding-left: 2.8rem !important;
    padding-right: 2.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-px-28-sp {
    padding-left: 2.8rem !important;
    padding-right: 2.8rem !important;
  }
}
.u-ml-32 {
  margin-left: 3.2rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-ml-32-tab {
    margin-left: 3.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-ml-32-sp {
    margin-left: 3.2rem !important;
  }
}
.u-mr-32 {
  margin-right: 3.2rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mr-32-tab {
    margin-right: 3.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mr-32-sp {
    margin-right: 3.2rem !important;
  }
}
.u-mx-32 {
  margin-left: 3.2rem !important;
  margin-right: 3.2rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mx-32-tab {
    margin-left: 3.2rem !important;
    margin-right: 3.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mx-32-sp {
    margin-left: 3.2rem !important;
    margin-right: 3.2rem !important;
  }
}
.u-pl-32 {
  padding-left: 3.2rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pl-32-tab {
    padding-left: 3.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pl-32-sp {
    padding-left: 3.2rem !important;
  }
}
.u-pr-32 {
  padding-right: 3.2rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pr-32-tab {
    padding-right: 3.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pr-32-sp {
    padding-right: 3.2rem !important;
  }
}
.u-px-32 {
  padding-left: 3.2rem !important;
  padding-right: 3.2rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-px-32-tab {
    padding-left: 3.2rem !important;
    padding-right: 3.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-px-32-sp {
    padding-left: 3.2rem !important;
    padding-right: 3.2rem !important;
  }
}
.u-ml-36 {
  margin-left: 3.6rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-ml-36-tab {
    margin-left: 3.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-ml-36-sp {
    margin-left: 3.6rem !important;
  }
}
.u-mr-36 {
  margin-right: 3.6rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mr-36-tab {
    margin-right: 3.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mr-36-sp {
    margin-right: 3.6rem !important;
  }
}
.u-mx-36 {
  margin-left: 3.6rem !important;
  margin-right: 3.6rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mx-36-tab {
    margin-left: 3.6rem !important;
    margin-right: 3.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mx-36-sp {
    margin-left: 3.6rem !important;
    margin-right: 3.6rem !important;
  }
}
.u-pl-36 {
  padding-left: 3.6rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pl-36-tab {
    padding-left: 3.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pl-36-sp {
    padding-left: 3.6rem !important;
  }
}
.u-pr-36 {
  padding-right: 3.6rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pr-36-tab {
    padding-right: 3.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pr-36-sp {
    padding-right: 3.6rem !important;
  }
}
.u-px-36 {
  padding-left: 3.6rem !important;
  padding-right: 3.6rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-px-36-tab {
    padding-left: 3.6rem !important;
    padding-right: 3.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-px-36-sp {
    padding-left: 3.6rem !important;
    padding-right: 3.6rem !important;
  }
}
.u-ml-40 {
  margin-left: 4rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-ml-40-tab {
    margin-left: 4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-ml-40-sp {
    margin-left: 4rem !important;
  }
}
.u-mr-40 {
  margin-right: 4rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mr-40-tab {
    margin-right: 4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mr-40-sp {
    margin-right: 4rem !important;
  }
}
.u-mx-40 {
  margin-left: 4rem !important;
  margin-right: 4rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-mx-40-tab {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mx-40-sp {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
}
.u-pl-40 {
  padding-left: 4rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pl-40-tab {
    padding-left: 4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pl-40-sp {
    padding-left: 4rem !important;
  }
}
.u-pr-40 {
  padding-right: 4rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-pr-40-tab {
    padding-right: 4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pr-40-sp {
    padding-right: 4rem !important;
  }
}
.u-px-40 {
  padding-left: 4rem !important;
  padding-right: 4rem !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-px-40-tab {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-px-40-sp {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
}
.u-my-xs {
  margin-top: 0.8rem !important;
  margin-bottom: 0.8rem !important;
}
@media (max-width: 767px) {
  .u-my-xs {
    margin-top: 0.4rem !important;
    margin-bottom: 0.4rem !important;
  }
}

.u-mt-xs {
  margin-top: 0.8rem !important;
}
@media (max-width: 767px) {
  .u-mt-xs {
    margin-top: 0.4rem !important;
  }
}

.u-mb-xs {
  margin-bottom: 0.8rem !important;
}
@media (max-width: 767px) {
  .u-mb-xs {
    margin-bottom: 0.4rem !important;
  }
}

.u-py-xs {
  padding-top: 0.8rem !important;
  padding-bottom: 0.8rem !important;
}
@media (max-width: 767px) {
  .u-py-xs {
    padding-top: 0.4rem !important;
    padding-bottom: 0.4rem !important;
  }
}

.u-pt-xs {
  padding-top: 0.8rem !important;
}
@media (max-width: 767px) {
  .u-pt-xs {
    padding-top: 0.4rem !important;
  }
}

.u-pb-xs {
  padding-bottom: 0.8rem !important;
}
@media (max-width: 767px) {
  .u-pb-xs {
    padding-bottom: 0.4rem !important;
  }
}

.u-my-sm {
  margin-top: 1.6rem !important;
  margin-bottom: 1.6rem !important;
}
@media (max-width: 767px) {
  .u-my-sm {
    margin-top: 0.8rem !important;
    margin-bottom: 0.8rem !important;
  }
}

.u-mt-sm {
  margin-top: 1.6rem !important;
}
@media (max-width: 767px) {
  .u-mt-sm {
    margin-top: 0.8rem !important;
  }
}

.u-mb-sm {
  margin-bottom: 1.6rem !important;
}
@media (max-width: 767px) {
  .u-mb-sm {
    margin-bottom: 0.8rem !important;
  }
}

.u-py-sm {
  padding-top: 1.6rem !important;
  padding-bottom: 1.6rem !important;
}
@media (max-width: 767px) {
  .u-py-sm {
    padding-top: 0.8rem !important;
    padding-bottom: 0.8rem !important;
  }
}

.u-pt-sm {
  padding-top: 1.6rem !important;
}
@media (max-width: 767px) {
  .u-pt-sm {
    padding-top: 0.8rem !important;
  }
}

.u-pb-sm {
  padding-bottom: 1.6rem !important;
}
@media (max-width: 767px) {
  .u-pb-sm {
    padding-bottom: 0.8rem !important;
  }
}

.u-my-md {
  margin-top: 2.4rem !important;
  margin-bottom: 2.4rem !important;
}
@media (max-width: 767px) {
  .u-my-md {
    margin-top: 1.6rem !important;
    margin-bottom: 1.6rem !important;
  }
}

.u-mt-md {
  margin-top: 2.4rem !important;
}
@media (max-width: 767px) {
  .u-mt-md {
    margin-top: 1.6rem !important;
  }
}

.u-mb-md {
  margin-bottom: 2.4rem !important;
}
@media (max-width: 767px) {
  .u-mb-md {
    margin-bottom: 1.6rem !important;
  }
}

.u-py-md {
  padding-top: 2.4rem !important;
  padding-bottom: 2.4rem !important;
}
@media (max-width: 767px) {
  .u-py-md {
    padding-top: 1.6rem !important;
    padding-bottom: 1.6rem !important;
  }
}

.u-pt-md {
  padding-top: 2.4rem !important;
}
@media (max-width: 767px) {
  .u-pt-md {
    padding-top: 1.6rem !important;
  }
}

.u-pb-md {
  padding-bottom: 2.4rem !important;
}
@media (max-width: 767px) {
  .u-pb-md {
    padding-bottom: 1.6rem !important;
  }
}

.u-my-lg {
  margin-top: 4.8rem !important;
  margin-bottom: 4.8rem !important;
}
@media (max-width: 767px) {
  .u-my-lg {
    margin-top: 3.2rem !important;
    margin-bottom: 3.2rem !important;
  }
}

.u-mt-lg {
  margin-top: 4.8rem !important;
}
@media (max-width: 767px) {
  .u-mt-lg {
    margin-top: 3.2rem !important;
  }
}

.u-mb-lg {
  margin-bottom: 4.8rem !important;
}
@media (max-width: 767px) {
  .u-mb-lg {
    margin-bottom: 3.2rem !important;
  }
}

.u-py-lg {
  padding-top: 4.8rem !important;
  padding-bottom: 4.8rem !important;
}
@media (max-width: 767px) {
  .u-py-lg {
    padding-top: 3.2rem !important;
    padding-bottom: 3.2rem !important;
  }
}

.u-pt-lg {
  padding-top: 4.8rem !important;
}
@media (max-width: 767px) {
  .u-pt-lg {
    padding-top: 3.2rem !important;
  }
}

.u-pb-lg {
  padding-bottom: 4.8rem !important;
}
@media (max-width: 767px) {
  .u-pb-lg {
    padding-bottom: 3.2rem !important;
  }
}

.u-my-xl {
  margin-top: 7.2rem !important;
  margin-bottom: 7.2rem !important;
}
@media (max-width: 767px) {
  .u-my-xl {
    margin-top: 4.8rem !important;
    margin-bottom: 4.8rem !important;
  }
}

.u-mt-xl {
  margin-top: 7.2rem !important;
}
@media (max-width: 767px) {
  .u-mt-xl {
    margin-top: 4.8rem !important;
  }
}

.u-mb-xl {
  margin-bottom: 7.2rem !important;
}
@media (max-width: 767px) {
  .u-mb-xl {
    margin-bottom: 4.8rem !important;
  }
}

.u-py-xl {
  padding-top: 7.2rem !important;
  padding-bottom: 7.2rem !important;
}
@media (max-width: 767px) {
  .u-py-xl {
    padding-top: 4.8rem !important;
    padding-bottom: 4.8rem !important;
  }
}

.u-pt-xl {
  padding-top: 7.2rem !important;
}
@media (max-width: 767px) {
  .u-pt-xl {
    padding-top: 4.8rem !important;
  }
}

.u-pb-xl {
  padding-bottom: 7.2rem !important;
}
@media (max-width: 767px) {
  .u-pb-xl {
    padding-bottom: 4.8rem !important;
  }
}

.u-my-2xl {
  margin-top: 9.6rem !important;
  margin-bottom: 9.6rem !important;
}
@media (max-width: 767px) {
  .u-my-2xl {
    margin-top: 6.4rem !important;
    margin-bottom: 6.4rem !important;
  }
}

.u-mt-2xl {
  margin-top: 9.6rem !important;
}
@media (max-width: 767px) {
  .u-mt-2xl {
    margin-top: 6.4rem !important;
  }
}

.u-mb-2xl {
  margin-bottom: 9.6rem !important;
}
@media (max-width: 767px) {
  .u-mb-2xl {
    margin-bottom: 6.4rem !important;
  }
}

.u-py-2xl {
  padding-top: 9.6rem !important;
  padding-bottom: 9.6rem !important;
}
@media (max-width: 767px) {
  .u-py-2xl {
    padding-top: 6.4rem !important;
    padding-bottom: 6.4rem !important;
  }
}

.u-pt-2xl {
  padding-top: 9.6rem !important;
}
@media (max-width: 767px) {
  .u-pt-2xl {
    padding-top: 6.4rem !important;
  }
}

.u-pb-2xl {
  padding-bottom: 9.6rem !important;
}
@media (max-width: 767px) {
  .u-pb-2xl {
    padding-bottom: 6.4rem !important;
  }
}

.u-my-3xl {
  margin-top: 12.8rem !important;
  margin-bottom: 12.8rem !important;
}
@media (max-width: 767px) {
  .u-my-3xl {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
}

.u-mt-3xl {
  margin-top: 12.8rem !important;
}
@media (max-width: 767px) {
  .u-mt-3xl {
    margin-top: 8rem !important;
  }
}

.u-mb-3xl {
  margin-bottom: 12.8rem !important;
}
@media (max-width: 767px) {
  .u-mb-3xl {
    margin-bottom: 8rem !important;
  }
}

.u-py-3xl {
  padding-top: 12.8rem !important;
  padding-bottom: 12.8rem !important;
}
@media (max-width: 767px) {
  .u-py-3xl {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
}

.u-pt-3xl {
  padding-top: 12.8rem !important;
}
@media (max-width: 767px) {
  .u-pt-3xl {
    padding-top: 8rem !important;
  }
}

.u-pb-3xl {
  padding-bottom: 12.8rem !important;
}
@media (max-width: 767px) {
  .u-pb-3xl {
    padding-bottom: 8rem !important;
  }
}

.heading-A {
  display: inline-block;
  text-align: center;
  line-height: 1;
  color: var(--color-base-white);
  font-family: var(--font-futura);
  font-size: var(--font-size-h2_en);
  font-style: italic;
  font-weight: bold;
}
@media (max-width: 767px) {
  .heading-A {
    font-size: 4rem;
  }
}
.heading-A.--size-m {
  font-size: var(--font-size-h3_en);
}
@media (max-width: 767px) {
  .heading-A.--size-m {
    font-size: 2.2rem;
  }
}
.heading-A.--size-s {
  font-size: var(--font-size-h4_en);
}
.heading-A.--red {
  color: var(--color-primary);
}
.heading-A.--align-left {
  text-align: left;
}

.footer {
  position: relative;
  height: 100vh;
  background-color: var(--color-primary);
  overflow: hidden;
}
@media (min-width: 980px) and (max-width: 1300px) and (max-height: 750px) {
  .footer {
    height: auto;
  }
}
@media (max-width: 1023px) {
  .footer {
    height: auto;
  }
}
.footer #js-canvas-player02 {
  position: absolute;
  width: clamp(25.3rem, 26.35vw, 50.6rem);
  aspect-ratio: 506/506;
  top: -4%;
  right: -8%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .footer #js-canvas-player02 {
    width: 18rem;
    right: -25%;
  }
}
.footer__wrap {
  padding: clamp(10rem, 10.42vw, 20rem) 0;
}
@media (max-width: 1023px) {
  .footer__wrap {
    padding: clamp(10rem, 10.42vw, 20rem) 0 clamp(10rem, 14.58vw, 28rem);
  }
}
@media (max-width: 767px) {
  .footer__wrap {
    padding: 4rem 0;
  }
}
.footer__logo {
  margin: 0 auto;
  width: clamp(35.9rem, 37.4vw, 71.8rem);
  height: auto;
}
@media (max-width: 767px) {
  .footer__logo {
    margin: 0;
    width: 19.1rem;
  }
}
.footer__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6.4rem;
  text-align: center;
  background-color: var(--color-base-white);
}
@media (max-width: 767px) {
  .footer__contact {
    position: relative;
    padding: 2.8rem;
    border: 4px solid var(--color-primary);
    z-index: 1;
  }
}
.footer__mail {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 1.6rem;
  font-family: var(--font-futura);
  font-style: italic;
  font-size: var(--font-size-h5_en);
  font-weight: bold;
}
@media (max-width: 767px) {
  .footer__mail {
    gap: 0.8rem;
  }
}
.footer__mail::before {
  display: block;
  width: 3.4rem;
  height: 2.5rem;
  background: url("../images/common/mail-icon.svg") no-repeat;
  background-size: contain;
  content: "";
}
@media (max-width: 767px) {
  .footer__mail::before {
    width: 2rem;
    height: 1.4rem;
  }
}
.footer__mail::after {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
  bottom: -0.5rem;
  left: 0;
  transform: scaleX(1);
  transform-origin: left;
  content: "";
}
@media (max-width: 767px) {
  .footer__mail::after {
    bottom: -0.25rem;
  }
}
.footer__mail:hover::after, .footer__mail:active::after {
  animation: line-slide 0.6s ease forwards;
}
.footer .copyright {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 1;
  background-color: var(--color-bg-gray);
  font-family: var(--font-futura);
  font-style: italic;
  font-size: var(--font-size-h6_en);
  font-weight: 700;
}
@media (min-width: 980px) and (max-width: 1300px) and (max-height: 750px) {
  .footer .copyright {
    position: static;
  }
}
@media (max-width: 1023px) {
  .footer .copyright {
    position: static;
  }
}

.header {
  position: fixed;
  padding: 4.8rem 4.8rem 0 4.8rem;
  width: 100%;
  z-index: 999;
}
@media (min-width: 980px) and (max-width: 1300px) and (max-height: 750px) {
  .header {
    padding: 2.8rem 2.8rem 0 2.8rem;
  }
}
@media (max-width: 1023px) {
  .header {
    padding: 2rem 2rem 0 2rem;
  }
}
.header__wrap {
  position: relative;
}
.header__layer {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 4.8rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}
@media (max-width: 1023px) {
  .header__layer {
    gap: 2rem;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .header__layer {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
  }
}
.header__layer.active {
  opacity: 1;
  transition: opacity 0.3s ease;
  z-index: 99;
}
.header__layer > * {
  pointer-events: auto;
}
.header__layer--red .header__logo svg path {
  fill: var(--color-base-white);
}
.header__layer--red .hmb-btn span {
  background-color: var(--color-base-white);
}
.header__layer--white .header__logo svg path {
  fill: var(--color-primary);
}
.header__layer--white .hmb-btn span {
  background-color: var(--color-primary);
}
.header__logo svg {
  width: 20rem;
  height: auto;
}
@media (min-width: 980px) and (max-width: 1300px) and (max-height: 750px) {
  .header__logo svg {
    width: 16rem;
  }
}

@media (max-width: 767px) {
  body[data-pageid=news] .header__logo,
  body[data-pageid=news-single] .header__logo {
    display: block !important;
  }
}
@media (max-width: 767px) {
  body[data-pageid=news] .header__logo svg,
  body[data-pageid=news-single] .header__logo svg {
    width: 14.5rem;
  }
}
@media (max-width: 767px) {
  body[data-pageid=news] .header__layer,
  body[data-pageid=news-single] .header__layer {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.header-sub {
  position: relative;
  background-color: var(--color-primary);
  padding: 10rem 0;
}
@media (max-width: 767px) {
  .header-sub {
    padding: 8rem 0;
  }
}
.header-sub__date {
  line-height: 1;
  color: var(--color-base-white);
  font-family: var(--font-futura);
  font-size: var(--font-size-h5_en);
  font-style: italic;
  font-weight: bold;
  margin-bottom: 4.8rem;
}
@media (max-width: 767px) {
  .header-sub__date {
    margin-bottom: 2.4rem;
  }
}
.header-sub__title {
  font-size: var(--font-size-h4);
  color: var(--color-base-white);
  font-weight: 700;
  line-height: 1;
}

.mv {
  position: relative;
  width: 100%;
  height: 100vh;
}
@media (max-width: 767px) {
  .mv {
    display: flex;
    align-items: flex-end;
    padding-bottom: 1.6rem;
  }
}
@media (max-width: 767px) {
  .mv__logo {
    padding-bottom: 5rem;
    width: 26rem;
    height: auto;
  }
}
.mv__arrows {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  top: 50%;
  right: 6.45rem;
  transform: translateY(-50%);
  transition: opacity 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .mv__arrows {
    gap: 1rem;
    right: 2rem;
  }
}
.mv__arrows svg {
  width: 0.2rem;
  height: 12.8rem;
}
@media (max-width: 767px) {
  .mv__arrows svg {
    width: 0.1rem;
    height: 6.4rem;
  }
}
.mv__arrows-txt {
  display: inline-block;
  line-height: 0.8;
  writing-mode: vertical-rl;
  color: var(--color-base-white);
  font-family: var(--font-futura);
  font-style: italic;
  font-size: var(--font-size-h5);
  font-weight: 600;
}
@media (min-width: 980px) and (max-width: 1300px) and (max-height: 750px) {
  .mv__arrows-txt {
    font-size: var(--font-size-h6);
  }
}
@media (max-width: 767px) {
  .mv__arrows-txt {
    font-family: var(--font-size-h3);
  }
}
.mv__arrows-txt {
  display: inline-block;
  flex-shrink: 0;
}
.mv .arrowPath {
  stroke-dasharray: 140;
  stroke-dashoffset: 140;
  animation: arrowStrokePath 1.25s linear infinite;
}
@keyframes arrowStrokePath {
  0% {
    stroke-dashoffset: 140;
  }
  60% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -130;
  }
}

.menu-sp {
  position: fixed;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 2.75rem;
  background-color: rgba(0, 0, 0, 0.7);
  pointer-events: none;
  z-index: 998;
  opacity: 0;
  transition: all 0.25s ease;
}
.menu-sp__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}
.menu-sp__layout {
  display: grid;
  grid-template-areas: "deco01 menu-nav deco04" "deco02 menu-nav deco05" "deco06 menu-nav deco03";
  grid-template-columns: 1fr 52rem 1fr;
  gap: 0.8rem;
}
@media (max-width: 1023px) {
  .menu-sp__layout {
    grid-template-columns: 1fr 42rem 1fr;
  }
}
@media (max-width: 767px) {
  .menu-sp__layout {
    grid-template-areas: "deco01 deco02 deco03" "menu-nav menu-nav menu-nav" "deco04 deco05 deco06";
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.menu-sp__deco01 {
  grid-area: deco01;
  margin-left: auto;
  width: 16.73rem;
  aspect-ratio: 103/103;
  background-color: var(--color-primary);
}
@media (max-width: 1023px) {
  .menu-sp__deco01 {
    width: 13.5rem;
  }
}
@media (max-width: 767px) {
  .menu-sp__deco01 {
    width: 10.3rem;
  }
}
.menu-sp__deco02 {
  grid-area: deco02;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  width: 16.73rem;
  aspect-ratio: 103/103;
  background-color: var(--color-primary);
}
@media (max-width: 1023px) {
  .menu-sp__deco02 {
    width: 13.5rem;
  }
}
@media (max-width: 767px) {
  .menu-sp__deco02 {
    width: 10.3rem;
  }
}
.menu-sp__deco02-img {
  width: 95%;
  height: auto;
}
.menu-sp__deco02-img img {
  width: 100%;
  height: auto;
}
.menu-sp__deco03 {
  grid-area: deco03;
  margin-right: auto;
  width: 16.73rem;
  aspect-ratio: 103/103;
  background-color: var(--color-primary);
}
@media (max-width: 1023px) {
  .menu-sp__deco03 {
    width: 13.5rem;
  }
}
@media (max-width: 767px) {
  .menu-sp__deco03 {
    aspect-ratio: 103/103;
    width: 10.3rem;
  }
}
.menu-sp__deco03-img {
  width: 95%;
  height: auto;
}
.menu-sp__deco03-img img {
  width: 100%;
  height: auto;
}
.menu-sp__deco04 {
  grid-area: deco04;
  margin-right: auto;
  width: 16.73rem;
  aspect-ratio: 103/103;
  background-color: var(--color-primary);
}
@media (max-width: 1023px) {
  .menu-sp__deco04 {
    width: 13.5rem;
  }
}
@media (max-width: 767px) {
  .menu-sp__deco04 {
    width: 10.3rem;
  }
}
.menu-sp__deco05 {
  grid-area: deco05;
  margin-right: auto;
  width: 16.73rem;
  aspect-ratio: 103/103;
  background-color: var(--color-primary);
}
@media (max-width: 1023px) {
  .menu-sp__deco05 {
    width: 13.5rem;
  }
}
@media (max-width: 767px) {
  .menu-sp__deco05 {
    width: 10.3rem;
  }
}
.menu-sp__deco06 {
  grid-area: deco06;
  margin-left: auto;
  width: 16.73rem;
  aspect-ratio: 103/103;
  background-color: var(--color-primary);
}
@media (max-width: 1023px) {
  .menu-sp__deco06 {
    width: 13.5rem;
  }
}
@media (max-width: 767px) {
  .menu-sp__deco06 {
    width: 10.3rem;
  }
}
.menu-sp__nav {
  grid-area: menu-nav;
  position: relative;
  width: 52rem;
  aspect-ratio: 320/320;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 4.4rem;
  background-color: var(--color-base-white);
}
@media (max-width: 1023px) {
  .menu-sp__nav {
    width: 42rem;
    padding: 3.3rem;
  }
}
@media (max-width: 767px) {
  .menu-sp__nav {
    padding: 2.2rem;
    width: 32rem;
  }
}
.menu-sp__nav::before {
  position: absolute;
  width: 94%;
  height: 94%;
  border: 4px solid var(--color-primary);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  content: "";
}
.menu-sp__nav li a {
  position: relative;
  display: inline-block;
  margin-top: 0.5rem;
  padding: 1.5rem 1rem 0.5rem 0;
  line-height: 1;
  color: var(--color-primary);
  font-family: var(--font-futura);
  font-style: italic;
  font-size: 3.2rem;
  font-weight: bold;
}
@media (max-width: 1023px) {
  .menu-sp__nav li a {
    margin-top: 0;
    padding: 1rem 1rem 1rem 0;
    font-size: 2.8rem;
  }
}
@media (max-width: 767px) {
  .menu-sp__nav li a {
    padding: 1.5rem 1rem 0.5rem 0;
    font-size: 2.4rem;
  }
}
.menu-sp__nav li a:hover {
  opacity: 0.7;
}
.menu-sp__nav li:last-child a {
  border-bottom: none;
}
.menu-sp__btn {
  margin-top: 2.5rem;
  width: 80%;
}
.menu-sp.open {
  opacity: 1;
  pointer-events: auto;
}

.btn-A {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  line-height: 1.2;
  color: var(--color-base-white);
  font-family: var(--font-futura);
  font-style: italic;
  font-size: var(--font-size-h6);
  font-weight: bold;
}
@media (max-width: 767px) {
  .btn-A {
    padding-bottom: 0.25rem;
    font-size: 1.2rem;
  }
}
.btn-A::before {
  display: block;
  font-size: var(--font-size-h6);
  content: "・";
}
@media (max-width: 767px) {
  .btn-A::before {
    font-size: 1.2rem;
  }
}
.btn-A::after {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--color-base-white);
  bottom: -0.5rem;
  left: 0;
  transform: scaleX(1);
  transform-origin: left;
  content: "";
}
@media (max-width: 767px) {
  .btn-A::after {
    bottom: -0.25rem;
  }
}
.btn-A:hover::after, .btn-A:active::after {
  animation: line-slide 0.6s ease forwards;
}

@keyframes line-slide {
  0% {
    transform: scaleX(1);
    transform-origin: right;
  }
  45% {
    transform: scaleX(0);
    transform-origin: right;
  }
  55% {
    transform: scaleX(0);
    transform-origin: left;
  }
  100% {
    transform: scaleX(1);
    transform-origin: left;
  }
}
.btn-list {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-family: var(--font-futura);
  color: var(--color-disable);
  font-size: 2.4rem;
  font-weight: 700;
  font-style: italic;
  transition: all 0.25s ease;
}
@media (max-width: 767px) {
  .btn-list {
    font-size: 1.4rem;
  }
}
.btn-list.--prev::before {
  display: block;
  width: 6.4rem;
  height: 6.4rem;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjQiIGhlaWdodD0iNjQiIHZpZXdCb3g9IjAgMCA2NCA2NCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cmVjdCB4PSIxIiB5PSIxIiB3aWR0aD0iNjIiIGhlaWdodD0iNjIiIHJ4PSIzMSIgZmlsbD0id2hpdGUiLz48cmVjdCB4PSIxIiB5PSIxIiB3aWR0aD0iNjIiIGhlaWdodD0iNjIiIHJ4PSIzMSIgc3Ryb2tlPSIjREVERURFIiBzdHJva2Utd2lkdGg9IjIiLz48cGF0aCBkPSJNMzQuNSAyNUwyNy42ODYzIDMxLjgxMzdMMzQuNSAzOC42Mjc0IiBzdHJva2U9IiNERURFREUiIHN0cm9rZS13aWR0aD0iMiIvPjwvc3ZnPg==") no-repeat;
  background-size: contain;
  transition: all 0.25s ease;
  content: "";
}
@media (max-width: 767px) {
  .btn-list.--prev::before {
    width: 3.5rem;
    height: 3.5rem;
  }
}
.btn-list.--next::after {
  display: block;
  width: 6.4rem;
  height: 6.4rem;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjQiIGhlaWdodD0iNjQiIHZpZXdCb3g9IjAgMCA2NCA2NCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cmVjdCB4PSItMSIgeT0iMSIgd2lkdGg9IjYyIiBoZWlnaHQ9IjYyIiByeD0iMzEiIHRyYW5zZm9ybT0ibWF0cml4KC0xIDAgMCAxIDYyIDApIiBmaWxsPSJ3aGl0ZSIvPjxyZWN0IHg9Ii0xIiB5PSIxIiB3aWR0aD0iNjIiIGhlaWdodD0iNjIiIHJ4PSIzMSIgdHJhbnNmb3JtPSJtYXRyaXgoLTEgMCAwIDEgNjIgMCkiIHN0cm9rZT0iI0RFREVERSIgc3Ryb2tlLXdpZHRoPSIyIi8+PHBhdGggZD0iTTI5LjUgMjVMMzYuMzEzNyAzMS44MTM3TDI5LjUgMzguNjI3NCIgc3Ryb2tlPSIjREVERURFIiBzdHJva2Utd2lkdGg9IjIiLz48L3N2Zz4=") no-repeat;
  background-size: contain;
  transition: all 0.25s ease;
  content: "";
}
@media (max-width: 767px) {
  .btn-list.--next::after {
    width: 3.5rem;
    height: 3.5rem;
  }
}
.btn-list.--active {
  color: var(--color-primary);
}
.btn-list.--active.--prev::before {
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjQiIGhlaWdodD0iNjQiIHZpZXdCb3g9IjAgMCA2NCA2NCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cmVjdCB4PSIxIiB5PSIxIiB3aWR0aD0iNjIiIGhlaWdodD0iNjIiIHJ4PSIzMSIgZmlsbD0id2hpdGUiLz48cmVjdCB4PSIxIiB5PSIxIiB3aWR0aD0iNjIiIGhlaWdodD0iNjIiIHJ4PSIzMSIgc3Ryb2tlPSIjRTUwMDEyIiBzdHJva2Utd2lkdGg9IjIiLz48cGF0aCBkPSJNMzQuNSAyNUwyNy42ODYzIDMxLjgxMzdMMzQuNSAzOC42Mjc0IiBzdHJva2U9IiNFNTAwMTIiIHN0cm9rZS13aWR0aD0iMiIvPjwvc3ZnPg==") no-repeat;
  background-size: contain;
}
.btn-list.--active.--prev:hover {
  opacity: 0.7;
}
.btn-list.--active.--prev:hover::before {
  transform: translateX(-1rem);
}
.btn-list.--active.--next::after {
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjQiIGhlaWdodD0iNjQiIHZpZXdCb3g9IjAgMCA2NCA2NCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cmVjdCB4PSItMSIgeT0iMSIgd2lkdGg9IjYyIiBoZWlnaHQ9IjYyIiByeD0iMzEiIHRyYW5zZm9ybT0ibWF0cml4KC0xIDAgMCAxIDYyIDApIiBmaWxsPSJ3aGl0ZSIvPjxyZWN0IHg9Ii0xIiB5PSIxIiB3aWR0aD0iNjIiIGhlaWdodD0iNjIiIHJ4PSIzMSIgdHJhbnNmb3JtPSJtYXRyaXgoLTEgMCAwIDEgNjIgMCkiIHN0cm9rZT0iI0U1MDAxMiIgc3Ryb2tlLXdpZHRoPSIyIi8+PHBhdGggZD0iTTI5LjUgMjVMMzYuMzEzNyAzMS44MTM3TDI5LjUgMzguNjI3NCIgc3Ryb2tlPSIjRTUwMDEyIiBzdHJva2Utd2lkdGg9IjIiLz48L3N2Zz4=") no-repeat;
  background-size: contain;
}
.btn-list.--active.--next:hover {
  opacity: 0.7;
}
.btn-list.--active.--next:hover::after {
  transform: translateX(1rem);
}
.btn-list.--index:hover {
  opacity: 0.7;
}

.prev-ntn {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 2.4rem;
  transition: all 0.25s ease;
}
@media (max-width: 767px) {
  .prev-ntn {
    font-size: 1.4rem;
  }
}
.prev-ntn::before {
  display: block;
  width: 6.4rem;
  height: 6.4rem;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjQiIGhlaWdodD0iNjQiIHZpZXdCb3g9IjAgMCA2NCA2NCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cmVjdCB4PSIxIiB5PSIxIiB3aWR0aD0iNjIiIGhlaWdodD0iNjIiIHJ4PSIzMSIgZmlsbD0id2hpdGUiLz48cmVjdCB4PSIxIiB5PSIxIiB3aWR0aD0iNjIiIGhlaWdodD0iNjIiIHJ4PSIzMSIgc3Ryb2tlPSIjRTUwMDEyIiBzdHJva2Utd2lkdGg9IjIiLz48cGF0aCBkPSJNMzQuNSAyNUwyNy42ODYzIDMxLjgxMzdMMzQuNSAzOC42Mjc0IiBzdHJva2U9IiNFNTAwMTIiIHN0cm9rZS13aWR0aD0iMiIvPjwvc3ZnPg==") no-repeat;
  background-size: contain;
  transition: all 0.25s ease;
  content: "";
}
@media (max-width: 767px) {
  .prev-ntn::before {
    width: 4.8rem;
    height: 4.8rem;
  }
}
.prev-ntn:hover {
  opacity: 0.7;
}
.prev-ntn:hover::before {
  transform: translateX(-1rem);
}

.next-ntn {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 2.4rem;
  transition: all 0.25s ease;
}
@media (max-width: 767px) {
  .next-ntn {
    font-size: 1.4rem;
    margin-left: 5rem;
  }
}
.next-ntn::after {
  display: block;
  width: 6.4rem;
  height: 6.4rem;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjQiIGhlaWdodD0iNjQiIHZpZXdCb3g9IjAgMCA2NCA2NCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cmVjdCB4PSItMSIgeT0iMSIgd2lkdGg9IjYyIiBoZWlnaHQ9IjYyIiByeD0iMzEiIHRyYW5zZm9ybT0ibWF0cml4KC0xIDAgMCAxIDYyIDApIiBmaWxsPSJ3aGl0ZSIvPjxyZWN0IHg9Ii0xIiB5PSIxIiB3aWR0aD0iNjIiIGhlaWdodD0iNjIiIHJ4PSIzMSIgdHJhbnNmb3JtPSJtYXRyaXgoLTEgMCAwIDEgNjIgMCkiIHN0cm9rZT0iI0U1MDAxMiIgc3Ryb2tlLXdpZHRoPSIyIi8+PHBhdGggZD0iTTI5LjUgMjVMMzYuMzEzNyAzMS44MTM3TDI5LjUgMzguNjI3NCIgc3Ryb2tlPSIjRTUwMDEyIiBzdHJva2Utd2lkdGg9IjIiLz48L3N2Zz4=") no-repeat;
  background-size: contain;
  transition: all 0.25s ease;
  content: "";
}
@media (max-width: 767px) {
  .next-ntn::after {
    width: 4.8rem;
    height: 4.8rem;
  }
}
.next-ntn:hover {
  opacity: 0.7;
}
.next-ntn:hover::after {
  transform: translateX(1rem);
}

.pagetop {
  position: fixed;
  width: clamp(10rem, 10.42vw, 20rem);
  height: clamp(10rem, 10.42vw, 20rem);
  color: var(--color-primary);
  background: var(--color-base-white);
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  bottom: 4rem;
  right: 3rem;
  z-index: 999;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
}
@media (max-width: 767px) {
  .pagetop {
    width: 7.2rem;
    height: 7.2rem;
    bottom: 2.7rem;
    right: 1rem;
  }
}
.pagetop::after {
  position: absolute;
  width: clamp(3.85rem, 4.01vw, 7.7rem);
  height: clamp(2.75rem, 2.86vw, 5.5rem);
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNzciIGhlaWdodD0iNTUiIHZpZXdCb3g9IjAgMCA3NyA1NSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMi42MjM3NyAwLjQ4MDIxN0g5LjgyMzc3QzExLjMyNzggMC40ODAyMTcgMTMuNjMxOCAwLjU0NDIxOCAxNS4zNTk4IDIuMjcyMjJDMTYuMzE5OCAzLjIzMjIyIDE3LjA4NzggNC42NzIyMiAxNy4wODc4IDYuODQ4MjJDMTcuMDg3OCA5LjIxNjIyIDE2LjI4NzggMTEuMjY0MiAxNS4wMDc4IDEyLjQ0ODJDMTQuMDQ3OCAxMy4zNDQyIDEyLjIyMzggMTQuMzM2MiA4LjY3MTc3IDE0LjMzNjJINS44NTU3N0w0LjkyNzc3IDIxLjgyNDJILTAuMDAwMjM0MzY1TDIuNjIzNzcgMC40ODAyMTdaTTcuMDcxNzcgNC41MTIyMkw2LjMzNTc3IDEwLjMwNDJIOC4wOTU3N0M5LjE1MTc3IDEwLjMwNDIgMTAuMzY3OCAxMC4yMDgyIDExLjE5OTggOS4zNzYyMkMxMS45MzU4IDguNjcyMjIgMTIuMDMxOCA3LjcxMjIyIDEyLjAzMTggNy4xNjgyMkMxMi4wMzE4IDYuNTYwMjIgMTEuOTAzOCA1Ljg1NjIyIDExLjMyNzggNS4zMTIyMkMxMC41NTk4IDQuNTc2MjIgOS4yNzk3NyA0LjUxMjIyIDguNTQzNzcgNC41MTIyMkg3LjA3MTc3Wk0zMC43MSAyMS44MjQyTDI5LjYyMiAxNy43OTIySDIxLjU1OEwxOS41NDIgMjEuODI0MkgxNC4yM0wyNS40OTQgMC40ODAyMTdIMzAuMDM4TDM1Ljc2NiAyMS44MjQySDMwLjcxWk0yMy40MTQgMTQuMDE2MkgyOC43MjZMMjYuOTk4IDYuNDk2MjJMMjMuNDE0IDE0LjAxNjJaTTQ4LjY3NzUgMTQuMTEyMkw0OS4xNTc1IDEwLjE3NjJINTkuMTQxNUM1OC45ODE1IDE1LjU1MjIgNTYuOTAxNSAxOC4yMDgyIDU1Ljg0NTUgMTkuMjk2MkM1My40MTM1IDIxLjgyNDIgNTAuNjI5NSAyMi4zMDQyIDQ3Ljk3MzUgMjIuMzA0MkM0NS4yNTM1IDIyLjMwNDIgNDIuNDA1NSAyMS42NjQyIDQwLjEzMzUgMTkuMjk2MkMzNy45MjU1IDE2Ljk5MjIgMzcuNDEzNSAxNC4xNzYyIDM3LjQxMzUgMTEuOTA0MkMzNy40MTM1IDcuODcyMjIgMzguODg1NSA1LjEyMDIyIDQwLjYxMzUgMy4yOTYyMkM0My4zMDE1IDAuNDgwMjE3IDQ2LjM0MTUgMC4wMDAyMTc0MzggNDkuMzQ5NSAwLjAwMDIxNzQzOEM1MS4yNjk1IDAuMDAwMjE3NDM4IDUzLjQ0NTUgMC4zMjAyMTcgNTUuMzY1NSAxLjU2ODIyQzU2Ljc3MzUgMi40OTYyMiA1OC4wMjE1IDQuMDAwMjIgNTguODIxNSA1LjQwODIyTDU0LjI3NzUgNy44MDgyMkM1My44OTM1IDYuOTQ0MjIgNTMuMTg5NSA1Ljk4NDIyIDUyLjI5MzUgNS4zNzYyMkM1MS4xNzM1IDQuNjA4MjIgNDkuOTU3NSA0LjQ4MDIyIDQ5LjAyOTUgNC40ODAyMkM0Ny4zMDE1IDQuNDgwMjIgNDUuODYxNSA0Ljg5NjIyIDQ0LjU0OTUgNi4yNzIyMkM0My4xNDE1IDcuNzQ0MjIgNDIuNDY5NSA5Ljg1NjIyIDQyLjQ2OTUgMTEuNzEyMkM0Mi40Njk1IDEzLjM0NDIgNDMuMDc3NSAxNS4xNjgyIDQ0LjIyOTUgMTYuMjg4MkM0NS41NzM1IDE3LjYzMjIgNDcuMzAxNSAxNy44MjQyIDQ4LjYxMzUgMTcuODI0MkM0OS42MDU1IDE3LjgyNDIgNTAuOTQ5NSAxNy42MzIyIDUyLjAwNTUgMTYuODY0MkM1Mi43NzM1IDE2LjMyMDIgNTMuNTA5NSAxNS4zMjgyIDUzLjgyOTUgMTQuMTEyMkg0OC42Nzc1Wk03Ni4wMjQ4IDAuNDgwMjE3TDc1LjUxMjggNC42NDAyMkg2OC41MzY4TDY4LjAyNDggOC43NjgyMkg3NC43NDQ4TDc0LjIzMjggMTIuOTI4Mkg2Ny41MTI4TDY2LjkzNjggMTcuNjY0Mkg3NC4wNDA4TDczLjUyODggMjEuODI0Mkg2MS42MjQ4TDY0LjI0ODggMC40ODAyMTdINzYuMDI0OFpNMjMuNzcxIDM2LjY0MDJIMTkuMTMxTDE3LjAxOSA1My44MjQySDEyLjA5MUwxNC4yMDMgMzYuNjQwMkg5LjU2MzAyTDEwLjA3NSAzMi40ODAySDI0LjI4M0wyMy43NzEgMzYuNjQwMlpNMzYuNTQ1MyAzMi4wMDAyQzQwLjY0MTMgMzIuMDAwMiA0My4xMDUzIDMzLjQ0MDIgNDQuNTEzMyAzNC43ODQyQzQ2LjMzNzMgMzYuNTQ0MiA0Ny41MjEzIDM5LjIzMjIgNDcuNTIxMyA0Mi4zNjgyQzQ3LjUyMTMgNDUuNDA4MiA0Ni40NjUzIDQ4LjcwNDIgNDQuMjI1MyA1MS4wMDgyQzQxLjUzNzMgNTMuNzYwMiAzOC4xNzczIDU0LjMwNDIgMzUuMzkzMyA1NC4zMDQyQzMyLjczNzMgNTQuMzA0MiAyOS43OTMzIDUzLjgyNDIgMjcuMjY1MyA1MS4yNjQyQzI1Ljc5MzMgNDkuNzYwMiAyNC4yNTczIDQ3LjI5NjIgMjQuMjU3MyA0My44MDgyQzI0LjI1NzMgNDAuMDY0MiAyNS43NjEzIDM3LjE1MjIgMjcuNzc3MyAzNS4yMzIyQzMwLjQ5NzMgMzIuNjQwMiAzMy43OTMzIDMyLjAwMDIgMzYuNTQ1MyAzMi4wMDAyWk0zNi4zNTMzIDM2LjU0NDJDMzQuMjQxMyAzNi41NDQyIDMyLjU0NTMgMzcuMjQ4MiAzMS4yNjUzIDM4LjU5MjJDMzAuMDE3MyAzOS45MDQyIDI5LjMxMzMgNDEuNjk2MiAyOS4zMTMzIDQzLjQ4ODJDMjkuMzEzMyA0NS40NDAyIDMwLjA0OTMgNDYuOTc2MiAzMS4wNDEzIDQ3Ljk2ODJDMzIuNDgxMyA0OS40NDAyIDM0LjIwOTMgNDkuNzYwMiAzNS43MTMzIDQ5Ljc2MDJDMzcuMTUzMyA0OS43NjAyIDM4LjkxMzMgNDkuNTM2MiA0MC40ODEzIDQ3LjkzNjJDNDEuNjMzMyA0Ni43NTIyIDQyLjQ2NTMgNDQuODk2MiA0Mi40NjUzIDQyLjY4ODJDNDIuNDY1MyA0MS4zMTIyIDQyLjE3NzMgMzkuNTg0MiA0MC43NjkzIDM4LjIwODJDMzkuMzYxMyAzNi44MzIyIDM3LjY2NTMgMzYuNTQ0MiAzNi4zNTMzIDM2LjU0NDJaTTUyLjQ2NzUgMzIuNDgwMkg1OS42Njc1QzYxLjE3MTUgMzIuNDgwMiA2My40NzU1IDMyLjU0NDIgNjUuMjAzNSAzNC4yNzIyQzY2LjE2MzUgMzUuMjMyMiA2Ni45MzE1IDM2LjY3MjIgNjYuOTMxNSAzOC44NDgyQzY2LjkzMTUgNDEuMjE2MiA2Ni4xMzE1IDQzLjI2NDIgNjQuODUxNSA0NC40NDgyQzYzLjg5MTUgNDUuMzQ0MiA2Mi4wNjc1IDQ2LjMzNjIgNTguNTE1NSA0Ni4zMzYySDU1LjY5OTVMNTQuNzcxNSA1My44MjQySDQ5Ljg0MzVMNTIuNDY3NSAzMi40ODAyWk01Ni45MTU1IDM2LjUxMjJMNTYuMTc5NSA0Mi4zMDQySDU3LjkzOTVDNTguOTk1NSA0Mi4zMDQyIDYwLjIxMTUgNDIuMjA4MiA2MS4wNDM1IDQxLjM3NjJDNjEuNzc5NSA0MC42NzIyIDYxLjg3NTUgMzkuNzEyMiA2MS44NzU1IDM5LjE2ODJDNjEuODc1NSAzOC41NjAyIDYxLjc0NzUgMzcuODU2MiA2MS4xNzE1IDM3LjMxMjJDNjAuNDAzNSAzNi41NzYyIDU5LjEyMzUgMzYuNTEyMiA1OC4zODc1IDM2LjUxMjJINTYuOTE1NVoiIGZpbGw9IiNFNTAwMTIiLz48L3N2Zz4=") no-repeat;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
}
@media (max-width: 767px) {
  .pagetop::after {
    width: 3.9rem;
    height: 2.8rem;
  }
}
.pagetop:hover {
  color: var(--color-base-white);
  background: var(--color-primary);
  border: 2px solid var(--color-base-white);
}
.pagetop:hover::after {
  filter: brightness(0) invert(1);
}
.pagetop.active {
  opacity: 1;
  pointer-events: all;
  transition: all 0.25s ease;
}

.hmb-btn {
  position: relative;
  width: 4.4rem;
  height: 2rem;
  z-index: 999;
  cursor: pointer;
}
.hmb-btn__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  height: 100%;
}
.hmb-btn__trigger {
  position: relative;
  width: 4.4rem;
  height: 2rem;
}
.hmb-btn__trigger span {
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 2px;
  left: 0;
  transform: translateY(0) rotate(0);
}
.hmb-btn__trigger span:nth-of-type(1) {
  top: 0;
  animation: hmb-bar01 0.5s forwards;
}
.hmb-btn__trigger span:nth-of-type(2) {
  bottom: 0;
  animation: hmb-bar02 0.5s forwards;
}
.hmb-btn__text {
  text-align: center;
  line-height: 1;
  font-size: 1.1rem;
}

.js-hmb-btn.active .hmb-btn__trigger span:nth-child(1) {
  animation: active-hmb-bar01 0.5s forwards;
}
.js-hmb-btn.active .hmb-btn__trigger span:nth-child(2) {
  animation: active-hmb-bar02 0.5s forwards;
}
@keyframes hmb-bar01 {
  0% {
    transform: translateY(0.9rem) rotate(15deg);
  }
  50% {
    transform: translateY(0.9rem) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes hmb-bar02 {
  0% {
    transform: translateY(-0.9rem) rotate(-15deg);
  }
  50% {
    transform: translateY(-0.9rem) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.js-hmb-btn {
  /* ×にする */
}
@keyframes active-hmb-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(0.9rem) rotate(0);
  }
  100% {
    transform: translateY(0.9rem) rotate(15deg);
  }
}
@keyframes active-hmb-bar02 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-0.9rem) rotate(0);
  }
  100% {
    transform: translateY(-0.9rem) rotate(-15deg);
  }
}

.modal-a {
  position: absolute;
  padding: clamp(3.2rem, 3.33vw, 6.4rem);
  width: 1200px;
  height: 70%;
  background: #fff;
  box-sizing: border-box;
  top: 50%;
  left: 50%;
  z-index: 1000;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media (max-width: 1500px) {
  .modal-a {
    width: 75%;
    height: 65%;
  }
}
@media (min-width: 980px) and (max-width: 1300px) and (max-height: 750px) {
  .modal-a {
    width: 65%;
  }
}
@media (max-width: 1023px) {
  .modal-a {
    height: 67%;
  }
}
@media (max-width: 767px) {
  .modal-a {
    padding: 2.2rem 1.4rem 2.2rem 1.8rem;
    width: 85%;
    height: 75%;
  }
}
.modal-a__inner {
  position: relative;
}
.modal-a__inner.js-scroll-y {
  padding: 0;
  height: auto;
}
@media (min-width: 980px) and (max-width: 1300px) and (max-height: 750px) {
  .modal-a__inner.js-scroll-y {
    height: 60vh;
  }
}
@media (max-width: 767px) {
  .modal-a__inner.js-scroll-y {
    padding: 0 2rem 0 0;
    height: 70vh;
  }
}
.modal-a__layout {
  display: grid;
  grid-template-columns: clamp(15rem, 15.625vw, 30rem) auto;
  gap: clamp(2.4rem, 2.5vw, 4.8rem);
}
@media (min-width: 980px) and (max-width: 1300px) and (max-height: 750px) {
  .modal-a__layout {
    grid-template-columns: clamp(13rem, 13.54vw, 26rem) auto;
  }
}
@media (max-width: 767px) {
  .modal-a__layout {
    grid-template-columns: auto;
    gap: 2.4rem;
  }
}
.modal-a__ttl {
  margin-bottom: 3.5rem;
  font-size: 2.7rem;
}
@media (max-width: 767px) {
  .modal-a__ttl {
    margin-bottom: 2.5rem;
    font-size: 1.9rem;
  }
}
.modal-a__close {
  position: absolute;
  width: 4.8rem;
  height: 4.8rem;
  top: -6.5rem;
  right: 0;
  z-index: 5;
  cursor: pointer;
}
@media (max-width: 767px) {
  .modal-a__close {
    width: 3rem;
    height: 3rem;
    top: -4rem;
  }
}
.modal-a__close:hover {
  opacity: 0.7;
}

.modal-a-profile {
  margin-top: 2.8rem;
}
@media (min-width: 980px) and (max-width: 1300px) and (max-height: 750px) {
  .modal-a-profile {
    margin-top: 1.6rem;
  }
}
.modal-a-profile__kana {
  line-height: 1.2;
  color: var(--color-primary);
  font-family: var(--font-futura);
  font-style: italic;
  font-size: var(--font-size-h6);
  font-weight: 600;
}
@media (min-width: 980px) and (max-width: 1300px) and (max-height: 750px) {
  .modal-a-profile__kana {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .modal-a-profile__kana {
    margin-bottom: 1rem;
  }
}
.modal-a-profile__name {
  line-height: 1;
  font-size: var(--font-size-h3);
  font-weight: bold;
}
@media (min-width: 980px) and (max-width: 1300px) and (max-height: 750px) {
  .modal-a-profile__name {
    font-size: var(--font-size-h5);
  }
}
@media (max-width: 767px) {
  .modal-a-profile__name {
    font-size: 2.2rem;
  }
}
.modal-a-profile__company {
  line-height: 1.9;
  font-size: clamp(1.2rem, 1.6vw, 2.2rem);
  font-weight: 600;
}
@media (min-width: 980px) and (max-width: 1300px) and (max-height: 750px) {
  .modal-a-profile__company {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .modal-a-profile__company {
    margin-top: 1rem;
    line-height: 1.2;
    font-size: 1.4rem;
  }
}
.modal-a-profile__job {
  margin-top: 3rem;
  font-size: var(--font-size-base);
  font-weight: bold;
}
@media (min-width: 980px) and (max-width: 1300px) and (max-height: 750px) {
  .modal-a-profile__job {
    margin-top: 1.8rem;
    font-size: 1.3rem;
  }
}
@media (max-width: 767px) {
  .modal-a-profile__job {
    margin-top: 2.2rem;
    font-size: 1.2rem;
  }
}
.modal-a-profile__txt {
  margin-top: 6.4rem;
  line-height: 2;
  font-size: var(--font-size-base);
}
@media (min-width: 980px) and (max-width: 1300px) and (max-height: 750px) {
  .modal-a-profile__txt {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .modal-a-profile__txt {
    margin-top: 2.8rem;
    font-size: 1.2rem;
  }
}

@media (max-width: 767px) {
  .modal-a-career.js-scroll-y {
    padding: 0;
    height: auto;
  }
}
.modal-a-career__txt {
  margin-top: clamp(2.4rem, 2.5vw, 4.8rem);
  line-height: 1.8;
  font-size: var(--font-size-base);
}
@media (max-width: 767px) {
  .modal-a-career__txt {
    margin-top: 2.4rem;
    font-size: 1.2rem;
  }
}

.modal-a-wrap {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10000;
}

.modal-a-layer {
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.js-modal {
  opacity: 0;
  pointer-events: none;
  transition: 0.5s;
}

.js-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.content-top {
  position: relative;
  overflow-x: hidden;
}
.content-top #js-canvas-player01 {
  position: absolute;
  width: clamp(51.35rem, 54.49vw, 102.7rem);
  aspect-ratio: 1027/1027;
  top: -8% !important;
  right: -20%;
  transform: translateX(-50%);
  z-index: -1;
}
@media (max-width: 1023px) {
  .content-top #js-canvas-player01 {
    top: -4% !important;
  }
}
@media (max-width: 767px) {
  .content-top #js-canvas-player01 {
    width: 26.2rem;
    top: -3% !important;
    right: -25% !important;
  }
}

.news {
  padding: 8rem 0 clamp(10rem, 10.42vw, 20rem);
}
@media (max-width: 767px) {
  .news {
    scroll-margin-top: 3rem;
    padding: 4.8rem 0;
  }
}
.news__wrap {
  display: flex;
  gap: 6.4rem;
}
@media (max-width: 767px) {
  .news__wrap {
    flex-direction: column;
    gap: 2rem;
  }
}
.news__content {
  width: 100%;
}
.news__btn {
  margin-top: 3.2rem;
}
@media (max-width: 767px) {
  .news__btn {
    margin-top: 2rem;
  }
}

.philosophy {
  scroll-margin-top: 6rem;
}
@media (max-width: 767px) {
  .philosophy {
    scroll-margin-top: 3rem;
  }
}
@media (max-width: 767px) {
  .philosophy__ttl {
    font-size: 4rem !important;
  }
}

.philosophy-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 85rem;
  margin: 0 auto;
  padding: 8.8rem;
  background-color: var(--color-base-white);
  aspect-ratio: 850/850;
  overflow: hidden;
}
@media (min-width: 980px) and (max-width: 1300px) and (max-height: 750px) {
  .philosophy-content {
    max-width: 65rem;
    padding: 5.5rem;
  }
}
@media (max-width: 900px) {
  .philosophy-content {
    width: 75%;
  }
}
@media (max-width: 767px) {
  .philosophy-content {
    padding: 3.6rem;
    width: 100% !important;
  }
}
.philosophy-content::before {
  position: absolute;
  width: 96%;
  height: 96%;
  border: 4px solid var(--color-primary);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  content: "";
}
@media (max-width: 767px) {
  .philosophy-content::before {
    width: 92%;
    height: 92%;
    border: 3px solid var(--color-primary);
  }
}
.philosophy-content__txt {
  margin-top: 6rem;
  line-height: 2;
  color: var(--color-primary);
  font-size: clamp(1rem, 1.83vw, 2.2rem);
  font-weight: bold;
}
@media (min-width: 980px) and (max-width: 1300px) and (max-height: 750px) {
  .philosophy-content__txt {
    margin-top: 4rem;
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .philosophy-content__txt {
    margin-top: 2rem;
    font-size: var(--font-size-xxs);
  }
}

.works {
  scroll-margin-top: -12rem;
  padding: clamp(10rem, 10.42vw, 20rem) 0;
}
@media (max-width: 1023px) {
  .works {
    padding: clamp(10rem, 10.42vw, 20rem) 0 clamp(20rem, 20.83vw, 40rem);
  }
}
@media (max-width: 767px) {
  .works {
    scroll-margin-top: 3rem;
    padding: 4.8rem 0 18rem;
  }
}
.works__wrap {
  margin-top: 8rem;
}
@media (min-width: 980px) and (max-width: 1300px) and (max-height: 750px) {
  .works__wrap {
    margin-top: 6rem;
  }
}
@media (max-width: 767px) {
  .works__wrap {
    margin-top: 3.2rem;
  }
}

.works-loop {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.works-loop.--second {
  margin-top: 0.8rem;
}
@media (max-width: 767px) {
  .works-loop.--second {
    margin-top: 0.4rem;
  }
}
.works-loop-right, .works-loop-left {
  display: flex;
  gap: 0.8rem;
  width: max-content;
}
@media (max-width: 767px) {
  .works-loop-right, .works-loop-left {
    gap: 0.4rem;
  }
}
.works-loop-right img, .works-loop-left img {
  width: clamp(22.5rem, 23.4375vw, 45rem);
  height: auto;
  flex-shrink: 0;
}
@media (min-width: 980px) and (max-width: 1300px) and (max-height: 750px) {
  .works-loop-right img, .works-loop-left img {
    width: clamp(22.5rem, 23.44vw, 45rem);
  }
}
@media (max-width: 1023px) {
  .works-loop-right img, .works-loop-left img {
    width: clamp(30rem, 31.25vw, 60rem);
  }
}
@media (max-width: 767px) {
  .works-loop-right img, .works-loop-left img {
    width: 20rem;
    height: auto;
  }
}
.works-loop li {
  position: relative;
  aspect-ratio: 450/253;
  overflow: hidden;
}
.works-loop__mask {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1023px) {
  .works-loop__mask {
    padding-left: 0.5rem;
    height: 40%;
    opacity: 1;
    top: auto;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
  }
}
@media (max-width: 767px) {
  .works-loop__mask {
    height: 50%;
  }
}
.works-loop__mask p {
  line-height: 1.2;
  color: var(--color-base-white);
  font-size: clamp(1rem, 1.04vw, 2rem);
  font-weight: bold;
}
@media (min-width: 980px) and (max-width: 1300px) and (max-height: 750px) {
  .works-loop__mask p {
    font-size: 1.4rem;
  }
}
@media (max-width: 1023px) {
  .works-loop__mask p {
    line-height: 1.2;
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  .works-loop__mask p {
    font-feature-settings: "palt" 1;
    font-size: 1rem;
  }
}
.works-loop__mask p:nth-of-type(1) {
  font-size: 1.6rem;
}
@media (min-width: 980px) and (max-width: 1300px) and (max-height: 750px) {
  .works-loop__mask p:nth-of-type(1) {
    font-size: 1.2rem;
  }
}
@media (max-width: 1023px) {
  .works-loop__mask p:nth-of-type(1) {
    font-size: var(--font-size-xxs);
  }
}
@media (max-width: 767px) {
  .works-loop__mask p:nth-of-type(1) {
    font-size: 0.8rem;
  }
}
.works-loop__wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.8rem;
  text-align: center;
  height: 100%;
  top: 0;
  transform: translateY(0);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (min-width: 980px) and (max-width: 1300px) and (max-height: 750px) {
  .works-loop__wrap {
    gap: 1rem;
  }
}
@media (max-width: 1023px) {
  .works-loop__wrap {
    gap: 1rem;
  }
}
@media (max-width: 1023px) {
  .works-loop__wrap {
    gap: 0.25rem;
    text-align: left;
  }
}
.works-loop li:hover .works-loop__mask {
  opacity: 1;
}
@media (max-width: 767px) {
  .works-loop li:hover .works-loop__mask {
    padding-top: 0;
  }
}

.partners {
  scroll-margin-top: -12rem;
  padding: clamp(10rem, 10.42vw, 20rem) 0;
}
@media (max-width: 767px) {
  .partners {
    scroll-margin-top: 3rem;
    padding: 4.8rem 0;
  }
}
.partners__content {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
@media (max-width: 767px) {
  .partners__content {
    gap: 1.6rem;
  }
}
.partners__kana {
  line-height: 1.2;
  color: var(--color-primary);
  font-family: var(--font-futura);
  font-style: italic;
  font-size: var(--font-size-h6_en);
  font-weight: 600;
}
@media (max-width: 1300px) {
  .partners__kana {
    font-size: clamp(1.2rem, 1.8vw, 2rem);
  }
}
@media (min-width: 980px) and (max-width: 1300px) and (max-height: 750px) {
  .partners__kana {
    font-size: 2rem;
  }
}
.partners__name {
  line-height: 1.2;
  font-size: var(--font-size-h5);
  font-weight: 700;
}
@media (max-width: 1300px) {
  .partners__name {
    font-size: clamp(1.2rem, 1.8vw, 2.2rem);
  }
}
@media (min-width: 980px) and (max-width: 1300px) and (max-height: 750px) {
  .partners__name {
    font-size: clamp(1.2rem, 1.6vw, 2.2rem);
  }
}
@media (max-width: 767px) {
  .partners__name {
    margin-top: 1rem;
  }
}
.partners__wrap {
  position: relative;
}
.partners__modal-img {
  cursor: pointer;
}
.partners__modal-btn {
  position: absolute;
  width: 4.8rem;
  height: 4.8rem;
  right: 1.6rem;
  bottom: 1.6rem;
  cursor: pointer;
}
@media (max-width: 767px) {
  .partners__modal-btn {
    width: 3.2rem;
    height: 3.2rem;
    right: 1rem;
    bottom: 1rem;
  }
}
.partners__modal-btn:hover {
  opacity: 0.7;
}

.partners-splide {
  margin-top: 8rem;
  padding-left: 3.2rem;
}
@media (max-width: 767px) {
  .partners-splide {
    margin-top: 3.2rem;
    padding-left: 0;
  }
}
.partners-splide .my-carousel-progress {
  margin: 4.8rem auto 0;
  background-color: var(--color-bg-gray);
  width: clamp(20rem, 20.83vw, 40rem);
  height: 8px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .partners-splide .my-carousel-progress {
    margin: 2.4rem auto 0;
    width: 16rem;
    height: 4px;
  }
}
.partners-splide .splide__pagination {
  display: none;
}
.partners-splide .my-carousel-progress-bar {
  height: 8px;
  background-color: var(--color-primary);
  transition: width 1000ms ease;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (max-width: 767px) {
  .partners-splide .my-carousel-progress-bar {
    height: 4px;
  }
}

.partners-coming-soon {
  margin-top: 8rem;
}
@media (max-width: 767px) {
  .partners-coming-soon {
    margin-top: 4rem;
  }
}
.partners-coming-soon__img {
  text-align: center;
}

.company {
  scroll-margin-top: 8rem;
  padding-bottom: clamp(10rem, 10.42vw, 20rem);
}
@media (max-width: 1023px) {
  .company {
    padding: clamp(10rem, 10.42vw, 20rem) 0 clamp(20rem, 20.83vw, 40rem);
  }
}
@media (max-width: 767px) {
  .company {
    scroll-margin-top: 3rem;
    padding: 0 0 18rem;
  }
}
.company__logo {
  padding-bottom: 1.6rem;
  width: clamp(24rem, 25vw, 48rem);
  height: auto;
}
@media (max-width: 767px) {
  .company__logo {
    padding-bottom: 0.4rem;
    width: 21.3rem;
  }
}
.company__info {
  display: flex;
  margin-top: 3rem;
  font-size: clamp(1.4rem, 1.758vw, 1.8rem);
}
@media (max-width: 767px) {
  .company__info {
    margin-top: 2rem;
    font-size: 1.2rem;
  }
}
.company__info dt {
  width: 22%;
  font-weight: bold;
}
@media (max-width: 767px) {
  .company__info dt {
    width: 28%;
  }
}
.company__info dd {
  width: 78%;
}
@media (max-width: 767px) {
  .company__info dd {
    width: 72%;
  }
}
.company__external {
  position: relative;
  display: inline-flex;
  align-items: center;
  top: 0.8rem;
}
@media (max-width: 767px) {
  .company__external {
    line-height: 1;
    font-size: 1.2rem;
  }
}
.company__external::after {
  display: inline-block;
  margin-left: 1rem;
  vertical-align: text-bottom;
  width: 1.6rem;
  height: 1.8rem;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyMSAyMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBjbGlwLXBhdGg9InVybCgjY2xpcDBfMTU4MV8yODgpIj48cGF0aCBkPSJNMSA3Ljk0ODI0VjE5Ljk0ODJIMTMiIHN0cm9rZT0iI0U1MDAxMiIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiLz48cmVjdCB4PSI0IiB5PSIwLjk0ODI0MiIgd2lkdGg9IjE2IiBoZWlnaHQ9IjE2IiBzdHJva2U9IiNFNTAwMTIiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPjwvZz48ZGVmcz48Y2xpcFBhdGggaWQ9ImNsaXAwXzE1ODFfMjg4Ij48cmVjdCB3aWR0aD0iMjEiIGhlaWdodD0iMjIiIGZpbGw9IndoaXRlIi8+PC9jbGlwUGF0aD48L2RlZnM+PC9zdmc+") no-repeat;
  background-size: contain;
  content: "";
}
@media (max-width: 767px) {
  .company__external::after {
    width: 1.5rem;
    height: 1.7rem;
  }
}
.company__external::before {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
  bottom: -0.5rem;
  left: 0;
  transform: scaleX(1);
  transform-origin: left;
  content: "";
}
@media (max-width: 767px) {
  .company__external::before {
    bottom: -0.25rem;
  }
}
.company__external:hover::before, .company__external:active::before {
  animation: line-slide 0.6s ease forwards;
}

.company-content {
  margin-top: 8rem;
  padding: 10rem;
  background-color: var(--color-base-white);
  border: 4px solid var(--color-primary);
}
@media (min-width: 980px) and (max-width: 1300px) and (max-height: 750px) {
  .company-content {
    padding: 5rem;
  }
}
@media (max-width: 767px) {
  .company-content {
    margin-top: 3.2rem;
    padding: 3.2rem 2.8rem;
    border: 3px solid var(--color-primary);
  }
}

.profile {
  padding-top: 8rem;
}
@media (max-width: 767px) {
  .profile {
    padding-top: 4.8rem;
  }
}

.profile-content {
  margin-top: 6.4rem;
}
@media (max-width: 767px) {
  .profile-content {
    margin-top: 2.4rem;
  }
}
.profile-content__profile {
  display: grid;
  grid-template-columns: clamp(16.4rem, 27.33vw, 32.8rem) auto;
  gap: 6.4rem;
}
@media (max-width: 767px) {
  .profile-content__profile {
    grid-template-columns: 14rem auto;
    gap: 2rem;
  }
}
.profile-content__ceo-img img {
  border: 1px solid var(--color-primary);
}
@media (max-width: 767px) {
  .profile-content__ceo-img img {
    border: 1.5px solid var(--color-primary);
  }
}
.profile-content__kana {
  margin-top: 4rem;
  line-height: 1.9;
  color: var(--color-primary);
  font-family: var(--font-futura);
  font-style: italic;
  font-size: var(--font-size-h6);
  font-weight: 600;
}
@media (max-width: 767px) {
  .profile-content__kana {
    margin-top: 2rem;
  }
}
.profile-content__name {
  line-height: 1;
  font-size: var(--font-size-h3);
  font-weight: bold;
}
@media (max-width: 767px) {
  .profile-content__name {
    font-size: var(--font-size-h5);
  }
}
.profile-content__company {
  line-height: 1.9;
  font-family: var(--font-futura);
  font-style: italic;
  font-size: 2.2rem;
  font-weight: 600;
}
@media (max-width: 767px) {
  .profile-content__company {
    margin-top: 1rem;
    line-height: 1.2;
    font-size: 1rem;
  }
}
.profile-content__job {
  font-size: var(--font-size-h6);
  font-weight: bold;
}
.profile-content__txt {
  margin-top: 4rem;
  line-height: 2;
  font-size: var(--font-size-base);
}
@media (max-width: 767px) {
  .profile-content__txt {
    margin-top: 2rem;
    font-size: 1.2rem;
  }
}

.group {
  padding: clamp(10rem, 10.42vw, 20rem) 0;
  overflow-x: hidden;
}
@media (max-width: 767px) {
  .group {
    padding: 4.8rem 0;
  }
}

.group-content {
  margin-top: 12.8rem;
}
@media (max-width: 767px) {
  .group-content {
    margin-top: 3.6rem;
  }
}
.group-content__subttl {
  margin-top: 6rem;
  font-size: var(--font-size-h5);
  font-weight: bold;
}
@media (max-width: 767px) {
  .group-content__subttl {
    margin-top: 3.2rem;
  }
}
.group-content__txt {
  margin-top: 4.8rem;
  line-height: 2;
  font-size: var(--font-size-base);
}
@media (max-width: 767px) {
  .group-content__txt {
    margin-top: 2.4rem;
    font-size: 1.2rem;
  }
}
.group-content__wrap {
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .group-content__wrap {
    display: flex;
    flex-direction: column-reverse;
    margin-top: 3.2rem;
  }
}
.group-content__bg-img {
  position: absolute;
  top: 50%;
  right: -30%;
  transform: translateY(-50%);
  z-index: -1;
}
@media (max-width: 1700px) {
  .group-content__bg-img {
    right: -15%;
  }
}
@media (min-width: 980px) and (max-width: 1300px) and (max-height: 750px) {
  .group-content__bg-img {
    right: -20%;
  }
}
@media (max-width: 767px) {
  .group-content__bg-img {
    position: static;
    margin: 0 auto;
    transform: none;
  }
}
.group-content__bg-img video {
  width: clamp(37.5rem, 39.06vw, 75rem);
  height: clamp(34.3rem, 36vw, 686rem);
  aspect-ratio: 750/686;
  object-fit: cover;
  object-position: 50% 50%;
  filter: drop-shadow(0px 0px #000);
}
@media (max-width: 767px) {
  .group-content__bg-img video {
    aspect-ratio: 299/289;
    width: 33rem;
    height: auto;
  }
}
.group-content__bg-img.--originality {
  top: 30%;
  right: -20%;
}
@media (max-width: 1700px) {
  .group-content__bg-img.--originality {
    right: -5%;
  }
}
@media (min-width: 980px) and (max-width: 1300px) and (max-height: 750px) {
  .group-content__bg-img.--originality {
    top: 50%;
    right: -10%;
  }
}
@media (max-width: 767px) {
  .group-content__bg-img.--originality {
    margin: 0 auto;
    width: 20.1rem;
    height: auto;
  }
}
.group-content__bg-img.--originality video {
  width: clamp(25rem, 26.04vw, 50rem);
  height: clamp(24.05rem, 25.05vw, 48.1rem);
  border-radius: 0;
}
@media (max-width: 767px) {
  .group-content__bg-img.--originality video {
    width: 20.1rem;
    height: auto;
  }
}
.group-content__bg-img.--originality .group-content__video span {
  display: none;
}
.group-content__video {
  position: relative;
}
.group-content__video span {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  background: radial-gradient(circle, rgba(223, 230, 230, 0) 50%, rgb(246, 246, 246) 67.5%);
  top: 0;
  left: 0;
  content: "";
  z-index: 1;
}

.polygon-group {
  margin-top: 12.8rem;
  padding: 0 clamp(5rem, 5.21vw, 10rem);
}
@media (min-width: 980px) and (max-width: 1300px) and (max-height: 750px) {
  .polygon-group {
    padding: 0 clamp(10rem, 10.42vw, 20rem);
  }
}
@media (max-width: 767px) {
  .polygon-group {
    margin-top: 3.6rem;
    padding: 0 2.75rem;
  }
}
.polygon-group__list {
  display: grid;
  grid-template-columns: repeat(6, auto);
  align-items: center;
  text-align: center;
  gap: clamp(1.8rem, 1.67vw, 3.2rem);
}
@media (max-width: 767px) {
  .polygon-group__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}
.polygon-group__list li a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.6rem;
  width: clamp(10rem, 13.54vw, 26rem);
  background-color: var(--color-base-white);
  aspect-ratio: 260/260;
}
@media (min-width: 980px) and (max-width: 1300px) and (max-height: 750px) {
  .polygon-group__list li a {
    width: clamp(10rem, 10.42vw, 20rem);
  }
}
@media (max-width: 767px) {
  .polygon-group__list li a {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .polygon-group__list li a img {
    width: auto;
    height: 80%;
  }
}
.polygon-group__list li a:hover {
  opacity: 0.7;
}
@media (min-width: 980px) and (max-width: 1300px) and (max-height: 750px) {
  .polygon-group__item.--kirameki img {
    height: 4.2em;
  }
}
@media (max-width: 1023px) {
  .polygon-group__item.--kirameki img {
    width: 5.5rem;
  }
}
@media (max-width: 767px) {
  .polygon-group__item.--kirameki img {
    width: 4.2rem;
    height: auto;
  }
}
@media (max-width: 767px) {
  .polygon-group__item.--gencraft img {
    width: 7.4rem;
    height: auto;
  }
}

.content-news .news {
  padding: 0;
}
.content-news .news .news-list {
  padding: 12.8rem 0 6.4rem;
}
@media (max-width: 767px) {
  .content-news .news .news-list {
    padding: 4rem 0 2.8rem;
  }
}
.content-news .pagination {
  padding-bottom: 12.8rem;
}
@media (max-width: 767px) {
  .content-news .pagination {
    padding-bottom: 4rem;
  }
}
.content-news .pagination__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
}
@media (max-width: 767px) {
  .content-news .pagination__list {
    gap: 1.2rem;
  }
}
.content-news .pagination__item a,
.content-news .pagination__item span {
  display: block;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-futura);
  font-style: italic;
}
@media (max-width: 767px) {
  .content-news .pagination__item a,
  .content-news .pagination__item span {
    font-size: 1.4rem;
  }
}
.content-news .pagination__item.is-disabled span {
  border-color: #999;
}
.content-news .pagination__item.is-disabled span::before {
  border-top: 2px solid #999 !important;
  border-right: 2px solid #999 !important;
}
.content-news .pagination__item.is-disabled span::after {
  border: 2px solid #999 !important;
}
.content-news .pagination__item.is-current span {
  color: var(--color-primary);
}
.content-news .pagination__item.pagination__item--arrow a,
.content-news .pagination__item.pagination__item--arrow span {
  position: relative;
}
.content-news .pagination__item.pagination__item--arrow a::before,
.content-news .pagination__item.pagination__item--arrow span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 1rem;
  height: 1rem;
  border-top: 2px solid var(--color-primary);
  border-right: 2px solid var(--color-primary);
}
@media (max-width: 767px) {
  .content-news .pagination__item.pagination__item--arrow a::before,
  .content-news .pagination__item.pagination__item--arrow span::before {
    width: 0.8rem;
    height: 0.8rem;
  }
}
.content-news .pagination__item.pagination__item--arrow a::after,
.content-news .pagination__item.pagination__item--arrow span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6.4rem;
  height: 6.4rem;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
}
@media (max-width: 767px) {
  .content-news .pagination__item.pagination__item--arrow a::after,
  .content-news .pagination__item.pagination__item--arrow span::after {
    width: 4.8rem;
    height: 4.8rem;
  }
}
.content-news .pagination__item.pagination__item--prev {
  margin-right: 3rem;
}
.content-news .pagination__item.pagination__item--prev a::before,
.content-news .pagination__item.pagination__item--prev span::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}
.content-news .pagination__item.pagination__item--next {
  margin-left: 3rem;
}
.content-news .pagination__item.pagination__item--next a::before,
.content-news .pagination__item.pagination__item--next span::before {
  transform: translate(-65%, -50%) rotate(45deg);
}
.content-news .pagination__item.omit {
  width: 4rem;
  height: 0.2rem;
  background-color: var(--color-primary);
}
.content-news .p-pagination {
  padding-bottom: 12.8rem;
}
@media (max-width: 767px) {
  .content-news .p-pagination {
    padding-bottom: 4rem;
  }
}
.content-news .p-pagination .wp-pagenavi {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}
@media (max-width: 767px) {
  .content-news .p-pagination .wp-pagenavi {
    gap: 0.3rem;
  }
}
.content-news .p-pagination .wp-pagenavi a,
.content-news .p-pagination .wp-pagenavi span {
  color: #e60012;
  font-weight: 600;
  text-decoration: none;
  display: block;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-futura);
  font-style: italic;
}
@media (max-width: 767px) {
  .content-news .p-pagination .wp-pagenavi a,
  .content-news .p-pagination .wp-pagenavi span {
    font-size: 1.4rem;
  }
}
.content-news .p-pagination .wp-pagenavi a.first,
.content-news .p-pagination .wp-pagenavi a.last,
.content-news .p-pagination .wp-pagenavi a.page,
.content-news .p-pagination .wp-pagenavi span.extend,
.content-news .p-pagination .wp-pagenavi span.current {
  border: none !important;
}
.content-news .p-pagination .wp-pagenavi a:hover {
  border-color: inherit !important;
  opacity: 0.7;
}
.content-news .p-pagination .wp-pagenavi .current {
  text-decoration: underline;
}
.content-news .p-pagination .wp-pagenavi .previouspostslink,
.content-news .p-pagination .wp-pagenavi .nextpostslink {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0; /* 元の « » を消す */
  width: 6.4rem;
  height: 6.4rem;
  position: relative;
}
@media (max-width: 767px) {
  .content-news .p-pagination .wp-pagenavi .previouspostslink,
  .content-news .p-pagination .wp-pagenavi .nextpostslink {
    width: 3.5rem;
    height: 3.5rem;
  }
}
.content-news .p-pagination .wp-pagenavi {
  /* 左 */
}
.content-news .p-pagination .wp-pagenavi .previouspostslink::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 1rem;
  height: 1rem;
  border-top: 2px solid var(--color-primary);
  border-right: 2px solid var(--color-primary);
  transform: translate(-35%, -50%) rotate(-135deg);
}
@media (max-width: 767px) {
  .content-news .p-pagination .wp-pagenavi .previouspostslink::before {
    width: 0.5rem;
    height: 0.5rem;
  }
}
.content-news .p-pagination .wp-pagenavi {
  /* 右 */
}
.content-news .p-pagination .wp-pagenavi .nextpostslink::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 1rem;
  height: 1rem;
  border-top: 2px solid var(--color-primary);
  border-right: 2px solid var(--color-primary);
  transform: translate(-65%, -50%) rotate(45deg);
}
@media (max-width: 767px) {
  .content-news .p-pagination .wp-pagenavi .nextpostslink::before {
    width: 0.5rem;
    height: 0.5rem;
  }
}
.content-news .p-pagination .wp-pagenavi .extend {
  color: var(--color-primary);
  font-weight: normal;
}
.content-news .p-pagination .wp-pagenavi .previouspostslink {
  order: 1;
}
.content-news .p-pagination .wp-pagenavi .first {
  order: 2;
}
.content-news .p-pagination .wp-pagenavi .page,
.content-news .p-pagination .wp-pagenavi .current,
.content-news .p-pagination .wp-pagenavi .extend {
  order: 3;
}
.content-news .p-pagination .wp-pagenavi .last {
  order: 4;
}
.content-news .p-pagination .wp-pagenavi .nextpostslink {
  order: 5;
}

.content-news-single .news-single__wrapper {
  padding-top: 12.8rem;
  margin-bottom: 10rem;
}
@media (max-width: 767px) {
  .content-news-single .news-single__wrapper {
    padding-top: 4rem;
    margin-bottom: 3.2rem;
  }
}
.content-news-single .news-single__wrapper div {
  margin-bottom: 4.8rem;
}
@media (max-width: 767px) {
  .content-news-single .news-single__wrapper div {
    margin-bottom: 2.4rem;
  }
}
.content-news-single .news-single__wrapper img {
  display: block;
  margin-bottom: 4.8rem;
}
@media (max-width: 767px) {
  .content-news-single .news-single__wrapper img {
    margin-bottom: 2.4rem;
  }
}
.content-news-single .news-single__wrapper h3, .content-news-single .news-single__wrapper h4, .content-news-single .news-single__wrapper h5, .content-news-single .news-single__wrapper h6 {
  font-size: 3.2rem;
  margin-bottom: 3.2rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .content-news-single .news-single__wrapper h3, .content-news-single .news-single__wrapper h4, .content-news-single .news-single__wrapper h5, .content-news-single .news-single__wrapper h6 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
}
.content-news-single .news-single__wrapper p {
  font-size: 1.8rem;
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .content-news-single .news-single__wrapper p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
}
.content-news-single .news-single__wrapper p strong {
  font-weight: bold;
}
.content-news-single .news-single__wrapper p em {
  font-style: italic;
}
.content-news-single .news-single__wrapper p s {
  text-decoration: line-through;
}
.content-news-single .news-single__btn {
  display: flex;
  justify-content: space-between;
  padding-bottom: 12.8rem;
}
@media (max-width: 767px) {
  .content-news-single .news-single__btn {
    padding-bottom: 4.8rem;
  }
}

/* コンポーネントやページのスタイルを追加する場合は、以下のように@useを追加してください。
 * 例: @use './components/button';
 *     @use './pages/home';
 *
 * 注意: 各ファイルはsrc/styles/components/やsrc/styles/pages/に配置してください。
 */

/*# sourceMappingURL=style.css.map */
