@charset "UTF-8";

/*================================================================
リセット
================================================================*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
form,
label,
article,
button,
figure {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

header,
footer,
nav,
section,
article,
aside,
figure,
figcaption {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  padding: 0;
  margin: 0;
  list-style: none;
  list-style-type: none;
}

img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

a {
  text-decoration: none;
  color: inherit;
  display: block;
}

input,
button,
select,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

[type=checkbox],
[type=radio] {
  display: none;
}

[type=submit],
[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* 共通 */
body {
  line-height: 1;
  font-family: "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  ;
}

:root {
  --font-noto: "Noto Sans JP", sans-serif;
  --color-button: #0066cc;
  --color-material: #ff7d04;
  --color-white: #fff;
  --color-gray: #707070;
  /* z-index管理 */
  --z-index-base: 0;
  --z-index-main-bg: 0;
  --z-index-inner: 1;
  --z-index-cut-in: 1;
  --z-index-phone: 1;
  --z-index-what-is-person: 10;
  --z-index-feature-text: 10;
  --z-index-footer-dots: 10;
  --z-index-footer: 20;
  --z-index-banner: 20;
  --z-index-vertical-title: 90;
  --z-index-header: 100;
}

/* レイアウト設定 */
.l-main {
  overflow: clip;
}

.l-mv__inner {
  column-gap: 24px;
  display: flex;
  margin-inline: auto;
  margin-top: 106px;
  max-width: 1080px;
  padding: 0 26px;
  position: relative;
  z-index: var(--z-index-inner);
}

@media (max-width: 1440px) {
  .l-mv__inner {
    max-width: 1000px;
  }
}

@media (max-width: 1024px) {
  .l-mv__inner {
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    padding: 24px 30px 120px;
  }
}

@media (max-width: 768px) {
  .l-mv__inner {
    flex-direction: column-reverse;
    margin-top: 50px;
  }
}

@media (max-width: 430px) {
  .l-mv__inner {
    padding-bottom: 150px;
  }
}

.l-footer__inner {
  margin-inline: auto;
  max-width: 1000px;
  padding: 200px 40px 30px;
  position: relative;
  z-index: var(--z-index-footer);
}

@media (max-width: 1024px) {
  .l-footer__inner {
    padding-top: 160px;
  }
}

@media (max-width: 768px) {
  .l-footer__inner {
    padding: 80px 30px 10px;
  }
}

/* 共通パーツ */
.c-main__bg img {
  height: 100lvh;
  left: 0;
  object-fit: cover;
  position: fixed;
  scale: 1.3;
  /* 最初は拡大して表示 */
  top: 0;
  width: 100%;
  z-index: var(--z-index-main-bg);
}

.c-download-button {
  background: #ffffff;
  border: 4px solid var(--color-button);
  border-radius: 100vh;
  color: var(--color-button);
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 26px;
  font-weight: bold;
  max-width: 506px;
  padding: 20px;
  position: relative;
  text-align: center;
  transition: color 0.3s, background 0.3s;
  width: 100%;
}

@media (max-width: 1024px) {
  .c-download-button {
    font-size: 20px;
    max-width: 340px;
    padding: 12px;
  }
}

@media (max-width: 768px) {
  .c-download-button {
    border-width: 2px;
    font-size: 18px;
    max-width: 240px;
    padding: 8px 10px;
  }
}

@media (max-width: 430px) {
  .c-download-button {
    font-size: 12px;
    max-width: 200px;
  }
}

.c-download-button:hover {
  background: var(--color-button);
  color: var(--color-white);
}

.c-download-button .fas {
  color: var(--color-button);
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  transition: color 0.3s;
}

@media (max-width: 768px) {
  .c-download-button .fas {
    right: 10px;
  }
}

.c-download-button:hover .fas {
  color: var(--color-white);
}

/* お問い合わせボタン追加 */
.c-inquiry-button {
  background: var(--color-material);
  border: 4px solid var(--color-material);
  border-radius: 100vh;
  color: var(--color-white);
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 26px;
  font-weight: bold;
  max-width: 440px;
  padding: 14px;
  position: relative;
  text-align: center;
  transition: color 0.3s, background 0.3s;
  width: 82%;
}

@media (max-width: 1024px) {
  .c-inquiry-button {
    font-size: 18px;
    max-width: 260px;
    padding: 10px;
  }
}

@media (max-width: 768px) {
  .c-inquiry-button {
    border-width: 2px;
    font-size: 16px;
    max-width: 220px;
    padding: 8px 10px;
  }
}

@media (max-width: 430px) {
  .c-inquiry-button {
    font-size: 10px;
    max-width: 180px;
  }
}

.c-inquiry-button:hover {
  background: var(--color-white);
  color: var(--color-material);
}

.c-inquiry-button .fas {
  color: var(--color-white);
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  transition: color 0.3s;
}

@media (max-width: 768px) {
  .c-inquiry-button .fas {
    right: 10px;
  }
}

.c-inquiry-button:hover .fas {
  color: var(--color-material);
}

/* ================================
   ヘッダー上部のバナー
================================ */
.specialbar_wrap {
  width: 100%;
  background: #000;
  color: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  /* ヘッダーより上に表示 */
  padding: 0 15px;
  box-sizing: border-box;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.specialbar_inner {
  display: flex;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .specialbar_wrap {
    padding: 0 5px;
  }
}


.specialbar_link {
  display: flex;
  align-items: center;
  width: 100%;
  height: 40px;
}

.specialbar_link:hover .title {
  text-decoration: underline;
}

.specialbar_wrap .title {
  font-size: 100%;
  font-weight: bold;
  margin-left: 15px;
}

@media (max-width: 768px) {
  .specialbar_wrap .title {
    font-size: 75%;
    margin-left: 5px;
  }
}

.specialbar_link .more {
  font-size: 75%;
  margin-left: 10px;
}

@media (max-width: 768px) {
  .specialbar_wrap .more {
    margin-left: 5px;
  }
}

.close_btn {
  position: relative;
  width: 25px;
  height: 25px;
  cursor: pointer;
  background: #FFF;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .close_btn {
    width: 20px;
    height: 20px;
  }
}

.close_btn::before,
.close_btn::after {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.close_btn::after {
  transform: translate(-50%, -50%) rotate(135deg);
}

@media screen and (min-device-width: 641px) {

  .close_btn::before,
  .close_btn::after {
    width: 10px;
    height: 1px;
    background-color: #000;
  }
}


/* ================================
   ヘッダー全体（共通スタイル）
================================ */
.p-header {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  left: 0;
  z-index: 1000;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  /* 子要素で中央化 */
}

.p-header__inner {
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

.p-header.m--index {
  top: 40px;
}

.p-header__logo {
  filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.5));
  margin-left: 6px;
  width: 105px;
}

@media (max-width: 1024px) {
  .p-header__logo {
    margin-left: 0;
  }
}

.p-header__nav {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
}

.p-header__menu {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
}

.p-header__menu-left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.p-header__menu-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-wrap: nowrap;
  flex-direction: row;
}

.p-header__menu li {
  margin-left: 20px;
}

.p-header__link {
  text-decoration: none;
  color: #fff;
  font-size: 0.88em;
  font-weight: bold;
}

.p-header__button {
  text-decoration: none;
  color: #fff;
  background-color: #007bff;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
}

/* ハンバーガーメニューはPCでは非表示 */
.p-header__hamburger {
  display: none;
}

.contact_wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 34px;
  background: var(--color-material);
  text-align: center;
  text-decoration: none;
  border: 2px solid #f8842b;
  border-radius: 60px;
  padding: 0 15px;

}

.cta_item_contact a,
.cta_item_order a {
  display: block;
  text-decoration: none;
  -wewbkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  cursor: pointer;
  padding: 6px 0;
}

.cta_item_contact a:hover .contact_wrap {
  background: #fff;
  color: var(--color-material);
  border-color: var(--color-material);
}

.contact_wrap>i {
  color: #fff;
  padding-left: 5px;
  transition: color 0.3s;
}

.cta_item_contact a:hover .contact_wrap>i {
  color: var(--color-material);
}

.contact_wrap .item_text {
  color: #fff;
  font-family: "Rounded Mplus 1c";
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  transition: color 0.3s;
}

.cta_item_contact a:hover .contact_wrap .item_text {
  color: var(--color-material);
}

.cta_item_order a:hover .order_wrap>i {
  color: #fff;
}

.cta_item_order a:hover .order_wrap {
  box-shadow: 0 5px 8px rgba(0, 0, 0, .14);
  background: #0064eb;
  color: #fff;
  border-color: #0064eb;
}

.cta_item_order a:hover .order_wrap .item_text,
.cta_item_order a:hover .order_wrap .item_text>small {
  color: #fff;
}

.order_wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 34px;
  background-color: #fff;
  text-align: center;
  text-decoration: none;
  border: 2px solid #0064eb;
  border-radius: 60px;
  padding: 0 10px;
}

.order_wrap .item_text {
  color: #0064eb;
  font-family: "Rounded Mplus 1c";
  font-size: 13px;
  font-weight: 500;
  text-align: center;
}

.order_wrap .item_text>small {
  position: relative;
  color: #0064eb;
  font-size: 10px;
}

.order_wrap .item_text>small::before {
  position: absolute;
  left: -12px;
  top: 2px;
  content: "";
  width: 1.2px;
  height: 80%;
  background: #0064eb;
  transform: rotate(-40deg);
  transition: background 0.3s;
}

.order_wrap .item_text>small::after {
  position: absolute;
  content: "";
  right: -12px;
  top: 2px;
  width: 1.2px;
  height: 80%;
  background: #0064eb;
  transform: rotate(40deg);
  transition: background 0.3s;
}

/* ホバー時に色反転 */
.cta_item_order a:hover .order_wrap .item_text>small::before,
.cta_item_order a:hover .order_wrap .item_text>small::after {
  background: #fff;
}

.order_wrap .item_text>span {
  display: block;
  line-height: 1.2;
}

.order_wrap>i {
  color: #0064eb;
  padding-left: 5px;
}

@media (max-width: 768px) {
  .contact_wrap {
    height: 32px;
    padding: 0 10px;
    font-size: 14px;
  }

  .contact_wrap .item_text {
    font-size: 14px;
  }

  .order_wrap {
    height: 42px;
    padding: 0 8px;
    font-size: 14px;
  }

  .order_wrap .item_text {
    font-size: 14px;
  }

  .order_wrap .item_text>small {
    font-size: 10px;
    left: 8px;
    right: -8px;
  }

  .order_wrap .item_text>small::before {
    width: 1px;
    left: -6px;
    top: 1px;
    right: auto;
  }

  .order_wrap .item_text>small::after {
    width: 1px;
    right: -6px;
    top: 1px;
    left: auto;
  }

  .order_wrap>i,
  .contact_wrap>i {
    font-size: 14px;
    padding-left: 3px;
  }
}



/* ================================
   スマホ表示（768px以下）
================================ */
@media (max-width: 768px) {
  .p-header {
    justify-content: space-between;
    padding-right: 20px;
  }

  .p-header__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 24px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 16px;
    z-index: 1100;
  }

  .p-header__hamburger span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  /* ハンバーガー開閉アニメーション（×に） */
  .p-header__hamburger.open span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }

  .p-header__hamburger.open span:nth-child(2) {
    opacity: 0;
  }

  .p-header__hamburger.open span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }

  .p-header__nav {
    display: none;
    flex-direction: column;
    align-items: flex-end;
    position: absolute;
    top: 100%;
    right: 0;
    width: 20%;
    /* ← 画面右3分の1に調整 */
    min-width: 200px;
    /* ← 極端に狭くなるのを防止 */
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    z-index: 1000;
    height: calc(100vh - 60px);
    /* 必要に応じて高さ調整 */
  }

  .p-header__nav.show {
    display: flex;
    justify-content: space-between;
  }

  .p-header__menu {
    flex-direction: column;
    width: 100%;
  }

  .p-header__menu li {
    margin: 10px 0;
    width: 100%;
  }

  .p-header__link {
    width: 100%;
    padding: 6px 0;
    font-size: 14px;
    text-align: right;
  }

  .p-header__menu-right {
    display: flex;
    align-items: center;
    gap: 0px;
    margin-left: auto;
    flex-wrap: nowrap;
    flex-direction: column;
  }

}


/* MV */
.p-mv {
  margin-inline: auto;
  max-width: 1920px;
  overflow: hidden;
  padding-bottom: 440px;
  position: relative;
  opacity: 0;
  /* 読み込み時映らないように透過 */
}

@media (max-width: 1440px) {
  .p-mv {
    padding-bottom: 440px;
  }
}

@media (max-width: 1024px) {
  .p-mv {
    padding-bottom: 0;
  }
}

@media (max-width: 768px) {
  .p-mv {
    padding-bottom: 0;
  }
}

.p-mv__mock {
  flex-shrink: 0;
  width: 404px;
}

@media (max-width: 1024px) {
  .p-mv__mock {
    height: 400px;
    margin-top: 8px;
    width: 226px;
  }
}

.p-mv__mock video {
  border-radius: 55px;
  height: auto;
  max-width: 100%;
  width: 100%;
}

@media (max-width: 1024px) {
  .p-mv__mock video {
    border-radius: 30px;
  }
}

.p-mv__title {
  flex-direction: column;
  margin-left: 15px;
}

@media (max-width: 768px) {
  .p-mv__title {
    margin-left: 0;
  }
}

.p-mv__hidden {
  overflow: hidden;
}

.p-mv__text {
  background: #000000;
  color: #ffffff;
  display: inline-block;
  font-size: 36px;
  font-weight: bold;
  padding: 16px 20px;
}

@media (max-width: 1024px) {
  .p-mv__text {
    flex-shrink: 0;
    font-size: 16px;
    padding: 4px 20px;
  }
}

.p-mv__text--auto {
  font-size: 30px;
  margin-top: 22px;
}

@media (max-width: 1440px) {
  .p-mv__text--auto {
    font-size: 30px;
  }
}

@media (max-width: 1024px) {
  .p-mv__text--auto {
    font-size: 18px;
    margin-top: 12px;
  }
}

.p-mv__logo {
  margin-top: 40px;
}

@media (max-width: 1024px) {
  .p-mv__logo {
    margin-top: 0;
    max-width: 400px;
  }
}

.p-mv__logo-sub {
  margin-left: 6px;
  margin-top: -12px;
}

@media (max-width: 768px) {
  .p-mv__logo-sub {
    margin-top: -16px;
  }
}

.p-mv__pc-button-wrap {
  margin-top: 32px;
  text-align: center;
}

.p-mv__pc-link-wrap {
  font-size: 0.9em;
  margin-top: 22px;
  text-align: center;
  color: var(--color-white);
  text-decoration: underline 0.6px solid var(--color-white);
}

.p-mv__pc-link-wrapgy {
  font-size: 0.9em;
  margin-top: 22px;
  text-align: center;
  color: var(--color-gray);
  text-decoration: underline 0.6px solid var(--color-gray);
}

@media (max-width: 768px) {
  .p-mv__pc-button-wrap {
    margin-top: 6px;
  }

  .p-mv__pc-link-wrap {
    margin-top: 8px;
  }

  .p-mv__pc-link-wrapgy {
    margin-top: 8px;
  }
}

.icon_muryo {
  position: absolute;
  top: 5px;
  height: 5vw;
  padding: 10px 0;
}

.icon_muryo img {
  height: 80%;
}

@media (max-width: 768px) {
  .p-mv__sp-button-wrap {
    margin-top: 22px;
    text-align: center;
    width: 100%;
  }

  .p-mv__sp-button-wrap {
    margin-top: 22px;
    text-align: center;
    width: 100%;
    font-size: 0.8em;
    color: var(--color-white);
    text-decoration: underline 0.6px solid var(--color-white);
  }
}

@media (max-width: 768px) {
  .p-mv__button {
    font-size: 14px;
    max-width: 305px;
    padding: 12px 10px;
  }
}

@media (max-width: 768px) {
  .p-mv__button .fas {
    right: 20px;
  }
}

.p-mv__chocopura {
  position: absolute;
  z-index: 0;
}

@media (max-width: 1024px) {
  .p-mv__chocopura {
    max-width: 400px;
    width: 100%;
  }
}

.p-mv__matsuo {
  bottom: 260px;
  left: 10px;
  width: 50%;
}

@media (max-width: 1440px) {
  .p-mv__matsuo {
    left: -30px;
  }
}

@media (max-width: 1024px) {
  .p-mv__matsuo {
    bottom: 0;
    left: 50%;
    transform: translateX(-110%);
  }
}

@media (max-width: 768px) {
  .p-mv__matsuo {
    bottom: 224px;
    transform: translateX(-67%);
    rotate: 1deg;
    width: 87%;
  }
}

.p-mv__osada {
  right: 35px;
  top: -190px;
  rotate: 179deg;
  width: 46%;
}

@media (max-width: 1440px) {
  .p-mv__osada {
    right: -35px;
  }
}

@media (max-width: 1024px) {
  .p-mv__osada {
    right: 50%;
    top: -95px;
    transform: translateX(-110%);
  }
}

@media (max-width: 768px) {
  .p-mv__osada {
    bottom: 215px;
    top: initial;
    transform: translateX(119%);
    rotate: 0deg;
    width: 87%;
  }
}

.p-mv__notice_foot {
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  line-height: 160%;
  color: #727272;
  margin-bottom: 5px;
  opacity: 1;
  /* 透明度を明示的に設定 */
  z-index: 1;
  /* 表示レイヤーを前面に */
}

.p-mv__notice_button {
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  line-height: 160%;
  color: #fff;
  margin-bottom: 5px;
  opacity: 1;
  /* 透明度を明示的に設定 */
  z-index: 1;
  /* 表示レイヤーを前面に */
}

/* what is */
.p-what-is {
  /* padding: 0 0 60px; */
  padding: 0 0 340px;
  position: relative;
}

@media (max-width: 1024px) {
  .p-what-is {
    /* padding: 50px 0 20px; */
    /* padding-top: 0; */
    padding-bottom: 200px;
  }
}

@media (max-width: 768px) {
  .p-what-is {
    /* padding: 50px 0 20px; */
    /* padding-top: 0; */
    padding-bottom: 175px;
  }
}

@media (max-width: 430px) {
  .p-what-is {
    /* padding-top: 0; */
    padding-bottom: 85px;
  }
}

.p-what-is__img {
  position: absolute;
  top: 3%;
  left: 6%;
  z-index: 88;
}

@media (max-width: 1920px) {
  .p-what-is__img {
    left: 2%;
  }
}

@media (max-width: 768px) {
  .p-what-is__img {
    top: -120px;
    left: 0%;
  }
}

@media (max-width: 430px) {
  .p-what-is__img {
    top: -180px;
    left: 0%;
  }
}

.p-what-is__img>img {
  width: 4vw;
}

@media (max-width: 768px) {
  .p-what-is__img>img {
    display: none;
  }
}

.topic_box {
  position: relative;
  z-index: 88;
  margin: 0 auto;
  padding: 0 20px 30px 20px;
}

@media screen and (max-width:768px) {
  .topic_box {
    position: relative;
    z-index: 88;
    margin: 0 auto;
    padding: 30px 20px 30px 20px;
  }
}

@media screen and (max-width:430px) {
  .topic_box {
    position: relative;
    z-index: 88;
    margin: 0 auto;
    padding: 0px 20px 30px 20px;
  }
}

.topic_movie {
  margin: 0;
  padding: 0 0 5px 0;
}

.topic_movie .video {
  position: relative;
  margin: 0 auto;
  padding-top: 56.25%;
  width: 100%;
  max-width: 900px;
  overflow: hidden;
}

.topic_movie .video:before {
  content: "";
  display: block;
}

.topic_movie .video iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
}

.topic_pict {
  margin: 0;
  padding: 0 0 5px 0;
}

.topic_pict img {
  width: 100%;
}

.topic_txt {
  margin: 0 auto;
  padding: 10px 0;
  width: calc(100% - 40px);
  box-sizing: border-box;
  border-bottom: 1px solid #f8842b;
}

@media screen and (max-width:769px) {
  .topic_txt {
    width: 100%;
    padding: 20px 0;
  }
}

.topic_txt p {
  font-size: 20px;
  line-height: 160%;
  letter-spacing: 2px;
  text-align: left;
  font-weight: 600 !important;
  /* フォントの太さを900に設定 */
}

@media screen and (min-width:769px) {
  .topic_box {
    margin: 0 auto;
    padding: 40px 20px 40px 20px;
    max-width: 1140px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
  }

  .topic_movie {
    width: 45%;
    padding: 25px 0;
    order: 1;
  }

  .topic_movie .video {
    position: relative;
    margin: 0 auto;
    padding-top: 56.25%;
    width: 100%;
    max-width: 900px;
    overflow: hidden;
  }

  .topic_movie .video:before {
    content: "";
    display: block;
  }

  .topic_movie .video iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
  }

  .topic_pict {
    width: 48%;
    padding: 25px 0 0 0;
    order: 1;
  }

  .topic_txt {
    width: calc(100% - 45% - 50px);
    height: 280px;
    order: 2;
    border-top: 2px solid #f8842b;
    border-bottom: 2px solid #f8842b;
  }

  .topic_txt p {
    font-size: 24px;

    line-height: 150%;
    letter-spacing: 2px;
    text-align: left;
    display: flex;
    /* フレックスボックスを使用 */
    align-items: center;
    /* 縦方向に中央揃え */
    justify-content: center;
    /* 必要に応じて横方向も中央揃え */
    height: 100%;
    /* 親要素の高さに合わせる */
    margin: 0;
    /* 不要な余白を削除 */
  }

  .topic_txt .pcnone {
    display: none;
  }
}

.about_subhead {
  position: relative;
  z-index: 88;
  margin: 0 auto;
  padding: 0 20px 20px 20px;
  font-size: 180%;
  font-weight: 900;
  line-height: 150%;
  text-align: center;
  background: linear-gradient(0deg, rgb(248, 130, 42) 0%, rgb(249, 175, 53) 50%, rgb(255, 183, 37) 100%);
  background-clip: text;
  color: transparent;
  font-family: "Noto Sans JP", sans-serif;
  opacity: 0;
  /* 初期状態で非表示 */
  transform: translateY(20px);
  /* 下にずらす */
  transition: opacity 0.6s ease, transform 0.6s ease;
  /* フェードインのアニメーション */
}

.about_subhead.is-visible {
  opacity: 1;
  /* 表示 */
  transform: translateY(0);
  /* 元の位置に戻す */
}

@media screen and (min-width:769px) {
  .about_subhead {
    margin: 0 0 20px 0;
    font-size: clamp(24px, 5vw, 60px);
    /* 最小24px、最大60px、5vwに応じて可変 */
  }
}

.p-what-is__title {
  height: calc(100% - 100px);
  left: 40px;
  margin-top: 100px;
  padding-bottom: 150px;
  position: absolute;
  top: 100px;
  width: max(110px, 5.7291666667vw);
  z-index: var(--z-index-vertical-title);
}

@media (max-width: 1440px) {
  .p-what-is__title {
    width: 80px;
  }
}

@media (max-width: 1024px) {
  .p-what-is__title {
    left: 20px;
    margin-top: 0;
    width: 50px;
  }
}

@media (max-width: 768px) {
  .p-what-is__title {
    left: 8px;
    margin-top: 0;
    top: 45px;
    width: max(20px, 5.3333333333vw);
  }
}

.p-what-is__title img {
  position: sticky;
  top: 120px;
}

/* slick(スライダー) */
.slide_list_wrap {
  position: relative;
  z-index: 88;
  max-width: 80%;
  margin: 0 auto 100px auto;
}

.slide_list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.slide_list li {
  padding: 10px;
  box-sizing: border-box;
  transition: all 0.3s ease;
  opacity: 1;
  transform: scale(1);
}

.slide_item_wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  /* 必要に応じて高さを調整 */
  background-color: #fff;
  /* テキスト部分の背景を白色に設定 */
  border-radius: 8px;
  /* 角を少し丸める（オプション） */
  overflow: hidden;
  /* 内容がはみ出さないようにする */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  /* 見た目を整える影（オプション） */
  color: #2e363d;
  text-decoration: none;
}

/* .slide_item_wrap:link,
.slide_item_wrap:visited {
  color: #2e363d;
  text-decoration: none;
}

.slide_list li:hover {
  transform: scale(1.05);
} */
.slide_item_img_wrap {
  margin: 0 0 5px 0;
}

.slide_item_img_wrap>img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* テキスト部分のスタイル */
.slide_item_title {
  display: flex;
  /* フレックスボックスを使用 */
  align-items: center;
  /* 縦方向に中央揃え */
  justify-content: center;
  /* 横方向に中央揃え */
  text-align: center;
  /* テキストを中央揃え */
  font-size: clamp(16px, 2vw, 24px);
  /* フォントサイズを画面幅に応じて可変に設定 */
  line-height: 1.2;
  /* 行間を調整 */
  padding: 5px;
  /* 内側の余白を設定 */
  min-height: 100px;
  /* 最小高さを設定して高さを統一 */
  max-height: 200px;
  background-color: #fff;
  /* 背景色を白に設定 */
  font-weight: bold;
  /* 太字に設定 */
  box-sizing: border-box;
  /* パディングを含めたボックスサイズを計算 */
}

.slide_item_text {
  display: flex;
  /* フレックスボックスを使用 */
  align-items: flex-start;
  /* 縦方向に上揃え */
  justify-content: center;
  /* 横方向に中央揃え */
  font-size: clamp(14px, 1.5vw, 16px);
  /* フォントサイズを画面幅に応じて可変に設定 */
  line-height: 1.5;
  /* 行間を調整 */
  padding: 0 15px;
  /* 内側の余白を設定 */
  min-height: 140px;
  /* 最小高さを設定して高さを統一 */
  max-height: 240px;
  background-color: #fff;
  /* 背景色を白に設定 */
  box-sizing: border-box;
  /* パディングを含めたボックスサイズを計算 */
  word-break: break-word;
  /* 長い単語を折り返し */
}

/* slickの矢印ボタン（Font Awesomeアイコン用） */
.slick-arrow,
.slick-prev,
.slick-arrow {
  all: unset;
  width: 48px !important;
  height: 48px !important;
  color: #FFF !important;
  background: linear-gradient(to bottom, #faab34, #f8872b) !important;
  border-radius: 50%;
  border: none;
  color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center !important;
  align-items: center !important;
  z-index: 10;
  transition: transform 0.3s ease;
  transform-origin: center center;
  font-size: 24px;
  text-align: center !important;
  line-height: 1;
  overflow: visible;
}

/* アイコン自体にもサイズ指定を与えるとさらに安定 */
.slick-arrow i {
  color: #FFF;
  font-size: 24px;
  width: auto;
  height: auto;
  display: inline-block;
}

/* 左右位置調整 */
.slick-prev {
  left: -56px !important;
}

.slick-next {
  right: -56px !important;
}

/* ホバー時に拡大 */
/* .slick-arrow:hover {
  transform: translateY(-50%) scale(1.1);
  cursor: pointer;
} */

/* slickのデフォルト矢印を無効化（アイコンだけを残す） */
.slick-prev:before,
.slick-next:before {
  content: '' !important;
}

/* slickのスマホcss */
@media (max-width: 769px) {
  .slide_list_wrap {
    width: 100% !important;
    margin: 0 auto 50px auto !important;
  }

  .slide_list li {
    padding: 20px !important;
  }

  button.slick-arrow {
    display: flex !important;
    width: 32px !important;
    height: 32px !important;
    font-size: 14px !important;
    z-index: 10;
  }

  button.slick-arrow i {
    font-size: 14px !important;
  }

  button.slick-prev {
    left: -25px !important;
  }

  button.slick-next {
    right: -25px !important;
  }

  .slide_item_title {
    font-size: 18px;
    text-align: center;
  }

  .slide_item_text {
    font-size: 14px;
    padding: 10px;
    text-align: center;
  }
}

.p-what-is__video {
  position: relative;
  top: 60px;
  margin: 0 auto;
  z-index: 99;
  padding: 50px 0;
  background-color: rgba(0, 0, 0, 0.6);
  /* 透明度50%の黒 */

}

@media (max-width: 1024px) {
  .p-what-is__video {
    margin-bottom: 60px;
  }
}

@media (max-width: 768px) {
  .p-what-is__video {
    position: relative;
    top: 40px;
    margin-bottom: 45px;
  }
}

@media (max-width: 430px) {
  .p-what-is__video {
    padding: 20px 0;
    margin-bottom: 0;
  }
}

.p-what-is__iframe_wrap {
  position: relative;
  width: 60%;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .p-what-is__iframe_wrap {
    width: 84%;
  }
}

@media (max-width: 430px) {
  .p-what-is__iframe_wrap {
    width: 80%;
  }
}

.p-what-is__iframe {
  z-index: 99;
  width: 100%;
}

.p-what-is__banners {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

@media (max-width: 768px) {
  .p-what-is__banners {
    row-gap: 15px;
  }
}

.p-what-is__banner {
  position: relative;
  z-index: var(--z-index-banner);
}

.p-what-is__text {
  color: #ffffff;
  font-size: min(48px, 2.5vw);
  font-weight: bold;
  line-height: 1.8;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  .p-what-is__text {
    font-size: max(24px, 6.4vw);
    width: 80%;
  }
}

.p-what-is__text.p-what-is__text--left {
  left: 50%;
  transform: translate(-115%, -47%);
}

@media (max-width: 768px) {
  .p-what-is__text.p-what-is__text--left {
    top: 10%;
    transform: translate(-50%, 0%);
  }
}

.p-what-is__text.p-what-is__text--left-second {
  transform: translate(-115%, -34%);
}

@media (max-width: 768px) {
  .p-what-is__text.p-what-is__text--left-second {
    top: 14%;
    transform: translate(-50%, 0%);
    width: 60%;
  }
}

.p-what-is__text--left:nth-of-type(2) {
  background: #000000;
  opacity: 0.4;
}

.p-what-is__text.p-what-is__text--right {
  right: 50%;
  transform: translate(120%, -36%);
}

@media (max-width: 768px) {
  .p-what-is__text.p-what-is__text--right {
    top: 13%;
    transform: translate(50%, 0%);
    width: 70%;
  }
}

.p-what-is__chocopura {
  z-index: var(--z-index-what-is-person);
}

.p-what-is__matsuo {
  display: block;
  /* margin-inline: auto; */
  /* margin-top: 230px; */
  max-width: 676px;
  position: relative;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  bottom: calc((50/3840)*100vw);
  /* display: none; */
}

@media (max-width: 1920px) {
  .p-what-is__matsuo {
    /* margin-top: 40px; */
    /* width: 360px; */
    bottom: 0;
  }
}

@media (max-width: 1024px) {
  .p-what-is__matsuo {
    /* margin-top: 40px; */
    width: 360px;
  }
}

@media (max-width: 768px) {
  .p-what-is__matsuo {
    bottom: -10px;
    width: max(233px, 62.1333333333vw);
  }
}

.p-what-is__osada {
  position: absolute;
  right: 26%;
  top: 0;
  transform: translateX(240%);
  width: 3vw;
  /* display: none; */
}

@media (max-width: 1920px) {
  .p-what-is__osada {
    right: 18%;
    top: 0%;
    transform: translateX(0);
    width: 4vw;
  }
}

@media (max-width: 1650px) {
  .p-what-is__osada {
    right: 12%;
    top: 0%;
    transform: translateX(0);
    width: 4.5vw;
  }
}

@media (max-width: 1440px) {
  .p-what-is__osada {
    right: 4%;
    top: 0%;
    width: 5vw;
  }
}

@media (max-width: 1024px) {
  .p-what-is__osada {
    right: 6%;
    top: -1%;
    width: 6vw;
  }
}

@media (max-width: 768px) {
  .p-what-is__osada {
    right: 8%;
    top: -1%;
    width: 6vw;
  }
}

@media (max-width: 430px) {
  .p-what-is__osada {
    right: 0;
    top: -1%;
    width: 35px;
  }
}

.p-what-is__cut-in {
  background: #fff url("../img/footer/footer_bg_pc_dot.webp") no-repeat center center/cover;
  bottom: 16vw;
  bottom: 9.8958333333vw;
  /* bottom: 0; */
  display: block;
  height: 110%;
  /* height: 102%; */
  left: -20%;
  position: absolute;
  transform-origin: right;
  rotate: -5deg;
  width: 150%;
  height: 102%;
  z-index: var(--z-index-cut-in);
}

@media (max-width: 1920px) {
  .p-what-is__cut-in {
    height: 102%;
    /* bottom: 11.4583333333vw; */
    /* bottom: 0; */
  }
}

@media (max-width: 1440px) {
  .p-what-is__cut-in {
    /* height: 117%; */
    /* bottom: 12.5vw; */
  }
}

@media (max-width: 1024px) {
  .p-what-is__cut-in {
    height: 100%;
    /* bottom: 14.16015625vw; */
  }
}

@media (max-width: 768px) {
  .p-what-is__cut-in {
    height: 101%;
    width: 175%;
    left: -38%;
    /* bottom: 13.0208333333vw; */
  }
}

@media (max-width: 430px) {
  .p-what-is__cut-in {
    height: 101%;
    bottom: 10.333333vw;
    width: 175%;
    left: -38%;
  }
}

/* features */
.p-feature-wrap {
  padding-top: 140px;
  position: relative;
}

@media (max-width: 430px) {
  .p-feature-wrap {
    padding-top: 60px;
  }
}

.p-feature__cut-in {
  background: linear-gradient(0deg, rgb(248, 130, 42) 0%, rgb(249, 175, 53) 50%, rgb(255, 183, 37) 100%);
  height: 1600px;
  left: -10%;
  position: absolute;
  /* top: -280px;
  top: -18vw; */
  top: calc((-410 / 3840) * 100vw);
  transform-origin: right;
  rotate: -5deg;
  width: 150%;
  z-index: var(--z-index-cut-in);
}

@media (max-width: 1920px) {
  .p-feature__cut-in {
    /* top: -14.5833333333vw; */
    top: calc((-200 / 1920) * 100vw);
  }
}

@media (max-width: 768px) {
  .p-feature__cut-in {
    top: -90px;
  }
}

@media (max-width: 430px) {
  .p-feature__cut-in {
    top: -35px;
    left: -25%;
  }
}

.p-feature-wrap__inner {
  margin-inline: auto;
  max-width: 1080px;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .p-feature-wrap__inner {
    margin-top: 20px;
    padding: 0 min(20px, 5.3333333333vw);
  }
}

.p-feature-wrap__title {
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-feature-wrap__title span {
  color: var(--color-white);
  font-size: 104px;
  font-weight: bold;
}

@media (max-width: 1440px) {
  .p-feature-wrap__title span {
    font-size: max(80px, 4.1666666667vw);
  }
}

@media (max-width: 1024px) {
  .p-feature-wrap__title span {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .p-feature-wrap__title span {
    font-size: max(34px, 9.0666666667vw);
    /* margin-left: max(-50px, -13.3333333333vw); */
  }
}

.p-feature-wrap__title .p-feature-wrap__title__em {
  font-size: 170px;
}

@media (max-width: 1440px) {
  .p-feature-wrap__title .p-feature-wrap__title__em {
    font-size: max(155px, 8.0729166667vw);
  }
}

@media (max-width: 1024px) {
  .p-feature-wrap__title .p-feature-wrap__title__em {
    font-size: max(120px, 5.2083333333vw);
  }
}

@media (max-width: 768px) {
  .p-feature-wrap__title .p-feature-wrap__title__em {
    font-size: max(55px, 14.6666666667vw);
  }
}


.p-feature-wrap__title img {
  margin-left: 405px;
  margin-top: -28px;
  width: 570px;
}

@media (max-width: 1440px) {
  .p-feature-wrap__title img {
    margin-left: max(550px, 28.6458333333vw);
    width: max(525px, 27.34375vw);
  }
}

@media (max-width: 1024px) {
  .p-feature-wrap__title img {
    margin-left: max(320px, 16.6666666667vw);
    margin-top: -20px;
    width: max(320px, 16.6666666667vw);
  }
}

@media (max-width: 768px) {
  .p-feature-wrap__title img {
    margin-left: 130px;
    margin-top: -6px;
    width: max(190px, 50.6666666667vw);
  }
}

.p-feature__vertical {
  height: 95%;
  left: 40px;
  position: absolute;
  width: max(110px, 5.7291666667vw);
  z-index: var(--z-index-vertical-title);
}

@media (max-width: 1440px) {
  .p-feature__vertical {
    width: max(80px, 4.1666666667vw);
    width: 80px;
  }
}

@media (max-width: 1024px) {
  .p-feature__vertical {
    left: 23px;
    width: 60px;
  }
}

@media (max-width: 768px) {
  .p-feature__vertical {
    left: 8px;
    margin-top: 0;
    padding-bottom: 120px;
    top: 80px;
    width: max(22px, 5.8666666667vw);
  }
}

.p-feature__vertical img {
  position: sticky;
  top: 120px;
}

.p-feature {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 205px 0 340px;
}

@media (max-width: 1024px) {
  .p-feature {
    column-gap: 40px;
    padding: 70px 0;
  }
}

@media (max-width: 768px) {
  .p-feature {
    display: block;
    flex-direction: column;
    padding: 140px 0;
  }
}

@media (max-width: 430px) {
  .p-feature {
    padding: 100px 0;
  }
}

.p-feature:nth-child(even) {
  flex-direction: row-reverse;
}

.p-feature__circle-wrap {
  width: 420px;
}

@media (max-width: 1024px) {
  .p-feature__circle-wrap {
    width: 360px;
  }
}

@media (max-width: 768px) {
  .p-feature__circle-wrap {
    width: calc((300 / 375) * 100vmin);
    margin-inline: auto;
  }
}

@media (max-width: 430px) {
  .p-feature__circle-wrap {
    width: 100%;
  }
}

.p-feature__circle {
  align-items: center;
  position: relative;
}

@media (max-width: 768px) {
  .p-feature__circle {
    text-align: left;
    width: 100%;

  }
}

/* 回転アニメーション　アニメーション名は 'spin', 9秒で1回転, リニアで無限ループ */
.p-feature__circle-img {
  animation: spin 9s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
    /* 開始時の回転角度 */
  }

  to {
    transform: rotate(360deg);
    /* 終了時の回転角度 */
  }
}

.p-feature__text-wrap {
  /* align-items: center; */
  display: flex;
  flex-direction: column;
  left: 55%;
  position: absolute;
  top: 53%;
  transform: translate(-50%, -50%);
  width: 70%;
}

@media (max-width: 768px) {
  .p-feature__text-wrap {
    /* align-items: center; */
    /* align-items: start; */
    column-gap: 16px;
    /* flex-direction: row; */
    justify-content: center;
    padding: 0;
    position: initial;
    transform: none;
    position: relative;
    left: initial;
    width: 100%;
    z-index: var(--z-index-feature-text);
  }
}

.p-feature__text-wrap9 {
  /* align-items: center; */
  display: flex;
  flex-direction: column;
  left: 55%;
  position: absolute;
  top: 58%;
  transform: translate(-50%, -50%);
  width: 70%;
}

@media (max-width: 768px) {
  .p-feature__text-wrap9 {
    /* align-items: center; */
    /* align-items: start; */
    column-gap: 16px;
    /* flex-direction: row; */
    justify-content: center;
    padding: 0;
    position: initial;
    transform: none;
    position: relative;
    left: initial;
    width: 100%;
    z-index: var(--z-index-feature-text);
  }
}


.p-feature__icon {
  margin-inline: auto;
}

@media (max-width: 768px) {
  .p-feature__icon {
    margin-inline: initial;
  }
}

.p-feature__icon.p-feature__icon--login {
  width: 90px;
}

@media (max-width: 768px) {
  .p-feature__icon.p-feature__icon--login {
    width: max(20px, 5.3333333333vw);
  }
}

.p-feature__icon.p-feature__icon--live {
  width: 129px;
}

@media (max-width: 768px) {
  .p-feature__icon.p-feature__icon--live {
    width: max(60px, 16vw);
  }
}

.p-feature__icon.p-feature__icon--calendar {
  width: 83px;
}

@media (max-width: 768px) {
  .p-feature__icon.p-feature__icon--calendar {
    width: max(32px, 8.5333333333vw);
  }
}

.p-feature__icon.p-feature__icon--sales {
  width: 97px;
}

@media (max-width: 768px) {
  .p-feature__icon.p-feature__icon--sales {
    margin-top: -12px;
    width: max(48px, 12.8vw);
  }
}

.p-feature__icon.p-feature__icon--passed {
  width: 114px;
}

@media (max-width: 768px) {
  .p-feature__icon.p-feature__icon--passed {
    width: max(29px, 7.7333333333vw);
  }
}

.p-feature__icon.p-feature__icon--redirect {
  width: 112px;
}

@media (max-width: 768px) {
  .p-feature__icon.p-feature__icon--redirect {
    width: max(19px, 5.0666666667vw);
  }
}

.p-feature__icon.p-feature__icon--analysis {
  width: 112px;
}

@media (max-width: 768px) {
  .p-feature__icon.p-feature__icon--analysis {
    width: max(42px, 11.2vw);
  }
}

.p-feature__icon.p-feature__icon--l-step {
  width: 70px;
}

@media (max-width: 768px) {
  .p-feature__icon.p-feature__icon--l-step {
    width: max(32px, 8.5333333333vw);
  }
}

.p-feature__text {
  color: var(--color-white);
  font-size: 40px;
  font-weight: bold;
  line-height: 1.25;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1024px) {
  .p-feature__text {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .p-feature__text {
    /* font-size: max(28px, calc((28/375) * 100vw));
    font-size: 28px; */
    line-height: 1;
  }
}

@media (max-width: 430px) {
  .p-feature__text {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .p-feature:nth-child(7) .p-feature__text {
    text-align: left;
  }
}

.p-feature__sub-text {
  color: var(--color-white);
  font-size: 18px;
  /* font-weight: bold; */
  line-height: 1.5;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-top: 16px;
}

@media (max-width: 1024px) {
  .p-feature__sub-text {
    /* font-size: 36px; */
  }
}

@media (max-width: 768px) {
  .p-feature__sub-text {
    /* font-size: max(21px, 5.6vw); */
    /* line-height: 1; */
    font-size: 18px;
  }
}

@media (max-width: 430px) {
  .p-feature__sub-text {
    /* font-size: 30px; */
    font-size: 16px;
  }
}

.p-feature__sub-text9 {
  color: var(--color-white);
  font-size: 18px;
  /* font-weight: bold; */
  line-height: 1.5;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin: 5px 0 5px;
}

@media (max-width: 1024px) {
  .p-feature__sub-text9 {
    /* font-size: 36px; */
    margin: 5px 0 5px;
  }
}

@media (max-width: 768px) {
  .p-feature__sub-text9 {
    /* font-size: max(21px, 5.6vw); */
    /* line-height: 1; */
    font-size: 16px;
  }
}

@media (max-width: 430px) {
  .p-feature__sub-text9 {
    /* font-size: 30px; */
    font-size: 16px;
  }
}

.p-feature__sub-text img {
  margin: 0 auto;
  width: 100%;
  height: auto;
  margin-top: 5px;
}

@media (max-width: 1024px) {
  .p-feature__sub-text img {
    width: 80%;

  }
}

@media (max-width: 768px) {
  .p-feature__sub-text img {
    width: 80%;
  }
}

@media (max-width: 430px) {
  .p-feature__sub-text img {
    width: 80%;
  }
}



.p-feature__phone {
  width: 460px;
}

@media (max-width: 1024px) {
  .p-feature__phone {
    width: 360px;
  }
}

@media (max-width: 768px) {
  .p-feature__phone {
    padding-top: max(60px, 16vw);
    padding-top: max(80px, calc((80/375) * 100vw));
    position: relative;
    width: auto;
  }
}

@media (max-width: 430px) {
  .p-feature__phone {
    /* padding-top: max(115px, 30.6666666667vw); */
    padding-top: max(88px, calc((88/375) * 100vw));
  }
}

@media (max-width: 768px) {
  .p-feature:nth-child(5) .p-feature__phone {
    /* padding-top: max(100px, 26.6666666667vw); */
  }
}

@media (max-width: 430px) {
  .p-feature:nth-child(6) .p-feature__phone {
    /* padding-top: max(96px, 25.6vw); */
    /* padding-top: max(50px, calc((50/375) * 100vw)); */
  }
}


@media (max-width: 768px) {
  .p-feature:nth-child(7) .p-feature__phone {
    /* padding-top: max(80px, 21.3333333333vw); */
    /* padding-top: max(80px, calc((80/768) * 100vw)); */
  }
}

@media (max-width: 430px) {
  .p-feature:nth-child(7) .p-feature__phone {
    /* padding-top: max(80px, 21.3333333333vw); */
    /* padding-top: max(40px, calc((40/375) * 100vw)); */
  }
}

@media (max-width: 768px) {
  .p-feature:nth-child(8) .p-feature__phone {
    /* padding-top: max(80px, 21.3333333333vw); */
    /* padding-top: max(80px, calc((80/768) * 100vw)); */
  }
}

@media (max-width: 430px) {
  .p-feature:nth-child(8) .p-feature__phone {
    /* padding-top: max(80px, 21.3333333333vw); */
    /* padding-top: max(40px, calc((40/375) * 100vw)); */
  }
}

@media (max-width: 768px) {
  .p-feature__sp-circle {
    margin-inline: auto;
    width: 80vmin;
  }
}

.p-feature__phone-img {
  z-index: var(--z-index-phone);
}

@media (max-width: 768px) {
  .p-feature__phone-img {
    bottom: -30px;
    left: 35%;
    /* max-width: 420px; */
    position: absolute;
    width: 66.6666666667vmin;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .p-feature:nth-child(odd) .p-feature__phone-img {
    /* transform: translateX(-30%); */
  }
}

@media (max-width: 768px) {
  .p-feature:nth-child(even) .p-feature__phone-img {
    /* transform: translateX(-30%); */
  }
}

@media (max-width: 768px) {
  .p-feature:nth-child(4) .p-feature__phone-img {
    /* transform: translateX(-30%); */
  }
}

@media (max-width: 768px) {
  .p-feature:nth-child(5) .p-feature__phone-img {
    /* transform: translateX(-30%); */
  }
}

@media (max-width: 768px) {
  .p-feature:nth-child(6) .p-feature__phone-img {
    /* transform: translate(-30%, 5%); */
  }
}

@media (max-width: 768px) {
  .p-feature:nth-child(7) .p-feature__phone-img {
    /* transform: translate(-30%, 10%); */
  }
}

@media (max-width: 768px) {
  .p-feature:nth-child(8) .p-feature__phone-img {
    /* transform: translate(-30%, 10%); */
  }
}

/* footer */
.p-footer {
  overflow: hidden;
  position: relative;
  max-height: 1466px;
}

.p-footer__title {
  background: linear-gradient(0deg, rgb(248, 130, 42) 0%, rgb(249, 175, 53) 50%, rgb(255, 183, 37) 100%);
  background-clip: text;
  color: transparent;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 84px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
  .p-footer__title {
    font-size: max(28px, 7.4666666667vw);
  }
}

.footer__logo {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-inline: auto;
  margin-top: 75px;
  max-width: 643px;
  width: 100%;
}

@media (max-width: 768px) {
  .footer__logo {
    margin-top: 40px;
    width: max(61.6vmin, 231px);
  }
}

.p-footer__L-cast {
  width: 643px;
}

@media (max-width: 768px) {
  .p-footer__L-cast {
    width: 100%;
  }
}

.p-footer__L-step {
  margin-top: 24px;
  width: 598px;
}

@media (max-width: 768px) {
  .p-footer__L-step {
    margin-top: 6px;
    width: 100%;
  }
}

.p-footer__button-wrap {
  margin-top: 168px;
  text-align: center;
}

.p-footer__txtlink-wrap {
  margin-top: 50px;
  text-align: center;
  font-size: 0.8em;
  color: var(--color-gray);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .p-footer__button-wrap {
    margin-top: 60px;
  }

  .p-footer__txtlink-wrap {
    margin-top: 30px;
  }
}

.p-footer__button-wrap2 {
  margin-top: 44px;
  text-align: center;
}

@media (max-width: 768px) {
  .p-footer__button-wrap2 {
    margin-top: 22px;
  }
}

@media (max-width: 768px) {
  .p-footer__button {
    font-size: 18px;
    max-width: 305px;
    padding: 12px 10px;
  }
}

.p-footer-copyright-wrap {
  align-items: center;
  color: var(--color-gray);
  column-gap: 30px;
  display: flex;
  justify-content: center;
  margin-top: 276px;
}

@media (max-width: 768px) {
  .p-footer-copyright-wrap {
    column-gap: 12px;
    flex-direction: column-reverse;
    font-size: 10px;
    margin-top: 120px;
  }
}

@media (max-width: 768px) {
  .p-footer-copyright-wrap {
    margin-top: 85px;
  }
}

.p-footer__copyright {
  letter-spacing: -0.05em;
  padding: 10px;
}

@media (max-width: 768px) {
  .p-footer__copyright {
    font-size: 7px;
    padding: 8px 0 6px;
  }
}

.p-footer__link-wrap {
  display: flex;
}

@media (max-width: 768px) {
  .p-footer__link-wrap {
    column-gap: 12px;
  }
}

.p-footer__link {
  align-items: center;
  column-gap: 30px;
  display: flex;
  font-family: "Noto Sans JP", sans-serif;
  padding: 10px;
  position: relative;
  transition: opacity 0.3s;
}

@media (max-width: 768px) {
  .p-footer__link {
    column-gap: 12px;
    padding: 8px 0;
  }
}

.p-footer__link:hover {
  opacity: 0.7;
}

.p-footer__link::before {
  background: var(--color-gray);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 16px;
  position: relative;
  width: 1px;
}

@media (max-width: 768px) {
  .p-footer__link::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .p-footer__link:nth-child(2)::before {
    background: var(--color-gray);
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: block;
    height: 10px;
    position: relative;
    width: 1px;
  }
}

.p-footer__cut-in {
  background: #ffffff url("../img/footer/footer_bg_pc_dot.webp") no-repeat center center/cover;
  clip-path: polygon(0 10%, 100% 0%, 100% 100%, 0% 100%);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform-origin: right;
  width: 100%;
  z-index: var(--z-index-cut-in);
}

@media (max-width: 768px) {
  .p-footer__cut-in {
    background: #ffffff url("../img/footer/footer_bg_sp_dot.webp") no-repeat center center/cover;
  }
}

/* ユーティリティ */
.u-sp-show {
  display: none;
}

@media (max-width: 430px) {
  .u-sp-show {
    display: block;
  }
}

@media (max-width: 430px) {
  .u-sp-none {
    display: none;
  }
}

.u-tab-show {
  display: none;
}

@media (max-width: 768px) {
  .u-tab-show {
    display: block;
  }
}

@media (max-width: 768px) {
  .u-tab-none {
    display: none;
  }
}

@media (max-width: 768px) {
  .u-pc-only {
    display: none;
  }
}

.u-hidden {
  overflow: hidden;
}

/*# sourceMappingURL=style.css.map */


/*------------------------------ フローティング ------------------------------*/

.floating {
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 9999;
  text-align: center;
  margin: 0;
  padding: 10px 0;
  background: rgba(0, 0, 0, 0.3);
  display: none;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.floating.show {
  display: block;
  opacity: 1;
}

.floating.hide {
  opacity: 0;
}

.enter {
  margin: 0;
  padding: 0 30px 10px;
  text-align: center;
}

.button {
  background: #ffffff;
  border: 4px solid var(--color-button);
  border-radius: 100vh;
  color: var(--color-button);
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 30px;
  font-weight: bold;
  max-width: 506px;
  padding: 20px;
  position: relative;
  text-align: center;
  transition: color 0.3s, background 0.3s;
  width: 100%;
}

@media (max-width: 1024px) {
  .button {
    font-size: 20px;
    max-width: 340px;
    padding: 12px;
  }
}

@media (max-width: 768px) {
  .button {
    border-width: 2px;
    font-size: 18px;
    max-width: 240px;
    padding: 8px 10px;
  }
}

@media (max-width: 430px) {
  .button {
    font-size: 18px;
    max-width: 100%;
    padding: 12px 10px;
  }
}

.button:hover {
  background: var(--color-button);
  color: var(--color-white);
}

.button .fas {
  color: var(--color-button);
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  transition: color 0.3s;
}

@media (max-width: 768px) {
  .button .fas {
    right: 10px;
  }
}

.button:hover .fas {
  color: var(--color-white);
}


@media screen and (min-width:769px) {
  .floating {
    padding: 15px 0;
  }

  .button {
    width: 480px;
    padding: 20px 0;
    font-size: 24px;
  }
}