@charset "utf-8";

html {
  font-size: min(1vw, calc(var(--contentWidth) / 100));
  overflow-x: hidden;
}

body {
  width: 100%;
  background-image: url(../img/bg.jpg);
  background-size: cover;
  background-repeat: repeat;
  background-position: top center;
  background-attachment: fixed;
  font-size: 4.5rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-attachment: fixed;
  color: var(--black);
  font-weight: 500;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
}

* {
  box-sizing: border-box;
}

img {
  width: 100%;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: underline;
  color: revert;
}

ruby {
  ruby-align: center;
}

rt {
  font-size: 0.6em;
  line-height: 1;
}

#contents {
  background: #fff;
  max-width: var(--contentWidth);
  margin-inline: auto;
  box-shadow: 0 0 20rem 0 #00000059;
}

main {
  overflow: hidden;
}

.l-header-info {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: calc(50% - 250px);
  display: grid;
  place-content: center stretch;
}

.l-header-logo {
  width: 50%;
  margin: 0 auto;
}

header {
  background: var(--blue2);
}

.header_mv {
  position: relative;
}

.header_mv video {
  position: absolute;
  bottom: 0;
  left: 0;
  transform-origin: center center;
  /* 拡大縮小の基準点 */
}

/* head1 用 */
.header_mv.head1 video {
  bottom: 20rem;
  left: -14rem;
  transform: scale(0.65);
  /* 等倍 */
}

/* head2 用 */
.header_mv.head2 video {
  bottom: 18rem;
  left: -10rem;
  transform: scale(0.68);
}

/* head5 用 */
.header_mv.head5 video {
  bottom: 19rem;
  left: 0;
  transform: scale(0.8);
  /* 80%に縮小 */
}


.r_grad {
  background-image: linear-gradient(90deg, #a9211a 0%, #ca2035 50%, #a9211a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*------------------------------------------------
カウントダウンタイマー
--------------------------------------------------*/
#scheader {
  z-index: 100;
  /* Updated to higher z-index */
  position: sticky;
  /* Changed from fixed to sticky */
  top: 0;
  /* Added for sticky positioning */
  width: 100%;
  font-size: 3.5rem;
  font-weight: bold;
  /* Removed duplicate declaration */
  text-align: center;
  background: var(--black);
  /* Updated to use variable */
  color: #fff;
  padding: 2rem 0;
  /* Added for consistent spacing */
  line-height: 1;
  /* Unified line-height */
}

#scheader .countdown {
  padding: 1rem 0;
  margin: 0 auto;
  line-height: 1.2;
  /* Retained specific line-height */
  font-family: Verdana, Roboto, "Droid Sans", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", sans-serif, monospace;
}

#scheader .countdown .timer_num {
  display: inline-block;
  padding: 0 0.4rem;
  margin: 0 0.4rem;
  border-radius: 3px;
  color: var(--black);
  font-size: 150%;
  background: #fff;
}

/*--------------------------------------------------
 Section
-------------------------------------------------- */
section {
  padding: 12rem 0;
  position: relative;
}

.img_arrow {
  width: 60%;
  margin: 0 auto;
}

.arrow_txt {
  text-align: center;
  position: relative;
  top: 5rem;
}

.img30 {
  width: 30%;
}

.img40 {
  width: 40%;
}

.img50 {
  width: 50%;
}

.img70 {
  width: 70%;
}

.img80 {
  width: 80%;
}

.sec_inner {
  padding: 0 5rem;
}

video {
  width: 100%;
}

/* Form
------------------------- */

/* Form
------------------------- */
.form {
  background: linear-gradient(to left, #414965, #040712);
  color: #fff;
  position: relative;
}

.form_inner {
  padding: 7rem 5rem;
}

.form.head2 {
  color: #111111;
}

.form.form_arrow::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  border-top: 7rem solid transparent;
  border-left: min(calc(var(--contentWidth) / 2), 50vw) solid var(--formColor);
  border-right: min(calc(var(--contentWidth) / 2), 50vw) solid var(--formColor);
  border-bottom: none;
  top: calc(-7rem + 1px);
  left: 0;
}

.form form {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr auto;
  gap: 0 2rem;
}

.form_prev {
  margin: 0rem 0 3rem;
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
}

.form_prev p {
  line-height: 1.3;
}

.form_box {
  position: relative;
}

.form_input {
  position: relative;
  background: #fff;
  width: 100%;
  border: 2px solid #ccc;
  border-radius: 2rem;
  color: #111111;
  text-align: left;
  padding: 2.5rem 0.5rem 2.5rem 10rem;
  font-size: 4rem;
  height: 100%;
}


.form_must {
  position: absolute;
  /* width: 10rem; */
  left: 3rem;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 3rem;
  text-align: center;
  z-index: 10;
  width: auto;
  padding: 1rem;
  font-size: 2.5rem;
  line-height: 1.2;
}

.form_label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: ease 0.3s;
  pointer-events: none;
  color: #aaa;
  z-index: 10;
  font-size: 3rem;
  left: 11rem;
}

.form_input:focus+.form_label,
.form_input:not(:placeholder-shown)+.form_label {
  top: 15%;
  font-size: 3rem;
  color: #3377ff;
}

.form_btn button {
  position: relative;
  width: 100%;
  height: 100%;
  background: #00ad48;
  border: 2px solid #7dff88;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: bold;
  color: #fff;
  text-align: center;
  font-size: 4rem;
  line-height: 1.3;
  padding-right: 0.5em;
}

.form_btn button .form_btn_icon::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 0.6em;
  height: 0.6em;
  border-top: 0.5rem solid #fff;
  border-right: 0.5rem solid #fff;
  transform: translate(0.1em, -50%) rotate(45deg);
  filter: drop-shadow(0 2px 3px #00865c);
}

.form_btn button:hover {
  filter: brightness(1.2);
}

.form_notice p {
  font-size: 2.5rem;
  padding-top: 0.5rem;
  text-align: center;
  margin-top: 2rem;
}

.ui-autocomplete {
  position: absolute !important;
  background: #fff;
  list-style: none;
  border-radius: 1rem;
  overflow: hidden;
  z-index: 100;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.ui-autocomplete li {
  border-bottom: 1px solid #ccc;
  padding: 1rem;
  font-family: inherit !important;
  text-align: left;
  color: #111111;
}

.ui-autocomplete li:hover,
.ui-state-focus {
  background: #ff7;
}

.ui-helper-hidden-accessible {
  display: none !important;
}

.merit_icon {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  text-align: center;
}

.form_lead {
  font-size: 3.4rem;
  text-align: center;
  margin-bottom: 2rem;
}

.form_text-wrap {
  font-size: 3rem;
  padding: 2rem 4rem;
  width: fit-content;
  border: 1px dotted #fff;
  border-radius: 2rem;
  line-height: 1.3;
}

.head2 .form_text-wrap {
  border: 1px dotted #111111;
}

.merit_icon .form_text-wrap:nth-child(2) {
  display: flex;
  align-items: center;
  justify-content: center;
}

.form_icon {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  align-items: stretch;
  /* 子要素の高さを揃える */
}

.form_icon p {
  font-weight: bold;
  font-size: 3.5rem;
  margin: 1rem 0;
  padding: 1rem;
  width: 49%;
  /* 横幅の調整 */
  border: 1px dotted #fff;
  border-radius: 2rem;
  text-align: center;
  display: flex;
  /* コンテンツを中央揃え */
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  /* パディング込みで幅を調整 */
}

/*css変更*/
/* ----------------------------------------------------
intro
--------------------------------------------------- */
#intro {
  background-image: url('../img/bg_1.jpg');
  background-size: cover;
}

#intro .sub_head {
  margin-bottom: 2rem;
}

#intro .notice {
  padding-top: 0;
}

/* ----------------------------------------------------
#method
--------------------------------------------------- */
#method {
  background-color: #E5F6FF;
  padding-top: 0;
  padding-bottom: 3rem;
}

#method .sub_head {
  background: linear-gradient(to right, #0878D5, #0F1D4E);
  color: #fff;
  padding: 3rem 0;
  margin-bottom: 5rem;
}


.triangle-down {
  width: 100%;
  height: 14rem;
  position: relative;
}

.triangle-down::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-left: 50rem solid transparent;
  border-right: 50rem solid transparent;
  border-top: 14rem solid #E5F6FF;
  filter: drop-shadow(0 5rem 13px rgba(0, 0, 0, 0.2));
}

/* ----------------------------------------------------
case
--------------------------------------------------- */
#case {
  position: relative;
  background: linear-gradient(to bottom, #E3EAEE, #8AA2CF, #E3EAEE);
  padding-top: 0;
  z-index: 0;
}

#case::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../img/little-pluses.png');
  background-repeat: repeat;
  background-size: auto;
  opacity: 0.4;
  /* ← ここで透過度調整 */
  pointer-events: none;
  z-index: -1;
}

.case_box {
  background-color: #fff;
  border: 1px solid #223092;
  border-radius: 5rem;
  overflow: hidden;
  margin-bottom: 10rem;
}

.case_box:last-child {
  margin-bottom: 0;
}

.case_title {
  text-align: center;
  padding: 3rem 0;
  background: linear-gradient(to bottom, #0878D5, #0F1D4E);
  color: #fff;
  font-size: 5rem;
}

.case_box .sec_inner {
  margin: 3rem 5rem 8rem;
  padding: 0;
}

#case .case_box .img_arrow {
  margin-top: 3rem;
}

.ac_area {
  display: none;
}

/* フォームボタンの文言・アイコン */
.cta_btn:after {
  content: '+';
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 5rem;
}

.cta_btn.opened {
  border: 1px solid #333;
  color: #333;
}

.cta_btn.opened:before {
  content: '閉じる';
  font-size: 4.5rem;
  font-weight: 500;
}

.cta_btn.opened:after {
  content: 'ー';
  font-size: 4rem;
}

.cta_btn span {
  display: block;
  font-size: 4.5rem;
  font-weight: 500;
}

.cta_btn.opened span {
  display: none;
}

.cta_btn {
  display: block;
  width: 100%;
  background: none;
  color: var(--black);
  line-height: 1.2;
  padding: 3rem 0;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  z-index: 10;
  font-family: inherit;
  border-radius: 40px;
  border: 1px solid var(--black);
  text-align: center;
}

.cta_btn:hover {
  filter: brightness(1.3);
}


.before {
  color: #fff;
  background-color: #4B4B4B;
  padding: 1rem 0 4rem;
}

.before_list {
  margin: 0 3rem;
}

.after {
  color: #fff;
  background-color: #8d0f01;
  padding: 1rem 0 4rem;
  margin-bottom: 5rem;
}

.after_list {
  margin: 0 3rem;
}


/* ----------------------------------------------------
voice
--------------------------------------------------- */
#voice {

  background-image:
    url('../img/bg_02.png'),
    /* 一番上：装飾画像 */
    url('../img/fresh-snow.png'),
    /* パターン */
    linear-gradient(to bottom, #FFBF71, #FFF9D7);
  /* グラデーション */

  background-repeat:
    no-repeat,
    repeat,
    no-repeat;

  background-size:
    100% auto,
    /* ← 実寸サイズ */
    auto,
    cover;

  background-position:
    top center,
    /* ← 上端に配置 */
    center,
    center;
}

#voice .case_box {
  background-color: #fff;
  border: 1px solid #E79A00;
  border-radius: 5rem;
  overflow: hidden;
  margin-bottom: 10rem;
}

#voice .case_title {
  text-align: center;
  padding: 3rem 0;
  background: linear-gradient(to bottom, #E79A00, #E41A00);
  color: #fff;
}

#voice .case_box .img_arrow {
  margin-top: 3rem;
}

/* ----------------------------------------------------
future
--------------------------------------------------- */
#future {
  padding-top: 18rem;

  background-image:
    url('../img/bg_10.png'),
    /* 一番上：装飾画像 */
    url('../img/bg_03.jpg');

  background-repeat:
    no-repeat,
    repeat;

  background-size:
    100% auto,
    /* ← 実寸サイズ */
    auto;

  background-position:
    top center,
    /* ← 上端に配置 */
    bottom center;
}

.future_box {
  background: rgba(255, 255, 255, 0.4);
  padding: 8rem 5rem;
  margin-bottom: 5rem;
  box-shadow: 3px 3px 20px 0px rgba(30, 40, 102, 0.25);
}

.future_box_img {
  width: 100%;
  height: auto;
  display: block;
}

.future_box_text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
  font-size: 5rem;
  line-height: 1.5;
  text-align: center;
  color: #000;
  letter-spacing: 0.48px;
  margin-bottom: 10px;
}

.future_text_red {
  color: #8d0f01;
  font-size: 5rem;
}

.future_case_img {
  width: 100%;
  height: auto;
  display: block;
}

.future_subtitle_main {
  font-family: 'Noto Serif JP', serif;
  font-weight: 600;
  font-size: 7rem;
  line-height: 1.4;
  color: #0f1d4e;
  text-align: center;
  letter-spacing: 1.7px;
  margin-bottom: 2rem;
}

.future_dummy_img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 0;
}

.future_wave_text {
  font-family: 'Noto Serif JP', serif;
  font-weight: 600;
  font-size: 6.5rem;
  line-height: 1.5;
  color: #0f1d4e;
  text-align: center;
  letter-spacing: 1.5px;
  margin: 0;
}

.future_bottom_img {
  margin: 8rem 0 5rem;
}

.future_bottom_img img {
  width: 100%;
  height: auto;
  display: block;
}

.future_final_text {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.future_final_text h2 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 600;
  font-size: 8rem;
  line-height: 1.5;
  color: #0f1d4e;
  text-align: center;
  letter-spacing: 2.1px;
  margin: 0;
}

/* ----------------------------------------------------
can
--------------------------------------------------- */
#can {
  padding-top: 17rem;
  background-image:
    url('../img/bg_11.png'),
    /* 一番上：装飾画像 */
    url('../img/bg_08.png');
  /* その下：背景画像 */

  background-repeat:
    no-repeat,
    no-repeat;

  background-size:
    100% auto,
    100% auto;

  background-position:
    top center,
    bottom center;

  background-color: #FFFAF0;
  /* ← 一番下の塗り */
}

#can .case_box {
  background-color: #fff;
  border: 1px solid #E79A00;
  border-radius: 5rem;
  overflow: hidden;
  margin-bottom: 10rem;
}

#can .case_box.last {
  margin-bottom: 3rem;
}

#can .case_title {
  text-align: center;
  padding: 4rem 0;
  background: linear-gradient(to bottom, #E79A00, #E41A00);
  color: #fff;
  font-size: 5rem;
}

.can_txt {
  font-size: 8rem;
  text-align: center;
  background: linear-gradient(to bottom, #E79A00, #E41A00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* 一部ブラウザ用 */
  color: transparent;
  /* Fallback用 */
  line-height: 1.4;
  margin-bottom: 3rem;
}

.balloon_up {
  position: relative;
  display: inline-block;
  padding: 1.8rem 8rem;
  background: #d9f2ff;
  /* 吹き出しの色 */
  border-radius: 2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  font-size: 4.3rem;
  margin-top: 5rem;
}

/* 上の三角 */
.balloon_up::before {
  content: "";
  position: absolute;
  top: -3.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 2.2rem solid transparent;
  border-right: 2.2rem solid transparent;
  border-bottom: 3.2rem solid #d9f2ff;
}


/* ----------------------------------------------------
reco
--------------------------------------------------- */
#experience {
  padding: 13rem 0 0;

  background-image:
    url('../img/bg_04.png'),
    /* 一番上：装飾画像 */
    url('../img/bg_05.png'),
    /* その下：背景画像 */
    linear-gradient(to top, #C7C4EC, #5A66BB, #B2C5E5, #272D6F);
  /* 一番下：グラデーション（透明度50%） */

  background-repeat:
    no-repeat,
    no-repeat,
    no-repeat;

  background-size:
    100% auto,
    100% auto,
    100% 100%;

  background-position:
    top center,
    bottom center,
    center;

  background-color: #FFFAF0;
  /* 念のための最下層 */
}

#experience .sub_head {
  text-align: center;
  color: #fff;
  border: 1px solid #fff;
  width: fit-content;
  margin: 0 auto;
  padding: 3rem 14rem;
  font-weight: 400;
  margin-bottom: 7rem;
}

.experience_box {
  border: 2px solid #ffffff;
  background: linear-gradient(to bottom, #040712, #414965);
  color: #ffffff;
  margin: 0 3rem 8rem;
}

/* 上部 */
.exp_header {
  padding: 6rem 2rem;
  text-align: center;
  background: linear-gradient(to right, #040712, #414965);
}

.exp_label {
  display: block;
  margin: 0 auto 1.6rem;
}

.exp_title {
  font-size: 5.6rem;
  line-height: 1.4;
  font-family: 'Noto Serif JP', serif;
  letter-spacing: 1.5px;
  font-weight: bold;
}

/* 中央ダミーエリア */
.exp_body {
  padding: 3rem 2rem;
  background: #f5f5f5;
  text-align: center;
}

.exp_dummy_image {
  width: 100%;
  height: auto;
  max-width: 22rem;
}

/* 下部 */
.exp_footer {
  padding: 2.4rem 2rem 5rem;
  text-align: center;
  background: linear-gradient(to right, #0f1629, #3a4768);
}

.exp_text {
  font-size: 4rem;
  line-height: 1.7;
  margin-bottom: 1.6rem;
}

#experience .notice {
  padding-top: 0;
  font-size: 2rem;
  line-height: 1.5;
  opacity: 0.5;
  color: #fff;
}

#experience .lead {
  font-size: 7rem;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  font-family: 'Noto Serif JP', serif;
}

#con_lead {
  padding: 0 0 8rem;
}

#con_lead .triangle-down {
  position: relative;
  top: -1px;
}

#con_lead .triangle-down::before {
  content: "";
  border-top: 14rem solid #0E1C4D;
  filter: drop-shadow(0 1rem 4px rgba(0, 0, 0, 0.1));
}

.con_lead_box {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.lead_box_img {
  width: 35%;
}

.lead_box_text {
  width: 60%;
  font-size: 4.2rem;
  line-height: 1.4;
  font-family: 'Noto Serif JP', serif;
  font-weight: bold;
}

.lead_box_text li {
  margin-bottom: 2rem;
}

#con_lead .notice {
  padding-top: 0;
}

/* ----------------------------------------------------
profile
--------------------------------------------------- */

#profile {
  padding: 10rem 0 0;
  background-color: #223092;
}

#profile .sub_head {
  color: #fff;
  font-weight: 500;
}

/* ----------------------------------------------------
turning
--------------------------------------------------- */
#turning {
  padding: 0 0 10rem;
  background-color: #fff;
  background-image: url('../img/bg_08.png');
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center bottom;
}

/* ----------------------------------------------------
turning
--------------------------------------------------- */
#now {
  background-image: url('../img/grid-me.png');
  background-repeat: repeat;
  background-size: auto;
}

.now_box {
  background-color: #C2EBFF;
}

.now_box+.now_box {
  margin-top: 6rem;
}

.now_box_title {
  text-align: center;
  color: #fff;
  padding: 4rem 0;
  font-family: 'Noto Serif JP', serif;
  font-size: 5.5rem;
  font-weight: bold;
  background: linear-gradient(to bottom, #6BB8DD, #223092)
}

.now_box_img {
  padding: 6rem;
}

/* ----------------------------------------------------
reco
--------------------------------------------------- */

#reco {
  position: relative;
  background: linear-gradient(45deg,
      #414965,
      #040712,
      #414965,
      #040712);
}

/* パターン用レイヤー */
#reco::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../img/fresh-snow.png');
  background-repeat: repeat;
  background-size: auto;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
  /* ← マイナスにしない */
}

/* 中のコンテンツ */
#reco>* {
  position: relative;
  z-index: 1;
}

#reco .sec_inner {
  padding: 0 8rem;
}

#reco .sub_head {
  color: #fff;
}

#reco .notice {
  padding-top: 0;
  color: #d8d8d8;
}

/* ----------------------------------------------------
message
--------------------------------------------------- */
#message {
  background: linear-gradient(to bottom, #0878D5, #0F1D4E)
}

#message .sec_inner {
  padding: 0 8rem;
}

.message_txt {
  background-color: #fff;
  padding: 6rem 5rem;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.8;
  font-family: 'Noto Serif JP', serif;
}

/* ----------------------------------------------------
Information
--------------------------------------------------- */
#information {
  padding: 10rem 0;
  background: #fff;
  color: #000;
}

#information p {
  font-size: 3.9rem;
  font-weight: bold;
  margin-bottom: 0.5em;
  line-height: 1.5;
}

#information ul {
  font-size: 3rem;
  line-height: 1.5;
}

#information ul li {
  text-align: justify;
  text-indent: -1em;
  padding: 0.2em 0 0.2em 1em;
}

#information ul li::before {
  content: "●";
}

/* Footer
------------------------- */
footer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  background: #dddddd;
  color: #707070;
  padding: 5rem;
}

#footer_logo {
  text-align: center;
  width: 65%;
  margin: 0 auto;
}

#footer_info p {
  font-size: 2rem;
  text-align: center;
}

#footer_info ul {
  width: fit-content;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 2rem;
}

#footer_info ul li a {
  display: block;
  padding: 0.5em;
  font-size: 3rem;
  text-align: center;
  color: inherit !important;
  text-decoration: none;
}

#footer_info p a {
  color: inherit !important;
  text-decoration: none;
}

/* Scfooter
------------------------- */
#scfooter {
  display: none;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2rem);
  position: sticky;
  bottom: 0;
  max-width: var(--contentWidth);
  margin-inline: auto;
  z-index: 100;
}

#scfooter .form {
  max-width: var(--contentWidth);
  padding: 3rem 5rem;
  margin-inline: auto;
  background: transparent;
}

#scfooter .form form {
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr auto;
  gap: 0 2rem;
}

#scfooter .form_input {
  padding: 0.5em 0.5em 0.5em 10rem;
  font-size: 4rem;
  height: 100%;
}

#scfooter .form_must {
  width: auto;
  padding: 0.5em;
  font-size: 2.5rem;
  line-height: 1.2;
}

#scfooter .form_label {
  font-size: 3rem;
  left: 10rem;
}

#scfooter .form_input:focus+.form_label {
  top: 20%;
  font-size: 2rem;
}

#scfooter .form_btn button {
  font-size: 4rem;
  line-height: 1.3;
  padding-right: 0.5em;
}

/*アニメーション*/
/* ----------------------------------------------------
ふわっと表示
------------------------------------------------------ */
.scroll-up {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: all 1s;
}

.scroll-up.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.rela {
  position: relative;
}

.reco_deco::before,
.reco_deco::after {
  content: "";
  position: absolute;
  top: 1rem;
  bottom: 0rem;
  width: 10rem;
  /* 画像の横幅に合わせて調整 */
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.reco_deco::before {
  left: 5rem;
  background-image: url("../img/reco_l.png");
  /* ←＼の画像パスに置き換えてください */
}

.reco_deco::after {
  right: 5rem;
  background-image: url("../img/reco_r.png");
  /* ←／の画像パスに置き換えてください */
}

.line_deco::before,
.line_deco::after {
  content: "";
  position: absolute;
  top: 34rem;
  bottom: 0rem;
  width: 6rem;
  /* 画像の横幅に合わせて調整 */
  height: 15rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.line_deco::before {
  left: 4rem;
  background-image: url("../img/line_l.png");
  /* ←＼の画像パスに置き換えてください */
}

.line_deco::after {
  right: 4rem;
  background-image: url("../img/line_r.png");
  /* ←／の画像パスに置き換えてください */
}