@charset "UTF-8";
/* //////////////////////////////////////


デバイス別の設定


////////////////////////////////////// */
/* //////////////////////////////////////


WEBフォント


////////////////////////////////////// */
@import url("https://fonts.googleapis.com/css?family=Noto+Serif+JP|Noto+Sans+JP:100,200,300,400,500,600,700,800,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&family=Shippori+Mincho:wght@400;500;600;700;800&display=swap");
/* //////////////////////////////////////


フォント・カラー設定


////////////////////////////////////// */
/*------------------------------------
フォントファミリー
-------------------------------------*/
/*------------------------------------
カラー
-------------------------------------*/
/*------------------------------------
背景カラー
-------------------------------------*/
/* //////////////////////////////////////


ブレイクポイント・コンテナ幅


////////////////////////////////////// */
/*------------------------------------
ブレイクポイント
-------------------------------------*/
/*------------------------------------
コンテナ幅
-------------------------------------*/
/* //////////////////////////////////////


スマホコーディングの関数


////////////////////////////////////// */
/*------------------------------------
フォントサイズ用 (px -> rem)
-------------------------------------*/
/*------------------------------------
レイアウト・余白用 (px -> vw + リミッター)
-------------------------------------*/
/* //////////////////////////////////////


その他の設定


////////////////////////////////////// */
p {
  margin-bottom: 1.4em;
}

p:last-child {
  margin-bottom: 0;
}

.pc_br {
  display: block;
}
@media (max-width: 1024px) {
  .pc_br {
    display: none;
  }
}

.smptab_br {
  display: none;
}
@media (max-width: 1024px) {
  .smptab_br {
    display: block;
  }
}

img {
  vertical-align: top;
}

body * {
  box-sizing: border-box;
}

/* //////////////////////////////////////


コンテナ系


////////////////////////////////////// */
/*======================
body
======================*/
/*======================
section
======================*/
/*======================
yoko
======================*/
/*======================
con
======================*/
/* //////////////////////////////////////


テキスト系


////////////////////////////////////// */
/*================================
txt_h1 セクションごとの見出し
================================*/
/*================================
txt_h2 パーツ内で1番大きい文字
================================*/
/*================================
txt_h3 パーツ内で2番目に大きい文字
================================*/
/*================================
txt_h4 本文より1段階大きい見出し文字
================================*/
/*================================
txt_main 本文(=Pタグにデフォ指定)
================================*/
/*================================
txt_s1 本文より1段階小さい文字
================================*/
/*================================
txt_s2 画像下の説明文
================================*/
/*================================
txt_s2cap セクション見出し上のキャプション
================================*/
/*================================
txt_s3 ※の注意書き、最も小さい文字
================================*/
/* //////////////////////////////////////


bodyの設定など


////////////////////////////////////// */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 30px;
  letter-spacing: 0;
  text-align: justify;
  background: rgba(0, 0, 0, 0.9254901961);
}
@media (max-width: 1024px) {
  body {
    font-size: min(4vw, 20px);
    line-height: min(8vw, 40px);
  }
}
body.no-scroll {
  overflow: hidden;
}

svg #down-arrow {
  stroke: #000;
  stroke-width: 2;
}
svg #side-arrow {
  stroke: #000;
  stroke-width: 2;
}

/* //////////////////////////////////////


#console


////////////////////////////////////// */
#console {
  display: flex;
  width: objct-fit;
  height: 40px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 0 8px 0 0;
  font-size: 13px;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 99999;
  color: #FFF;
  /* ===================================
  .device-check
  =================================== */
  /* ===================================
  .win-check
  =================================== */
}
#console .device-check {
  display: flex;
  color: #fff;
}
#console .device-check div {
  display: table-cell;
  text-align: center;
  border-right: 1px solid #aaa;
  line-height: 40px;
  padding: 0 10px;
}
#console .device-check div span {
  padding-left: 10px;
  margin: 0;
}
@media (max-width: 767px) {
  #console .device-check div span {
    display: none;
  }
}
#console .device-check .pc {
  color: #ff0;
  font-weight: 700;
}
@media (max-width: 1024px) {
  #console .device-check .pc {
    color: #fff;
    font-weight: 400;
  }
}
@media (max-width: 1024px) {
  #console .device-check .tab {
    color: #ff0;
    font-weight: 700;
  }
}
@media (max-width: 767px) {
  #console .device-check .tab {
    color: #fff;
    font-weight: 400;
  }
}
@media (max-width: 767px) {
  #console .device-check .smp {
    color: #ff0;
    font-weight: 700;
  }
}
#console .win-check {
  display: flex;
  line-height: 40px;
}
#console .win-check .now-width {
  padding-left: 20px;
  padding-right: 10px;
  font-weight: 600;
  color: #00c3ff;
}
#console .win-check .now-width #ttt {
  margin-left: 6px;
}
#console .win-check .now-height {
  padding-left: 0;
  padding-right: 20px;
  font-weight: 600;
}
#console .win-check .now-height #hhh {
  margin-left: 6px;
}
#console .win-check .tani {
  padding-right: 20px;
}

/* /////////////////////////////////////////////

基本系

///////////////////////////////////////////// */
/* -----------------------------
フェードイン（動かない）
----------------------------- */
.eff_fade-in {
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
}
.eff_fade-in.active {
  opacity: 1;
  transform: none;
}

/* -----------------------------
下→上にフェードイン
----------------------------- */
.eff_fade-in-up {
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
  transform: translateY(40px);
}
.eff_fade-in-up.active {
  opacity: 1;
  transform: none;
}

/* -----------------------------
上→下にフェードイン
----------------------------- */
.eff_fade-in-down {
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
  transform: translateY(-40px);
}
.eff_fade-in-down.active {
  opacity: 1;
  transform: none;
}

/* -----------------------------
左→右にフェードイン
----------------------------- */
.eff_fade-in-left {
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
  transform: translateX(-40px);
}
.eff_fade-in-left.active {
  opacity: 1;
  transform: none;
}

/* -----------------------------
右→左にフェードイン
----------------------------- */
.eff_fade-in-right {
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
  transform: translateX(40px);
}
.eff_fade-in-right.active {
  opacity: 1;
  transform: none;
}

/* /////////////////////////////////////////////

背景系

///////////////////////////////////////////// */
/* -----------------------------
eff_bg-line
----------------------------- */
.eff_bg-line {
  position: relative;
  overflow: hidden;
}
.eff_bg-line::before {
  content: "";
  position: absolute;
  top: -150px;
  right: 10%;
  width: 350px;
  height: 0;
  background: rgba(255, 255, 255, 0.05);
  transform: rotate(40deg);
  transform-origin: top;
  z-index: 0;
}
.eff_bg-line.active::before {
  animation: bg-line 1s ease forwards;
}
@keyframes bg-line {
  from {
    height: 0%;
  }
  to {
    height: 200%;
  }
}

/* /////////////////////////////////////////////

画像系

///////////////////////////////////////////// */
/* -----------------------------
eff_mosaic-img
----------------------------- */
.eff_mosaic-img {
  position: relative;
}

img.eff_mosaic-img {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.eff_mosaic-img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: block;
}

.img-mosaicCanvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
  width: auto !important;
  height: auto !important;
}

/* -----------------------------
eff_mosaic-bg
----------------------------- */
.eff_mosaic-bg {
  position: relative;
}

.bg-mosaicCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 2;
  pointer-events: none;
}

/* -----------------------------
eff_pixel-scale
----------------------------- */
.eff_pixel-scale {
  opacity: 0;
  transform: scale(0.2);
  filter: blur(6px);
  animation: none;
  transform-origin: center center;
}
.eff_pixel-scale.active {
  animation-name: pixelScaleIn;
  animation-duration: 0.5s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}
@keyframes pixelScaleIn {
  0% {
    transform: scale(0.2);
    filter: blur(6px);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
    filter: blur(4px);
    opacity: 0.7;
  }
  80% {
    transform: scale(1.02);
    filter: blur(2px);
    opacity: 0.9;
  }
  100% {
    transform: scale(1);
    filter: blur(0);
    opacity: 1;
  }
}

/* -------------------------------

mosaicエフェクト専用の設定

------------------------------- */
#loading.mosaic img.loading-bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
#loading.mosaic canvas {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

/* -------------------------------

waveエフェクト専用の設定

------------------------------- */
#loading.wave img.loading-bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 1;
  visibility: visible;
}
#loading.wave canvas {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

/* /////////////////////////////////////////////


body


///////////////////////////////////////////// */
body {
  width: 100%;
  /*
  &.no-scroll {
      overflow: hidden; // スクロールバーを消す or Android対策
      touch-action: none; // スマホでの慣性スクロール対策
  }
  */
}
body.loading-true {
  overflow: hidden;
  position: fixed;
  height: 100svh;
}
body.loading-false #loading {
  display: none;
}
body.no-scroll {
  overflow: hidden;
}

/* /////////////////////////////////////////////


window追従


///////////////////////////////////////////// */
#win_header {
  display: none;
  position: fixed;
  width: 100%;
  height: 86px;
  background: #000;
  color: #fff;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  /* --------------------------------

  #win_logo

  --------------------------------- */
  /* --------------------------------

  #win_tagline

  --------------------------------- */
  /* --------------------------------

  #win_nav

  --------------------------------- */
  /* --------------------------------

  #win_contact

  -------------------------------- */
}
@media (max-width: 1024px) {
  #win_header {
    height: 70px;
    max-width: 500px;
    width: 100%;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}
#win_header.fix {
  display: block;
  opacity: 0;
  animation: win_logo 0.3s ease forwards;
}
@keyframes win_logo {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#win_header #win_logo {
  position: absolute;
  top: 20px;
  left: 46px;
  width: 230px;
  aspect-ratio: 487/95;
  background: url(../_img/win_logo_pc.png);
  background-size: contain;
}
@media (max-width: 1024px) {
  #win_header #win_logo {
    top: 20px;
    left: 20px;
    width: 160px;
  }
}
#win_header #win_tagline {
  font-size: 15px;
  line-height: 84px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: 0.3em;
  margin-left: 310px;
}
@media (max-width: 1250px) {
  #win_header #win_tagline {
    display: none;
  }
}
#win_header #win_nav {
  position: absolute;
  top: 0;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  font-size: 14px;
  line-height: 27px;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  letter-spacing: 0.2em;
  display: flex;
}
#win_header #win_nav .wrap {
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 40px;
  padding-top: 14px;
}
@media (max-width: 1400px) {
  #win_header #win_nav .wrap {
    font-size: 12px;
    margin-right: 20px;
  }
}
#win_header #win_nav .wrap .item {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  #win_header #win_nav .wrap .item {
    display: none;
  }
}
#win_header #win_nav .wrap .item a {
  text-decoration: none;
  color: #fff;
}
#win_header #win_nav .contact {
  width: 148px;
  height: 100%;
  background: #FF0000;
  text-align: center;
  font-size: 15px;
  line-height: 24px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  padding-top: 18px;
}
@media (max-width: 1024px) {
  #win_header #win_nav .contact {
    width: 100px;
    padding-top: 12px;
    line-height: 22px;
    font-size: 14px;
    letter-spacing: 0;
    margin-right: 66px;
  }
}
#win_header #win_nav .contact a {
  text-decoration: none;
  color: #fff;
}
#win_header #win_contact {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  opacity: 0;
}
#win_header #win_contact.fix {
  display: block;
  display: none;
  opacity: 0;
  animation: win_contact 0.3s ease forwards;
}
@keyframes win_contact {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* --------------------------------

#win_hm

--------------------------------- */
#win_hm {
  display: none;
  position: fixed;
  z-index: 1001;
  top: 25px;
  right: 30px;
  cursor: pointer;
  will-change: transform;
  transform: translateZ(0);
}
@media (max-width: 1024px) {
  #win_hm {
    display: none;
    right: 16px;
  }
}
@media (max-width: 1024px) and (min-width: 501px) {
  #win_hm {
    right: calc(50vw - 250px + 16px);
  }
}
#win_hm.fix {
  display: none;
}
@media (max-width: 1024px) {
  #win_hm.fix {
    display: block;
    opacity: 0;
    animation: win_hm 0.3s ease forwards;
  }
}
@keyframes win_hm {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body.no-scroll #win_hm {
  display: block;
  opacity: 1;
}

#win_hm .lines {
  position: relative;
  display: block;
  width: 30px;
  height: 20px;
  transition: transform 0.3s;
}
#win_hm .lines.change-color .line {
  background-color: #fff !important;
}
.no-scroll #win_hm .lines {
  transform: rotate(360deg);
}

#win_hm .line {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 0;
  padding-top: 1px;
  background-color: #fff;
  transition: 0.3s;
}
#win_hm .line.top {
  top: 0;
}
.no-scroll #win_hm .line.top {
  top: 50%;
  background-color: #fff;
  transform: translateY(-50%) rotate(45deg);
}

#win_hm .line.center {
  top: 50%;
  transform: translateY(-50%);
}
.no-scroll #win_hm .line.center {
  display: none;
}

#win_hm .line.bottom {
  bottom: 0;
}
.no-scroll #win_hm .line.bottom {
  bottom: 50%;
  background-color: #fff;
  transform: translateY(50%) rotate(-45deg);
}

/* --------------------------------

#win_menu

--------------------------------- */
#win_menu {
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  display: block;
  background: rgb(0, 0, 0);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  /* このクラスをjsで付与・削除する */
}
#win_menu.open {
  opacity: 1;
  pointer-events: inherit;
}
#win_menu .menu {
  height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
#win_menu .menu .wrapper {
  width: 400px;
  height: auto;
  overflow-y: auto;
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-align: left;
  padding: 20px;
}
@media (max-width: 1024px) {
  #win_menu .menu .wrapper {
    width: calc(100% - 40px);
  }
}
#win_menu .menu .wrapper .item {
  display: block;
  width: 100%;
  padding: 10px 0 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
#win_menu .menu .wrapper .item:last-child {
  margin-bottom: 0;
}
#win_menu .menu .wrapper .link {
  color: #fff;
  text-decoration: none;
}
#win_menu .menu .wrapper .link:hover {
  text-decoration: underline;
}

/* --------------------------------

#win_sub-txt

-------------------------------- */
#win_sub-txt {
  display: none;
  position: fixed;
  top: 50%;
  right: -100px;
  z-index: 100;
  opacity: 0;
  transform: translateY(-50%);
  transform: rotate(-90deg);
  font-size: 11px;
  letter-spacing: 0.4em;
  font-family: "Noto Serif JP", serif;
}
#win_sub-txt.change-color {
  color: #fff;
}
#win_sub-txt.fix {
  display: block;
  opacity: 0;
  animation: subtxt 0.3s ease forwards;
}
@keyframes subtxt {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media (max-width: 1024px) {
  #win_sub-txt.fix {
    display: none;
  }
}

/* --------------------------------

#win_gotop

-------------------------------- */
#win_gotop {
  display: none;
  position: fixed;
  width: 125px;
  height: 72px;
  background: url(../_img/win_go-topB1.png) no-repeat;
  right: 40px;
  bottom: 8px;
  background-size: contain;
  z-index: 100;
  opacity: 0;
}
#win_gotop.change-img {
  background: url(../_img/win_go-topW1.png) no-repeat;
  background-size: contain;
}
@media (max-width: 1024px) {
  #win_gotop {
    background: url(../_img/win_go-topW1.png) no-repeat;
    background-size: contain;
  }
}
#win_gotop.fix {
  display: block;
  opacity: 0;
  animation: win_gotop 0.3s ease forwards;
}
@keyframes win_gotop {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media (max-width: 767px) {
  #win_gotop.fix {
    display: none;
  }
}

/* --------------------------------

#win_sns

-------------------------------- */
#win_sns {
  display: none;
  position: fixed;
  right: 20px;
  top: 360px;
  z-index: 100;
  opacity: 0;
}
@media (max-width: 1024px) {
  #win_sns {
    display: none;
  }
}
#win_sns.fix {
  display: block;
  display: none;
  opacity: 0;
  animation: win_sns 0.3s ease forwards;
}
@keyframes win_sns {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* /////////////////////////////////////////////


#loading


///////////////////////////////////////////// */
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100svh;
  z-index: 9999;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* /////////////////////////////////////////////


.site-wrapper


///////////////////////////////////////////// */
.site-wrapper {
  width: 100%;
  background-color: #fff; /* コンテンツのベース色（白） */
  position: relative; /* 念のため */
}
@media (max-width: 1024px) {
  .site-wrapper {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

/*/////////////////////////////////////////


#fv


/////////////////////////////////////////*/
#fv {
  height: 100svh;
  position: relative;
  overflow-x: hidden;
  font-family: "Noto Serif JP", serif;
  z-index: 0;
}
#fv video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
#fv #bgVideoPC {
  display: block;
}
#fv #bgVideoSP {
  display: none;
}
@media (max-width: 1024px) {
  #fv #bgVideoPC {
    display: none;
  }
  #fv #bgVideoSP {
    display: block;
  }
}
#fv #fallbackPC,
#fv #fallbackSP {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  visibility: hidden;
  opacity: 1;
}
#fv .con {
  width: 100%;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.5);
  /* --------------------------------

  .svg-txt

  --------------------------------- */
  /* --------------------------------

  .logo

  --------------------------------- */
  /* --------------------------------

  .hm

  --------------------------------- */
  /* --------------------------------

  .sub-txt

  --------------------------------- */
  /* --------------------------------

  .scroll

  --------------------------------- */
}
#fv .con .svg-txt {
  width: 950px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0);
}
@media (max-width: 1024px) {
  #fv .con .svg-txt {
    width: min(61.3333333333vw, 306.6666666667px);
    aspect-ratio: 213/401;
  }
}
#fv .con .svg-txt #svg_pc {
  display: none;
}
#fv .con .svg-txt #svg_smp {
  display: none;
}
#fv .con .svg-txt .fill {
  animation: motion 0.6s linear forwards;
}
@keyframes motion {
  0% {
    fill: transparent;
  }
  100% {
    fill: #fff;
  }
}
#fv .con .svg-txt .boshu {
  position: absolute;
  bottom: -50px;
  right: -20px;
  width: 177px;
  aspect-ratio: 354/353;
  text-align: center;
  font-size: 26px;
  line-height: 36px;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  padding-top: 30px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  #fv .con .svg-txt .boshu {
    width: min(29.3333333333vw, 146.6666666667px);
    aspect-ratio: 1;
    bottom: min(-2.6666666667vw, -13.3333333333px);
    left: min(-8vw, -40px);
    font-size: min(4.8vw, 24px);
    line-height: min(5.8666666667vw, 29.3333333333px);
    padding-top: min(5.3333333333vw, 26.6666666667px);
  }
}
#fv .con .svg-txt .boshu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../_img/fv_boshu_pc.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  animation: boshu-ani 16s linear infinite;
  z-index: -1;
}
@media (max-width: 1024px) {
  #fv .con .svg-txt .boshu::before {
    background: url(../_img/fv_boshu_smp.png);
    background-size: contain;
  }
}
@keyframes boshu-ani {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#fv .con .logo {
  position: absolute;
  top: 37px;
  left: 47px;
  width: 95px;
  aspect-ratio: 95/258;
  background: url(../_img/fv_logo_pc.svg);
  background-size: contain;
}
@media (max-width: 1024px) {
  #fv .con .logo {
    background: url(../_img/fv_logo_smp.svg);
    width: min(42.1333333333vw, 210.6666666667px);
    aspect-ratio: 158/30.51;
    top: min(5.3333333333vw, 26.6666666667px);
    left: 50%;
    transform: translateX(-50%);
  }
}
#fv .con .hm {
  display: none;
  z-index: 1001;
  position: absolute;
  top: 25px;
  right: 30px;
  cursor: pointer;
}
#fv .con .hm .lines {
  position: relative;
  display: block;
  width: 30px;
  height: 20px;
  transition: transform 0.3s;
}
.no-scroll #fv .con .hm .lines {
  transform: rotate(360deg);
}

#fv .con .hm .line {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 0;
  padding-top: 1px;
  background-color: #fff;
  transition: 0.3s;
}
#fv .con .hm .line.top {
  top: 0;
}
.no-scroll #fv .con .hm .line.top {
  top: 50%;
  background-color: #FFF;
  transform: translateY(-50%) rotate(45deg);
}

#fv .con .hm .line.center {
  top: 50%;
  transform: translateY(-50%);
}
.no-scroll #fv .con .hm .line.center {
  background-color: rgba(0, 0, 0, 0);
}

#fv .con .hm .line.bottom {
  bottom: 0;
}
.no-scroll #fv .con .hm .line.bottom {
  bottom: 50%;
  background-color: #FFF;
  transform: translateY(50%) rotate(-45deg);
}

#fv .con .sub-txt {
  position: absolute;
  top: 50%;
  right: -100px;
  font-size: 11px;
  transform: translateY(-50%);
  transform: rotate(-90deg);
  color: #fff;
  letter-spacing: 0.4em;
}
@media (max-width: 1024px) {
  #fv .con .sub-txt {
    display: none;
  }
}
#fv .con .scroll .text {
  position: absolute;
  right: 22px;
  bottom: 42px;
  font-size: 11px;
  transform: rotate(-90deg);
  color: #fff;
}
#fv .con .scroll .bar {
  position: absolute;
  right: 24px;
  bottom: 57px;
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.5);
  transform-origin: top center;
  animation: bar 2s infinite;
}
@keyframes bar {
  0% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(5);
  }
  100% {
    transform: scaleY(1);
  }
}

/*/////////////////////////////////////////


#band


/////////////////////////////////////////*/
#band {
  width: 100%;
  padding: 180px 0;
  padding: 0;
}
@media (max-width: 1024px) {
  #band {
    padding: 120px 0;
  }
}
@media (max-width: 1024px) {
  #band {
    padding: 0;
  }
}
#band .con {
  width: 980px;
  margin: 0 auto;
  margin-bottom: 80px;
  width: 100%;
}
#band .con:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  #band .con {
    width: calc(100% - 48px);
    margin: 0 24px 46px 24px;
  }
}
@media (max-width: 1024px) {
  #band .con {
    width: 100%;
    height: auto;
    margin: 0;
  }
}
#band .con .band_img-single {
  display: flex;
  overflow-x: hidden;
}
#band .con .band_img-single .wrapper {
  display: flex;
}
#band .con .band_img-single .wrapper:nth-child(odd) {
  animation: band_img-single 50s -25s linear infinite;
}
@media (max-width: 1024px) {
  #band .con .band_img-single .wrapper:nth-child(odd) {
    animation: band_img-single 30s -15s linear infinite;
  }
}
#band .con .band_img-single .wrapper:nth-child(even) {
  animation: band_img-single2 50s linear infinite;
}
@media (max-width: 1024px) {
  #band .con .band_img-single .wrapper:nth-child(even) {
    animation: band_img-single2 30s linear infinite;
  }
}
#band .con .band_img-single .wrapper .box {
  will-change: transform;
}
#band .con .band_img-single .wrapper .box .image {
  position: relative;
  overflow: hidden;
  width: 850px;
  height: 240px;
}
@media (max-width: 1024px) {
  #band .con .band_img-single .wrapper .box .image {
    width: min(100vw, 500px);
    aspect-ratio: 375/200;
    height: auto;
  }
}
#band .con .band_img-single .wrapper .box .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 30%;
     object-position: 50% 30%;
  display: block;
}
#band .con .band_img-single .wrapper .box .text {
  font-weight: 400;
  font-size: 13px;
  line-height: 21px;
  letter-spacing: 0;
  text-align: justify;
  text-align: center;
  padding-top: 10px;
}
@media (max-width: 1024px) {
  #band .con .band_img-single .wrapper .box .text {
    font-size: min(3.4666666667vw, 17.3333333333px);
    line-height: min(4.8vw, 24px);
    letter-spacing: 0;
  }
}
@keyframes band_img-single {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes band_img-single2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}

/*/////////////////////////////////////////


#about


/////////////////////////////////////////*/
#about {
  width: 100%;
  padding: 180px 0;
  background: linear-gradient(45deg, #d93d1b 0%, #a59040 15%, #a59040 85%, #d93d1b 100%);
  padding: 80px 0 200px 0;
}
@media (max-width: 1024px) {
  #about {
    padding: 120px 0;
  }
}
#about .con {
  width: 980px;
  margin: 0 auto;
  margin-bottom: 80px;
}
#about .con:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  #about .con {
    width: calc(100% - 48px);
    margin: 0 24px 46px 24px;
  }
}
#about .con .col2_simple .column {
  display: flex;
  margin-bottom: 100px;
}
#about .con .col2_simple .column:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  #about .con .col2_simple .column {
    display: block;
    margin-bottom: min(21.3333333333vw, 106.6666666667px);
  }
  #about .con .col2_simple .column:last-child {
    margin-bottom: 0;
  }
}
#about .con .col2_simple .column .wrapper_left {
  position: relative;
  box-sizing: border-box;
  width: 342px;
  margin-right: 64px;
}
@media (max-width: 1024px) {
  #about .con .col2_simple .column .wrapper_left {
    width: 100%;
    margin-right: 0;
    margin-bottom: min(12.2666666667vw, 61.3333333333px);
  }
}
#about .con .col2_simple .column .wrapper_left video {
  position: absolute;
  top: -130px;
  left: 0;
  width: 342px;
  height: auto;
  border-radius: 10px;
}
@media (max-width: 1024px) {
  #about .con .col2_simple .column .wrapper_left video {
    top: -250px;
    width: min(64vw, 320px);
  }
}
#about .con .col2_simple .column .wrapper_right {
  position: relative;
  box-sizing: border-box;
  width: calc(100% - 406px);
}
@media (max-width: 1024px) {
  #about .con .col2_simple .column .wrapper_right {
    width: 100%;
  }
}
#about .con .col2_simple .column .wrapper_right .fuki {
  position: absolute;
  top: -100px;
  right: 0;
  width: 144px;
  height: 144px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.2em;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  color: #876c1a;
  background: #fff;
  text-align: center;
  border-radius: 50%;
  padding-top: 52px;
}
@media (max-width: 1024px) {
  #about .con .col2_simple .column .wrapper_right .fuki {
    top: min(26.6666666667vw, 133.3333333333px);
    width: min(33.3333333333vw, 166.6666666667px);
    height: min(33.3333333333vw, 166.6666666667px);
    font-size: min(4vw, 20px);
    padding-top: min(12.2666666667vw, 61.3333333333px);
    font-weight: 700;
  }
}
#about .con .col2_simple .column .wrapper_right .midashi {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 34px;
  line-height: 56px;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
  font-family: "Noto Serif JP", serif;
  text-align: left;
  padding-bottom: 22px;
}
@media (max-width: 1024px) {
  #about .con .col2_simple .column .wrapper_right .midashi {
    font-weight: 700;
    font-size: min(7.2vw, 36px);
    line-height: min(11.2vw, 56px);
    letter-spacing: 0.06em;
  }
}
@media (max-width: 1024px) {
  #about .con .col2_simple .column .wrapper_right .midashi {
    padding-top: min(69.3333333333vw, 346.6666666667px);
    padding-bottom: min(2.1333333333vw, 10.6666666667px);
  }
}
#about .con .col2_simple .column .wrapper_right .text {
  font-size: 18px;
  line-height: 46px;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.04em;
}
@media (max-width: 1024px) {
  #about .con .col2_simple .column .wrapper_right .text {
    font-size: min(4.8vw, 24px);
    line-height: min(9.6vw, 48px);
    font-weight: 500;
  }
}
#about .con .col2_simple .column .wrapper_right .text span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
}

@media (max-width: 1024px) {
  .copy-wrap {
    position: relative;
  }
  .copy-wrap .copy_smp {
    position: absolute;
    top: min(26.6666666667vw, 133.3333333333px);
    left: 50%;
    transform: translateX(-50%);
    background: url(../_img/chance_copy_smp.png);
    width: min(58.6666666667vw, 293.3333333333px);
    height: auto;
    aspect-ratio: 191/544;
    background-size: contain;
    z-index: 3;
  }
}
/*/////////////////////////////////////////


#chance


/////////////////////////////////////////*/
#chance {
  background: #000;
  width: 100%;
  padding: 180px 0;
  padding-top: 100px;
  height: 704px;
}
@media (max-width: 1024px) {
  #chance {
    padding: 120px 0;
  }
}
@media (max-width: 1024px) {
  #chance {
    overflow: hidden;
    height: min(160vw, 800px);
  }
}
#chance .con {
  width: 980px;
  margin: 0 auto;
  margin-bottom: 80px;
  position: relative;
  background: rgba(255, 255, 255, 0.2);
}
#chance .con:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  #chance .con {
    width: calc(100% - 48px);
    margin: 0 24px 46px 24px;
  }
}
#chance .con .beef {
  position: absolute;
  width: 462px;
  top: 20px;
  left: -172px;
  animation: beef-ani 16s linear infinite;
}
@keyframes beef-ani {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 1024px) {
  #chance .con .beef {
    width: min(91.2vw, 456px);
    left: min(-45.8666666667vw, -229.3333333333px);
  }
}
#chance .con .ikura {
  position: absolute;
  width: 424px;
  top: 50px;
  right: -144px;
  animation: ikura-ani 16s linear infinite;
}
@keyframes ikura-ani {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@media (max-width: 1024px) {
  #chance .con .ikura {
    width: min(81.0666666667vw, 405.3333333333px);
    right: min(-38.4vw, -192px);
  }
}
#chance .con .copy_pc {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: url(../_img/chance_copy_pc.png);
  width: 300px;
  height: 778px;
  background-size: contain;
}
@media (max-width: 1024px) {
  #chance .con .copy_pc {
    display: none;
  }
}

/*/////////////////////////////////////////


#special


/////////////////////////////////////////*/
#special {
  width: 100%;
  padding: 180px 0;
  background: #a59040;
  padding-bottom: 20px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  #special {
    padding: 120px 0;
  }
}
@media (max-width: 1024px) {
  #special {
    padding-top: min(64vw, 320px);
    padding-bottom: min(5.3333333333vw, 26.6666666667px);
  }
}
#special .con_h {
  width: 980px;
  margin: 0 auto;
  margin-bottom: 80px;
}
#special .con_h:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  #special .con_h {
    width: calc(100% - 48px);
    margin: 0 24px 46px 24px;
  }
}
#special .con_h .wrap {
  position: relative;
  width: 10px;
  background: rgba(0, 0, 0, 0.2);
}
#special .con_h .wrap .cap {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: 0.1em;
  position: absolute;
  top: -20px;
  right: 14px;
}
@media (max-width: 1024px) {
  #special .con_h .wrap .cap {
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 12px;
  }
}
@media (max-width: 1024px) {
  #special .con_h .wrap .cap {
    top: -30px;
    right: -46px;
  }
}
#special .con_h .wrap .line {
  position: absolute;
  top: 14px;
  left: -60px;
  width: 107px; /* 線の長さ */
  height: 1px; /* 線の太さ */
  background-color: rgba(0, 0, 0, 0.5);
  transform: rotate(-45deg);
  transform-origin: center; /* 中心を軸に回転 */
}
@media (max-width: 1024px) {
  #special .con_h .wrap .line {
    display: none;
  }
}
#special .con_h .h1 {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 34px;
  line-height: 56px;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  #special .con_h .h1 {
    font-weight: 700;
    font-size: min(7.2vw, 36px);
    line-height: min(11.2vw, 56px);
    letter-spacing: 0.06em;
  }
}
#special .con {
  width: 980px;
  margin: 0 auto;
  margin-bottom: 80px;
  width: 100%;
  /*===========================
  .flickがついた時の一式
  ===========================*/
}
#special .con:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  #special .con {
    width: calc(100% - 48px);
    margin: 0 24px 46px 24px;
  }
}
@media (max-width: 1024px) {
  #special .con {
    width: 100%;
    margin: 0;
  }
}
@media (max-width: 1024px) {
  #special .con.flick {
    overflow-x: scroll;
    width: 100%;
    margin: 0;
  }
  #special .con.flick .f-col3_all {
    display: flex;
    width: calc((100% - min(5.3333333333vw, 26.6666666667px)) * 6);
  }
  #special .con.flick .f-col3_all .wrapper {
    flex-wrap: nowrap;
  }
}
#special .con .f-col3_all {
  width: 100%;
  margin: 40px 0 0 0;
  text-align: center;
  position: relative;
}
#special .con .f-col3_all .wrapper {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 20px;
  padding: 0 20px;
}
@media (max-width: 1024px) {
  #special .con .f-col3_all .wrapper {
    -moz-column-gap: min(5.3333333333vw, 26.6666666667px);
         column-gap: min(5.3333333333vw, 26.6666666667px);
    row-gap: min(5.3333333333vw, 26.6666666667px);
    padding: 0 min(5.3333333333vw, 26.6666666667px);
  }
}
#special .con .f-col3_all .wrapper .box {
  position: relative;
  width: calc((100% - 40px) / 3);
  min-height: 370px;
  display: table;
  background: linear-gradient(45deg, #d93d1b 0%, #c55c29 3%, #a9964a 15%, #a9964a 85%, #c55c29 97%, #d93d1b 100%);
  border-radius: 10px;
  color: #000;
}
@media (max-width: 1024px) {
  #special .con .f-col3_all .wrapper .box {
    width: 100%;
    min-height: auto;
  }
}
#special .con .f-col3_all .wrapper .box .number {
  position: absolute;
  top: 30px;
  left: 30px;
  font-size: 36px;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
}
@media (max-width: 1024px) {
  #special .con .f-col3_all .wrapper .box .number {
    top: min(8vw, 40px);
    left: min(8vw, 40px);
    font-size: min(9.6vw, 48px);
  }
}
#special .con .f-col3_all .wrapper .box .card {
  padding: 40px;
  display: table-cell;
  vertical-align: middle;
}
@media (max-width: 1024px) {
  #special .con .f-col3_all .wrapper .box .card {
    padding: min(10.6666666667vw, 53.3333333333px);
  }
}
#special .con .f-col3_all .wrapper .box .card .item .icon {
  margin-bottom: 14px;
  mix-blend-mode: multiply;
}
#special .con .f-col3_all .wrapper .box .card .item .icon img.img1 {
  width: 130px;
}
#special .con .f-col3_all .wrapper .box .card .item .icon img.img2 {
  width: 124px;
}
#special .con .f-col3_all .wrapper .box .card .item .icon img.img3 {
  width: 189px;
}
#special .con .f-col3_all .wrapper .box .card .item .icon img.img4 {
  width: 94px;
}
#special .con .f-col3_all .wrapper .box .card .item .icon img.img5 {
  width: 106px;
}
#special .con .f-col3_all .wrapper .box .card .item .icon img.img6 {
  width: 159px;
}
@media (max-width: 1024px) {
  #special .con .f-col3_all .wrapper .box .card .item .icon {
    margin-bottom: min(3.7333333333vw, 18.6666666667px);
  }
  #special .con .f-col3_all .wrapper .box .card .item .icon img.img1 {
    width: min(34.6666666667vw, 173.3333333333px);
  }
  #special .con .f-col3_all .wrapper .box .card .item .icon img.img2 {
    width: min(33.0666666667vw, 165.3333333333px);
  }
  #special .con .f-col3_all .wrapper .box .card .item .icon img.img3 {
    width: min(50.4vw, 252px);
  }
  #special .con .f-col3_all .wrapper .box .card .item .icon img.img4 {
    width: min(25.0666666667vw, 125.3333333333px);
  }
  #special .con .f-col3_all .wrapper .box .card .item .icon img.img5 {
    width: min(28.2666666667vw, 141.3333333333px);
  }
  #special .con .f-col3_all .wrapper .box .card .item .icon img.img6 {
    width: min(42.4vw, 212px);
  }
}
#special .con .f-col3_all .wrapper .box .card .item .midashi {
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0.1em;
  font-family: "Noto Serif JP", serif;
  padding-bottom: 10px;
}
@media (max-width: 1024px) {
  #special .con .f-col3_all .wrapper .box .card .item .midashi {
    font-weight: 600;
    font-size: min(5.3333333333vw, 26.6666666667px);
    line-height: min(8vw, 40px);
    letter-spacing: 0.06em;
  }
}
@media (max-width: 1024px) {
  #special .con .f-col3_all .wrapper .box .card .item .midashi {
    font-weight: bold;
    padding-bottom: min(2.6666666667vw, 13.3333333333px);
  }
}
#special .con .f-col3_all .wrapper .box .card .item .text {
  padding-bottom: 10px;
  font-size: 16px;
}
@media (max-width: 1024px) {
  #special .con .f-col3_all .wrapper .box .card .item .text {
    padding-bottom: min(2.6666666667vw, 13.3333333333px);
    font-size: min(4.2666666667vw, 21.3333333333px);
  }
}

/*/////////////////////////////////////////


#reason


/////////////////////////////////////////*/
#reason {
  width: 100%;
  padding: 180px 0;
  background: #000;
  color: #fff;
  overflow-x: hidden;
  padding-top: 96px;
  padding-bottom: 96px;
}
@media (max-width: 1024px) {
  #reason {
    padding: 120px 0;
  }
}
@media (max-width: 1024px) {
  #reason {
    padding-top: min(25.6vw, 128px);
    padding-bottom: 0;
  }
}
#reason .con {
  width: 980px;
  margin: 0 auto;
  margin-bottom: 80px;
}
#reason .con:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  #reason .con {
    width: calc(100% - 48px);
    margin: 0 24px 46px 24px;
  }
}
#reason .con .col2_full-lr .wrapper {
  position: relative;
  width: 100%;
  min-height: 528px;
  margin-bottom: 114px;
}
#reason .con .col2_full-lr .wrapper:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  #reason .con .col2_full-lr .wrapper {
    height: auto;
    min-height: auto;
    margin-bottom: min(30.4vw, 152px);
  }
}
#reason .con .col2_full-lr .wrapper .bg {
  position: absolute;
  left: -310px;
  width: 930px;
  height: 528px;
  background: url(../_img/reason_bg-left_pc.png);
  background-size: contain;
}
@media (max-width: 1024px) {
  #reason .con .col2_full-lr .wrapper .bg {
    top: min(-14.9333333333vw, -74.6666666667px);
    left: 0;
    width: min(121.8666666667vw, 609.3333333333px);
    height: min(76vw, 380px);
    background: url(../_img/reason_bg-left_smp.png);
    background-size: contain;
  }
}
#reason .con .col2_full-lr .wrapper .number {
  position: absolute;
  top: 75px;
  left: 614px;
  width: 122px;
  height: 122px;
  text-align: center;
  padding-top: 42px;
  font-size: 43px;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  z-index: 1;
}
@media (max-width: 1024px) {
  #reason .con .col2_full-lr .wrapper .number {
    top: min(37.3333333333vw, 186.6666666667px);
    left: auto;
    right: min(2.6666666667vw, 13.3333333333px);
    width: min(25.3333333333vw, 126.6666666667px);
    height: min(25.3333333333vw, 126.6666666667px);
    font-size: min(9.0666666667vw, 45.3333333333px);
    padding-top: min(8vw, 40px);
  }
}
#reason .con .col2_full-lr .wrapper .number::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../_img/reason_fuki.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  animation: fuki-ani 16s linear infinite;
  z-index: -1;
}
@keyframes fuki-ani {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#reason .con .col2_full-lr .wrapper .image {
  position: absolute;
  top: 85px;
  left: -220px;
  width: 540px;
  height: 320px;
}
@media (max-width: 1024px) {
  #reason .con .col2_full-lr .wrapper .image {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
  }
}
#reason .con .col2_full-lr .wrapper .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1024px) {
  #reason .con .col2_full-lr .wrapper .image img {
    aspect-ratio: 329/195;
  }
}
#reason .con .col2_full-lr .wrapper .box {
  position: absolute;
  top: 221px;
  left: 272px;
}
@media (max-width: 1024px) {
  #reason .con .col2_full-lr .wrapper .box {
    position: relative;
    top: auto;
    left: auto;
  }
}
#reason .con .col2_full-lr .wrapper .box .midashi {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 34px;
  line-height: 56px;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
  font-family: "Noto Serif JP", serif;
  margin-top: 0;
}
@media (max-width: 1024px) {
  #reason .con .col2_full-lr .wrapper .box .midashi {
    font-weight: 700;
    font-size: min(7.2vw, 36px);
    line-height: min(11.2vw, 56px);
    letter-spacing: 0.06em;
  }
}
@media (max-width: 1024px) {
  #reason .con .col2_full-lr .wrapper .box .midashi {
    margin-top: min(15.4666666667vw, 77.3333333333px);
    font-size: min(5.8666666667vw, 29.3333333333px);
    line-height: min(8vw, 40px);
    letter-spacing: 0.1em;
  }
}
#reason .con .col2_full-lr .wrapper .box p {
  padding-top: 0;
  font-size: 15px;
  line-height: 34px;
  letter-spacing: 0.1em;
}
@media (max-width: 1024px) {
  #reason .con .col2_full-lr .wrapper .box p {
    font-size: min(4vw, 20px);
    line-height: min(9.0666666667vw, 45.3333333333px);
  }
}
#reason .con .col2_full-lr .wrapper.even .bg {
  left: auto;
  right: -270px;
  background: url(../_img/reason_bg-right_pc.png);
  background-size: contain;
}
@media (max-width: 1024px) {
  #reason .con .col2_full-lr .wrapper.even .bg {
    top: min(-14.9333333333vw, -74.6666666667px);
    right: 0;
    width: min(121.8666666667vw, 609.3333333333px);
    height: min(76vw, 380px);
    background: url(../_img/reason_bg-right_smp.png);
    background-size: contain;
  }
}
#reason .con .col2_full-lr .wrapper.even .number {
  left: 8px;
}
@media (max-width: 1024px) {
  #reason .con .col2_full-lr .wrapper.even .number {
    left: min(2.6666666667vw, 13.3333333333px);
  }
}
#reason .con .col2_full-lr .wrapper.even .image {
  left: auto;
  right: -220px;
}
@media (max-width: 1024px) {
  #reason .con .col2_full-lr .wrapper.even .image {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: auto;
  }
}
#reason .con .col2_full-lr .wrapper.even .box {
  top: 185px;
  left: 127px;
}
@media (max-width: 1024px) {
  #reason .con .col2_full-lr .wrapper.even .box {
    position: relative;
    top: auto;
    left: auto;
  }
}

/*/////////////////////////////////////////


#sns


/////////////////////////////////////////*/
#sns {
  width: 100%;
  padding: 180px 0;
  padding-top: 0;
  padding-bottom: 40px;
  background: #000;
}
@media (max-width: 1024px) {
  #sns {
    padding: 120px 0;
  }
}
@media (max-width: 1024px) {
  #sns {
    padding-bottom: min(8vw, 40px);
  }
}
#sns .con1 {
  width: 980px;
  margin: 0 auto;
  margin-bottom: 80px;
  width: 100%;
  margin-bottom: 0;
  background: #000;
}
#sns .con1:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  #sns .con1 {
    width: calc(100% - 48px);
    margin: 0 24px 46px 24px;
  }
}
@media (max-width: 1024px) {
  #sns .con1 {
    width: 100%;
    margin: 0;
  }
}
#sns .con1 .band_text-single {
  display: flex;
  overflow: hidden;
}
#sns .con1 .band_text-single div {
  position: relative;
  white-space: nowrap;
  font-size: 42px;
  font-family: "Noto Serif JP", serif;
  color: #fff;
  letter-spacing: 0.26em;
  font-weight: 600;
  padding: 40px 30px;
}
@media (max-width: 1024px) {
  #sns .con1 .band_text-single div {
    font-size: min(10.1333333333vw, 50.6666666667px);
    line-height: min(14.9333333333vw, 74.6666666667px);
    padding: 0 0 min(10.6666666667vw, 53.3333333333px) 0;
    letter-spacing: 0.1em;
  }
}
#sns .con1 .band_text-single div:nth-child(odd) {
  animation: loop 30s -15s linear infinite;
  backface-visibility: hidden;
  will-change: transform;
}
@media (max-width: 1024px) {
  #sns .con1 .band_text-single div:nth-child(odd) {
    animation: loop 30s -15s linear infinite;
  }
}
#sns .con1 .band_text-single div:nth-child(even) {
  animation: loop2 30s linear infinite;
}
@media (max-width: 1024px) {
  #sns .con1 .band_text-single div:nth-child(even) {
    animation: loop2 30s linear infinite;
  }
}
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
#sns .con2 {
  width: 980px;
  margin: 0 auto;
  margin-bottom: 80px;
  width: 100%;
}
#sns .con2:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  #sns .con2 {
    width: calc(100% - 48px);
    margin: 0 24px 46px 24px;
  }
}
@media (max-width: 1024px) {
  #sns .con2 {
    margin: 0;
    width: 100%;
  }
}
#sns .con2 .col1_slide-item {
  position: relative;
  /*-----------------------
  左ボタン
  -----------------------*/
  /*-----------------------
  右ボタン
  -----------------------*/
  /*-----------------------
  ページネーション
  -----------------------*/
}
#sns .con2 .col1_slide-item .swiper {
  width: 100%;
}
#sns .con2 .col1_slide-item .swiper .swiper-wrapper .swiper-slide {
  width: 100%;
}
#sns .con2 .col1_slide-item .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
}
#sns .con2 .col1_slide-item .swiper .swiper-wrapper .swiper-slide iframe {
  border-radius: 12px;
}
#sns .con2 .col1_slide-item .swiper-button-prev {
  position: absolute;
  top: 62%;
  transform: translateY(-62%);
  left: 30px;
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.5);
}
@media (max-width: 1024px) {
  #sns .con2 .col1_slide-item .swiper-button-prev {
    top: 60%;
    transform: translateY(-60%);
    left: min(2.6666666667vw, 13.3333333333px);
    width: min(10.6666666667vw, 53.3333333333px);
    height: min(10.6666666667vw, 53.3333333333px);
  }
}
#sns .con2 .col1_slide-item .swiper-button-prev::after {
  display: none;
}
#sns .con2 .col1_slide-item .swiper-button-prev::before {
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  border-top: solid 3px rgb(255, 255, 255);
  border-right: solid 3px rgb(255, 255, 255);
  transform: rotate(225deg);
  margin: 38% 40%;
}
@media (max-width: 1024px) {
  #sns .con2 .col1_slide-item .swiper-button-prev::before {
    width: min(2.1333333333vw, 10.6666666667px);
    height: min(2.1333333333vw, 10.6666666667px);
    border-top: solid 2px rgb(255, 255, 255);
    border-right: solid 2px rgb(255, 255, 255);
  }
}
#sns .con2 .col1_slide-item .swiper-button-next {
  position: absolute;
  top: 62%;
  transform: translateY(-62%);
  right: 30px;
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.5);
}
@media (max-width: 1024px) {
  #sns .con2 .col1_slide-item .swiper-button-next {
    top: 60%;
    transform: translateY(-60%);
    right: min(2.6666666667vw, 13.3333333333px);
    width: min(10.6666666667vw, 53.3333333333px);
    height: min(10.6666666667vw, 53.3333333333px);
  }
}
#sns .con2 .col1_slide-item .swiper-button-next::after {
  display: none;
}
#sns .con2 .col1_slide-item .swiper-button-next::before {
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  border-top: solid 3px rgb(255, 255, 255);
  border-right: solid 3px rgb(255, 255, 255);
  transform: rotate(45deg);
  margin: 38% 32%;
}
@media (max-width: 1024px) {
  #sns .con2 .col1_slide-item .swiper-button-next::before {
    width: min(2.1333333333vw, 10.6666666667px);
    height: min(2.1333333333vw, 10.6666666667px);
    border-top: solid 2px rgb(255, 255, 255);
    border-right: solid 2px rgb(255, 255, 255);
  }
}
#sns .con2 .col1_slide-item .swiper-pagination {
  bottom: 0px;
}
#sns .con2 .col1_slide-item .swiper-pagination .swiper-pagination-bullet {
  background: #fff;
}
#sns .con2 .col1_slide-item .swiper-pagination .swiper-pagination-bullet-active {
  background: #fff;
}

/*/////////////////////////////////////////


#shops


/////////////////////////////////////////*/
#shops {
  width: 100%;
  padding: 180px 0;
  background: #a59040;
  position: relative;
}
@media (max-width: 1024px) {
  #shops {
    padding: 120px 0;
  }
}
@media (max-width: 1024px) {
  #shops {
    padding-bottom: min(53.3333333333vw, 266.6666666667px);
  }
}
#shops .con_h {
  width: 980px;
  margin: 0 auto;
  margin-bottom: 80px;
}
#shops .con_h:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  #shops .con_h {
    width: calc(100% - 48px);
    margin: 0 24px 46px 24px;
  }
}
#shops .con_h .wrap {
  position: relative;
  width: 10px;
}
#shops .con_h .wrap .cap {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: 0.1em;
  position: absolute;
  top: -20px;
  right: 14px;
}
@media (max-width: 1024px) {
  #shops .con_h .wrap .cap {
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 12px;
  }
}
@media (max-width: 1024px) {
  #shops .con_h .wrap .cap {
    top: -30px;
    right: -38px;
  }
}
#shops .con_h .wrap .line {
  position: absolute;
  top: 14px;
  left: -60px;
  width: 107px; /* 線の長さ */
  height: 1px; /* 線の太さ */
  background-color: rgba(0, 0, 0, 0.5);
  transform: rotate(-45deg);
  transform-origin: center; /* 中心を軸に回転 */
}
@media (max-width: 1024px) {
  #shops .con_h .wrap .line {
    display: none;
  }
}
#shops .con_h .h1 {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 34px;
  line-height: 56px;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  #shops .con_h .h1 {
    font-weight: 700;
    font-size: min(7.2vw, 36px);
    line-height: min(11.2vw, 56px);
    letter-spacing: 0.06em;
  }
}
#shops .con {
  width: 980px;
  margin: 0 auto;
  margin-bottom: 80px;
}
#shops .con:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  #shops .con {
    width: calc(100% - 48px);
    margin: 0 24px 46px 24px;
  }
}
#shops .con .obj {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: url(../_img/shops_lemon.png);
  width: 240px;
  height: 160px;
  background-size: contain;
  mix-blend-mode: multiply;
}
@media (max-width: 1024px) {
  #shops .con .obj {
    width: min(53.3333333333vw, 266.6666666667px);
    height: auto;
    aspect-ratio: 240/160;
    bottom: min(5.3333333333vw, 26.6666666667px);
    right: min(5.3333333333vw, 26.6666666667px);
  }
}
#shops .con .col3_all {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  #shops .con .col3_all {
    display: block;
    width: 100%;
  }
}
#shops .con .col3_all .column {
  box-sizing: border-box;
  width: calc((100% - 98px) / 3);
  margin-bottom: 80px;
}
#shops .con .col3_all .column:nth-last-child(1) {
  margin-bottom: 0;
}
#shops .con .col3_all .column:nth-last-child(2) {
  margin-bottom: 0;
}
#shops .con .col3_all .column:nth-last-child(3) {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  #shops .con .col3_all .column {
    width: 100%;
    margin-bottom: min(21.3333333333vw, 106.6666666667px);
  }
  #shops .con .col3_all .column:nth-last-child(1) {
    margin-bottom: 0;
  }
  #shops .con .col3_all .column:nth-last-child(2) {
    margin-bottom: min(21.3333333333vw, 106.6666666667px);
  }
  #shops .con .col3_all .column:nth-last-child(3) {
    margin-bottom: min(21.3333333333vw, 106.6666666667px);
  }
}
#shops .con .col3_all .column .wrapper .image {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 196px;
}
@media (max-width: 1024px) {
  #shops .con .col3_all .column .wrapper .image {
    height: auto;
    aspect-ratio: 100/60;
  }
}
#shops .con .col3_all .column .wrapper .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  display: block;
}
#shops .con .col3_all .column .wrapper .midashi2 {
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 18px 0 20px 0;
  border-bottom: solid 1px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1024px) {
  #shops .con .col3_all .column .wrapper .midashi2 {
    font-size: min(4.5333333333vw, 22.6666666667px);
    line-height: min(7.4666666667vw, 37.3333333333px);
    letter-spacing: 0.06em;
  }
}
@media (max-width: 1024px) {
  #shops .con .col3_all .column .wrapper .midashi2 {
    padding: min(4.8vw, 24px) 0 min(5.3333333333vw, 26.6666666667px) 0;
  }
}
#shops .con .col3_all .column .wrapper .point {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 30px;
  letter-spacing: 0;
  text-align: justify;
  padding: 12px 0 14px 0;
  text-align: center;
  border-bottom: solid 1px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1024px) {
  #shops .con .col3_all .column .wrapper .point {
    font-size: min(4vw, 20px);
    line-height: min(8vw, 40px);
  }
}
@media (max-width: 1024px) {
  #shops .con .col3_all .column .wrapper .point {
    padding: min(3.2vw, 16px) 0 min(3.7333333333vw, 18.6666666667px) 0;
  }
}
#shops .con .col3_all .column .wrapper .text {
  padding: 12px 0 14px 0;
  border-bottom: solid 1px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1024px) {
  #shops .con .col3_all .column .wrapper .text {
    padding: min(3.2vw, 16px) 0 min(3.7333333333vw, 18.6666666667px) 0;
  }
}
#shops .con .col3_all .column .wrapper .text_s {
  font-weight: 400;
  font-size: 13px;
  line-height: 21px;
  letter-spacing: 0;
  text-align: justify;
  padding: 15px 0;
}
@media (max-width: 1024px) {
  #shops .con .col3_all .column .wrapper .text_s {
    font-size: min(3.4666666667vw, 17.3333333333px);
    line-height: min(4.8vw, 24px);
    letter-spacing: 0;
  }
}
@media (max-width: 1024px) {
  #shops .con .col3_all .column .wrapper .text_s {
    padding: min(4vw, 20px) 0;
  }
}

/*/////////////////////////////////////////


#member


/////////////////////////////////////////*/
#member {
  width: 100%;
  padding: 180px 0;
  color: #fff;
  background: linear-gradient(45deg, #eb0000, #320000, #eb0000 100%);
  background-size: 300% 300%;
  animation: member-ani 10s ease infinite;
}
@media (max-width: 1024px) {
  #member {
    padding: 120px 0;
  }
}
@keyframes member-ani {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
#member .con_h {
  width: 980px;
  margin: 0 auto;
  margin-bottom: 80px;
}
#member .con_h:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  #member .con_h {
    width: calc(100% - 48px);
    margin: 0 24px 46px 24px;
  }
}
#member .con_h .wrap {
  position: relative;
  width: 10px;
}
#member .con_h .wrap .cap {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: 0.1em;
  position: absolute;
  top: -20px;
  right: 14px;
}
@media (max-width: 1024px) {
  #member .con_h .wrap .cap {
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 12px;
  }
}
@media (max-width: 1024px) {
  #member .con_h .wrap .cap {
    top: -30px;
    right: -60px;
  }
}
#member .con_h .wrap .line {
  position: absolute;
  top: 14px;
  left: -60px;
  width: 107px; /* 線の長さ */
  height: 1px; /* 線の太さ */
  background-color: rgba(255, 255, 255, 0.5);
  transform: rotate(-45deg);
  transform-origin: center; /* 中心を軸に回転 */
}
@media (max-width: 1024px) {
  #member .con_h .wrap .line {
    display: none;
  }
}
#member .con_h .h1 {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 34px;
  line-height: 56px;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  #member .con_h .h1 {
    font-weight: 700;
    font-size: min(7.2vw, 36px);
    line-height: min(11.2vw, 56px);
    letter-spacing: 0.06em;
  }
}
#member .con {
  width: 980px;
  margin: 0 auto;
  margin-bottom: 80px;
  position: relative;
  z-index: 9;
}
#member .con:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  #member .con {
    width: calc(100% - 48px);
    margin: 0 24px 46px 24px;
  }
}
#member .con .col2_all {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  #member .con .col2_all {
    display: block;
  }
}
#member .con .col2_all .column {
  box-sizing: border-box;
  width: calc((100% - 50px) / 2);
  margin-bottom: 100px;
}
#member .con .col2_all .column:nth-last-child(1) {
  margin-bottom: 0;
}
#member .con .col2_all .column:nth-last-child(2) {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  #member .con .col2_all .column {
    width: 100%;
    margin-right: 0;
    margin-bottom: 80px;
  }
  #member .con .col2_all .column:nth-last-child(1) {
    margin-bottom: 0;
  }
  #member .con .col2_all .column:nth-last-child(2) {
    margin-bottom: 80px;
  }
}
#member .con .col2_all .column .wrapper .image {
  width: 100%;
  height: 172px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  #member .con .col2_all .column .wrapper .image {
    height: min(42.6666666667vw, 213.3333333333px);
  }
}
#member .con .col2_all .column .wrapper .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  display: block;
}
@media (max-width: 1024px) {
  #member .con .col2_all .column .wrapper .image img {
    -o-object-position: 30% 0%;
       object-position: 30% 0%;
  }
}
#member .con .col2_all .column .wrapper .midashi2 {
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.1em;
  text-align: left;
  padding: 18px 0 16px 0;
}
@media (max-width: 1024px) {
  #member .con .col2_all .column .wrapper .midashi2 {
    font-size: min(4.5333333333vw, 22.6666666667px);
    line-height: min(7.4666666667vw, 37.3333333333px);
    letter-spacing: 0.06em;
  }
}
@media (max-width: 1024px) {
  #member .con .col2_all .column .wrapper .midashi2 {
    padding: min(4.8vw, 24px) 0 min(4.2666666667vw, 21.3333333333px) 0;
  }
}
#member .con .col2_all .column .wrapper .text {
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0;
  text-align: justify;
}
@media (max-width: 1024px) {
  #member .con .col2_all .column .wrapper .text {
    font-size: min(3.7333333333vw, 18.6666666667px);
    line-height: min(6.9333333333vw, 34.6666666667px);
  }
}

/*/////////////////////////////////////////


#support


/////////////////////////////////////////*/
#support {
  width: 100%;
  padding: 180px 0;
  color: #fff;
  background: #000;
  padding-bottom: 120px;
}
@media (max-width: 1024px) {
  #support {
    padding: 120px 0;
  }
}
#support .con_h {
  width: 980px;
  margin: 0 auto;
  margin-bottom: 80px;
}
#support .con_h:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  #support .con_h {
    width: calc(100% - 48px);
    margin: 0 24px 46px 24px;
  }
}
#support .con_h .wrap {
  position: relative;
  width: 10px;
}
#support .con_h .wrap .cap {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: 0.1em;
  position: absolute;
  top: -20px;
  right: 14px;
}
@media (max-width: 1024px) {
  #support .con_h .wrap .cap {
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 12px;
  }
}
@media (max-width: 1024px) {
  #support .con_h .wrap .cap {
    top: -30px;
    right: -56px;
  }
}
#support .con_h .wrap .line {
  position: absolute;
  top: 14px;
  left: -60px;
  width: 107px; /* 線の長さ */
  height: 1px; /* 線の太さ */
  background-color: rgba(255, 255, 255, 0.5);
  transform: rotate(-45deg);
  transform-origin: center; /* 中心を軸に回転 */
}
@media (max-width: 1024px) {
  #support .con_h .wrap .line {
    display: none;
  }
}
#support .con_h .h1 {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 34px;
  line-height: 56px;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  #support .con_h .h1 {
    font-weight: 700;
    font-size: min(7.2vw, 36px);
    line-height: min(11.2vw, 56px);
    letter-spacing: 0.06em;
  }
}
#support .con1 {
  width: 980px;
  margin: 0 auto;
  margin-bottom: 80px;
  margin-bottom: 120px;
}
#support .con1:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  #support .con1 {
    width: calc(100% - 48px);
    margin: 0 24px 46px 24px;
  }
}
#support .con1 .col2_img-movie .column {
  margin-bottom: 120px;
}
#support .con1 .col2_img-movie .column:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  #support .con1 .col2_img-movie .column {
    margin-bottom: 80px;
  }
  #support .con1 .col2_img-movie .column:last-child {
    margin-bottom: 0;
  }
}
#support .con1 .col2_img-movie .column .midashi {
  font-weight: 600;
  font-size: 26px;
  line-height: 42px;
  letter-spacing: 0.1em;
  margin-top: 160px;
  margin-bottom: 30px;
  font-family: "Noto Serif JP", serif;
  margin: 0 0 20px 0;
}
@media (max-width: 1024px) {
  #support .con1 .col2_img-movie .column .midashi {
    font-size: min(5.3333333333vw, 26.6666666667px);
    line-height: min(8vw, 40px);
    letter-spacing: 0.06em;
    margin-top: 84px;
  }
}
@media (max-width: 1024px) {
  #support .con1 .col2_img-movie .column .midashi {
    margin: 0 0 min(5.3333333333vw, 26.6666666667px) 0;
  }
}
#support .con1 .col2_img-movie .column .wrapper {
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  #support .con1 .col2_img-movie .column .wrapper {
    display: block;
  }
}
#support .con1 .col2_img-movie .column .wrapper .left {
  width: 600px;
}
@media (max-width: 1024px) {
  #support .con1 .col2_img-movie .column .wrapper .left {
    width: 100%;
    margin-bottom: min(8vw, 40px);
  }
}
#support .con1 .col2_img-movie .column .wrapper .left .image {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 400px;
  margin-top: 10px;
}
@media (max-width: 1024px) {
  #support .con1 .col2_img-movie .column .wrapper .left .image {
    height: auto;
    aspect-ratio: 335/260;
    margin-top: min(2.6666666667vw, 13.3333333333px);
  }
}
#support .con1 .col2_img-movie .column .wrapper .left .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  display: block;
}
@media (max-width: 1024px) {
  #support .con1 .col2_img-movie .column .wrapper .left .image img {
    -o-object-position: 50% 50%;
       object-position: 50% 50%;
  }
}
#support .con1 .col2_img-movie .column .wrapper .right {
  box-sizing: border-box;
  width: 348px;
}
@media (max-width: 1024px) {
  #support .con1 .col2_img-movie .column .wrapper .right {
    width: 100%;
  }
}
#support .con1 .col2_img-movie .column .wrapper .right .text {
  padding-bottom: 42px;
}
@media (max-width: 1024px) {
  #support .con1 .col2_img-movie .column .wrapper .right .text {
    padding-bottom: min(16vw, 80px);
    margin-top: min(-2.6666666667vw, -13.3333333333px);
  }
}
#support .con1 .col2_img-movie .column .wrapper .right .youtube {
  width: 100%;
  height: 200px;
}
@media (max-width: 1024px) {
  #support .con1 .col2_img-movie .column .wrapper .right .youtube {
    height: auto;
    aspect-ratio: 16/9;
  }
}
#support .con1 .col2_img-movie .column .wrapper .right .text_s {
  font-weight: 400;
  font-size: 13px;
  line-height: 21px;
  letter-spacing: 0;
  text-align: justify;
  padding-top: 8px;
}
@media (max-width: 1024px) {
  #support .con1 .col2_img-movie .column .wrapper .right .text_s {
    font-size: min(3.4666666667vw, 17.3333333333px);
    line-height: min(4.8vw, 24px);
    letter-spacing: 0;
  }
}
@media (max-width: 1024px) {
  #support .con1 .col2_img-movie .column .wrapper .right .text_s {
    padding-top: min(2.1333333333vw, 10.6666666667px);
    padding-bottom: min(5.3333333333vw, 26.6666666667px);
  }
}
#support .con2 {
  width: 980px;
  margin: 0 auto;
  margin-bottom: 80px;
  width: 100%;
}
#support .con2:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  #support .con2 {
    width: calc(100% - 48px);
    margin: 0 24px 46px 24px;
  }
}
@media (max-width: 1024px) {
  #support .con2 {
    width: 100%;
    margin: 0;
  }
}
#support .con2 .band_img-single {
  display: flex;
  overflow-x: hidden;
}
#support .con2 .band_img-single .wrapper {
  display: flex;
}
#support .con2 .band_img-single .wrapper:nth-child(odd) {
  animation: band_img-single 50s -25s linear infinite;
}
@media (max-width: 1024px) {
  #support .con2 .band_img-single .wrapper:nth-child(odd) {
    animation: band_img-single 50s -25s linear infinite;
  }
}
#support .con2 .band_img-single .wrapper:nth-child(even) {
  animation: band_img-single2 50s linear infinite;
}
@media (max-width: 1024px) {
  #support .con2 .band_img-single .wrapper:nth-child(even) {
    animation: band_img-single2 50s linear infinite;
  }
}
#support .con2 .band_img-single .wrapper .box {
  will-change: transform;
}
#support .con2 .band_img-single .wrapper .box .image {
  width: 300px;
  height: 214px;
  margin-right: 20px;
}
@media (max-width: 1024px) {
  #support .con2 .band_img-single .wrapper .box .image {
    width: min(68vw, 340px);
    height: min(48vw, 240px);
    margin-right: min(5.3333333333vw, 26.6666666667px);
  }
}
#support .con2 .band_img-single .wrapper .box .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
#support .con2 .band_img-single .wrapper .box .text {
  font-weight: 400;
  font-size: 13px;
  line-height: 21px;
  letter-spacing: 0;
  text-align: justify;
  text-align: center;
  padding-top: 10px;
}
@media (max-width: 1024px) {
  #support .con2 .band_img-single .wrapper .box .text {
    font-size: min(3.4666666667vw, 17.3333333333px);
    line-height: min(4.8vw, 24px);
    letter-spacing: 0;
  }
}
@media (max-width: 1024px) {
  #support .con2 .band_img-single .wrapper .box .text {
    padding-top: min(2.6666666667vw, 13.3333333333px);
  }
}
@keyframes band_img-single {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes band_img-single2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}

/*/////////////////////////////////////////


#model


/////////////////////////////////////////*/
#model {
  width: 100%;
  padding: 180px 0;
  background: #ede8d7;
  color: #876c1a;
  position: relative;
  padding: 216px 0;
}
@media (max-width: 1024px) {
  #model {
    padding: 120px 0;
  }
}
@media (max-width: 1024px) {
  #model {
    overflow: hidden;
  }
}
#model::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 38px;
  right: 38px;
  bottom: 38px;
  border: 4px solid #a59040;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 1024px) {
  #model::before {
    top: 18px;
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
}
#model::after {
  content: "";
  position: absolute;
  top: 50px;
  left: 50px;
  right: 50px;
  bottom: 50px;
  border: 1px solid #a59040;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 1024px) {
  #model::after {
    top: 30px;
    left: 30px;
    right: 30px;
    bottom: 30px;
  }
}
#model .corner {
  position: absolute;
  width: 80px;
  height: 80px;
  z-index: 2;
}
#model .tl {
  top: 0;
  left: 0;
  background: url(../_img/model_tl.png);
  background-size: contain;
}
@media (max-width: 1024px) {
  #model .tl {
    top: -20px;
    left: -20px;
  }
}
#model .tr {
  top: 0;
  right: 0;
  background: url(../_img/model_tr.png);
  background-size: contain;
}
@media (max-width: 1024px) {
  #model .tr {
    top: -20px;
    right: -20px;
  }
}
#model .bl {
  bottom: 0;
  left: 0;
  background: url(../_img/model_bl.png);
  background-size: contain;
}
@media (max-width: 1024px) {
  #model .bl {
    bottom: -20px;
    left: -20px;
  }
}
#model .br {
  bottom: 0;
  right: 0;
  background: url(../_img/model_br.png);
  background-size: contain;
}
@media (max-width: 1024px) {
  #model .br {
    bottom: -20px;
    right: -20px;
  }
}
#model .con_h {
  width: 980px;
  margin: 0 auto;
  margin-bottom: 80px;
}
#model .con_h:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  #model .con_h {
    width: calc(100% - 48px);
    margin: 0 24px 46px 24px;
  }
}
@media (max-width: 1024px) {
  #model .con_h {
    margin-top: min(5.3333333333vw, 26.6666666667px);
  }
}
#model .con_h .wrap {
  position: relative;
  width: 10px;
}
#model .con_h .wrap .cap {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: 0.1em;
  position: absolute;
  top: -20px;
  right: 14px;
}
@media (max-width: 1024px) {
  #model .con_h .wrap .cap {
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 12px;
  }
}
@media (max-width: 1024px) {
  #model .con_h .wrap .cap {
    top: -30px;
    right: -72px;
  }
}
#model .con_h .wrap .line {
  position: absolute;
  top: 14px;
  left: -60px;
  width: 107px; /* 線の長さ */
  height: 1px; /* 線の太さ */
  background-color: rgba(135, 108, 26, 0.5);
  transform: rotate(-45deg);
  transform-origin: center; /* 中心を軸に回転 */
}
@media (max-width: 1024px) {
  #model .con_h .wrap .line {
    display: none;
  }
}
#model .con_h .h1 {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 34px;
  line-height: 56px;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
  padding-left: 28px;
}
@media (max-width: 1024px) {
  #model .con_h .h1 {
    font-weight: 700;
    font-size: min(7.2vw, 36px);
    line-height: min(11.2vw, 56px);
    letter-spacing: 0.06em;
  }
}
#model .con {
  width: 980px;
  margin: 0 auto;
  margin-bottom: 80px;
}
#model .con:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  #model .con {
    width: calc(100% - 48px);
    margin: 0 24px 46px 24px;
  }
}
#model .con .col1_all {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  #model .con .col1_all {
    display: block;
  }
}
#model .con .col1_all .column {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 140px;
}
#model .con .col1_all .column:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  #model .con .col1_all .column {
    margin-bottom: min(21.3333333333vw, 106.6666666667px);
  }
}
#model .con .col1_all .column .wrapper .image {
  position: relative;
  overflow: hidden;
  width: 619px;
  height: 492px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  #model .con .col1_all .column .wrapper .image {
    width: min(74.6666666667vw, 373.3333333333px);
    height: auto;
  }
}
#model .con .col1_all .column .wrapper .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  display: block;
}
#model .con .col1_all .column .wrapper .image img.pc {
  display: block;
}
#model .con .col1_all .column .wrapper .image img.smp {
  display: none;
}
@media (max-width: 1024px) {
  #model .con .col1_all .column .wrapper .image img {
    width: 100%;
    -o-object-position: 50% 50%;
       object-position: 50% 50%;
  }
  #model .con .col1_all .column .wrapper .image img.pc {
    display: none;
  }
  #model .con .col1_all .column .wrapper .image img.smp {
    display: block;
  }
}

/*/////////////////////////////////////////


#eligibility


/////////////////////////////////////////*/
#eligibility {
  width: 100%;
  padding: 180px 0;
  color: #fff;
  position: relative;
  padding-bottom: 160px;
  background: url(../_img/eligibility_bg.png);
  background-size: 156px 311px;
  background-attachment: fixed;
}
@media (max-width: 1024px) {
  #eligibility {
    padding: 120px 0;
  }
}
@media (max-width: 1024px) {
  #eligibility {
    background-attachment: scroll;
  }
}
#eligibility .con_h {
  width: 980px;
  margin: 0 auto;
  margin-bottom: 80px;
}
#eligibility .con_h:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  #eligibility .con_h {
    width: calc(100% - 48px);
    margin: 0 24px 46px 24px;
  }
}
#eligibility .con_h .wrap {
  position: relative;
  width: 10px;
}
#eligibility .con_h .wrap .cap {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: 0.1em;
  position: absolute;
  top: -20px;
  right: 14px;
}
@media (max-width: 1024px) {
  #eligibility .con_h .wrap .cap {
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 12px;
  }
}
@media (max-width: 1024px) {
  #eligibility .con_h .wrap .cap {
    top: -30px;
    right: -70px;
  }
}
#eligibility .con_h .wrap .line {
  position: absolute;
  top: 14px;
  left: -60px;
  width: 107px; /* 線の長さ */
  height: 1px; /* 線の太さ */
  background-color: rgba(255, 255, 255, 0.5);
  transform: rotate(-45deg);
  transform-origin: center; /* 中心を軸に回転 */
}
@media (max-width: 1024px) {
  #eligibility .con_h .wrap .line {
    display: none;
  }
}
#eligibility .con_h .h1 {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 34px;
  line-height: 56px;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  #eligibility .con_h .h1 {
    font-weight: 700;
    font-size: min(7.2vw, 36px);
    line-height: min(11.2vw, 56px);
    letter-spacing: 0.06em;
  }
}
#eligibility .con {
  width: 980px;
  margin: 0 auto;
  margin-bottom: 80px;
  font-family: "Noto Serif JP", serif;
  text-align: center;
}
#eligibility .con:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  #eligibility .con {
    width: calc(100% - 48px);
    margin: 0 24px 46px 24px;
  }
}
#eligibility .con .midashi {
  margin-bottom: 60px;
  font-size: 22px;
  line-height: 1.8em;
  letter-spacing: 0.1em;
  font-weight: 500;
}
@media (max-width: 1024px) {
  #eligibility .con .midashi {
    text-align: left;
    margin-bottom: min(16vw, 80px);
    font-size: min(5.8666666667vw, 29.3333333333px);
  }
}
#eligibility .con .honbun {
  font-size: 16px;
  line-height: 38px;
  letter-spacing: 0.06em;
}
@media (max-width: 1024px) {
  #eligibility .con .honbun {
    text-align: left;
    font-size: min(4.2666666667vw, 21.3333333333px);
    line-height: min(10.1333333333vw, 50.6666666667px);
  }
}
#eligibility .con .honbun span {
  margin-right: 3px;
}

/*/////////////////////////////////////////


#flow


/////////////////////////////////////////*/
#flow {
  width: 100%;
  padding: 180px 0;
  background: #000;
  color: #a59040;
  position: relative;
  z-index: 1;
  padding-bottom: 120px;
}
@media (max-width: 1024px) {
  #flow {
    padding: 120px 0;
  }
}
@media (max-width: 1024px) {
  #flow {
    padding-bottom: 80px;
  }
}
#flow .con_h {
  width: 980px;
  margin: 0 auto;
  margin-bottom: 80px;
}
#flow .con_h:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  #flow .con_h {
    width: calc(100% - 48px);
    margin: 0 24px 46px 24px;
  }
}
#flow .con_h .wrap {
  position: relative;
  width: 10px;
}
#flow .con_h .wrap .cap {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: 0.1em;
  position: absolute;
  top: -20px;
  right: 14px;
}
@media (max-width: 1024px) {
  #flow .con_h .wrap .cap {
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 12px;
  }
}
@media (max-width: 1024px) {
  #flow .con_h .wrap .cap {
    top: -30px;
    right: -26px;
  }
}
#flow .con_h .wrap .line {
  position: absolute;
  top: 14px;
  left: -60px;
  width: 107px; /* 線の長さ */
  height: 1px; /* 線の太さ */
  background-color: rgba(165, 144, 64, 0.5);
  transform: rotate(-45deg);
  transform-origin: center; /* 中心を軸に回転 */
}
@media (max-width: 1024px) {
  #flow .con_h .wrap .line {
    display: none;
  }
}
#flow .con_h .h1 {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 34px;
  line-height: 56px;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  #flow .con_h .h1 {
    font-weight: 700;
    font-size: min(7.2vw, 36px);
    line-height: min(11.2vw, 56px);
    letter-spacing: 0.06em;
  }
}
#flow .con {
  width: 980px;
  margin: 0 auto;
  margin-bottom: 80px;
}
#flow .con:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  #flow .con {
    width: calc(100% - 48px);
    margin: 0 24px 46px 24px;
  }
}
#flow .con .flow_all .wrapper {
  position: relative;
  display: flex;
  border: 1px solid rgb(165, 144, 64);
  border-radius: 10px;
  margin-bottom: 60px;
}
#flow .con .flow_all .wrapper:last-child {
  margin-bottom: 0;
}
#flow .con .flow_all .wrapper:last-child .cursor {
  display: none;
}
@media (max-width: 1024px) {
  #flow .con .flow_all .wrapper {
    display: block;
    border: 1px solid rgba(165, 144, 64, 0.5);
    margin-bottom: min(16vw, 80px);
  }
}
#flow .con .flow_all .wrapper .left {
  position: relative;
  width: 100px;
  text-align: center;
  border-right: 1px solid rgb(165, 144, 64);
}
@media (max-width: 1024px) {
  #flow .con .flow_all .wrapper .left {
    width: 100%;
    height: min(12.8vw, 64px);
    border-right: none;
    border-bottom: 1px solid rgba(165, 144, 64, 0.5);
  }
}
#flow .con .flow_all .wrapper .left .number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
}
@media (max-width: 1024px) {
  #flow .con .flow_all .wrapper .left .number {
    margin-left: min(1.3333333333vw, 6.6666666667px);
    font-size: min(4.8vw, 24px);
    font-weight: 600;
  }
}
#flow .con .flow_all .wrapper .left .block-top {
  position: absolute;
  top: 0;
  right: -3px;
  width: 6px;
  height: 20px;
  background: #000;
}
@media (max-width: 1024px) {
  #flow .con .flow_all .wrapper .left .block-top {
    width: min(3.2vw, 16px);
    height: min(2.6666666667vw, 13.3333333333px);
    top: min(11.2vw, 56px);
    left: 0;
  }
}
#flow .con .flow_all .wrapper .left .block-bottom {
  position: absolute;
  bottom: 0;
  right: -3px;
  width: 6px;
  height: 20px;
  background: #000;
}
@media (max-width: 1024px) {
  #flow .con .flow_all .wrapper .left .block-bottom {
    width: min(3.2vw, 16px);
    height: min(2.6666666667vw, 13.3333333333px);
    top: min(11.2vw, 56px);
    right: 0;
    bottom: auto;
  }
}
#flow .con .flow_all .wrapper .right {
  display: table;
  flex: 1;
  padding: 32px 0 34px 46px;
}
@media (max-width: 1024px) {
  #flow .con .flow_all .wrapper .right {
    width: 100%;
    padding: min(6.9333333333vw, 34.6666666667px) min(5.3333333333vw, 26.6666666667px) min(5.3333333333vw, 26.6666666667px) min(5.3333333333vw, 26.6666666667px);
  }
}
#flow .con .flow_all .wrapper .right .wrap {
  display: table-cell;
  vertical-align: middle;
}
#flow .con .flow_all .wrapper .right .wrap .midashi {
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.1em;
}
@media (max-width: 1024px) {
  #flow .con .flow_all .wrapper .right .wrap .midashi {
    font-size: min(4.5333333333vw, 22.6666666667px);
    line-height: min(7.4666666667vw, 37.3333333333px);
    letter-spacing: 0.06em;
  }
}
@media (max-width: 1024px) {
  #flow .con .flow_all .wrapper .right .wrap .midashi {
    padding-bottom: min(1.6vw, 8px);
    text-align: center;
  }
}
#flow .con .flow_all .wrapper .right .wrap .text {
  padding-top: 20px;
}
@media (max-width: 1024px) {
  #flow .con .flow_all .wrapper .right .wrap .text {
    padding-top: min(5.3333333333vw, 26.6666666667px);
    padding-bottom: min(1.6vw, 8px);
  }
}
#flow .con .flow_all .wrapper .cursor {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -34px;
  width: 12px;
  height: 12px;
  border-top: solid 3px rgb(165, 144, 64);
  border-right: solid 3px rgb(165, 144, 64);
  transform: rotate(135deg);
  transition: all 0.2s ease-in-out;
}
@media (max-width: 1024px) {
  #flow .con .flow_all .wrapper .cursor {
    bottom: -34px;
    width: 12px;
    height: 12px;
  }
}
#flow .ushi {
  position: absolute;
  bottom: -100px;
  right: 40px;
  width: 541px;
  height: 372px;
  background: url(../_img/flow_ushi.png);
  background-size: contain;
}
@media (max-width: 1024px) {
  #flow .ushi {
    display: none;
  }
}

/*/////////////////////////////////////////


#faq


/////////////////////////////////////////*/
#faq {
  width: 100%;
  padding: 180px 0;
  position: relative;
  overflow: hidden;
  background: url(../_img/faq_bg.jpg) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}
@media (max-width: 1024px) {
  #faq {
    padding: 120px 0;
  }
}
@media (max-width: 1024px) {
  #faq {
    background-attachment: scroll;
  }
}
#faq .con_h {
  width: 980px;
  margin: 0 auto;
  margin-bottom: 80px;
}
#faq .con_h:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  #faq .con_h {
    width: calc(100% - 48px);
    margin: 0 24px 46px 24px;
  }
}
#faq .con_h .wrap {
  position: relative;
  width: 10px;
}
#faq .con_h .wrap .cap {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: 0.1em;
  position: absolute;
  top: -20px;
  right: 14px;
}
@media (max-width: 1024px) {
  #faq .con_h .wrap .cap {
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 12px;
  }
}
@media (max-width: 1024px) {
  #faq .con_h .wrap .cap {
    top: -30px;
    right: -20px;
  }
}
#faq .con_h .wrap .line {
  position: absolute;
  top: 14px;
  left: -60px;
  width: 107px; /* 線の長さ */
  height: 1px; /* 線の太さ */
  background-color: rgba(0, 0, 0, 0.5);
  transform: rotate(-45deg);
  transform-origin: center; /* 中心を軸に回転 */
}
@media (max-width: 1024px) {
  #faq .con_h .wrap .line {
    display: none;
  }
}
#faq .con_h .h1 {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 34px;
  line-height: 56px;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  #faq .con_h .h1 {
    font-weight: 700;
    font-size: min(7.2vw, 36px);
    line-height: min(11.2vw, 56px);
    letter-spacing: 0.06em;
  }
}
#faq .con {
  width: 980px;
  margin: 0 auto;
  margin-bottom: 80px;
}
#faq .con:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  #faq .con {
    width: calc(100% - 48px);
    margin: 0 24px 46px 24px;
  }
}
#faq .con .qa_simple .wrapper {
  margin-bottom: 60px;
}
#faq .con .qa_simple .wrapper:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  #faq .con .qa_simple .wrapper {
    margin-bottom: min(16vw, 80px);
  }
}
#faq .con .qa_simple .wrapper .question {
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
@media (max-width: 1024px) {
  #faq .con .qa_simple .wrapper .question {
    padding-bottom: min(2.6666666667vw, 13.3333333333px);
  }
}
#faq .con .qa_simple .wrapper .question .q-mark {
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.1em;
  padding-left: 10px;
}
@media (max-width: 1024px) {
  #faq .con .qa_simple .wrapper .question .q-mark {
    font-size: min(4.5333333333vw, 22.6666666667px);
    line-height: min(7.4666666667vw, 37.3333333333px);
    letter-spacing: 0.06em;
  }
}
@media (max-width: 1024px) {
  #faq .con .qa_simple .wrapper .question .q-mark {
    padding-left: 0;
  }
}
#faq .con .qa_simple .wrapper .question p {
  position: relative;
  width: calc(100% - 60px);
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.1em;
  padding-left: 2em;
}
@media (max-width: 1024px) {
  #faq .con .qa_simple .wrapper .question p {
    font-size: min(4.5333333333vw, 22.6666666667px);
    line-height: min(7.4666666667vw, 37.3333333333px);
    letter-spacing: 0.06em;
  }
}
@media (max-width: 1024px) {
  #faq .con .qa_simple .wrapper .question p {
    padding-left: 1.3em;
    width: calc(100% - 28px);
  }
}
#faq .con .qa_simple .wrapper .question p::after {
  display: block;
  position: absolute;
  top: 48%;
  transform: translateY(-48%);
  right: -40px;
  content: "";
  width: 6px;
  height: 6px;
  border-top: solid 3px #000;
  border-right: solid 3px #000;
  transform: rotate(135deg);
  transition: all 0.2s ease-in-out;
}
@media (max-width: 1024px) {
  #faq .con .qa_simple .wrapper .question p::after {
    right: -22px;
  }
}
#faq .con .qa_simple .wrapper .question p:hover {
  cursor: pointer;
}
#faq .con .qa_simple .wrapper .question p.op::after {
  transform: rotate(-45deg);
  border-top: solid 3px #000;
  border-right: solid 3px #000;
}
#faq .con .qa_simple .wrapper .answer {
  margin-top: 20px;
}
@media (max-width: 1024px) {
  #faq .con .qa_simple .wrapper .answer {
    margin-top: min(5.3333333333vw, 26.6666666667px);
  }
}

/*/////////////////////////////////////////


#contact


/////////////////////////////////////////*/
#contact {
  width: 100%;
  padding: 180px 0;
  background: #ede8d7;
}
@media (max-width: 1024px) {
  #contact {
    padding: 120px 0;
  }
}
#contact .con {
  width: 980px;
  margin: 0 auto;
  margin-bottom: 80px;
  position: relative;
}
#contact .con:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  #contact .con {
    width: calc(100% - 48px);
    margin: 0 24px 46px 24px;
  }
}
#contact .con .btn {
  width: 500px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  #contact .con .btn {
    width: 80%;
  }
}
#contact .con .btn a {
  display: block;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0.1em;
  color: #fff;
  background: #FF0000;
  border-radius: 6px;
  padding: 24px;
  text-align: center;
  text-decoration: none;
}
@media (max-width: 1024px) {
  #contact .con .btn a {
    font-weight: 600;
    font-size: min(5.3333333333vw, 26.6666666667px);
    line-height: min(8vw, 40px);
    letter-spacing: 0.06em;
  }
}

/*/////////////////////////////////////////


#footer  .etc


/////////////////////////////////////////*/
#footer {
  width: 100%;
  padding: 0;
}
#footer .con .footer_normal {
  width: 100%;
  background: #d4bf72;
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0;
  text-align: justify;
  line-height: 22px;
}
@media (max-width: 1024px) {
  #footer .con .footer_normal {
    font-size: min(3.7333333333vw, 18.6666666667px);
    line-height: min(6.9333333333vw, 34.6666666667px);
  }
}
#footer .con .footer_normal .etc-menu {
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  padding: 30px 0;
}
@media (max-width: 1024px) {
  #footer .con .footer_normal .etc-menu {
    padding: 0;
  }
}
#footer .con .footer_normal .etc-menu .wrapper {
  display: table;
  width: 980px;
  margin: 0 auto;
}
@media (max-width: 0px) {
  #footer .con .footer_normal .etc-menu .wrapper {
    width: calc(100% - 80px);
  }
}
@media (max-width: 1024px) {
  #footer .con .footer_normal .etc-menu .wrapper {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
}
#footer .con .footer_normal .etc-menu .wrapper div {
  width: 50%;
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  padding: 0 10px;
  border-left: solid 1px rgba(0, 0, 0, 0.2);
}
#footer .con .footer_normal .etc-menu .wrapper div:last-child {
  border-right: solid 1px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1024px) {
  #footer .con .footer_normal .etc-menu .wrapper div {
    display: flex;
    width: 100%;
    align-items: center;
    padding: 20px 14px;
    border: none;
    border-bottom: solid 1px rgba(0, 0, 0, 0.2);
  }
  #footer .con .footer_normal .etc-menu .wrapper div:last-child {
    border-bottom: none;
  }
  #footer .con .footer_normal .etc-menu .wrapper div:nth-child(odd) {
    border-right: solid 1px rgba(0, 0, 0, 0.2);
  }
}
#footer .con .footer_normal .etc-menu .wrapper div a {
  color: #000;
  text-decoration: none;
}
@media (max-width: 1024px) {
  #footer .con .footer_normal .etc-menu .wrapper div a {
    display: block;
    width: 100%;
  }
}
#footer .con .footer_normal .etc-menu .wrapper div a br {
  display: none;
}
@media (max-width: 1024px) {
  #footer .con .footer_normal .etc-menu .wrapper div a br {
    display: block;
  }
}
#footer .con .footer_normal .copyright-con {
  width: 100%;
  background: rgb(0, 0, 0);
}
#footer .con .footer_normal .copyright-con copyright {
  display: block;
  width: 980px;
  margin: 0 auto;
  text-align: center;
  padding: 80px 0;
  color: #fff;
  letter-spacing: 0.2em;
}
@media (max-width: 0px) {
  #footer .con .footer_normal .copyright-con copyright {
    width: calc(100% - 80px);
  }
}
@media (max-width: 1024px) {
  #footer .con .footer_normal .copyright-con copyright {
    width: calc(100% - 80px);
  }
}

/* //////////////////////////////////////////////


company.html


////////////////////////////////////////////// */
body#company {
  background: #ede8d7;
}
body#company section {
  width: 100%;
  padding: 180px 0;
  padding-top: 100px;
}
@media (max-width: 1024px) {
  body#company section {
    padding: 120px 0;
  }
}
@media (max-width: 1024px) {
  body#company section {
    padding-top: 40px;
  }
}
body#company section h2 {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 20px;
  text-align: center;
  padding-bottom: 20px;
}
@media (max-width: 1024px) {
  body#company section h2 {
    padding-bottom: 30px;
  }
}
body#company section .con {
  width: 980px;
  margin: 0 auto;
  margin-bottom: 80px;
}
body#company section .con:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  body#company section .con {
    width: calc(100% - 48px);
    margin: 0 24px 46px 24px;
  }
}
body#company section .con .wrapper {
  margin-bottom: 40px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
body#company section .con .wrapper .gyou {
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
@media (max-width: 1024px) {
  body#company section .con .wrapper .gyou {
    width: 100%;
    display: block;
  }
}
body#company section .con .wrapper .gyou:last-child {
  border-bottom: none;
}
body#company section .con .wrapper .gyou .cap {
  width: 200px;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0 20px;
}
@media (max-width: 1024px) {
  body#company section .con .wrapper .gyou .cap {
    width: 100%;
    border-right: none;
    font-weight: bold;
  }
}
body#company section .con .wrapper .gyou .contents {
  flex: 1;
  padding: 0 20px;
}