@charset "UTF-8";
/*==============================
使用フォント
==============================*/
/*==============================
使用カラー
==============================*/
/*==============================
サイト共通
==============================*/
html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  color: #202020;
  background-color: #f5f5f5;
}

.hidden {
  overflow: hidden;
}

img {
  width: 100%;
}

.inner {
  max-width: 100%;
  padding: 0 20px;
}
@media (min-width: 900px) {
  .inner {
    max-width: 1180px;
    margin: 0 auto;
  }
}

.pc-hidden {
  display: block;
}
@media (min-width: 900px) {
  .pc-hidden {
    display: none !important;
  }
}

.sp-hidden {
  display: none;
}
@media (min-width: 900px) {
  .sp-hidden {
    display: block;
  }
}

/*==============================
ボタン
==============================*/
.button {
  width: 100%;
  height: 60px;
  text-align: center;
  color: #fdfdfd;
  background-color: #599cc2;
  border: 2px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-size: 14px;
  font-weight: bold;
  position: relative;
}
@media (min-width: 900px) {
  .button:hover {
    background-color: #fdfdfd;
    color: #599cc2;
    transition: all ease 0.3s;
  }
}
@media (min-width: 900px) {
  .button.fv-button {
    width: 280px;
    height: 48px;
  }
}
.button.is-blue::before {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  background: url(../img/icon_people.png) no-repeat center center/contain;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}
.button.is-white {
  background-color: #fdfdfd;
  color: #202020;
}
@media (min-width: 900px) {
  .button.is-white:hover {
    background-color: #202020;
    color: #fdfdfd;
  }
}
.button.is-white::before {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  background: url(../img/icon_forward_to_inbox.png) no-repeat center center/contain;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}
.button.cta-button {
  height: 48px;
}
.button.cta-button.is-white {
  border: 1px solid currentColor;
}

/*==============================
header
==============================*/
.header {
  background-color: #fdfdfd;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
@media (min-width: 900px) {
  .header-inner {
    padding: 0 30px;
    max-width: 100%;
  }
}

.header-logo-image {
  width: 156px;
}
@media (min-width: 900px) {
  .header-logo-image {
    width: 200px;
  }
}

@media screen and (min-width: 1200px) {
  .header-button {
    display: none;
  }
}

.drawer-button {
  width: 44px;
  height: 44px;
  position: relative;
}
.drawer-button.is-open .drawer-button-bar:nth-of-type(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.drawer-button.is-open .drawer-button-bar:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.drawer-button-bar {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background-color: #202020;
  display: inline-block;
  transition: all ease 0.3s;
}
.drawer-button-bar:nth-of-type(1) {
  top: 18px;
}
.drawer-button-bar:nth-of-type(2) {
  top: 25px;
}

.header-nav {
  display: none;
}
@media screen and (min-width: 1200px) {
  .header-nav {
    display: flex;
    gap: 10px;
    align-items: center;
  }
}

.header-nav-list {
  display: flex;
  gap: 10px;
  align-items: center;
}

.header-nav-link {
  padding: 15px;
  font-size: 14px;
  font-weight: bold;
}
.header-nav-link.header-login {
  padding-left: 15px;
  position: relative;
}
.header-nav-link.header-login::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 32px;
  background-color: #599cc2;
  transform: translateY(-50%);
}

.header-nav-signup {
  width: 200px;
  text-align: center;
  padding: 16px 0;
  background-color: #599cc2;
  color: #fdfdfd;
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  border-radius: 50px;
  border: 1px solid currentColor;
  transition: all ease 0.3s;
}
@media (min-width: 900px) {
  .header-nav-signup:hover {
    color: #599cc2;
    background-color: #fdfdfd;
  }
}

.drawer-contents {
  padding: 80px 0;
  height: 100vh;
  background-color: #fdfdfd;
  position: fixed;
  width: 100%;
  right: -100%;
  z-index: 5;
  top: 0;
  transition: right ease 0.3s;
}
@media screen and (min-width: 1200px) {
  .drawer-contents {
    display: none;
  }
}
.drawer-contents.is-open {
  right: 0;
}

.drawer-nav {
  text-align: center;
  padding: 30px 0;
}

.drawer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.drawer-nav-item {
  padding: 10px 0;
}

.drawer-nav-link {
  font-size: 16px;
}

.drawer-button-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.drawer-button-wrapper .button {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
}

/*==============================
fv
==============================*/
.fv {
  background: url(../img/sp/mv_bg.png) no-repeat center center/cover;
  padding: 50px 0;
  margin-top: 80px;
}
@media (min-width: 900px) {
  .fv {
    padding-top: 121px;
    padding-bottom: 225px;
    background: url(../img/mv_bg.png) no-repeat center center/cover;
  }
}

@media (min-width: 900px) {
  .fv-inner {
    position: relative;
  }
}

.fv-main-text {
  font-size: 28px;
  font-weight: bold;
  color: #fdfdfd;
  line-height: 1;
}
@media (min-width: 900px) {
  .fv-main-text {
    font-size: 52px;
  }
}
.fv-main-text .text-blue {
  font-size: 38px;
  font-weight: bold;
  color: #599cc2;
  line-height: 1;
}
@media (min-width: 900px) {
  .fv-main-text .text-blue {
    font-size: 72px;
  }
}

.fv-sub-text {
  margin-top: 10px;
  color: #fdfdfd;
  line-height: 1.8;
}
@media (min-width: 900px) {
  .fv-sub-text {
    font-size: 18px;
    margin-top: 20px;
  }
}

.fv-icon-wrapper {
  margin-top: 12px;
}
@media (min-width: 900px) {
  .fv-icon-wrapper {
    margin-top: 30px;
  }
}

.fv-concept-image {
  width: 204px;
}
@media (min-width: 900px) {
  .fv-concept-image {
    width: 306px;
  }
}

.fv-button-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 30px;
  margin-top: 12px;
}

@media (min-width: 900px) {
  .fv-form-contents {
    position: absolute;
    top: -70px;
    right: 0;
    padding: 30px 20px;
    background-color: #fdfdfd;
  }
}

.fv-form-fields {
  width: 236px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fv-form-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fv-form-name {
  font-size: 12px;
  line-height: 1.5;
  font-weight: bold;
}

.fv-form-input {
  padding: 10px 12px;
  font-size: 12px;
  border: 1px solid #d9d9d9;
  background-color: #f5f5f5;
  border-radius: 5px;
}
.fv-form-input::-moz-placeholder {
  color: #a1a1a1;
}
.fv-form-input::placeholder {
  color: #a1a1a1;
}

.form-checkbox {
  margin-top: 15px;
  display: flex;
  align-items: center;
}

.checkbox-input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.checkbox-input:checked + .form-checkbox-text::after {
  opacity: 1;
}

.form-checkbox-text {
  position: relative;
  padding-left: 18px;
  font-size: 12px;
  line-height: 1.5;
}
.form-checkbox-text::before, .form-checkbox-text::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.form-checkbox-text::before {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  border: 1px solid #a1a1a1;
}
.form-checkbox-text::after {
  width: 9px;
  height: 9px;
  background: url(../img/check_icon.png) no-repeat center center/contain;
  left: 1px;
  opacity: 0;
}

.form-checkbox-link {
  color: #599cc2;
}

.fv-form-button-wrapper {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fv-form-button-wrapper-text {
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
  width: 236px;
  margin: 0 auto;
  position: relative;
}
.fv-form-button-wrapper-text::before, .fv-form-button-wrapper-text::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 102px;
  background-color: #202020;
  top: 50%;
  transform: translateY(-50%);
}
.fv-form-button-wrapper-text::before {
  left: 0;
}
.fv-form-button-wrapper-text::after {
  right: 0;
}

.fv-button.is-white {
  border: 2px solid currentColor;
}

.fv-button-text {
  width: 228px;
  display: inline-block;
  text-align: center;
  font-weight: bold;
  padding-left: 32px;
}

/*==============================
problem
==============================*/
.problem {
  padding: 33px 0;
  background-color: #fdfdfd;
}
@media (min-width: 900px) {
  .problem {
    max-width: 900px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    margin: -100px auto 0;
  }
}

@media (min-width: 900px) {
  .problem-inner {
    display: flex;
    justify-content: center;
    gap: 84px;
  }
}

.problem-logo img {
  width: 136px;
}

.problem-text-contents {
  text-align: center;
}

.problem-mtext-main {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.8;
}
@media (min-width: 900px) {
  .problem-mtext-main {
    font-size: 24px;
    line-height: 1.5;
  }
}

.problem-list {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 270px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 900px) {
  .problem-list {
    margin-top: 16px;
    gap: 12px;
  }
}

.problem-item {
  display: flex;
  gap: 6px;
  align-items: center;
}

.problem-icon {
  width: 22px;
  height: 22px;
}

/*==============================
reason
==============================*/
.reason {
  padding: 50px 0;
}
@media (min-width: 900px) {
  .reason {
    padding-top: 204px;
  }
}

.reason-inner {
  padding: 0 20px;
}
@media (min-width: 900px) {
  .reason-inner {
    padding: 0;
  }
}

.section-title {
  text-align: center;
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}
@media (min-width: 900px) {
  .section-title {
    margin-bottom: 70px;
  }
}
.section-title.is-white {
  color: #fdfdfd;
}

.section-title-en {
  font-size: 32px;
  line-height: 1;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
}
@media (min-width: 900px) {
  .section-title-en {
    font-size: 62px;
  }
}

.section-title-ja {
  line-height: 1.8;
}
@media (min-width: 900px) {
  .section-title-ja {
    font-size: 18px;
    line-height: 1.5;
  }
}

.reason-list {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (min-width: 900px) {
  .reason-list {
    gap: 144px;
  }
}

@media (min-width: 900px) {
  .reason-item {
    position: relative;
  }
  .reason-item::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 100vh;
    height: 400px;
    background: #fdfdfd;
    z-index: -1;
  }
  .reason-item:nth-of-type(2)::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: initial;
    transform: translateY(-50%);
    max-width: 100%;
    height: 400px;
    background: #fdfdfd;
    z-index: -1;
  }
}

@media (min-width: 900px) {
  .reason-item-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    gap: 43px;
    justify-content: center;
    position: relative;
    align-items: center;
  }
}
@media (min-width: 900px) {
  .reason-item-inner.revers {
    flex-direction: row-reverse;
  }
}

@media (min-width: 900px) {
  .reason-image {
    width: 475px;
  }
}

.reason-text-contents {
  margin-top: 20px;
  line-height: 1.8;
}
@media (min-width: 900px) {
  .reason-text-contents {
    width: 560px;
    padding: 0 50px;
  }
}

.reason-number {
  color: #599cc2;
  font-size: 16px;
  line-height: 1;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  line-height: 1.8;
}
@media (min-width: 900px) {
  .reason-number {
    font-size: 18px;
    line-height: 1.5;
  }
}

.reason-item-title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.8;
  padding-bottom: 20px;
  position: relative;
}
@media (min-width: 900px) {
  .reason-item-title {
    line-height: 1.5;
  }
}
.reason-item-title::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #599cc2;
  bottom: 0;
  left: 0;
}

.reason-text {
  padding-top: 20px;
}

/*==============================
pickup
==============================*/
.pickup {
  padding: 50px 0;
  background: url(../img/sp/pickup_bg.png) no-repeat center center/cover;
}
@media (min-width: 900px) {
  .pickup {
    padding: 100px 0;
  }
}

@media (min-width: 900px) {
  .pickup-contents {
    position: relative;
    margin-left: auto;
    margin-right: auto;
  }
}

.pickup-slider-wrapper {
  padding-bottom: 30px;
}
@media (min-width: 900px) {
  .pickup-slider-wrapper {
    max-width: 966px;
  }
}

@media (min-width: 900px) {
  .pickup-slider {
    max-width: 966px;
  }
}

.pickup-slide-imag img {
  border-radius: 15px 15px 0 0;
}

.pickup-slide-text-contents {
  background-color: #fdfdfd;
  padding: 20px 30px 30px;
  border-radius: 0 0 15px 15px;
}

.pickup-slide-text-title {
  text-align: center;
  line-height: 1.8;
}

.pickup-slide-text {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.8;
}
@media (min-width: 900px) {
  .pickup-slide-text {
    line-height: 1.5;
  }
}

.pickup-pagenation {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.pickup-prev {
  display: none;
}
@media (min-width: 900px) {
  .pickup-prev {
    display: block;
  }
}

.pickup-next {
  display: none;
}
@media (min-width: 900px) {
  .pickup-next {
    display: block;
  }
}

.swiper-pagination-bullet {
  margin: 0 !important;
  background-color: #fdfdfd;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background-color: #599cc2;
}

.pickup-prev,
.pickup-next {
  width: 42px;
  height: 42px;
}
.pickup-prev svg,
.pickup-next svg {
  display: none;
}

.pickup-prev {
  background: url(../img/prev-arrow.png) no-repeat center center/contain;
}

.pickup-next {
  background: url(../img/next-arrow.png) no-repeat center center/contain;
}

/*==============================
cta
==============================*/
.cta {
  padding: 50px 0;
  background-color: #599cc2;
  position: relative;
}
@media (min-width: 900px) {
  .cta {
    padding: 100px 0;
  }
}
.cta::before {
  content: "";
  position: absolute;
  background: url(../img/logo_white_yoko.png) no-repeat center center/cover;
  bottom: 0;
  right: 0;
  width: 430px;
  height: 77px;
  opacity: 0.15;
}
@media (min-width: 900px) {
  .cta::before {
    width: 100%;
    height: 261px;
  }
}

.cta-contents {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 900px) {
  .cta-contents {
    flex-direction: row;
    justify-content: center;
    gap: 30px;
  }
}

.cta-item {
  padding: 20px;
  background-color: #fdfdfd;
  border-radius: 15px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
@media (min-width: 900px) {
  .cta-item {
    width: 45%;
    padding: 50px;
  }
}

.cta-text {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}
@media (min-width: 900px) {
  .cta-text {
    font-size: 18px;
  }
}

.cta-button {
  margin-top: 15px;
}
@media (min-width: 900px) {
  .cta-button {
    max-width: 385px;
    margin-top: 32px;
    margin-left: auto;
    margin-right: auto;
  }
}

.cta-text-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-icon img {
  width: 40px;
}
@media (min-width: 900px) {
  .cta-icon img {
    width: 50px;
  }
}

/*==============================
function
==============================*/
.function {
  padding: 50px 0;
}
@media (min-width: 900px) {
  .function {
    padding: 100px 0;
  }
}

.function-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}
@media (min-width: 900px) {
  .function-wrapper {
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    flex-direction: row;
  }
}

.function-item {
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  padding: 30px;
  background-color: #fdfdfd;
  border-radius: 5px;
}
@media (min-width: 900px) {
  .function-item {
    width: 434px;
  }
}

.function-item-title {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}

.function-item-title-icon img {
  width: 36px;
}

.function-item-title-text {
  font-size: 18px;
  line-height: 1.8;
  font-weight: bold;
}
@media (min-width: 900px) {
  .function-item-title-text {
    font-size: 24px;
    line-height: 1.5;
  }
}

.function-item-text {
  margin: 12px;
  font-size: 14px;
  line-height: 1.8;
}

.price {
  padding: 100px 20px;
  background: #f7f7f7;
}

.price__inner {
  max-width: 1200px;
  margin: 0 auto;
}

/*==============================
price
==============================*/
.price {
  padding: 50px 0;
  background-color: #fdfdfd;
}
@media (min-width: 900px) {
  .price {
    padding: 100px 0;
  }
}

.price-contents {
  position: relative;
}

.price-scroll {
  position: absolute;
  top: -32px;
  right: 20px;
}
.price-scroll img {
  width: 100px;
}
.price-scroll p {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  text-align: center;
  line-height: 1.8;
}
@media (min-width: 900px) {
  .price-scroll {
    display: none;
  }
}

.price-table-wrapper {
  overflow-x: scroll;
  padding-top: 26px;
}

.price-table {
  width: 1116px;
  border-collapse: separate;
  border-spacing: 20px 0;
}

.th-inner {
  margin-left: 5px;
  margin-right: 5px;
}

.price-thead-th {
  padding: 30px 20px;
}
.price-thead-th.is-free {
  border-top: 6px solid #599cc2;
  border-left: 6px solid #599cc2;
  border-right: 6px solid #599cc2;
}
.price-thead-th.is-free .price-button {
  background-color: #599cc2;
  color: #fdfdfd;
}
@media (min-width: 900px) {
  .price-thead-th.is-free .price-button:hover {
    background-color: #fdfdfd;
    color: #599cc2;
  }
}
.price-thead-th.is-personal {
  border-top: 6px solid #a1a1a1;
  border-left: 6px solid #a1a1a1;
  border-right: 6px solid #a1a1a1;
}
.price-thead-th.is-business {
  border-top: 6px solid #dcdcdc;
  border-left: 6px solid #dcdcdc;
  border-right: 6px solid #dcdcdc;
}
.price-thead-th:first-child {
  width: 150px;
}
@media (min-width: 900px) {
  .price-thead-th:first-child {
    width: 376px;
  }
}

.price-thead-th-title {
  display: flex;
  flex-direction: column;
}

.price-thead-th-main {
  font-size: 18px;
  line-height: 1.8;
  font-weight: bold;
}

.price-thead-th-sub {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  line-height: 1.8;
}

.price-thead-th-text {
  margin-top: 16px;
  text-align: left;
  font-size: 14px;
  line-height: 1.8;
  height: 100px;
}

.price-thead-th-price {
  margin-top: 16px;
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: baseline;
  height: 72px;
}

.business-price {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
}

.price-thead-th-price-en {
  font-size: 18px;
}

.price-thead-th-price-num {
  font-size: 48px;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
}

.price-button {
  display: inline-block;
  margin-top: 16px;
  margin-left: auto;
  margin-right: auto;
  width: 180px;
  height: 42px;
  background-color: #fdfdfd;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  color: #599cc2;
  border: 1px solid currentColor;
}
@media (min-width: 900px) {
  .price-button {
    transition: all ease 0.3s;
  }
  .price-button:hover {
    background: #599cc2;
    color: #fdfdfd;
  }
}

.price-tbody-tr:nth-child(odd) th,
.price-tbody-tr:nth-child(odd) td {
  background-color: #f5f5f5;
}

.price-tbody-th {
  padding: 5px 0;
  text-align: center;
  font-size: 14px;
  line-height: 1.8;
}

.price-tbody-td {
  text-align: center;
  width: 220px;
  vertical-align: middle;
}
.price-tbody-td img {
  width: 32px;
}
.price-tbody-td.is-free {
  border-left: 6px solid #599cc2;
  border-right: 6px solid #599cc2;
}
.price-tbody-td.is-free.is-last {
  border-bottom: 6px solid #599cc2;
}
.price-tbody-td.is-personal {
  border-left: 6px solid #a1a1a1;
  border-right: 6px solid #a1a1a1;
}
.price-tbody-td.is-personal.is-last {
  border-bottom: 6px solid #a1a1a1;
}
.price-tbody-td.is-business {
  border-left: 6px solid #dcdcdc;
  border-right: 6px solid #dcdcdc;
}
.price-tbody-td.is-business.is-last {
  border-bottom: 6px solid #dcdcdc;
}

.price-business {
  margin-top: 30px;
}
@media (min-width: 900px) {
  .price-business {
    margin-top: 70px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
  }
}

.price-business-title {
  font-size: 16px;
  font-weight: bold;
  border-bottom: 1px solid #599cc2;
}

.price-business-text {
  margin-top: 10px;
}
.price-business-text .text-blue {
  color: #599cc2;
  font-weight: bold;
}

/*==============================
question
==============================*/
.question {
  padding: 50px 0;
}
@media (min-width: 900px) {
  .question {
    padding: 100px 0;
  }
}

@media (min-width: 900px) {
  .question-contents {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
}

.question-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 900px) {
  .question-list {
    gap: 24px;
  }
}

.question-item {
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
}

.question-q {
  padding: 20px 50px 20px 20px;
  display: flex;
  gap: 5px;
  position: relative;
}
@media (min-width: 900px) {
  .question-q {
    padding: 30px 50px 12px 50px;
  }
  .question-q::after {
    content: "";
    position: absolute;
    width: 90%;
    height: 2px;
    background-color: #599cc2;
    left: 50px;
    bottom: 0;
  }
}

.question-q-icon,
.question-a-icon {
  font-size: 16px;
  color: #599cc2;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
}
@media (min-width: 900px) {
  .question-q-icon,
  .question-a-icon {
    font-size: 24px;
  }
}

.question-q-text {
  text-align: left;
  font-weight: bold;
}

.question-a {
  padding: 0px 20px 20px 20px;
  display: flex;
  gap: 5px;
  display: none;
}
@media (min-width: 900px) {
  .question-a {
    display: flex;
    padding: 12px 50px 30px 50px;
    align-items: center;
  }
}

.question-item-icon {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateX(-50%);
}
.question-item-icon.is-open .question-item-icon-bar:nth-of-type(2) {
  transform: rotate(0);
}
@media (min-width: 900px) {
  .question-item-icon {
    display: none;
  }
}

.question-item-icon-bar {
  width: 24px;
  height: 2px;
  background-color: #599cc2;
  position: absolute;
  transition: transform ease 0.3s;
}
.question-item-icon-bar:nth-of-type(2) {
  transform: rotate(90deg);
}

/*==============================
vision
==============================*/
.vision {
  padding: 50px 0;
  background: url(../img/sp/vision_background.jpg) no-repeat center center/cover;
}
@media (min-width: 900px) {
  .vision {
    padding: 100px 0;
    background: url(../img/vision_background.png) no-repeat center center/cover;
  }
}

.vision-list {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (min-width: 900px) {
  .vision-list {
    gap: 120px;
  }
}

.vision-item {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 900px) {
  .vision-item {
    flex-direction: row-reverse;
    gap: 50px;
    align-items: center;
    max-width: 1020px;
    margin-left: auto;
    margin-right: auto;
  }
  .vision-item:nth-child(2n) {
    flex-direction: row;
  }
}

@media (min-width: 900px) {
  .vision-item-image {
    width: 39.2156862745%;
  }
}

.vision-item-text-contents {
  flex: 1;
}

.vision-item-title {
  font-size: 24px;
  font-weight: bold;
  color: #599cc2;
}
@media (min-width: 900px) {
  .vision-item-title {
    font-size: 32px;
  }
}

.vision-item-text {
  margin-top: 20px;
}
.vision-item-text + .vision-item-text {
  margin-top: 15px;
}
@media (min-width: 900px) {
  .vision-item-text + .vision-item-text {
    margin-top: 20px;
  }
}
@media (min-width: 900px) {
  .vision-item-text {
    margin-top: 30px;
  }
}

/*==============================
company
==============================*/
.company {
  padding: 50px 0;
  background: url(../img/sp/company-bg.png) no-repeat center center/cover;
  color: #fdfdfd;
}
@media (min-width: 900px) {
  .company {
    padding: 100px 0;
    background: url(../img/company-bg.png) no-repeat center center/cover;
  }
}

@media (min-width: 900px) {
  .company-contents {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 900px) {
  .company-table {
    width: 100%;
  }
}
.company-table tr {
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #fdfdfd;
}
@media (min-width: 900px) {
  .company-table tr {
    flex-direction: row;
  }
}
.company-table tr th {
  padding: 10px;
  text-align: left;
  font-size: 18px;
  font-weight: bold;
}
@media (min-width: 900px) {
  .company-table tr th {
    width: 200px;
    text-align: center;
  }
}
.company-table tr td {
  padding: 10px;
}

.company-block dl {
  display: flex;
}
.company-block dl dd {
  width: 150px;
  padding: 5px 10px;
}

/*==============================
contact
==============================*/
.contact {
  padding: 50px 0;
}
@media (min-width: 900px) {
  .contact {
    padding: 100px 0;
  }
}

@media (min-width: 900px) {
  .contact-inner {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 900px) {
  .contact-text-wrapper {
    width: 700px;
    margin: 0 auto;
  }
}

@media (min-width: 900px) {
  .contact-text {
    text-align: left;
  }
}

.contact-form {
  margin-top: 30px;
}
@media (min-width: 900px) {
  .contact-form {
    margin-top: 50px;
  }
}

.contact-form-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 900px) {
  .contact-form-fields {
    gap: 32px;
  }
}

.contact-form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form-label {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
}

.contact-form-label-required {
  font-size: 14px;
  color: #fdfdfd;
  background-color: #599cc2;
  padding: 5px 10px;
  font-weight: bold;
  line-height: 1;
}

.contact-form-label-text {
  font-size: 18px;
  font-weight: bold;
}

.input-text,
.input-select.business-price,
.input-textarea {
  width: 100%;
  padding: 8px 20px;
  border: 1px solid #d9d9d9;
  background-color: #fdfdfd;
}
.input-text::-moz-placeholder, .input-select.business-price::-moz-placeholder, .input-textarea::-moz-placeholder {
  color: #a1a1a1;
}
.input-text::placeholder,
.input-select.business-price::placeholder,
.input-textarea::placeholder {
  color: #a1a1a1;
}

.input-select {
  padding: 8px 20px;
  vertical-align: top;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fdfdfd url(../img/select-arrow.png) no-repeat center right 0/46px 46px;
  width: 100%;
  border: 1px solid #d9d9d9;
}

.input-textarea {
  height: 92px;
}

.contactform-check {
  margin-top: 30px;
}
@media (min-width: 900px) {
  .contactform-check {
    width: 700px;
    margin: 0 auto;
    margin-top: 50px;
  }
}

.contactform-checkbox {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
@media (min-width: 900px) {
  .contactform-checkbox {
    margin-top: 20px;
  }
}

.form-input-checkbox {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-input-checkbox:checked + .input-checkbox-text::after {
  opacity: 1;
}

.input-checkbox-text {
  position: relative;
  padding-left: 25px;
}
.input-checkbox-text::before, .input-checkbox-text::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.input-checkbox-text::before {
  width: 15px;
  height: 15px;
  border-radius: 2px;
  border: 1px solid #a1a1a1;
}
.input-checkbox-text::after {
  width: 13px;
  height: 13px;
  background: url(../img/check_icon.png) no-repeat center center/contain;
  left: 1px;
  opacity: 0;
}

.contact-form-button {
  text-align: center;
  margin-top: 30px;
}
@media (min-width: 900px) {
  .contact-form-button {
    margin-top: 50px;
  }
}

.submit-button {
  display: flex;
  max-width: 390px;
  height: 60px;
  color: #fdfdfd;
  background-color: #599cc2;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid currentColor;
}
@media (min-width: 900px) {
  .submit-button {
    max-width: 326px;
    transition: all ease 0.3s;
  }
  .submit-button:hover {
    background-color: #fdfdfd;
    color: #599cc2;
  }
}

/*==============================
footer
==============================*/
.footer {
  padding: 30px 0;
  color: #fdfdfd;
  background-color: #202020;
}

@media (min-width: 900px) {
  .footer-inner {
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    align-items: center;
  }
}

.footer-left-wrapper {
  margin-top: 20px;
}
@media (min-width: 900px) {
  .footer-left-wrapper {
    display: flex;
    flex-direction: row-reverse;
    gap: 10px;
  }
}

.footer-nav-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 0;
}
@media (min-width: 900px) {
  .footer-nav-list {
    justify-content: flex-start;
  }
}

.footer-link {
  padding: 5px 15px;
  font-size: 14px;
  font-weight: bold;
}
@media (min-width: 900px) {
  .footer-link {
    padding: 15px;
  }
}

.footer-copyright {
  margin-top: 10px;
  text-align: center;
}
@media (min-width: 900px) {
  .footer-copyright {
    margin-top: 0;
  }
}

.copyright {
  font-size: 14px;
  font-weight: bold;
}
@media (min-width: 900px) {
  .copyright {
    padding: 17px 15px;
    font-size: 12px;
  }
}

.footer-text {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.5;
}
@media (min-width: 900px) {
  .footer-text {
    text-align: center;
  }
}

.footer-logo img {
  width: 172px;
}/*# sourceMappingURL=style.css.map */