@charset "UTF-8";
body {
  font-size: 14px;
}

header {
  padding: 20px 7.5%;
  display: flex;
  justify-content: space-between;
}

.nav {
  position: fixed;
  right: -100%; /* 右から出てくる */
  top: 0;
  width: 100%; /* スマホに収まるサイズ */
  height: 100vh;
  padding-top: 120px;
  background-color: #fe8934;
  transition: all 0.6s;
  z-index: 200;
  overflow-y: auto; /* メニューが多くなったらスクロールできるように */
}

.hamburger {
  position: absolute;
  right: 7.5%;
  top: 15px;
  width: 38px; /* クリックしやすい幅 */
  height: 38px; /* クリックしやすい高さ */
  cursor: pointer;
  z-index: 300;
  background: #fe8934;
  border-radius: 50px;
}

.nav_list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav_item {
  text-align: center;
  padding: 0 14px;
  color: #fff;
}

.nav_item a {
  display: block;
  line-height: 200%;
  letter-spacing: 2px;
}
.nav_item a i {
  margin-left: 10px;
}

.n-nav {
  color: #fff;
  font-size: 24px;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 600;
}

.contact-btn {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 30px;
  gap: 10px;
  border-radius: 50px;
  background: #fff;
  border: solid 1.5px #fff;
  color: #fe8934;
  width: 80%;
  margin: 60px auto 0 auto;
  font-size: 15px;
}

.nav_item a:hover {
  background-color: #eee;
}

.hamburger_border {
  position: absolute;
  right: 22.5%;
  width: 20px;
  height: 1.5px;
  background-color: #fff;
  transition: all 0.6s;
}

.hamburger_border_top {
  top: 12px;
}

.hamburger_border_center {
  top: 18px;
}

.hamburger_border_bottom {
  top: 24px;
}

/* 表示された時用のCSS */
.nav-open .nav {
  right: 0;
}

.nav-open .black_bg {
  opacity: 0.8;
  visibility: visible;
}

.nav-open .hamburger_border_top {
  transform: rotate(45deg);
  top: 18.5px;
}

.nav-open .hamburger_border_center {
  width: 0;
  left: 50%;
}

.nav-open .hamburger_border_bottom {
  transform: rotate(-45deg);
  top: 18.5px;
}

h1 {
  width: 35vw;
}

main {
  overflow: hidden;
}
main .pc {
  display: none;
}
main .sp {
  display: block;
}
main .wrapper {
  width: 90%;
  margin: 0 auto;
}
main .section-ttl {
  font-family: "Roboto", sans-serif;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 70px;
  text-align: center;
  margin-bottom: 60px;
}
main .section-ttl span {
  color: #fa5420;
}
main .section-ttl h5 {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 30px */
  letter-spacing: 2px;
  margin-top: 20px;
  margin-bottom: 20px;
}
main .section-ttl p {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  font-optical-sizing: auto;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 185%; /* 29.6px */
  letter-spacing: 0.04px;
  color: #000;
}
main .section-ttl p span {
  font-size: 10px;
  line-height: 180%;
  color: #000;
}
main #service {
  margin-top: 80px;
}
main #service .service-ttl {
  margin-bottom: 60px;
}
main #service .service-innercontents .flexbox {
  margin-bottom: 100px;
}
main #service .service-innercontents .flexbox .flex-item {
  width: 50%;
  margin: 0 auto 30px auto;
}
main #service .service-innercontents .flexbox .flex-txt .tag {
  width: 80px;
  padding: 3px 0;
  text-align: center;
  background: #fa5420;
  border-radius: 5px;
  font-size: 12px;
  color: #fff;
  line-height: normal;
  margin: 0 auto 15px auto;
}
main #service .service-innercontents .flexbox .flex-txt h3 {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 64.4px */
  margin-bottom: 20px;
  text-align: center;
}
main #service .service-innercontents .flexbox .flex-txt h3 span {
  color: #fa5420;
}
main #service .service-innercontents .change-box {
  flex-direction: row-reverse;
}
main #contact {
  margin: 120px auto;
  position: relative;
}
main #contact .ctr-image {
  margin-left: 7%;
  margin-bottom: -60px;
  width: 100%;
}
main #contact .inner-contact {
  background: #fa5420;
  padding: 80px 24px 40px 24px;
  border-radius: 0px 40px 40px 0px;
}
main #contact .inner-contact h3 {
  color: #fff;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%; /* 70px */
  letter-spacing: 7.5px;
  margin-bottom: 20px;
}
main #contact .inner-contact p {
  color: #fff;
}
main #contact .inner-contact .btn {
  display: flex;
  width: 280px;
  padding: 14px 40px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 60px;
  margin-top: 30px;
}
main #contact .inner-contact .btn .arow {
  width: 24px;
}
main #contact .inner-contact .btn:hover {
  color: #000;
  transition: 2s;
  opacity: 0.7;
}
main #flow .arow {
  width: 20px;
  height: auto;
  margin: 20px auto 30px auto;
}
main #flow .inner-flow-item {
  box-shadow: 12px 12px 16px -4px rgba(0, 0, 0, 0.08), 4px 4px 6px -2px rgba(0, 0, 0, 0.03);
}
main #plan .inner-plan {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  align-self: stretch;
}
main #voice {
  background: #fa5420;
  padding: 80px 0;
  margin-top: 140px;
  color: #fff;
}
main #point {
  margin-top: 140px;
}
main #point .inner-point {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  align-self: stretch;
}
main #infomation .ttl {
  margin-bottom: 60px;
  text-align: center;
}
main #infomation .ttl h2 {
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 1.2px;
  margin-bottom: 20px;
}
main #infomation .ttl .pick {
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 18px */
}
main #infomation .flexbox {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  align-self: stretch;
}
main #infomation #faq {
  margin-top: 120px;
  margin-bottom: 140px;
  /*アコーディオン全体*/
  /*アコーディオンタイトル*/
  /*アイコンの＋と×*/
  /*　closeというクラスがついたら形状変化　*/
  /*アコーディオンで現れるエリア*/
}
main #infomation #faq .accordion-area {
  list-style: none;
  width: 100%;
  margin: 0 auto;
}
main #infomation #faq .accordion-area li {
  margin: 10px 0;
}
main #infomation #faq .accordion-area section {
  border-top: 0.5px solid #000;
  border-bottom: 0.5px solid #000;
}
main #infomation #faq .title {
  position: relative; /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size: 1rem;
  font-weight: normal;
  padding: 3% 3% 3% 50px;
  transition: all 0.5s ease;
}
main #infomation #faq .title::before,
main #infomation #faq .title::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #000;
}
main #infomation #faq .title::before {
  top: 48%;
  left: 15px;
  transform: rotate(0deg);
}
main #infomation #faq .title::after {
  top: 48%;
  left: 15px;
  transform: rotate(90deg);
}
main #infomation #faq .title.close::before {
  transform: rotate(45deg);
}
main #infomation #faq .title.close::after {
  transform: rotate(-45deg);
}
main #infomation #faq .box {
  display: none; /*はじめは非表示*/
  background: #f5f6fb;
  margin: 0 3% 3% 3%;
  padding: 3%;
}

footer {
  margin-top: 100px;
  padding: 40px 7.5%;
}
footer .footer-nav {
  display: flex;
  gap: 80px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 40px;
  border-bottom: solid 1px #000;
}
footer .footer-nav .f-logo {
  width: 140px;
}
footer .footer-nav ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  list-style: none;
  font-size: 14px;
}
footer .footer-nav ul a {
  text-decoration: none;
  color: #000;
}
footer .footer-bottom {
  margin-top: 20px;
  font-size: 12px;
}
footer .footer-bottom ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 5px;
  list-style: none;
}
footer .footer-bottom ul a {
  text-decoration: none;
  color: #000;
}/*# sourceMappingURL=style_sp.css.map */