/* @font-face {
    font-family: 'notoSans';
    src:url('../font/NotoSansJP-Black.otf') format('opentype');
} */

/* box-sizing: border-box;を設定 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* フォントサイズの拡大を防ぐ */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* デフォルトのマージンを削除、作成するCSSの制御を改善するため */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
img,
a,
section,
ul,
li,
small,
label,
input,
table,
tbody,
td,
th,
tr,
textarea {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
}

/* リストのスタイルを削除、これはデフォルトのスタイルが削除されることを示唆します */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

/* 内部リンクアニメーション */
html {
  scroll-behavior: smooth;
}

/* bodyのデフォルトを設定 */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* 見出しやインタラクティブ要素のline-heightを設定 */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

/* 見出しのテキスト折り返しをbalanceに設定 */
h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

/* classを持たないa要素はデフォルトのスタイルを継承 */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* 画像の扱いを簡単にする */
img,
picture {
  max-width: 100%;
  display: block;
}

/* inputやbuttonなどのfontは継承 */
input,
button,
textarea,
select {
  font: inherit;
}

/* rows属性のないtextareasが小さくならないようにする */
textarea:not([rows]) {
  min-height: 10em;
}

/* アンカーされている要素には余分なスクロールマージンが必要 */
:target {
  scroll-margin-block: 5ex;
}

/* 自動改行 */
.auto_line {
  display: inline-block;
}

.new_line {
  display: block;
}

/* スマホUI削除 */
.sp {
  display: none;
}

/* jsアニメーション */
.slidein {
  transform: translateX(0%) !important;
  transition: all 0.3s;
}

.back_color {
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: 0.2s;
}

#splash {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  background: #f6f6f6;
  text-align: center;
  color: #fff;
}

#splash_text {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 999;
  width: 100%;
  transform: translate(-50%, -50%);
  color: #fff;
}

/* グローバル変数  */
:root {
  --pc-text-size1: 16px;
  --pc-text-size2: 24px;
  --pc-text-size3: 36px;
  --pc-text-size4: 48px;
  --font-weight: 700;
  --font-family: "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic",
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo",
    sans-serif;
  --main-color: #e5001c;
  --sub-color: #fde6e9;
  --cta-color: #ff8c00;
  --back-color: #f6f6f6;
  --pc-main-gutter: 120px;
}

/* 背景矢印　装飾*/
.back_arrow {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.back_arrow .swiper2 {
  max-width: 100vw;
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.back_arrow .swiper2 .swiper-wrapper {
  transition-timing-function: linear;
}

.back_arrow .swiper2 p {
  color: transparent;
  font-size: var(--pc-text-size4);
  font-weight: bold;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  text-stroke: 0.5px rgba(229, 0, 28, 0.05);
  -webkit-text-stroke: 0.5px rgba(229, 0, 28, 0.05);
}

.back_arrow picture img {
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .back_arrow .swiper2 p {
    font-size: var(--pc-text-size3);
  }
}

/* 見出しテキスト */
.head_text {
  margin: 0 auto;
  text-align: center;
}

.head_text p {
  display: block;
  width: 230px;
  line-height: 70px;
  margin: 0 auto;
  background-size: contain;
  background-position: 50% 70%;
  background-repeat: no-repeat;
  background-image: url(../../common/img/mydan/hukidasi_flame1.png);
  font-size: var(--pc-text-size1);
  font-weight: 600;
}

.head_text h2 {
  display: inline-block;
  position: relative;
  font-size: var(--pc-text-size3);
  font-weight: var(--font-weight);
  transform: translateX(20px);
  z-index: 1;
}

.head_text .col_r {
  color: var(--main-color);
}

.head_text h2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -48px;
  transform: translateY(-60%);
  width: 42px;
  height: 42px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  .head_text h2 {
    font-size: var(--pc-text-size2);
    transform: translateX(8px);
  }

  .head_text h2::before {
    width: 30px;
    height: 30px;
    left: -34px;
    transform: translateY(-60%);
  }
}

/* ヘッダー */

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 85px;
  position: fixed;
  z-index: 99;
  transition: 0.2s;
}

header .logo {
  display: block;
  width: 150px;
  margin: 0 20px 0 55px;
}

header .logo img {
  width: 100%;
  object-fit: contain;
}

header .menu_right {
  display: flex;
  justify-content: center;
  align-items: center;
}

header .menu_right a {
  text-decoration: none;
  font-size: 14px;
  font-family: var(--font-family);
  font-weight: var(--font-weight);
}

header .menu_right a:hover {
  text-decoration: underline;
}

header .menu_right .separate_tab::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 10px;
  background-image: url(../../common/img/mydan/window_b_icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(2px);
}

header .menu_right ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
}

header .menu_right li {
  min-width: 84px;
  margin-right: 30px;
}

header .menu_right li a {
  color: black;
}

header .menu_right .h_cta {
  display: block;
  width: 215px;
  line-height: 70px;
  margin-right: 30px;
  text-align: center;
  /* color: #fff; */
  color: #666;
  /* background: var(--cta-color); */
  border-radius: 3px;
  background-color: #999;
  pointer-events: none;
}

header .h_cta {
  /* border: var(--cta-color) 2px solid; */
  transition: all 0.2s;
}

header .h_cta:hover {
  /* background-color: transparent;
  color: var(--cta-color); */
  text-decoration: none !important;
}

@media (max-width: 768px) {
  header {
    height: 60px;
  }
  header .logo {
    width: 100px;
    margin: 0 auto;
  }

  header .pc {
    display: none;
  }

  header .btn_ham_toggle {
    display: block;
    width: 60px;
    height: 60px;
    background-color: var(--main-color);
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
  }

  header .btn_ham_toggle button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: none;
    position: relative;
    z-index: 1;
  }

  .btn_ham_toggle .ham_line {
    display: inline-block;
    transition: all 0.4s; /*アニメーションの設定*/
    position: absolute;
    left: 16px;
    height: 3px;
    background: #fff;
    width: 45%;
  }

  .btn_ham_toggle .ham_line:nth-of-type(1) {
    top: 20px;
  }

  .btn_ham_toggle .ham_line:nth-of-type(2) {
    top: 28px;
  }

  .btn_ham_toggle .ham_line:nth-of-type(3) {
    top: 36px;
  }

  header .ham_active .ham_line:nth-of-type(1) {
    top: 22px;
    left: 21px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }

  header .ham_active .ham_line:nth-of-type(2) {
    opacity: 0;
  }

  header .ham_active .ham_line:nth-of-type(3) {
    top: 34px;
    left: 21px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }

  .hamu_menu {
    display: block;
    position: fixed;
    width: 100%;
    height: 100vh;
    padding: 0 20px;
    background-color: white;
    z-index: 98;
    transform: translateX(100%);
    transition: all 0.3s;
  }

  .hamu_menu .header_sp_menu {
    margin-top: 90px;
  }

  .hamu_menu .header_sp_menu ul {
    list-style: none;
  }

  .hamu_menu .header_sp_menu li {
    font-size: 14px;
    font-weight: var(--font-weight);
    margin-bottom: 20px;
  }

  .header_sp_menu li a {
    color: #000;
    text-decoration: none;
  }

  .header_sp_menu li .separate_tab::after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 10px;
    background-image: url(../../common/img/mydan/window_b_icon.png);
    background-repeat: no-repeat;
    background-size: contain;
    transform: translateY(2px);
  }

  .hamu_menu .header_cta_block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 50px;
    padding: 30px 0;
    border-top: #999 1px solid;
    border-bottom: #999 1px solid;
  }

  .header_cta_block .header_cta_text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .header_cta_block .header_cta_text h2 {
    position: relative;
    margin: 20px auto 10px;
    font-size: var(--pc-text-size1);
    color: var(--main-color);
    z-index: 1;
  }

  .header_cta_block .header_cta_text h2::before,
  .header_cta_block .header_cta_text h2::after {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    right: -28px;
    transform: translateY(-50%);
    background-image: url(../../common/img/mydan/hukidasi_s.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
  }

  .header_cta_block .header_cta_text h2::after {
    left: -28px;
    right: auto;
    transform: translateY(-50%) scale(-1, 1);
  }

  .header_cta_block .header_cta_text p {
    font-size: 14px;
    font-weight: var(--font-weight);
  }

  .header_cta_block .header_cta_text p:nth-of-type(1) {
    max-width: 240px;
    padding: 10px;
    color: var(--main-color);
    outline: var(--main-color) 1.5px solid;
  }

  .header_cta_block .h_cta {
    width: 265px;
    line-height: 70px;
    margin-top: 20px;
    color: white;
    font-size: var(--pc-text-size1);
    font-weight: var(--font-weight);
    background-color: var(--cta-color);
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
  }

  .hamu_menu .footer_sp_menu {
    width: 100%;
    margin-top: 50px;
  }

  .hamu_menu .footer_sp_menu ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
  }

  .hamu_menu .footer_sp_menu li {
    display: block;
    font-size: 12px;
    margin: 0 20px 8px 0;
    font-weight: 500;
  }
}

/* FV */
.fv {
  width: 100%;
  height: 100lvh;
  display: flex;
  align-items: center;
}

.fv_container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fv .contents_l {
  width: 50%;
  height: 100lvh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-image: url(../../common/img/mydan/fv_back_img.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.fv .contents_l .logo_img {
  width: 50%;
  min-width: 180px;
}

.fv .contents_l .fv_headtext {
  display: block;
  width: max-content;
  margin-top: 24px;
  font-size: 80px;
  font-weight: 900;
  font-family: "notoSans", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic",
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo",
    sans-serif;
  background-image: url(../../common/img/mydan/fv_deco_img.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: relative;
  z-index: 1;
}

.fv .fv_headtext .new_line {
  display: block;
  width: max-content;
  background-color: #fff;
  line-height: 1.4;
  padding: 0 4px;
  margin-top: 10px;
}

.fv .fv_headtext .col_r {
  color: var(--main-color);
}

.fv .fv_headtext .small {
  font-size: var(--pc-text-size4);
}

.fv .contents_l .fv_box_img {
  position: absolute;
  width: 28%;
  height: 28%;
  object-fit: contain;
  right: 0;
  bottom: -10px;
  z-index: 2;
}

.fv .contents_r {
  width: 50%;
  height: 100lvh;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  background-image: url(../../common/img/mydan/fv_human_pc_img.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 80%;
}

.fv .contents_r .fv_text_content {
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.fv .fv_text_content .fv_text_img {
  max-width: 260px;
  object-fit: contain;
  margin-right: -16px;
}

.fv .fv_text_content .fv_text_img:nth-last-of-type(1) {
  margin-right: 0;
}

.fv .cta_section {
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 32px 0 40px;
}

.fv .pdf_btn,
.fv .cta_btn {
  max-width: 360px;
  width: 100%;
  border-radius: 3px;
  text-decoration: none;
  text-align: center;
  font-weight: var(--font-weight);
}

.fv .pdf_btn {
  padding: 24px 8px;
  color: var(--main-color);
  background-color: white;
  outline: 2px solid var(--main-color);
  margin-right: 20px;
  transition: 0.2s;
}

.fv .pdf_btn:hover {
  color: white;
  background-color: var(--main-color);
}

.fv .cta_btn {
  padding: 12px 18px;
  /* color: #fff; */
  /* background-color: var(--cta-color);
  border: var(--cta-color) 2px solid; */
  color: #444;
  background-color: #666;
  transition: all 0.2s;
  pointer-events: none;
}

.fv .cta_btn .cta_hukidasi {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  font-size: var(--pc-text-size2);
}

.fv .cta_btn .cta_hukidasi .small {
  margin-left: 3px;
  font-size: var(--pc-text-size1);
}

.fv .cta_btn .cta_hukidasi::before {
  content: "";
  display: block;
  width: 2px;
  height: 30px;
  /* background-color: #fff; */
  background-color: #444;
  margin-right: 20px;
  transform: rotate(-35deg);
}

.fv .cta_btn .cta_hukidasi::after {
  content: "";
  display: block;
  width: 2px;
  height: 30px;
  /* background-color: #fff; */
  background-color: #444;
  margin-left: 20px;
  transform: rotate(35deg);
  transition: all 0.2s;
}

.fv .cta_btn:hover .cta_hukidasi::before {
  background-color: var(--cta-color);
}

.fv .cta_btn:hover .cta_hukidasi::after {
  background-color: var(--cta-color);
}

.fv .cta_btn:hover {
  background-color: white;
  color: var(--cta-color);
}

@media (max-width: 1366px) {
  .fv .contents_l .fv_headtext {
    font-size: var(--pc-text-size4);
  }

  .fv .fv_headtext .small {
    font-size: var(--pc-text-size3);
  }
}

@media (max-width: 768px) {
  .fv {
    height: auto;
  }

  .fv_container {
    width: 100%;
    flex-direction: column;
    overflow-x: hidden;
  }

  .fv .contents_l {
    width: 100%;
    height: 475px;
    justify-content: flex-start;
    align-items: flex-start;
    background-image: url(../../common/img/mydan/fv_human_img.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right top;
  }

  .fv .contents_l .logo_img {
    display: none;
  }

  .fv .contents_l .fv_headtext {
    margin-top: 68px;
    background-image: none;
  }

  .fv .fv_headtext .new_line {
    font-size: var(--pc-text-size3);
  }

  .fv .fv_headtext .small {
    font-size: var(--pc-text-size2);
  }

  .fv .contents_l .fv_box_img {
    display: none;
  }

  .fv .contents_r {
    width: calc(100% + 6px);
    height: auto;
    justify-content: flex-start;
    margin-top: -60px;
    border: solid 3px var(--main-color);
    border-bottom: none;
    border-radius: 48px 48px 0 0;
    background-image: url(../../common/img/mydan/fv_sp_back.jpg);
    background-color: rgba(255, 255, 255, 0.8);
    background-blend-mode: lighten;
  }

  .fv .contents_r .fv_text_content {
    width: 92%;
    margin-top: 60px;
  }

  .fv .fv_text_content .fv_text_img:nth-last-of-type(2) {
    transform: translateY(-20px);
  }

  .fv .cta_section {
    margin-bottom: 60px;
  }

  .fv .cta_btn .cta_hukidasi {
    font-size: var(--pc-text-size1);
  }

  .fv .cta_btn .cta_hukidasi .small {
    font-size: var(--pc-text-size1);
  }

  .fv .pdf_btn,
  .fv .cta_btn {
    font-size: var(--pc-text-size1);
  }

  .fv .cta_btn {
    padding: 16px 8px;
  }
}

@media (max-width: 480px) {
  .fv .contents_l {
    height: 400px;
  }

  .fv .fv_headtext .new_line {
    font-size: 32px;
  }

  .fv .fv_headtext .small {
    font-size: 22px;
  }

  .fv .cta_btn .cta_hukidasi .small {
    font-size: 14px;
  }

  .fv .pdf_btn,
  .fv .cta_btn {
    font-size: 14px;
  }

  .fv .pdf_btn {
    padding: 15px 8px;
  }

  .fv .cta_btn {
    padding: 10px 8px;
  }

  .fv .cta_btn .cta_hukidasi {
    margin-bottom: 5px;
  }

  .fv .cta_btn .cta_hukidasi::before {
    height: 20px;
    margin-right: 10px;
  }

  .fv .cta_btn .cta_hukidasi::after {
    height: 20px;
    margin-left: 10px;
  }
}

@media (max-width: 1024px) and (min-height: 1081px) {
  .fv .contents_r {
    background-position: 65%;
  }

  .fv .cta_section {
    margin-bottom: 110px;
  }

  .fv .fv_text_content .fv_text_img {
    margin-right: -75px;
  }

  .fv .fv_text_content .fv_text_img:nth-last-of-type(2) {
    transform: translateY(-100px);
  }
}

/* section1 */

.section1 {
  background-color: #f6f6f6;
  padding-top: 170px;
}

.section1 .container1 {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.section1 p {
  font-weight: var(--font-weight);
}

.section1 p span {
  display: inline-block;
}

.section1 .req_container {
  display: flex;
  justify-content: space-around;
  align-content: center;
  position: relative;
  z-index: 2;
  transform: translateY(-20px);
}

.section1 .req_container .req_content {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 215px;
  height: 215px;
  padding: 15px;
  border-radius: 50%;
  background-color: white;
}

.section1 .req_container .req_content:nth-of-type(2) {
  transform: translateY(-50px);
}

.section1 h2 {
  display: inline-block;
  position: relative;
  padding: 0 10px;
  margin-top: 60px;
  font-size: var(--pc-text-size2);
  line-height: 3;
  background-color: white;
  z-index: 2;
}

.section1 h2:nth-of-type(1) {
  margin: 0 auto 140px;
}

.section1 h2 .col_r {
  position: relative;
  color: var(--main-color);
  z-index: 1;
}

.section1 h2 .col_r:nth-of-type(1) {
  margin-left: 20px;
}

.section1 h2 .col_r:nth-last-of-type(1) {
  margin-right: 20px;
}

.section1 h2 .col_r::after {
  content: "";
  width: 5px;
  height: 5px;
  background-color: var(--main-color);
  border-radius: 50%;
  position: absolute;
  top: -10px;
  right: 0;
  left: 0;
  margin: 0 auto;
}

.section1 .qes_container {
  position: relative;
  z-index: 1;
  transform: translateY(-20px);
}

.section1 .qes_block {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 60px;
}

.section1 .qes_container .qes_content {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  width: 215px;
  height: 215px;
  background-image: url(../../common/img/mydan/back_flame.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
}

.section1 .qes_container .qes_content:nth-of-type(2) {
  transform: translateY(50px);
}

.section1 .qes_container .qes_content::after {
  content: "";
  position: absolute;
  width: 0;
  height: 300px;
  border-right: #e5001c 3px dotted;
  right: 0;
  left: 0;
  margin: 0 auto;
  transform: translateY(-235px);
  opacity: 0.4;
  z-index: 1;
}

.section1 .qes_container .sp {
  display: none;
}

.qes_content_text {
  padding-bottom: 40px;
  margin-top: 70px;
  font-size: var(--pc-text-size2);
  font-weight: var(--font-weight);
}

.section1_text {
  max-width: 1100px;
  margin: 60px auto 0;
}

.section1_text p {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--pc-text-size2);
  font-weight: var(--font-weight);
}

.section1_text p img {
  max-width: 200px;
  width: 100%;
  padding: 5px;
  margin: 0 20px;
  background-color: var(--main-color);
}

@media (max-width: 768px) {
  .section1 {
    padding-top: 80px;
  }

  .section1 .container1 {
    padding: 0 10px;
  }

  .section1 .req_container {
    flex-direction: column;
  }

  .section1 .req_container .req_content {
    width: 100%;
    height: auto;
    border-top: var(--main-color) dotted 1.5px;
    border-radius: inherit;
    justify-content: left;
    text-align: left;
  }

  .section1 .req_container .req_content:nth-of-type(2) {
    transform: translateY(0);
  }

  .section1 .req_container .req_content:nth-of-type(3) {
    border-bottom: var(--main-color) dotted 1.5px;
  }

  .req_container .req_content p {
    position: relative;
    padding-left: 15px;
    font-size: var(--pc-text-size1);
    z-index: 1;
  }

  .req_container .req_content p::before {
    content: "・";
    position: absolute;
    top: -1px;
    left: -2px;
    font-size: var(--pc-text-size1);
    color: var(--main-color);
    z-index: 1;
  }

  .section1 h2 {
    font-size: 18px;
  }

  .section1 h2:nth-of-type(1) {
    margin: 0 auto 80px;
  }

  .section1 .qes_container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .section1 .qes_block {
    width: 100%;
  }

  .section1 .qes_container .qes_content {
    max-width: 215px;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .qes_container .qes_content p {
    font-size: 14px;
  }

  .section1 .qes_container .pc {
    display: none;
  }

  .section1 .qes_container .sp {
    display: flex;
    width: 50%;
    margin-left: 0 !important;
    transform: translateY(-40px) !important;
  }

  .section1 .qes_container .sp::after {
    height: 400px;
    transform: translateY(-68%) !important;
  }

  .section1 .qes_container .qes_content::after {
    border-right: #e5001c 1.5px dotted;
    transform: translateY(-73%);
  }

  .section1 .qes_container .qes_content:nth-of-type(2) {
    margin-left: 20px;
    transform: translateY(0);
  }

  .qes_content_text {
    margin-top: 0;
    font-size: var(--pc-text-size1);
  }

  .section1_text {
    margin-top: 30px;
  }

  .section1_text p {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .section1_text p img {
    margin: 20px 0;
  }
}

/* section2 */

.section2 {
  margin-top: 120px;
}

.section2 .container2 {
  max-width: 1100px;
  margin: 0 auto;
}

.container2 .head_text h2::before {
  background-image: url(../../common/img/mydan/light_icon.png);
}

.container2 .merit_contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-top: 70px;
  list-style-type: none;
}

.container2 .merit_contents::after {
  content: "";
  width: 100%;
  height: calc(100% + 120px);
  position: absolute;
  background-image: url(../../common/img/mydan/Arrow1.png);
  background-position: 85%;
  background-size: contain;
  background-repeat: no-repeat;
}

.container2 .merit_contents li {
  max-width: 900px;
  width: 100%;
  position: relative;
  padding: 0 60px 60px;
  margin-top: 60px;
  border-bottom: 3px dotted var(--main-color);
}

.merit_contents li h3 {
  position: relative;
  font-size: var(--pc-text-size2);
  z-index: 1;
}

.container2 .merit_contents h3:nth-of-type(1) {
  margin-top: 0;
}

.container2 .merit_contents h3::before {
  position: absolute;
  top: 50%;
  left: -40px;
  transform: translateY(-50%);
  color: var(--main-color);
  font-size: var(--pc-text-size3);
  font-style: oblique;
  z-index: 1;
}

.container2 .merit_contents li:nth-of-type(1) h3::before {
  content: "1.";
}

.container2 .merit_contents li:nth-of-type(2) h3::before {
  content: "2.";
}

.container2 .merit_contents li:nth-of-type(3) h3::before {
  content: "3.";
}

.merit_contents li p {
  margin-top: 20px;
  font-weight: 500;
}

.merit_contents li .col_r {
  color: var(--main-color);
}

@media (max-width: 768px) {
  .section2 {
    margin-top: 80px;
  }

  .section2 .container2 {
    padding: 0 10px;
  }

  .merit_contents li h3 {
    font-size: var(--pc-text-size1);
    line-height: 1.6;
  }

  .container2 .merit_contents h3::before {
    font-size: 18px;
    top: 11px;
    left: -20px;
  }

  .container2 .merit_contents::after {
    background-position: 95%;
  }

  .container2 .merit_contents {
    margin-top: 20px;
  }

  .container2 .merit_contents li {
    padding: 0 20px 40px;
    margin-top: 40px;
  }

  .merit_contents li p {
    margin-top: 10px;
    font-size: var(--pc-text-size1);
    line-height: 1.6;
  }
}

/* section3 */

.section3 {
  background-color: var(--sub-color);
}

.section3 .container3 {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.section3 .container3 h2 {
  padding-top: 60px;
  font-size: var(--pc-text-size2);
  font-weight: var(--font-weight);
}

.container3 h2 .col_r {
  color: var(--main-color);
}

.container3 .contents3 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px auto;
}

.container3 .contents3 div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 380px;
  width: 100%;
  aspect-ratio: 12 / 9;
  background-image: url(../../common/img/mydan/back_flame.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.container3 .contents3 img {
  width: 30px;
  height: 30px;
  transform: translateY(-30px);
}

.container3 .contents3 h3 {
  position: relative;
  margin: 30px 0 10px;
  color: var(--main-color);
  font-size: var(--pc-text-size2);
  transform: translateY(-30px);
  z-index: 1;
}

.container3 .contents3 h3::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  top: -10px;
  right: -15px;
  background-image: url(../../common/img/mydan/deco_icon.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}

.contents3 p {
  display: block;
  max-width: 280px;
  width: 90%;
  padding-top: 10px;
  border-top: 1px solid var(--main-color);
  font-size: var(--pc-text-size1);
  font-weight: 500;
  transform: translateY(-30px);
}

.contents3 p span {
  font-weight: var(--font-weight);
}

.container3 .container3_text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 120px;
  font-weight: var(--font-weight);
}

.container3 .container3_text span {
  position: relative;
  height: 30px;
  color: var(--main-color);
  font-size: var(--pc-text-size2);
  border-bottom: 3px solid rgba(229, 0, 28, 0.4);
  margin: 0 5px;
  padding: 0 10px 5px;
  z-index: 1;
}

.container3 .container3_text span::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 176px;
  right: 0;
  left: 0;
  top: calc(100% + 2px);
  margin: 0 auto;
  border-left: 3px solid rgba(229, 0, 28, 0.4);
}

.container3 .container3_text span::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  top: -10px;
  right: -5px;
  background-image: url(../../common/img/mydan/deco_icon.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}

@media (max-width: 768px) {
  .section3 .container3 {
    padding: 0 10px 60px;
  }

  .section3 .container3 h2 {
    padding-top: 30px;
    font-size: var(--pc-text-size1);
  }

  .container3 .contents3 {
    margin-top: 60px;
    margin-bottom: 30px;
  }

  .container3 .contents3 h3 {
    margin-bottom: 0;
    font-size: var(--pc-text-size1);
  }

  .container3 .contents3 h3::after {
    display: none;
  }

  .container3 .contents3 div {
    padding: 10px;
  }

  .container3 .contents3 .ser_content2 {
    margin-left: 20px;
  }

  .contents3 p {
    font-size: 14px;
  }

  .container3 .container3_text {
    width: max-content;
    margin: 0 auto;
    flex-direction: column;
    outline: 1.5px solid rgba(229, 0, 28, 0.4);
    padding: 15px;
  }

  .container3 .container3_text p {
    font-size: 14px;
  }

  .container3 .container3_text span {
    display: block;
    padding: 0;
    margin: 0;
    font-size: 18px;
    border: none;
  }

  .container3 .container3_text span::before {
    display: none;
  }

  .container3 .container3_text span::after {
    display: none;
  }
}

/* section4 */

.section4 {
  margin-top: 60px;
}

.section4 .container4 {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.section4 .container4 .border {
  width: calc(100% / 3 * 2 + 23px);
  margin: 0 auto;
  border-top: 3px solid rgba(229, 0, 28, 0.4);
}

.container4 .design_block {
  display: flex;
  justify-content: center;
  padding-top: 60px;
}

.design_block .design_content {
  width: 100%;
  max-width: 380px;
  position: relative;
  border: 3px solid rgba(229, 0, 28, 0.4);
  margin-right: 30px;
  z-index: 1;
}

.design_block .design_content::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 61px;
  right: 0;
  left: 0;
  top: -63px;
  margin: 0 auto;
  border-left: 3px solid rgba(229, 0, 28, 0.4);
}

.design_block .design_content:nth-last-of-type(1) {
  margin-right: 0;
}

.design_block .triangle {
  width: 0px;
  height: 0px;
  margin-top: 5px;
  margin-left: 5px;
  border-style: solid;
  border-width: 30px 30px 0 0;
  border-color: var(--main-color) transparent transparent transparent;
}

.design_block h3 {
  font-size: var(--pc-text-size2);
  margin-top: 20px;
  color: var(--main-color);
  text-align: center;
}

.design_block p {
  padding: 0 20px;
  margin: 30px 0;
  font-weight: 500;
}

.design_block img {
  position: absolute;
  width: 30px;
  height: 30px;
  bottom: 10px;
  right: 10px;
  z-index: 1;
}

.container4 .induction_block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}

.induction_block .induction_text1 span {
  font-weight: var(--font-weight);
}

.induction_block .arrow {
  width: 0;
  height: 0;
  margin: 40px auto 0;
  border-style: solid;
  border-width: 50px 50px 0 50px;
  border-color: var(--main-color) transparent transparent transparent;
}

.container4 .induction_block p {
  text-align: center;
  font-size: var(--pc-text-size1);
  font-weight: 500;
}

.induction_block .induction_text2 {
  text-align: center;
  margin-top: 40px;
}

.induction_block .induction_text2 h3 {
  display: block;
  width: max-content;
  margin: 0 auto;
  font-size: var(--pc-text-size2);
  color: var(--main-color);
  position: relative;
  z-index: 1;
}

.induction_block .induction_text2 h3::before {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: -48px;
  transform: translateY(-50%) scale(-1, 1);
  background-image: url(../../common/img/mydan/hukidasi_s.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}

.induction_block .induction_text2 h3::after {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  right: -48px;
  transform: translateY(-50%);
  background-image: url(../../common/img/mydan/hukidasi_s.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}

.induction_block .induction_text2 p {
  font-size: var(--pc-text-size1);
  font-weight: 500;
  margin-top: 10px;
}

.container4 .induction_block .cta_btn {
  width: 100%;
  max-width: 500px;
  padding: 10px 0;
  margin-top: 30px;
  /* color: #fff; */
  color:#666;
  font-weight: var(--font-weight);
  text-align: center;
  /* background-color: var(--cta-color);
  border: var(--cta-color) 2px solid; */
  background-color: #999;
  pointer-events: none;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.2s;
}

.container4 .induction_block .cta_btn .cta_hukidasi {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  font-size: var(--pc-text-size2);
}

.container4 .induction_block .cta_btn .cta_hukidasi .small {
  margin-left: 3px;
  font-size: var(--pc-text-size1);
}

.container4 .induction_block .cta_btn .cta_hukidasi::before {
  content: "";
  display: block;
  width: 2px;
  height: 30px;
  /* background-color: #fff; */
  background-color: #666;
  margin-right: 20px;
  transform: rotate(-35deg);
}

.container4 .induction_block .cta_btn .cta_hukidasi::after {
  content: "";
  display: block;
  width: 2px;
  height: 30px;
  /* background-color: #fff; */
  background-color: #666;
  margin-left: 20px;
  transform: rotate(35deg);
  transition: all 0.2s;
}

.container4 .induction_block .cta_btn:hover .cta_hukidasi::before {
  background-color: var(--cta-color);
}

.container4 .induction_block .cta_btn:hover .cta_hukidasi::after {
  background-color: var(--cta-color);
}

.container4 .induction_block .cta_btn .cta_hukidasi::before {
  content: "";
  width: 2px;
  height: 40px;
  /* background-color: #fff; */
  background-color: #666;
  transform: rotate(-35deg);
}

.container4 .induction_block .cta_btn .cta_hukidasi::after {
  content: "";
  width: 2px;
  height: 40px;
  /* background-color: #fff; */
  background-color: #666;
  transform: rotate(35deg);
}

.container4 .induction_block .cta_btn:hover {
  background-color: transparent;
  color: var(--cta-color);
}

.container4 .induction_block img {
  width: 100%;
  max-width: 350px;
  margin: 10px auto 0;
}

@media (max-width: 768px) {
  .section4 .container4 {
    padding: 0 10px;
  }

  .section4 .container4 .border {
    display: none;
  }

  .container4 .design_block {
    flex-direction: column;
    padding-top: 0;
  }

  .design_block .design_content {
    margin: 29px auto 0;
    border: 1.5px solid rgba(229, 0, 28, 0.4);
  }

  .design_block .design_content:nth-of-type(1) {
    margin-top: 0;
  }

  .design_block .design_content:nth-last-of-type(1) {
    margin-right: auto;
  }

  .design_block .design_content::after {
    border-left: 1.5px solid rgba(229, 0, 28, 0.4);
    height: 30px;
    top: -31px;
  }

  .design_block .design_content:nth-of-type(1)::after {
    height: 119px;
    top: -120px;
  }

  .design_block h3 {
    margin-top: 5px;
    font-size: 18px;
  }

  .design_block p {
    line-height: 1.6;
  }

  .induction_block .arrow {
    border-width: 32px 32px 0 32px;
  }

  .induction_block .induction_text2 h3::after,
  .induction_block .induction_text2 h3::before {
    width: 20px;
    height: 20px;
  }

  .induction_block .induction_text2 h3::after {
    right: -28px;
  }

  .induction_block .induction_text2 h3::before {
    left: -28px;
  }
}

/* section5 */

.section5 {
  margin-top: 120px;
  background-image: url(../../common/img/mydan/back_image.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.section5 .container5 {
  width: 100%;
  max-width: 1100px;
  padding: 120px 20px;
  margin: 0 auto;
}

.container5 .company_line {
  border: 1px solid white;
  padding: 15px;
}

.container5 .company_block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.9);
}

.container5 .company_block img {
  width: 100%;
  max-width: 400px;
  margin-top: 60px;
}

.container5 .company_block h3 {
  margin-top: 20px;
  font-size: var(--pc-text-size2);
}

.container5 .company_block .company_merit {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 30px;
}

.company_block .company_merit p {
  display: block;
  max-width: 180px;
  width: 100%;
  line-height: 220px;
  margin-right: 20px;
  text-align: center;
  color: var(--main-color);
  font-weight: var(--font-weight);
  background-image: url(../../common/img/mydan/hukidasi_flame2.png);
  background-position: 50% 60%;
  background-size: contain;
  background-repeat: no-repeat;
}

.company_block .company_merit p:nth-last-of-type(1) {
  margin-right: 0;
}

.company_block .company_link {
  display: block;
  max-width: 285px;
  width: 100%;
  line-height: 70px;
  margin: 40px 0 60px;
  text-align: center;
  text-decoration: none;
  color: white;
  background-color: var(--main-color);
  border-radius: 3px;
  font-size: var(--pc-text-size1);
  font-weight: var(--font-weight);
  transition: all 0.2s;
}

.company_block .company_link:hover {
  transform: translateY(5px);
  opacity: 0.8;
}

.company_block .company_link::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 10px;
  background-image: url(../../common/img/mydan/window_w_icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(2px);
}

@media (max-width: 768px) {
  .section5 {
    margin-top: 60px;
  }

  .section5 .container5 {
    padding: 60px 10px;
  }

  .container5 .company_line {
    padding: 5px;
  }

  .container5 .company_block {
    padding: 0 20px;
  }

  .container5 .company_block img {
    padding: 0 30px;
    margin-top: 30px;
  }

  .container5 .company_block h3 {
    font-size: 18px;
  }

  .induction_block .induction_text2 h3 {
    font-size: var(--pc-text-size1);
  }

  .container5 .company_block .company_merit {
    margin-top: 0;
  }

  .company_block .company_merit p:nth-of-type(2) {
    margin-right: 0;
  }

  .company_block .sp {
    display: block;
    max-width: 180px;
    width: 50%;
    line-height: 180px;
    text-align: center;
    color: var(--main-color);
    font-weight: var(--font-weight);
    background-image: url(../../common/img/mydan/hukidasi_flame2.png);
    background-position: 50% 60%;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-30px);
  }

  .company_block .company_merit .pc {
    display: none;
  }

  .company_block .company_link {
    margin: 0 20px 30px;
  }
}

/* section6 */

.section6 {
  margin: 120px 0;
}

.section6 .container6 {
  width: 100%;
  max-width: 1100px;
  padding: 0 20px;
  margin: 0 auto;
}

.container6 .head_text h2::before {
  background-image: url(../../common/img/mydan/mitumori_icon.png);
}

.container6 .fee_block {
  display: flex;
  justify-content: center;
  margin-top: 70px;
}

.container6 .fee_block .fee_content {
  width: 100%;
  max-width: 380px;
  margin-right: 10px;
  aspect-ratio: 89 / 125;
  position: relative;
  background-image: url(../../common/img/mydan/note.png);
  background-repeat: no-repeat;
  background-size: contain;
  filter: drop-shadow(2px 2px 8px #999);
  z-index: 1;
}

.container6 .fee_block .fee_content:nth-last-of-type(1) {
  margin-right: 0;
  margin-left: 10px;
}

.fee_content h3 {
  display: block;
  width: 90%;
  padding-bottom: 10px;
  margin: 75px auto 0;
  font-size: var(--pc-text-size2);
  color: var(--main-color);
  font-family: var(--font-weight);
  text-align: center;
  border-bottom: 1px dotted var(--main-color);
}

.fee_content ul {
  position: relative;
  margin: 10px 40px 0 50px;
  z-index: 2;
}

.fee_content ul li {
  font-weight: var(--font-weight);
  margin-bottom: 20px;
}

.fee_content ul li:nth-last-of-type(1) {
  margin-bottom: 0;
}

.fee_content:nth-last-of-type(1) ul li:nth-last-of-type(1) {
  list-style: none;
}

.fee_content ul p {
  font-weight: 500;
}

.fee_content .col_r {
  color: var(--main-color);
}

.fee_content .col_r {
  font-size: 20px;
  font-weight: var(--font-weight);
}

.fee_content .col_r s {
  margin-right: 10px;
  font-size: var(--pc-text-size1);
  font-weight: 500;
}

.fee_content span.col_r {
  margin-left: 10px;
  font-size: 14px;
}

.fee_content .ml {
  margin-left: 10px;
}

.fee_content .small {
  font-size: 14px;
}

.fee_content img {
  width: 100%;
  max-width: 80px;
  position: absolute;
  right: 40px;
  bottom: 40px;
  opacity: 0.7;
  z-index: 1;
}

@media (max-width: 768px) {
  .section6 {
    margin: 80px 0;
  }

  .section6 .container6 {
    padding: 0 10px;
  }

  .container6 .fee_block {
    align-items: center;
    flex-wrap: wrap;
    margin-top: 40px;
  }

  .container6 .fee_block .fee_content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 0;
    background-image: none;
    outline: var(--main-color) 1.5px solid;
    filter: none;
    aspect-ratio: unset;
  }

  .container6 .fee_block .fee_content:nth-last-of-type(1) {
    margin-top: 30px;
    margin-left: 0;
  }

  .fee_content h3 {
    width: 35%;
    padding: 55px 5px;
    margin: 5px 0 5px 5px;
    font-size: var(--pc-text-size1);
    border: none;
    color: white;
    background-color: var(--main-color);
  }

  .fee_content:nth-last-of-type(1) h3 {
    padding: 150px 5px;
  }

  .fee_content ul {
    display: block;
    width: 65%;
    margin: 15px 0;
  }

  .fee_content ul li {
    margin-left: 30px;
    margin-bottom: 10px;
    font-size: 14px;
  }

  .fee_content .small {
    font-size: 12px;
  }

  .fee_content img {
    display: none;
  }

  .fee_content:nth-last-of-type(1) span.col_r {
    display: block;
    margin-left: 0;
  }
}

/* section7 */

.section7 {
  padding: 120px 0;
  background-color: #f6f6f6;
}

.section7 .container7 {
  width: 100%;
  margin: 0 auto;
}

.container7 .head_text h2::before {
  width: 35px;
  height: 35px;
  transform: translateY(-50%);
  background-image: url(../../common/img/mydan/box_r_icon.png);
}

.container7 .swiper {
  margin-top: 70px;
}

.container7 .swiper-slide {
  display: flex;
  justify-content: center;
  height: auto;
  padding: 50px;
  background-color: #fff;
  border: var(--main-color) solid 2px;
  border-radius: 30px;
}

.container7 .swiper-slide img {
  width: 100%;
  max-width: 390px;
  min-width: 200px;
  margin-right: 30px;
  object-fit: contain;
  border-radius: 8px;
}

.container7 .swiper-slide .sample_text {
  margin-left: 30px;
}

.container7 .swiper-slide h3 {
  line-height: 1.6;
  margin-top: 20px;
}

.container7 .swiper-slide p {
  margin-top: 30px;
  max-width: 390px;
  width: 100%;
  font-weight: 500;
}

.container7 .swiper-pagination {
  margin-top: 40px;
  position: static;
}

.container7 .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--main-color);
}

.container7 .swiper-button-next {
  width: 50px;
  height: 50px;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -ms-border-radius: 100px;
  background-color: #fff;
  border: var(--main-color) solid 2px;
  z-index: 1;
  transition: all.2s;
}

.container7 .swiper-button-next::after {
  font-size: var(--pc-text-size2);
  font-weight: var(--font-weight);
  color: var(--main-color);
}

.container7 .swiper-button-prev {
  width: 50px;
  height: 50px;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -ms-border-radius: 100px;
  background-color: #fff;
  border: var(--main-color) solid 2px;
  z-index: 1;
  transition: all.2s;
}

.container7 .swiper-button-prev::after {
  font-size: var(--pc-text-size2);
  font-weight: var(--font-weight);
  color: var(--main-color);
}

.container7 .swiper-button-next:hover,
.container7 .swiper-button-prev:hover {
  background-color: var(--main-color);
}

.container7 .swiper-button-next:hover::after,
.container7 .swiper-button-prev:hover::after {
  color: white;
}

@media (max-width: 768px) {
  .section7 {
    padding: 60px 0;
  }

  .container7 .head_text h2::before {
    width: 28px;
    height: 28px;
    left: -38px;
  }

  .container7 .swiper {
    margin-top: 40px;
  }

  .container7 .swiper-slide {
    flex-direction: column;
    justify-content: left;
    align-items: center;
    padding: 20px;
    border-radius: 15px;
  }

  .container7 .swiper-slide img {
    margin: 0 auto;
  }

  .container7 .swiper-slide .sample_text {
    margin-left: 0;
  }

  .container7 .swiper-slide h3 {
    font-size: 18px;
    line-height: 1.2;
  }

  .container7 .swiper-slide p {
    margin-top: 15px;
    line-height: 1.6;
  }
}

/* section8 */

.section8 {
  margin: 120px 0;
}

.section8 .container8 {
  width: 100%;
  max-width: 1100px;
  padding: 0 20px;
  margin: 0 auto;
}

.container8 .head_text h2::before {
  transform: translateY(-50%);
  background-image: url(../../common/img/mydan/question_icon.png);
}

.container8 dl {
  margin-top: 70px;
}

.container8 .faq_content {
  padding: 40px 80px;
  margin-bottom: 30px;
  border-radius: 3px;
  outline: var(--main-color) 1px solid;
}

.container8 .faq_content:nth-last-of-type(1) {
  margin-bottom: 0;
}

.faq_content dt,
.faq_content dd {
  display: flex;
  font-weight: 500;
}

.container8 .faq_content dt {
  padding-left: 10px;
  padding-bottom: 10px;
  border-bottom: #000 dotted 1px;
}

.container8 .faq_content dt::before {
  content: "Q.";
  color: var(--main-color);
  font-size: var(--pc-text-size2);
  font-weight: var(--font-weight);
  font-style: oblique;
}

.faq_content dt p {
  margin-top: 10px;
  margin-left: 20px;
}

.container8 .faq_content dd {
  padding-left: 10px;
  margin-top: 10px;
}

.container8 .faq_content dd::before {
  content: "A.";
  color: var(--main-color);
  font-size: var(--pc-text-size2);
  font-weight: var(--font-weight);
  font-style: oblique;
}

.faq_content dd p {
  margin-top: 10px;
  margin-left: 20px;
}

.container8 .faq_link {
  display: block;
  max-width: 285px;
  width: 100%;
  line-height: 70px;
  margin: 40px auto 60px;
  text-align: center;
  text-decoration: none;
  color: white;
  background-color: var(--main-color);
  border-radius: 3px;
  font-size: var(--pc-text-size1);
  font-weight: var(--font-weight);
  transition: all 0.2s;
}

.container8 .faq_link:hover {
  transform: translateY(5px);
  opacity: 0.8;
}

.container8 .faq_link::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 10px;
  background-image: url(../../common/img/mydan/window_w_icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(2px);
}

@media (max-width: 768px) {
  .section8 {
    margin: 60px auto;
  }

  .container8 dl {
    margin-top: 40px;
  }

  .container8 .faq_content {
    padding: 10px;
  }

  .container8 .faq_content dt::before,
  .container8 .faq_content dd::before {
    font-size: 18px;
  }

  .faq_content dt p,
  .faq_content dd p {
    margin-top: 5px;
    margin-left: 10px;
    line-height: 1.6;
  }
}

/* section9 */

.section9 {
  padding: 120px 0;
  background-color: #f6f6f6;
  border-top-right-radius: 100px;
  border-top-left-radius: 100px;
}

.section9 .container9 {
  width: 100%;
  max-width: 1100px;
  padding: 0 20px;
  margin: 0 auto;
}

.container9 .form_block_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 60px;
  border-bottom: #c5c5c5 solid 1.5px;
  text-align: center;
}

.container9 .form_block_text .form_text_l {
  font-size: var(--pc-text-size2);
  margin-left: 10px;
}

.container9 .form_block_text p:nth-of-type(1) {
  padding: 10px;
  font-weight: var(--font-weight);
  color: var(--main-color);
  outline: var(--main-color) 1.5px solid;
}

.container9 .form_block_text p:nth-of-type(2) {
  margin-top: 10px;
  font-weight: var(--font-weight);
}

.container9 .form_block_text h2 {
  position: relative;
  margin-top: 20px;
  font-size: var(--pc-text-size2);
  font-weight: var(--font-weight);
  color: var(--main-color);
  z-index: 1;
}

.container9 .form_block_text h2::before {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: -48px;
  transform: translateY(-50%) scale(-1, 1);
  background-image: url(../../common/img/mydan/hukidasi_s.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}

.container9 .form_block_text h2::after {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  right: -48px;
  transform: translateY(-50%);
  background-image: url(../../common/img/mydan/hukidasi_s.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}

.container9 .form_block {
  width: 100%;
  max-width: 800px;
  margin: 60px auto 0;
  border-bottom: #c5c5c5 solid 1.5px;
}

.container9 .form_block table {
  width: 100%;
}

.container9 .form_block tr {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
}

.container9 .form_block tr:has(.easyorder),
.container9 .form_block tr:has(.fullorder) {
  display: none;
}

.form_block tbody tr:nth-last-of-type(1) {
  margin-bottom: 60px;
}

.form_block tbody:nth-last-of-type(1) tr:nth-last-of-type(1) {
  margin-bottom: 0;
}

.container9 .form_block th {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  width: 30%;
}

.container9 .form_block tr:has(.form_delimiter) {
  padding-top: 60px;
  border-top: #c5c5c5 solid 1.5px;
}

.container9 .form_block th:has(.form_delimiter) {
  display: block;
  width: 100%;
  margin: 0 auto;
}

.container9 .form_block .form_delimiter {
  display: block;
  font-weight: var(--font-weight);
}

.container9 .form_block td {
  width: 70%;
  margin-left: 15px;
}

.container9 .form_block td input[type="text"],
.container9 .form_block td input[type="email"] {
  width: 100%;
  line-height: 40px;
  padding-left: 15px;
  border: none;
  background-color: white;
}

.container9 .form_block .mwform-radio-field {
  display: inline-block;
  margin-left: 0 !important;
  margin-right: 15px;
}

.container9 .form_block .mwform-radio-field input[type="radio"] {
  margin-right: 0 !important;
}

.container9 .form_block .mwform-radio-field-text {
  font-weight: 500;
}

.container9 .form_block td textarea {
  width: 100%;
  padding: 10px 15px;
  background-color: white;
}

.container9 .form_block th label {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.form_block th .red {
  display: inline-block;
  width: max-content;
  padding: 3px 8px;
  font-size: 14px;
  font-style: normal;
  color: white;
  background-color: var(--main-color);
  border-radius: 3px;
  text-align: right;
}

.form_block th .unmust {
  display: inline-block;
  width: max-content;
  padding: 3px 8px;
  font-size: 14px;
  font-style: normal;
  color: white;
  background-color: #999;
  border-radius: 3px;
  text-align: right;
}

.container9 .form_address_block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  text-align: center;
}

.container9 .form_address_text h3 {
  color: var(--main-color);
  font-size: var(--pc-text-size2);
}

.container9 .form_address_text p {
  margin: 10px auto 30px;
  font-weight: var(--font-weight);
}

.container9 .form_address_tel {
  width: 80%;
  padding: 30px 30px 25px;
  background-color: #fff;
  text-align: center;
}

.container9 .form_address_tel p {
  font-weight: var(--font-weight);
  margin-bottom: 10px;
}

.container9 .form_address_tel a {
  font-size: var(--pc-text-size3);
  font-weight: var(--font-weight);
  color: var(--main-color);
  text-decoration: none;
}

.container9 .form_address_tel a::before {
  content: "";
  display: inline-block;
  width: 35px;
  height: 35px;
  margin-right: 10px;
  background-image: url(../../common/img/mydan/tel_icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(2px);
}

.container9 .form_block #button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 60px;
}

.container9 .form_block #button input[type="submit"] {
  width: 285px;
  line-height: 65px;
  color: white;
  font-size: 20px;
  font-family: var(--font-family);
  font-weight: var(--font-weight);
  background-color: var(--main-color);
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.container9 .form_block #button input[type="submit"]:hover {
  transform: translateY(5px);
  opacity: 0.8;
}

.container9 .form_block #button .back {
  background-color: #999 !important;
  width: 150px !important;
  line-height: 45px !important;
  font-size: var(--pc-text-size1) !important;
}

.container9 .form_block .top_link {
  display: block;
  width: 285px;
  line-height: 65px;
  margin: 0 auto;
  color: white;
  font-size: 20px;
  font-family: var(--font-family);
  font-weight: var(--font-weight);
  background-color: var(--main-color);
  border-radius: 50px;
  border: none;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s;
}

.container9 .form_block .top_link:hover {
  transform: translateY(5px);
  opacity: 0.8;
}

.entry-header {
  display: none !important;
}

@media (max-width: 768px) {
  .section9 {
    padding: 60px 0;
    border-top-right-radius: 50px;
    border-top-left-radius: 50px;
  }

  .section9 .container9 {
    padding: 0 10px;
  }

  .container9 .form_block_text {
    padding-bottom: 40px;
  }

  .container9 .form_block {
    max-width: 580px;
    margin: 40px auto 0;
    padding-bottom: 40px;
  }

  .container9 .form_block_text h2 {
    font-size: var(--pc-text-size1);
  }

  .container9 .form_block_text h2::after,
  .container9 .form_block_text h2::before {
    width: 20px;
    height: 20px;
    left: -28px;
  }

  .container9 .form_block_text h2::after {
    left: auto;
    right: -28px;
  }

  .container9 .form_block tr {
    flex-direction: column;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    align-items: flex-start;
    margin-bottom: 25px;
  }

  .container9 .form_block th {
    width: auto;
    margin-left: 5px;
    margin-bottom: 15px;
  }

  .container9 .form_block td {
    width: 100%;
    max-width: 580px;
    margin-left: 0;
  }

  .container9 .form_block .btn_radio {
    padding-left: 5px;
  }

  .container9 .form_block .btn_radio span {
    display: block;
  }

  .btn_radio span {
    display: flex;
    align-items: center;
  }

  .btn_radio span label {
    margin-bottom: 15px;
  }

  .container9 .form_block label {
    display: flex;
    align-items: center;
  }

  .container9 .form_block tr em {
    margin-left: 20px;
  }

  .container9 .form_address_tel {
    padding: 20px 10px 15px;
  }

  .container9 .form_address_tel a {
    font-size: 20px;
  }

  .container9 .form_address_tel a::before {
    width: 20px;
    height: 20px;
  }
}

/* footer */

footer {
  padding: 60px 80px 20px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7);
  background-image: url(../../common/img/mydan/back_image.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
}

.foo_container .foo_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.foo_container .foo_top .logo {
  width: 155px;
}

.foo_top .logo img {
  width: 100%;
}

.foo_top .footer_menu ul {
  display: flex;
  align-items: center;
  list-style: none;
}

.foo_top .footer_menu li {
  margin-left: 30px;
}

.foo_top .footer_menu li:nth-of-type(1) {
  margin-left: 0;
}

.foo_top .footer_menu a {
  color: #fff;
  font-size: 14px;
  font-weight: var(--font-weight);
  text-decoration: none;
}

.foo_top .footer_menu a:hover {
  text-decoration: underline;
}

.foo_top .footer_menu .separate_tab::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 10px;
  background-image: url(../../common/img/mydan/window_w_icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(2px);
}

.foo_container .foo_bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 60px;
}

.foo_bottom .footer_address {
  font-size: 12px;
}

.foo_bottom .footer_link {
  min-width: 465px;
  font-size: 12px;
}

.foo_bottom .footer_link a {
  margin-left: 20px;
}

.foo_bottom .footer_link a:nth-of-type(1) {
  margin-left: 0;
}

footer .copyright {
  margin: 60px auto 0;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 768px) {
  footer {
    padding: 30px 20px 20px;
  }

  .foo_container .foo_top {
    flex-direction: column;
    align-items: flex-start;
  }

  .foo_top .footer_menu {
    margin-top: 30px;
  }

  .foo_top .footer_menu ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .foo_top .footer_menu li {
    margin-left: 0;
    margin-bottom: 15px;
  }

  .foo_top .footer_menu li:nth-last-of-type(1) {
    margin-bottom: 0;
  }

  .foo_bottom .footer_link {
    min-width: auto;
    font-size: 12px;
  }

  .foo_bottom .footer_link ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .foo_bottom .footer_link a {
    margin: 0 20px 10px 0;
  }

  .foo_container .foo_bottom {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 30px;
  }

  .foo_bottom .footer_address {
    margin-bottom: 30px;
  }

  footer .copyright {
    margin-top: 40px;
    font-size: 12px;
  }
}

/* cta */

.cta_section {
  width: 100%;
  margin-top: 120px;
}

.cta_section .cta_container {
  max-width: 1100px;
  margin: 0 auto;
}

.cta_section .cta_block {
  background-color: var(--main-color);
}

.cta_container .cta_contents {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 60px 0;
}

.cta_contents .cta_content1 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta_contents .cta_content1 img {
  width: 40px;
  line-height: 40px;
}

.cta_contents .cta_content1 p {
  position: relative;
  padding: 15px;
  margin: 0 20px;
  text-align: center;
  font-size: var(--pc-text-size1);
  font-weight: var(--font-weight);
  background-color: #fff;
  border-radius: 3px;
  z-index: 1;
}

.cta_contents .cta_content1 p::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 200px 0px 0 100px;
  border-color: #fff transparent transparent transparent;
  transform: scale(0.1);
  -webkit-transform: scale(0.1);
  -ms-transform: scale(0.1);
  bottom: -200%;
  left: 30px;
  z-index: 1;
}

.cta_contents .cta_content2 {
  margin-top: 30px;
}

.cta_contents .cta_content2 h2 {
  color: #fff;
  text-align: center;
}

.cta_content2 h2 .auto_line:nth-of-type(1) {
  font-size: var(--pc-text-size3);
  margin-bottom: 10px;
}

.cta_section .cta_btn_block {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}

.cta_section .cta_btn_block .pdf_btn,
.cta_section .cta_btn_block .cta_btn {
  max-width: 285px;
  width: 100%;
  border-radius: 3px;
  text-decoration: none;
  text-align: center;
  font-weight: var(--font-weight);
}

.cta_section .cta_btn_block .pdf_btn {
  padding: 24px 0;
  color: var(--main-color);
  outline: 2px solid var(--main-color);
  margin-right: 30px;
  transition: 0.2s;
}

.cta_section .cta_btn_block .pdf_btn:hover {
  color: white;
  background-color: var(--main-color);
}

.cta_section .cta_btn_block .cta_btn {
  padding: 10px 0;
  /* color: #fff; */
  color: #666;
  /* background-color: var(--cta-color);
  border: var(--cta-color) 2px solid; */
  background-color: #999;
  transition: all 0.2s;
  pointer-events: none;
}

.cta_section .cta_btn_block .cta_btn .cta_hukidasi {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  font-size: var(--pc-text-size2);
}

.cta_section .cta_btn_block .cta_btn .cta_hukidasi .small {
  margin-left: 3px;
  font-size: var(--pc-text-size1);
}

.cta_section .cta_btn_block .cta_btn .cta_hukidasi::before {
  content: "";
  display: block;
  width: 2px;
  height: 30px;
  /* background-color: #fff; */
  background-color: #666;
  margin-right: 20px;
  transform: rotate(-35deg);
}

.cta_section .cta_btn_block .cta_btn .cta_hukidasi::after {
  content: "";
  display: block;
  width: 2px;
  height: 30px;
  /* background-color: #fff; */
  background-color: #666;
  margin-left: 20px;
  transform: rotate(35deg);
  transition: all 0.2s;
}

.cta_section .cta_btn_block .cta_btn:hover .cta_hukidasi::before {
  background-color: var(--cta-color);
}

.cta_section .cta_btn_block .cta_btn:hover .cta_hukidasi::after {
  background-color: var(--cta-color);
}

.cta_section .cta_btn_block .cta_btn .cta_hukidasi::before {
  content: "";
  width: 2px;
  height: 40px;
  /* background-color: #fff; */
  background-color: #666;
  transform: rotate(-35deg);
}

.cta_section .cta_btn_block .cta_btn .cta_hukidasi::after {
  content: "";
  width: 2px;
  height: 40px;
  /* background-color: #fff; */
  background-color: #666;
  transform: rotate(35deg);
}

.cta_section .cta_btn_block .cta_btn:hover {
  background-color: transparent;
  color: var(--cta-color);
}

.cta_section .space1 {
  margin: 0 5px;
}

.cta_section .space2 {
  margin: 0 10px;
}

.cta_section .space3 {
  margin-left: 10px;
}

@media (max-width: 768px) {
  .cta_section {
    margin-top: 60px;
  }

  .cta_section .cta_container {
    margin: 0 10px;
  }

  .cta_contents .cta_content1 p {
    position: relative;
    padding: 6px 25px;
    margin: 0 10px;
    font-size: 14px;
    z-index: 1;
  }

  .cta_contents .cta_content1 p .auto_line {
    display: block;
  }

  .cta_contents .cta_content1 p::after {
    bottom: -109px;
  }

  .cta_contents .cta_content1 img {
    width: 100%;
    max-width: 40px;
    line-height: auto;
  }

  .cta_content2 h2 .auto_line {
    font-size: var(--pc-text-size1) !important;
  }

  .cta_section .cta_btn_block .pdf_btn,
  .cta_section .cta_btn_block .cta_btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    max-height: 100px;
    padding: 0;
  }

  .cta_section .cta_btn_block .cta_btn .cta_hukidasi {
    font-size: var(--pc-text-size1);
    margin-bottom: 5px;
  }

  .cta_section .cta_btn_block .cta_btn .cta_hukidasi::before {
    height: 20px;
    margin-right: 10px;
  }

  .cta_section .cta_btn_block .cta_btn .cta_hukidasi::after {
    height: 20px;
    margin-left: 10px;
  }

  .cta_content2 h2 .sp_new_line {
    display: block;
  }

  .cta_section .cta_btn_block {
    margin: 30px 10px 0;
  }

  .cta_btn_block a .new_line:nth-of-type(1) {
    font-size: 14px;
  }

  .cta_btn_block a .auto_line {
    display: block;
    line-height: normal;
  }

  .cta_btn_block a .auto_line:nth-of-type(2) {
    font-size: 14px;
  }

  .cta_btn_block .cta_btn .auto_line {
    font-size: 14px;
  }
}

/* news */
.mydan_news {
  width: 100%;
  padding: 30px 0;
  background-color: var(--sub-color);
}

.mydan_news .news_block {
  max-width: 800px;
  padding: 0 20px;
  margin: 0 auto;
}

.mydan_news .news_block h2,
.mydan_news .news_block .news_schedule {
  font-size: var(--pc-text-size2);
  font-weight: var(--font-weight);
  text-align: center;
  color: var(--main-color);
}

.mydan_news .news_block h2 {
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.mydan_news .news_block p {
  line-height: 1.6;
  font-weight: var(--font-weight);
  margin-bottom: 8px;
}

.mydan_news .news_block .news_schedule {
  margin-bottom: 30px;
}

.mydan_news .news_block .auto_line {
  display: inline-block;
}

@media (max-width: 640px) {
  .mydan_news .news_block .new_line {
    display: block;
  }
}

/* campaign */

.camp_hukidasi {
  max-width: 350px;
  position: absolute;
  left: 8%;
  top: 120px;
  z-index: 10;
  transition: all 0.2s;
  animation-name: camp_anime;
  animation-delay: 0s;
  animation-duration: 2.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.camp_hukidasi:hover {
  opacity: 0.8;
}

.mydan_camp {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 120px 20px;
  margin: 0 auto;
  background-image: url(../../common/img/mydan/bg_camp.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow-x: hidden;
}

.mydan_camp .camp_text {
  max-width: 1100px;
  position: relative;
  display: block;
  margin-bottom: 40px;
  padding: 0 10px;
  min-width: 120px;
  max-width: 100%;
  font-size: var(--pc-text-size1);
  border-bottom: solid 3px var(--main-color);
  z-index: 1;
}

.mydan_camp .camp_text::before {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  margin-left: -15px;
  border: 12px solid transparent;
  border-top: 12px solid #fff;
  z-index: 2;
}

.mydan_camp .camp_text::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  margin-left: -17px;
  border: 14px solid transparent;
  border-top: 14px solid var(--main-color);
  z-index: 1;
}

.mydan_camp .camp_text p {
  position: relative;
  font-size: var(--pc-text-size2);
  font-weight: var(--font-weight);
  text-align: center;
  z-index: 1;
}

.mydan_camp .camp_text p::before {
  content: "";
  display: block;
  width: 70px;
  height: 70px;
  position: absolute;
  background-image: url(../../common/img/mydan/mydan_camp_icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  top: calc(50% - 30px);
  right: calc(100% + 5px);
  transform: translateY(-50%) rotate(20deg);
  -webkit-transform: translateY(-50%) rotate(20deg);
  -ms-transform: translateY(-50%) rotate(20deg);
}

.mydan_camp .camp_text p::after {
  content: "";
  width: 70px;
  height: 70px;
  display: block;
  position: absolute;
  background-image: url(../../common/img/mydan/mydan_camp_icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  top: calc(50% - 30px);
  left: calc(100% + 5px);
  transform: translateY(-50%) scaleX(-1) rotate(20deg);
  -webkit-transform: translateY(-50%) scaleX(-1) rotate(20deg);
  -ms-transform: translateY(-50%) scaleX(-1) rotate(20deg);
}

.camp_text p .col_r {
  margin: 0 10px;
  color: var(--main-color);
}

.camp_text .auto_line:nth-last-of-type(1) {
  margin-bottom: 10px;
}

.camp_text p .camp_text_l {
  font-size: var(--pc-text-size3);
}

.mydan_camp .camp_img {
  max-width: 800px;
}

.mydan_camp .camp_annotation {
  margin-top: 40px;
  font-size: var(--pc-text-size1);
  font-weight: 500;
  line-height: 1.6;
}

.mydan_camp .camp_annotation p:nth-of-type(1) {
  margin-bottom: 5px;
  font-weight: var(--font-weight);
}

.mydan_camp .camp_block {
  max-width: 285px;
  width: 100%;
}

.mydan_camp .camp_link {
  display: block;
  line-height: 70px;
  margin: 40px 0 20px;
  text-align: center;
  text-decoration: none;
  color: white;
  background-color: var(--main-color);
  border-radius: 3px;
  font-size: var(--pc-text-size1);
  font-weight: var(--font-weight);
  transition: all 0.2s;
}

.mydan_camp .camp_link:hover {
  transform: translateY(5px);
  opacity: 0.8;
}

@media (max-width: 1200px) {
  .camp_hukidasi {
    max-width: 250px;
    top: 80px;
  }
}

@media (max-width: 768px) {
  .camp_hukidasi {
    max-width: 200px;
    top: calc(50% - 190px);
    left: calc(50% - 150px);
  }

  .mydan_camp .camp_annotation {
    font-size: 14px;
  }
}

@keyframes camp_anime {
  0% {
    transform: scale(1);
  }

  40% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  60% {
    transform: scale(1);
  }

  100% {
    transform: scale(1);
  }
}

/* videoContents */

.hukidasi {
  font-size: var(--pc-text-size1);
  font-weight: bold;
  color: #222;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 15px;
}

.hukidasi::before,
.hukidasi::after {
  content: "";
  width: 2px;
  height: 40px;
  background-color: #222;
}

.hukidasi::before {
  margin-right: 30px;
  transform: rotate(-35deg);
}

.hukidasi::after {
  margin-left: 30px;
  transform: rotate(35deg);
}

.video_container {
    display: flex;
    justify-content: center;
}

.video_area {
    display: flex;
    position: relative;
    max-width: 600px;
    width: 90%;
    /* height: 235px; */
    aspect-ratio: 16 9;
}
