@charset "UTF-8";
/*----------------------------------------
 * 共通パーツ
 *----------------------------------------*/
:root {
  --sans-serif: "Noto Sans JP", sans-serif;
  --poppins: "Poppins", sans-serif;
  --Inter: "Inter", sans-serif;
  --main-font: 500 clamp(1.5rem, 4vw, 1.6rem) / 1.6 var(--sans-serif);
  --sectionTitle-font: 700 clamp(2.8rem, 7.46vw, 5.4rem) var(--sans-serif);
  --font-10px: clamp(1rem, 2.66vw, 1.2rem) var(--sans-serif);
  --font-11px: clamp(1.1rem, 2.93vw, 1.4rem) var(--sans-serif);
  --font-12px: clamp(1.2rem, 3.2vw, 2.4rem) var(--sans-serif);
  --font-13px: clamp(1.3rem, 3.46vw, 2.4rem) var(--sans-serif);
  --font-13px-userVoice: clamp(1.3rem, 3.46vw, 1.4rem) var(--sans-serif);
  --font-14px: clamp(1.4rem, 3.73vw, 1.8rem) var(--sans-serif);
  --font-15px: clamp(1.5rem, 4vw, 2rem) var(--sans-serif);
  --font-title-subText: clamp(1.5rem, 4vw, 1.8rem) var(--sans-serif);
  --font-16px: clamp(1.6rem, 4.26vw, 2.4rem) var(--poppins);
  --font-20px: clamp(2rem, 5.33vw, 2.6rem) var(--sans-serif);
  --font-24px: clamp(2.4rem, 6.4vw, 3.2rem) var(--sans-serif);
  --font-26px: clamp(2.6rem, 6.93vw, 3.6rem) var(--sans-serif);
  --font-28px: clamp(2.8rem, 7.46vw, 4.6rem) var(--sans-serif);
  --font-32px: clamp(3.2rem, 8.5vw, 3.8rem) var(--poppins);
  --font-36px: clamp(3.6rem, 9.6vw, 6rem) var(--poppins);
  --black: #1a1a1a;
  --gray-800: #515151;
  --gray-700: #717171;
  --gray-600: #a4a4a4;
  --gray-500: #dddddd;
  --gray-400: #ededed;
  --gray-300: #f9f9f9;
  --white: #ffffff;
  --red-500: #ec0000;
  --yellow-300: #fff848;
  --yellow-500: #e9ed00;
  --blue-500: #007bc0;
  --blue-300: #abd6ef;
  --skew: skewX(-15.16deg);
}

/* --------fontまとめ-------- */
html {
  font-size: 10px;
}
body {
  font: var(--main-font);
  font-weight: 500;
  color: var(--black);
  width: 100%;
  min-width: 375px;
}
.section-title {
  font: var(--sectionTitle-font);
  color: #0088d4;
  text-align: center;
  letter-spacing: 0.54px;
  font-style: italic;
}
.section-title-sub {
  font: var(--font-14px);
  font-weight: 700;
  color: var(--gray-500);
  display: block;
  letter-spacing: 0.54px;
}

/* --------inner-------- */
.inner {
  min-width: 343px;
  width: 91.4%;
  margin: 0 auto;
  max-width: 1120px;
}

/* --------共通パーツ-------- */
a {
  width: 100%;
  cursor: pointer;
}
img {
  max-width: 100%;
  height: auto;
}
.br-sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .br-sp {
    display: none;
  }
}
.sp-only {
  display: block;
}
@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}
.pc-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-only {
    display: block;
  }
}
.block {
  display: block;
  width: fit-content;
}
/* --------ctaパーツ-------- */
.cta {
  min-width: 343px;
  max-width: 736px;
  width: 91.4%;
  margin: 4.8rem auto;
  border-radius: 8px;
  background: var(--blue-500);
  padding: 1.6rem 2.4rem;
  color: var(--white);
  text-align: center;
}
.cta-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
}
.cta-btn.bottom {
  position: sticky;
  bottom: 0;
  height: 54px;
  background: var(--gray-300, #f9f9f9);
  z-index: 999;
}
.cta-btn a {
  max-width: 163px;
  width: 100%;
  height: auto;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.4rem;
  transition: all 0.2s;
}
.cta-btn .line {
  color: var(--white);
  background: #00b900;
}
.cta-btn .line:hover {
  background: #00a300;
}
.cta-btn .contact {
  color: var(--black);
  background: var(--yellow-500);
}
.cta-btn .contact:hover {
  background: #d7da04;
}
.cta-btn .contact a {
  max-width: 132px;
}
.cta .cta-btn {
  margin-top: 1.6rem;
  font-weight: 700;
}
.cta .cta-btn .line {
  color: #00b900;
  background: var(--white);
}
.cta .cta-btn .line:hover {
  background: #d5fad5;
}
.cta-heading-txt {
  font: var(--font-15px);
  line-height: 1;
  font-weight: 700;
}
.cta-heading-txt span {
  font: var(--font-32px);
  font-weight: 600;
  letter-spacing: -0.152rem;
}
.cta-heading {
  display: inline-block;
  position: relative;
}
.cta-bubble {
  background: url(../img/bubble.svg) no-repeat center center/cover;
  display: grid;
  place-content: center;
  width: 38px;
  height: 38px;
  margin-right: 0.8rem;
  font-size: 1rem;
  color: var(--black);
  font-weight: 700;
  line-height: 1.31;
  text-align: center;
  position: absolute;
  left: -4.5rem;
  top: 0;
}
.cta-txt {
  font: var(--font-26px);
  font-weight: 700;
}
.cta-btn.header-btn a {
  width: 100%;
  padding: 1rem 1.6rem;
}
.cta-btn.header-btn {
  gap: 3.2rem;
}
@media screen and (min-width: 768px) {
  .cta {
    width: 51.2%;
    min-width: 590px;
    margin: 9.6rem auto;
    padding: 4rem;
    border-radius: 2.4rem;
  }
  .cta-bubble {
    font-size: 1.4rem;
    width: 56px;
    height: 57px;
    left: -6.5rem;
    transform: translateY(-25%);
  }
  .cta-btn a {
    max-width: 163px;
  }
  .cta-btn.bottom {
    display: none;
  }
}
/*----------------------------------------
 * ヘッダー
 *----------------------------------------*/
#header {
  padding: 0.8rem 3.8%;
}
.headerWrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 24px;
}
.header-logo {
  width: 26.76%;
}

@media screen and (min-width: 768px) {
  #header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    background: var(--white);
  }
  .header-nav {
    width: 100%;
  }
  .header-nav .cta-btn {
    justify-content: flex-end;
  }
  .headerWrap {
    justify-content: space-between;
    height: 60px;
  }
}
/*----------------------------------------
 * section-fv
 *----------------------------------------*/
#fv {
  width: 100%;
  padding: 2.4rem 0;
  overflow-x: hidden;
  position: relative;
  scrollbar-width: none;
}
#fv::-webkit-scrollbar {
  display: none;
}
.fvWrapper {
  padding-left: 2.4rem;
  display: flex;
  flex-direction: column;
}
.fv-img {
  margin-top: 2.4rem;
  text-align: right;
}
.fv-img img {
  border-radius: 24px 0 0 0;
}
.fv-textWrap {
  padding-left: 1.6rem;
}
.fv-textWrap p {
  color: var(--blue-500);
  font-size: clamp(3.6rem, 9.6vw, 6.8rem);
  font-weight: 700;
  line-height: 1.3;
  margin-top: 0.8rem;
}
.fv-textWrap span.breakthrough {
  display: inline-block;
  padding: 2px 4px;
  font: var(--font-13px);
  font-weight: 700;
  letter-spacing: -0.26px;
  font-weight: 700;
  text-align: center;
  background: var(--yellow-500);
  transform: var(--skew);
  border-radius: 2px;
  margin-left: 0.8rem;
}
.line-balloon {
  position: relative;
  display: inline-block;
  background-color: #fff;
  border-bottom: solid 1px var(--blue-500);
  max-width: 100%;
  text-align: center;
  color: var(--blue-500, #007bc0);
}
.fv-balloon {
  margin-left: 0.8rem;
}
.line-balloon:before,
.line-balloon:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.line-balloon:before {
  border: solid 6px transparent;
  border-top: solid 6px var(--blue-500);
}
.line-balloon:after {
  border: solid 12px transparent;
  border-top: solid 13px #fff;
  margin-top: -8px;
}
.fv-balloon p {
  margin: 0;
  padding: 0;
  font: var(--font-13px);
  font-weight: 700;
}
.fv-balloon span.strong {
  font-size: clamp(3.2rem, 8.53vw, 6.32rem);
  letter-spacing: -0.04em;
  padding: 0 0.07em;
}
.fv-decoration span.top {
  display: block;
}
.fv-decoration span.top::before,
.fv-decoration span.top::after {
  display: inline-block;
  transform: rotate(-22.083deg);
  position: absolute;
  width: 80px;
  height: 17.4px;
  border-radius: 999px;
  content: "";
  z-index: 10;
}
.fv-decoration span.top::before {
  top: 7%;
  right: -20px;
  background: var(--gray-400);
}
.fv-decoration span.top::after {
  background: var(--yellow-500);
  top: 11%;
  right: -40px;
}
#fv::before,
#fv::after {
  display: inline-block;
  transform: rotate(-21.174deg);
  position: absolute;
  width: 80px;
  height: 17.4px;
  border-radius: 999px;
  content: "";
  z-index: 1;
}
#fv::before {
  background: var(--gray-400);
  bottom: 19%;
  left: -30px;
}
#fv::after {
  background: var(--yellow-500);
  bottom: 24%;
  left: -46px;
}
.fv-text {
  display: flex;
  flex-direction: column;
}
.fv-text span {
  font-style: italic;
}

@media screen and (min-width: 768px) {
  #fv {
    padding-top: 10rem;
  }
  .fv-textWrap {
    margin-right: -30%;
  }
}
@media screen and (min-width: 960px) {
  .line-balloon {
    border-bottom: solid 2px var(--blue-500);
  }
  .line-balloon:before {
    border: solid 14px transparent;
    border-top: solid 11px var(--blue-500);
  }
  .line-balloon:after {
    border: solid 14px transparent;
    border-top: solid 11px #fff;
    margin-top: -3px;
  }
  #fv {
    margin-top: 7.6rem;
    padding-top: 0;
    padding-bottom: 4rem;
  }
  .fv-img img {
    border-radius: 0 0 15px 72px;
  }
  .fvWrapper {
    flex-direction: row;
    justify-content: center;
    padding-left: 0;
  }
  .fv-textWrap {
    margin-right: -30%;
  }
  .fv-textWrap span.breakthrough {
    margin-left: 2.4rem;
    padding: 0.4rem 1.6rem;
  }
  .fv-img {
    margin-top: 0;
    position: relative;
    z-index: 2;
  }
  .fv-img::before {
    content: "";
    display: block;
    width: 22rem;
    height: 15rem;
    border-radius: 0 0 0 8px;
    background: var(--blue-500);
    position: absolute;
    top: 0;
    left: -10%;
    z-index: -1;
  }
  .fv-img::after {
    content: "";
    display: block;
    width: 22rem;
    height: 25rem;
    border-radius: 40px 40px 8px 40px;
    background: var(--blue-500);
    position: absolute;
    bottom: -5%;
    right: -10%;
    z-index: -1;
  }
  .fv-textWrap {
    margin-top: 14.16rem;
    z-index: 3;
    padding-left: 0;
  }
  .fv-textWrap p {
    margin-top: 1.6rem;
  }
  .fv-text span {
    background: var(--white);
    padding: 0px 1.6rem;
    border-radius: 6px;
  }
  .fv-balloon {
    background: var(--white);
    padding-left: 1.6rem;
    padding-right: 1.6rem;
    border-radius: 6px;
    margin-left: 2.4rem;
  }
}
@media screen and (min-width: 1120px) {
  .fv-textWrap {
    margin-right: -12%;
  }
  .fv-decoration span.top::before,
  .fv-decoration span.top::after {
    width: 240px;
    height: 33.1px;
  }
  .fv-decoration span.top::before {
    top: 38%;
    right: -12%;
    background: var(--gray-300);
  }
  .fv-decoration span.top::after {
    top: 51%;
    right: -11.5%;
  }
  #fv::before,
  #fv::after {
    width: 240px;
    height: 33.1px;
  }
  #fv::before {
    bottom: 25%;
    left: -11%;
  }
  #fv::after {
    bottom: 12%;
    left: -11%;
  }
}
@media screen and (min-width: 1280px) {
  .fv-textWrap {
    margin-right: -5%;
  }
}
@media screen and (min-width: 1441px) {
  .fv-decoration span.top::before {
    top: 38%;
    right: -9%;
    background: var(--gray-300);
  }
  .fv-decoration span.top::after {
    top: 51%;
    right: -8.5%;
  }
  #fv::before {
    bottom: 13%;
    left: -8.5%;
  }
  #fv::after {
    bottom: 0;
    left: -8.5%;
  }
}
/*----------------------------------------
 * section-- User voice 
 *----------------------------------------*/
.section-txt {
  font: var(--font-15px);
  font-weight: 700;
  color: var(--black);
  text-align: center;
  margin-top: 1.2rem;
}
.section-txt span {
  text-decoration: underline;
  text-decoration-thickness: 5px;
  text-decoration-color: var(--yellow-300);
  text-underline-offset: -0.2em;
  text-decoration-skip-ink: none;
}

/*--- swiper ---*/
#user-voice .swiper-container {
  margin-top: 2.4rem;
  padding-bottom: 4.8rem;
}
.swiper-container {
  position: relative;
}
.swiper {
  position: relative;
}
.swiper-wrapper {
  position: relative;
  display: flex;
}
#user-voice .swiper-slide {
  padding-top: 4.25rem;
  width: 76%;
  display: flex;
  height: auto;
}
#user-voice .swiper-nav {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.2rem;
}
#user-voice .swiper-nav .swiper-button-prev_origin {
  width: 24px;
  height: 24px;
  background: var(--blue-500);
  border-radius: 50%;
  transform: rotate(180deg);
  display: grid;
  place-content: center;
}
#user-voice .swiper-nav .swiper-button-stop {
  width: 24px;
  height: 24px;
  background: var(--white);
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.16);
  border-radius: 50%;
  position: relative;
}
#user-voice .swiper-nav .swiper-button-stop::before,
.swiper-nav .swiper-button-stop::after {
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 0.1em;
  height: 0.5em;
  background: var(--blue-500);
  content: "";
}
#user-voice .swiper-nav .swiper-button-stop::before {
  left: 40%;
}
#user-voice .swiper-nav .swiper-button-stop::after {
  left: 60%;
}
#user-voice .swiper-nav .swiper-button-play {
  width: 24px;
  height: 24px;
  background: var(--white);
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.16);
  border-radius: 50%;
  position: relative;
}
#user-voice .swiper-nav .swiper-button-play::after {
  position: absolute;
  width: 0;
  height: 0;
  top: 50%;
  left: 40%;
  transform: translateY(-50%);
  border: 0.3em solid transparent;
  border-left: 0.5em solid var(--blue-500);
  box-sizing: border-box;
  content: "";
}
#user-voice .swiper-nav .swiper-button-next_origin {
  width: 24px;
  height: 24px;
  background: var(--blue-500);
  border-radius: 50%;
  display: grid;
  place-content: center;
}

/* swiper-card-layout */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-header {
  position: absolute;
  top: -4.25rem;
  left: 50%;
  transform: translateX(-50%);
}
.card-header img {
  border-radius: 50%;
  width: 85px;
  height: 85px;
}
.card-body {
  background: var(--blue-500);
  border-radius: 17.3px;
  padding: 6rem 1.6rem 1.6rem;
  flex: 1;
}
.user-voice_tagWrap {
  display: flex;
  column-gap: 0.8rem;
  justify-content: center;
}
.user-voice_tagWrap span {
  background: var(--white);
  padding: 2px;
  transform: var(--skew);
  border-radius: 2px;
  color: var(--blue-500);
  font: var(--font-13px-userVoice);
  font-weight: 700;
}
.salary-range {
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  padding-bottom: 0.7rem;
}
.salary-before {
  color: var(--blue-300);
  font: var(--font-12px);
  font-weight: 700;
}
.salary-before_txt {
  display: block;
  font: var(--font-11px);
}
.salary-before_num {
  font: var(--font-36px);
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  display: inline-block;
  vertical-align: bottom;
  letter-spacing: -0.1rem;
}
.salary-after {
  color: var(--white);
  font: var(--font-12px);
}
.salary-after div {
  border-bottom: 4px solid var(--yellow-300);
}
.salary-after_txt {
  display: block;
  font: var(--font-11px);
}
.salary-after_num {
  font: var(--font-36px);
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  vertical-align: bottom;
  display: inline-block;
  letter-spacing: -0.1rem;
}
.user-voice_industry {
  margin: 1.6rem auto 0;
  text-align: left;
  padding: 0.1rem 0.325rem;
  color: var(--blue-500);
  font: var(--font-13px-userVoice);
  font-weight: 700;
  background: var(--white);
  transform: var(--skew);
  border-radius: 2.17px;
  width: fit-content;
}
.user-voice_txtWrap {
  margin-top: 1.6rem;
  flex: 1;
}
.user-voice_title {
  color: var(--white);
  font: var(--font-20px);
  font-weight: 700;
}
.user-voice_txt {
  color: var(--white);
  margin-top: 1.6rem;
}
.user-voice_txt p + p {
  margin-top: 0.8rem;
}
@media screen and (min-width: 768px) {
  #user-voice .swiper-container {
    margin-top: 3.2rem;
    padding-bottom: 7.2rem;
  }
  #user-voice .swiper-slide {
    padding-top: 6.4rem;
  }
  #user-voice .swiper-nav {
    height: 40px;
  }
  #user-voice .swiper-nav .swiper-button-prev_origin {
    width: 40px;
    height: 40px;
  }
  #user-voice .swiper-nav .swiper-button-prev_origin img {
    width: 20px;
    height: 20px;
  }
  #user-voice .swiper-nav .swiper-button-play {
    width: 40px;
    height: 40px;
  }
  #user-voice .swiper-nav .swiper-button-play::after {
    transform: translateY(-50%);
    border: 0.5em solid transparent;
    border-left: 0.7em solid var(--blue-500);
  }
  #user-voice .swiper-nav .swiper-button-stop {
    width: 40px;
    height: 40px;
  }
  #user-voice .swiper-nav .swiper-button-stop::before,
  .swiper-nav .swiper-button-stop::after {
    height: 0.7em;
  }
  #user-voice .swiper-nav .swiper-button-next_origin {
    width: 40px;
    height: 40px;
  }
  #user-voice .swiper-nav .swiper-button-next_origin img {
    width: 20px;
    height: 20px;
  }
  .card-body {
    padding: 8.8rem 4rem 6rem;
  }
  .card-header {
    top: -6.4rem;
  }
  .card-header img {
    width: 128px;
    height: 128px;
  }
  .salary-range {
    gap: 2.4rem;
  }
  .user-voice_industry {
    margin: 3.2rem auto 0 0;
  }
  .user-voice_tagWrap {
    gap: 1.6rem;
  }
  .user-voice_tagWrap span {
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
  }
}
/*----------------------------------------
 * section-- works 
 *----------------------------------------*/
#works {
  padding-top: 4.8rem;
  text-align: center;
  width: 100%;
}
.works_swiper {
  margin: 1rem 0;
}
.works_swiper .swiper-wrapper {
  transition-timing-function: linear;
  display: flex;
  gap: 2rem;
  height: auto;
  width: 100%;
}
.works_swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: auto;
}
.works_swiper .swiper-slide img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
}
.works-balloon {
  font: clamp(1.3rem, 3.46vw, 1.8rem) var(--sans-serif);
  font-weight: 700;
  color: var(--blue-500);
}
.works-balloon p {
  padding-bottom: 0.8rem;
  font: clamp(2rem, 5.33vw, 2.6rem) var(--sans-serif);
  font-weight: 700;
}
.works-txt {
  font: var(--font-18px);
  color: var(--gray-600);
  font-weight: 700;
  position: relative;
  vertical-align: middle;
  width: auto;
  padding-left: 2.2rem;
  display: inline-block;
}
.works-txt::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.5em;
  transform: translateY(-50%);
  left: 0;
  width: 1.4rem;
  height: 0.7rem;
  border-left: 2px solid var(--gray-600);
  border-bottom: 2px solid var(--gray-600);
  transform: rotate(-45deg);
}
@media screen and (min-width: 768px) {
  #works {
    padding-top: 9.6rem;
  }
}

/*----------------------------------------
 * section-- problem 
 *----------------------------------------*/
#problem {
  padding-top: 2.4rem;
  text-align: center;
  background-color: #77b3d4;
  color: var(--white);
}
#problem h2 {
  font: var(--font-28px);
  font-weight: 700;
  line-height: 1.3;
}
#problem p {
  margin-top: 1.6rem;
  font: var(--font-title-subText);
  font-weight: 500;
}
#problem img {
  margin-top: 2.4rem;
  width: 95.46%;
}
@media screen and (min-width: 768px) {
  #problem {
    padding-top: 4.8rem;
  }
  #problem img {
    width: 57.63%;
    margin-top: 4.8rem;
  }
}
/*----------------------------------------
 * section-- support 
 *----------------------------------------*/
#support {
  padding: 4.8rem 0;
  text-align: center;
}
#support .flex-wrap {
  display: flex;
  flex-direction: column;
}
#support h2 {
  font: clamp(3.2rem, 8.5vw, 5.8rem) var(--sans-serif);
  font-weight: 700;
  font-style: italic;
  color: var(--blue-500);
  line-height: 1.4;
  text-align: left;
}
#support h2 .under-line {
  font-weight: 700;
  text-decoration: underline; /* 下線 */
  text-decoration-thickness: 1px; /* 線の太さ */
  text-underline-offset: 0.1em; /* 線の位置。テキストに重なるようにやや上部にする */
  text-decoration-skip-ink: none; /* 下線と文字列が重なる部分でも下線が省略されない（線が途切れない） */
}
#support img {
  border-radius: 8px;
  margin-top: 1.6rem;
}
#support .support-layout {
  display: block;
  white-space: nowrap;
  font: clamp(3rem, 8vw, 6.4rem) var(--poppins);
  font-style: italic;
  font-weight: 400;
  color: rgba(0, 0, 0, 0);
  -webkit-text-stroke: 1px rgba(233, 237, 0, 0.6);
  text-align: center;
}
@media screen and (min-width: 1280px) {
  #support {
    padding: 9.6rem 0;
  }
  #support .flex-wrap {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  #support img {
    border-radius: 16px;
    margin-top: 0;
  }
  #support picture {
    width: 51.45%;
  }
  #support h2 {
    margin-right: -1.6em;
    z-index: 1;
  }
  #support h2 .block {
    background: var(--white);
    border-radius: 4px;
    padding: 0px 1.6rem;
  }
  #support .support-layout {
    text-align: right;
  }
}
@media screen and (min-width: 1441px) {
  #support h2 {
    margin-right: 0;
    width: 60%;
  }
}
/*----------------------------------------
 * section-- Service 
 *----------------------------------------*/
#Service {
  background: var(--blue-500);
  padding: 2.4rem 0;
  position: relative;
}
#Service::before {
  content: "";
  background: url(../img/service-decoration.svg) no-repeat center center/contain;
  width: 18.26%;
  height: 10%;
  position: absolute;
  top: 2%;
  left: -6%;
}
#Service .section-title {
  color: var(--white);
}
.Service-contentWrap {
  margin-top: 1.6rem;
  padding: 2.4rem 1.6rem;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  background: var(--white);
  border-radius: 16px;
}
.Service-contentWrap .note {
  font-size: 14px;
  color: var(--gray-700);
  display: inline-block;
}
.Service-contentWrap h3 span {
  background: var(--blue-500);
  border-radius: 4px;
  padding: 0px 0.8rem;
  color: var(--white);
  font: var(--font-24px);
  font-weight: 500;
}
.Service-contentWrap h3 span + span {
  margin-top: 0.4rem;
}
.Service-contentWrap p {
  font-weight: 500;
}
.Service-contentWrap img {
  margin-top: 2.4rem;
  margin-bottom: 1.2rem;
}
.Service-content {
  border-bottom: 2px solid var(--blue-500);
}
.Service-txtWrapper {
  margin: 1.6rem 0 2.4rem;
}
.Service-txtWrapper p + p {
  margin-top: 0.8rem;
}
.Service-txtWrapper span {
  display: block;
  margin-top: 0.8rem;
  font-size: 1.2rem;
  color: var(--gray-700);
  font-weight: 500;
}

.Service-tagWrap {
  display: flex;
  gap: 1.8rem;
}
.Service-tagWrap span {
  display: inline-block;
  color: var(--blue-500);
  font: clamp(1.3rem, 3.46vw, 1.4rem) var(--sans-serif);
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  #Service::before {
    display: none;
  }
  .Service-contentWrap picture {
    text-align: center;
  }
  .Service-contentWrap img {
    width: 80%;
  }
}
@media screen and (min-width: 960px) {
  #Service {
    padding: 4.8rem 0;
  }
  .Service-contentWrap {
    margin-top: 3.2rem;
    padding: 2.4rem 0;
    flex-direction: row-reverse;
  }
  .Service-content {
    border-bottom: none;
    border-right: 2px solid var(--blue-500);
    flex: 1;
    padding-left: 2.4rem;
    padding-right: 2.4rem;
  }
  .Service-txtWrapper {
    margin: 2.4rem 0;
  }
  .Service-contentWrap img {
    margin-top: 0;
    width: 100%;
  }
  .Service-contentWrap picture {
    padding-left: 2.4rem;
    width: 52%;
  }
  .Service-tagWrap {
    margin-top: 2.4rem;
  }
}
@media screen and (min-width: 1280px) {
  .Service-content {
    padding: 3.2rem 4.8rem 0;
  }
}
/*----------------------------------------
 * section-- Points 
 *----------------------------------------*/
#Points {
  padding-bottom: 4.8rem;
}
.point-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4.8rem;
  margin-top: 1.6rem;
}
.point {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-width: 488px;
}
.point figure {
  text-align: center;
  margin-bottom: 1rem;
}
.point img {
  border-radius: 8px;
}
.point h3 {
  font: clamp(2rem, 5.3vw, 3.2rem) var(--sans-serif);
  font-weight: 700;
  order: -1;
  margin-bottom: 1rem;
}
.point p {
  color: #1e1e1e;
}
.point-type {
  padding: 0 0.8rem;
  width: fit-content;
  text-align: center;
  border-radius: 4px;
  background: var(--yellow-500);
  font: clamp(1.3rem, 3.46vw, 1.6rem) var(--poppins);
  font-weight: 700;
  letter-spacing: 0.78px;
  order: -2;
}
@media screen and (min-width: 960px) {
  .point-wrapper {
    margin: 3.2rem auto 0;
    max-width: 1027px;
  }
  .point {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto) 1fr;
    align-items: start;
    column-gap: 8rem;
    row-gap: 2.5rem;
    max-width: 100%;
  }
  .point figure {
    grid-row: 1 / 4;
    grid-column: 1 / 2;
    align-self: center;
    margin-bottom: 0;
  }
  .point h3 {
    margin-bottom: 0;
  }
  .point-type {
    letter-spacing: 0.96px;
    padding: 0.4rem 1.2rem;
  }
  .point-wrapper .point:nth-child(even) {
    grid-template-rows: repeat(3, auto);
    align-items: center;
    row-gap: 0;
  }
  .point-wrapper .point:nth-child(even) figure {
    grid-column: 2 / 3;
  }
  .point-wrapper .point:nth-child(even) .point-type {
    align-self: flex-end;
  }
  .point-wrapper .point:nth-child(even) p {
    align-self: start;
  }
  #Points {
    padding-bottom: 9.6rem;
  }
}
/*----------------------------------------
 * section-- Feature 
 *----------------------------------------*/
#feature {
  padding: 1.6rem 0;
  background: var(--blue-500);
}
.feature-wrap {
  background: var(--white);
  border-radius: 16px;
  padding: 2.4rem;
  text-align: center;
}
.feature-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  width: 86%;
  margin: 0 auto;
}
.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.feature-card h3 {
  font: clamp(2.4rem, 6.4vw, 2.6rem) var(--sans-serif);
  font-weight: 700;
  margin-top: 0.8rem;
}
.feature-card p {
  margin-top: 1.6rem;
  text-align: left;
}
.and {
  font: clamp(1.8rem, 4.8vw, 2.4rem) var(--poppins);
  font-weight: 700;
  margin: 1.6rem 0;
  letter-spacing: 0.9px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.feature-title {
  color: var(--blue-500);
  font: var(--font-28px);
  font-weight: 700;
  line-height: 1.5;
  font-style: italic;
}
.license-card {
  padding: 2.4rem;
  margin-top: 1.6rem;
  background: var(--gray-300);
  border-radius: 16px;
}
.license-card span {
  display: inline-block;
  transform: var(--skew);
  color: var(--white);
  font: var(--font-15px);
  font-weight: 700;
  padding: 0.4rem 1.2rem;
  background: #0088d4;
  border-radius: 5px;
}
.license-card h3 {
  margin: 0.8rem 0;
  font: 800 2rem var(--Inter);
  color: #000;
}
@media screen and (min-width: 768px) {
  #feature {
    padding: 4.8rem 0;
  }
  .feature-wrap {
    padding: 3.2rem 7.2rem;
  }
  .feature-wrapper {
    margin-top: 3.2rem;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 2.4rem;
    column-gap: 6.4rem;
    width: 100%;
  }
  .feature-card {
    width: 28.2rem;
  }
  .feature-card img {
    width: 112px;
    height: 112px;
  }
  .and {
    padding: 2.4rem 0;
  }
  .and img {
    width: 120px;
    height: 120px;
  }
  .license-card-wrap {
    display: flex;
    justify-content: center;
    gap: 8.58%;
    margin-top: 3.2rem;
  }
  .license-card {
    width: 30.54%;
    min-width: 250px;
    margin-top: 0;
  }
}
/*----------------------------------------
 * section-- Compare 
 *----------------------------------------*/
#Compare {
  padding-top: 4.8rem;
}
.Compare-wrapper {
  padding: 1.6rem 0;
  border-radius: 16px;
  border: 2px solid var(--blue-500);
}
.Compare-table {
  margin: 1.6rem auto 0;
  text-align: center;
}
.Compare-table thead {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
}
.Compare-table th {
  text-align: center;
  vertical-align: middle;
}
.Compare-table thead th {
  font: clamp(1.1rem, 2.93vw, 1.4rem) var(--sans-serif);
  padding: 1.6rem 0.8rem;
  font-weight: 700;
}
.Compare-table tbody tr {
  height: 6.7rem;
}
.Compare-table tbody {
  font: clamp(1.2rem, 3.2vw, 1.4rem) var(--sans-serif);
  font-weight: 700;
}
.Compare-table tbody th {
  border-right: 1px solid var(--gray-500);
}
.Compare-table tbody td {
  vertical-align: middle;
  font-weight: 700;
}
.Compare-table tbody td + td {
  border-left: 1px solid var(--gray-500);
}
.Compare-table tbody td span {
  color: var(--blue-500);
  font: var(--font-10px);
  font-weight: 700;
  margin-top: 0.2rem;
}
.Compare-table span {
  display: grid;
  place-content: center;
}
.Compare-table .bg-blue500 {
  border-radius: 1.55px 4.651px;
  background: var(--blue-500);
  height: 4rem;
  padding: 0 0.3rem;
}
.Compare-table .bg-blue300 {
  height: 4rem;
  background: var(--blue-300);
  border-radius: 4px;
  background: #77b3d4;
}

@media screen and (min-width: 768px) {
  .Compare-wrapper {
    padding: 3.2rem 5.6rem;
    border: 6px solid var(--blue-500);
  }
  .Compare-table {
    width: 100%;
  }
  .Compare-table thead th {
    font: clamp(1.6rem, 2.08vw, 2rem) var(--sans-serif);
    font-weight: 700;
  }
  .Compare-table th {
    height: 10rem;
  }
  .Compare-table .bg-blue500 {
    height: 100%;
    border-radius: 4px;
  }
  .Compare-table .bg-blue300 {
    height: 100%;
  }
  .Compare-table .bg-blue300 .sp-only {
    display: block;
  }
  .Compare-table tbody {
    font: clamp(1.6rem, 2.08vw, 2rem) var(--sans-serif);
  }
  .Compare-table tbody td img {
    width: 19.2%;
    height: auto;
  }
  .Compare-table tbody tr + tr {
    border-top: 1px solid var(--gray-500);
  }
  .Compare-table tbody td span {
    margin-top: 0.6rem;
  }
}
@media screen and (min-width: 1280px) {
  .Compare-table .bg-blue300 .sp-only {
    display: none;
  }
}
/*----------------------------------------
 * section-- Flow
 *----------------------------------------*/
#flow {
  padding-bottom: 4.8rem;
}
.flow-wrapper {
  margin: 1.6rem auto 0;
  min-width: 86%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.flow-wrapper .arrow {
  margin: 1.6rem 0;
}
.flow-item h3 {
  font: var(--font-24px);
  font-weight: 700;
  margin-top: 1.6rem;
}
.flow-item h3 span {
  display: block;
  color: var(--blue-500, #007bc0);
  font: var(--font-13px);
  font-family: var(--poppins);
  font-weight: 600;
  letter-spacing: 0.78px;
  text-transform: uppercase;
}
.flow-item p {
  margin-top: 1.6rem;
  text-align: left;
}
@media screen and (min-width: 1280px) {
  #flow {
    padding-bottom: 9.6rem;
  }
  .flow-wrapper {
    margin-top: 3.2rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .flow-item {
    width: 18%;
  }
  .flow-wrapper .arrow {
    transform: rotate(-90deg);
    margin: 7% 0;
  }
}
/*----------------------------------------
 * section-- faq
 *----------------------------------------*/
#faq {
  padding: 1.6rem 0;
  background: var(--blue-500);
}
#faq p {
  color: var(--white);
  text-align: center;
  font: var(--font-title-subText);
  font-weight: 400;
}
#faq .section-title {
  color: var(--white);
  margin-bottom: 0.8rem;
}
#faq .section-title span {
  color: var(--gray-500);
}
#faq .accordion {
  margin-top: 1.6rem;
}
#faq .accordion p {
  font-weight: 500;
}
#faq .accordion-item + .accordion-item {
  margin-top: 0.8rem;
}
#faq .accordion-title {
  background: var(--white);
  padding: 1.2rem 1.2rem 1.2rem calc(2.4rem + 1.2em);
  position: relative;
  border-radius: 4px;
  font: var(--font-title-subText);
  font-weight: 500;
}
#faq .accordion-title:hover {
  cursor: pointer;
}
#faq .accordion-title::before {
  display: inline-block;
  content: "Q.";
  font: var(--font-16px);
  font-weight: 700;
  line-height: 1.57;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 1.2rem;
}
#faq .accordion-content {
  display: none;
  background: var(--gray-400);
  position: relative;
  padding: 1.2rem 1.2rem 1.2rem 0;
  border-radius: 4px;
}
#faq .accordion-content p {
  color: var(--black);
  position: relative;
  padding-left: calc(2.4rem + 1.2em);
  text-align: left;
}
#faq .accordion-content p::before {
  display: inline-block;
  content: "A.";
  font: var(--font-16px);
  font-weight: 700;
  line-height: 1.57;
  position: absolute;
  top: 0;
  left: 1.2rem;
}
@media screen and (min-width: 768px) {
  #faq {
    padding: 0;
    background: var(--white);
  }
  .faq-wrap {
    padding: 4.8rem 0;
    background: var(--blue-500);
    border-radius: 32px;
  }
  #faq .section-title {
    margin-bottom: 1.6rem;
  }
  #faq .accordion {
    width: 65.71%;
    max-width: 736px;
    min-width: 590px;
    margin: 3.2rem auto 0;
  }
  #faq .accordion-item + .accordion-item {
    margin-top: 1.2rem;
  }
  #faq .accordion-title {
    padding: 1.8rem 2.4rem 1.8rem calc(2.4rem + 1.8em);
  }
  #faq .accordion-content {
    padding: 1.6rem 2.4rem 1.6rem 0;
  }
  #faq .accordion-content p {
    padding-left: calc(2.4rem + 1.8em);
  }
  #faq .accordion-title::after {
    position: absolute;
    top: 35%;
    right: 2.4rem;
    display: inline-block;
    content: "";
    background: url(../img/arrow-down.svg) no-repeat center center/cover;
    transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
    width: 1em;
    height: 1em;
  }
  #faq .accordion-title.open::after {
    transform: rotate(-180deg);
  }
}
/*----------------------------------------
 * section-- contact
 *----------------------------------------*/
#contact {
  padding: 4.8rem 0;
}
#contact p {
  text-align: center;
  margin-top: 0.8rem;
  font: var(--font-title-subText);
  font-weight: 500;
}
.contact-form {
  margin-top: 2.4rem;
  text-align: center;
}
.contact-form-item label {
  display: block;
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
}
.contact-form-item label .required {
  color: var(--red-500);
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
  margin-left: 0.8rem;
}
.contact-form-item input {
  width: 100%;
  border: 1px solid var(--gray-500);
  border-radius: 4px;
  padding: 1.2rem 1.6rem;
  font-family: var(--sans-serif);
  line-height: 1.7;
  font-weight: 400;
  text-align: left;
  transition: all 0.2s;
}
.contact-form-item input:hover {
  border: 1px solid var(--gray-500);
  background: var(--gray-300);
}
.contact-form-item input::placeholder {
  color: var(--gray-600);
}
.contact-form-item input.has-been-focused:invalid {
  border: 1px solid var(--red-500);
}
.contact-form-item input.has-been-focused:focus {
  outline: 1px solid var(--black);
  border: 1px solid var(--black);
}
.contact-form-item textarea {
  resize: none;
  padding: 1.2rem;
  border: 1px solid var(--gray-500);
  border-radius: 4px;
  width: 100%;
  text-align: left;
  transition: all 0.2s;
  font-weight: 400;
}
.contact-form-item textarea:hover {
  border: 1px solid var(--gray-500);
  background: var(--gray-300);
}
.contact-form-item textarea:focus {
  outline: 1px solid var(--blue-500);
  border: 1px solid var(--blue-500);
}
.contact-form-item textarea::placeholder {
  color: var(--gray-600);
}
.contact-form-item + .contact-form-item {
  margin-top: 1.6rem;
}
.privacyProtection {
  display: flex;
  align-items: center;
  text-align: center;
  margin-top: 1.6rem;
  cursor: pointer;
}
.privacyProtection-check {
  appearance: none;
  position: absolute;
}
.privacyProtection-text {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 3.2rem;
  font-weight: 400;
}
.privacyProtection-text a {
  width: fit-content;
  text-decoration: underline;
}
.privacyProtection-text::before {
  position: absolute;
  left: 0;
  display: block;
  background: #fff;
  border: 1px solid var(--black);
  border-radius: 2px;
  content: "";
  width: 18px;
  height: 18px;
}
.privacyProtection-check:checked + .privacyProtection-text::before {
  background: var(--blue-500);
  border: 1px solid var(--blue-500);
}
.privacyProtection-check:checked + .privacyProtection-text::after {
  position: absolute;
  top: 5px;
  left: 7px;
  display: block;
  border-right: 1.5px solid var(--white);
  border-bottom: 1.5px solid var(--white);
  content: "";
  width: 5px;
  height: 10px;
  transform: rotate(45deg);
}
.privacyProtection-check.has-been-focused:invalid
  + .privacyProtection-text::before {
  border: 1px solid var(--red-500);
}
.contact-form button {
  width: 343px;
  margin-top: 1.6rem;
  border-radius: 999px;
  border: 1px solid var(--blue-500);
  background: var(--blue-500);
  color: var(--white);
  font-size: 1.6rem;
  font-family: var(--sans-serif);
  text-align: center;
  padding: 1.2rem 1.6rem;
  transition: all 0.2s;
}
.contact-form button:hover {
  background: var(--white);
  color: var(--blue-500);
}
#contact .error {
  display: none;
  color: var(--red-500);
  font-size: 1.4rem;
  text-align: left;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  #contact {
    padding: 9.6rem 0;
  }
  .contact-form {
    width: 100%;
    max-width: 450px;
    margin: 3.2rem auto 0;
  }
  .privacyProtection {
    justify-content: center;
  }
  #contact .privacyProtection-error {
    text-align: center;
  }
  .contact-form button {
    max-width: 160px;
  }
}
/*----------------------------------------
 * footer
 *----------------------------------------*/
footer {
  padding: 4rem;
  background: var(--gray-300);
  font: var(--font-14px);
}
.footer-list {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.footer-list-item {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-list-item a {
  font-weight: 400;
  color: var(--gray-700);
}

.footer-list-item a:hover {
  text-decoration: underline;
}
.copy {
  color: var(--gray-600);
  margin-top: 2.4rem;
}
@media screen and (min-width: 768px) {
  footer {
    padding: 3.2rem;
  }
  .footer-list {
    flex-direction: row;
    justify-content: center;
    gap: 7.2rem;
  }
  .copy {
    text-align: center;
  }
}

/*----------------------------------------
 * お問い合わせ完了画面
 *----------------------------------------*/

.thanks-content {
  margin-top: 3.2rem;
  margin-bottom: 6.4rem;
}
.thanks-content h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
}
.thanks-content p {
  margin-top: 1.2rem;
}
.thanks-content p:first-of-type {
  margin-top: 1.6rem;
}

@media screen and (min-width: 768px) {
  .thanks-content {
    margin-top: 10.8rem;
    text-align: center;
  }
  .thanks-content h2 {
    font-size: 3.2rem;
  }
  .thanks-content p {
    margin-top: 2.4rem;
  }
  .thanks-content p:first-of-type {
    margin-top: 4rem;
  }
  .thanks-content p:last-of-type {
    margin-top: 0;
  }
}
