@charset "utf-8";

@font-face {
  font-family: 'Noto Sans JP';
  src: url('font/NotoSansJP-VariableFont_wght.woff2') format('woff2'),
    url('font/NotoSansJP-VariableFont_wght.woff') format('woff'),
    url('font/NotoSansJP-VariableFont_wght.eot') format('eot'),
    url('font/NotoSansJP-VariableFont_wght.ttf') format('truetype');
}

@font-face {
  font-family: 'Noto Serif JP';
  src: url('font/NotoSerifJP-VariableFont_wght.woff2') format('woff2'),
    url('font/NotoSerifJP-VariableFont_wght.woff') format('woff'),
    url('font/NotoSerifJP-VariableFont_wght.eot') format('eot'),
    url('font/NotoSerifJP-VariableFont_wght.ttf') format('truetype');
}


html {
  font-size: min(1vw, calc(var(--contentWidth) / 100));
  overflow-x: hidden;
}

body {
  width: 100%;
  font-size: 4.5rem;
  background-image: url("../img/bg.jpg");
  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;
}

#contents {
  background: #fff;
  max-width: var(--contentWidth);
  margin-inline: auto;
  box-shadow: 0 0 20rem 0 rgba(0, 0, 0, 0.3);
}

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);
}

.r_grad {
  background-image: linear-gradient(90deg, #88000c 0%, #ca2035 50%, #88000c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.head_video {
    left: 5%;
    position: absolute;
    bottom: 17rem;
    width: 90%;
}

/*------------------------------------------------
カウントダウンタイマー
--------------------------------------------------*/
#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(--red2);
  /* 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: 15rem 0;
  position: relative;
}

.sub_head {
  font-size: 6rem;
  line-height: 1.5;
  text-align: center;
  font-weight: 700;
}

.img_arrow {
  width: 60%;
  margin: 0 auto;
  margin-top: 3rem;
}

.sec_inner {
  padding: 0 5rem;
}

video {
  width: 100%;
}

/* Form
------------------------- */

/* Form
------------------------- */
.form {
  background: var(--red2);
  color: #fff;
  position: relative;
}

.form_inner {
  padding: 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: 1fr;
  grid-template-rows: 1fr 1fr auto;
  gap: 3rem;
}

header .form form {
  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%;
}

header .form_prev {
  margin: 0rem 0 3rem;

}

header .merit_icon {
  margin: 3rem 0 1rem;
}

header .form_inner {
  padding: 4rem 5rem 4rem;
}

.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;
}

header .form_label {
  left: 11rem;
}

.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: 12rem;
}

.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;
}

header .form_notice p {
  padding-top: 2.5rem;
}

.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_text-wrap {
  font-size: 3rem;
  margin: 1rem 0rem;
  padding: 1rem 1rem .7rem;
  width: 32% !important;
  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 {
  padding-top: 8rem;
  background-color: #ffffff;
}

#intro .sub_head {
  margin-bottom: 4rem;
}

#intro .notice {
  padding-top: 0;
}

/* ----------------------------------------------------
voice
--------------------------------------------------- */
#voice {
  background-color: #e0f0ff;

}

.voice_wrap {
  background-color: #fff;
  background-image: url('../img/grid-me.png');
  /* 画像のパスを指定 */
  background-repeat: repeat;
  /* 画像をタイル状に繰り返す */
  background-size: auto;
  /* 画像の実寸サイズで表示 */
  padding: 7rem 5rem;
  margin: 7rem 0;
  border-radius: 5rem;
}

.voice_box {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  margin-bottom: 5rem;
  align-items: center;
}

.voice_img {
  width: 40%;
}

.voice_txt {
  width: 40%;
  text-align: center;
  border-bottom: 2px solid #222222;
  padding-bottom: 2rem;
}

#voice .voice_h2 {
  background: var(--blue);
  color: #fff;
  font-size: 5.5rem;
  padding: 8rem 0 3rem;
  margin-bottom: 20rem;
  position: relative;
}

#voice .voice_h2::after {
  content: "";
  width: 100%;
  height: 10.5rem;
  background: var(--blue);
  position: absolute;
  display: inline-block;
  top: 39.8rem;
  left: 0;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

/* ----------------------------------------------------
case
--------------------------------------------------- */
#case {
  background-image: url('../img/bg_case.jpg');
  /* 画像パス */
  background-repeat: no-repeat;
  /* 繰り返さない */
  background-position: center center;
  /* 中央に配置 */
  background-size: cover;
  padding-bottom: 3rem;
}

.balloon {
  position: relative;
  display: inline-block;
  max-width: 85%;
  padding: 1rem 2rem 1.2rem;
  color: #88000c;
  font-weight: bold;
  text-align: center;
  border-bottom: 3px solid #88000c;
  background: transparent;
  border-radius: 0;
}

/* 吹き出しの「しっぽ」部分 */
.balloon::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #88000c;
}


/* ----------------------------------------------------
merit
--------------------------------------------------- */
#merit {
  background-color: #ffffff;
  background-image: url("https://www.transparenttextures.com/patterns/hexellence.png");
  /* This is mostly intended for prototyping; please download the pattern and re-host for production environments. Thank you! */
}

.merit_title {
  position: relative;
  top: -4rem;
  margin: 0 auto;
  background: #a40e1e;
  border-radius: 38px;
  text-align: center;
  font-size: 4.5rem;
  font-weight: bold;
  color: #ffffff;
  line-height: 1.2;
  padding: 2rem 7rem;
  width: fit-content;
}

.merit_box {
  background-color: #fff;
  border: 2px solid #a40e1e;
  border-radius: 3rem;
  padding: 0 5rem 5rem;
  margin: 5rem 0 12rem;
  position: relative;
}

.merit_box:last-child {
  margin-bottom: 0;
}

/* ----------------------------------------------------
profile
--------------------------------------------------- */
/*------------------------
  #profile セクション
------------------------*/
#profile {
  background-color: #fffcf9;

  padding: 12rem 0;
}

/*------------------------
  プロフィール全体ラップ
------------------------*/
.profile_wrap {
  margin: 0 auto;
  padding: 5rem;
  overflow: hidden;
  color: #fff;
}

.profile_wrap .notice {
  color: #fff;
}

.profile_face {
  position: absolute;
  top: -2rem;
  right: -12rem;
  width: 50%;
  z-index: -1;
}

.profile_content {
  padding: 2rem 0 4rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  outline-offset: 3px;
}

/*------------------------
  リスト（チェック付き）
------------------------*/
ul {
  list-style: none;
}

.list1 {
  margin-top: 4rem;
  color: #fff;
}

.list1 li {
  position: relative;
  padding-left: 8rem;
  padding-bottom: 2rem;
  font-family: "Ryumin ExtraBold KL", serif;
  font-size: 3.8rem;
  letter-spacing: 1px;
  text-shadow: 0 0 10px #6f1400;
}

.list1 li:last-child {
  padding-bottom: 1rem;
}

.list1 li::before,
.list1 li::after {
  content: "";
  position: absolute;
}

/* チェックマーク（✔） */
.list1 li::before {
  top: -0.4rem;
  left: 1.5rem;
  width: 2.6rem;
  height: 4rem;
  transform: rotate(50deg);
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}

/* チェックボックス */
.list1 li::after {
  top: 0.6rem;
  left: 0;
  width: 4rem;
  height: 4rem;
  border: 1px solid #fff;
  border-radius: 2px;
}

/*------------------------
  プロフィールボックス
------------------------*/
.profile {
  background-color: #88000c;
  margin: 0 5rem;
}

.prf_box_wrap {
  margin: 0 auto;
  background: #fff;
  padding: 2rem 5rem 5rem;
}

.prf_box {
  background: #3a2b06;
  margin-top: 3rem;
  position: relative;
  color: #fff;
  text-align: center;
  font-family: "Ryumin ExtraBold KL", serif;
}

.prf_box.num01 {
  width: 32%;
}

.prf_box p {
  margin: 1.5rem 0;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.prf_box .xsmall {
  font-size: 70%;
  display: contents;
}

.awards {
  margin: 5rem;
}

.awards_box {
  border: 1px solid #8b752e;
  padding: 14rem 5rem 6rem;
  margin: 5rem 0;
  background-color: #fff;
}

.award_caption {
  background-color: #8b752e;
  color: #fff;
  padding: 2rem 5rem;
  font-size: 85%;
  ;
}

.award_item {
  position: relative;
}

.award_number {
  position: absolute;
  top: -12rem;
  left: -3rem;
  font-size: 22rem;
  font-weight: bold;
  color: rgba(139, 117, 46, 0.15);
  /* ゴールド系の薄い色 */
  z-index: 0;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  font-family: serif;
}


.img50 {
  width: 50%;
  margin: 0 auto;
  padding: 4rem 0 2rem;
  ;
}

.bg_gl {
  background-color: #eaeaea;

}

/* ----------------------------------------------------
reco
--------------------------------------------------- */
#reco {
  background-color: #0a3662;
  color: #fff;
}

.reco_wrap {
  padding: 13rem 0;
  border-bottom: 1px solid #8b752e;
}

.reco_wrap:first-of-type {
  padding-top: 3rem;
}

.reco_wrap:last-of-type {
  border: none;
  padding-bottom: 0;
}

.reco_box {
  background-color: #222222;
  color: #ddd;
  font-size: 80%;
  padding: 5rem 5rem;
  margin: 5rem 0 0;
  border: 1px solid #ddd;
}

#reco .notice {
  color: #ddd;
}

.lh_13 {
  line-height: 1.3;
}

.lh_14 {
  line-height: 1.4;
}

/*---------------------------------------------------------------------
【 flow 】
---------------------------------------------------------------------*/

.flow {
  color: #fff;
  background-color: #222;
  padding: 10rem 6rem;
}

.flow__number {
  font-size: 5rem;
  font-family: serif;
  width: 10%;
  padding-left: 2rem;
  color: var(--yellow2);
}

.flow__text {
  width: 62%;
  font-size: 3.8rem;
  line-height: 1.4;
}

.flow__img {
  width: 18%;
}

.flow__box.flex {
  align-items: center;
}

.flow__box {
  border: 1px solid #fff;
  padding: 2rem;
}

.flow__box+.flow__box {
  margin-top: 4rem;
}

/*-------- message --------*/
#message {
  background-image: linear-gradient(90deg, #88000c 0%, #ca2035 50%, #88000c 100%);
}

#message .sub_head {
  color: #fff;
  font-size: 6.3rem;
  margin: 0 5rem 5rem;
}

#message .sec_inner {
  padding: 5rem;
  background-color: #fff;
  margin: 0 5rem;
}

.message_txt {
  font-family: 'Noto Serif JP', serif;
  line-height: 2;
  font-size: 3.5rem;
  text-align: left;
  padding-bottom: 2rem;
  color: #000;
}


/* ----------------------------------------------------
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,
#scfooter .form_input:not(:placeholder-shown)+.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);
}

/* ----------------------------------------------------
Bパターン用CSS
------------------------------------------------------ */
.index-b header button,
.index-b #scfooter button {
  font-size: 3.2rem;
  line-height: 1.2;
}

.index-b header .form_btn_icon::after,
.index-b .form_btn_icon::after {
  right: 3rem;
}

.emphasized-title {
  position: relative;
  display: inline-block;
  text-align: center;
  line-height: 1.4;
  padding: 0 6rem;
  /* 画像分の余白 */
}

.emphasized-title::before,
.emphasized-title::after {
  content: "";
  position: absolute;
  top: 1rem;
  bottom: 0rem;
  width: 6rem;
  /* 画像の横幅に合わせて調整 */
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.emphasized-title::before {
  left: 0;
  background-image: url("../img/left-slash.png");
  /* ←＼の画像パスに置き換えてください */
}

.emphasized-title::after {
  right: 0;
  background-image: url("../img/right-slash.png");
  /* ←／の画像パスに置き換えてください */
}

.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: 0;
  background-image: url("../img/reco_l.png");
  /* ←＼の画像パスに置き換えてください */
}

.reco_deco::after {
  right: 0;
  background-image: url("../img/reco_r.png");
  /* ←／の画像パスに置き換えてください */
}

/*------------------------------------------------
【 new 】
--------------------------------------------------*/
h1 {
  position: relative;
}

h1 video {
  position: absolute;
  top: 49rem;
  left: 5rem;
  width: 90rem;
}

#new_body iframe {
  position: absolute;
  top: 49rem;
  left: 5rem;
  width: 90%;
  aspect-ratio: 16 / 9;
}

#new {
  padding-top: 0;
  background: #faf3ed
}

#new h2 {
  background: #2e0004;
  padding: 8rem 0 2rem;
  color: #fff;
  font-size: 7rem;
  position: relative;
  margin-bottom: 18rem;
}

#new h2::after {
  content: "";
  width: 100%;
  height: 10.5rem;
  background: #2e0004;
  position: absolute;
  display: inline-block;
  top: 32.3rem;
  left: 0;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

#new h3 {
  background: var(--red2);
  padding: 2rem;
  color: #fff;
  text-align: center;
  font-size: 7rem;
  margin-bottom: 5rem;
}

/*------------------------------------------------
【 new2 】
--------------------------------------------------*/
#new2 {
  background: #faf3ed;
  padding-top: 0;
}

#new2 h2 {
  font-size: 6.5rem;
  line-height: 1.4;
  margin-bottom: 5rem;
}

#new2 h3 {
  background: var(--red);
  color: #fff;
  text-align: center;
  padding: 2.5rem 0;
  font-weight: 700;
  font-size: 5.8rem;
  margin-bottom: 5rem;
}

#new ul,
#new2 ul {
  padding: 5rem;
  margin-top: 2rem;
  border: 0.3rem solid var(--red2);
}

#new ul li,
#new2 ul li {
  padding-left: 5rem;
  font-size: 4.3rem;
  margin-bottom: 4rem;
  position: relative;
}

#new ul li:last-of-type,
#new2 ul li:last-of-type {
  margin-bottom: 0;
}

#new ul li::after,
#new2 ul li::after {
  content: "";
  width: 3rem;
  height: 3rem;
  background: var(--red2);
  position: absolute;
  top: 1.8rem;
  left: 0rem;
}

#new2 .blue_list {
  border-color: var(--blue2);
}

#new2 .blue_list li::after {
  content: "";
  width: 3rem;
  height: 3rem;
  background: var(--blue2);
  position: absolute;
  top: 1.8rem;
  left: 0rem;
}

.voice_new {
  padding-top: 0 !important;
}

.new_form {
  background: var(--red) !important;
}

#new_body #case {
  padding-top: 4rem;
}

#new_body header .form_inner {
  padding: 4rem 5rem 8rem;
}