@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-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/backgraound.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;
}



.mark_grad {
  background: linear-gradient(var(--or2) 0%, var(--or) 100%);
  display: inline-block;
  padding: 0 2rem;
}

/*------------------------------------------------
カウントダウンタイマー
--------------------------------------------------*/
#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(--blue2);
  /* 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 {
  background: linear-gradient(to top, #ffaa59 0%, #ff5f29 100%);
  position: relative;
  color: #fff;
}

.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;
}

.header .form_text-wrap {
  border: 1px dotted #fff;
  font-weight: 500;
}

.form_prev {
  margin: 0rem 0 4rem;
  font-size: 3.7rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
}

.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: 0.5em 0.5em 0.5em 10rem;
  font-size: 4rem;
  height: 100%;
}

header .form_prev {
  margin: 0rem 0 3rem;
}

.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;
  /* padding: 0.2em 0; */
  z-index: 10;
  width: auto;
  padding: 0.4em 0.4em 0.45em 0.4em;
  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;
}

header .form_label {
  left: 9rem;
}

.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;
  color: #fff;
}

.header2 .form_notice p {
  padding-top: 3.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;
}



.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;
  /* パディング込みで幅を調整 */
}

header .form_inner {
  padding: 4rem 5rem 4rem;
}

.form_inner {
  padding: 5rem;
}

.header_form {
  position: relative;
  margin-top: -49rem;
}


.header_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;
}

.header_form form {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr auto;
  gap: 0 2rem;
}

.header_form .form_prev p {
  color: #222;
  text-shadow: 0 0 10px white, 0 0 20px white;
}


.header_form .form_notice p {
  color: #222;
  margin-top: 1rem;
  text-shadow: 0 0 10px white, 0 0 20px white;
}


.head_onimg {
  position: relative;
}

.head_onimg video {
  left: 5.5%;
  position: absolute;
  bottom: 45rem;
  width: 90%;
}

.head_onimg2 {
  position: relative;
}

.head2-2video {
  left: 5.5%;
  position: absolute;
  bottom: 47rem;
  width: 90%;
}

iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.head_onimg4 {
  position: relative;
}

.head_4video {
  left: 5.5%;
  position: absolute;
  bottom: 34rem;
  width: 90%;
}

.head_onimg6 {
  position: relative;
}

.head_6video {
  left: 5%;
  position: absolute;
  width: 90%;
  bottom: 7rem;
}

.head_arrow {
  position: relative;
}

.header_arrow {
  width: 1em;
  height: 1em;
  border: 4px solid;
  border-color: transparent transparent var(--or) var(--or);
  transform: rotate(-45deg);
  margin: -19rem auto 7rem;
  position: relative;
  animation: move-y 1s infinite alternate ease-in-out;
}

.header_arrow_2 {
  width: 1.5em;
  height: 1.5em;
  border: 6px solid;
  border-color: transparent transparent var(--or) var(--or);
  transform: rotate(-45deg);
  margin: -10rem auto 4rem;
  position: relative;
  animation: move-y 1s infinite alternate ease-in-out;
}



@keyframes move-y {
  from {
    top: 0;
  }

  to {
    top: 8px;
  }
}



/*css変更*/
/* ----------------------------------------------------
intro
--------------------------------------------------- */
#intro {
  padding: 8rem 0;
  background-color: #ffffff;
}

#intro .sub_head {
  margin-bottom: 2rem;
  font-size: 4.5rem;
}

#intro .notice {
  padding-top: 0;
}

#intro_5 {
  padding: 10rem 0;
  padding-bottom: 8rem;
}

#intro_5 .sub_head {
  margin-bottom: 2rem;
  font-size: 4.5rem;
}

#intro_5 .notice {
  padding-top: 0;
}


/* ----------------------------------------------------
intro2
--------------------------------------------------- */
#intro2 {
  padding-top: 0;
}


/* ----------------------------------------------------
case
--------------------------------------------------- */
#case {
  background-image: linear-gradient(to left, #fcf7e9 0%, #fff1c6 50%, #fee9a8 100%);
  padding-top: 10rem;
  padding-bottom: 15rem;
  margin-top: -15rem;
}

#case .arrow_1 {
  width: 1.4em;
  height: 1.4em;
  border: 4px solid;
  border-color: transparent transparent #ff5f29 #ff5f29;
  transform: rotate(-45deg);
  margin: 0rem auto 7rem;
  position: relative;
  margin: -28rem auto 0;
}

#case .arrow_2 {
  width: 2.4em;
  height: 2.4em;
  border: 7px solid;
  border-color: transparent transparent #ff5f29 #ff5f29;
  transform: rotate(-45deg);
  margin: -4rem auto 4rem;
  position: relative;
}

#case .sec_inner {
  padding: 0;
  margin: 0 5rem;
  padding-top: 5rem;
}

.case_num {
  color: var(--or);
  margin: 0;
  text-align: left;
  font-weight: bold;
  font-size: 12rem;
  opacity: calc(0.8);
  line-height: 1;
  margin-bottom: 3rem;
  font-style: italic;
}

.case_txt .mark_w {
  background: var(--red);
  margin: .5rem .5rem;
  line-height: 1.8;
  padding: 0 2rem;
}

.case_txt {
  font-size: 4.8rem;
  line-height: 1.4;
  color: #222;
  margin-bottom: 2rem;
}

.case_box {
  margin-bottom: 15rem;
  background: #fffaeb;
  box-shadow: 3px 3px 5px 0 #e3c25f;
  padding: 3rem;
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.case_box:nth-of-type(3) {
  margin-bottom: 0;
}

.case_box:nth-of-type(3) .before-after_box {
  margin-top: 0;
}


.before_box {
  background: #fffaeb;
}

.after_box {
  margin-top: 4rem;
  border-radius: var(--radius);
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  margin-bottom: 4rem;
}

.after_box2 {
  background: var(--gra2);
  margin-top: 4rem;
  border-radius: var(--radius);
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
}

.before_box h4,
.after_box h4,
.after_box2 h4 {
  font-size: 6rem;
  padding: 2rem;
  color: #fff;
  text-align: center;
}

.after_txt,
.before_txt,
.after2_txt {
  padding: 3rem;
  line-height: 1.5;
}

.after_txt p,
.before_txt p,
.after2_txt p {
  color: #fff;
  text-align: center;
}

.after_box_img {
  position: relative;
  margin-top: -12rem;
  z-index: 2;
}




.after_box2 h4,
.after_box2 p {
  color: var(--black);
  font-weight: 800;
}

.case_voice {
  margin-top: 12rem;
  position: relative;
}

.case_voice p {
  background: var(--gra2);
  width: 100%;
  padding: 4rem 8rem;
  margin-top: -6rem;
  border-radius: var(--radius);
  text-align: center;
  font-weight: bold;
  font-size: 5rem;
  color: var(--red);
  position: relative;
  z-index: 3;
}

#case .padding {
  padding-top: 1.4rem;
}

/*------
result
---------*/

#result {
  padding-bottom: 0;
  padding-top: 0;
  margin-top: -12rem;
}



/* ----------------------------------------------------
godhand
--------------------------------------------------- */
#godhand {
  background: #fff;
  padding-bottom: 12rem;
  padding-top: 0rem;
}




.godhand_ttl {
  position: relative;
  z-index: 1;
  top: -3rem;

}

.godhand_ttl5 {
  position: relative;
  z-index: 1;
  top: -6rem;

}


#godhand .sec_inner {
  background: #fff;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px, rgba(17, 17, 26, 0.1) 0px 24px 80px;
  padding: 0 5rem;
  width: 90%;
  margin: 5rem auto;
  padding-bottom: 10rem;
}

.godhand_head {
  background: var(--black);
  display: table;
  padding: 3rem 5rem 3rem 5rem;
  z-index: 1;
  text-align: center;
  color: #fff;
  z-index: 2;
  position: relative;
  font-size: 6rem;
  width: calc(100% + 70px);
  margin: 0 -35px 3rem;
  font-weight: 800;
  line-height: 1.5;
}


.godhand_head::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 0;
  border-color: transparent #000000 transparent transparent;
}


.godhand_head::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 0;
  border-color: #000000 transparent transparent transparent;
}

.godhand_img {
  width: 50%;
  position: relative;
  z-index: 6;
  margin: 0 auto;
}

.godhand_name_txt {
  color: #222;
  text-align: center;
  width: 100%;
  font-family: 'Noto Serif JP', "serif";
  font-weight: 700;
}

.godhand_name {
  border-top: 1px solid #ff5f29;
  text-align: center;
  margin: 2rem 0 0 0;
  padding: 2rem 0 0 0;
  font-family: 'Noto Serif JP', "serif";
  font-weight: bold;
  color: var(--or);
  font-weight: 900;
  line-height: 1.3;
}


.godhand_txt {
  position: relative;
  text-align: left;
  margin-top: 4rem;
}

.godhand_txt p {
  margin-top: 4rem;
}


/* ----------------------------------------------------
voice
--------------------------------------------------- */
#voice {
  background: linear-gradient(90deg, rgba(255, 242, 210, 1) 0%, rgba(255, 252, 243, 1) 50%, rgba(255, 242, 210, 1) 100%);
  padding-top: 4rem;
  z-index: 7;
  padding-bottom: 15rem;
}

#voice .voice_title {
  position: relative;
  background: #fff;
  padding-top: 6rem;
  padding-bottom: 6rem;
  margin-bottom: 0rem;
  margin-top: -5rem;
}

.voice_title p {
  rotate: -5deg;
  text-align: center;
  font-size: 7rem;
  font-weight: 800;
  margin-top: -15rem;
  line-height: 1.4;
}


.voice_title::after {
  content: "";
  bottom: -7rem;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  border-top: 6rem solid #fff;
  border-right: 53rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 53rem solid transparent;
  z-index: 1;
}


#voice .voice_inner {
  margin-top: 10rem;
  padding: 5rem;
}

#voice .voice_inner2 {
  padding-left: 4rem;
  padding-right: 4rem;
}



#voice .voice_inner_img {
  width: 80%;
  margin-left: 9rem;
  margin-bottom: 5rem;
}

#voice .voice_ttl {
  text-align: center;
  line-height: 1.6;
  font-weight: bold;
  font-size: 6rem;
  margin-bottom: 4rem;
}


#voice .sec_inner {
  padding: 0;
}


.voice_wrap {
  padding: 0 5rem;
  margin-top: 8rem;
}


.voice_num {
  background: linear-gradient(90deg, rgba(218, 54, 74, 1) 0%, rgba(242, 146, 72, 1) 100%);
  color: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10rem;
  font-weight: bold;
  line-height: 1;
  padding: 2rem;
  text-align: center;
  top: -8rem;
}


.voice_box {
  background: #fff;
  background-size: cover;
  margin-bottom: 8rem;
  position: relative;
  padding-bottom: 8rem;
  margin-top: 17rem;

}

.voice_box:nth-of-type(3) {
  margin-bottom: 0;
}

.voice_box_top {
  padding: 8rem 0 0;
  margin-bottom: 5rem;
}

.voice_box_bottom {
  padding-right: 4.5rem;
  padding-left: 4rem;
  margin-top: -6rem;
}

.voice_box h3 {
  font-size: 5.5rem;
  text-align: center;
  line-height: 1.4;
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  margin-top: 3rem;
}


#voice .balloon2 {
  width: 100%;
  margin-top: 5rem;
  font-size: 5.8rem;
  line-height: 1.5;
}

#voice .balloon2 {
  position: relative;
  padding: 4rem 5rem;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  color: var(--red);
  font-weight: 800;
  margin: -1rem 0 8rem;
  border-bottom: 1px solid #ff5f29;
}



.accordion__summary {
  display: block;
  width: 91%;
  margin: 6rem auto 3rem;
  background: #fff;
  border: 2px solid #ff5f29;
  font-size: 5rem;
  font-weight: bold;
  color: #ff5f29;
  line-height: 1.2;
  padding: 3.5rem 0;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  z-index: 10;
  font-family: inherit;
  text-align: center;
}

.accordion__summary::-webkit-details-marker {
  display: none;
}

.accordion__summary::after {
  content: "+";
  font-size: 1.4em;
  /* 記号のサイズ */
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
}

.accordion[open] .accordion__summary::after {
  content: "−";
}

.accordion__detail {
  margin: 5rem 0rem;
}

.accordion__text {
  margin: 0;
}

.accordion__detail p {
  padding-left: 5rem;
  padding-right: 5rem;
  margin-top: 4rem;
}


/* ----------------------------------------------------
recommend
--------------------------------------------------- */
#reason {
  background-image: url("../img/backgraound2.jpg");
  padding-bottom: 12rem;
  padding-top: 0rem;
  background-repeat: repeat-y;
  background-size: contain;
  background-repeat: repeat;
  background-attachment: scroll;
}

#reason .sub_head {
  font-size: 6rem;
  position: relative;
  line-height: 1.7;
  margin-bottom: 3rem;
  color: #fff;
}

#reason .reason_notice {
  font-size: 4.5rem;
  color: #7e2200;
  margin-top: -6rem;
  text-align: center;
  font-weight: 600;
}


.reason-af-first {
  position: relative;
  background: #414141;
  padding-top: 10rem;
  padding-bottom: 6rem;
  margin-bottom: 16rem;
}


.reason-af-first::after {
  content: "";
  bottom: -7rem;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  border-top: 6rem solid #414141;
  border-right: 53rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 53rem solid transparent;
  z-index: 1;
}

#reason .arrow_1 {
  width: 1.4em;
  height: 1.4em;
  border: 4px solid;
  border-color: transparent transparent var(--or) var(--or);
  transform: rotate(-45deg);
  margin: 0rem auto 7rem;
  position: relative;
  margin: 2rem auto 0;
}

#reason .arrow_2 {
  width: 2.4em;
  height: 2.4em;
  border: 7px solid;
  border-color: transparent transparent var(--or) var(--or);
  transform: rotate(-45deg);
  margin: -4rem auto 7rem;
  position: relative;
}

#world {
  background: url("../img/reason_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0;
  padding-bottom: 12rem;
}

.world_box {
  margin-top: -12rem;
}




/* ----------------------------------------------------
profile
--------------------------------------------------- */
#profile {
  background: linear-gradient(6deg, rgb(255, 241, 198) 0%, rgb(255, 253, 245) 60%);
  padding-top: 0rem;
  padding-bottom: 10rem;
}

#profile .sub_head {
  font-weight: 800;
  font-size: 5.5rem;
  color: #222;
}

.profile_box {
  padding: 5rem 0 6rem 0;
  border-radius: var(--radius);
}

.profile_box .sub_head {
  color: #fff;
  text-align: left;
  margin-bottom: 5rem;
}

.profile_box-bottom {
  background: linear-gradient(to right, #fee9a8, #e3c25f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 8rem 5rem;
  border-radius: 0 0 2rem 2rem;
}

.profile_box-bottom p {
  color: #fff;
  margin-bottom: 4rem;
}

#profile .notice li {
  color: #222;
}



/* ----------------------------------------------------
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;
  background: linear-gradient(to top, #ffaa59 0%, #ff5f29 100%);
}

#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;
}

/*///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
【 SP 】
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
@media screen and (max-width:480px) {

  .reason-af-first::after {
    content: "";
    bottom: -7.7rem;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    border-top: 7rem solid #414141;
    border-right: 53rem solid transparent;
    border-bottom: 1rem solid transparent;
    border-left: 53rem solid transparent;
    z-index: 1;
  }

  .accordion__summary {
    padding-right: 4rem;
  }

  .accordion__summary::after {
    content: "+";
    font-size: 1.4em;
    /* 記号のサイズ */
    position: absolute;
    right: 45px;
    top: 50%;
    transform: translateY(-50%);
  }

}