@charset "utf-8";
p {
  line-height: 1.8;
}

.in {
  max-width: 1200px;
  padding: 0 7px;
  margin: 0 auto;
}

.sec-pt {
  padding-top: 130px;
}

.bg-blue {
  background-image: linear-gradient(0deg, #accbee, #e7f0fd);
  padding: 130px 0 30px 0;
}

.color-blue {
  color: #29487d;
  fill: #29487d;
}
/* フローティング */
.floating-text {
  position: fixed;
  right: 0;
  top: 50%;
  writing-mode: vertical-rl;
  padding: 15px 7px;
  background: #29487d;
  color: #fafafa;
  z-index: 100;
}
/* 半円タイトル*/
.arc-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
svg.semiarc {
  width: 450px; /* 半円の横幅 */
  height: 100px; /* 半円の高さ */
  overflow: visible;
}
.arc-text {
  font-size: 0.6em;
  letter-spacing: 0.05em;
}
.sec-title {
  position: relative;
}
.sec-title-h2 {
  margin: 0;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.4em;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 70%;
}
.sec-title-h2::before,
.sec-title-h2::after {
  content: "";
  flex: 1;
  height: 2px;
  background: #29487d;
}
.sec-title-h2::before {
  margin-right: 10px;
}
.sec-title-h2::after {
  margin-left: 10px;
}
.sec-title-text {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 22px;
  transform: translateX(-50%);
}

@media (max-width: 480px) {
  svg.semiarc {
    width: 240px;
    height: 60px;
  }
  .sec-title-h2 {
    width: 100%;
    font-size: 1.8em;
  }
}

.method-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}
.method-card {
  flex: 1;
  background: #fff;
  border: 1px solid #ddd;
  padding: 16px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  width: 330px;
  height: 380px;
}
.card-title-box {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.step-bk {
  background: #29487d;
  padding: 6px 20px 6px 12px;
  clip-path: polygon(0 0, 90% 0, 100% 95%, 100% 100%, 0 100%);
  display: inline-block;
}
.step {
  color: #fff;
  font-weight: bold;
  margin: 0;
  font-size: 14px;
}
.card-title {
  font-size: 18px;
  font-weight: bold;
  color: #f7931e;
  margin: 0;
  border-bottom: 1px solid #29487d;
  padding-bottom: 3px;
  width: 75%;
}
.arrow {
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 30px solid #f7b500; /* 黄色い矢印 */
  flex: none;
}
.card-img-box {
  margin: 12px 0;
}
.card-img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .method-grid {
    flex-direction: column;
  }
  .arrow {
    margin: 12px auto;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 30px solid #f7b500;
  }
}

/* aboutバナー */
/* .about-bnr {
  width: 75%;
  margin: 130px auto;
  padding: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fffcf1;
  border: 5px solid #e6b422;
  font-size: 1.8em;
}
.bnr-text {
  color: #3a3a3a;
} */

.about-bnr-box {
  margin: 30px auto;
  text-align: center;
}

/* シート作成 */
.bg-maru {
  position: relative;
  padding: 0.3em 0 0.2em 1em;
  z-index: 0;
  margin: 30px 0 20px;
}
.bg-maru::after {
  position: absolute;
  top: -15%;
  left: 0.3em;
  height: 45px;
  width: 45px;
  background: #f8b500;
  content: "";
  border-radius: 50%;
  z-index: -1;
}
.inputList input[type="radio"] {
  display: none;
}
.inputList input[type="radio"] + span {
  display: block;
  background: #fafafa;
  border-radius: 5px;
  padding: 20px 15px;
  text-align: center;
  cursor: pointer;
  transition: background 0.3s ease;
  border: 1px solid #ddd;
}
.inputList label:hover {
  opacity: 0.7;
}
.inputList input[type="radio"]:checked + span {
  background: #f8b500;
  color: #fafafa;
}
/* ボタン */
button.btn-yellow {
  border: none;
}
.btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}
.btn-yellow,
.btn-blue {
  width: 360px;
  padding: 15px 0;
  margin: 7px auto;
  border-radius: 5px;
  display: inline-block;
  text-align: center;
  color: #fafafa;
}
.btn-yellow {
  background: #f8b500;
}
.btn-blue {
  background: #9bb7d4;
}
.btn-yellow:hover,
.btn-blue:hover {
  color: #fafafa;
  opacity: 0.7;
}
@media (min-width: 768px) {
  .btn-100 {
    width: 50%;
  }
}

/* 会員登録 */
.registration {
  background-image: linear-gradient(0deg, #accbee, #e7f0fd);
  padding: 30px 0;
  margin-top: 100px;
}
@media (max-width: 768px) {
  .registration {
    margin-top: 50px;
  }
}

.news {
  margin: 50px 0;
}
.news-h2 {
  margin: 15px auto;
  top: 0;
  font-size: 2.4em;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 70%;
}
.news-h2::before,
.news-h2::after {
  content: "";
  flex: 1;
  height: 2px;
  background: #29487d;
}
.news-list {
  max-width: 700px;
  margin: 0 auto;
}
.news-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 768px) {
  .news-item {
    display: block;
  }
}

/* header----------------- */
.btn_request {
  cursor: pointer;
}
.header-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px;
}
.header-in::after,
.subnav-box::after {
  content: none;
}
.nav-link,
.subnav-link {
  display: inline-block;
  position: relative;
  padding: 0.25em 1em;
}
.nav-area a {
  color: #3a3a3a;
}
.mainnav-box,
.subnav-box {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .header-in {
    display: block;
    text-align: center;
  }
  .header-logo {
    height: 80px;
  }
  .mainnav-box,
  .subnav-box {
    justify-content: center;
  }
  .nav-link a,
  .subnav-link a {
    font-size: 0.8em;
  }
  .nav-link,
  .subnav-link {
    padding: 0 0.4em;
  }
  .nav-link:not(:first-child):before,
  .subnav-link:not(:first-child):before {
    content: "";
    display: block;
    width: 1px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-color: #333;
    height: 1em;
  }
}

/* footer ----------*/

/* about */
.about-kv {
  position: relative;
}
.kv-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3em;
  text-shadow: 2px 2px 0 #fff, -2px 2px 0 #fff, 2px -2px 0 #fff,
    -2px -2px 0 #fff, 0px 2px 0 #fff, 0px -2px 0 #fff, 2px 0px 0 #fff,
    -2px 0px 0 #fff, 3px 3px 0 #204a87; /* 青の影 */
  font-weight: bold;
  width: 100%;
}
.about {
  background-image: linear-gradient(0deg, #accbee, #e7f0fd);
  padding: 30px 0;
}
.about-text span {
  display: block;
}
@media (max-width: 768px) {
  .kv-text {
    font-size: 2em;
  }
}
@media (max-width: 425px) {
  .kv-text {
    font-size: 1.4em;
  }
  .kv-img {
    height: 150px;
    object-fit: cover;
  }
}
