@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: 100%;
}

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

.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;
  }
}

/* ------------------------------------------------------------
  fv
------------------------------------------------------------ */
.fv {
  margin-top: -1px;
}

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

.section02 {
  position: relative;
  z-index: 1;
}

.section03 {
  text-align: center;
  position: relative;
}
.section03 p {
  padding: 5%;
  font-weight: bold;
}
.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;
}

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

.faq {
  background-color: #f7f7f7;
  padding: 5% 0 10%;
}
.faq h2 {
  text-align: center;
  margin-bottom: 5%;
}
.accordion {
  width: 95%;
  margin: auto;
}
.accordion-content {
  display: none;
}
.accordion-header {
  background-color: #fff;
  padding: 12px 45px 10px 20px;
  margin: 10px 0 0;
  transition: background 0.3s ease;
  cursor: pointer;
  position: relative;
  box-shadow: 2px 2px 4px rgb(202, 202, 202);
  border-radius: 5px;
  font-weight: bold;
  min-height: 70px;
}

.accordion-header::before,
.accordion-header::after {
  position: absolute;
  content: "";
  top: 1px;
  right: 20px;
  bottom: 0;
  width: 12px;
  height: 2px;
  margin: auto;
  background: #00a9ff;
}
.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";
  top: 12px;
  left: 0;
  color: #00a9ff;
  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;
  }
}

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

.section08 {
  max-width: 750px;
  margin: auto;
  padding: 3%;
  background-color: #b8e8f1;
}

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

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

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

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

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

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

/* ------------------------------------------------------------
  form
------------------------------------------------------------ */
.section_Form {
  background-color: #f7f7f7;
  padding: 0 0 10%;
}
.section_Form h2 {
  background: #e36671;
  position: relative;
  color: #fff;
  text-align: center;
  padding: 8% 0 3%;
}
.section_Form h2:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 50vw 0 50vw;
  border-color: #e36671 #f7f7f7 transparent #f7f7f7;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
}
@media screen and (min-width: 750px) {
  .section_Form h2:after {
    border-width: 50px 375px 0 375px;
  }
}

.section_Form p {
  text-align: center;
  margin-top: 10%;
}
.section_Form p span {
  color: #e75566;
  font-weight: bold;
}

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

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

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

/* 固定バー（親） */
.floating-banner {
  display: none; /* 最初は隠す */
  position: fixed;
  z-index: 99999;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: rgba(0, 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: #00a9ff;
  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, 0.2);
  transition: background-color 0.3s, transform 0.2s;
}
.floating-banner-btn:hover {
  background: #008bd1;
  transform: translateY(-2px);
}
.page-wrapper {
  padding: 20px 16px 48px;
  background-color: #fff;
}
.page-header {
  margin: 0;
  font-size: 26px;
  font-weight: 800;
  color: #2ca8e9;
  letter-spacing: 0.5px;
  padding: 20px 0;
  text-align: center;
}
.page-header img {
  width: 70%;
  max-width: 334px;
  height: auto;
  display: inline-block;
}
.page-title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 26px;
  font-weight: bold;
}
.section_privacy {
  padding: 40px 20px;
  margin: 0 auto;
}
.section_privacy a {
  color: inherit;
}
.section_privacy p,
.section_privacy h2 {
  margin-bottom: 0.75em;
}
.section_privacy h2 {
  margin-top: 1.5em;
  font-size: 1.2em;
}
.section_privacy ol {
  list-style: auto;
  margin: 0;
  padding: 0;
  padding-left: 1em;
}
.section_privacy ol li {
  margin-bottom: 0.5em;
}
.section_privacy ol ol {
  margin-top: 0.75em;
}
.form-back {
  margin-top: 50px;
  text-align: center;
  color: #8b8b8b;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  width: 100%;
}
.form-back a {
  display: inline-block;
  padding: 18px 52px;
  gap: 10px;
  width: 280px;
  height: 60px;
  color: #fff;
  background: #3faadf;
  box-shadow: 0 3px 0 #0062a9;
  border-radius: 70px;
  border: 0;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.2rem;
  transition: all 0.3s;
}
.form-back a:hover {
  background: #007dd6;
  transform: translateY(3px);
  box-shadow: none;
}
.form_confirm {
  padding: 30px 20px 50px;
}

.header_fixed header.header {
  width: 100%;
  max-width: 750px;
  position: fixed;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
  animation: headerFixed 0.5s forwards;
}
.header_fixed {
  padding-top: 70px;
}

@keyframes headerFixed {
  from {
    top: -100px;
  }
  to {
    top: 0;
  }
}

.page-error {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
.page-error .footer {
  margin-bottom: 0;
  margin-top: auto;
}
.section_error {
  padding: 50px 20px;
  margin-top: auto;
  margin-bottom: auto;
}
.content-error {
  padding-top: 50px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .page-error .page-title {
    font-size: 20px;
    margin-top: 20px;
  }
}

#form-loading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  display: none;
  gap: 2rem;
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
}

.cv-spinner {
  width: 8rem;
  height: 8rem;
  display: block;
}

.spinner {
  display: block;
  width: 8rem;
  height: 8rem;
  border: 0.4rem #ddd solid;
  border-top: 0.4rem #999 solid;
  border-radius: 50%;
  animation: sp-anime 0.8s infinite linear;
}
@keyframes sp-anime {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
#form-loading.active {
  display: flex;
}

.note26 {
  --ripple-color: #00a9ff;
  color: #f00;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 35px;
  font-size: 14px;
  border: 2px solid #00a9ff;
  border-radius: 10px;
  animation: ripple 1.5s infinite;
}
@media screen and (max-width: 767px) {
  .note26 {
    text-align: left;
    padding: 10px;
    text-indent: -1em;
    padding-left: 1.8em;
    margin-left: -5px;
    margin-right: -5px;
  }
}
@media screen and (min-width: 768px) {
  .note26 {
    font-size: 18px;
    padding: 1rem 2rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 var(--ripple-color, #00a9ff);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(27, 133, 251, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(27, 133, 251, 0);
  }
}
