@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;
  height: auto;
}

*: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;
}

/* Logo Container */
.logo-container {
  display: flex; /* フレックスボックスで調整可能 */
  align-items: center;
}

/* Logo */
.logo {
  height: auto;
  max-width: 100px;
}

/* 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: #fff;
  box-shadow: 0px 2px 4px gray;
  border-radius: 50%;
}

/* Hamburger Icon */
.navicon {
  background: #083757;
  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: #083757;
  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; /* メニューが他の要素の下に隠れないようにする */
}

/* 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: #ff9800;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.5s;
}

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

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

/* ------------------------------------------------------------
  main
------------------------------------------------------------ */
.cta {
  background-color: #fff;
  padding: 3%;
}
.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;
  }
}

.web_cta {
  text-align: center;
  margin: 2rem 0;
}

.cta-top {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 500px) {
  .cta-top {
    font-size: 4.2vw;
  }
}

.cta-top span {
  color: #ff8c00;
}

.cta-bottom {
  display: inline-block;
  font-size: 1rem;
  font-weight: bold;
  margin-top: 10px;
  padding: 0 5px;
  text-align: center;
  background: linear-gradient(transparent 70%, #feda26 70%);
}

.section09 {
  background: #fcf1a7;
  padding-bottom: 40px;
}
.voice-wrap {
  position: relative;
  padding: 20px;
  box-sizing: border-box;
}

/* 右下リンク */
.voice-link {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 6px 12px;
  border-radius: 4px;
  color: #ff8c00;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
  transition: background-color 0.3s;
}

.voice-link:hover {
  background-color: rgba(255, 255, 255, 1);
}

/*form*/
.section12 {
  padding: 10px;
  color: #333;
  padding-bottom: 60px;
}
.shaww {
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.yellow_box {
  padding: 2rem 1rem;
  background: #fcf1a7;
  margin: 0 auto;
  text-align: left;
  font-weight: bold;
  border-radius: 1rem;
  position: relative;
  margin-top: 3rem;
}

.table-apply tr th,
.table-apply tr td {
  display: block;
  padding: 1.4rem 0;
  vertical-align: initial;
  padding-left: 0;
  padding-right: 0;
  text-align: left;
}

.table-apply tr td {
  border-top: 0;
  padding-top: 0;
  padding-left: 0 !important;
  border-bottom: 0.1rem solid #eeeeee;
}

.table-apply tr th {
  position: relative;
  padding-bottom: 2rem;  
}
.table-apply tr th > label{
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 10px;
}
.table-apply tr th .required {
  display: inline-block;
  text-align: center;
  background-color: #f00;
  color: #fff;
  padding: 3px 7px;
  border-radius: 6px;
  /*   
  position: absolute;
  right: 0;
  position: absolute;
  right: 0;
  top: 2rem;
  transform: translateY(-50%); 
  */
}

.sp-b {
  display: none;
}
@media screen and (max-width: 767px) {
  .pc-b {
    display: none;
  }
}
.nobr {
  border: none !important;
}
.note-red {
  font-weight: bold;
  color: red;
  font-size: 0.8rem;
  padding-left: 1rem;
  display: block;
  position: relative;
}

.note-red::before {
  position: absolute;
  content: "※";
  font-size: 0.8rem;
  color: red;
  left: 0;
}

.note {
  font-weight: bold;
  padding-left: 1rem;
  text-indent: -1rem;
  display: block;
  position: relative;

}
.birthday-group{
  margin-bottom: 0.7rem;
}


.form-control {
  display: block;
  width: 100%;
  padding: 0.8rem;
  line-height: 1.5;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  border: 0.1rem solid #ddd;
  border-radius: 0.5rem;
  height: 2.8rem;
  background: #f8f8f8;
  font-size: 1rem;
}

.birthday-group .form-group input {
  display: initial;
}

#year {
  width: 5rem;
}

#month,
#day {
  width: 3.5rem;
}

.gr-zip-code {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
}

.gr-zip-code input {
  width: 16rem;
}

.form-note_card {
  font-size: initial;
  color: #000;
  font-weight: bold;
  position: relative;
  text-align: center;
  border-radius: 1rem;
  padding: 1rem 0;
  background: #feda26;
}

.text_red {
  color: #ff0000 !important;
}

.flex-gr {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}

.formTextNote {
  margin-top: 10px;
  font-size: 0.8rem;
  width: 100%;
  color: #777777;
  font-weight: bold;
}

input[type="file"] {
  border-radius: 5px;
  color: #232323 !important;
  font-weight: 500;
  background: #ffffff;
  background: #f6f8f9;
  border: 1px solid #eceff1;
  border-radius: 3px;
  font-weight: normal;
  line-height: 2.2rem;
  font-size: 1.2rem;
}

.table-apply tr th,
.table-apply tr td {
  display: block;
  box-sizing: border-box;
}

#brand-example img {
  display: none;
  width: 100%;
}

.valid-wrap {
  margin-top: 1rem;
  border-radius: 0.5rem;
  border: 0.3rem solid #ffbf16;
  padding: 1rem;
}

.valid-ttl {
  margin-bottom: 0.5rem;
  text-align: center;
  font-size: 0.9em;
  font-weight: bold;
}

.valid-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 100%;
}

input[type="file"] {
  border-radius: 5px;
  color: #232323 !important;
  font-weight: 500;
  background: #ffffff;
  padding: 13px 20px;
  background: #f6f8f9;
  border: 1px solid #eceff1;
  border-radius: 3px;
  font-weight: normal;
  line-height: 2.2rem;
  font-size: 1.2rem;
  width: 100%;
}

.checkloww .form-group {
  display: inline-block;
  margin: 0 auto;
  text-align: center;
}

.form-action-note {
  margin-top: 4rem;
  color: #ff0000;
  text-align: center;
  font-weight: bold;
}

.form-action button {
  cursor: pointer;
  margin: 0 auto;
  background-color: transparent;
  color: #fff;
  border: none;
  padding: 1rem 4rem;
  border-radius: 4rem;
  font-weight: 600;
  font-size: 1.2rem;
  min-width: 22rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-left: 6rem;
  padding-right: 6rem;
}

.form-action button.next {
  background: #ff8c00;
  box-shadow: 0px 0.3rem 0px #d57602;
  border-radius: 0.3rem;
}

.item-img img {
  width: 100%;
}

/*faq*/
/* FAQ セクション全体 */
.faq {
  background-color: #feeedf;
  padding: 20px 0;
  padding-bottom: 60px;
}
.faq_title{
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 30px;
  color: #fb8e01;
}
@media screen and (min-width: 768px) {  
  .faq_title{
    font-size: 3rem
  }
}
/* FAQ 各項目 */
.faq-item {
  border-bottom: 1px solid #ddd;
  background-color: #fff;
  margin: 0 1em 10px 1em;
  border-radius: 5px;
  overflow: hidden;
}

/* 質問部分 */
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between; /* 左と右を分ける */
  padding: 15px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.2rem;
  position: relative;
}

/* 左側のQとテキストをまとめる */
.faq-left {
  display: flex;
  align-items: center;
}

/* Qマーク */
.q-mark {
  color: #f79c00;
  font-size: 1.4rem;
  margin-right: 10px;
  font-weight: bold;
}

/* 質問テキスト */
.faq-text {
  text-align: left;
  display: inline-block;
  word-break: break-word;
}

/* ＋／－ トグル */
.faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #28a745;
  transition: transform 0.2s ease, color 0.2s ease;
}

/* 開いたときに「－」を表示する */
.faq-item.open .faq-toggle::before {
  content: "－";
  color: #f79c00;
}
.faq-item .faq-toggle::before {
  content: "＋";
}

/* 回答部分 */
.faq-answer {
  display: none;
  padding: 10px 15px 15px 15px;
  font-size: 1rem;
  line-height: 1.6;
  background: #fff;
  position: relative;
}

/* Aマーク */
.faq-answer .a-mark {
  display: inline-block;
  font-weight: bold;
  color: #28a745;
  margin-right: 8px;
  font-size: 1.2rem;
}

/* 回答の表示 */
.faq-item.open .faq-answer {
  display: block;
  animation: fadeIn 0.3s ease;
}

/* 簡単なフェードインアニメーション */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*company*/
.section14 {
  padding-bottom: 60px;
}
.company_info {
  display: flex;
  gap: 20px;
  margin: 20px 0;
  flex-direction: column;
  max-width: 700px;
  margin: auto;
  padding: 1em;
  font-size: 1.2rem;
}

.company_info dl {
  flex: 1 1 45%;
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
  margin: 0;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.company_info dt {
  font-weight: bold;
  width: 30%;
  min-width: 90px;
}

.company_info dd {
  margin: 0;
  flex: 1;
  line-height: 1.6;
}

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

.footer a {
  color: #fff;
}

.footer p {
  margin-top: 5%;
  font-size: 0.9rem;
  color: #fff;
}

.floating-banner {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 750px;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  justify-content: center;
  background: rgba(252, 241, 167, 0.8);
}

.floating-banner.show {
  opacity: 1;
  pointer-events: auto;
}

.floating-banner img {
  width: 90%;
  height: auto;
  display: block;
  margin: 10px auto;
}
.shaww {
  margin-bottom: 2rem;
}
.red_border_box {
  padding: 1rem 1rem;
  border: 2px solid #f00;
  background: #fff;
  margin: 0 auto;
  text-align: left;
  font-weight: bold;
  position: relative;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 14px;
}
.red_border_box .ttl {
  color: #f00;
  font-size: 1.4em;
  text-align: center;
}
.red_border_box span {
  display: block;
  text-indent: -1em;
  padding-left: 1em;
}
.bold {
  font-weight: bold;
}
.mt-05 {
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .hide-pc {
    display: none;
  }
}

.note-box {
  display: block;
  border: 2px solid #feda26;
  background-color: #fffada;
  border-radius: 10px;
  padding: 10px;
  font-weight: bold;
}
.note-box:not(:last-child) {
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .hide-sp {
    display: none;
  }
}
.fsx-12{
  font-size: 1.2em
}
.txt_2505 .fsx-12{
  font-size: 1.4em;
}
.red_border_box .ttl{
  margin-bottom: 1rem;
}