@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");
/* //////////////////////////////////////


フォント・カラー設定


////////////////////////////////////// */
/*------------------------------------
フォントファミリー
-------------------------------------*/
/*------------------------------------
カラー
-------------------------------------*/
/*------------------------------------
背景カラー
-------------------------------------*/
/*------------------------------------
強調
-------------------------------------*/
.txt_strong {
  color: #000;
  font-weight: bold;
}

.txt_main {
  color: #718CC7;
  font-weight: bold;
}

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


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


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


デバイス別の設定


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


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


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


その他の設定


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

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

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

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

img {
  vertical-align: top;
}

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

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


コンテナ系


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


テキスト系


////////////////////////////////////// */
/*================================
txt_h1
================================*/
/*================================
txt_h2
================================*/
/*================================
txt_h3
================================*/
/*================================
txt_h4
================================*/
/*================================
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: 16px;
  line-height: 2;
  letter-spacing: 0;
  text-align: justify;
}
@media (max-width: 1024px) {
  body {
    font-size: min(4vw, 20px);
    line-height: min(8vw, 40px);
  }
}
body.no-scroll {
  overflow: hidden;
  touch-action: none;
}
body {
  background: #aaa;
}

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

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


.site-wrapper


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

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


#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
  =================================== */
}
#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
  =================================== */
}
#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;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}
.eff_fade-in.active {
  opacity: 1;
  transform: none;
}

/* -----------------------------
スライドイン
----------------------------- */
.eff_slide-in {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1s ease, transform 1s ease;
}
.eff_slide-in.active {
  opacity: 1;
  transform: translateX(0);
}

/* -----------------------------
マスク-スライドアップ
----------------------------- */
.eff_mask-slide-up {
  display: block;
  width: 100%;
  white-space: normal;
  word-break: break-word;
}
.eff_mask-slide-up .line {
  display: block;
  transform: translateY(40px);
  transition: transform 0.6s ease;
}
.eff_mask-slide-up .line.active {
  transform: translateY(0);
}

.mask-slide-wrap {
  display: block;
  overflow: visible;
  background: rgba(255, 255, 0, 0.5);
}

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

背景系

///////////////////////////////////////////// */
/* -----------------------------
eff_bg-line
----------------------------- */
.eff_bg-line {
  position: relative;
  overflow: hidden;
}
.eff_bg-line::before {
  content: "";
  position: absolute;
  top: -100px;
  right: 10%;
  width: 250px;
  height: 0;
  background: linear-gradient(20deg, rgba(0, 93, 252, 0.15) 0%, rgba(171, 56, 203, 0.15) 90%);
  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;
}

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


#floating-widgets


///////////////////////////////////////////// */
#floating-widgets {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1002;
}
body.no-scroll #floating-widgets {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (max-width: 1024px) {
  #floating-widgets {
    max-width: 500px;
    left: 50%;
    transform: translateX(-50%);
  }
}
#floating-widgets {
  /* --------------------------------
  .cv2
  --------------------------------- */
}
#floating-widgets .cv2 {
  pointer-events: auto;
  position: absolute;
  bottom: 20px;
  right: 20px;
  transition: all 0.5s ease;
  z-index: 10;
}
@media (max-width: 1024px) {
  #floating-widgets .cv2 {
    display: none;
  }
}
#floating-widgets .cv2 .wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}
#floating-widgets .cv2 .wrapper .cta-message {
  font-size: 16px;
  line-height: 1.6;
  color: #C90000;
  text-align: center;
}
@media (max-width: 1024px) {
  #floating-widgets .cv2 .wrapper .cta-message {
    font-size: min(5.3333333333vw, 26.6666666667px);
    margin-bottom: min(5.3333333333vw, 26.6666666667px);
  }
}
#floating-widgets .cv2 .wrapper .cta-message .location-info {
  font-weight: bold;
}
#floating-widgets .cv2 .wrapper .cta-button {
  display: block;
  background: #C90000;
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
  font-weight: bold;
  padding: 16px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  #floating-widgets .cv2 .wrapper .cta-button {
    font-size: min(4.2666666667vw, 21.3333333333px);
    padding: min(4.2666666667vw, 21.3333333333px) min(8vw, 40px);
    width: 90%;
    max-width: min(106.6666666667vw, 533.3333333333px);
  }
}
#floating-widgets .cv2 .wrapper .cta-button:hover {
  background: #df0202;
}

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


#fv


///////////////////////////////////////////// */
#fv {
  position: relative;
  color: #fff;
  overflow-x: hidden;
}
#fv .con {
  /* --------------------------------

  .keyV

  --------------------------------- */
}
#fv .con .keyV {
  position: relative;
  width: 100vw;
  /* //////////////////////////////////////

  .pc

  ////////////////////////////////////// */
}
#fv .con .keyV .pc {
  position: relative;
  height: 80svh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 1024px) {
  #fv .con .keyV .pc {
    display: none;
  }
}
#fv .con .keyV {
  /* //////////////////////////////////////

  .smp

  ////////////////////////////////////// */
}
#fv .con .keyV .smp {
  display: none;
}
@media (max-width: 1024px) {
  #fv .con .keyV .smp {
    position: relative;
    height: 85svh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
}
#fv .con {
  /* --------------------------------

  .catch-wrapper

  --------------------------------- */
}
#fv .con .catch-wrapper {
  z-index: 10;
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1050px;
  height: 80svh;
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  #fv .con .catch-wrapper {
    top: 42%;
    left: min(5.3333333333vw, 26.6666666667px);
    transform: none;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
  }
}
#fv .con {
  /* --------------------------------

  .catch

  --------------------------------- */
}
#fv .con .catch {
  font-size: 70px;
  line-height: 100px;
  font-weight: bold;
  text-align: left;
  letter-spacing: 0.1em;
}
@media (max-width: 1024px) {
  #fv .con .catch {
    font-size: min(10.1333333333vw, 50.6666666667px);
    line-height: min(15.4666666667vw, 77.3333333333px);
  }
}
#fv .con {
  /* --------------------------------

  .scroll

  --------------------------------- */
}
#fv .con .scroll {
  z-index: 10;
}
@media (max-width: 1024px) {
  #fv .con .scroll {
    display: none;
  }
}
#fv .con .scroll .text {
  z-index: 10;
  position: absolute;
  right: 22px;
  bottom: 42px;
  font-size: 11px;
  transform: rotate(-90deg);
}
@media (max-width: 1024px) {
  #fv .con .scroll .text {
    display: none;
  }
}
#fv .con .scroll .bar {
  z-index: 10;
  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);
  }
}
@media (max-width: 1024px) {
  #fv .con .scroll .bar {
    display: none;
  }
}

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


25ideal 専用スタイル


////////////////////////////////////// */
@media (max-width: 1024px) {
  body.pattern-25ideal #fv .catch-wrapper {
    top: 30%;
  }
}
@media (max-width: 1024px) {
  body.pattern-25ideal #fv .catch span {
    display: block;
    margin-top: 16px;
    font-size: min(6.4vw, 32px);
    line-height: min(10.1333333333vw, 50.6666666667px);
  }
}

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


Custom Slider（カスタムズームスライダー）


////////////////////////////////////// */
.custom-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.custom-slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  pointer-events: none;
}
.custom-slider .slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.custom-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.custom-slider .slide.active {
  opacity: 1;
}

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


#issue


///////////////////////////////////////////// */
#issue {
  width: 100%;
  padding: 140px 0;
}
@media (max-width: 1024px) {
  #issue {
    padding: min(26.6666666667vw, 133.3333333333px) 0;
  }
}
#issue {
  position: relative;
  background: #EEE;
  padding-top: 0;
  padding-bottom: 100px;
}
@media (max-width: 1024px) {
  #issue {
    padding-top: 0;
    padding-bottom: min(13.3333333333vw, 66.6666666667px);
  }
}
#issue .con_col2_all {
  width: 1050px;
  margin: 0 auto;
  margin-bottom: 80px;
}
#issue .con_col2_all:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  #issue .con_col2_all {
    width: calc(100% - min(12.8vw, 64px));
    margin: 0 min(6.4vw, 32px) min(12.2666666667vw, 61.3333333333px) min(6.4vw, 32px);
  }
}
#issue .con_col2_all {
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
@media (max-width: 1024px) {
  #issue .con_col2_all {
    position: relative;
    top: min(-2.6666666667vw, -13.3333333333px);
    left: 0;
    transform: none;
    margin-bottom: min(13.3333333333vw, 66.6666666667px);
  }
}
#issue .con_col2_all .balloon {
  position: absolute;
  top: -40px;
  left: -60px;
  background: var(--theme-color, #718CC7);
  padding: 20px 30px 24px 30px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
  border-radius: 6px;
  text-align: center;
  letter-spacing: 0.1em;
}
@media (max-width: 1024px) {
  #issue .con_col2_all .balloon {
    top: min(-6.9333333333vw, -34.6666666667px);
    left: min(-6.4vw, -32px);
    padding: min(5.3333333333vw, 26.6666666667px) min(5.3333333333vw, 26.6666666667px) min(6.4vw, 32px) min(5.3333333333vw, 26.6666666667px);
    font-size: min(4.8vw, 24px);
    letter-spacing: 0;
    z-index: 2;
  }
}
#issue .con_col2_all .balloon::after {
  content: "";
  position: absolute;
  bottom: -14px;
  right: 100px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 12px 0 12px;
  border-color: var(--theme-color, #718CC7) transparent transparent transparent;
}
@media (max-width: 1024px) {
  #issue .con_col2_all .balloon::after {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: min(-2.6666666667vw, -13.3333333333px);
    border-width: min(3.7333333333vw, 18.6666666667px) min(3.2vw, 16px) 0 min(3.2vw, 16px);
  }
}
#issue .con_col2_all .col2_all {
  display: flex;
  background: white;
  padding-top: 40px;
}
@media (max-width: 1024px) {
  #issue .con_col2_all .col2_all {
    position: relative;
    flex-direction: column;
    gap: 0px;
  }
}
#issue .con_col2_all .col2_all .column {
  box-sizing: border-box;
  flex: 1;
  padding: 30px 30px 40px 30px;
}
@media (max-width: 1024px) {
  #issue .con_col2_all .col2_all .column {
    padding: min(5.3333333333vw, 26.6666666667px) min(5.3333333333vw, 26.6666666667px) 0 min(5.3333333333vw, 26.6666666667px);
  }
}
@media (max-width: 1024px) {
  #issue .con_col2_all .col2_all .column:nth-child(2) {
    padding-top: 0;
    padding-bottom: min(8vw, 40px);
  }
}
#issue .con_col2_all .col2_all .column .wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (max-width: 1024px) {
  #issue .con_col2_all .col2_all .column .wrapper {
    gap: 0;
  }
}
#issue .con_col2_all .col2_all .column .wrapper .box.midashi2 {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 18px;
  line-height: 2.4;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
@media (max-width: 1024px) {
  #issue .con_col2_all .col2_all .column .wrapper .box.midashi2 {
    font-size: min(4.2666666667vw, 21.3333333333px);
    line-height: min(6.4vw, 32px);
    padding: min(4.2666666667vw, 21.3333333333px) 0;
    gap: min(2.1333333333vw, 10.6666666667px);
    align-items: center;
  }
}
#issue .con_col2_all .col2_all .column .wrapper .box.midashi2::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  min-width: 14px;
  border-radius: 50%;
  background: var(--theme-color, #718CC7);
  margin-top: 16px;
  margin-left: 4px;
  margin-right: -4px;
}
@media (max-width: 1024px) {
  #issue .con_col2_all .col2_all .column .wrapper .box.midashi2::before {
    position: relative;
    top: min(0.2666666667vw, 1.3333333333px);
    width: min(3.7333333333vw, 18.6666666667px);
    height: min(3.7333333333vw, 18.6666666667px);
    min-width: min(3.7333333333vw, 18.6666666667px);
    margin: 0;
    flex-shrink: 0;
  }
}
#issue .con_col2_all .col2_all .obj {
  position: absolute;
  top: 320px;
  left: 50%;
  transform: translateX(-50%);
  width: 71px;
  height: 82px;
}
@media (max-width: 1024px) {
  #issue .con_col2_all .col2_all .obj {
    width: min(18.9333333333vw, 94.6666666667px);
    height: min(21.8666666667vw, 109.3333333333px);
    bottom: 0;
    top: auto;
    transform: translate(-50%, 85%);
  }
}
#issue .con_col2_all .col2_all .obj img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#issue {
  /*
  1：数を増やす時は.columnタグ単位で増やす

  2：2つ以上の時にスマホでフリックスライドにしたい時は、
  php側の.col1_columnに.js-col-slide-spをマルチクラス。
  その際は各カラムでコンテンツの高さを同じにする（一番いものに合うため）

  3：js-col-slide-spのcssはad.scssに記載されている
  */
}
#issue .con_col1_column {
  width: 1050px;
  margin: 0 auto;
  margin-bottom: 80px;
}
#issue .con_col1_column:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  #issue .con_col1_column {
    width: calc(100% - min(12.8vw, 64px));
    margin: 0 min(6.4vw, 32px) min(12.2666666667vw, 61.3333333333px) min(6.4vw, 32px);
  }
}
#issue .con_col1_column {
  padding-top: 230px;
}
@media (max-width: 1024px) {
  #issue .con_col1_column {
    padding-top: 0;
    padding-bottom: min(24vw, 120px);
  }
}
#issue .con_col1_column .col1_column {
  position: relative;
  width: 100%;
}
#issue .con_col1_column .col1_column .orange-heading {
  background: var(--theme-color, #718CC7);
  color: white;
  font-size: 24px;
  font-weight: 600;
  padding: 32px 40px;
  text-align: center;
  letter-spacing: 0.1em;
}
@media (max-width: 1024px) {
  #issue .con_col1_column .col1_column .orange-heading {
    font-size: min(4.8vw, 24px);
    padding: min(4.8vw, 24px) min(6.4vw, 32px);
  }
}
#issue .con_col1_column .col1_column .content-box {
  position: relative;
  padding: 50px;
  border: 1px solid var(--theme-color, #718CC7);
}
@media (max-width: 1024px) {
  #issue .con_col1_column .col1_column .content-box {
    flex-direction: column;
    padding: min(8vw, 40px) min(6.4vw, 32px) min(8vw, 40px) min(6.4vw, 32px);
  }
}
#issue .con_col1_column .col1_column .content-box .text-area p {
  font-size: 18px;
  line-height: 2.4;
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  #issue .con_col1_column .col1_column .content-box .text-area p {
    font-size: min(4.2666666667vw, 21.3333333333px);
    line-height: min(8.5333333333vw, 42.6666666667px);
    margin-bottom: min(3.7333333333vw, 18.6666666667px);
  }
}
#issue .con_col1_column .col1_column .content-box .text-area p:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  #issue .con_col1_column .col1_column .content-box .text-area p:last-child {
    margin-bottom: 0;
  }
}
#issue .con_col1_column .col1_column .content-box .text-area p strong {
  font-weight: 600;
}
#issue .con_col1_column .col1_column .content-box .josei {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 293px;
}
@media (max-width: 1024px) {
  #issue .con_col1_column .col1_column .content-box .josei {
    position: absolute;
    width: min(53.3333333333vw, 266.6666666667px);
    bottom: 0;
    right: min(-6.4vw, -32px);
    z-index: 0;
    transform: translateY(75%);
  }
}
#issue .con_col1_column .col1_column .content-box .josei img {
  width: 100%;
  height: auto;
  display: block;
}

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


#professional
こうした不調に向き合い「専門的に仕立てる」プロがいます


///////////////////////////////////////////// */
#professional {
  width: 100%;
  padding: 140px 0;
}
@media (max-width: 1024px) {
  #professional {
    padding: min(26.6666666667vw, 133.3333333333px) 0;
  }
}
#professional {
  position: relative;
  background: #718CC7;
  padding: 80px 20px;
}
@media (max-width: 1024px) {
  #professional {
    padding: min(16vw, 80px) min(5.3333333333vw, 26.6666666667px) min(13.3333333333vw, 66.6666666667px) min(5.3333333333vw, 26.6666666667px);
  }
}
#professional .message {
  position: relative;
  z-index: 10;
  color: white;
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media (max-width: 1024px) {
  #professional .message {
    font-size: min(4.8vw, 24px);
    line-height: min(8.5333333333vw, 42.6666666667px);
  }
}
#professional .message .location-info {
  color: #ff0;
}
@media (max-width: 1024px) {
  #professional .message .location-info {
    font-size: min(4.8vw, 24px);
    margin-top: min(4.8vw, 24px);
  }
  #professional .message .location-info .kigou {
    display: none;
  }
}
#professional .obj {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
}
@media (max-width: 1024px) {
  #professional .obj {
    top: 0;
    width: min(13.3333333333vw, 66.6666666667px);
    height: min(13.3333333333vw, 66.6666666667px);
    transform: translate(-50%, -50%);
  }
}
#professional .obj img {
  width: 100%;
  height: 100%;
  display: block;
}

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


#specialist
メガネの悩みの、最後の砦「眼鏡作製技能士」


///////////////////////////////////////////// */
#specialist {
  width: 100%;
  padding: 140px 0;
}
@media (max-width: 1024px) {
  #specialist {
    padding: min(26.6666666667vw, 133.3333333333px) 0;
  }
}
#specialist {
  position: relative;
  min-height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (max-width: 1024px) {
  #specialist {
    min-height: min(224vw, 1120px);
  }
}
#specialist .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../_img/specialist_bg.jpg) center center;
  background-size: cover;
  z-index: 1;
}
@media (max-width: 1024px) {
  #specialist .bg-image {
    background: url(../_img/specialist_bg_sp.jpg) center center;
    background-size: cover;
  }
}

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


#cta-section
CVボタン


///////////////////////////////////////////// */
#cta-section {
  width: 100%;
  padding: 140px 0;
}
@media (max-width: 1024px) {
  #cta-section {
    padding: min(26.6666666667vw, 133.3333333333px) 0;
  }
}
#cta-section {
  position: relative;
  width: 100%;
  text-align: center;
  padding: 0;
  background: url(../_img/cta_bg.png);
}
@media (max-width: 1024px) {
  #cta-section {
    padding: 0;
  }
}
#cta-section .notice {
  background: #718CC7;
  font-size: 14px;
  color: white;
  line-height: 1.6;
  padding: 14px 0;
  letter-spacing: 0.1em;
}
@media (max-width: 1024px) {
  #cta-section .notice {
    font-size: min(3.2vw, 16px);
    margin-bottom: min(5.3333333333vw, 26.6666666667px);
    padding: min(3.7333333333vw, 18.6666666667px);
    text-align: justify;
  }
}
#cta-section .wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}
#cta-section .wrapper .cta-message {
  font-size: 22px;
  color: #C90000;
  margin-top: 40px;
  letter-spacing: 0.1em;
}
@media (max-width: 1024px) {
  #cta-section .wrapper .cta-message {
    font-size: min(4.8vw, 24px);
    line-height: min(7.4666666667vw, 37.3333333333px);
    margin-bottom: min(2.6666666667vw, 13.3333333333px);
    letter-spacing: 0;
    margin-top: min(5.3333333333vw, 26.6666666667px);
  }
}
#cta-section .wrapper .cta-message .location-info {
  font-size: 18px;
  letter-spacing: 0;
}
@media (max-width: 1024px) {
  #cta-section .wrapper .cta-message .location-info {
    font-size: min(4.8vw, 24px);
    margin-top: min(4.2666666667vw, 21.3333333333px);
    margin-bottom: min(-2.6666666667vw, -13.3333333333px);
    font-weight: bold;
  }
  #cta-section .wrapper .cta-message .location-info .kigou {
    display: none;
  }
}
#cta-section .wrapper .cta-button {
  position: relative;
  display: block;
  background: #C90000;
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
  font-weight: bold;
  padding: 34px 100px 30px 100px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  #cta-section .wrapper .cta-button {
    font-size: min(4.2666666667vw, 21.3333333333px);
    padding: min(6.4vw, 32px) min(8vw, 40px);
    width: 90%;
    max-width: min(106.6666666667vw, 533.3333333333px);
  }
}
#cta-section .wrapper .cta-button:hover {
  background: #df0202;
}
#cta-section .wrapper .cta-button img {
  position: absolute;
  top: 54px;
  left: 30px;
}
@media (max-width: 1024px) {
  #cta-section .wrapper .cta-button img {
    display: none;
  }
}
#cta-section .wrapper .cta-button .sub-text {
  font-size: 24px;
  font-weight: bold;
}

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


#problem
資格なしで「誰でも」メガネが作れてしまう日本


///////////////////////////////////////////// */
#problem {
  width: 100%;
  padding: 140px 0;
}
@media (max-width: 1024px) {
  #problem {
    padding: min(26.6666666667vw, 133.3333333333px) 0;
  }
}
#problem {
  background: #fff;
}
#problem .con_h {
  width: 1050px;
  margin: 0 auto;
  margin-bottom: 80px;
}
#problem .con_h:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  #problem .con_h {
    width: calc(100% - min(12.8vw, 64px));
    margin: 0 min(6.4vw, 32px) min(12.2666666667vw, 61.3333333333px) min(6.4vw, 32px);
  }
}
#problem .con_h {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  #problem .con_h {
    margin-bottom: min(10.6666666667vw, 53.3333333333px);
  }
}
#problem .con_h .h1 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 50px;
  letter-spacing: 0.1em;
}
@media (max-width: 1024px) {
  #problem .con_h .h1 {
    font-weight: 700;
    font-size: min(6.4vw, 32px);
    line-height: min(10.1333333333vw, 50.6666666667px);
    letter-spacing: 0.06em;
  }
}
@media (max-width: 1024px) {
  #problem .con_h .h1 {
    text-align: left;
  }
}
#problem .con_text {
  width: 1050px;
  margin: 0 auto;
  margin-bottom: 80px;
}
#problem .con_text:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  #problem .con_text {
    width: calc(100% - min(12.8vw, 64px));
    margin: 0 min(6.4vw, 32px) min(12.2666666667vw, 61.3333333333px) min(6.4vw, 32px);
  }
}
#problem .con_text {
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  #problem .con_text {
    margin-bottom: min(10.6666666667vw, 53.3333333333px);
  }
}
#problem .con_text .text-wrapper {
  font-size: 18px;
  line-height: 2.4;
  text-align: center;
  letter-spacing: 0.1em;
}
@media (max-width: 1024px) {
  #problem .con_text .text-wrapper {
    font-size: min(4.2666666667vw, 21.3333333333px);
    line-height: 2;
    text-align: left;
  }
}
#problem .con_images {
  width: 1050px;
  margin: 0 auto;
  margin-bottom: 80px;
}
#problem .con_images:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  #problem .con_images {
    width: calc(100% - min(12.8vw, 64px));
    margin: 0 min(6.4vw, 32px) min(12.2666666667vw, 61.3333333333px) min(6.4vw, 32px);
  }
}
@media (max-width: 1024px) {
  #problem .con_images {
    margin-bottom: 0;
  }
}
#problem .con_images .images-wrapper {
  display: flex;
  gap: 30px;
}
@media (max-width: 1024px) {
  #problem .con_images .images-wrapper {
    flex-direction: column;
    gap: min(8vw, 40px);
  }
}
#problem .con_images .images-wrapper .image-box {
  flex: 1;
}
#problem .con_images .images-wrapper .image-box img {
  width: 100%;
  height: auto;
  display: block;
}
#problem .con_images .images-wrapper .image-box p {
  font-size: 15px;
  padding-top: 4px;
  text-align: center;
}
@media (max-width: 1024px) {
  #problem .con_images .images-wrapper .image-box p {
    font-size: min(3.7333333333vw, 18.6666666667px);
    line-height: 1.6;
    padding-top: min(1.6vw, 8px);
    text-align: justify;
  }
}

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


#gsg
全国約9,600人。あなたのお住まいの地域でも活躍しています


///////////////////////////////////////////// */
#gsg {
  width: 100%;
  padding: 140px 0;
}
@media (max-width: 1024px) {
  #gsg {
    padding: min(26.6666666667vw, 133.3333333333px) 0;
  }
}
#gsg {
  padding: 0;
}
#gsg .con_h {
  width: 1050px;
  margin: 0 auto;
  margin-bottom: 80px;
}
#gsg .con_h:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  #gsg .con_h {
    width: calc(100% - min(12.8vw, 64px));
    margin: 0 min(6.4vw, 32px) min(12.2666666667vw, 61.3333333333px) min(6.4vw, 32px);
  }
}
#gsg .con_h {
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  #gsg .con_h {
    margin-bottom: min(10.6666666667vw, 53.3333333333px);
  }
}
#gsg .con_h .h1 {
  font-size: 26px;
  line-height: 42px;
  letter-spacing: 0.1em;
}
@media (max-width: 1024px) {
  #gsg .con_h .h1 {
    font-size: min(4.8vw, 24px);
    line-height: min(8vw, 40px);
    letter-spacing: 0.06em;
  }
}
#gsg .con_h .h1 {
  color: #718CC7;
}
@media (max-width: 1024px) {
  #gsg .con_h .h1 {
    margin-bottom: min(-5.8666666667vw, -29.3333333333px);
  }
}
#gsg {
  /*
  1：2つの.wrapper内は必ず同じ内容を入れる

  2：下のテキストがない場合はphp側のテキストを.textタグごと削除するだけでいい

  3：.conを100%にする必要があるため
  結合時には.conタグからscssをコピペする

  4：スピードの調整方法について、例えば
  animation: loop 20s -10s linear infinite;
  の場合、20sの半分の値を-10sに書く
  */
}
#gsg .con_band_img-single {
  width: 1050px;
  margin: 0 auto;
  margin-bottom: 80px;
}
#gsg .con_band_img-single:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  #gsg .con_band_img-single {
    width: calc(100% - min(12.8vw, 64px));
    margin: 0 min(6.4vw, 32px) min(12.2666666667vw, 61.3333333333px) min(6.4vw, 32px);
  }
}
#gsg .con_band_img-single {
  width: 100%;
}
@media (max-width: 1024px) {
  #gsg .con_band_img-single {
    width: 100%;
    margin: 0;
  }
}
#gsg .con_band_img-single .band_img-single {
  display: flex;
  overflow-x: hidden;
}
#gsg .con_band_img-single .band_img-single .wrapper {
  width: 2464px;
  display: flex;
  padding: 0;
}
#gsg .con_band_img-single .band_img-single .wrapper:nth-child(odd) {
  animation: band_img-single 50s -25s linear infinite;
}
@media (max-width: 1024px) {
  #gsg .con_band_img-single .band_img-single .wrapper:nth-child(odd) {
    animation: band_img-single 50s -25s linear infinite;
  }
}
#gsg .con_band_img-single .band_img-single .wrapper:nth-child(even) {
  animation: band_img-single2 50s linear infinite;
}
@media (max-width: 1024px) {
  #gsg .con_band_img-single .band_img-single .wrapper:nth-child(even) {
    animation: band_img-single2 50s linear infinite;
  }
}
#gsg .con_band_img-single .band_img-single .wrapper .box {
  will-change: transform;
}
#gsg .con_band_img-single .band_img-single .wrapper .box .image {
  width: 224px;
  height: 305px;
}
@media (max-width: 1024px) {
  #gsg .con_band_img-single .band_img-single .wrapper .box .image {
    width: min(39.4666666667vw, 197.3333333333px);
    height: min(53.6vw, 268px);
  }
}
#gsg .con_band_img-single .band_img-single .wrapper .box .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@keyframes band_img-single {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes band_img-single2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}

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


#compar
メガネ作りは、誰に頼むかで結果が大きく変わります


///////////////////////////////////////////// */
#compar {
  width: 100%;
  padding: 140px 0;
}
@media (max-width: 1024px) {
  #compar {
    padding: min(26.6666666667vw, 133.3333333333px) 0;
  }
}
#compar {
  background: #EEE;
}
@media (max-width: 1024px) {
  #compar {
    padding-bottom: min(21.3333333333vw, 106.6666666667px);
  }
}
#compar .con_h {
  width: 1050px;
  margin: 0 auto;
  margin-bottom: 80px;
}
#compar .con_h:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  #compar .con_h {
    width: calc(100% - min(12.8vw, 64px));
    margin: 0 min(6.4vw, 32px) min(12.2666666667vw, 61.3333333333px) min(6.4vw, 32px);
  }
}
#compar .con_h {
  text-align: center;
  margin-bottom: min(8vw, 40px);
}
@media (max-width: 1024px) {
  #compar .con_h {
    text-align: left;
  }
}
#compar .con_h .h1 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 50px;
  letter-spacing: 0.1em;
}
@media (max-width: 1024px) {
  #compar .con_h .h1 {
    font-weight: 700;
    font-size: min(6.4vw, 32px);
    line-height: min(10.1333333333vw, 50.6666666667px);
    letter-spacing: 0.06em;
  }
}
#compar .con_h .h1 {
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  #compar .con_h .h1 {
    margin-bottom: min(10.6666666667vw, 53.3333333333px);
  }
}
#compar .con_h p {
  line-height: 2.4;
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  #compar .con_h p {
    font-size: min(4.2666666667vw, 21.3333333333px);
    line-height: 2;
    text-align: left;
    margin-bottom: min(16vw, 80px);
  }
}
#compar {
  /*
  ////////////////////////////////////////////// */
}
#compar .con_table_all {
  width: 1050px;
  margin: 0 auto;
  margin-bottom: 80px;
}
#compar .con_table_all:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  #compar .con_table_all {
    width: calc(100% - min(12.8vw, 64px));
    margin: 0 min(6.4vw, 32px) min(12.2666666667vw, 61.3333333333px) min(6.4vw, 32px);
  }
}
@media (max-width: 1024px) {
  #compar .con_table_all {
    width: 100%;
    margin-left: 0;
    overflow-x: scroll;
    overscroll-behavior-x: none;
  }
}
#compar .con_table_all .table_all table {
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
  border: 1px solid #718CC7;
}
@media (max-width: 1024px) {
  #compar .con_table_all .table_all table {
    border-collapse: separate;
    width: calc(min(154.6666666667vw, 773.3333333333px) + min(14.4vw, 72px));
    font-size: min(4vw, 20px);
    padding-right: min(14.4vw, 72px);
    border: none;
  }
}
@media (max-width: 1024px) {
  #compar .con_table_all .table_all table br {
    display: none;
  }
}
#compar .con_table_all .table_all table tr:first-child {
  color: #fff;
  text-align: center;
}
#compar .con_table_all .table_all table tr:first-child th {
  background: #718CC7;
  border-left: 1px solid #718CC7;
  font-weight: bold;
  padding: 20px;
}
#compar .con_table_all .table_all table tr:first-child .th-width {
  width: 220px;
  background: #718CC7;
  border-left: none;
}
@media (max-width: 1024px) {
  #compar .con_table_all .table_all table tr:first-child .th-width {
    width: min(25.6vw, 128px);
  }
}
#compar .con_table_all .table_all table tr:nth-child(even) {
  background: #fff;
}
#compar .con_table_all .table_all table tr:last-child {
  border-bottom: 1px solid #718CC7;
}
#compar .con_table_all .table_all table th {
  vertical-align: middle;
  border-bottom: 1px solid #718CC7;
  padding: 20px;
}
@media (max-width: 1024px) {
  #compar .con_table_all .table_all table th {
    padding: min(4.2666666667vw, 21.3333333333px);
    line-height: min(6.9333333333vw, 34.6666666667px);
  }
}
#compar .con_table_all .table_all table td {
  vertical-align: middle;
  border-left: 1px solid #718CC7;
  border-bottom: 1px solid #718CC7;
  padding: 20px;
}
@media (max-width: 1024px) {
  #compar .con_table_all .table_all table td {
    padding: min(4.2666666667vw, 21.3333333333px);
    line-height: min(6.9333333333vw, 34.6666666667px);
    text-align: left;
  }
}
@media (max-width: 1024px) {
  #compar .con_table_all .table_all table td:last-child {
    border-right: 1px solid #718CC7;
  }
}
#compar .con_table_all .table_all table {
  /* ------------------------------
  自社を太枠で囲む処理
  ------------------------------ */
}
#compar .con_table_all .table_all table th.me {
  border: 10px solid #C90000 !important;
  border-bottom: none !important;
  background: #C90000 !important;
  font-size: 18px;
}
@media (max-width: 1024px) {
  #compar .con_table_all .table_all table th.me {
    font-size: min(4.2666666667vw, 21.3333333333px);
  }
}
#compar .con_table_all .table_all table td.me {
  border-right: 10px solid #C90000 !important;
  border-left: 10px solid #C90000 !important;
  font-weight: 600;
  color: #C90000;
}
@media (max-width: 1024px) {
  #compar .con_table_all .table_all table td.me {
    border-left: none;
  }
}
#compar .con_table_all .table_all table td.me.last {
  border-bottom: 10px solid #C90000 !important;
}
@media (max-width: 1024px) {
  #compar .con_table_all .table_all table td.me.last {
    border-left: none;
  }
}
#compar .con_table_all .table_all table .sticky {
  background: #EAEFF8;
}
@media (max-width: 1024px) {
  #compar .con_table_all .table_all table .sticky {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1;
    border-right: 1px solid #718CC7;
    text-align: left;
  }
}

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


#people
あなたと同じ境遇の方が、すでに悩みを解決されています


///////////////////////////////////////////// */
#people {
  width: 100%;
  padding: 140px 0;
}
@media (max-width: 1024px) {
  #people {
    padding: min(26.6666666667vw, 133.3333333333px) 0;
  }
}
#people {
  padding: 0;
  background: #EEE;
}
@media (max-width: 1024px) {
  #people {
    padding: 0;
  }
}
#people .con_h {
  width: 1050px;
  margin: 0 auto;
  margin-bottom: 80px;
}
#people .con_h:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  #people .con_h {
    width: calc(100% - min(12.8vw, 64px));
    margin: 0 min(6.4vw, 32px) min(12.2666666667vw, 61.3333333333px) min(6.4vw, 32px);
  }
}
#people .con_h {
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  #people .con_h {
    margin-bottom: min(10.6666666667vw, 53.3333333333px);
  }
}
#people .con_h .h1 {
  font-size: 26px;
  line-height: 42px;
  letter-spacing: 0.1em;
}
@media (max-width: 1024px) {
  #people .con_h .h1 {
    font-size: min(4.8vw, 24px);
    line-height: min(8vw, 40px);
    letter-spacing: 0.06em;
  }
}
#people .con_h .h1 {
  color: #718CC7;
}
@media (max-width: 1024px) {
  #people .con_h .h1 {
    margin-bottom: min(-5.8666666667vw, -29.3333333333px);
  }
}
#people {
  /*
  1：2つの.wrapper内は必ず同じ内容を入れる

  2：下のテキストがない場合はphp側のテキストを.textタグごと削除するだけでいい

  3：.conを100%にする必要があるため
  結合時には.conタグからscssをコピペする

  4：スピードの調整方法について、例えば
  animation: loop 20s -10s linear infinite;
  の場合、20sの半分の値を-10sに書く
  */
}
#people .con_band_img-single {
  width: 1050px;
  margin: 0 auto;
  margin-bottom: 80px;
}
#people .con_band_img-single:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  #people .con_band_img-single {
    width: calc(100% - min(12.8vw, 64px));
    margin: 0 min(6.4vw, 32px) min(12.2666666667vw, 61.3333333333px) min(6.4vw, 32px);
  }
}
#people .con_band_img-single {
  width: 100%;
}
@media (max-width: 1024px) {
  #people .con_band_img-single {
    width: 100%;
    margin: 0;
  }
}
#people .con_band_img-single .band_img-single {
  display: flex;
  overflow-x: hidden;
}
#people .con_band_img-single .band_img-single .wrapper {
  width: 1700px;
  display: flex;
  padding: 0;
}
#people .con_band_img-single .band_img-single .wrapper:nth-child(odd) {
  animation: band_img-single 50s -25s linear infinite;
}
@media (max-width: 1024px) {
  #people .con_band_img-single .band_img-single .wrapper:nth-child(odd) {
    animation: band_img-single 50s -25s linear infinite;
  }
}
#people .con_band_img-single .band_img-single .wrapper:nth-child(even) {
  animation: band_img-single2 50s linear infinite;
}
@media (max-width: 1024px) {
  #people .con_band_img-single .band_img-single .wrapper:nth-child(even) {
    animation: band_img-single2 50s linear infinite;
  }
}
#people .con_band_img-single .band_img-single .wrapper .box {
  will-change: transform;
}
#people .con_band_img-single .band_img-single .wrapper .box .image {
  width: 1700px;
  height: 212px;
}
@media (max-width: 1024px) {
  #people .con_band_img-single .band_img-single .wrapper .box .image {
    width: min(360.5333333333vw, 1802.6666666667px);
    height: min(45.0666666667vw, 225.3333333333px);
  }
}
#people .con_band_img-single .band_img-single .wrapper .box .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@keyframes band_img-single {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes band_img-single2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}

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


#subject
眼鏡作製技能士が専門的に学んでいる科目


///////////////////////////////////////////// */
#subject {
  width: 100%;
  padding: 140px 0;
}
@media (max-width: 1024px) {
  #subject {
    padding: min(26.6666666667vw, 133.3333333333px) 0;
  }
}
#subject {
  background: url(../_img/subject_bg.png);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
@media (max-width: 1024px) {
  #subject {
    background: url(../_img/subject_bg_sp.jpg);
    background-attachment: scroll;
    background-size: min(26.6666666667vw, 133.3333333333px) auto;
    background-repeat: repeat;
  }
}
#subject .con_h {
  width: 1050px;
  margin: 0 auto;
  margin-bottom: 80px;
}
#subject .con_h:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  #subject .con_h {
    width: calc(100% - min(12.8vw, 64px));
    margin: 0 min(6.4vw, 32px) min(12.2666666667vw, 61.3333333333px) min(6.4vw, 32px);
  }
}
#subject .con_h {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  #subject .con_h {
    margin-bottom: min(16vw, 80px);
  }
}
#subject .con_h .h1 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 50px;
  letter-spacing: 0.1em;
}
@media (max-width: 1024px) {
  #subject .con_h .h1 {
    font-weight: 700;
    font-size: min(6.4vw, 32px);
    line-height: min(10.1333333333vw, 50.6666666667px);
    letter-spacing: 0.06em;
  }
}
#subject .con_h .h1 {
  color: #fff;
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  #subject .con_h .h1 {
    margin-bottom: min(10.6666666667vw, 53.3333333333px);
    text-align: left;
  }
}
#subject .con_h p {
  color: #fff;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  #subject .con_h p {
    font-size: min(4.2666666667vw, 21.3333333333px);
    line-height: 2;
    text-align: left;
  }
}
#subject {
  /*
  1：数を増やす時は.columnタグ単位で増やす

  2：2つ以上の時にスマホでフリックスライドにしたい時は、
  php側の.col3_allに.js-col-slide-spをマルチクラス。
  その際は各カラムでコンテンツの高さを同じにする（一番いものに合うため）

  3：js-col-slide-spのcssはad.scssに記載されている
  */
}
#subject .con_col3_all {
  width: 1050px;
  margin: 0 auto;
  margin-bottom: 80px;
}
#subject .con_col3_all:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  #subject .con_col3_all {
    width: calc(100% - min(12.8vw, 64px));
    margin: 0 min(6.4vw, 32px) min(12.2666666667vw, 61.3333333333px) min(6.4vw, 32px);
  }
}
#subject .con_col3_all {
  position: relative;
}
@media (max-width: 1024px) {
  #subject .con_col3_all {
    padding-bottom: min(10.6666666667vw, 53.3333333333px);
  }
}
#subject .con_col3_all .col3_all {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  #subject .con_col3_all .col3_all {
    display: block;
    width: 100%;
  }
}
#subject .con_col3_all .col3_all .column {
  box-sizing: border-box;
  width: calc((100% - 98px) / 3);
  margin-bottom: 80px;
  overflow: hidden;
}
#subject .con_col3_all .col3_all .column:nth-last-child(1) {
  margin-bottom: 0;
}
#subject .con_col3_all .col3_all .column:nth-last-child(2) {
  margin-bottom: 0;
}
#subject .con_col3_all .col3_all .column:nth-last-child(3) {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  #subject .con_col3_all .col3_all .column {
    width: 100%;
    margin-bottom: min(10.6666666667vw, 53.3333333333px);
  }
  #subject .con_col3_all .col3_all .column:nth-last-child(1) {
    margin-bottom: 0;
  }
  #subject .con_col3_all .col3_all .column:nth-last-child(2) {
    margin-bottom: min(10.6666666667vw, 53.3333333333px);
  }
  #subject .con_col3_all .col3_all .column:nth-last-child(3) {
    margin-bottom: min(10.6666666667vw, 53.3333333333px);
  }
}
#subject .con_col3_all .col3_all .column .wrapper .midashi1 {
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.1em;
}
@media (max-width: 1024px) {
  #subject .con_col3_all .col3_all .column .wrapper .midashi1 {
    font-size: min(4.5333333333vw, 22.6666666667px);
    line-height: min(7.4666666667vw, 37.3333333333px);
    letter-spacing: 0.06em;
  }
}
#subject .con_col3_all .col3_all .column .wrapper .midashi1 {
  color: #fff;
  text-align: left;
  padding: 14px 20px;
  background: #4A6AB1;
  font-weight: 400;
  margin-top: 40px;
  border-radius: 6px;
}
@media (max-width: 1024px) {
  #subject .con_col3_all .col3_all .column .wrapper .midashi1 {
    padding: min(3.7333333333vw, 18.6666666667px) min(5.3333333333vw, 26.6666666667px);
    margin-top: min(10.6666666667vw, 53.3333333333px);
  }
}
#subject .con_col3_all .col3_all .column .wrapper .midashi1:first-child {
  margin-top: 0;
}
#subject .con_col3_all .col3_all .column .wrapper .midashi2 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0;
  text-align: justify;
}
@media (max-width: 1024px) {
  #subject .con_col3_all .col3_all .column .wrapper .midashi2 {
    font-size: min(4vw, 20px);
    line-height: min(8vw, 40px);
  }
}
#subject .con_col3_all .col3_all .column .wrapper .midashi2 {
  text-align: left;
  padding: 12px 20px;
  border-radius: 6px;
  background: #DBE1EF;
  margin-top: 10px;
}
@media (max-width: 1024px) {
  #subject .con_col3_all .col3_all .column .wrapper .midashi2 {
    padding: min(3.2vw, 16px) min(5.3333333333vw, 26.6666666667px);
    margin-top: min(2.6666666667vw, 13.3333333333px);
  }
}
#subject .con_col3_all .obj {
  position: absolute;
  width: 459px;
  height: 267px;
  bottom: -140px;
  right: -80px;
}
@media (max-width: 1024px) {
  #subject .con_col3_all .obj {
    width: min(85.3333333333vw, 426.6666666667px);
    aspect-ratio: 459/267;
    height: auto;
    bottom: 0;
    right: min(-2.6666666667vw, -13.3333333333px);
    transform: translateY(53.5%);
  }
}
#subject .con_col3_all .obj img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

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


#movie
たとえば「フィッティング」。実際の技術研修をご覧ください


///////////////////////////////////////////// */
#movie {
  width: 100%;
  padding: 140px 0;
}
@media (max-width: 1024px) {
  #movie {
    padding: min(26.6666666667vw, 133.3333333333px) 0;
  }
}
#movie {
  background-image: url(../_img/movie_bg.jpg);
  background-size: cover;
  background-position: 50% 10%;
  background-repeat: no-repeat;
  position: relative;
}
#movie::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 0;
}
#movie > * {
  position: relative;
  z-index: 1;
}
#movie .con_h {
  width: 1050px;
  margin: 0 auto;
  margin-bottom: 80px;
}
#movie .con_h:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  #movie .con_h {
    width: calc(100% - min(12.8vw, 64px));
    margin: 0 min(6.4vw, 32px) min(12.2666666667vw, 61.3333333333px) min(6.4vw, 32px);
  }
}
#movie .con_h {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  #movie .con_h {
    margin-bottom: min(16vw, 80px);
  }
}
#movie .con_h .h1 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 50px;
  letter-spacing: 0.1em;
}
@media (max-width: 1024px) {
  #movie .con_h .h1 {
    font-weight: 700;
    font-size: min(6.4vw, 32px);
    line-height: min(10.1333333333vw, 50.6666666667px);
    letter-spacing: 0.06em;
  }
}
#movie .con_h .h1 {
  color: #fff;
}
@media (max-width: 1024px) {
  #movie .con_h .h1 {
    text-align: left;
  }
}
#movie .con {
  width: 1050px;
  margin: 0 auto;
  margin-bottom: 80px;
}
#movie .con:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  #movie .con {
    width: calc(100% - min(12.8vw, 64px));
    margin: 0 min(6.4vw, 32px) min(12.2666666667vw, 61.3333333333px) min(6.4vw, 32px);
  }
}
#movie .con {
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  #movie .con {
    margin-bottom: min(8vw, 40px);
  }
}
#movie .con div {
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  #movie .con div {
    width: 100%;
  }
}

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


#where
どこにいるの？


///////////////////////////////////////////// */
#where {
  width: 100%;
  padding: 140px 0;
}
@media (max-width: 1024px) {
  #where {
    padding: min(26.6666666667vw, 133.3333333333px) 0;
  }
}
#where {
  background: #EEE;
}
#where .con_h {
  width: 1050px;
  margin: 0 auto;
  margin-bottom: 80px;
}
#where .con_h:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  #where .con_h {
    width: calc(100% - min(12.8vw, 64px));
    margin: 0 min(6.4vw, 32px) min(12.2666666667vw, 61.3333333333px) min(6.4vw, 32px);
  }
}
#where .con_h {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  #where .con_h {
    margin-bottom: min(16vw, 80px);
  }
}
#where .con_h .h1 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 50px;
  letter-spacing: 0.1em;
}
@media (max-width: 1024px) {
  #where .con_h .h1 {
    font-weight: 700;
    font-size: min(6.4vw, 32px);
    line-height: min(10.1333333333vw, 50.6666666667px);
    letter-spacing: 0.06em;
  }
}
@media (max-width: 1024px) {
  #where .con_h .h1 {
    text-align: left;
  }
}
#where .con_images {
  width: 1050px;
  margin: 0 auto;
  margin-bottom: 80px;
}
#where .con_images:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  #where .con_images {
    width: calc(100% - min(12.8vw, 64px));
    margin: 0 min(6.4vw, 32px) min(12.2666666667vw, 61.3333333333px) min(6.4vw, 32px);
  }
}
#where .con_images {
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  #where .con_images {
    margin-bottom: min(8vw, 40px);
  }
}
#where .con_images .wrapper {
  width: 100%;
  display: flex;
  gap: 30px;
}
@media (max-width: 1024px) {
  #where .con_images .wrapper {
    flex-direction: column;
    gap: min(5.3333333333vw, 26.6666666667px);
  }
}
#where .con_images .wrapper .box {
  flex: 1;
  width: 281px;
  height: 183px;
}
@media (max-width: 1024px) {
  #where .con_images .wrapper .box {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  #where .con_images .wrapper .box:last-child {
    margin-top: min(5.3333333333vw, 26.6666666667px);
    font-size: min(4.2666666667vw, 21.3333333333px);
    line-height: 2;
  }
}
#where .con_images .wrapper .box img {
  width: 100%;
  height: auto;
  display: block;
}
#where .con_images .wrapper:last-child {
  margin-top: 120px;
}
@media (max-width: 1024px) {
  #where .con_images .wrapper:last-child {
    margin-top: min(10.6666666667vw, 53.3333333333px);
  }
}
#where .con_images .wrapper:last-child .sp {
  display: none;
}
@media (max-width: 1024px) {
  #where .con_images .wrapper:last-child .sp {
    display: block;
  }
}
@media (max-width: 1024px) {
  #where .con_images .wrapper:last-child .pc {
    display: none;
  }
}
#where .con_images .wrapper:last-child img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 1024px) {
  #where .con_images .wrapper:last-child img {
    display: none;
  }
}

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


#final-cta


///////////////////////////////////////////// */
#final-cta {
  width: 100%;
  padding: 140px 0;
}
@media (max-width: 1024px) {
  #final-cta {
    padding: min(26.6666666667vw, 133.3333333333px) 0;
  }
}
#final-cta {
  background: url(../_img/final-cta_1.jpg) center center;
  position: relative;
  width: 100%;
  text-align: center;
  padding: 30px 0;
}
@media (max-width: 1024px) {
  #final-cta {
    padding: min(10.6666666667vw, 53.3333333333px) min(5.3333333333vw, 26.6666666667px);
    background: url(../_img/final-cta_1_sp.jpg) center center;
    background-size: cover;
  }
}
#final-cta .notice {
  background: #718CC7;
  font-size: 14px;
  color: white;
  line-height: 1.6;
  padding: 14px 0;
  letter-spacing: 0.1em;
}
@media (max-width: 1024px) {
  #final-cta .notice {
    font-size: min(3.2vw, 16px);
    margin-bottom: min(5.3333333333vw, 26.6666666667px);
    padding: min(3.7333333333vw, 18.6666666667px);
    text-align: justify;
  }
}
#final-cta .wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}
#final-cta .wrapper .cta-message {
  font-size: 22px;
  color: #fff;
  margin-top: 40px;
  letter-spacing: 0.1em;
}
@media (max-width: 1024px) {
  #final-cta .wrapper .cta-message {
    font-size: min(4.8vw, 24px);
    line-height: min(7.4666666667vw, 37.3333333333px);
    margin-bottom: min(2.6666666667vw, 13.3333333333px);
    letter-spacing: 0;
    margin-top: min(5.3333333333vw, 26.6666666667px);
  }
}
#final-cta .wrapper .cta-message .location-info {
  font-size: 18px;
  letter-spacing: 0;
}
@media (max-width: 1024px) {
  #final-cta .wrapper .cta-message .location-info {
    font-size: min(4.8vw, 24px);
    margin-top: min(4.2666666667vw, 21.3333333333px);
    margin-bottom: min(-2.6666666667vw, -13.3333333333px);
    font-weight: bold;
  }
  #final-cta .wrapper .cta-message .location-info .kigou {
    display: none;
  }
}
#final-cta .wrapper .cta-button {
  display: block;
  position: relative;
  background: #C90000;
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
  font-weight: bold;
  padding: 34px 100px 30px 100px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  #final-cta .wrapper .cta-button {
    font-size: min(4.2666666667vw, 21.3333333333px);
    padding: min(6.4vw, 32px) min(8vw, 40px);
    width: 90%;
    max-width: min(106.6666666667vw, 533.3333333333px);
  }
}
#final-cta .wrapper .cta-button:hover {
  background: #df0202;
}
#final-cta .wrapper .cta-button img {
  position: absolute;
  top: 54px;
  left: 30px;
}
@media (max-width: 1024px) {
  #final-cta .wrapper .cta-button img {
    display: none;
  }
}
#final-cta .wrapper .cta-button .sub-text {
  font-size: 24px;
  font-weight: bold;
}

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


#footer


///////////////////////////////////////////// */
#footer {
  width: 100%;
  padding: 140px 0;
}
@media (max-width: 1024px) {
  #footer {
    padding: min(26.6666666667vw, 133.3333333333px) 0;
  }
}
#footer {
  padding: 0;
  /*
  今の所特に説明なし
  */
}
#footer .con_footer_normal .footer_normal {
  width: 100%;
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0;
  text-align: justify;
}
@media (max-width: 1024px) {
  #footer .con_footer_normal .footer_normal {
    font-size: min(3.7333333333vw, 18.6666666667px);
    line-height: min(6.9333333333vw, 34.6666666667px);
  }
}
#footer .con_footer_normal .footer_normal {
  line-height: 22px;
}
@media (max-width: 1024px) {
  #footer .con_footer_normal .footer_normal {
    line-height: min(5.8666666667vw, 29.3333333333px);
  }
}
#footer .con_footer_normal .footer_normal .etc-menu {
  width: 100%;
  background: #DBE1EF;
  padding: 30px 0;
}
@media (max-width: 1024px) {
  #footer .con_footer_normal .footer_normal .etc-menu {
    padding: 0;
  }
}
#footer .con_footer_normal .footer_normal .etc-menu .wrapper {
  display: table;
  width: 1050px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  #footer .con_footer_normal .footer_normal .etc-menu .wrapper {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
}
#footer .con_footer_normal .footer_normal .etc-menu .wrapper div {
  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 .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 .footer_normal .etc-menu .wrapper div {
    display: flex;
    width: 50%;
    align-items: center;
    padding: min(5.3333333333vw, 26.6666666667px) min(3.7333333333vw, 18.6666666667px);
    border: none;
    border-bottom: solid 1px rgba(0, 0, 0, 0.2);
  }
  #footer .con_footer_normal .footer_normal .etc-menu .wrapper div:last-child {
    border-bottom: none;
  }
  #footer .con_footer_normal .footer_normal .etc-menu .wrapper div:nth-child(odd) {
    border-right: solid 1px rgba(0, 0, 0, 0.2);
  }
}
#footer .con_footer_normal .footer_normal .etc-menu .wrapper div a {
  color: #000;
  text-decoration: none;
}
@media (max-width: 1024px) {
  #footer .con_footer_normal .footer_normal .etc-menu .wrapper div a {
    display: block;
    width: 100%;
  }
}
#footer .con_footer_normal .footer_normal .copyright-con {
  width: 100%;
  background: #718CC7;
}
#footer .con_footer_normal .footer_normal .copyright-con copyright {
  display: block;
  width: 1050px;
  margin: 0 auto;
  text-align: center;
  padding: 80px 0;
  color: #fff;
  letter-spacing: 0.2em;
}
@media (max-width: 1024px) {
  #footer .con_footer_normal .footer_normal .copyright-con copyright {
    width: calc(100% - min(21.3333333333vw, 106.6666666667px));
    padding: min(21.3333333333vw, 106.6666666667px) 0;
  }
}/*# sourceMappingURL=index.css.map */