@charset "UTF-8";
html {
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

*,
*::before,
*::after {
  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;
}

a {
  text-decoration: none;
}

/* 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 */
/* フォームリセット */
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;
}

.header {
  position: fixed;
  top: 1.8229166667vw;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  max-width: 72.9166666667vw;
  width: 100%;
  height: 4.3229166667vw;
  background-color: #fff;
  border-radius: 0.5208333333vw;
  box-shadow: 0 0.2083333333vw 0.2083333333vw rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 1920px) {
  .header {
    top: 2.1875rem;
    max-width: 87.5rem;
    height: 5.1875rem;
    border-radius: 0.625rem;
    box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.16);
  }
}
@media screen and (max-width: 768px) {
  .header {
    background-color: transparent;
    top: 0;
    height: 15.3846153846vw;
    max-width: 100.2564102564vw;
    width: 100.2564102564vw;
    background-color: #fff;
    border-radius: 0;
  }
}

.header__inner {
  width: 100%;
  max-width: 68.75vw;
  margin-inline: auto;
  padding-left: 1.0416666667vw;
  padding-right: 1.0416666667vw;
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 1920px) {
  .header__inner {
    max-width: 82.5rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .header__inner {
    max-width: 84.6153846154vw;
  }
}

.header__name {
  max-width: 17.9166666667vw;
}
@media screen and (min-width: 1920px) {
  .header__name {
    max-width: 21.5rem;
  }
}
@media screen and (max-width: 768px) {
  .header__name {
    max-width: 38.4615384615vw;
  }
}

.header__nav {
  height: inherit;
}

.header__nav-items {
  height: inherit;
  display: flex;
  align-items: center;
}

.header__nav-item {
  height: inherit;
  display: flex;
  align-items: center;
  margin-left: 2.6041666667vw;
}
@media screen and (min-width: 1920px) {
  .header__nav-item {
    margin-left: 3.125rem;
  }
}

.header__nav-link {
  height: inherit;
  display: flex;
  align-items: center;
  color: #000;
  font-size: 1.0416666667vw;
  font-weight: 700;
  position: relative;
  transition: color 0.3s;
}
@media screen and (min-width: 1920px) {
  .header__nav-link {
    font-size: 1.25rem;
  }
}
.header__nav-link:hover {
  color: #019DE8;
  opacity: 1;
}

.hamburger {
  position: fixed;
  top: 5.7692307692vw;
  right: 3.8461538462vw;
  z-index: 9999;
  width: 6.4102564103vw;
  height: 4.1025641026vw;
  cursor: pointer;
}

.hamburger span {
  position: absolute;
  left: 0;
  background-color: #172439;
  width: 100%;
  height: 0.5128205128vw;
  display: inline-block;
  transition: transform 0.3s, opacity 0.3s;
}

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

.hamburger span:nth-child(2) {
  top: 2.0512820513vw;
}

.hamburger span:nth-child(3) {
  top: 4.1025641026vw;
}

.hamburger.is-active span:nth-child(1) {
  top: 2.0512820513vw;
  transform: rotate(-135deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  top: 2.0512820513vw;
  transform: rotate(135deg);
}

.drawer-menu {
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.95);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5000;
  display: none;
}

.drawer-menu__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: inherit;
  flex-direction: column;
}

.drawer-menu__items {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10.2564102564vw;
}

.drawer-menu__item {
  display: inline-block;
}

.drawer-menu__link {
  color: #000;
  font-size: 4.6153846154vw;
  font-weight: 700;
  display: inline-block;
  width: 51.2820512821vw;
  text-align: center;
}

.hero {
  background-color: #172439;
  background-image: url(../images/hero.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100dvh;
  max-height: 56.3020833333vw;
  position: relative;
  z-index: 100;
}
@media screen and (min-width: 1920px) {
  .hero {
    max-height: 67.5625rem;
  }
}
@media screen and (max-width: 768px) {
  .hero {
    max-height: 153.8461538462vw;
    background-image: url(../images/hero-sp.jpg);
    margin-top: 15.3846153846vw;
    height: 153.8461538462vw;
  }
}

.hero__inner {
  max-width: 75vw;
  padding-left: 1.0416666667vw;
  padding-right: 1.0416666667vw;
  margin-inline: auto;
  height: 100%;
  display: grid;
  align-items: center;
}
@media screen and (min-width: 1920px) {
  .hero__inner {
    max-width: 90rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .hero__inner {
    max-width: 89.7435897436vw;
    padding-left: 0;
    padding-right: 0;
    align-items: initial;
    padding-top: 5.1282051282vw;
  }
}

.hero__wrap {
  max-width: 30.2083333333vw;
}
@media screen and (min-width: 1920px) {
  .hero__wrap {
    max-width: 36.25rem;
  }
}
@media screen and (max-width: 768px) {
  .hero__wrap {
    max-width: 100%;
  }
}

.hero__text {
  font-size: 2.96875vw;
  font-weight: 700;
  color: #fff;
}
@media screen and (min-width: 1920px) {
  .hero__text {
    font-size: 3.5625rem;
  }
}
@media screen and (max-width: 768px) {
  .hero__text {
    font-size: 7.1794871795vw;
  }
}

.hero__img {
  margin-top: 0.78125vw;
  margin-left: 0.5729166667vw;
  max-width: 29.5833333333vw;
}
@media screen and (min-width: 1920px) {
  .hero__img {
    margin-top: 0.9375rem;
    margin-left: 0.6875rem;
    max-width: 35.5rem;
  }
}
@media screen and (max-width: 768px) {
  .hero__img {
    margin-top: 5.1282051282vw;
    margin-left: 0;
    max-width: 100%;
  }
}

.hero__btn-wrap {
  max-width: 20.2604166667vw;
  margin-inline: auto;
  margin-top: 2.5vw;
  background-color: #F4F71C;
  text-align: center;
  border-radius: 0.2604166667vw;
}
@media screen and (min-width: 1920px) {
  .hero__btn-wrap {
    max-width: 24.3125rem;
    margin-top: 3rem;
    border-radius: 0.3125rem;
  }
}
@media screen and (max-width: 768px) {
  .hero__btn-wrap {
    max-width: 69.2307692308vw;
    margin-top: 75.641025641vw;
  }
}

.hero__btn {
  font-size: 0.8854166667vw;
  font-weight: 800;
  color: #000;
  padding-top: 1.25vw;
  padding-bottom: 1.1979166667vw;
  display: inline-block;
  width: 100%;
  position: relative;
}
@media screen and (min-width: 1920px) {
  .hero__btn {
    font-size: 1.0625rem;
    padding-top: 1.5rem;
    padding-bottom: 1.4375rem;
  }
}
@media screen and (max-width: 768px) {
  .hero__btn {
    font-size: 4.1025641026vw;
    padding-top: 3.8461538462vw;
    padding-bottom: 3.8461538462vw;
  }
}
.hero__btn:hover {
  opacity: 1;
}
.hero__btn::before {
  position: absolute;
  content: "";
  width: 0.8854166667vw;
  height: 0.8854166667vw;
  top: 52.5%;
  transform: translateY(-50%);
  right: 2.7604166667vw;
  background-image: url(../images/arrow-black.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s;
}
@media screen and (min-width: 1920px) {
  .hero__btn::before {
    width: 1.0625rem;
    height: 1.0625rem;
    right: 3.3125rem;
  }
}
@media screen and (max-width: 768px) {
  .hero__btn::before {
    top: 50%;
    width: 3.8461538462vw;
    height: 6.4102564103vw;
    right: 5.1282051282vw;
  }
}
.hero__btn:hover::before {
  transform: translate(0.2604166667vw, -50%);
}
@media screen and (min-width: 1920px) {
  .hero__btn:hover::before {
    transform: translate(0.3125rem, -50%);
  }
}

.selected {
  position: relative;
  z-index: 100;
}

.selected__title {
  font-size: 2.5vw;
  font-weight: 700;
  text-align: center;
  line-height: 1.4583333333;
  color: #fff;
  padding: 2.0833333333vw 1.0416666667vw;
  background-color: #353C3E;
  position: relative;
}
.selected__title::before {
  position: absolute;
  content: "";
  width: 0.15625vw;
  height: 4.6354166667vw;
  bottom: -3.28125vw;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
}
@media screen and (min-width: 1920px) {
  .selected__title::before {
    width: 0.1875rem;
    height: 5.5625rem;
    bottom: -3.9375rem;
  }
}
@media screen and (max-width: 768px) {
  .selected__title::before {
    width: 0.5128205128vw;
    height: 10.2564102564vw;
    bottom: -5.1282051282vw;
  }
}
@media screen and (min-width: 1920px) {
  .selected__title {
    font-size: 3rem;
    padding: 2.5rem 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .selected__title {
    font-size: 6.1538461538vw;
    padding: 7.6923076923vw 2.5641025641vw;
  }
}

.selected__contents {
  background-color: #EAEAEA;
  padding-top: 6.25vw;
  padding-bottom: 5.2083333333vw;
  padding-left: 1.0416666667vw;
  padding-right: 1.0416666667vw;
}
@media screen and (min-width: 1920px) {
  .selected__contents {
    padding-top: 7.5rem;
    padding-bottom: 6.25rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .selected__contents {
    padding-top: 10.2564102564vw;
    padding-bottom: 10.2564102564vw;
    padding-left: 0;
    padding-right: 0;
  }
}

.selected__wrap {
  max-width: 66.40625vw;
  margin-inline: auto;
  display: flex;
  gap: 2.0833333333vw;
}
@media screen and (min-width: 1920px) {
  .selected__wrap {
    max-width: 79.6875rem;
    gap: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .selected__wrap {
    max-width: 89.7435897436vw;
    gap: 5.1282051282vw;
    flex-direction: column;
  }
}

.selected__img-wrap {
  max-width: 29.9479166667vw;
  width: 100%;
}
@media screen and (min-width: 1920px) {
  .selected__img-wrap {
    max-width: 35.9375rem;
  }
}
@media screen and (max-width: 768px) {
  .selected__img-wrap {
    max-width: 100%;
  }
}

.selected__img {
  border-radius: 1.0416666667vw;
}
@media screen and (min-width: 1920px) {
  .selected__img {
    border-radius: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .selected__img {
    aspect-ratio: 350/180;
    object-fit: cover;
    height: auto;
    object-position: top;
    border-radius: 5.1282051282vw;
  }
}

.selected__text-wrap {
  max-width: 34.375vw;
  width: 100%;
}
@media screen and (min-width: 1920px) {
  .selected__text-wrap {
    max-width: 41.25rem;
  }
}
@media screen and (max-width: 768px) {
  .selected__text-wrap {
    max-width: 100%;
  }
}

.selected__item {
  background-color: #fff;
  padding: 1.0416666667vw 4.0625vw;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(141, 141, 141, 0.16);
  font-size: 1.3583333333vw;
  font-weight: 700;
  position: relative;
  max-height: 6.3541666667vw;
  min-height: 6.3541666667vw;
  display: grid;
  align-items: center;
}
@media screen and (min-width: 1920px) {
  .selected__item {
    padding: 1.25rem 4.875rem;
    box-shadow: 0 3px 6px rgba(141, 141, 141, 0.16);
    font-size: 1.65rem;
    max-height: 7.625rem;
    min-height: 7.625rem;
  }
}
@media screen and (max-width: 768px) {
  .selected__item {
    font-size: 4.1025641026vw;
    max-height: initial;
    padding: 2.5641025641vw 2.5641025641vw 2.5641025641vw 12.8205128205vw;
    min-height: 17.4358974359vw;
  }
}
.selected__item::before {
  position: absolute;
  content: "";
  width: 1.4583333333vw;
  height: 1.4583333333vw;
  top: 50%;
  transform: translateY(-50%);
  left: 1.8229166667vw;
  background-image: url(../images/check-red.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 1920px) {
  .selected__item::before {
    width: 1.75rem;
    height: 1.75rem;
    left: 2.1875rem;
  }
}
@media screen and (max-width: 768px) {
  .selected__item::before {
    width: 5.1282051282vw;
    height: 5.1282051282vw;
    left: 3.8461538462vw;
  }
}

.selected__item:not(:first-child) {
  margin-top: 2.0833333333vw;
}
@media screen and (min-width: 1920px) {
  .selected__item:not(:first-child) {
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .selected__item:not(:first-child) {
    margin-top: 2.5641025641vw;
  }
}

.test {
  background-image: url(../images/blue-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 100;
}

.test__inner {
  max-width: 68.75vw;
  padding-left: 1.0416666667vw;
  padding-right: 1.0416666667vw;
  padding-top: 5.9895833333vw;
  padding-bottom: 14.4791666667vw;
  margin-inline: auto;
}
@media screen and (min-width: 1920px) {
  .test__inner {
    max-width: 82.5rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-top: 7.1875rem;
    padding-bottom: 17.375rem;
  }
}
@media screen and (max-width: 768px) {
  .test__inner {
    max-width: 89.7435897436vw;
    padding-left: 0;
    padding-right: 0;
    padding-top: 10.2564102564vw;
    padding-bottom: 46.1538461538vw;
  }
}

.test__title-wrap {
  text-align: center;
}

.test__title {
  font-size: 2.5vw;
  font-weight: 700;
  color: #fff;
  display: block;
}
@media screen and (min-width: 1920px) {
  .test__title {
    font-size: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .test__title {
    font-size: 6.1538461538vw;
  }
}

.test__title.test__title--small {
  font-size: 1.0416666667vw;
  font-weight: 700;
  color: #F4F71C;
}
@media screen and (min-width: 1920px) {
  .test__title.test__title--small {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .test__title.test__title--small {
    font-size: 3.5897435897vw;
  }
}

.test__items {
  margin-top: 3.125vw;
  display: grid;
  row-gap: 2.0833333333vw;
  column-gap: 3.5416666667vw;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (min-width: 1920px) {
  .test__items {
    row-gap: 2.5rem;
    column-gap: 4.25rem;
    margin-top: 3.75rem;
  }
}
@media screen and (max-width: 768px) {
  .test__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5641025641vw;
    margin-top: 10.2564102564vw;
  }
}

.test__item {
  border: 2px solid #fff;
  padding: 0.8854166667vw 1.09375vw 0.7291666667vw;
}
@media screen and (min-width: 1920px) {
  .test__item {
    padding: 1.0625rem 1.3125rem 0.875rem;
  }
}
@media screen and (max-width: 768px) {
  .test__item {
    padding: 2.5641025641vw;
  }
}

.test__item-img {
  aspect-ratio: 245/147;
  object-fit: cover;
  height: auto;
}

.test__item-name {
  margin-top: 0.625vw;
  text-align: center;
  font-size: 1.09375vw;
  font-weight: 500;
  color: #fff;
}
@media screen and (min-width: 1920px) {
  .test__item-name {
    margin-top: 0.75rem;
    font-size: 1.3125rem;
  }
}
@media screen and (max-width: 768px) {
  .test__item-name {
    font-size: 4.1025641026vw;
    margin-top: 2.5641025641vw;
  }
}

.test__more-wrap {
  position: absolute;
  bottom: -8.046875vw;
  left: 50%;
  transform: translateX(-50%);
  background-color: #E3EEF1;
  max-width: 66.6666666667vw;
  width: 100%;
  margin-inline: auto;
  border-radius: 10px;
}
@media screen and (min-width: 1920px) {
  .test__more-wrap {
    max-width: 80rem;
    bottom: -9.65625rem;
  }
}
@media screen and (max-width: 768px) {
  .test__more-wrap {
    max-width: 89.7435897436vw;
    bottom: -30.7692307692vw;
  }
}

.test__more-wrap__inner {
  margin-inline: auto;
  padding-top: 4.7395833333vw;
  padding-bottom: 2.7083333333vw;
  padding-left: 5.4166666667vw;
  padding-right: 5.2083333333vw;
  position: relative;
}
@media screen and (min-width: 1920px) {
  .test__more-wrap__inner {
    padding-top: 5.6875rem;
    padding-bottom: 3.25rem;
    padding-left: 6.5rem;
    padding-right: 6.25rem;
  }
}
@media screen and (max-width: 768px) {
  .test__more-wrap__inner {
    padding-top: 15.3846153846vw;
    padding-bottom: 7.6923076923vw;
    padding-left: 3.8461538462vw;
    padding-right: 3.8461538462vw;
  }
}

.test__more-title {
  background-color: #F4F71C;
  max-width: 16.40625vw;
  width: 100%;
  position: absolute;
  top: -2.0833333333vw;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 0.8854166667vw;
  padding-bottom: 0.78125vw;
  text-align: center;
  font-size: 1.0416666667vw;
  font-weight: 700;
  border-radius: 5px;
}
.test__more-title::before {
  position: absolute;
  content: "";
  width: 1.1979166667vw;
  height: 1.0416666667vw;
  bottom: -1.0416666667vw;
  left: 50%;
  transform: translateX(-50%);
  background-color: #F4F71C;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}
@media screen and (min-width: 1920px) {
  .test__more-title::before {
    width: 1.4375rem;
    height: 1.25rem;
    bottom: -1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .test__more-title::before {
    width: 5.8974358974vw;
    height: 5.1282051282vw;
    bottom: -5.1282051282vw;
  }
}
@media screen and (min-width: 1920px) {
  .test__more-title {
    max-width: 19.6875rem;
    top: -2.5rem;
    padding-top: 1.0625rem;
    padding-bottom: 0.9375rem;
    font-size: 1.25rem;
    border-radius: 5px;
  }
}
@media screen and (max-width: 768px) {
  .test__more-title {
    font-size: 4.1025641026vw;
    max-width: 71.7948717949vw;
    top: -10.2564102564vw;
    padding-top: 2.5641025641vw;
    padding-bottom: 2.5641025641vw;
  }
}

.test__more-items-top {
  display: grid;
  gap: 3.125vw;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (min-width: 1920px) {
  .test__more-items-top {
    gap: 3.75rem;
  }
}
@media screen and (max-width: 768px) {
  .test__more-items-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5641025641vw;
  }
}

.test__more-item-top {
  background-color: #172439;
  border-radius: 60px;
}

.test__more-text {
  color: #fff;
  min-height: 3.4375vw;
  font-size: 1.25vw;
  font-weight: 700;
  display: grid;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1920px) {
  .test__more-text {
    min-height: 4.125rem;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .test__more-text {
    padding-top: 1.2820512821vw;
    padding-bottom: 1.2820512821vw;
    font-size: 4.1025641026vw;
  }
}

.test__more-text.test__more-text--small {
  font-size: 1.0416666667vw;
}
@media screen and (min-width: 1920px) {
  .test__more-text.test__more-text--small {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .test__more-text.test__more-text--small {
    font-size: 3.5897435897vw;
  }
}

.test__more-items-bottom {
  max-width: 41.25vw;
  margin-inline: auto;
  margin-top: 1.7708333333vw;
  display: grid;
  gap: 3.125vw;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (min-width: 1920px) {
  .test__more-items-bottom {
    max-width: 49.5rem;
    margin-top: 2.125rem;
    gap: 3.75rem;
  }
}
@media screen and (max-width: 768px) {
  .test__more-items-bottom {
    max-width: 100%;
    margin-top: 2.5641025641vw;
    gap: 2.5641025641vw;
  }
}

.test__more-item-bottom {
  background-color: #172439;
  border-radius: 60px;
}

.machine {
  background-color: #172439;
}

.machine__inner {
  max-width: 100vw;
  padding-top: 11.9791666667vw;
  padding-bottom: 5.2083333333vw;
  margin-inline: auto;
}
@media screen and (min-width: 1920px) {
  .machine__inner {
    max-width: 120rem;
    padding-top: 14.375rem;
    padding-bottom: 6.25rem;
  }
}
@media screen and (max-width: 768px) {
  .machine__inner {
    padding-top: 35.8974358974vw;
    padding-bottom: 10.2564102564vw;
  }
}

.machine__title-wrap {
  padding-top: 2.5rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .machine__title-wrap {
    padding-top: 5.1282051282vw;
  }
}

.machine__title {
  font-size: 3.125vw;
  color: #F4F71C;
  font-weight: 700;
  display: block;
}
@media screen and (min-width: 1920px) {
  .machine__title {
    font-size: 3.75rem;
  }
}
@media screen and (max-width: 768px) {
  .machine__title {
    font-size: 6.1538461538vw;
  }
}

.machine__title--small {
  font-size: 1.4583333333vw;
}
@media screen and (min-width: 1920px) {
  .machine__title--small {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 768px) {
  .machine__title--small {
    font-size: 3.5897435897vw;
  }
}

.machine__contents {
  margin-top: 3.6458333333vw;
}
@media screen and (min-width: 1920px) {
  .machine__contents {
    margin-top: 4.375rem;
  }
}
@media screen and (max-width: 768px) {
  .machine__contents {
    margin-top: 10.2564102564vw;
  }
}

.machine__wrap {
  margin-top: 5.2083333333vw;
  display: flex;
  gap: 5.2083333333vw;
  justify-content: end;
  align-items: center;
}
@media screen and (min-width: 1920px) {
  .machine__wrap {
    margin-top: 6.25rem;
    gap: 6.25rem;
  }
}
@media screen and (max-width: 768px) {
  .machine__wrap {
    flex-direction: column;
    margin-top: 10.2564102564vw;
  }
}

.machine__wrap.machine__wrap--reverse {
  flex-direction: row-reverse;
  justify-content: start;
}
@media screen and (max-width: 768px) {
  .machine__wrap.machine__wrap--reverse {
    flex-direction: column;
  }
}

.machine__wrap.machine__wrap--first {
  margin-top: 0;
}

.machine__text-wrap {
  max-width: 33.8541666667vw;
  width: 100%;
}
@media screen and (min-width: 1920px) {
  .machine__text-wrap {
    max-width: 40.625rem;
  }
}
@media screen and (max-width: 768px) {
  .machine__text-wrap {
    max-width: 89.7435897436vw;
  }
}

.machine__sub-title {
  font-size: 2.6041666667vw;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}
@media screen and (min-width: 1920px) {
  .machine__sub-title {
    font-size: 3.125rem;
  }
}
@media screen and (max-width: 768px) {
  .machine__sub-title {
    font-size: 6.1538461538vw;
  }
}

.machine__text {
  margin-top: 1.0416666667vw;
  font-size: 1.09375vw;
  font-weight: 500;
  line-height: 2;
  color: #fff;
}
@media screen and (min-width: 1920px) {
  .machine__text {
    margin-top: 1.25rem;
    font-size: 1.3125rem;
  }
}
@media screen and (max-width: 768px) {
  .machine__text {
    margin-top: 2.5641025641vw;
    font-size: 3.5897435897vw;
  }
}

.machine__img-wrap {
  max-width: 47.3958333333vw;
}
@media screen and (min-width: 1920px) {
  .machine__img-wrap {
    max-width: 56.875rem;
  }
}
@media screen and (max-width: 768px) {
  .machine__img-wrap {
    max-width: 89.7435897436vw;
    margin-left: auto;
  }
}

.machine__img {
  border-radius: 20px 0 0 20px;
  aspect-ratio: 1.7105263158;
  object-fit: cover;
  height: auto;
}
@media screen and (min-width: 1920px) {
  .machine__img {
    aspect-ratio: 1.7105263158;
  }
}

.machine__img.machine__img--reverse {
  border-radius: 0 20px 20px 0;
}

@media screen and (max-width: 768px) {
  .machine__img-wrap.machine__img-wrap--reverse {
    margin-left: initial;
    margin-right: auto;
  }
}

.reason {
  background-color: #172439;
}

.reason__inner {
  max-width: 100vw;
  padding-top: 4.5833333333vw;
  padding-bottom: 9.6875vw;
  margin-inline: auto;
  background-image: url(../images/reason-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 1920px) {
  .reason__inner {
    max-width: 120rem;
    padding-top: 5.5rem;
    padding-bottom: 11.625rem;
  }
}
@media screen and (max-width: 768px) {
  .reason__inner {
    padding-top: 10.2564102564vw;
    padding-bottom: 10.2564102564vw;
    background-image: url(../images/reason-bg-sp.jpg);
  }
}

.reason__title {
  text-align: center;
  font-size: 3.125vw;
  font-weight: 700;
  color: #F4F71C;
}
@media screen and (min-width: 1920px) {
  .reason__title {
    font-size: 3.75rem;
  }
}
@media screen and (max-width: 768px) {
  .reason__title {
    font-size: 6.1538461538vw;
  }
}

.reason__contents {
  margin-top: 5.0520833333vw;
  max-width: 72.9166666667vw;
  margin-inline: auto;
  display: flex;
  gap: 5.2083333333vw;
}
@media screen and (min-width: 1920px) {
  .reason__contents {
    margin-top: 6.0625rem;
    max-width: 87.5rem;
    gap: 6.25rem;
  }
}
@media screen and (max-width: 768px) {
  .reason__contents {
    flex-direction: column;
    gap: 20.5128205128vw;
    max-width: 89.7435897436vw;
  }
}

.reason__en {
  font-size: 5.6770833333vw;
  font-weight: 700;
  color: #fff;
  opacity: 0.4;
}
@media screen and (min-width: 1920px) {
  .reason__en {
    font-size: 6.8125rem;
  }
}
@media screen and (max-width: 768px) {
  .reason__en {
    font-size: 8.2051282051vw;
  }
}

.reason__sub-title {
  margin-top: -1.3020833333vw;
  font-size: 2.6041666667vw;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
  padding-bottom: 1.5625vw;
  border-bottom: 0.1041666667vw solid #fff;
}
@media screen and (min-width: 1920px) {
  .reason__sub-title {
    margin-top: -1.5625rem;
    font-size: 3.125rem;
    padding-bottom: 1.875rem;
    border-bottom: 0.125rem solid #fff;
  }
}
@media screen and (max-width: 768px) {
  .reason__sub-title {
    font-size: 5.3846153846vw;
  }
}

.reason__text {
  margin-top: 1.0416666667vw;
  font-size: 1.09375vw;
  font-weight: 500;
  color: #fff;
  line-height: 1.9047619048;
}
@media screen and (min-width: 1920px) {
  .reason__text {
    margin-top: 1.25rem;
    font-size: 1.3125rem;
  }
}
@media screen and (max-width: 768px) {
  .reason__text {
    margin-top: 2.5641025641vw;
    font-size: 3.5897435897vw;
  }
}

.product {
  background: linear-gradient(90deg, #019DE8, #0356BB);
}

.product__inner {
  max-width: 72.9166666667vw;
  padding-top: 4.4791666667vw;
  padding-bottom: 5.2604166667vw;
  margin-inline: auto;
}
@media screen and (min-width: 1920px) {
  .product__inner {
    max-width: 87.5rem;
    padding-top: 5.375rem;
    padding-bottom: 6.3125rem;
  }
}
@media screen and (max-width: 768px) {
  .product__inner {
    max-width: 89.7435897436vw;
    padding-top: 10.2564102564vw;
    padding-bottom: 10.2564102564vw;
  }
}

.product__title {
  font-size: 3.125vw;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 1920px) {
  .product__title {
    font-size: 3.75rem;
  }
}
@media screen and (max-width: 768px) {
  .product__title {
    font-size: 6.1538461538vw;
  }
}

.product__items {
  margin-top: 4.375vw;
  display: grid;
  gap: 2.0833333333vw;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 1920px) {
  .product__items {
    margin-top: 5.25rem;
    gap: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .product__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 5.1282051282vw;
    margin-top: 10.2564102564vw;
  }
}

.product__item {
  border: 0.1041666667vw solid #fff;
  padding-top: 2.6041666667vw;
  padding-bottom: 2.6041666667vw;
  padding-left: 3.0208333333vw;
  padding-right: 3.90625vw;
  display: flex;
  flex-direction: column;
  min-height: 36.8333333333vw;
  max-height: 40.8333333333vw;
}
@media screen and (min-width: 1920px) {
  .product__item {
    border: 0.125rem solid #fff;
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
    padding-left: 3.625rem;
    padding-right: 4.6875rem;
    min-height: 46rem;
    max-height: 49rem;
  }
}
@media screen and (max-width: 768px) {
  .product__item {
    min-height: initial;
    max-height: initial;
    padding-top: 5.1282051282vw;
    padding-bottom: 5.1282051282vw;
    padding-left: 2.5641025641vw;
    padding-right: 2.5641025641vw;
  }
}

.product__name {
  font-size: 1.5625vw;
  font-weight: 700;
  color: #fff;
  line-height: 1.3333333333;
}
@media screen and (min-width: 1920px) {
  .product__name {
    font-size: 1.875rem;
  }
}
@media screen and (max-width: 768px) {
  .product__name {
    font-size: 5.1282051282vw;
    text-align: center;
  }
}

.product__img-wrap {
  display: grid;
  justify-content: center;
}

.product__img.product__img--01 {
  max-width: 15.979167vw;
  margin-top: 1.6666666667vw;
  margin-bottom: 1.7708333333vw;
}
@media screen and (min-width: 1920px) {
  .product__img.product__img--01 {
    margin-top: 2rem;
    margin-bottom: 2.125rem;
  }
}
@media screen and (max-width: 768px) {
  .product__img.product__img--01 {
    margin-top: 5.1282051282vw;
    margin-bottom: 5.1282051282vw;
    max-width: 25.641025641vw;
  }
}

.product__img.product__img--02 {
  max-width: 16.4375vw;
  margin-top: 1.5625vw;
  margin-bottom: 1.09375vw;
}
@media screen and (min-width: 1920px) {
  .product__img.product__img--02 {
    margin-top: 1.875rem;
    margin-bottom: 1.3125rem;
  }
}
@media screen and (max-width: 768px) {
  .product__img.product__img--02 {
    max-width: 30.7692307692vw;
    margin-top: 5.1282051282vw;
    margin-bottom: 5.1282051282vw;
  }
}

.product__img.product__img--03 {
  max-width: 13.989583vw;
  margin-top: 5.2083333333vw;
  margin-bottom: 3.125vw;
}
@media screen and (min-width: 1920px) {
  .product__img.product__img--03 {
    max-width: 13.1875rem;
    margin-top: 6.25rem;
    margin-bottom: 3.75rem;
  }
}
@media screen and (max-width: 768px) {
  .product__img.product__img--03 {
    max-width: 35.8974358974vw;
    margin-top: 5.1282051282vw;
    margin-bottom: 5.1282051282vw;
  }
}

.product__img.product__img--04 {
  max-width: 10.6770833333vw;
  margin-top: 2.8645833333vw;
  margin-bottom: 2.2395833333vw;
}
@media screen and (min-width: 1920px) {
  .product__img.product__img--04 {
    max-width: 12.8125rem;
    margin-top: 3.4375rem;
    margin-bottom: 2.6875rem;
  }
}
@media screen and (max-width: 768px) {
  .product__img.product__img--04 {
    max-width: 35.8974358974vw;
    margin-top: 5.1282051282vw;
    margin-bottom: 5.1282051282vw;
  }
}

.product__text {
  max-width: 24.21875vw;
  margin-inline: auto;
  font-size: 1.09375vw;
  font-weight: 500;
  color: #fff;
  line-height: 1.9047619048;
}
@media screen and (min-width: 1920px) {
  .product__text {
    max-width: 29.0625rem;
    font-size: 1.3125rem;
  }
}
@media screen and (max-width: 768px) {
  .product__text {
    font-size: 4.1025641026vw;
    max-width: 90%;
    line-height: 1.7;
  }
}

.product__btn-wrap {
  max-width: 15.7291666667vw;
  max-height: 3.4895833333vw;
  width: 100%;
  margin-inline: auto;
  text-align: center;
  background-color: #F4F71C;
  margin-top: auto;
  position: relative;
}
@media screen and (min-width: 1920px) {
  .product__btn-wrap {
    max-width: 18.875rem;
    max-height: 4.1875rem;
  }
}
@media screen and (max-width: 768px) {
  .product__btn-wrap {
    margin-top: 1.25rem;
    max-height: initial;
    max-width: 51.2820512821vw;
    order: 3;
  }
}
.product__btn-wrap::before {
  position: absolute;
  content: "";
  width: 1.0416666667vw;
  height: 1.0416666667vw;
  top: 50%;
  transform: translateY(-50%);
  right: 3.6458333333vw;
  background-image: url(../images/arrow-navy.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s;
}
@media screen and (min-width: 1920px) {
  .product__btn-wrap::before {
    width: 1.25rem;
    height: 1.25rem;
    right: 4.375rem;
  }
}
@media screen and (max-width: 768px) {
  .product__btn-wrap::before {
    width: 3.8461538462vw;
    height: 6.4102564103vw;
    right: 5.1282051282vw;
  }
}
.product__btn-wrap:hover::before {
  transform: translate(0.2604166667vw, -50%);
}
@media screen and (min-width: 1920px) {
  .product__btn-wrap:hover::before {
    transform: translate(0.3125rem, -50%);
  }
}

.product__btn {
  font-size: 0.9375vw;
  font-weight: 700;
  color: #004287;
  display: inline-block;
  width: 100%;
  padding-top: 1.0416666667vw;
  padding-bottom: 1.0416666667vw;
  display: grid;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1920px) {
  .product__btn {
    font-size: 1.125rem;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .product__btn {
    font-size: 4.1025641026vw;
    padding-top: 2.5641025641vw;
    padding-bottom: 2.5641025641vw;
  }
}
.product__btn:hover {
  opacity: 1;
}

.product__item-long {
  margin-top: 2.1875vw;
  border: 0.1041666667vw solid #fff;
  padding-top: 3.0729166667vw;
  padding-left: 3.0208333333vw;
  padding-right: 9.6354166667vw;
  padding-bottom: 2.2916666667vw;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 1920px) {
  .product__item-long {
    margin-top: 2.625rem;
    border: 0.125rem solid #fff;
    padding-top: 3.6875rem;
    padding-left: 3.625rem;
    padding-right: 11.5625rem;
    padding-bottom: 2.75rem;
  }
}
@media screen and (max-width: 768px) {
  .product__item-long {
    flex-direction: column;
    padding-left: 2.5641025641vw;
    padding-right: 2.5641025641vw;
    padding-top: 5.1282051282vw;
    padding-bottom: 5.1282051282vw;
    margin-top: 5.1282051282vw;
  }
}

.product__item-long-name {
  font-size: 1.5625vw;
  font-weight: 700;
  color: #fff;
  line-height: 1.3333333333;
}
@media screen and (min-width: 1920px) {
  .product__item-long-name {
    font-size: 1.875rem;
  }
}
@media screen and (max-width: 768px) {
  .product__item-long-name {
    font-size: 5.1282051282vw;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .product__item-long-text-wrap {
    display: contents;
  }
}

.product__item-long-text {
  margin-top: 1.4583333333vw;
  font-size: 1.09375vw;
  font-weight: 500;
  color: #fff;
  max-width: 24.21875vw;
  line-height: 1.9047619048;
}
@media screen and (min-width: 1920px) {
  .product__item-long-text {
    margin-top: 1.75rem;
    font-size: 1.3125rem;
    max-width: 29.0625rem;
  }
}
@media screen and (max-width: 768px) {
  .product__item-long-text {
    font-size: 4.1025641026vw;
    max-width: 90%;
    margin-inline: auto;
    line-height: 1.875;
    order: 2;
    margin-top: 0;
  }
}

.product__item-long-img-wrap {
  max-width: 15.7291666667vw;
  width: 100%;
}
@media screen and (min-width: 1920px) {
  .product__item-long-img-wrap {
    max-width: 18.875rem;
  }
}
@media screen and (max-width: 768px) {
  .product__item-long-img-wrap {
    max-width: 100%;
    display: contents;
  }
}

.product__item-long-img {
  max-width: 12.583333vw;
  margin-bottom: 1.0416666667vw;
  margin-inline: auto;
}
@media screen and (min-width: 1920px) {
  .product__item-long-img {
    max-width: 11.5rem;
    margin-bottom: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .product__item-long-img {
    max-width: 33.3333333333vw;
    margin-top: 5.1282051282vw;
    margin-bottom: 5.1282051282vw;
  }
}

.btn {
  background-color: #172439;
}

.btn__inner {
  max-width: 48.9583333333vw;
  margin-inline: auto;
  padding-top: 5.3645833333vw;
  padding-bottom: 5.3125vw;
}
@media screen and (min-width: 1920px) {
  .btn__inner {
    max-width: 58.75rem;
    padding-top: 6.4375rem;
    padding-bottom: 6.375rem;
  }
}
@media screen and (max-width: 768px) {
  .btn__inner {
    padding-top: 10.2564102564vw;
    padding-bottom: 10.2564102564vw;
    max-width: 89.7435897436vw;
  }
}

.btn__title {
  text-align: center;
  font-size: 2.4479166667vw;
  font-weight: 700;
  color: #fff;
  line-height: 1.6666666667;
}
@media screen and (min-width: 1920px) {
  .btn__title {
    font-size: 2.9375rem;
  }
}
@media screen and (max-width: 768px) {
  .btn__title {
    font-size: 6.1538461538vw;
  }
}

.btn__contents {
  max-width: 35.8333333333vw;
  margin-inline: auto;
  margin-top: 2.9166666667vw;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.0833333333vw;
}
@media screen and (min-width: 1920px) {
  .btn__contents {
    max-width: 43rem;
    margin-top: 3.5rem;
    gap: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .btn__contents {
    margin-top: 5.1282051282vw;
    max-width: 100%;
    gap: 2.5641025641vw;
  }
}

.btn__wrap {
  max-width: 20.2604166667vw;
  width: 100%;
  border-radius: 5px;
  position: relative;
  background-color: #F4F71C;
}
@media screen and (min-width: 1920px) {
  .btn__wrap {
    max-width: 24.3125rem;
  }
}
@media screen and (max-width: 768px) {
  .btn__wrap {
    max-width: 64.1025641026vw;
  }
}
.btn__wrap::before {
  position: absolute;
  content: "";
  width: 0.8854166667vw;
  height: 0.8854166667vw;
  top: 50%;
  transform: translateY(-50%);
  right: 3.125vw;
  background-image: url(../images/arrow-black.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s;
}
@media screen and (min-width: 1920px) {
  .btn__wrap::before {
    width: 1.0625rem;
    height: 1.0625rem;
    right: 3.75rem;
  }
}
@media screen and (max-width: 768px) {
  .btn__wrap::before {
    width: 3.8461538462vw;
    height: 3.8461538462vw;
    right: 3.8461538462vw;
  }
}
.btn__wrap:hover::before {
  transform: translate(0.2604166667vw, -50%);
}
@media screen and (min-width: 1920px) {
  .btn__wrap:hover::before {
    transform: translate(0.3125rem, -50%);
  }
}

.btn__link {
  font-size: 0.8854166667vw;
  font-weight: 700;
  color: #172439;
  display: inline-block;
  width: 100%;
  padding-top: 1.4583333333vw;
  padding-bottom: 1.40625vw;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1920px) {
  .btn__link {
    font-size: 1.0625rem;
    padding-top: 1.75rem;
    padding-bottom: 1.6875rem;
  }
}
@media screen and (max-width: 768px) {
  .btn__link {
    font-size: 3.5897435897vw;
    padding-top: 2.8205128205vw;
    padding-bottom: 2.8205128205vw;
    padding-right: 2.5641025641vw;
  }
}
.btn__link:hover {
  opacity: 1;
}

.flow {
  background-color: #EAEAEA;
}

.flow__inner {
  max-width: 75vw;
  padding-left: 1.0416666667vw;
  padding-right: 1.0416666667vw;
  padding-top: 7.03125vw;
  padding-bottom: 7.9166666667vw;
  margin-inline: auto;
}
@media screen and (min-width: 1920px) {
  .flow__inner {
    max-width: 90rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-top: 8.4375rem;
    padding-bottom: 9.5rem;
  }
}
@media screen and (max-width: 768px) {
  .flow__inner {
    padding-top: 10.2564102564vw;
    padding-bottom: 10.2564102564vw;
    max-width: 89.7435897436vw;
    padding-left: 0;
    padding-right: 0;
  }
}

.flow__title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.flow__title {
  font-size: 3.125vw;
  font-weight: 700;
  background-image: linear-gradient(90deg, #0356BB, #019DE8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
@media screen and (min-width: 1920px) {
  .flow__title {
    font-size: 3.75rem;
  }
}
@media screen and (max-width: 768px) {
  .flow__title {
    font-size: 6.1538461538vw;
  }
}

.flow__title--en {
  font-size: 1.4583333333vw;
  text-transform: uppercase;
}
@media screen and (min-width: 1920px) {
  .flow__title--en {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 768px) {
  .flow__title--en {
    font-size: 3.5897435897vw;
  }
}

.flow__items {
  margin-top: 3.0208333333vw;
}
@media screen and (min-width: 1920px) {
  .flow__items {
    margin-top: 3.625rem;
  }
}
@media screen and (max-width: 768px) {
  .flow__items {
    margin-top: 10.2564102564vw;
  }
}

.flow__item {
  display: flex;
  gap: 2.7083333333vw;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1920px) {
  .flow__item {
    gap: 3.25rem;
  }
}
@media screen and (max-width: 768px) {
  .flow__item {
    flex-direction: column;
    gap: 5.1282051282vw;
  }
}

.flow__item:not(:first-child) {
  margin-top: 3.3333333333vw;
}
@media screen and (min-width: 1920px) {
  .flow__item:not(:first-child) {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .flow__item:not(:first-child) {
    margin-top: 10.2564102564vw;
  }
}

.flow__img-wrap {
  max-width: 15.8333333333vw;
  position: relative;
  z-index: 10;
}
.flow__img-wrap::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0.15625vw;
  height: 5.2083333333vw;
  border-left: 0.15625vw dashed #019DE8;
}
@media screen and (min-width: 1920px) {
  .flow__img-wrap::before {
    width: 0.1875rem;
    height: 6.25rem;
    border-left: 0.1875rem dashed #019DE8;
  }
}
@media screen and (max-width: 768px) {
  .flow__img-wrap::before {
    width: 0.7692307692vw;
    height: 12.8205128205vw;
    border-left: 0.7692307692vw dashed #019DE8;
    z-index: -1;
  }
}
@media screen and (min-width: 1920px) {
  .flow__img-wrap {
    max-width: 19rem;
  }
}
@media screen and (max-width: 768px) {
  .flow__img-wrap {
    max-width: 51.2820512821vw;
  }
}

.flow__img-wrap.flow__img-wrap--last::before {
  display: none;
}
@media screen and (max-width: 768px) {
  .flow__img-wrap.flow__img-wrap--last::before {
    display: block;
  }
}

.flow__img {
  aspect-ratio: 304/304;
  object-fit: cover;
  height: auto;
}

.flow__body-wrap {
  display: flex;
  gap: 2.9166666667vw;
  background-color: #fff;
  border-radius: 1.0416666667vw;
  padding-top: 2.65625vw;
  padding-bottom: 2.65625vw;
  padding-left: 2.3958333333vw;
  padding-right: 1.6145833333vw;
  z-index: 10;
}
@media screen and (min-width: 1920px) {
  .flow__body-wrap {
    gap: 3.5rem;
    border-radius: 20px;
    padding-top: 3.1875rem;
    padding-bottom: 3.1875rem;
    padding-left: 2.875rem;
    padding-right: 1.9375rem;
  }
}
@media screen and (max-width: 768px) {
  .flow__body-wrap {
    width: 100%;
    flex-direction: column;
    padding-top: 5.1282051282vw;
    padding-bottom: 5.1282051282vw;
    padding-left: 5.1282051282vw;
    padding-right: 5.1282051282vw;
  }
}

.flow__number {
  font-size: 5.2083333333vw;
  font-family: "futura-pt", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #019DE8;
}
@media screen and (min-width: 1920px) {
  .flow__number {
    font-size: 6.25rem;
  }
}
@media screen and (max-width: 768px) {
  .flow__number {
    text-align: center;
    font-size: 3.375rem;
  }
}

.flow__number-caption {
  margin-top: -1.0416666667vw;
  font-size: 0.8333333333vw;
  font-weight: 700;
  color: #019DE8;
  text-align: center;
}
@media screen and (min-width: 1920px) {
  .flow__number-caption {
    margin-top: -1.25rem;
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .flow__number-caption {
    font-size: 4.1025641026vw;
    margin-top: -5.1282051282vw;
  }
}

.flow__text-wrap {
  max-width: 41.4583333333vw;
  width: 100%;
}
@media screen and (min-width: 1920px) {
  .flow__text-wrap {
    max-width: 49.75rem;
  }
}
@media screen and (max-width: 768px) {
  .flow__text-wrap {
    max-width: 100%;
  }
}

.flow__text {
  font-size: 1.09375vw;
  font-weight: 500;
  line-height: 1.9047619048;
}
@media screen and (min-width: 1920px) {
  .flow__text {
    font-size: 1.3125rem;
  }
}
@media screen and (max-width: 768px) {
  .flow__text {
    font-size: 4.1025641026vw;
  }
}

.service {
  background-image: url(../images/blue-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.service__inner {
  max-width: 74vw;
  padding-left: 1.0416666667vw;
  padding-right: 1.0416666667vw;
  padding-top: 5.2083333333vw;
  padding-bottom: 5.8333333333vw;
  margin-inline: auto;
}
@media screen and (min-width: 1920px) {
  .service__inner {
    max-width: 89rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-top: 6.25rem;
    padding-bottom: 7rem;
  }
}
@media screen and (max-width: 768px) {
  .service__inner {
    padding-top: 10.2564102564vw;
    padding-bottom: 10.2564102564vw;
  }
}

.service__title-wrap {
  text-align: center;
}

.service__title {
  font-size: 3.125vw;
  font-weight: 700;
  color: #fff;
  display: block;
}
@media screen and (min-width: 1920px) {
  .service__title {
    font-size: 3.75rem;
  }
}
@media screen and (max-width: 768px) {
  .service__title {
    font-size: 6.1538461538vw;
  }
}

.service__title--en {
  margin-top: 1.0416666667vw;
  font-size: 1.0416666667vw;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}
@media screen and (min-width: 1920px) {
  .service__title--en {
    margin-top: 1.25rem;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .service__title--en {
    font-size: 3.5897435897vw;
  }
}

.service__items {
  margin-top: 4.1666666667vw;
  display: flex;
  justify-content: center;
  column-gap: 2.0833333333vw;
  row-gap: 3.125vw;
  flex-wrap: wrap;
}
@media screen and (min-width: 1920px) {
  .service__items {
    margin-top: 5rem;
    column-gap: 2.5rem;
    row-gap: 3.75rem;
  }
}
@media screen and (max-width: 768px) {
  .service__items {
    margin-top: 10.2564102564vw;
    flex-direction: column;
    gap: 5.1282051282vw;
  }
}

.service__item {
  max-width: 22.9166666667vw;
  width: 100%;
}
@media screen and (min-width: 1920px) {
  .service__item {
    max-width: 27.5rem;
  }
}
@media screen and (max-width: 768px) {
  .service__item {
    max-width: 100%;
  }
}

.service__item-img {
  border-radius: 1.0416666667vw;
}
@media screen and (min-width: 1920px) {
  .service__item-img {
    border-radius: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .service__item-img {
    border-radius: 5.1282051282vw;
  }
}

.service__name {
  margin-top: 1.3020833333vw;
  font-size: 1.1458333333vw;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 1920px) {
  .service__name {
    margin-top: 1.5625rem;
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 768px) {
  .service__name {
    font-size: 4.1025641026vw;
    margin-top: 2.5641025641vw;
  }
}

.service__caption {
  margin-top: 4.1666666667vw;
  font-size: 1.1458333333vw;
  font-weight: 700;
  color: #F4F71C;
  text-align: center;
}
@media screen and (min-width: 1920px) {
  .service__caption {
    margin-top: 5rem;
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 768px) {
  .service__caption {
    margin-top: 10.2564102564vw;
    font-size: 4.1025641026vw;
  }
}

.voice {
  background-color: #EAEAEA;
}

.voice__inner {
  max-width: 100vw;
  padding-top: 4.1145833333vw;
  padding-bottom: 6.6145833333vw;
  margin-inline: auto;
  background-image: url(../images/voice-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 1920px) {
  .voice__inner {
    max-width: 120rem;
    padding-top: 4.9375rem;
    padding-bottom: 7.9375rem;
  }
}
@media screen and (max-width: 768px) {
  .voice__inner {
    padding-top: 10.2564102564vw;
    padding-bottom: 10.2564102564vw;
    background-image: url(../images/voice-bg-sp.jpg);
  }
}

.voice__title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.voice__title {
  font-size: 3.125vw;
  font-weight: 700;
  background-image: linear-gradient(90deg, #0356BB, #019DE8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
@media screen and (min-width: 1920px) {
  .voice__title {
    font-size: 3.75rem;
  }
}
@media screen and (max-width: 768px) {
  .voice__title {
    font-size: 6.1538461538vw;
  }
}

.voice__title--en {
  font-size: 1.4583333333vw;
  text-transform: uppercase;
}
@media screen and (min-width: 1920px) {
  .voice__title--en {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 768px) {
  .voice__title--en {
    font-size: 3.5897435897vw;
  }
}

.voice__items {
  max-width: 64.0625vw;
  margin-inline: auto;
  margin-top: 3.6979166667vw;
  display: grid;
  gap: 2.6041666667vw;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 1920px) {
  .voice__items {
    max-width: 76.875rem;
    margin-top: 4.4375rem;
    gap: 3.125rem;
  }
}
@media screen and (max-width: 768px) {
  .voice__items {
    max-width: 89.7435897436vw;
    grid-template-columns: repeat(1, 1fr);
    gap: 5.1282051282vw;
  }
}

.voice__item {
  background-color: #fff;
  border-radius: 1.0416666667vw;
  padding-top: 2.1354166667vw;
  padding-left: 2.7604166667vw;
  padding-right: 2.7604166667vw;
  padding-bottom: 1.09375vw;
}
@media screen and (min-width: 1920px) {
  .voice__item {
    border-radius: 1.25rem;
    padding-top: 2.5625rem;
    padding-left: 3.3125rem;
    padding-right: 3.3125rem;
    padding-bottom: 1.3125rem;
  }
}
@media screen and (max-width: 768px) {
  .voice__item {
    padding: 5.1282051282vw;
  }
}

.voice__head-wrap {
  display: flex;
  gap: 0.78125vw;
  align-items: center;
}
@media screen and (min-width: 1920px) {
  .voice__head-wrap {
    gap: 0.9375rem;
  }
}
@media screen and (max-width: 768px) {
  .voice__head-wrap {
    gap: 2.5641025641vw;
  }
}

.voice__head-img {
  max-width: 3.6979166667vw;
}
@media screen and (min-width: 1920px) {
  .voice__head-img {
    max-width: 4.4375rem;
  }
}
@media screen and (max-width: 768px) {
  .voice__head-img {
    max-width: 10.2564102564vw;
  }
}

.voice__name {
  font-size: 1.6666666667vw;
  font-weight: 700;
  color: #019DE8;
}
@media screen and (min-width: 1920px) {
  .voice__name {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .voice__name {
    font-size: 4.6153846154vw;
  }
}

.voice__text {
  margin-top: 1.5625vw;
  font-size: 1.0416666667vw;
  font-weight: normal;
  line-height: 2;
}
@media screen and (min-width: 1920px) {
  .voice__text {
    margin-top: 1.875rem;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .voice__text {
    margin-top: 2.5641025641vw;
    font-size: 4.1025641026vw;
  }
}

.faq {
  background-color: #EAEAEA;
}

.faq__title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.faq__title {
  font-size: 3.125vw;
  font-weight: 700;
  background-image: linear-gradient(90deg, #0356BB, #019DE8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
@media screen and (min-width: 1920px) {
  .faq__title {
    font-size: 3.75rem;
  }
}
@media screen and (max-width: 768px) {
  .faq__title {
    font-size: 6.1538461538vw;
  }
}

.faq__title--en {
  font-size: 1.4583333333vw;
  text-transform: uppercase;
}
@media screen and (min-width: 1920px) {
  .faq__title--en {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 768px) {
  .faq__title--en {
    font-size: 3.5897435897vw;
  }
}

.faq__inner {
  max-width: 68.8541666667vw;
  padding-left: 1.0416666667vw;
  padding-right: 1.0416666667vw;
  padding-top: 5.2083333333vw;
  padding-bottom: 5.2083333333vw;
  margin-inline: auto;
}
@media screen and (min-width: 1920px) {
  .faq__inner {
    max-width: 82.625rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
  }
}
@media screen and (max-width: 768px) {
  .faq__inner {
    padding-top: 10.2564102564vw;
    padding-bottom: 10.2564102564vw;
    padding-left: 0;
    padding-right: 0;
    max-width: 89.7435897436vw;
  }
}

.accordion {
  margin-top: 5.2083333333vw;
}
@media screen and (min-width: 1920px) {
  .accordion {
    margin-top: 6.25rem;
  }
}
@media screen and (max-width: 768px) {
  .accordion {
    margin-top: 10.2564102564vw;
  }
}

.accordion__item:not(:first-child) {
  margin-top: 2.0833333333vw;
}
@media screen and (min-width: 1920px) {
  .accordion__item:not(:first-child) {
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .accordion__item:not(:first-child) {
    margin-top: 5.1282051282vw;
  }
}

.accordion__title {
  position: relative;
  padding-top: 1.5104166667vw;
  padding-bottom: 1.9791666667vw;
  padding-left: 2.65625vw;
  padding-right: 2.0833333333vw;
  cursor: pointer;
  background-color: #fff;
  border-radius: 1.0416666667vw;
  font-size: 1.0416666667vw;
  font-weight: 700;
}
@media screen and (min-width: 1920px) {
  .accordion__title {
    padding-top: 1.8125rem;
    padding-bottom: 2.375rem;
    padding-left: 3.1875rem;
    padding-right: 2.5rem;
    border-radius: 1.25rem;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .accordion__title {
    font-size: 4.1025641026vw;
    padding-top: 2.5641025641vw;
    padding-bottom: 2.5641025641vw;
    padding-left: 11.5384615385vw;
    padding-right: 7.6923076923vw;
    text-indent: -0.8em;
  }
}

.accordion__title-icon {
  font-size: 2.0833333333vw;
  font-weight: 700;
  color: #004287;
  display: inline-block;
  margin-right: 2.0833333333vw;
}
@media screen and (min-width: 1920px) {
  .accordion__title-icon {
    font-size: 2.5rem;
    margin-right: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .accordion__title-icon {
    font-size: 5.1282051282vw;
    margin-right: 2.5641025641vw;
  }
}

.accordion__title-icon.accordion__title-icon--red {
  color: #FD4A26;
}

.accordion__title::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 2.0833333333vw;
  width: 1.1458333333vw;
  height: 0.7291666667vw;
  background-image: url(../images/accordion-arrow.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: transform 0.3s, opacity 0.3s;
  background-color: #fff;
}
@media screen and (min-width: 1920px) {
  .accordion__title::after {
    right: 2.5rem;
    width: 1.375rem;
    height: 0.875rem;
  }
}
@media screen and (max-width: 768px) {
  .accordion__title::after {
    right: 2.5641025641vw;
    width: 3.8461538462vw;
    height: 2.3076923077vw;
    top: 45%;
  }
}

.accordion__title.is-open::after {
  transform: rotate(180deg);
}

.accordion__content {
  display: none;
  padding-top: 2.0833333333vw;
  padding-left: 2.7604166667vw;
  padding-right: 2.7604166667vw;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1920px) {
  .accordion__content {
    padding-top: 2.5rem;
    padding-left: 3.3125rem;
    padding-right: 3.3125rem;
  }
}
@media screen and (max-width: 768px) {
  .accordion__content {
    padding-top: 2.5641025641vw;
    padding-bottom: 2.5641025641vw;
    padding-left: 3.8461538462vw;
    padding-right: 2.5641025641vw;
  }
}

.accordion__text {
  font-size: 1.0416666667vw;
}
@media screen and (min-width: 1920px) {
  .accordion__text {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .accordion__text {
    font-size: 3.5897435897vw;
  }
}

.accordion__link {
  color: #019DE8;
}

.footer {
  background: linear-gradient(#0356BB, #019DE8);
}

.footer__inner {
  max-width: 75vw;
  padding-left: 1.0416666667vw;
  padding-right: 1.0416666667vw;
  padding-top: 3.4895833333vw;
  padding-bottom: 1.71875vw;
  margin-inline: auto;
}
@media screen and (min-width: 1920px) {
  .footer__inner {
    max-width: 90rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-top: 4.1875rem;
    padding-bottom: 2.0625rem;
  }
}
@media screen and (max-width: 768px) {
  .footer__inner {
    padding-top: 10.2564102564vw;
    padding-bottom: 10.2564102564vw;
    padding-left: 0;
    padding-right: 0;
    max-width: 89.7435897436vw;
  }
}

.footer__wrap {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .footer__wrap {
    flex-direction: column;
  }
}

.footer__logo {
  max-width: 17.9166666667vw;
  max-height: 2.8645833333vw;
}
@media screen and (min-width: 1920px) {
  .footer__logo {
    max-width: 21.5rem;
    max-height: 3.4375rem;
  }
}
@media screen and (max-width: 768px) {
  .footer__logo {
    max-width: 51.2820512821vw;
    max-height: initial;
  }
}

.footer__items {
  margin-left: auto;
  display: flex;
  gap: 2.6041666667vw;
}
@media screen and (min-width: 1920px) {
  .footer__items {
    gap: 3.125rem;
  }
}
@media screen and (max-width: 768px) {
  .footer__items {
    margin-top: 5.1282051282vw;
    margin-left: initial;
    column-gap: 5.1282051282vw;
    row-gap: 2.5641025641vw;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 76.9230769231vw;
  }
}

.footer__item-link {
  font-size: 1.0416666667vw;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  transition: color 0.3s;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer__item-link {
    font-size: 3.5897435897vw;
  }
}
.footer__item-link:hover {
  opacity: 1;
}
.footer__item-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2604166667vw;
  width: 100%;
  height: 0.1041666667vw;
  background: #019DE8;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}
@media screen and (min-width: 1920px) {
  .footer__item-link::after {
    bottom: -0.3125rem;
    height: 0.125rem;
  }
}
.footer__item-link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
@media screen and (min-width: 1920px) {
  .footer__item-link {
    font-size: 1.25rem;
  }
}

.footer__contents {
  margin-top: 1.8229166667vw;
}
@media screen and (min-width: 1920px) {
  .footer__contents {
    margin-top: 2.1875rem;
  }
}
@media screen and (max-width: 768px) {
  .footer__contents {
    margin-top: 10.2564102564vw;
  }
}

.footer__access {
  font-size: 1.09375vw;
  font-weight: 500;
  color: #fff;
  line-height: 2;
}
@media screen and (min-width: 1920px) {
  .footer__access {
    font-size: 1.3125rem;
  }
}
@media screen and (max-width: 768px) {
  .footer__access {
    font-size: 4.1025641026vw;
    line-height: 1.7;
  }
}

.footer__instagram {
  margin-top: 0.3125vw;
}
@media screen and (min-width: 1920px) {
  .footer__instagram {
    margin-top: 0.375rem;
  }
}
@media screen and (max-width: 768px) {
  .footer__instagram {
    margin-top: 2.5641025641vw;
  }
}

.footer__instagram-img {
  max-width: 5.78125vw;
}
@media screen and (min-width: 1920px) {
  .footer__instagram-img {
    max-width: 6.9375rem;
  }
}
@media screen and (max-width: 768px) {
  .footer__instagram-img {
    max-width: 25.641025641vw;
  }
}

.footer__copyright {
  font-size: 1.09375vw;
  font-weight: 500;
  color: #fff;
  text-align: right;
  width: 100%;
  display: inline-block;
}
@media screen and (min-width: 1920px) {
  .footer__copyright {
    font-size: 1.3125rem;
  }
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    margin-top: 5.1282051282vw;
    font-size: 2.5641025641vw;
    text-align: center;
  }
}

.contact__inner {
  max-width: 68.75vw;
  padding-left: 1.0416666667vw;
  padding-right: 1.0416666667vw;
  padding-top: 7.9166666667vw;
  padding-bottom: 6.9791666667vw;
  margin-inline: auto;
}
@media screen and (min-width: 1920px) {
  .contact__inner {
    max-width: 82.5rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-top: 9.5rem;
    padding-bottom: 8.375rem;
  }
}
@media screen and (max-width: 768px) {
  .contact__inner {
    padding-top: 10.2564102564vw;
    padding-bottom: 10.2564102564vw;
    padding-left: 0;
    padding-right: 0;
    max-width: 89.7435897436vw;
  }
}

.contact__title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact__title {
  font-size: 3.125vw;
  font-weight: 700;
  background-image: linear-gradient(90deg, #0356BB, #019DE8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
@media screen and (min-width: 1920px) {
  .contact__title {
    font-size: 3.75rem;
  }
}
@media screen and (max-width: 768px) {
  .contact__title {
    font-size: 6.1538461538vw;
  }
}

.contact__title--en {
  font-size: 1.4583333333vw;
  text-transform: uppercase;
}
@media screen and (min-width: 1920px) {
  .contact__title--en {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 768px) {
  .contact__title--en {
    font-size: 3.5897435897vw;
  }
}

.contact__form {
  margin-top: 4.1666666667vw;
}
@media screen and (min-width: 1920px) {
  .contact__form {
    margin-top: 5rem;
  }
}

.form__item:not(:first-child) {
  margin-top: 2.5vw;
}
@media screen and (min-width: 1920px) {
  .form__item:not(:first-child) {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .form__item:not(:first-child) {
    margin-top: 5.1282051282vw;
  }
}

.form__item dl {
  display: flex;
  gap: 1.1979166667vw;
}
@media screen and (min-width: 1920px) {
  .form__item dl {
    gap: 1.4375rem;
  }
}
@media screen and (max-width: 768px) {
  .form__item dl {
    flex-direction: column;
    gap: 2.5641025641vw;
  }
}

.form__item.form__item--textarea {
  margin-top: 3.4375vw;
}
@media screen and (min-width: 1920px) {
  .form__item.form__item--textarea {
    margin-top: 4.125rem;
  }
}

.form__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 17.2916666667vw;
  width: 100%;
  flex: 1;
}
@media screen and (min-width: 1920px) {
  .form__label {
    max-width: 20.75rem;
  }
}
@media screen and (max-width: 768px) {
  .form__label {
    max-width: 100%;
    justify-content: left;
    gap: 2.5641025641vw;
  }
}

.form__label.form__label--textarea {
  margin-top: 1.0416666667vw;
  align-items: start;
}
@media screen and (min-width: 1920px) {
  .form__label.form__label--textarea {
    margin-top: 1.25rem;
  }
}

.form__label-text {
  font-size: 1.3541666667vw;
  font-weight: 700;
}
@media screen and (min-width: 1920px) {
  .form__label-text {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 768px) {
  .form__label-text {
    font-size: 4.1025641026vw;
  }
}

.form__required {
  font-size: 0.8854166667vw;
  font-weight: 700;
  background-color: #FD4A26;
  color: #fff;
  padding: 0.15625vw 0.7291666667vw;
}
@media screen and (min-width: 1920px) {
  .form__required {
    font-size: 1.0625rem;
    padding: 0.1875rem 0.875rem;
  }
}
@media screen and (max-width: 768px) {
  .form__required {
    font-size: 3.0769230769vw;
    padding: 0.2564102564vw 1.5384615385vw;
  }
}

.form__input {
  max-width: 48.0729166667vw;
  width: 100%;
}
@media screen and (min-width: 1920px) {
  .form__input {
    max-width: 57.6875rem;
  }
}
@media screen and (max-width: 768px) {
  .form__input {
    max-width: 100%;
  }
}

input[type=text],
input[type=tel],
input[type=email],
textarea,
select {
  border: 1px solid #CCCCCC;
  border-radius: 0.234375vw;
  padding: 1.09375vw 1.71875vw;
  width: 100%;
}
@media screen and (min-width: 1920px) {
  input[type=text],
input[type=tel],
input[type=email],
textarea,
select {
    border-radius: 0.28125rem;
    padding: 1.3125rem 2.0625rem;
  }
}
@media screen and (max-width: 768px) {
  input[type=text],
input[type=tel],
input[type=email],
textarea,
select {
    padding: 2.5641025641vw;
  }
}

.form__input.form__input--postal {
  max-width: 16.5104166667vw;
  margin-left: 3.125vw;
  position: relative;
}
@media screen and (min-width: 1920px) {
  .form__input.form__input--postal {
    max-width: 19.8125rem;
    margin-left: 3.75rem;
  }
}
@media screen and (max-width: 768px) {
  .form__input.form__input--postal {
    max-width: 33.3333333333vw;
    margin-left: 7.6923076923vw;
  }
}
.form__input.form__input--postal::before {
  position: absolute;
  content: "〒";
  font-size: 1.4583333333vw;
  top: 50%;
  transform: translateY(-50%);
  left: -2.6041666667vw;
}
@media screen and (min-width: 1920px) {
  .form__input.form__input--postal::before {
    font-size: 1.75rem;
    left: -3.125rem;
  }
}
@media screen and (max-width: 768px) {
  .form__input.form__input--postal::before {
    font-size: 4.1025641026vw;
    left: -7.6923076923vw;
  }
}

.form__input.form__input--radio {
  display: flex;
  gap: 4.1666666667vw;
}
@media screen and (min-width: 1920px) {
  .form__input.form__input--radio {
    gap: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .form__input.form__input--radio {
    flex-wrap: wrap;
  }
}

.radio-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-left: 1.0416666667vw;
  font-size: 1.1979166667vw;
}
@media screen and (min-width: 1920px) {
  .radio-label {
    margin-left: 1.25rem;
    font-size: 1.4375rem;
  }
}
@media screen and (max-width: 768px) {
  .radio-label {
    font-size: 4.1025641026vw;
  }
}

.custom-radio {
  display: inline-block;
  width: 1.1979166667vw;
  height: 1.1979166667vw;
  border: 1px solid #CCCCCC;
  border-radius: 100vw;
  margin-right: 0.7291666667vw;
  position: relative;
  background-color: transparent;
}
@media screen and (min-width: 1920px) {
  .custom-radio {
    width: 1.4375rem;
    height: 1.4375rem;
    margin-right: 0.875rem;
  }
}
@media screen and (max-width: 768px) {
  .custom-radio {
    width: 5.8974358974vw;
    height: 5.8974358974vw;
    margin-right: 2.5641025641vw;
  }
}

.radio-input:checked + .custom-radio {
  background-color: #019DE8;
}

.radio-input:checked + .custom-radio::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.5208333333vw;
  height: 0.5208333333vw;
  border-radius: 50%;
  background-color: white;
}
@media screen and (min-width: 1920px) {
  .radio-input:checked + .custom-radio::after {
    width: 0.625rem;
    height: 0.625rem;
  }
}
@media screen and (max-width: 768px) {
  .radio-input:checked + .custom-radio::after {
    width: 2.5641025641vw;
    height: 2.5641025641vw;
  }
}

.form__input-text,
.form__input-textarea,
.form__input-select {
  font-size: 1.1979166667vw;
}
@media screen and (min-width: 1920px) {
  .form__input-text,
.form__input-textarea,
.form__input-select {
    font-size: 1.4375rem;
  }
}
@media screen and (max-width: 768px) {
  .form__input-text,
.form__input-textarea,
.form__input-select {
    font-size: 4.1025641026vw;
  }
}

.form__input.form__input--pulldown {
  position: relative;
}
.form__input.form__input--pulldown::before {
  position: absolute;
  content: "▼";
  top: 50%;
  transform: translateY(-50%);
  right: 1.0416666667vw;
  font-size: 1.0416666667vw;
  color: #898989;
}
@media screen and (min-width: 1920px) {
  .form__input.form__input--pulldown::before {
    right: 1.25rem;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .form__input.form__input--pulldown::before {
    font-size: 2.5641025641vw;
    right: 2.5641025641vw;
  }
}

.form__input-text::placeholder,
.form__input-textarea::placeholder {
  color: #CCCCCC;
}

.form__input-textarea {
  height: 14.7395833333vw;
  resize: none;
}
@media screen and (min-width: 1920px) {
  .form__input-textarea {
    height: 17.6875rem;
  }
}
@media screen and (max-width: 768px) {
  .form__input-textarea {
    height: 76.9230769231vw;
  }
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.custom-checkbox {
  display: inline-block;
  width: 1.09375vw;
  height: 1.09375vw;
  border: 1px solid #CCCCCC;
  border-radius: 0.1302083333vw;
  margin-right: 0.6770833333vw;
  position: relative;
  background-color: transparent;
}
@media screen and (min-width: 1920px) {
  .custom-checkbox {
    width: 1.3125rem;
    height: 1.3125rem;
    border-radius: 0.15625rem;
    margin-right: 0.8125rem;
  }
}
@media screen and (max-width: 768px) {
  .custom-checkbox {
    width: 5.3846153846vw;
    height: 5.3846153846vw;
    border-radius: 0.641025641vw;
    margin-right: 3.3333333333vw;
  }
}

.checkbox-input:checked + .custom-checkbox {
  background-color: #019DE8;
}

.checkbox-input:checked + .custom-checkbox::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 0.2604166667vw;
  height: 0.5208333333vw;
  border-right: 0.1041666667vw solid white;
  border-bottom: 0.1041666667vw solid white;
}
@media screen and (min-width: 1920px) {
  .checkbox-input:checked + .custom-checkbox::after {
    width: 0.3125rem;
    height: 0.625rem;
    border-right: 0.125rem solid white;
    border-bottom: 0.125rem solid white;
  }
}
@media screen and (max-width: 768px) {
  .checkbox-input:checked + .custom-checkbox::after {
    width: 1.2820512821vw;
    height: 2.5641025641vw;
    border-right: 0.5128205128vw solid white;
    border-bottom: 0.5128205128vw solid white;
  }
}

.checkbox-label {
  max-width: 18.75vw;
  margin-inline: auto;
  font-size: 1.09375vw;
  color: #000;
  justify-content: center;
}
@media screen and (min-width: 1920px) {
  .checkbox-label {
    max-width: 22.5rem;
    font-size: 1.3125rem;
  }
}
@media screen and (max-width: 768px) {
  .checkbox-label {
    font-size: 4.1025641026vw;
    max-width: 100%;
  }
}

.form__item--agree p {
  text-align:center;  
}

.form__item--agree p a {
  color:#019DE8;  
}

.agree-link {
  color: #000;
  border-bottom: 1px solid #000;
}

.form__item.form__item--submit {
  margin-top: 2.5520833333vw;
  background-color: #FD4A26;
  max-width: 17.1875vw;
  margin-inline: auto;
  text-align: center;
  border-radius: 1.4583333333vw;
}
@media screen and (min-width: 1920px) {
  .form__item.form__item--submit {
    margin-top: 3.0625rem;
    max-width: 20.625rem;
    border-radius: 1.75rem;
  }
}
@media screen and (max-width: 768px) {
  .form__item.form__item--submit {
    margin-top: 10.2564102564vw;
    max-width: 46.1538461538vw;
  }
}

.form__submit-btn {
  font-size: 1.09375vw;
  font-weight: 700;
  color: #fff;
  padding-top: 1.5625vw;
  padding-bottom: 1.5625vw;
  display: inline-block;
  width: 100%;
  border-radius: 1.4583333333vw;
  transition: background-color 0.3s;
}
@media screen and (min-width: 1920px) {
  .form__submit-btn {
    font-size: 1.3125rem;
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
    border-radius: 1.75rem;
  }
}
@media screen and (max-width: 768px) {
  .form__submit-btn {
    font-size: 4.1025641026vw;
    padding-top: 2.5641025641vw;
    padding-bottom: 2.5641025641vw;
    border-radius: 5.1282051282vw;
  }
}
.form__submit-btn:hover {
  background-color: #d62a08;
}

.thanks {
  display: grid;
  align-items: center;
  justify-content: center;
  height: 90vh;
}

.thanks__wrap {
  max-width: 1000px;
  padding: 0 1rem;
}

.thanks__text {
  font-size: 2.0833333333vw;
  font-weight: 700;
}

.thanks__texter {
  font-size:1.2rem;
  font-weight:normal;
  line-height: 2rem;
}

@media screen and (min-width: 1920px) {
  .thanks__text {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .thanks__text {
    font-size: 5.1025641026vw;
  }
}

.thanks__btn-wrap {
  background-image: linear-gradient(90deg, #0356BB, #019DE8);
  max-width: 15.625vw;
  margin-inline: auto;
  margin-top: 1.5625vw;
  border-radius: 0.5208333333vw;
  position: relative;
  display: grid;
  align-items: center;
}
@media screen and (min-width: 1920px) {
  .thanks__btn-wrap {
    max-width: 18.75rem;
    margin-top: 1.875rem;
    border-radius: 0.625rem;
  }
}
@media screen and (max-width: 768px) {
  .thanks__btn-wrap {
    margin-top: 5.1282051282vw;
    max-width: 51.2820512821vw;
  }
}
.thanks__btn-wrap::before {
  position: absolute;
  content: "";
  width: 1.0416666667vw;
  height: 1.0416666667vw;
  right: 1.0416666667vw;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../images/arrow-white.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s;
}
@media screen and (min-width: 1920px) {
  .thanks__btn-wrap::before {
    width: 1.25rem;
    height: 1.25rem;
    right: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .thanks__btn-wrap::before {
    width: 3.8461538462vw;
    height: 3.8461538462vw;
    right: 2.5641025641vw;
  }
}
.thanks__btn-wrap:hover::before {
  transform: translate(0.2604166667vw, -50%);
}
@media screen and (min-width: 1920px) {
  .thanks__btn-wrap:hover::before {
    transform: translate(0.3125rem, -50%);
  }
}

.thanks__btn {
  display: inline-block;
  width: 100%;
  padding: 1.0416666667vw 3.125vw 1.0416666667vw 2.0833333333vw;
  text-align: center;
  color: #fff;
  font-size: 1.09375vw;
  font-weight: 700;
}
@media screen and (min-width: 1920px) {
  .thanks__btn {
    padding: 1.25rem 3.75rem 1.25rem 2.5rem;
    font-size: 1.3125rem;
  }
}
@media screen and (max-width: 768px) {
  .thanks__btn {
    font-size: 3.5897435897vw;
    padding-top: 2.5641025641vw;
    padding-bottom: 2.5641025641vw;
  }
}
.thanks__btn:hover {
  opacity: 1;
}

.scroll {
  position: absolute;
  right: 2.2916666667vw;
  bottom: 11.9791666667vw;
  writing-mode: vertical-rl;
}
@media screen and (min-width: 1920px) {
  .scroll {
    right: 2.75rem;
    bottom: 14.375rem;
  }
}
@media screen and (max-width: 768px) {
  .scroll {
    right: 2.5641025641vw;
    bottom: 25.641025641vw;
  }
}

.scroll span {
  color: #fff;
  font-size: 0.625vw;
  font-weight: 700;
}
@media screen and (min-width: 1920px) {
  .scroll span {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 768px) {
  .scroll span {
    font-size: 2.0512820513vw;
  }
}

.scroll::before {
  animation: scroll 2s infinite;
  background-color: #fff;
  bottom: -5.9895833333vw;
  content: "";
  height: 5.2083333333vw;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 0.0520833333vw;
}
@media screen and (min-width: 1920px) {
  .scroll::before {
    width: 0.0625rem;
    bottom: -7.1875rem;
    height: 6.25rem;
  }
}
@media screen and (max-width: 768px) {
  .scroll::before {
    bottom: -21.7948717949vw;
    height: 17.9487179487vw;
    width: 0.2564102564vw;
  }
}

@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
.instagram-icon {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 2.2916666667vw;
  z-index: 10;
}
@media screen and (min-width: 1920px) {
  .instagram-icon {
    right: 2.75rem;
  }
}
@media screen and (max-width: 768px) {
  .instagram-icon {
    display: none;
  }
}
.instagram-icon::before {
  position: absolute;
  content: "";
  width: 0.78125vw;
  height: 0.78125vw;
  bottom: -1.0416666667vw;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../images/Instagram-icon.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 1920px) {
  .instagram-icon::before {
    width: 0.9375rem;
    height: 0.9375rem;
    bottom: -1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .instagram-icon::before {
    width: 2.8205128205vw;
    height: 2.8205128205vw;
    bottom: -3.8461538462vw;
  }
}

.instagram-icon__link {
  font-size: 0.625vw;
  font-weight: 700;
  color: #fff;
  writing-mode: vertical-rl;
  letter-spacing: 0.0520833333vw;
}
@media screen and (min-width: 1920px) {
  .instagram-icon__link {
    font-size: 0.75rem;
    letter-spacing: 0.0625rem;
  }
}
@media screen and (max-width: 768px) {
  .instagram-icon__link {
    font-size: 2.0512820513vw;
    display: none;
  }
}

.form__input-checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.0416666667vw;
}
@media screen and (min-width: 1920px) {
  .form__input-checkbox-group {
    gap: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .form__input-checkbox-group {
    gap: 5.1282051282vw;
  }
}

.form__input-checkbox {
  display: flex;
  align-items: center;
  margin-left: 1.0416666667vw;
  cursor: pointer;
}
@media screen and (min-width: 1920px) {
  .form__input-checkbox {
    margin-left: 1.25rem;
  }
}

.form__input-checkbox .checkbox-custom {
  background-color: #fff;
  position: relative;
  transition: background-color 0.2s, border-color 0.2s;
  width: 1.1979166667vw;
  height: 1.1979166667vw;
  border: 1px solid #CCCCCC;
  border-radius: 0.1302083333vw;
  margin-right: 0.6770833333vw;
}
@media screen and (min-width: 1920px) {
  .form__input-checkbox .checkbox-custom {
    width: 1.4375rem;
    height: 1.4375rem;
    border-radius: 0.15625rem;
    margin-right: 0.8125rem;
  }
}
@media screen and (max-width: 768px) {
  .form__input-checkbox .checkbox-custom {
    width: 5.8974358974vw;
    height: 5.8974358974vw;
    border-radius: 0.641025641vw;
    margin-right: 3.3333333333vw;
  }
}

.form__input-checkbox input[type=checkbox]:checked + .checkbox-custom {
  background-color: #019DE8;
  border-color: #019DE8;
}

.form__input-checkbox input[type=checkbox]:checked + .checkbox-custom::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 0.3125vw;
  height: 0.5208333333vw;
  border: solid #fff;
  border-width: 0 0.1041666667vw 0.1041666667vw 0;
}
@media screen and (min-width: 1920px) {
  .form__input-checkbox input[type=checkbox]:checked + .checkbox-custom::after {
    width: 0.375rem;
    height: 0.625rem;
    border-width: 0 0.125rem 0.125rem 0;
  }
}
@media screen and (max-width: 768px) {
  .form__input-checkbox input[type=checkbox]:checked + .checkbox-custom::after {
    width: 1.5384615385vw;
    height: 2.5641025641vw;
    border-width: 0 0.5128205128vw 0.5128205128vw 0;
  }
}

.form__input-checkbox .checkbox-label {
  font-size: 1.1979166667vw;
}
@media screen and (min-width: 1920px) {
  .form__input-checkbox .checkbox-label {
    font-size: 1.4375rem;
  }
}
@media screen and (max-width: 768px) {
  .form__input-checkbox .checkbox-label {
    font-size: 4.1025641026vw;
  }
}

@media screen and (max-width: 768px) {
  .md-none {
    display: none;
  }
}

.md-show {
  display: none;
}
@media screen and (max-width: 768px) {
  .md-show {
    display: block;
  }
}

.yellow {
  color: #F4F71C;
}

@media screen and (max-width: 768px) {
.pc-only {
  display:none;
}
}

/*# sourceMappingURL=style.css.map */