@charset "UTF-8";
body {
  color: #333;
  font-family: "ヒラギノ角ゴシック", Hiragino Sans, Meiryo, sans-serif;
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

.ib {
  display: inline-block;
}

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 2vw;
  }
}
@media (min-width: 800px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type="checkbox"],
input[type="radio"] {
  display: none;
}

input[type="submit"],
input[type="button"],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.btn {
  width: 100%;
  max-width: 500px;
  max-width: 31.25rem;
  margin-right: auto;
  margin-left: auto;
}

.btn a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: bold;
  color: #fff;
  background-color: #ff5050;
  border-radius: 0.625rem;
  font-size: 20px;
  font-size: 1.25rem;
  width: 100%;
  padding: 14px;
  padding: 0.875rem;
  -webkit-box-shadow: 0.5rem 0.5rem rgba(255, 80, 80, 0.3);
  box-shadow: 0.5rem 0.5rem rgba(255, 80, 80, 0.3);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  position: relative;
}
@media screen and (min-width: 768px) {
  .btn a {
    font-size: 1.75rem;
    padding: 1.25rem;
  }
}

.btn a:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transform: translate(0.5rem, 0.5rem);
  transform: translate(0.5rem, 0.5rem);
}

.btn a::after {
  content: "";
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 38%;
  right: 35px;
  right: 2.1875rem;
  /*矢印の形状*/
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  border-top: 2px solid #fff;
  border-top: 0.125rem solid #fff;
  border-right: 2px solid #fff;
  border-right: 0.125rem solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  /*アニメーションの指定*/
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media screen and (min-width: 768px) {
  .btn a::after {
    right: 15%;
  }
}

.btn a:hover::after {
  right: 10%;
}

.comparison {
  padding: 100px 0;
  padding: 6.25rem 0;
}
@media screen and (min-width: 768px) {
  .comparison {
    padding: 7.5rem 0;
  }
}

.comparison__title {
  font-size: 24px;
  font-size: 1.5rem;
  text-align: center;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .comparison__title {
    font-size: 2.25rem;
  }
}

.comparison__title span {
  color: #ff5050;
}

.comparison__text {
  margin-top: 30px;
  margin-top: 1.875rem;
  line-height: 1.8;
  text-align: center;
}

.comparison__img {
  margin-top: 30px;
  margin-top: 1.875rem;
  overflow-y: auto;
  white-space: nowrap;
}

.comparison__graph {
  width: 600px;
  width: 37.5rem;
}
@media screen and (min-width: 768px) {
  .comparison__graph {
    width: 100%;
  }
}

.comparison__arrow {
  margin: 30px auto;
  margin: 1.875rem auto;
  width: 100%;
  max-width: 300px;
  max-width: 18.75rem;
}

.comparison__message {
  margin-top: 30px;
  margin-top: 1.875rem;
  font-weight: bold;
  text-align: center;
  font-size: 28px;
  font-size: 1.75rem;
}
@media screen and (min-width: 768px) {
  .comparison__message {
    font-size: 2.25rem;
  }
}

.comparison__message strong {
  color: #ff5050;
}

.comparison__message-text {
  text-align: center;
  margin-top: 30px;
  margin-top: 1.875rem;
  font-weight: 500;
}

.complete {
  position: relative;
  background: url(../images/common/mv.png) no-repeat center center/cover;
  height: 100vh;
  width: 100%;
  margin-top: 70px;
  margin-top: 4.375rem;
}
@media screen and (min-width: 1440px) {
  .complete {
    margin-top: 5rem;
  }
}

.complete__content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 97%;
  height: 100%;
  max-height: 95%;
  border: 3px solid #ff5050;
  border: 0.1875rem solid #ff5050;
  text-align: center;
  padding: 20px;
  padding: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .complete__content {
    padding: 0;
  }
}

.complete__title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
}

.complete__btn {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.contact-sp {
  position: fixed;
  z-index: 47;
  right: 0;
  bottom: 0;
  left: 0;
  background: url(../images/common/mv.png) no-repeat center center/cover;
  padding: 5px 0;
  padding: 0.3125rem 0;
}
@media screen and (min-width: 768px) {
  .contact-sp {
    display: none;
  }
}

.contact-sp__content {
  padding: 0 20px;
  padding: 0 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.contact-sp__img {
  width: 100%;
  max-width: 45px;
  max-width: 2.8125rem;
}

.contact-sp__message {
  text-align: center;
}

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

.contact-sp__lead span {
  color: #ff5050;
}

.contact-sp__text {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
}

.contact {
  background-color: #090e24;
  padding: 120px 0;
  padding: 4rem 0;
  position: relative;
  z-index: 45;
}

.contact__inner {
  width: 100%;
  max-width: 640px;
  max-width: 40rem;
  padding: 0 20px;
  padding: 0 1.25rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .contact__inner {
    max-width: 70rem;
    padding: 0 2.5rem;
  }
}

.contact__content {
  background-color: #fff;
  padding: 20px;
  padding: 1.25rem;
}
@media screen and (min-width: 600px) {
  .contact__content {
    padding: 2.5rem;
  }
}

.contact__lead {
  text-transform: uppercase;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .contact__lead {
    font-size: 1.5rem;
  }
}

.contact__title {
  text-align: center;
  font-size: 28px;
  font-size: 1.75rem;
  margin-top: 15px;
  margin-top: 0.9375rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .contact__title {
    font-size: 2.25rem;
  }
}

.contact__form {
  width: 100%;
  max-width: 600px;
  max-width: 37.5rem;
  margin: 40px auto 0;
  margin: 2rem auto 0;
}
@media screen and (min-width: 768px) {
  .contact__form {
    max-width: 46.25rem;
  }
}

.contact__logo {
  margin: 48px auto 0;
  margin: 3rem auto 0;
  width: 100%;
  max-width: 240px;
  max-width: 15rem;
}
@media screen and (min-width: 768px) {
  .contact__logo {
    max-width: 18.75rem;
  }
}

.cta {
  background: url(../images/common/mv.png) no-repeat center center/cover;
  padding: 200px 0;
  padding: 12.5rem 0;
}
@media screen and (min-width: 768px) {
  .cta {
    padding: 15.625rem 0;
  }
}

.cta .inner-pc {
  position: relative;
}

.cta__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
}

.cta__content {
  position: relative;
}
@media screen and (min-width: 600px) {
  .cta__content {
    padding-left: 11.25rem;
  }
}

@media screen and (min-width: 600px) {
  .cta__content::before {
    content: "";
    display: block;
    background: url(../images/common/cta-img.png) no-repeat center
      center/contain;
    position: absolute;
    left: 0%;
    z-index: 5;
    bottom: 0%;
    width: 14.375rem;
    height: 14.375rem;
  }
}
@media screen and (min-width: 1440px) {
  .cta__content::before {
    width: 18.75rem;
    height: 18.75rem;
  }
}

.cta__title-img {
  width: 100%;
  max-width: 450px;
  max-width: 28.125rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 10;
}

.cta__title-img figcaption {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 800;
}
@media screen and (min-width: 768px) {
  .cta__title-img figcaption {
    font-size: 2.25rem;
  }
}

.cta__title {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 800;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .cta__title {
    font-size: 2.25rem;
  }
}

.cta__text {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 30px;
  margin-top: 1.875rem;
  text-align: center;
}

.cta__text span {
  color: #ff5050;
}

.cta__btn {
  position: relative;
  margin-top: 8px;
  margin-top: 0.5rem;
}

@media screen and (min-width: 600px) {
  .cta__btn::after {
    content: "";
    display: block;
    background: url(../images/common/mv-img2.png) no-repeat center
      center/contain;
    width: 5.625rem;
    height: 5.625rem;
    position: absolute;
    right: 0.625rem;
    bottom: 82%;
  }
}

.drawer {
  display: none;
  background: #333;
  height: 100vh;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100vw;
  z-index: 30;
}

.drawer__nav {
  width: 100%;
  max-width: 280px;
  max-width: 17.5rem;
  margin: 60px auto 0;
  margin: 3.75rem auto 0;
}

.drawer__nav li {
  border-top: 1.5px solid #fff;
  border-top: 0.09375rem solid #fff;
}

.drawer__nav li:last-child {
  border-bottom: 1.5px solid #fff;
  border-bottom: 0.09375rem solid #fff;
}

.drawer__nav li a {
  display: block;
  color: #fff;
  line-height: 1.2857142857;
  padding: 18px;
  padding: 1.125rem;
  position: relative;
  font-size: 14px;
  font-size: 0.875rem;
}

.feature {
  padding: 100px 0;
  padding: 6.25rem 0;
}
@media screen and (min-width: 768px) {
  .feature {
    padding: 7.5rem 0;
  }
}

.feature__title {
  text-align: center;
  font-size: 28px;
  font-size: 1.75rem;
}
@media screen and (min-width: 768px) {
  .feature__title {
    font-size: 2.25rem;
  }
}

.feature__title span {
  color: #ff5050;
}

.feature__items {
  margin-top: 100px;
  margin-top: 6.25rem;
}

.feature__item {
  padding: 60px 40px 40px;
  padding: 3.75rem 2.5rem 2.5rem;
  background-color: #f7f7f7;
  position: relative;
}

.feature__item:not(:first-child) {
  margin-top: 100px;
  margin-top: 6.25rem;
}

.feature__item::after {
  content: "01";
  font-weight: bold;
  font-size: 64px;
  font-size: 4rem;
  text-align: center;
  padding: 20px;
  padding: 1.25rem;
  color: #fee36d;
  position: absolute;
  top: -60px;
  top: -3.75rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .feature__item::after {
    font-size: 6.75rem;
    top: -5.3125rem;
    left: 2.5rem;
    -webkit-transform: unset;
    transform: unset;
  }
}

.feature__item:nth-child(2)::after {
  content: "02";
}
@media screen and (min-width: 768px) {
  .feature__item:nth-child(2)::after {
    left: unset;
    right: 2.5rem;
  }
}

.feature__item:nth-child(3)::after {
  content: "03";
}

@media screen and (min-width: 768px) {
  .feature__item-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.feature__item:nth-child(even) .feature__item-head {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.feature__item-title {
  font-size: 28px;
  font-size: 1.75rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .feature__item-title {
    text-align: left;
    width: 100%;
    max-width: calc(100% - 15rem);
    font-size: 2.25rem;
  }
}

.feature__item-title strong {
  color: #ff5050;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(70%, transparent),
    color-stop(70%, #fced96)
  );
  background: linear-gradient(transparent 70%, #fced96 70%);
}

.feature__item-img {
  width: 100%;
  max-width: 250px;
  max-width: 15.625rem;
  margin: 30px auto 0;
  margin: 1.875rem auto 0;
}
@media screen and (min-width: 768px) {
  .feature__item-img {
    margin: 0;
  }
}

.feature__item-text {
  margin-top: 30px;
  margin-top: 1.875rem;
  line-height: 1.8;
}

.flow {
  padding: 100px 0;
  padding: 6.25rem 0;
}
@media screen and (min-width: 768px) {
  .flow {
    padding: 7.5rem 0;
  }
}

.flow__lead {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
}

.flow__title {
  text-align: center;
  font-size: 28px;
  font-size: 1.75rem;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .flow__title {
    font-size: 2.25rem;
  }
}

.flow__title span {
  color: #ff5050;
}

.flow__items {
  width: 100%;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .flow__items {
    max-width: 100%;
  }
}

.flow__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flow__item:not(:first-child) {
  margin-top: 30px;
  margin-top: 1.875rem;
  position: relative;
}

.flow__item:not(:first-child)::after {
  content: "";
  display: block;
  background: url(../images/common/arrow2.png) no-repeat center center/contain;
  width: 80px;
  width: 5rem;
  height: 45px;
  height: 2.8125rem;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -24px;
  top: -1.5rem;
}

.flow__item-number {
  max-width: 64px;
  max-width: 4rem;
  width: 100%;
  background: url(../images/common/mv.png) no-repeat center center/cover;
  color: #333;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flow__item-body {
  background-color: #f7f7f7;
  max-width: calc(100% - 4rem);
  width: 100%;
  padding: 20px 22px 17px;
  padding: 1.25rem 1.375rem 1.0625rem;
}
@media screen and (min-width: 768px) {
  .flow__item-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.flow__item-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  max-width: 194px;
  max-width: 12.125rem;
  width: 100%;
  position: relative;
  border-bottom: 1px solid #858ba2;
  border-bottom: 0.0625rem solid #858ba2;
  padding-bottom: 3px;
  padding-bottom: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .flow__item-title {
    border-bottom: none;
  }
}

@media screen and (min-width: 768px) {
  .flow__item-title::after {
    content: "";
    width: 0.0625rem;
    height: 1.8125rem;
    background-color: #858ba2;
    position: absolute;
    top: 42%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
  }
}

.flow__item-text {
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .flow__item-text {
    margin-top: 0;
    margin-left: 1.875rem;
  }
}

.footer {
  background-color: #090e24;
  padding: 8px 8px 100px;
  padding: 0.5rem 0.5rem 6.25rem;
  text-align: center;
  position: relative;
  z-index: 45;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 0.5rem;
  }
}

.footer__copyright {
  color: #fff;
  font-size: 14px;
}

.form .form-row:not(:first-child) {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.form .form-label {
  display: inline-block;
  font-weight: bold;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .form .form-label {
    font-size: 1.125rem;
  }
}

.form .form-required {
  position: relative;
}

.form .form-required::after {
  content: "必須";
  background-color: #ff5050;
  color: #fff;
  font-size: 12px;
  font-size: 0.75rem;
  width: 40px;
  width: 2.5rem;
  height: 20px;
  height: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 48%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: calc(100% + 0.75rem);
}
@media screen and (min-width: 768px) {
  .form .form-required::after {
    top: 56%;
  }
}

.form .form-dd {
  margin-top: 8px;
  margin-top: 0.5rem;
}

.form .form-dd input[type="text"],
.form .form-dd input[type="email"],
.form .form-dd input[type="tel"],
.form .form-dd select,
.form .form-dd textarea {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #ddd;
  border: 0.0625rem solid #ddd;
  background-color: #fff;
  padding: 10px 14px;
  padding: 0.625rem 0.875rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.3125rem;
  color: inherit;
  font-family: inherit;
  font-size: 14px;
  font-size: 0.875rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .form .form-dd input[type="text"],
  .form .form-dd input[type="email"],
  .form .form-dd input[type="tel"],
  .form .form-dd select,
  .form .form-dd textarea {
    font-size: 1rem;
  }
}

.form .form-dd input::-webkit-input-placeholder,
.form .form-dd textarea::-webkit-input-placeholder {
  color: #cccccc;
}

.form .form-dd input::-moz-placeholder,
.form .form-dd textarea::-moz-placeholder {
  color: #cccccc;
}

.form .form-dd input::-ms-input-placeholder,
.form .form-dd textarea::-ms-input-placeholder {
  color: #cccccc;
}

.form .form-dd input::placeholder,
.form .form-dd textarea::placeholder {
  color: #cccccc;
}

.form .form-dd select {
  background: #fff url(../images/common/select-arrow.svg) no-repeat right 15px
    center/10px 7px;
  background: #fff url(../images/common/select-arrow.svg) no-repeat right
    0.9375rem center/0.625rem 0.4375rem;
}

.form .form-dd textarea {
  height: 140px;
  height: 8.75rem;
  resize: none;
}
@media screen and (min-width: 768px) {
  .form .form-dd textarea {
    height: 15rem;
  }
}

.form .form-btn {
  text-align: center;
  margin-top: 60px;
  margin-top: 3.75rem;
}

.form .form-btn input[type="submit"] {
  display: inline-block;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  color: #ff5050;
  background-color: #fff;
  padding: 24px;
  padding: 1.5rem;
  border: 2px solid #ff5050;
  border: 0.125rem solid #ff5050;
  width: 100%;
  max-width: 300px;
  max-width: 18.75rem;
  text-align: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media screen and (min-width: 768px) {
  .form .form-btn input[type="submit"] {
    font-size: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .form .form-btn input[type="submit"]:hover {
    background-color: #ff5050;
    color: #fff;
  }
}

.hamburger {
  cursor: pointer;
  position: relative;
  top: 0;
  z-index: 60;
  height: 70px;
  height: 4.375rem;
  width: 70px;
  width: 4.375rem;
  background-color: #333;
}

.hamburger span {
  background-color: #fff;
  border-radius: 0.0625rem;
  height: 2.25px;
  height: 0.140625rem;
  position: absolute;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  width: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.is-open.hamburger span {
  background-color: #fff;
}

.hamburger span:nth-child(1) {
  top: 30%;
}

.is-open.hamburger span:nth-child(1) {
  top: 30%;
  -webkit-transform: rotate(-45deg) translateX(-50%);
  transform: rotate(-45deg) translateX(-50%);
}

.hamburger span:nth-child(2) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.is-open.hamburger span:nth-child(2) {
  display: none;
}

.hamburger span:nth-child(3) {
  bottom: 30%;
}

.is-open.hamburger span:nth-child(3) {
  -webkit-transform: rotate(45deg) translateX(-50%);
  transform: rotate(45deg) translateX(-50%);
}

.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  background-color: #fff;
  -webkit-box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.16);
  box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.16);
  height: 70px;
  height: 4.375rem;
}
@media screen and (min-width: 1440px) {
  .header {
    height: 5rem;
  }
}

.header__inner {
  padding-left: 20px;
  padding-left: 1.25rem;
  margin: 0 auto;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (min-width: 1440px) {
  .header__inner {
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }
}

.header__logo {
  width: 100%;
  max-width: 200px;
  max-width: 12.5rem;
}
@media screen and (min-width: 768px) {
  .header__logo {
    max-width: 15rem;
  }
}
@media screen and (min-width: 1440px) {
  .header__logo {
    max-width: 17.5rem;
  }
}

.header__nav {
  height: inherit;
  display: none;
}
@media screen and (min-width: 1440px) {
  .header__nav {
    display: block;
  }
}

.header__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: inherit;
}

.header__nav ul li {
  height: inherit;
}

.header__nav ul li a {
  font-weight: bold;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 8px 24px;
  padding: 0.5rem 1.5rem;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header__nav ul li a:hover {
  color: #ff5050;
}

@media screen and (min-width: 1440px) {
  .header__hamburger {
    display: none;
  }
}

.inner-pc {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .inner-pc {
    max-width: calc(100% - 18.75rem);
  }
}

.inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
  max-width: 640px;
  max-width: 40rem;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 850px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.mv {
  position: relative;
  background: url(../images/common/mv.png) no-repeat center center/cover;
  height: 700px;
  height: 40rem;
  width: 100%;
  margin-top: 70px;
  margin-top: 4.375rem;
}
@media screen and (min-width: 600px) {
  .mv {
    height: 50rem;
  }
}
@media screen and (min-width: 1440px) {
  .mv {
    margin-top: 5rem;
  }
}

.mv__content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 97%;
  height: 100%;
  max-height: 90%;
  border: 3px solid #ff5050;
  border: 0.1875rem solid #ff5050;
  text-align: center;
  padding: 20px;
  padding: 1.25rem;
}
@media screen and (min-width: 768px) {
  .mv__content {
    padding: 0;
  }
}

.mv__lead {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.8;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 600px) {
  .mv__lead {
    font-size: 1.5rem;
  }
}
.mv__img {
  width: 100%;
  max-width: 650px;
  max-width: 40.625rem;
  margin: 30px auto 0;
  margin: 1.875rem auto 0;
}

.mv__title {
  display: inline-block;
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  color: #fff;
  background-color: #ff5050;
  padding: 4px 8px;
  padding: 0.25rem 0.5rem;
}
@media screen and (min-width: 600px) {
  .mv__title {
    font-size: 2.25rem;
  }
}
@media screen and (min-width: 768px) {
  .mv__title {
    font-size: 3.375rem;
  }
}

.mv__text {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 60px;
  margin-top: 3.75rem;
}

.mv__text span {
  color: #ff5050;
}

.mv__btn {
  position: relative;
  margin-top: 8px;
  margin-top: 0.5rem;
}

@media screen and (min-width: 600px) {
  .mv__btn::after {
    content: "";
    display: block;
    background: url(../images/common/mv-img2.png) no-repeat center
      center/contain;
    width: 5.625rem;
    height: 5.625rem;
    position: absolute;
    left: 0.625rem;
    bottom: 82%;
  }
}

.mv__banner {
  margin-top: 30px;
  margin-top: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .mv__banner {
    -webkit-box-pack: unset;
    -ms-flex-pack: unset;
    justify-content: unset;
    margin-top: 0.9375rem;
    margin-left: 1.25rem;
  }
}

.mv__banner-google {
  width: 100%;
  max-width: 90px;
  max-width: 5.625rem;
}

.price {
  padding: 100px 0 0;
  padding: 6.25rem 0 0;
}
@media screen and (min-width: 768px) {
  .price {
    padding: 7.5rem 0 0;
  }
}

.price__lead {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
}

.price__title {
  text-align: center;
  font-size: 28px;
  font-size: 1.75rem;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .price__title {
    font-size: 2.25rem;
  }
}

.price__title span {
  color: #ff5050;
}

.price__content {
  background: url(../images/common/mv.png) no-repeat center center/cover;
  padding: 40px 20px;
  padding: 2.5rem 1.25rem;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .price__content {
    padding: 2.5rem;
  }
}

.price__content-title {
  text-align: center;
  font-size: 17.5px;
  font-size: 1.09375rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .price__content-title {
    font-size: 1.25rem;
  }
}

.price__content-text {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 60px;
  margin-top: 3.75rem;
  text-align: center;
}

.price__content-text span {
  color: #ff5050;
}

.price__btn {
  position: relative;
  margin-top: 8px;
  margin-top: 0.5rem;
}

@media screen and (min-width: 600px) {
  .price__btn::after {
    content: "";
    display: block;
    background: url(../images/common/mv-img2.png) no-repeat center
      center/contain;
    width: 5.625rem;
    height: 5.625rem;
    position: absolute;
    left: 0.625rem;
    bottom: 82%;
  }
}

.qa {
  padding: 100px 0;
  padding: 6.25rem 0;
}
@media screen and (min-width: 768px) {
  .qa {
    padding: 7.5rem 0;
  }
}

.qa__lead {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .qa__lead {
    font-size: 1.5rem;
  }
}

.qa__title {
  text-align: center;
  font-size: 28px;
  font-size: 1.75rem;
  margin-top: 15px;
  margin-top: 0.9375rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .qa__title {
    font-size: 2.25rem;
  }
}

.qa__title span {
  color: #ff5050;
}

.qa__items {
  width: 100%;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .qa__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.qa__item {
  width: 100%;
}
.qa__item:nth-child(2) {
  margin-top: 2.5px;
  margin-top: 0.15625rem;
}
.qa__item:nth-child(n + 3) {
  margin-top: 2.5px;
  margin-top: 0.15625rem;
}
.qa__item-q {
  font-size: 14px;
  font-size: 0.875rem;
  padding: 18px 55px 18px 70px;
  padding: 1.125rem 3.4375rem 1.125rem 4.375rem;
  position: relative;
  border-bottom: 1px solid #333;
  border-bottom: 0.0625rem solid #333;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .qa__item-q {
    padding: 1.5rem 3.4375rem;
    font-size: 1rem;
  }
}
@media screen and (min-width: 1024px) {
  .qa__item-q {
    padding: 1.5rem 3.4375rem;
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 1440px) {
  .qa__item-q {
    padding: 1.5rem 3.4375rem;
    font-size: 1rem;
  }
}

.qa__item-q::after {
  content: "Q";
  font-size: 18px;
  font-size: 1.125rem;
  color: #3e4048;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 8.8%;
}
@media screen and (min-width: 768px) {
  .qa__item-q::after {
    left: 2.8%;
  }
}

.qa__item-icon {
  width: 12px;
  width: 0.75rem;
  height: 12px;
  height: 0.75rem;
  position: absolute;
  right: 15px;
  right: 0.9375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .qa__item-icon {
    width: 1.125rem;
    height: 1.125rem;
    right: 1.6875rem;
  }
}

.qa__item-icon span {
  width: 12px;
  width: 0.75rem;
  height: 2px;
  height: 0.125rem;
  background-color: #ff5050;
  position: absolute;
  top: 54%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
}
@media screen and (min-width: 768px) {
  .qa__item-icon span {
    width: 1.125rem;
  }
}

.qa__item-icon span:nth-child(2) {
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.qa__item-icon.is-open span:nth-child(2) {
  -webkit-transform: translateY(-50%) rotate(0);
  transform: translateY(-50%) rotate(0);
}

.qa__item-a {
  font-size: 14px;
  font-size: 0.875rem;
  padding: 20px 20px 20px 70px;
  padding: 1.25rem 1.25rem 1.25rem 4.375rem;
  position: relative;
  display: none;
  background-color: #f7f7f7;
  border-radius: 1.25rem;
  line-height: 1.8;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .qa__item-a {
    padding: 1.25rem 1.25rem 1.25rem 3.4375rem;
    font-size: 1rem;
  }
}

.qa__item-a::after {
  content: "A";
  font-size: 18px;
  font-size: 1.125rem;
  color: #ff5050;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 8.8%;
}
@media screen and (min-width: 768px) {
  .qa__item-a::after {
    left: 2.8%;
  }
}

.reason {
  padding: 100px 0;
  padding: 6.25rem 0;
}
@media screen and (min-width: 768px) {
  .reason {
    padding: 7.5rem 0;
  }
}

.reason__lead {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .reason__lead {
    font-size: 1.5rem;
  }
}

.reason__title {
  text-align: center;
  font-size: 28px;
  font-size: 1.75rem;
  margin-top: 15px;
  margin-top: 0.9375rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .reason__title {
    font-size: 2.25rem;
  }
}

.reason__title span {
  color: #ff5050;
}

.reason__items {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.reason__item {
  padding: 60px 20px 20px;
  padding: 3.75rem 1.25rem 1.25rem;
  background-color: #f7f7f7;
  position: relative;
}
@media screen and (min-width: 768px) {
  .reason__item {
    padding: 3.75rem 2.5rem 2.5rem;
  }
}

.reason__item:not(:first-child) {
  margin-top: 60px;
  margin-top: 3.75rem;
}

@media screen and (min-width: 768px) {
  .reason__item::before {
    content: "";
    display: block;
    background: url(../images/common/reason-img1.png) no-repeat center
      center/contain;
    width: 12.5rem;
    height: 12.5rem;
    position: absolute;
    top: -4.6875rem;
    right: 2.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .reason__item::before {
    width: 10rem;
    height: 10rem;
  }
}
@media screen and (min-width: 1440px) {
  .reason__item::before {
    width: 12.5rem;
    height: 12.5rem;
  }
}

@media screen and (min-width: 768px) {
  .reason__item:nth-child(2)::before {
    content: "";
    background: url(../images/common/reason-img2.png) no-repeat center
      center/contain;
  }
}

@media screen and (min-width: 768px) {
  .reason__item:nth-child(3)::before {
    background: url(../images/common/reason-img3.png) no-repeat center
      center/contain;
  }
}

@media screen and (min-width: 768px) {
  .reason__item:nth-child(4)::before {
    background: url(../images/common/reason-img4.png) no-repeat center
      center/contain;
  }
}

.reason__item::after {
  content: "01";
  font-weight: bold;
  font-size: 64px;
  font-size: 4rem;
  text-align: center;
  padding: 20px;
  padding: 1.25rem;
  color: #fee36d;
  position: absolute;
  top: -60px;
  top: -3.75rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .reason__item::after {
    font-size: 6.75rem;
    top: -5.3125rem;
    left: 2.5rem;
    -webkit-transform: unset;
    transform: unset;
  }
}

.reason__item:nth-child(2)::after {
  content: "02";
}

.reason__item:nth-child(3)::after {
  content: "03";
}

.reason__item:nth-child(4)::after {
  content: "04";
}

.reason__item-title {
  text-align: center;
  font-size: 28px;
  font-size: 1.75rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .reason__item-title {
    font-size: 2.25rem;
  }
}

.reason__item-title span {
  color: #ff5050;
}

.reason__item-img {
  width: 100%;
  max-width: 150px;
  max-width: 9.375rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .reason__item-img {
    display: none;
  }
}

.reason__item-list {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.reason__item-list-item:not(:first-child) {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.reason__item-list-item-title {
  position: relative;
  padding: 8px;
  padding: 0.5rem;
  background-color: #3e4048;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  border-bottom: solid 3px #ff5050;
  border-bottom: solid 0.1875rem #ff5050;
  z-index: 2;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .reason__item-list-item-title {
    padding: 0.625rem 2.625rem;
    -webkit-text-emphasis: left;
    text-emphasis: left;
  }
}

.reason__item-list-item-title strong {
  color: #fded97;
}

@media screen and (min-width: 768px) {
  .reason__item-list-item-title::before {
    position: absolute;
    content: "";
    left: -0.125rem;
    top: -0.125rem;
    width: 0;
    height: 0;
    border: none;
    border-left: solid 2.5rem #f7f7f7;
    border-bottom: solid 3.875rem transparent;
    z-index: 1;
  }
}

@media screen and (min-width: 768px) {
  .reason__item-list-item-title::after {
    position: absolute;
    content: "";
    right: -0.1875rem;
    top: -0.4375rem;
    width: 0;
    height: 0;
    border: none;
    border-left: solid 2.5rem transparent;
    border-bottom: solid 3.875rem #f7f7f7;
    z-index: 1;
  }
}

.reason__item-list-item-text {
  margin-top: 30px;
  margin-top: 1.875rem;
  line-height: 1.8;
}

.results {
  padding: 100px 0;
  padding: 6.25rem 0;
}
@media screen and (min-width: 768px) {
  .results {
    padding: 7.5rem 0;
  }
}

.results__inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 640px;
  max-width: 40rem;
}
@media screen and (min-width: 768px) {
  .results__inner {
    max-width: 850px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.results__content {
  background-color: #f7f7f7;
  padding: 40px 20px;
  padding: 2.5rem 1.25rem;
}
@media screen and (min-width: 600px) {
  .results__content {
    padding: 2.5rem;
  }
}

.results__head {
  text-align: center;
  font-weight: bold;
}

.results__lead {
  font-size: 24px;
  font-size: 1.5rem;
}

.results__title {
  font-size: 36px;
  font-size: 2.25rem;
}

.results__text {
  margin-top: 30px;
  margin-top: 1.875rem;
  text-align: center;
}

.results__img {
  margin-top: 30px;
  margin-top: 1.875rem;
  width: 100%;
}

.results__items {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .results__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.results__item {
  width: 100%;
  padding: 20px;
  padding: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 340px;
  max-width: 21.25rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .results__item {
    margin: 0;
    max-width: 50%;
  }
}

.results__before {
  background-color: #c4c8d8;
  position: relative;
}

.results__before::after {
  position: absolute;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 10px 0 10px;
  border-width: 0.9375rem 0.625rem 0 0.625rem;
  border-color: #c4c8d8 transparent transparent transparent;
  top: 99%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .results__before::after {
    border-width: 0.75rem 0 0.75rem 1.125rem;
    border-color: transparent transparent transparent #c4c8d8;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 99%;
  }
}

.results__after {
  background: url(../images/common/mv.png) no-repeat center center/cover;
}

.results__item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  background-color: #fff;
  width: 100%;
  max-width: 120px;
  max-width: 7.5rem;
  font-weight: bold;
  line-height: 1.8;
  font-size: 20px;
  font-size: 1.25rem;
  border-radius: 0.25rem;
}
@media screen and (min-width: 1024px) {
  .results__item-title {
    font-size: 1rem;
    max-width: 6.25rem;
  }
}
@media screen and (min-width: 1440px) {
  .results__item-title {
    font-size: 1.25rem;
    max-width: 8.75rem;
  }
}

.results__item-dl {
  margin-left: re(20);
  width: 100%;
  max-width: calc(100% - 8.75rem);
}
@media screen and (min-width: 1024px) {
  .results__item-dl {
    max-width: calc(100% - 7.5rem);
  }
}
@media screen and (min-width: 1440px) {
  .results__item-dl {
    max-width: calc(100% - 10rem);
  }
}

.results__item-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
}
@media screen and (min-width: 1024px) {
  .results__item-row {
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 1440px) {
  .results__item-row {
    font-size: 0.875rem;
  }
}

.results__item-row:not(:first-child) {
  margin-top: 8px;
  margin-top: 0.5rem;
}

.results__item-dt {
  width: 100%;
  max-width: 60px;
  max-width: 3.75rem;
  text-align: center;
  padding: 0 2px;
  padding: 0 0.125rem;
  border-radius: 0.25rem;
}

.results__before .results__item-dt {
  background-color: #858ba2;
  color: #fff;
}

.results__after .results__item-dt {
  background-color: #ff5050;
  color: #fff;
}

.results__item-dd {
  width: 100%;
  max-width: calc(100% - 4.375rem);
}

.results__effect {
  background-color: #fff;
  margin-top: 30px;
  margin-top: 1.875rem;
  padding: 20px;
  padding: 1.25rem;
  text-align: center;
  font-weight: bold;
  position: relative;
}

.results__effect::after {
  content: "";
  display: block;
  background: url(../images/common/arrow.png) no-repeat center center/contain;
  width: 100px;
  width: 6.25rem;
  height: 30px;
  height: 1.875rem;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -20px;
  top: -1.25rem;
}

.results__effect-text {
  font-size: 28px;
  font-size: 1.75rem;
}

.results__effect-text strong {
  font-size: 42px;
  font-size: 2.625rem;
  color: #ff5050;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(70%, transparent),
    color-stop(70%, #fced96)
  );
  background: linear-gradient(transparent 70%, #fced96 70%);
}
@media screen and (min-width: 1024px) {
  .results__effect-text strong {
    font-size: 2.25rem;
  }
}
@media screen and (min-width: 1440px) {
  .results__effect-text strong {
    font-size: 2.625rem;
  }
}

.results__btn {
  margin-top: 30px;
  margin-top: 1.875rem;
  padding: 0 20px;
  padding: 0 1.25rem;
}

.side-form .form-row {
  background-color: #fff;
  padding: 6px;
  padding: 0.375rem;
  border-bottom: 2px solid #333;
  border-bottom: 0.125rem solid #333;
  border-left: 2px solid #333;
  border-left: 0.125rem solid #333;
  border-right: 2px solid #333;
  border-right: 0.125rem solid #333;
  font-size: 12px;
  font-size: 0.75rem;
}

.side-form .form-row:first-child {
  border-top: 2px solid #333;
  border-top: 0.125rem solid #333;
}

.side-form .form-label {
  font-weight: bold;
  font-size: 14px;
  font-size: 0.875rem;
}

.side-form .form-required {
  position: relative;
}

.side-form .form-required::after {
  content: "必須";
  background-color: #ff5050;
  color: #fff;
  font-size: 10px;
  font-size: 0.625rem;
  width: 32px;
  width: 2rem;
  height: 15px;
  height: 0.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: calc(100% + 0.75rem);
}

.side-form .form-dd {
  margin-top: 5px;
  margin-top: 0.3125rem;
}

.side-form .form-dd input[type="text"],
.side-form .form-dd input[type="email"],
.side-form .form-dd input[type="tel"],
.side-form .form-dd select {
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: inherit;
  font-family: inherit;
  width: 100%;
}

.side-form .form-dd input::-webkit-input-placeholder {
  color: #cccccc;
}

.side-form .form-dd input::-moz-placeholder {
  color: #cccccc;
}

.side-form .form-dd input::-ms-input-placeholder {
  color: #cccccc;
}

.side-form .form-dd input::placeholder {
  color: #cccccc;
}

.side-form .form-dd select {
  background: #fff url(../images/common/select-arrow.svg) no-repeat right 15px
    center/8px 5px;
  background: #fff url(../images/common/select-arrow.svg) no-repeat right
    0.9375rem center/0.5rem 0.3125rem;
}

.side-form .form-dd textarea {
  height: 23px;
  width: 100%;
}

.side-form .form-btn {
  text-align: center;
  margin-top: 10px;
  margin-top: 0.625rem;
}

.side-form .form-btn input[type="submit"] {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: bold;
  color: #fff;
  background-color: #ff5050;
  border-radius: 0.625rem;
  font-size: 18px;
  font-size: 1.125rem;
  width: 100%;
  padding: 16px 8px;
  padding: 1rem 0.5rem;
  -webkit-box-shadow: 0.5rem 0.5rem rgba(255, 80, 80, 0.3);
  box-shadow: 0.5rem 0.5rem rgba(255, 80, 80, 0.3);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  position: relative;
}

.side-form .form-btn input[type="submit"]:hover,
.side-form .form-btn input[type="submit"]:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transform: translate(0.5rem, 0.5rem);
  transform: translate(0.5rem, 0.5rem);
}

.side {
  display: none;
}
@media screen and (min-width: 1024px) {
  .side {
    display: block;
    width: 100%;
    max-width: 18.75rem;
    height: 100vh;
    position: fixed;
    right: -18.75rem;
    bottom: 0;
    z-index: 40;
    top: 4.375rem;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
  }
}
@media screen and (min-width: 1440px) {
  .side {
    top: 5rem;
  }
}

.side.add-scrolled {
  right: 0;
}

.side__head {
  background: url(../images/common/mv.png) no-repeat center center/cover;
  position: relative;
}

.side__head::after {
  content: "";
  display: block;
  padding-top: 43%;
}

.side__head-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 92%;
  height: 100%;
  max-height: 92%;
  border: 1.5px solid #ff5050;
  border: 0.09375rem solid #ff5050;
  text-align: center;
  padding: 10px;
  padding: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.side__head-img {
  width: 100%;
}

.side__head-title {
  font-size: 18px;
  font-size: 1.125rem;
  background-color: #ff5050;
  color: #fff;
  padding: 2px 6px;
  padding: 0.125rem 0.375rem;
}

.side__body {
  background-color: #f7f7f7;
  height: 100%;
  padding: 10px;
  padding: 0.625rem;
}

.side__text {
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  font-size: 1rem;
}

.side__text span {
  color: #ff5050;
}

.side__form {
  width: 100%;
  /*margin-top: 10px;
  margin-top: 0.625rem;*/
}

.side__tel {
  text-align: center;
  margin-top: 20px;
  margin-top: 1.25rem;
  font-weight: bold;
  display: none;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 1440px) {
  .side__tel {
    display: block;
  }
}

.side__tel span {
  color: #ff5050;
}

.side__tel-btn {
  display: none;
}
@media screen and (min-width: 1440px) {
  .side__tel-btn {
    display: block;
  }
}

.side__tel-btn a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: bold;
  color: #fff;
  background-color: #0692d0;
  border-radius: 0.625rem;
  font-size: 18px;
  font-size: 1.125rem;
  width: 100%;
  padding: 16px 8px;
  padding: 1rem 0.5rem;
  -webkit-box-shadow: 0.5rem 0.5rem rgba(6, 146, 208, 0.3);
  box-shadow: 0.5rem 0.5rem rgba(6, 146, 208, 0.3);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  position: relative;
  letter-spacing: 0.1em;
}

.side__tel-btn a:hover,
.side__tel-btn a:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transform: translate(0.5rem, 0.5rem);
  transform: translate(0.5rem, 0.5rem);
}

.strong {
  padding-top: 100px;
  padding-top: 6.25rem;
}
@media screen and (min-width: 768px) {
  .strong {
    padding-top: 7.5rem;
  }
}

.strong__inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 640px;
  max-width: 40rem;
}
@media screen and (min-width: 768px) {
  .strong__inner {
    max-width: 850px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.strong__content {
  background-color: #f7f7f7;
  padding: 40px 20px;
  padding: 2.5rem 1.25rem;
}
@media screen and (min-width: 600px) {
  .strong__content {
    padding: 2.5rem;
  }
}

.strong__img {
  margin: 0 auto;
  width: 100%;
  max-width: 240px;
  max-width: 15rem;
}
@media screen and (min-width: 768px) {
  .strong__img {
    max-width: 18.75rem;
  }
}

.strong__title {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: bold;
  margin-top: 30px;
  margin-top: 1.875rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .strong__title {
    font-size: 2.25rem;
  }
}

.strong__text {
  margin-top: 30px;
  margin-top: 1.875rem;
  line-height: 1.8;
}

.strong__items {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.strong__item:not(:first-child) {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.strong__item-title {
  position: relative;
  padding: 8px;
  padding: 0.5rem;
  background-color: #3e4048;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  border-bottom: solid 3px #ff5050;
  border-bottom: solid 0.1875rem #ff5050;
  z-index: 2;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .strong__item-title {
    padding: 0.625rem 2.625rem;
    -webkit-text-emphasis: left;
    text-emphasis: left;
  }
}

.strong__item-title strong {
  color: #fded97;
}

@media screen and (min-width: 768px) {
  .strong__item-title::before {
    position: absolute;
    content: "";
    left: -0.125rem;
    top: -0.125rem;
    width: 0;
    height: 0;
    border: none;
    border-left: solid 2.5rem #f7f7f7;
    border-bottom: solid 3.875rem transparent;
    z-index: 1;
  }
}

@media screen and (min-width: 768px) {
  .strong__item-title::after {
    position: absolute;
    content: "";
    right: -0.1875rem;
    top: -0.4375rem;
    width: 0;
    height: 0;
    border: none;
    border-left: solid 2.5rem transparent;
    border-bottom: solid 3.875rem #f7f7f7;
    z-index: 1;
  }
}

.strong__item-text {
  margin-top: 30px;
  margin-top: 1.875rem;
  line-height: 1.8;
}

.support {
  padding-top: 100px;
  padding-top: 6.25rem;
}
@media screen and (min-width: 768px) {
  .support {
    padding-top: 7.5rem;
  }
}

.support__lead {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
}

.support__title {
  text-align: center;
  font-size: 28px;
  font-size: 1.75rem;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .support__title {
    font-size: 2.25rem;
  }
}

.support__title span {
  color: #ff5050;
}

.support__items {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.support__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.support__item:not(:first-child) {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.support__item-number {
  color: #ff5050;
  font-weight: bold;
  font-size: 36px;
  font-size: 2.25rem;
  width: 100%;
  max-width: 60px;
  max-width: 3.75rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .support__item-number {
    max-width: 8.75rem;
  }
}

.support__item-content {
  width: 100%;
  max-width: calc(100% - 4.375rem);
  padding-left: 10px;
  padding-left: 0.625rem;
  border-left: 3px dotted #858ba2;
  border-left: 0.1875rem dotted #858ba2;
}
@media screen and (min-width: 768px) {
  .support__item-content {
    padding-left: 1.25rem;
    max-width: calc(100% - 10rem);
  }
}

.support__item-title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .support__item-title {
    font-size: 1.5rem;
  }
}

.support__item-title strong {
  color: #ff5050;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(70%, transparent),
    color-stop(70%, #fced96)
  );
  background: linear-gradient(transparent 70%, #fced96 70%);
}

.support__item-text {
  line-height: 1.8;
  margin-top: 15px;
  margin-top: 0.9375rem;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .support__item-text {
    font-size: 1rem;
  }
}

.support__content {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .support__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.support__content-title {
  line-height: 2;
  font-size: 18px;
  font-size: 1.125rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .support__content-title {
    -webkit-text-emphasis: left;
    text-emphasis: left;
  }
}

.support__content-img {
  width: 100%;
  max-width: 350px;
  max-width: 21.875rem;
  margin: 30px auto 0;
  margin: 1.875rem auto 0;
}
@media screen and (min-width: 768px) {
  .support__content-img {
    margin: 0 0 0 1.25rem;
  }
}
@media screen and (min-width: 1024px) {
  .support__content-img {
    max-width: 20rem;
  }
}
@media screen and (min-width: 1440px) {
  .support__content-img {
    max-width: 21.875rem;
  }
}

.support__text {
  margin-top: 30px;
  margin-top: 1.875rem;
  line-height: 1.8;
}

.tool {
  padding: 100px 0 0;
  padding: 6.25rem 0 0;
}
@media screen and (min-width: 768px) {
  .tool {
    padding: 7.5rem 0 0;
  }
}

.tool__lead {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
}

.tool__title {
  text-align: center;
  font-size: 28px;
  font-size: 1.75rem;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .tool__title {
    font-size: 2.25rem;
  }
}

.tool__title span {
  color: #ff5050;
}

.tool__items {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .tool__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.tool__item {
  width: 100%;
  padding: 20px;
  padding: 1.25rem;
  background-color: #f7f7f7;
}
@media screen and (min-width: 768px) {
  .tool__item {
    max-width: calc(50% - 0.625rem);
    padding: 2.5rem;
  }
}

.tool__item:nth-child(2) {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .tool__item:nth-child(2) {
    margin-top: 0;
  }
}

.tool__item:nth-child(n + 3) {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .tool__item:nth-child(n + 3) {
    margin-top: 0.9375rem;
  }
}

@media screen and (min-width: 768px) {
  .tool__item:nth-child(even) {
    margin-left: 1.25rem;
  }
}

.tool__item-q {
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}

.tool__item-q::after {
  content: "";
  display: block;
  width: 15px;
  width: 0.9375rem;
  height: 15px;
  height: 0.9375rem;
  border-top: 3px solid #ff5050;
  border-top: 0.1875rem solid #ff5050;
  border-right: 3px solid #ff5050;
  border-right: 0.1875rem solid #ff5050;
  border-radius: 0.125rem;
  position: absolute;
  right: 0;
  top: 10px;
  top: 0.625rem;
  top: 40%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media screen and (min-width: 768px) {
  .tool__item-q::after {
    top: 1.5rem;
  }
}

.is-open.tool__item-q::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.tool__item-logo {
  width: 100%;
  max-width: 35px;
  max-width: 2.1875rem;
  margin: 0 auto;
}

.tool__item:nth-child(5) .tool__item-logo {
  max-width: 80px;
  max-width: 5rem;
}
@media screen and (min-width: 768px) {
  .tool__item:nth-child(5) .tool__item-logo {
    margin-top: -0.9375rem;
  }
}

.tool__item-title {
  margin-top: 8px;
  margin-top: 0.5rem;
  text-align: center;
}

.tool__item-a {
  margin-top: 30px;
  margin-top: 1.875rem;
  line-height: 1.8;
  display: none;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .tool__item-a {
    font-size: 1rem;
  }
}

.top {
  padding-top: 100px;
  padding-top: 6.25rem;
}
@media screen and (min-width: 768px) {
  .top {
    padding-top: 6rem;
  }
}

.top__title {
  text-align: center;
  line-height: 1.8;
  font-weight: bold;
  font-size: 26px;
  font-size: 1.625rem;
}
@media screen and (min-width: 768px) {
  .top__title {
    font-size: 2.625rem;
  }
}

/*
.top__items {
  margin-top: rem(30);
}

.top__item {
  padding: rem(20);
  border-radius: rem(20);
  background-color: $lightgray;
  line-height: 1.8;
  text-align: center;
  font-size: rem(20);
  width: 100%;
  max-width: 95%;
  position: relative;
  @include mq(md) {
    padding: rem(40);
    max-width: 60%;
  }
}

.top__item::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: $lightgray transparent transparent transparent;
  position: absolute;
  top: 99%;
}

.top__item:nth-child(odd)::after {
  border-width: rem(30) rem(30) 0 0;
  right: 15%;
}

.top__item:nth-child(even)::after {
  border-width: rem(30) 0 0 rem(30);
  left: 15%;
}

.top__item:nth-child(odd) {
  margin-left: auto;
}

.top__item:not(:first-child) {
  margin-top: rem(30);
}

.top__item strong {
  font-size: rem(24);
}

.top__img {
  width: 100%;
  max-width: rem(120);
  margin: 0 auto;
  @include mq(md) {
    max-width: rem(180);
  }
}*/
.top__flex {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .top__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.top__items {
  margin-top: 30px;
  margin-top: 1.875rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .top__items {
    max-width: 70%;
  }
}

.top__item {
  padding: 20px;
  padding: 1.25rem;
  border-radius: 1.25rem;
  background-color: #f7f7f7;
  line-height: 1.8;
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top__item {
    padding: 2.5rem;
  }
}

.top__item::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #f7f7f7 transparent transparent transparent;
  position: absolute;
  top: 99%;
}
@media screen and (min-width: 768px) {
  .top__item::after {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

.top__item:nth-child(odd)::after {
  border-width: 30px 30px 0 0;
  border-width: 1.875rem 1.875rem 0 0;
  right: 15%;
}
@media screen and (min-width: 768px) {
  .top__item:nth-child(odd)::after {
    right: unset;
    left: 99%;
  }
}

@media screen and (min-width: 768px) {
  .top__item:first-child::after {
    border-width: 1.875rem 0 0 1.875rem;
    border-color: transparent transparent transparent #f7f7f7;
  }
}

.top__item:nth-child(even)::after {
  border-width: 30px 0 0 30px;
  border-width: 1.875rem 0 0 1.875rem;
  left: 15%;
}
@media screen and (min-width: 768px) {
  .top__item:nth-child(even)::after {
    border-width: 0.9375rem 0 0.9375rem 1.875rem;
    border-color: transparent transparent transparent #f7f7f7;
    left: 99%;
  }
}

.top__item:not(:first-child) {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.top__item strong {
  font-size: 24px;
  font-size: 1.5rem;
}

.top__img {
  width: 100%;
  max-width: 35%;
  margin: 20px auto 0;
  margin: 1.25rem auto 0;
}
@media screen and (min-width: 600px) {
  .top__img {
    max-width: 30%;
  }
}
@media screen and (min-width: 768px) {
  .top__img {
    max-width: 25%;
    margin: 0;
  }
}

.top__arrow {
  position: relative;
}

.top__arrow-img {
  width: 100%;
}

.top__arrow-img img {
  height: 320px;
  height: 20rem;
}

.top__arrow-title {
  width: 100%;
  position: absolute;
  top: 45%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  text-align: center;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: bold;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .top__arrow-title {
    font-size: 2.625rem;
  }
}

.top__arrow-title strong {
  font-size: 42px;
  font-size: 2.625rem;
  color: #ffdb65;
}
@media screen and (min-width: 768px) {
  .top__arrow-title strong {
    font-size: 3.5rem;
  }
}

.top__content {
  font-weight: bold;
  margin-top: 60px;
  margin-top: 3.75rem;
}

.top__content-lead {
  position: relative;
  color: #fded97;
  padding: 8px;
  padding: 0.5rem;
  background-color: #3e4048;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  border-bottom: solid 3px #ff5050;
  border-bottom: solid 0.1875rem #ff5050;
  z-index: 2;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .top__content-lead {
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 768px) {
  .top__content-lead::before {
    position: absolute;
    content: "";
    left: -0.125rem;
    top: -0.125rem;
    width: 0;
    height: 0;
    border: none;
    border-left: solid 2.5rem #fff;
    border-bottom: solid 3.875rem transparent;
    z-index: 1;
  }
}

@media screen and (min-width: 768px) {
  .top__content-lead::after {
    position: absolute;
    content: "";
    right: -0.1875rem;
    top: -0.375rem;
    width: 0;
    height: 0;
    border: none;
    border-left: solid 2.5rem transparent;
    border-bottom: solid 3.875rem #fff;
    z-index: 1;
  }
}

.top__content-flex {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .top__content-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.top__content-title {
  font-size: 34px;
  font-size: 2.125rem;
  line-height: 1.5;
  font-weight: 800;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .top__content-title {
    font-size: 2.625rem;
  }
}
@media screen and (min-width: 768px) {
  .top__content-title {
    font-size: 3.75rem;
    text-align: left;
  }
}
@media screen and (min-width: 1024px) {
  .top__content-title {
    font-size: 3.5rem;
  }
}
@media screen and (min-width: 1440px) {
  .top__content-title {
    font-size: 3.75rem;
  }
}

.top__content-title strong {
  font-weight: 800;
  color: #ff5050;
  font-size: 52px;
  font-size: 3.25rem;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(70%, transparent),
    color-stop(70%, #fced96)
  );
  background: linear-gradient(transparent 70%, #fced96 70%);
}
@media screen and (min-width: 768px) {
  .top__content-title strong {
    font-size: 5.25rem;
  }
}

.top__content-img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .top__content-img {
    max-width: 10rem;
  }
}

.top__content-img img {
  width: 100%;
  max-width: 160px;
  max-width: 10rem;
  margin: 0 auto;
}

.top__content-text {
  text-align: center;
  line-height: 1.8;
  background-color: #f1f6ff;
  padding: 20px;
  padding: 1.25rem;
  position: relative;
  border-radius: 1.25rem;
}
@media screen and (min-width: 768px) {
  .top__content-text {
    margin-top: 3.75rem;
    padding: 2.5rem;
    font-size: 1.25rem;
  }
}

.top__content-text::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 0 0 45px;
  border-width: 1.875rem 0 0 2.8125rem;
  border-color: transparent transparent transparent #f1f6ff;
  position: absolute;
  right: 10%;
  bottom: 98%;
}
@media screen and (min-width: 768px) {
  .top__content-text::after {
    border-width: 1.875rem 0 0 2.8125rem;
    right: 7%;
  }
}

.top__content-text strong {
  color: #ff5050;
}

.work {
  padding-top: 100px;
  padding-top: 6.25rem;
}
@media screen and (min-width: 768px) {
  .work {
    padding-top: 7.5rem;
  }
}

.work__lead {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
}

.work__title {
  text-align: center;
  font-size: 28px;
  font-size: 1.75rem;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .work__title {
    font-size: 2.25rem;
  }
}

.work__title span {
  color: #ff5050;
}

.work__text {
  text-align: center;
  margin-top: 30px;
  margin-top: 1.875rem;
}

.work__items {
  width: 100%;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .work__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.work__item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .work__item {
    max-width: calc(50% - 0.625rem);
  }
}

.work__item:nth-child(2) {
  margin-top: 2.5px;
  margin-top: 0.15625rem;
}
@media screen and (min-width: 768px) {
  .work__item:nth-child(2) {
    margin-top: 0;
  }
}

.work__item:nth-child(n + 3) {
  margin-top: 2.5px;
  margin-top: 0.15625rem;
}
@media screen and (min-width: 768px) {
  .work__item:nth-child(n + 3) {
    margin-top: 0.9375rem;
  }
}

@media screen and (min-width: 768px) {
  .work__item:nth-child(even) {
    margin-left: 1.25rem;
  }
}

.work__item-q {
  font-size: 14px;
  font-size: 0.875rem;
  padding: 18px 55px 18px 69px;
  padding: 1.125rem 3.4375rem 1.125rem 4.3125rem;
  position: relative;
  border-bottom: 1px solid #333;
  border-bottom: 0.0625rem solid #333;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .work__item-q {
    padding: 1.5rem 3.4375rem;
    font-size: 1rem;
  }
}
@media screen and (min-width: 1024px) {
  .work__item-q {
    padding: 1.5rem 3.4375rem;
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 1440px) {
  .work__item-q {
    padding: 1.5rem 3.4375rem;
    font-size: 1rem;
  }
}

/*
.work__item-q::after {
  content: "Q";
  font-size: rem(18);
  color: $red;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 8.8%;
  @include mq(md) {
    left: 2.8%;
  }
}
*/
.work__item-icon {
  width: 12px;
  width: 0.75rem;
  height: 12px;
  height: 0.75rem;
  position: absolute;
  right: 15px;
  right: 0.9375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .work__item-icon {
    width: 1.125rem;
    height: 1.125rem;
    right: 1.6875rem;
  }
}

.work__item-icon span {
  width: 12px;
  width: 0.75rem;
  height: 2px;
  height: 0.125rem;
  background-color: #ff5050;
  position: absolute;
  top: 54%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
}
@media screen and (min-width: 768px) {
  .work__item-icon span {
    width: 1.125rem;
  }
}

.work__item-icon span:nth-child(2) {
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.work__item-icon.is-open span:nth-child(2) {
  -webkit-transform: translateY(-50%) rotate(0);
  transform: translateY(-50%) rotate(0);
}

.work__item-a {
  font-size: 14px;
  font-size: 0.875rem;
  padding: 20px;
  padding: 1.25rem;
  position: relative;
  display: none;
  background-color: #f7f7f7;
  margin: 10px;
  margin: 0.625rem;
  border-radius: 1.25rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .work__item-a {
    font-size: 1rem;
  }
}

.Partner {
  padding: 24px 0;
  background-color: #0a0a0a;
  position: relative;
  z-index: 9999; /* 必要に応じて数値調整 */
}

.Partner__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.Partner__logo {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.partner-logo {
  width: 56px;
  height: 56px;
  display: block;
  object-fit: contain;
}

/*
.work__item-a::after {
  content: "A";
  font-size: rem(18);
  color: $red;
  position: absolute;
  top: rem(25);
  left: 8.8%;
  @include mq(md) {
    left: 2.8%;
  }
}*/
/*# sourceMappingURL=styles.css.map */
