@charset "UTF-8";

/* ------------------------------------------------------------
 独自リセット・共通スタイル
------------------------------------------------------------ */

html {
  scroll-behavior: smooth;
}
/*for SP*/
@media screen and (max-width:750px) {
  .font-size-S {
      font-size: 14px;
  }
  .font-size-M {
      font-size: 16px;
  }
  .font-size-M2 {
    font-size: 18px;
  }
  .font-size-L {
      font-size: 28px;
  }
}

/*for PC*/
@media screen and (min-width:750px) {
  .font-size-S {
      font-size: 20px;
  }
  .font-size-M {
      font-size: 20px;
  }
  .font-size-M2 {
    font-size: 28px;
  }
  .font-size-L {
      font-size: 48px;
  }
}

body {
  /* 游ゴシック体 */
  font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
  background: #e6e6e6;
  color: #333333;
}

a {
  text-decoration: none;
  transition-duration: 0.2s;
}
@media (min-width: 960px) {
  a:hover {
    transition-duration: 0.2s;
  }
}

@media (min-width: 960px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
p {
  line-height: 1.6em;
}

ul, ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

section img {
  display: inline-block;
  vertical-align: bottom;
  width: 100%;
  max-width: 750px;
}

*:focus {
  outline: none;
}

/*PCでは無効（改行しない）*/
.br-sp{
  display: none;
}

/*スマートフォンでは有効（改行する）*/
@media screen and (max-width:768px) {
  .br-sp{
      display: block;
  }
}
/* ------------------------------------------------------------
  body-wrapper
------------------------------------------------------------ */
.body-wrapper {
  position: relative;
  overflow-x: hidden;
  background: #fff;
  max-width: 750px;
  margin: auto;
}

/* ------------------------------------------------------------
  header
------------------------------------------------------------ */
/* Header Container */
.header {
  background-color: #fff;
  width: 100%;
  height: 70px;
  display: flex; /* フレックスボックスで要素を整列 */
  justify-content: space-between; /* ロゴとハンバーガーメニューを左右に配置 */
  align-items: center; /* 縦方向の中央揃え */
  padding: 0 10px; /* ヘッダーの左右に余白 */
  box-sizing: border-box;
  position: relative; /* メニューの位置制御のために追加 */
  box-shadow: 0px 2px 4px gray;
  max-width: 750px;
  margin: 0 auto
}
#header{
  top: -100%;
  width: 100%;
  transition: 0.3s ease-in-out;

}
#header.header-scroll{
  position: fixed;
  z-index: 99;
  top: 0;
  max-width: 750px;
}
/* Logo Container */
.logo-container {
  display: flex; /* フレックスボックスで調整可能 */
  align-items: center;
}

/* Logo */
.logo {
  height: 70px;
  width: auto;
  padding: 10px 0;
}

.container {
  margin-left: auto;
}

.header_info {
  color: #000;
  font-weight: 500;
  margin-left: auto;
  margin-right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header_info .work_time {
  text-align: center;
}
@media screen and (max-width: 360px) {
  .header_info .work_time {
    font-size: 0.8rem;
  }
}

/* Hamburger Menu Button */
.menu-btn {
  display: none;
}

.menu-icon {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding: 24px 14px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background-color: #f7941f;
  box-shadow: 0px 2px 4px gray;
}

/* Hamburger Icon */
.navicon {
  background: #fff;
  display: block;
  height: 3px;
  width: 26px;
  position: relative;
  transition: 0.3s;
}

.navicon:before,
.navicon:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  background: #fff;
  transition: 0.3s;
}

.navicon:before {
  top: 9px;
}

.navicon:after {
  bottom: 9px;
}

/* Hamburger Menu Animation */
.menu-btn:checked ~ .menu-icon .navicon {
  background: rgba(0, 0, 0, 0);
}

.menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
  top: 0;
}

.menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
  bottom: 0;
}


/* Navbar Menu */
.menu {
  list-style: none;
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  margin: 70px 0 0;
  padding: 0 0 10px 0;
  background-color: #fff;
  transform: scale(1, 0);
  transform-origin: top;
  transition: transform 0.3s;
  z-index: 1000;
  opacity: 0.9;
}

/* Menu Visibility */
.menu-btn:checked ~ .menu {
  transform: scale(1, 1);
}

/* Menu Links */
.menu a {
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 16px;
  text-transform: capitalize;
  color: #64b100;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.5s;
}

.menu li {
  padding: 15px 0;
  margin: 0 24px;
  opacity: 0;
  transition: opacity 0.5s;
}

/* Make Menu Items Visible */
.menu-btn:checked ~ .menu a,
.menu-btn:checked ~ .menu li {
  opacity: 1;
}

.header-cta {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(to right, #ff9130, #ff6f30);
  color: #fff;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  transition: opacity 0.3s;
}

.header-cta:hover {
  opacity: 0.85;
}

/* ロゴ画像の高さが70なので CTA と高さ感を合わせたい場合 */
.logo-container img {
  display: block;
}
/* ------------------------------------------------------------
  fv
------------------------------------------------------------ */
/* .fv {
  margin-top: -1px;
} */

.fv{
  position: relative;
  background: #f5f5f5 url("../img/fv_bg.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.fadeup{
  opacity: 0;
  transform: translate3d(0, 40px, 0);
  transition:
    opacity 1.4s cubic-bezier(.19,1,.22,1),
    transform 1.4s cubic-bezier(.19,1,.22,1);
  will-change: opacity, transform;
}

.fadeup.is-in{
  opacity: 1;
  transform: none;
}
/* ------------------------------------------------------------
  main
------------------------------------------------------------ */
.cta {
  background-color: #feffe9;
}
.reflection {
  position: relative;
  overflow: hidden;
  animation: pekopeko 1.8s infinite;
}
@keyframes pekopeko {
  0% {
      top: 0px;
  }
  10% {
      top: 5px;
  }
  20% {
      top: 0px;
  }
  30% {
      top: 5px
  }
  40% {
      top: 0px;
  }
}

.cta_content {
  padding: 3%;
}
.cta_txt{
  text-align: center;
  font-weight: bold;
}

.section01 {
  position: relative;
  background:url("../img/nayami_bg.png") center/cover no-repeat;
  z-index: 2;
}


.section03 {
  position: relative;
  background: #feffe9 url("../img/reason_bg.png") center/cover no-repeat;
  margin-top: -70px;
  z-index: 1;
}

.credit {
  position: absolute;
  top: 0%;
  right: 0%;
  width: 50px;
  height: auto;
}


.section04 p span {
  background:linear-gradient(transparent 60%, #ff6 60%);
}
.reason_content {
  background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url(../img/section04.png);
  background-size: 100%;
  text-align: center;
}
.reason_content p {
  text-align: left;
  padding: 3%;
  font-weight: bold;
}

.section05 {
 position: relative;
 padding: 1em;
}

.section06 {
  position: relative;
  background: #f5f5f5 url("../img/rate_bg.png") center/cover no-repeat;
}
.section06 h2 {
 text-align: center;
 margin-bottom: 5%;
}

.section06 img {
  
}

.section07 {
  background-color: #fff9c6;
  padding: 5% 2%;
}

.section-step {
  text-align: center;
  position: relative;
  background: #f5f5f5 url("../img/step_bg.png") center/cover no-repeat;
}

.review{
  background-color: #e7f5d9;
  padding: 2em 0;
}

.section08 {
  background: #f5f5f5 url("../img/cpn-bg.png") center/cover no-repeat;
}


.faq {
  background-color: #e7f5d9;
  padding: 5% 2% 10% 2%;
}
.faq h2 {
  text-align: center;
  margin-bottom: 5%;
}
.accordion {
  background: #7bc5a2;
  padding: 2%;
}
.accordion-content {
  display: none;
}
.accordion-header {
  background-color: #FFF;
  padding: 20px 45px 20px 20px;
  transition: background .3s ease;
  cursor: pointer;
  position: relative;
  box-shadow: 2px 2px 4px rgb(202, 202, 202);
  border-radius: 5px;
  font-weight: bold;
}

.accordion-header::before,
.accordion-header::after{
  position:absolute;
  content:'';
  top:1px;
  right:20px;
  bottom:0;
  width:12px;
  height:2px;
  margin:auto;
  background:#24a96a;
}
.accordion-header::after{
  transform:rotate(-90deg);
  transition:transform 0.3s;
}
.accordion-header.active::after{transform:rotate(0deg);}

.accordion-content {
  background-color: #FFF;
  padding: 12px 20px 10px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  box-shadow: 2px 2px 4px rgb(202, 202, 202);
}

.accordion-header p,
.accordion-content{
  padding-left: 25px;
  position: relative;
}

.accordion-header p::before{
  position: absolute;
  content:"Q";
  left: 0;
  color: #24a96a;
  font-size: 24px;
  font-weight: bold;
}

/* hover */
.accordion-header:hover {
  box-shadow: none;
  box-shadow: 2px 0px 2px rgb(202, 202, 202);
  border-top-left-radius:5px;
  border-top-right-radius:5px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}

@media screen and (min-width:750px) {
  .accordion-header {
    padding: 22px 45px 20px 20px;
  }
  .accordion-header p,
  .accordion-content{
    padding-left: 35px;
  }
  .accordion-header p::before{
    top: 0px;
    font-size: 32px;
  }
}

.faq-tabs {
  display: flex;
}

.faq-tab {
  flex: 1;
  padding: 12px 10px;
  border-radius: 8px 8px 0 0;
  background: #7bc5a2; 
  color: #fff;
  text-align: center;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background .3s;
}

@media screen and (max-width:529px) {
  .faq-tab {
    font-size: 3.5vw;
  }
}

.faq-tab.active {
  background: #24a96a; /* アクティブ */
}

.faq-panel {
  display: none;
}

.faq-panel.active {
  display: block;
}

/* タブアクティブ時に付与される色 */
.accordion.active {
  background: #24a96a;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.qa-wrap{
  margin-bottom: 8px;
}
.qa-wrap:last-child {
  margin-bottom: 0;
}

/* ------------------------------------------------------------
  section08
------------------------------------------------------------ */

.section09 {
  max-width: 750px;
  margin: auto;
  background-color: #fff9c6;
  padding: 8% 3%;
}

.section09 h2 {
  text-align: center;
  margin-bottom: 5%;
}

.section09 .info-box {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 15px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  margin: 3% 0;
}

.section09 table {
  width: 100%;
  border-collapse: collapse;
}

.section09 th {
  text-align: left;
  width: 80px;
  padding: 8px 0;
  font-weight: bold;
  color: #000;
  border-bottom: 1px solid #ddd;
}

.section09 td {
  padding: 8px 0;
  color: #000;
  border-bottom: 1px solid #ddd;
}

.section09 tr:last-child th,
.section09 tr:last-child td {
  border-bottom: none;
}


/* ------------------------------------------------------------
  form
------------------------------------------------------------ */
.lp-form{
  padding: 5% 2%;
}
.form-wrap{
  border-radius: 20px;
  padding: 30px 4%;
  background: #fff2a1 no-repeat center / 70rem;
}
.page_title {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page_title .en {
  padding: 1rem 1.4rem;
  border-radius: 10rem;
  background: #f5d208;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.05em;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}
.page_desc {
  margin-top: 20px;
  text-align: center;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.page_desc span
 {
    background: linear-gradient(transparent 70%, #f5d208 71%, #f5d208 100%);
}
.attention-title{
  text-align: center;
  margin-bottom: 20px;
}
/* ----入力支援---- */
.form-error {
  display: block;
  color: #a94442;
}

.required:after {
  display: inline-block;
  padding: 0.2em 0.6em;
  font-size: 11px;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25em;
  color: #fff;
  background-color: #d9534f;
  content: "必須";
}

.optional:after {
  display: inline-block;
  padding: 0.2em 0.6em;
  font-size: 11px;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25em;
  color: #fff;
  background-color: #a6b3b1;
  content: "任意";
}

.help-block {
  display: block;
  font-size: 11px;
  margin-top: 5px;
  color: #737373;
}

.count-msg-another {
  display: block;
  font-size: 11px;
  margin-top: 5px;
  color: #555;
}

.count-msg {
  display: block;
  font-size: 11px;
  margin-top: 5px;
  color: #f66;
}

/* ----入力フォームボタン---- */
.action-buttons {
  margin-top: 10px;
  width: 100%;
  text-align: center;
  display: block;
}

.action {
  display: inline;
  margin-left: 10px;
  margin-right: 10px;
}

.action .btn {
  margin-top: 10px;
  padding: 8px 8px;
  font-size: 16px;
  border-bottom-width: 2px;
  min-width: 160px;
}

/* ----ラジオボタン、チェックボックス---- */
.radio {
  margin-right: 10px;
}

.checkbox {
  margin-right: 10px;
}

/* ----EFO---- */
.efo-icon {
  border: none;
  vertical-align: middle;
}

input[type=text].efo-error,
input[type=tel].efo-error,
input[type=email].efo-error,
input[type=search].efo-error,
input[type=password].efo-error,
input[type=url].efo-error,
input[type=number].efo-error,
select.efo-error,
textarea.efo-error {
  background-color: #f2dede;
}

input[type=text].efo-valid,
input[type=tel].efo-valid,
input[type=email].efo-valid,
input[type=search].efo-valid,
input[type=password].efo-valid,
input[type=url].efo-valid,
input[type=number].efo-valid,
select.efo-valid,
textarea.efo-valid {
  background-color: #e9f2d7;
}

.radio-list {
  min-height: 46px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 1rem;
}

#card_brand_example {
  margin-top: 1rem;
}
#card_brand_example .example {
  display: none;
}
#card_brand_example .example img {
  width: 50rem;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.form-notice {
  padding: 1rem;
  border-radius: 0.5rem;
  margin: 1rem 0;
  font-weight: bold;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  text-align: center;
}
.form-notice .title {
  color: #f00;
  font-weight: 900;
  font-size: 1.4em;
  margin-bottom: 1rem;
}

.tab {
  display: none;
}

.tab.current {
  display: block;
}

.page-ttl {
  background: url(../images/top/faq_title_bg.svg) center/contain no-repeat;
  text-align: center;
}

.page-subttl {
  font-weight: bold;
  text-align: center;
  margin-top: 2rem;
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .page-subttl {
    font-size: 1.8rem;
  }
}

.form-confirm-ttl {
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .form-confirm-ttl {
    font-size: 2rem;
  }
}

:root {
  --space: 2rem;
}

.bold {
  font-weight: bold;
}

.btn-common {
  max-width: 25rem;
}

.more {
  margin-top: 5rem;
}
.more .btn {
  margin-left: auto;
  margin-right: auto;
}

.red {
  color: #f00;
}

input[type=text],
input[type=tel],
input[type=email],
select,
textarea {
  width: 100%;
  padding: 0.8rem;
}

input[type=file]::-webkit-file-upload-button {
  color: inherit;
  font: inherit;
  background: #fffff0;
  height: 2.6rem;
  padding: 0rem 1rem 0;
  line-height: 1;
  border-radius: 0.5rem;
  border: 0.1rem solid #ccc;
}

input[type=file].mask + input[type=file] {
  display: none !important;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='11' viewBox='0 0 13 11'%3E%3Cpath id='三角形_1662' data-name='三角形 1662' d='M1310.02,418.293l-6.5-11h13Z' transform='translate(-1303.52 -407.292)' fill='%23393939'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: calc(100% - 1rem);
  padding-right: 2.5rem;
  appearance: none;
}

.section-form .block-form {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .section-form {
    padding: 3rem 0rem;
    border-radius: 2.6rem;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-top: #969696 1px solid;
  padding: 20px 0;
}
.form-group .form-label,
.form-group .form-control {
  display: table-cell;
}
.form-group .form-label {
  padding: 5px 0;
  text-align: left;
  font-weight: bold;
  position: relative;
  vertical-align: top;
  padding-left: 0;
}
.form-group .form-label .required,
.form-group .form-label .optional {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.form-group .form-label .required::after,
.form-group .form-label .optional::after {
  margin-right: 1rem;
}
.form-group .form-control {
  vertical-align: middle;
  padding-top: 10px;
}
@media screen and (max-width: 767px) {
  .form-group {
    display: block;
    border-top: 0;
    margin-top: 0;
    padding-bottom: 0;
  }
  .form-group .form-label,
  .form-group .form-control {
    width: 100%;
    display: block;
  }
  .form-group .form-label {
    padding: 0rem;
  }
}

.form-action {
  display: flex;
  gap: 1.4rem;
  justify-content: center;
  margin-top: 3rem;
}
.form-action .action-btn {
  font-weight: bold;
  padding: 16px 26px;
  max-width: 100%;
  border-radius: 100px;
  border: 2px solid #fff;
  background: #0d9341;
  color: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);
  outline: none;
  cursor: pointer;
  transition: 0.15s ease-in;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.form-action .action-btn .arrow {
  display: block;
  aspect-ratio: 1;
  width: 1.6rem;
  -webkit-mask: url(../assets/images/arrow.svg) no-repeat center/contain;
          mask: url(../assets/images/arrow.svg) no-repeat center/contain;
  background-color: currentColor;
}
.form-action .action-btn:hover {
  opacity: 0.8;
  box-shadow: none;
}
.form-action .action-btn--back {
  background-color: #dbdbdb;
  color: inherit;
}
.form-action .action-btn--back .arrow {
  transform: rotate(180deg);
}

.form-group-block {
  /*  & + .form-group-block {
    margin-top: 5rem;
  } */
}
.form-group-block .legend {
  font-weight: bold;
}
.form-group-block--note {
  margin: 1rem 0;
  padding: 2rem;
  background: #fffdf3;
  border-radius: 2px;
  border: 2px dashed #f7b731;
  border-radius: 20px;
  max-width: 84rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .form-group-block--note {
    padding: 1rem;
    border-radius: 10px;
  }
}
.form-group-block .note {
  font-size: 0.9em;
  margin-top: 0.5em;
  text-indent: -1em;
  padding-left: 1em;
}
.form-group-block--title {
  font-weight: 900;
  text-align: center;
  font-size: 1.3em;
  margin-bottom: 0.5em;
}
.form-group-block ul {
  margin: 0;
}
.form-group-block p + p {
  margin-top: 0;
}

.form-error {
  margin-top: 0.5rem;
}

.radio-list label {
  display: inline-flex;
  align-items: center;
  margin-right: 2rem;
}

.preview_img {
  max-width: 35rem;
  margin-top: 1rem;
}

.step-title {
  text-align: center;
  font-weight: bold;
  margin-bottom: 2rem;
}
.step-title .c-primary {
  color: green;
}

.step-confirm .required::after,
.step-confirm .optional::after {
  content: none;
}

.loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  position: relative;
  animation: rotate 1s linear infinite;
}

.loader::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  inset: 0px;
  border-radius: 50%;
  border: 5px solid #fff;
  animation: prixClipFix 2s linear infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes prixClipFix {
  0% {
    clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
  }
  25% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
  }
  50% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
  }
  75% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
  }
  100% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
  }
}
#sender {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.78);
  position: fixed;
  z-index: 101;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
}
#sender.active {
  opacity: 1;
  visibility: visible;
}

.form-first {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 2rem;
  max-width: 70rem;
  border-radius: 2.6rem;
  background-color: rgba(255, 255, 255, 0.8);
  margin-left: auto;
  margin-right: auto;
  border: none;
  box-shadow: 0px 0px 4px 0px #ccc;
}
.form-first .form-label,
.form-first .form-control {
  width: auto;
  padding-top: 0;
  padding-bottom: 0;
}
.form-first .form-label {
  padding-bottom: 1rem;
}

.form-birthday {
  display: flex;
  gap: 5px;
}
.form-birthday-item {
  width: 15rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.f-zipcode {
  display: flex;
  align-items: center;
}
.f-zipcode input {
  width: 50%;
}
.f-zipcode .post1 {
  width: 30%;
}
.input-w{
  width: 100%;
}

.input-flex {
  display: flex;
}

.input-group {
  align-items: center;
  display: flex;
}
.input-group .unit {
  padding: 0 0.5em;
}

.form-group-block--red {
  border-color: #f00;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 50px;
}

.sample-photo-id {
  display: block;
  margin-top: 3rem;
  margin-bottom: 3rem;
  /*  display: flex;
   flex-direction: column; */
}
.sample-photo-id .item {
  margin-top: 2em;
  padding-top: 2em;
  border-top: 1px solid #888;
}
.sample-photo-id .item .item-head {
  text-align: center;
  margin-bottom: 2em;
}
.sample-photo-id .sample-photo-ttl {
  font-weight: 900;
  text-align: center;
  font-size: 1.3em;
  margin-bottom: 0.5em;
}
.sample-photo-id .sample-photo-group {
  margin: 1rem 0;
  padding: 1rem;
  background: #fffdf3;
  border-radius: 2px;
  border: 2px dashed #f7b731;
  border-radius: 2.6rem;
}
.sample-photo-id .sample-photo-group .sample-photo-heading {
  font-weight: 900;
  text-align: center;
  font-size: 1.2em;
  margin-bottom: 1em;
}
.sample-photo-id .p-sample-photo {
  font-size: clamp(8px, 8px + 0.5vw, 14px);
  text-align: center;
  display: grid;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .sample-photo-id .p-sample-photo {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .sample-photo-id .p-sample-photo {
    grid-template-columns: repeat(6, 1fr);
  }
}
 .has-asterisk {
  display: inline-block;
  text-indent: -1em;
  padding-left: 1em;
}
.sample-photo-id .sample-photo-note {
  font-feature-settings: "palt" 1;
  margin-top: 1em;
  font-size: 0.9em;
}
.sample-photo-id ul.sample-photo-note {
  padding-left: 1rem;
  list-style-type: disc;
}
.sample-photo-id .p-uploadbox_area {
  display: flex;
  flex-direction: column;
  margin-top: 1em;
  /* label {
    cursor: pointer;
    background-color: #f7b731;
    text-align: center;
    display: block;
    padding: 1.5rem 1rem;
    font-weight: bold;
    font-size: 1.2em;
    border-radius: 5rem;
    border-color: #f7b731;
    transition: 0.3s;
    box-shadow: inset 0 0 2px 2px #fff, 0 0 0 2px rgba(0, 0, 0, 0.15);
    &:hover {
      box-shadow: 0 8px 10px -2px rgba(0, 0, 0, 0.2);
    }
  } */
}
.sample-photo-id .p-uploadbox_area .form-item__file { 
  margin-bottom: 1em;
}
.sample-photo-id .p-uploadbox_area .form-item__file .file-control {
  flex: 1;
}
.sample-photo-id .p-uploadbox_area .file-input .preview .preview_img {
  max-width: 20rem;
}
.sample-photo-id .p-uploadbox_area .file-label {
  font-weight: bold;
  position: relative;
  z-index: 1;
}
.sample-photo-id .p-uploadbox_area input[type=file] {
  border: 1px solid #ccc;
  background-color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  width: 100%;
}
.sample-photo-id .p-uploadbox_area .upload-note {
  font-size: 0.9em;
  margin-top: 0.5em;
}

.box-scroll {
  max-height: 20rem;
  overflow-y: auto;
  padding: 1rem;
  background-color: #fffdf3;
  border-radius: 4px;
}

.box-scroll-wrap {
  margin-bottom: 1em;
}
.box-scroll-wrap p + p {
  margin-top: 1em;
}

.checkbox-control {
  font-feature-settings: "palt" 1;
  display: flex;
  align-items: center;
}
.checkbox-control a {
  color: #0d9341;
}

.formthanks .page_wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}
.formthanks .section-thanks {
  padding: 6rem 0;
}
.formthanks .thanks-content {
  font-weight: 500;
  line-height: 1.6;
  padding: 6rem 0;
}
.formthanks .txt {
  text-align: center;
  margin-bottom: 1em;
}
.formthanks .more-btn {
  text-decoration: underline;
}
.formthanks .line-wrap {
  background: url(../assets/images/thanks/bg.jpg) no-repeat center/cover;
  margin-top: 7rem;
  padding: 5rem;
  max-width: 94rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.formthanks .line-wrap::after {
  content: "";
  position: absolute;
  top: 4rem;
  right: 4rem;
  width: 19rem;
  height: 19rem;
  background: url(../assets/images/thanks/line-img.png) no-repeat center/contain;
  z-index: 3;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .formthanks .line-wrap {
    margin-top: 5rem;
    padding: 2rem 2rem;
  }
  .formthanks .line-wrap::after {
    width: 10rem;
    height: 10rem;
    top: 1rem;
    right: 1rem;
    display: none;
  }
}
.formthanks .line-wrap-top {
  max-width: 800px;
}
.formthanks .line-wrap .line-ttl {
  color: #ffd226;
  font-size: 3.4rem;
  line-height: 1.5;
  font-weight: 900;
  margin-bottom: 3rem;
}
.formthanks .line-wrap .line-ttl span {
  display: inline-block;
  padding: 1rem 2rem;
  border-bottom: 3px dashed #fff;
  position: relative;
}
.formthanks .line-wrap .line-ttl span::before, .formthanks .line-wrap .line-ttl span::after {
  content: "";
  position: absolute;
  bottom: 1rem;
  height: 80%;
  width: 0.2rem;
  background-color: #ffd226;
}
.formthanks .line-wrap .line-ttl span::before {
  transform: rotate(-15deg);
  left: 0;
}
.formthanks .line-wrap .line-ttl span::after {
  right: 0;
  transform: rotate(15deg);
}
@media screen and (max-width: 767px) {
  .formthanks .line-wrap .line-ttl {
    text-align: center;
    font-size: 1.8rem;
  }
  .formthanks .line-wrap .line-ttl span {
    padding: 0.4rem 1.4rem;
  }
  .formthanks .line-wrap .line-ttl span::before, .formthanks .line-wrap .line-ttl span::after {
    bottom: 0.5rem;
  }
}
.formthanks .line-wrap .line-txt {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .formthanks .line-wrap .line-txt {
    text-align: center;
  }
}
.formthanks .line-wrap .line-box {
  background-color: #fff;
  border-radius: 2.8rem;
  padding: 3rem 5rem;
  display: flex;
  gap: 2rem 5rem;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .formthanks .line-wrap .line-box {
    flex-direction: column;
    padding: 2rem 2rem;
  }
}
.formthanks .line-wrap .line-box__text {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .formthanks .line-wrap .line-box__text {
    text-align: center;
  }
}
.formthanks .line-wrap .line-box__img {
  width: 25rem;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem;
  border: 1px solid #ccc;
}
.formthanks .line-wrap .line-box-ttl {
  color: #0eb12c;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .formthanks .line-wrap .line-box-ttl {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}
.formthanks .line-wrap .line-box-btn {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .formthanks .line-wrap .line-box-btn {
    margin-top: 2rme;
  }
}
.formthanks .line-wrap .line-box-btn a {
  display: inline-flex;
  border-radius: 1.6rem;
  border: 3px solid #0eb12c;
  background: #0eb12c;
  padding: 1.5rem 3rem;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.35);
  transition: ease-out 0.3s;
}
.formthanks .line-wrap .line-box-btn a:hover {
  box-shadow: none;
}
.formthanks .line-wrap .line-box-btn a::after {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  background: url(../assets/images/arrow.svg) no-repeat center/contain;
}

.section-form-error {
  padding: 6rem 0;
}
.section-form-error .form-error-content {
  margin-top: 4rem;
  text-align: center;
}

.label-agree span {
  font-size: 1.2em;
  color: #f00;
}

@media screen and (max-width: 767px) {
  .form-group .form-label .label-agree {
    flex-direction: column-reverse;
    gap: 1rem;
  }
}

/* ------------------------------------------------------------
  footer
------------------------------------------------------------ */
.footer {
  text-align: center;
  padding: 1rem 0 0.5rem;
  font-size: 0.9rem;
  background: #f5f5f4;
}

.footer-logo{
  display: flex;
  justify-content: center;
}

.footer p {
  margin-top: 5%;
  font-size: 12px;
  color: #333;
}
.footer a {
  color: #333;
  font-weight: bold;
}

.footer-link{
  display: flex;
  justify-content: center;
  gap: 2.5%;
  margin-top: 1.5rem;
}

/* ------------------------------------------------------------
  floating
------------------------------------------------------------ */



/* 固定バー（親） */
.floating-banner{
  display:none;              /* 最初は隠す */
  position:fixed;
  z-index:99999;
  bottom:0;
  left:0;
  width:100vw;
  background:rgba(0,0,0,.5);
  padding:1%;
  text-align:center;
}
@media (min-width:750px){
  .floating-banner{
    left:50%;
    transform:translateX(-50%);
    width:750px;
  }
}

/* 中のボタン */
.floating-banner-btn{
  width: 90%;
  display:inline-block;
  background: linear-gradient(to right, #78cc24, #24a96a);
  color:#fff;
  font-size:1.2rem;
  font-weight:bold;
  padding:15px 30px;
  text-decoration:none;
  border-radius:6px;
  box-shadow:0 4px 8px rgba(0,0,0,.2);
  transition:background-color .3s, transform .2s;
}
.floating-banner-btn:hover{
  background:#64b100;
  transform:translateY(-2px);
}








.privacy {
  background-color: #fff9c6;
  padding: 8% 3%;
}

.privacy h2 {
  text-align: center;
  margin-bottom: 5%;
}

.privacy-content{
  background: #fff;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  margin: 3% 0;
}

.privacy h3 {
  color: #24a96a;
  margin-bottom: 10px;
}

.privacy p{
  margin-bottom: 20px;
}

.hidden-dash {
  display: none;
}



/* トップへ戻るボタン */
.back-to-top-wrap {
  margin-top: 40px;
  text-align: center;
}

.back-to-top-btn {
  display: inline-block;
  padding: 14px 40px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  border-radius: 999px; /* しっかり角丸 */
  background: linear-gradient(to right, #78cc24, #24a96a);
}

input[type=radio],
input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 24px;
  height: 24px;
  border: 1px solid #001737;
  border-radius: 0.4rem;
  margin: 0;
  margin-right: 10px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}
input[type=radio]{
  border-radius: 100%;
}
input[type=radio]:checked,
input[type=checkbox]:checked {
  background: #0d9341;
  border-color: #0d9341;
}
input[type=radio]:checked::after,
input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.8rem;
  height: 0.8rem;
  background: white;
  border-radius: 50%;
}
input[type=radio]:checked::after,
input[type=checkbox]:checked::after {
  content: "✓";
  color: white;
  font-size: 1em;
  font-weight: bold;
  width: auto;
  height: auto;
  background: none;
}
.check-list label{
  display: flex;
  align-items: center;
}
.p-sample-photo img{
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .hide-pc{
    display: none;
  }  
  .form-group-block--note{
    padding: 20px;
  }
}
@media screen and (max-width: 767px) {
  .hide-sp{
    display: none;
  }
  .step-confirm .step-title{
    font-size: 15px;
  }
  .step-confirm .form-first{
    text-align: center;
  }
  .form-first,
  .sample-photo-id .sample-photo-group{
    border-radius: 20px;
  }  
}