@charset "UTF-8";
.btn_green {
  position: absolute;
  left: 50%;
  bottom: 4%;
  transform: translateX(-50%);
  width: 70%;
  max-width: 420px;
  padding: 0.9rem 0;
  background-color: #fd473f;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-radius: 999px;
}

@media screen and (min-width: 781px) {
  .btn_green {
    width: 300px;
    bottom: 119px;
  }
}
.rollover {
  transition: opacity 0.3s ease;
}

a.rollover:hover,
.rollover:hover {
  opacity: 0.7;
  cursor: pointer;
}

.button-centered-icon-text {
  display: flex;
  box-sizing: border-box;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 320px;
  height: 64px;
  padding: 8px 16px 8px 8px;
  font-size: 1.8rem;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background: linear-gradient(to right, #fd473f, #f59702);
  border-radius: 32px;
  font-weight: bold;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 781px) {
  .button-centered-icon-text {
    font-size: 1.4rem;
    max-width: 480px;
  }
}
.button-centered-icon-text.is-reverse {
  flex-direction: row-reverse;
  padding: 8px 8px 8px 16px;
}
.button-centered-icon-text .icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  aspect-ratio: 1;
  overflow: hidden;
}
.button-centered-icon-text .icon-wrap svg {
  display: block;
  width: 3rem;
  aspect-ratio: 1;
}
.button-centered-icon-text .icon-wrap svg * {
  fill: none;
  stroke: currentcolor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #fff;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 5%;
}

.site-header__logo {
  font-size: 4.5vw;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: inherit;
}

.site-header__nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 80px 8% 40px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 99;
}
.site-header__nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-header__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-header__nav-list li {
  border-bottom: 1px solid #eee;
}
.site-header__nav-list li a {
  display: block;
  padding: 4.5vw 0;
  font-size: 4.5vw;
  font-weight: bold;
  text-decoration: none;
  color: inherit;
}

.site-header__cta {
  display: block;
  padding: 4.5vw 0;
  font-size: 4.5vw;
  font-weight: bold;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid #eee;
}

.site-header__burger {
  position: relative;
  z-index: 101;
  width: 35px;
  height: 15px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.site-header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #222;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.site-header__burger.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.site-header__burger.is-open span:nth-child(2) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media screen and (min-width: 781px) {
  .site-header__inner {
    height: 70px;
    padding: 0 3%;
    max-width: 1600px;
    margin: 0 auto;
  }
  .site-header__logo {
    font-size: 18px;
  }
  .site-header__nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
    background: transparent;
    width: auto;
  }
  .site-header__nav-list {
    display: flex;
    gap: 60px;
    margin: 0;
  }
  .site-header__nav-list li {
    border: none;
  }
  .site-header__nav-list li a {
    padding: 0;
    font-size: 15px;
    font-weight: normal;
  }
  .site-header__nav-list li a:hover {
    opacity: 0.6;
  }
  .site-header__cta {
    background: #0076df;
    color: #fff;
    border-radius: 100px;
    border-bottom: none;
    font-size: 14px;
    padding: 12px 24px;
    white-space: nowrap;
    text-align: center;
  }
  .site-header__cta:hover {
    opacity: 0.85;
  }
  .site-header__burger {
    display: none;
  }
}
/*=====================
  共通スタイル
======================*/
* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  overflow-x: hidden;
}

body {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 60px;
}
@media screen and (min-width: 781px) {
  section[id] {
    scroll-margin-top: 70px;
  }
}

@media screen and (max-width: 780px) {
  html {
    font-size: 62.5%;
    height: 100%;
  }
}
@media screen and (min-width: 781px) {
  html {
    font-size: calc(var(--bg-w) * 16 / 2000);
  }
}
body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", sans-serif;
  font-weight: 500;
  color: #1d1d1f;
  margin: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: justify;
  overflow-x: hidden;
}

.container {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 781px) {
  .container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
  }
}

.br-sp {
  display: block;
}

@media screen and (min-width: 781px) {
  .br-sp {
    display: none;
  }
}
.br-pc {
  display: block;
}

@media screen and (max-width: 780px) {
  .br-pc {
    display: none;
  }
}
.spacer-sm {
  display: block;
  height: 0.5rem;
}

@media screen and (min-width: 781px) {
  .spacer-sm {
    display: block;
    height: 10px;
  }
}
.spacer {
  display: block;
  height: 1.7rem;
}
@media screen and (min-width: 781px) {
  .spacer {
    height: 1.5rem;
  }
}

@media screen and (min-width: 781px) {
  .spacer_pc {
    display: block;
    height: 1.5rem;
  }
}
body .pc-item {
  display: none !important;
}

body .sp-item {
  display: block !important;
}

@media screen and (min-width: 781px) {
  body .pc-item {
    display: block !important;
  }
  body .sp-item {
    display: none !important;
  }
}
/*=====================
  マージン・パディング
======================*/
.mb-sm {
  margin-bottom: 0.5rem;
}

.mb-md {
  margin-bottom: 1.5rem;
}

.mb-lg {
  margin-bottom: 2.5rem;
}

.mb-xl {
  margin-bottom: 4rem;
}

.pb-sm {
  padding-bottom: 16px;
}

.pb-lg {
  padding-bottom: 80px;
}

/*=====================
  フォント
======================*/
.font-ss, #form .form_input, #form .form_textarea {
  font-size: 3.59vw;
  line-height: 1.4;
}
@media screen and (min-width: 781px) {
  .font-ss, #form .form_input, #form .form_textarea {
    font-size: calc(var(--bg-w) * 16 / 2000);
  }
}

.font-sm, .tokushoho td, .privacy_header .privacy_header_btn, .privacy_back_btn, #form .form_label, #form .form_btn, #form .form_status, .footer .footer_menu li {
  font-size: 4vw;
  line-height: 1.3;
}
@media screen and (min-width: 781px) {
  .font-sm, .tokushoho td, .privacy_header .privacy_header_btn, .privacy_back_btn, #form .form_label, #form .form_btn, #form .form_status, .footer .footer_menu li {
    font-size: calc(var(--bg-w) * 20 / 2000);
  }
}

.font-md, .tokushoho th {
  font-size: 5.13vw;
}
@media screen and (min-width: 781px) {
  .font-md, .tokushoho th {
    font-size: calc(var(--bg-w) * 24 / 2000);
  }
}

.font-lg {
  font-size: 6.67vw;
}
@media screen and (min-width: 781px) {
  .font-lg {
    font-size: calc(var(--bg-w) * 26 / 2000);
  }
}

.font-xl {
  font-size: 7.69vw;
}
@media screen and (min-width: 781px) {
  .font-xl {
    font-size: calc(var(--bg-w) * 30 / 2000);
  }
}

h2 {
  font-size: 13vw;
}
@media screen and (min-width: 781px) {
  h2 {
    font-size: 70px;
  }
}

.h2_subtitle {
  font-size: 4vw;
  margin-bottom: 5%;
}
@media screen and (min-width: 781px) {
  .h2_subtitle {
    font-size: 16px;
  }
}

.font-zenmaru {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-variant-east-asian: proportional-width;
  font-feature-settings: "pwid";
}

.font-bold {
  font-weight: bold;
}

.blue {
  color: #0076df;
}

.bg-blue {
  background-color: #0076df;
  color: white;
  padding: 1% 2%;
}
@media screen and (min-width: 781px) {
  .bg-blue {
    padding: 3px 7px;
  }
}

.pink {
  color: #ec6ca5;
}

/*=====================
  other
======================*/
a {
  text-decoration: none;
  cursor: pointer;
}

.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hr-dotted {
  border: none;
  border-top: 2px dotted #1d1d1f;
  margin: 0.8rem 0;
}
@media screen and (min-width: 781px) {
  .hr-dotted {
    margin: 20px 0;
  }
}

.hr-dashed {
  border: none;
  border-top: 1px dashed #1d1d1f;
  margin: 0.7rem 0;
}
@media screen and (min-width: 781px) {
  .hr-dashed {
    border-top: 2px dashed #1d1d1f;
    margin: 15px 0;
  }
}

.page-top {
  position: fixed;
  bottom: 24px;
  right: 40px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #3a3a3a;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease, background 0.2s ease;
  z-index: 999;
}
.page-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.page-top:hover {
  background: #555;
}

.yureru-a {
  animation: yureru-j 3s infinite;
}

@keyframes yureru-j {
  0% {
    transform: translate(0px, 2px);
  }
  5% {
    transform: translate(0px, -2px);
  }
  10% {
    transform: translate(0px, 2px);
  }
  15% {
    transform: translate(0px, -2px);
  }
  20% {
    transform: translate(0px, 2px);
  }
  25% {
    transform: translate(0px, -2px);
  }
  30% {
    transform: translate(0px, 0px);
  }
}
.yureru-b {
  animation: yureru-j 2s infinite;
}

@keyframes yureru-j {
  0% {
    transform: translate(0px, 2px);
  }
  5% {
    transform: translate(0px, -2px);
  }
  10% {
    transform: translate(0px, 2px);
  }
  15% {
    transform: translate(0px, -2px);
  }
  20% {
    transform: translate(0px, 2px);
  }
  25% {
    transform: translate(0px, -2px);
  }
  30% {
    transform: translate(0px, 0px);
  }
}
.inview {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}
.inview.fadeIn_up {
  opacity: 1;
  transform: translateY(0);
}

[data-anim] {
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-anim=up] {
  transform: translateY(28px);
}

[data-anim=left] {
  transform: translateX(-32px);
}

[data-anim].is-inview {
  opacity: 1;
  transform: none;
}

[data-delay="100"] {
  transition-delay: 0.1s;
}

[data-delay="200"] {
  transition-delay: 0.2s;
}

[data-delay="300"] {
  transition-delay: 0.3s;
}

[data-delay="400"] {
  transition-delay: 0.4s;
}

[data-delay="500"] {
  transition-delay: 0.5s;
}

[data-delay="600"] {
  transition-delay: 0.6s;
}

.fuwafuwa {
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  background: url(../img/ico-apple.svg) no-repeat center center/60px auto;
  display: inline-block;
  transition: 1.5s ease-in-out;
}

@keyframes fuwafuwa {
  0% {
    transform: translate(0, 0) rotate(-7deg);
  }
  50% {
    transform: translate(0, -7px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(7deg);
  }
}
.view {
  position: relative;
  overflow: hidden;
}

.view::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  transform: translateX(0%);
  transition: all 0.3s ease-in-out 0.3s;
}

.view img {
  vertical-align: middle;
  transform: translateX(0%);
}

.view.js-on::after {
  transform: translateX(100%);
}

#fv {
  position: relative;
  width: 100%;
  aspect-ratio: 780/1600;
  background: url(../images/fv_bg_sp.jpg) no-repeat center top/100% auto;
  margin-top: 60px;
  margin-bottom: 7%;
}
#fv .fv_ttl,
#fv .fv_list {
  position: absolute;
}
#fv .fv_ttl {
  width: 90%;
  left: 3%;
  top: 3%;
}
#fv .fv_list {
  left: 4%;
  top: 44%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 20%;
  column-gap: 1%;
  padding: 0;
  margin: 0;
  font-size: 4.5vw;
}
#fv .fv_list li {
  line-height: 1;
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-self: start;
  gap: 0.4rem;
  padding-bottom: 0.1rem;
  padding-right: 0.5rem;
  border-bottom: 1.5px solid black;
}

@media screen and (min-width: 781px) {
  #fv {
    position: relative;
    --bg-w: min(2000px, calc(2000 * 100vw / 1600));
    --bg-h: calc(var(--bg-w) * 901 / 2000);
    margin-top: 70px;
    margin-bottom: 40px;
    background: url(../images/fv_bg_pc.jpg) no-repeat center top/var(--bg-w) auto;
    height: var(--bg-h);
  }
  #fv .fv_ttl,
  #fv .fv_list {
    position: absolute;
    left: calc((100% - var(--bg-w)) / 2 + var(--x) / 2000 * var(--bg-w));
    top: calc(var(--y) / 901 * var(--bg-h));
    width: calc(var(--w) / 2000 * var(--bg-w));
  }
  #fv .fv_ttl {
    --x: 934;
    --y: 69;
    --w: 800;
  }
  #fv .fv_list {
    --x: 261;
    --y: 61;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    row-gap: 20%;
    column-gap: 1%;
    padding: 0;
    margin: 0;
    font-size: calc(var(--bg-w) * 25 / 2000);
  }
  #fv .fv_list li {
    line-height: 1;
    list-style: none;
    display: flex;
    align-items: flex-start;
    justify-self: start;
    gap: 0.4rem;
    padding-bottom: 0.1rem;
    padding-right: 0.5rem;
    border-bottom: 1.5px solid black;
  }
}
#service {
  margin-bottom: 3%;
}
#service .service_list {
  display: flex;
  flex-direction: column;
  gap: 8%;
}
#service .service_content {
  position: relative;
  margin-bottom: 7%;
}
#service .service_content picture {
  display: block;
}
#service .service_content img {
  display: block;
  width: 100%;
  height: auto;
}
#service .service_txt {
  position: absolute;
  text-align: center;
  font-size: 5vw;
  font-weight: bold;
  line-height: 1.2;
}
#service .service_txt01 {
  top: 68%;
  left: 57%;
}
#service .service_txt02 {
  top: 68%;
  left: 52%;
}
#service .service_txt03 {
  top: 74%;
  left: 57%;
}
@media screen and (min-width: 781px) {
  #service {
    margin-bottom: 40px;
  }
  #service .service_list {
    flex-direction: row;
    gap: 40px;
  }
  #service .service_content {
    flex: 1;
    container-type: inline-size;
  }
  #service .service_txt {
    font-size: 7cqw;
  }
  #service .service_txt01 {
    top: 81%;
    left: 44%;
  }
  #service .service_txt02 {
    top: 81%;
    left: 37%;
  }
  #service .service_txt03 {
    top: 84%;
    left: 44%;
  }
}

#works {
  padding: 12% 0 10%;
}
#works .works__subtitle {
  margin: 0 0 6%;
  font-size: 4vw;
}
#works .works__viewport {
  overflow: hidden;
  padding-left: 5%;
}
#works .works__track {
  display: flex;
  gap: 3vw;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
#works .works__item {
  flex: 0 0 120vw;
}
#works .works__item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}
#works .works__nav {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  padding-top: 5%;
}
#works .works__btn {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 1px solid #f0f0f0;
  background: #fff;
  font-size: 4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  padding-bottom: 0.8rem;
}
#works .works__btn:disabled {
  opacity: 0.3;
  cursor: default;
}
#works .works__btn:not(:disabled):hover {
  background: #f0f0f0;
}

@media screen and (min-width: 781px) {
  #works {
    padding: 0px 0 80px;
  }
  #works .works__subtitle {
    font-size: 16px;
    margin-bottom: 60px;
  }
  #works .works__viewport {
    padding-left: max((100vw - 1300px) / 2 + 40px, 5vw);
  }
  #works .works__track {
    gap: 24px;
  }
  #works .works__item {
    flex: 0 0 650px;
  }
  #works .works__nav {
    padding-top: 24px;
  }
  #works .works__btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #f0f0f0;
    background: #fff;
    font-size: 50px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
    padding-bottom: 10px;
  }
  #works .works__btn:disabled {
    opacity: 0.3;
    cursor: default;
  }
  #works .works__btn:not(:disabled):hover {
    background: #f0f0f0;
  }
}
#price {
  scroll-margin-top: 15px;
  padding: 12% 0 10%;
  background: #f5f5f5;
}
#price .price__viewport {
  overflow: hidden;
  padding-left: 5%;
  margin-top: 8%;
}
#price .price__track {
  display: flex;
  gap: 4vw;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  align-items: stretch;
}
#price .price__item {
  flex: 0 0 85vw;
}
#price .price__card {
  background: #fff;
  border-radius: 16px;
  padding: 8% 7%;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
#price .price__head {
  text-align: center;
  margin-bottom: 6%;
}
#price .price__name {
  font-size: 7vw;
  font-weight: bold;
  margin-bottom: 4%;
}
#price .price__badge {
  display: inline-block;
  border: 1px solid #c0392b;
  color: #c0392b;
  border-radius: 100px;
  padding: 0.25em 1em;
  font-size: 3.5vw;
  margin-bottom: 4%;
}
#price .price__amount {
  font-size: 11vw;
  font-weight: bold;
  line-height: 1.1;
  margin-top: 3%;
}
#price .price__yen {
  font-size: 0.5em;
}
#price .price__hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 0 0 5%;
}
#price .price__list {
  list-style: none;
  padding: 0 0 5%;
  margin: 0;
  font-size: 4vw;
  line-height: 2;
}
#price .price__list--dot li::before {
  content: "・";
}
#price .price__extra {
  margin-top: auto;
  padding-top: 5%;
  border-top: 1px dotted #ccc;
}
#price .price__extra-text {
  font-size: 4.5vw;
  font-weight: bold;
  margin-bottom: 2%;
}
#price .price__extra-price {
  font-size: 6vw;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.4em;
}
#price .price__unit {
  display: inline-block;
  background: #222;
  color: #fff;
  font-size: 0.5em;
  padding: 0.2em 0.6em;
  border-radius: 4px;
  font-weight: bold;
}
#price .price__table {
  font-size: 3.5vw;
}
#price .price__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 3% 0;
  border-bottom: 1px dotted #ccc;
}
#price .price__row:first-child {
  padding-top: 0;
}
#price .price__row--last {
  border-bottom: none;
}
#price .price__size {
  font-weight: bold;
  flex-shrink: 0;
  min-width: 4.5em;
  white-space: nowrap;
  text-align: center;
}
#price .price__cols {
  flex: 1;
}
#price .price__cols > p {
  text-align: right;
}
#price .price__col-row {
  display: flex;
  line-height: 1.8;
}
#price .price__face {
  flex: 1;
  text-align: right;
}
#price .price__val {
  flex: 1;
  text-align: right;
}
#price .price__sections {
  font-size: 3.5vw;
}
#price .price__section {
  margin-bottom: 5%;
}
#price .price__section:last-child {
  margin-bottom: 0;
}
#price .price__section-ttl {
  font-weight: bold;
  margin-bottom: 2%;
}
#price .price__nav {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  padding-top: 5%;
}
#price .price__btn {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 1px solid #f0f0f0;
  background: #fff;
  font-size: 4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  padding-bottom: 0.8rem;
}
#price .price__btn:disabled {
  opacity: 0.3;
  cursor: default;
}
#price .price__btn:not(:disabled):hover {
  background: #f0f0f0;
}
@media screen and (min-width: 781px) {
  #price {
    scroll-margin-top: 0;
    padding: 80px 0 100px;
  }
  #price .price__viewport {
    overflow: visible;
    padding-left: 0;
    margin-top: 48px;
  }
  #price .price__track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
  }
  #price .price__item {
    flex: none;
  }
  #price .price__unit {
    font-size: 14px;
    padding: 2px 10px;
  }
  #price .price__card {
    padding: 40px 32px;
  }
  #price .price__section-ttl {
    font-size: 20px;
  }
  #price .price__name {
    font-size: 26px;
    margin-bottom: 12px;
  }
  #price .price__badge {
    font-size: 13px;
    margin-bottom: 12px;
  }
  #price .price__amount {
    font-size: 44px;
    margin-top: 10px;
  }
  #price .price__hr {
    margin-bottom: 20px;
  }
  #price .price__list {
    font-size: 18px;
  }
  #price .price__extra-text {
    font-size: 20px;
  }
  #price .price__extra-price {
    font-size: 22px;
  }
  #price .price__row {
    padding: 20px 0;
  }
  #price .price__table {
    font-size: 18px;
  }
  #price .price__sections {
    font-size: 14px;
  }
  #price .price__nav {
    display: none;
  }
}

#flow {
  padding: 12% 0 10%;
}
#flow .flow__viewport {
  overflow: hidden;
  padding-left: 5%;
  margin-top: 8%;
}
#flow .flow__track {
  display: flex;
  gap: 4vw;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  align-items: stretch;
}
#flow .flow__item {
  flex: 0 0 75vw;
}
#flow .flow__card {
  background: #f5f5f5;
  border-radius: 12px;
  padding: 8% 7% 7%;
  height: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
#flow .flow__badge {
  position: absolute;
  top: 0;
  left: 0;
  width: 20vw;
  height: 20vw;
  background: #222;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 3vw 0 0 3vw;
  font-size: 6vw;
  font-weight: bold;
  color: #fff;
  line-height: 1;
}
#flow .flow__icon {
  width: 20vw;
  height: auto;
  margin: 4% 0 6%;
}
#flow .flow__icon02 {
  width: 23vw;
  height: auto;
  margin: 4% 0 6%;
}
#flow .flow__icon03 {
  width: 15vw;
  height: auto;
  margin: 4% 0 6%;
}
#flow .flow__name {
  font-size: 6vw;
  font-weight: bold;
  margin-bottom: 4%;
}
#flow .flow__desc {
  font-size: 4vw;
  line-height: 1.8;
  text-align: left;
}
#flow .flow__nav {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  padding-top: 5%;
}
#flow .flow__btn {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 1px solid #f0f0f0;
  background: #fff;
  font-size: 4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  padding-bottom: 0.8rem;
}
#flow .flow__btn:disabled {
  opacity: 0.3;
  cursor: default;
}
#flow .flow__btn:not(:disabled):hover {
  background: #f0f0f0;
}
@media screen and (min-width: 781px) {
  #flow {
    padding: 80px 0 100px;
  }
  #flow .flow__viewport {
    overflow: visible;
    padding-left: 0;
    margin-top: 48px;
  }
  #flow .flow__track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
  }
  #flow .flow__item {
    flex: none;
  }
  #flow .flow__card {
    padding: 32px 24px 28px;
  }
  #flow .flow__badge {
    width: 70px;
    height: 70px;
    padding: 12px 0 0 12px;
    font-size: 24px;
  }
  #flow .flow__icon01 {
    width: 72px;
    margin: 38px 0 20px;
  }
  #flow .flow__icon02 {
    width: 85px;
    margin: 16px 0 20px;
  }
  #flow .flow__icon03 {
    width: 55px;
    margin: 16px 0 20px;
  }
  #flow .flow__icon04 {
    width: 70px;
    margin: 16px 0 20px;
  }
  #flow .flow__name {
    font-size: 26px;
    margin-bottom: 12px;
  }
  #flow .flow__desc {
    font-size: 18px;
  }
  #flow .flow__nav {
    display: none;
  }
}

#faq {
  scroll-margin-top: 15px;
  background: #f5f5f5;
  padding: 12% 0 15%;
  margin-bottom: 15%;
}
#faq .faq__list {
  margin-top: 8%;
}
#faq .faq__item {
  padding: 6% 0;
  border-bottom: 1px dotted #bbb;
}
#faq .faq__item:first-child {
  border-top: 1px dotted #bbb;
}
#faq .faq__q {
  font-size: 6vw;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 3%;
}
#faq .faq__a {
  font-size: 4vw;
  line-height: 1.9;
}
@media screen and (min-width: 781px) {
  #faq {
    scroll-margin-top: 0;
    padding: 80px 0;
    margin-bottom: 80px;
  }
  #faq .faq__list {
    max-width: 960px;
    margin: 48px auto 0;
  }
  #faq .faq__item {
    padding: 32px 0;
  }
  #faq .faq__q {
    font-size: 30px;
    margin-bottom: 12px;
  }
  #faq .faq__a {
    font-size: 18px;
  }
}

#form {
  width: 100%;
  height: auto;
  margin-bottom: 10%;
}
#form .form_title {
  width: 90%;
  margin: 0 auto;
}
#form .form_inner {
  margin: 0 auto;
}
#form .form_box {
  background: #fefaf2;
  border-radius: 8px;
  padding: 13% 7%;
}
#form .form_field {
  margin-bottom: 5vw;
}
#form .form_label {
  display: block;
  margin-bottom: 1vw;
  font-weight: bold;
}
#form .form_required {
  background: #e60012;
  color: white;
  font-size: 3vw;
  padding: 0.1em 0.4em;
  border-radius: 3px;
  vertical-align: middle;
}
#form .form_input {
  display: block;
  margin-bottom: 10%;
  width: 100%;
  background: white;
  border: 1px solid lightgrey;
  border-radius: 4px;
  padding: 0.75em 1em;
  font-family: inherit;
  box-sizing: border-box;
  outline: none;
  transition: box-shadow 0.2s ease;
}
#form .form_input:focus {
  box-shadow: 0 0 0 2px rgba(0, 118, 223, 0.4);
}
#form .form_textarea {
  width: 100%;
  margin-bottom: 10%;
  background: white;
  border: 1px solid lightgrey;
  border-radius: 4px;
  padding: 0.75em 1em;
  font-family: inherit;
  box-sizing: border-box;
  resize: vertical;
  outline: none;
  transition: box-shadow 0.2s ease;
}
#form .form_textarea:focus {
  box-shadow: 0 0 0 2px rgba(0, 118, 223, 0.4);
}
#form .form_submit {
  display: flex;
  justify-content: center;
  margin-top: 0;
}
#form .form_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  background: #0076df;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 1.5em 2em;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.2);
  transition: opacity 0.2s ease;
}
#form .form_btn:hover {
  opacity: 0.85;
}
#form .form_btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
#form .form_status {
  margin-top: 1em;
  padding: 0.75em 1em;
  border-radius: 4px;
  text-align: center;
  font-weight: bold;
}
#form .form_status--success {
  background: #e6f4ea;
  color: #2d7a3a;
  border: 1px solid #a8d5b0;
}
#form .form_status--error {
  background: #fdecea;
  color: #c0392b;
  border: 1px solid #f5b7b1;
}

@media screen and (min-width: 781px) {
  #form {
    margin: 0 auto;
  }
  #form .form_inner {
    max-width: 960px;
  }
  #form .view.pc-item {
    margin-bottom: 20px;
  }
  #form .form_box {
    margin-bottom: 60px;
    padding: 80px;
  }
  #form .form_required {
    font-size: 14px;
  }
  #form .form_field {
    margin-bottom: 40px;
  }
  #form .form_input {
    margin-bottom: 10px;
  }
  #form .form_textarea {
    margin-bottom: 20px;
  }
  #form .form_btn {
    padding: 20px 40px;
    width: 300px;
  }
}
.cta_fixed {
  position: fixed;
  bottom: 0;
  z-index: 100;
  background-color: white;
  width: 100%;
  padding: 3% 0;
  display: flex;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.cta_fixed.is-visible {
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 781px) {
  .cta_fixed {
    width: auto;
    right: 0px;
    bottom: 40px;
    background-color: transparent;
    padding: 0;
    box-shadow: 15px 15px 15px 0px rgba(0, 0, 0, 0.2);
  }
  .cta_fixed .button-centered-icon-text {
    border-radius: 20px 0px 0px 20px;
    line-height: 1.2;
    font-size: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    padding: 16px 20px 16px 20px;
    border: 4px solid white;
  }
  .cta_fixed .button-centered-icon-text .icon-wrap {
    width: 50px;
  }
  .cta_fixed .button-centered-icon-text .icon-wrap svg {
    width: 50px;
  }
}

.footer {
  text-align: center;
  padding: 2rem 0 3rem 0;
  margin-top: 0px;
  background-color: black;
}
.footer a {
  color: white;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}
.footer .footer_menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  color: white;
}
.footer .footer_menu li {
  margin: 0;
  padding: 0 20px;
  line-height: 1.7;
}
.footer .copyright {
  margin: 0;
  padding: 20px 0 0 0;
}
.footer .footer_menu li:nth-child(2) {
  border-left: 1px solid white;
}
.footer .footer_menu li:nth-child(3) {
  border-left: 1px solid white;
}
@media screen and (min-width: 781px) {
  .footer {
    padding: 2rem 0 2rem 0;
  }
}

.privacy_header .privacy_header_inner {
  width: 90%;
  margin: 0 auto;
  height: 10vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.privacy_header .privacy_header_logo {
  font-size: 4vw;
  color: #000;
}
.privacy_header .privacy_header_btn {
  display: inline-block;
  padding: 0.3rem 1rem 0.1rem;
  border: 2px solid #1d1d1f;
  border-radius: 999px;
  color: #1d1d1f;
  transition: background-color 0.2s, color 0.2s;
}
.privacy_header .privacy_header_btn:hover {
  background-color: #1d1d1f;
  color: #fff;
}
@media screen and (min-width: 781px) {
  .privacy_header .privacy_header_btn {
    padding: 0.5rem 1.5rem 0.3rem;
  }
}

.privacy_container {
  width: 90%;
  margin: 0 auto;
}

.privacy_ttl {
  padding: 10% 0;
  text-align: center;
  font-size: 6vw;
}

.privacy_txt_day {
  margin: 5% 0 5%;
}

.privacy_sec_ttl {
  font-size: 4vw;
  margin: 7% 0 3%;
  font-weight: 600;
}

.privacy_sub_ttl {
  font-size: 3.5vw;
  margin: 5% 0 3%;
  font-weight: normal;
}

.privacy_txt {
  font-size: 3vw;
  line-height: 2;
  color: #7a7a7a;
}

@media screen and (min-width: 781px) {
  .privacy_header .privacy_header_inner {
    max-width: 1100px;
    width: 90%;
    height: 70px;
  }
  .privacy_header .privacy_header_inner .privacy_header_logo {
    font-size: 25px;
  }
  .privacy_header .privacy_header_inner .privacy_header_btn {
    font-size: 18px;
  }
  .privacy_container {
    max-width: 960px;
    width: 90%;
  }
  .privacy_container .privacy_ttl {
    font-size: 40px;
  }
  .privacy_container .privacy_sec_ttl {
    font-size: 25px;
    margin: 40px 0 10px;
  }
  .privacy_container .privacy_sub_ttl {
    font-size: 20px;
    margin: 40px 0 10px;
  }
  .privacy_container .privacy_sub_ttl_top {
    margin-top: 0;
  }
  .privacy_container .privacy_txt {
    font-size: 16px;
  }
}
.privacy_back {
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
@media screen and (min-width: 781px) {
  .privacy_back {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

.privacy_back_btn {
  display: inline-block;
  padding: 0.8rem 2.5rem;
  border: 2px solid #1d1d1f;
  border-radius: 999px;
  color: #1d1d1f;
  transition: background-color 0.2s, color 0.2s;
}
.privacy_back_btn:hover {
  background-color: #1d1d1f;
  color: #fff;
}

.tokushoho {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 16px;
}
.tokushoho__title {
  padding: 10% 0;
  text-align: center;
  font-size: 6vw;
}
.tokushoho__table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #000;
}
.tokushoho__table tr {
  border-bottom: 1px solid #ddd;
}
.tokushoho__table th,
.tokushoho__table td {
  display: block;
  width: 100%;
  padding: 5% 2%;
  line-height: 1.8;
  color: #000;
  text-align: left;
}
.tokushoho__table th {
  padding-bottom: 0;
  font-weight: 700;
  background: none;
}
.tokushoho__table th br {
  display: none;
}
.tokushoho__table td {
  padding-top: 4px;
}
@media (min-width: 768px) {
  .tokushoho {
    padding: 60px 24px;
  }
  .tokushoho__title {
    font-size: 40px;
  }
  .tokushoho__table th,
  .tokushoho__table td {
    display: table-cell;
    vertical-align: top;
    padding: 16px 20px;
    font-size: 15px;
  }
  .tokushoho__table th {
    width: 200px;
    white-space: nowrap;
    background-color: #f5f5f5;
    border-right: 1px solid #ddd;
    padding-bottom: 16px;
  }
  .tokushoho__table th br {
    display: inline;
  }
}