/**
* @file _reset.scss
**/
@import "./flow.css";
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  vertical-align: bottom;
  border: 0;
}

a {
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
  font-size: 1px;
}

*::-moz-selection {
  background: #826F34;
  color: white;
}

*::selection {
  background: #826F34;
  color: white;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5;
  margin-bottom: 0;
}

ol,
ul {
  list-style: none;
}

*:focus {
  outline: none;
}

blockquote,
q {
  quotes: none;
}
blockquote::before, blockquote::after,
q::before,
q::after {
  content: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

button {
  cursor: pointer;
  border: 0;
  outline: none;
}

table td,
table th {
  padding: 0;
  border: 0;
}

img {
  max-width: 100%;
  line-height: 0;
  vertical-align: bottom;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

input:focus {
  outline: 0;
}

td,
th,
tr {
  vertical-align: middle;
}

*,
dd,
dl,
dt,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
img,
ol,
picture,
table,
ul {
  margin: 0;
}

ol,
ul {
  padding: 0;
  list-style-type: none;
}

textarea {
  resize: vertical;
}

fieldset,
legend {
  padding: 0;
}

figure {
  display: flex;
  align-items: center;
  justify-content: center;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #0C6CE5;
  border-radius: 5px;
}

/* Zoom In #1 */
.anim_zin img {
  transform: scale(1);
  transition: 0.3s ease-in-out;
}

.anim_zin:hover img {
  transform: scale(1.3);
}

/* Zoom In #2 */
.anim_zin2 img {
  width: 300px;
  height: auto;
  transition: 0.3s ease-in-out;
}

.anim_zin2:hover img {
  width: 350px;
}

/* Zoom Out #1 */
.anim_zout img {
  transform: scale(1.5);
  transition: 0.3s ease-in-out;
}

.anim_zout:hover img {
  transform: scale(1);
}

/* Zoom Out #2 */
.anim_zout2 img {
  width: 400px;
  height: auto;
  transition: 0.3s ease-in-out;
}

.anim_zout2:hover img {
  width: 300px;
}

/* Slide */
.anim_slide img {
  margin-left: 30px;
  transform: scale(1.5);
  transition: 0.3s ease-in-out;
}

.anim_slide:hover img {
  margin-left: 0;
}

/* Rotate */
.anim_rot img {
  transform: rotate(15deg) scale(1.4);
  transition: 0.3s ease-in-out;
}

.anim_rot:hover img {
  transform: rotate(0) scale(1);
}

/* Blur */
.anim_blur img {
  filter: blur(3px);
  transition: 0.3s ease-in-out;
}

.anim_blur:hover img {
  filter: blur(0);
}

/* Gray Scale */
.anim_gray img {
  filter: grayscale(100%);
  transition: 0.3s ease-in-out;
}

.anim_gray:hover img {
  filter: grayscale(0);
}

/* Sepia */
.anim_sepia img {
  filter: sepia(100%);
  transition: 0.3s ease-in-out;
}

.anim_sepia:hover img {
  filter: sepia(0);
}

/* Blur + Gray Scale */
.anim_blur_gray img {
  filter: grayscale(0) blur(0);
  transition: 0.3s ease-in-out;
}

.anim_blur_gray:hover img {
  filter: grayscale(100%) blur(3px);
}

/* Opacity #1 */
.anim_opa img {
  opacity: 1;
  transition: 0.3s ease-in-out;
}

.anim_opa:hover img {
  opacity: 0.5;
}

/* Opacity #2 */
.anim_opa2 {
  background: #1abc9c;
}

.anim_opa2 img {
  opacity: 1;
  transition: 0.3s ease-in-out;
}

.anim_opa2:hover img {
  opacity: 0.5;
}

/* Flashing */
.anim_flash:hover img {
  opacity: 1;
  animation: flash 1.5s;
}
@keyframes flash {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}
/* Shine */
.anim_shine {
  position: relative;
  overflow: hidden;
}

.anim_shine::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}

.anim_shine:hover::before {
  animation: shine 0.75s;
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
/* Circle */
.anim_circle {
  position: relative;
  overflow: hidden;
}

.anim_circle::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  content: "";
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 100%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.anim_circle:hover::before {
  animation: circle 0.75s;
}
@keyframes circle {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}
.anim_underline {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.35s ease;
}
.anim_underline::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 1px;
  width: 0;
  background: #3F3F3F;
  transition: all ease 0.35s;
}
.anim_underline:hover {
  opacity: 0.7;
}
.anim_underline:hover::after {
  left: 0;
  width: 100%;
}

.anim_rotation {
  animation: rotationAnimation 30s infinite linear;
}

@keyframes rotationAnimation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/**
* @file _common.scss
**/
.is-pc {
  display: block;
}
@media screen and (max-width: 798px) {
  .is-pc {
    display: none !important;
  }
}

.is-sp {
  display: none !important;
}
@media screen and (max-width: 798px) {
  .is-sp {
    display: block !important;
  }
}

.pc-only {
  display: flex;
}
@media screen and (max-width: 798px) {
  .pc-only {
    display: none !important;
  }
}

.sp-only {
  display: none !important;
}
@media screen and (max-width: 798px) {
  .sp-only {
    display: flex !important;
  }
}

.border__triangle {
  position: relative;
  border-bottom: 1px solid #0C6CE5;
}
.border__triangle::after {
  content: "";
  position: absolute;
  bottom: -11px;
  left: calc((100% - 11px) / 2);
  display: block;
  width: 11px;
  height: 11px;
  background-color: #0C6CE5;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.char__dot {
  position: relative;
  color: #0C6CE5;
}
.char__dot::before {
  content: "";
  position: absolute;
  top: -3px;
  left: calc((100% - 6px) / 2);
  width: 6px;
  height: 6px;
  background-color: #0C6CE5;
  border-radius: 3px;
}

.char__underline {
  position: relative;
  z-index: 3;
}
.char__underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  z-index: -1;
  width: 100%;
  height: 0;
  border-bottom: 10px solid #E9C090;
}
@media screen and (max-width: 798px) {
  .char__underline::after {
    border-bottom: 5px solid #E9C090;
  }
}

/**
* @file _reset.scss
**/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  vertical-align: bottom;
  border: 0;
}

a {
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
  font-size: 1px;
}

*::-moz-selection {
  background: #826F34;
  color: white;
}

*::selection {
  background: #826F34;
  color: white;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5;
  margin-bottom: 0;
}

ol,
ul {
  list-style: none;
}

*:focus {
  outline: none;
}

blockquote,
q {
  quotes: none;
}
blockquote::before, blockquote::after,
q::before,
q::after {
  content: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

button {
  cursor: pointer;
  border: 0;
  outline: none;
}

table td,
table th {
  padding: 0;
  border: 0;
}

img {
  max-width: 100%;
  line-height: 0;
  vertical-align: bottom;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

input:focus {
  outline: 0;
}

td,
th,
tr {
  vertical-align: middle;
}

*,
dd,
dl,
dt,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
img,
ol,
picture,
table,
ul {
  margin: 0;
}

ol,
ul {
  padding: 0;
  list-style-type: none;
}

textarea {
  resize: vertical;
}

fieldset,
legend {
  padding: 0;
}

figure {
  display: flex;
  align-items: center;
  justify-content: center;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #0C6CE5;
  border-radius: 5px;
}

/**
* @file _common.scss
**/
.is-pc {
  display: block;
}
@media screen and (max-width: 798px) {
  .is-pc {
    display: none !important;
  }
}

.is-sp {
  display: none !important;
}
@media screen and (max-width: 798px) {
  .is-sp {
    display: block !important;
  }
}

.pc-only {
  display: flex;
}
@media screen and (max-width: 798px) {
  .pc-only {
    display: none !important;
  }
}

.sp-only {
  display: none !important;
}
@media screen and (max-width: 798px) {
  .sp-only {
    display: flex !important;
  }
}

.border__triangle {
  position: relative;
  border-bottom: 1px solid #0C6CE5;
}
.border__triangle::after {
  content: "";
  position: absolute;
  bottom: -11px;
  left: calc((100% - 11px) / 2);
  display: block;
  width: 11px;
  height: 11px;
  background-color: #0C6CE5;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.char__dot {
  position: relative;
  color: #0C6CE5;
}
.char__dot::before {
  content: "";
  position: absolute;
  top: -3px;
  left: calc((100% - 6px) / 2);
  width: 6px;
  height: 6px;
  background-color: #0C6CE5;
  border-radius: 3px;
}

.char__underline {
  position: relative;
  z-index: 3;
}
.char__underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  z-index: -1;
  width: 100%;
  height: 0;
  border-bottom: 10px solid #E9C090;
}
@media screen and (max-width: 798px) {
  .char__underline::after {
    border-bottom: 5px solid #E9C090;
  }
}

.c-header {
  display: none;
}
@media screen and (max-width: 798px) {
  .c-header {
    display: block;
  }
}
.c-header .h__company {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  background: linear-gradient(89.84deg, #437EF6 0.12%, #1359B2 35.3%);
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 25px;
  line-height: 36px;
  letter-spacing: 0em;
  color: white;
  text-shadow: 0px 0px 10px rgba(247, 236, 215, 0.3019607843);
}
.c-header .h__commute {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 32px;
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0em;
  color: #0C6CE5;
}
.c-header .h__commute::before {
  content: "";
  display: block;
  width: 15px;
  height: 19px;
  background-image: url("../img/ic__train--blue.png");
  background-size: cover;
}

.c-footer {
  padding: 40px 28px;
  background-color: white;
}
.c-footer__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.c-footer__container a {
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 16px;
  line-height: 29px;
  letter-spacing: 0em;
  color: #232738;
}
@media screen and (max-width: 798px) {
  .c-footer__container a {
    font-size: 12px;
    line-height: 22px;
  }
}
.c-footer__container .--divid {
  width: 0;
  height: 16px;
  border-right: 1px solid #232738;
}
@media screen and (max-width: 798px) {
  .c-footer__container .--divid {
    height: 12px;
  }
}

.p-home .section__inner {
  max-width: 1440px;
  margin: 0 auto;
}
.p-home .section-fv {
  position: relative;
  width: 100%;
  height: 660px;
  background-image: url("../img/fv__bg.png");
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 798px) {
  .p-home .section-fv {
    height: 506px;
    background-image: url("../img/fv__bg-sp.png");
    background-size: cover;
    background-position: center;
  }
}
.p-home .section-fv .fv__content {
  display: flex;
  flex-direction: column;
  padding: 79px 0px 0px 80px;
}
@media screen and (max-width: 798px) {
  .p-home .section-fv .fv__content {
    padding: 5px 0px;
  }
}
.p-home .section-fv .fv__ttl {
  margin-bottom: 6px;
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 30px;
  line-height: 43px;
  letter-spacing: 0em;
  color: #0C6CE5;
  text-shadow: 0px 0px 10px rgba(255, 236, 199, 0.4);
}
@media screen and (max-width: 798px) {
  .p-home .section-fv .fv__ttl {
    display: none;
  }
}
.p-home .section-fv .fv__commute {
  display: flex;
  align-items: center;
  gap: 7px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 10px;
  margin-bottom: 10px;
  border-top: 2px solid white;
  border-bottom: 2px solid white;
}
@media screen and (max-width: 798px) {
  .p-home .section-fv .fv__commute {
    display: none;
  }
}
.p-home .section-fv .fv__commute span {
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 0.02em;
  color: white;
}
.p-home .section-fv .fv__commute .--lg {
  font-size: 29px;
  line-height: 29px;
  letter-spacing: 0em;
}
.p-home .section-fv .fv__commute::before {
  content: "";
  display: block;
  width: 22.29px;
  height: 27.74px;
  background-image: url("../img/ic__train.png");
  background-size: cover;
}
.p-home .section-fv .fv__pr--ttl {
  position: relative;
  z-index: 1;
  width: -moz-fit-content;
  width: fit-content;
  padding: 9px 47px 6px 20px;
  background: #232738;
  box-shadow: 0px 0px 10px rgba(115, 87, 72, 0.2509803922);
  -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 22px) 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, calc(100% - 22px) 100%, 0 100%);
  font-size: "Noto Sans JP";
  font-weight: 700;
  font-size: 36px;
  line-height: 52px;
  letter-spacing: 0em;
  color: white;
}
@media screen and (max-width: 798px) {
  .p-home .section-fv .fv__pr--ttl {
    padding: 5px 16px 5px 29px;
    -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
    font-size: 16px;
    line-height: 23px;
  }
}
.p-home .section-fv .fv__pr--text {
  display: flex;
  align-items: baseline;
  width: -moz-fit-content;
  width: fit-content;
  padding: 9px 48px 7px 20px;
  background: white;
  box-shadow: 0px 0px 10px rgba(115, 87, 72, 0.2509803922);
  -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 22px) 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, calc(100% - 22px) 100%, 0 100%);
  transform: translateY(-10px);
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 36px;
  line-height: 52px;
  letter-spacing: 0em;
  color: #232738;
}
@media screen and (max-width: 798px) {
  .p-home .section-fv .fv__pr--text {
    padding: 7px 25px 7px 29px;
    -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
    font-size: 16px;
    line-height: 23px;
  }
}
.p-home .section-fv .fv__pr--text .--three-side {
  position: relative;
  font-size: 40px;
  line-height: 58px;
}
@media screen and (max-width: 798px) {
  .p-home .section-fv .fv__pr--text .--three-side {
    font-size: 20px;
    line-height: 29px;
  }
}
.p-home .section-fv .fv__pr--text .--three-side .--dot {
  font-size: 40px;
  line-height: 58px;
}
@media screen and (max-width: 798px) {
  .p-home .section-fv .fv__pr--text .--three-side .--dot {
    font-size: 20px;
    line-height: 29px;
    letter-spacing: -0.2em;
  }
}
.p-home .section-fv .fv__pr--text .--three-side::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 15px;
  background-color: #E9C090;
}
@media screen and (max-width: 798px) {
  .p-home .section-fv .fv__pr--text .--three-side::after {
    height: 10px;
  }
}
.p-home .section-fv .fv__pr--text .rel {
  position: relative;
}
.p-home .section-fv .fv__pr--text .--cure-bg {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: baseline;
  letter-spacing: 0em;
  color: #437EF6;
}
.p-home .section-fv .fv__pr--text .--cure-bg span {
  position: relative;
  font-size: 45px;
  line-height: 65px;
  letter-spacing: 0em;
}
@media screen and (max-width: 798px) {
  .p-home .section-fv .fv__pr--text .--cure-bg span {
    font-size: 26px;
    line-height: 38px;
  }
}
.p-home .section-fv .fv__pr--text .--cure-bg span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: #E9C090;
}
@media screen and (max-width: 798px) {
  .p-home .section-fv .fv__pr--text .--cure-bg span::before {
    left: 10px;
    width: 6px;
    height: 6px;
  }
}
.p-home .section-fv .fv__pr--text .--cure {
  position: relative;
  display: flex;
  align-items: baseline;
  letter-spacing: 0em;
  background: linear-gradient(91.15deg, #437EF6 73.37%, #1359B2 98.78%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.p-home .section-fv .fv__pr--text .--cure span {
  font-size: 45px;
  line-height: 65px;
  letter-spacing: 0em;
}
@media screen and (max-width: 798px) {
  .p-home .section-fv .fv__pr--text .--cure span {
    font-size: 26px;
    line-height: 38px;
  }
}
.p-home .section-fv .fv__services {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  height: 39px;
  padding: 0 15px;
  margin-bottom: 5px;
  background-color: #0C6CE5;
  box-shadow: 0px 0px 10px rgba(115, 87, 72, 0.2509803922);
}
@media screen and (max-width: 798px) {
  .p-home .section-fv .fv__services {
    margin-top: -5px;
    margin-left: 28px;
    padding: 7px 11px 7px 12px;
  }
}
.p-home .section-fv .fv__services .--service {
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 25px;
  line-height: 35px;
  letter-spacing: 0.02em;
  color: white;
}
@media screen and (max-width: 798px) {
  .p-home .section-fv .fv__services .--service {
    font-size: 18px;
    line-height: 25px;
  }
}
.p-home .section-fv .fv__services .--cross {
  display: block;
  width: 28px;
  height: 28px;
  background-image: url("../img/ic__cross.png");
  background-size: cover;
}
@media screen and (max-width: 798px) {
  .p-home .section-fv .fv__services .--cross {
    width: 19px;
    height: 19px;
  }
}
.p-home .section-fv .fv__summarize {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 15px 5px;
  margin-bottom: 12px;
  background-color: #0C6CE5;
  box-shadow: 0px 0px 10px rgba(115, 87, 72, 0.2509803922);
  font-family: "Noto Sans JP";
  font-weight: 900;
  font-size: 35px;
  line-height: 49px;
  letter-spacing: 0.02em;
  color: white;
}
@media screen and (max-width: 798px) {
  .p-home .section-fv .fv__summarize {
    margin-left: 28px;
    padding: 3px 13px 3px 14px;
    font-size: 25px;
    line-height: 35px;
  }
}
.p-home .section-fv .fv__marks {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media screen and (max-width: 798px) {
  .p-home .section-fv .fv__marks {
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 106px;
    background-color: rgba(255, 255, 255, 0.5333333333);
  }
}
@media screen and (max-width: 798px) {
  .p-home .section-fv .fv__marks .--mask {
    width: 101px;
    height: 91px;
  }
}
.p-home .section-reservation {
  position: relative;
  height: 412px;
}
@media screen and (max-width: 798px) {
  .p-home .section-reservation {
    height: auto;
    background-color: #DFE5EB;
  }
}
.p-home .section-reservation .reserv_bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.p-home .section-reservation .reserv_bg * {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 200px;
  line-height: 200px;
  letter-spacing: 0.1em;
  color: white;
}
@media screen and (max-width: 798px) {
  .p-home .section-reservation .reserv_bg {
    display: none;
  }
}
.p-home .section-reservation .section__overlay {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 798px) {
  .p-home .section-reservation .section__overlay {
    position: relative;
    height: auto;
  }
}
.p-home .section-reservation .section__overlay .section__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 28px;
  overflow: visible;
}
@media screen and (max-width: 798px) {
  .p-home .section-reservation .section__overlay .section__inner {
    height: auto;
    padding: 28px;
  }
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  max-width: 960px;
  height: 253px;
  padding: 20px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s ease;
  overflow: hidden;
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card:hover {
  cursor: pointer;
  --tw-shadow: 0px 14px 10px rgba(14, 51, 108, .06), 40px 30px 40px rgba(14, 51, 108, .12);
  --tw-shadow-colored: 0px 14px 10px var(--tw-shadow-color), 40px 30px 40px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
}
@media screen and (max-width: 798px) {
  .p-home .section-reservation .section__overlay .section__inner .reserv__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 400px;
    height: auto;
    overflow: visible;
  }
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card--content {
  position: relative;
  z-index: 11;
  width: 100%;
  max-width: 460px;
  height: 100%;
  padding: 20px;
  background-color: white;
}
@media screen and (max-width: 798px) {
  .p-home .section-reservation .section__overlay .section__inner .reserv__card--content {
    display: none;
  }
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card--content .--ttl {
  margin-bottom: 14px;
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 28px;
  line-height: 39px;
  letter-spacing: 0.02em;
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card--content .--ttl .--sm {
  font-size: 22px;
  line-height: 31px;
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card--content .--content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card--content .--content-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card--content .--cut-off {
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #0C6CE5;
  border-radius: 100%;
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card--content .--cut-off .--text-40 {
  display: flex;
  align-items: baseline;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 55px;
  line-height: 55px;
  letter-spacing: 0em;
  color: white;
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card--content .--cut-off .--text-40 .--sm {
  font-size: 25px;
  line-height: 35px;
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card--content .--cut-off .--text-off {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 36px;
  letter-spacing: 0.02em;
  color: white;
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card--content .--tag-wrap {
  display: flex;
  align-items: center;
  gap: 13px;
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card--content .--tag {
  display: block;
  padding: 4px 11px;
  background-color: #9EBDE5;
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.02em;
  color: white;
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card--content .--text-price {
  margin-top: 4px;
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 15px;
  line-height: 21px;
  letter-spacing: 0.02em;
  color: #232738;
  text-align: center;
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card--content .--price-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  color: #0C6CE5;
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card--content .--price {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 63px;
  line-height: 63px;
  letter-spacing: 0.02em;
  color: #0C6CE5;
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card--content .--comma {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 42px;
  line-height: 42px;
  letter-spacing: 0.02em;
  color: #0C6CE5;
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card--content .--yen {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 23px;
  line-height: 23px;
  letter-spacing: 0.02em;
  color: #0C6CE5;
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card--content .--tax {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 0.02em;
  color: #0C6CE5;
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card--content .--banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card--content .--banner::before {
  content: url("../img/reserve__banner--left.png");
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card--content .--banner::after {
  content: url("../img/reserve__banner--right.png");
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card--content .--banner-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card--content .--banner-text {
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0em;
  color: #232738;
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card--content .--banner-content {
  display: flex;
  align-items: center;
  gap: 3px;
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card--content .--banner-tag {
  display: block;
  padding: 3px 5px;
  background-color: #0C6CE5;
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0em;
  color: white;
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card--content .--banner-text-em {
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0em;
  color: #0C6CE5;
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card--content-sp {
  position: relative;
  z-index: 11;
  display: none;
  width: 100%;
  height: 100%;
  background-color: white;
}
@media screen and (max-width: 798px) {
  .p-home .section-reservation .section__overlay .section__inner .reserv__card--content-sp {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .p-home .section-reservation .section__overlay .section__inner .reserv__card--content-sp > img {
    width: 100%;
    height: auto;
    display: block;
  }
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card--content-sp .--content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 6px;
  padding: 13px 14px;
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card--content-sp .--tag-wrap {
  display: flex;
  align-items: center;
  gap: 13px;
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card--content-sp .--tag {
  display: block;
  padding: 4px 11px;
  background-color: #9EBDE5;
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.02em;
  color: white;
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card--content-sp .--content-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card--content-sp .--cut-off {
  width: 95px;
  height: 95px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #0C6CE5;
  border-radius: 100%;
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card--content-sp .--cut-off .--text-40 {
  display: flex;
  align-items: baseline;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 45px;
  line-height: 45px;
  letter-spacing: 0em;
  color: white;
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card--content-sp .--cut-off .--text-40 .--sm {
  font-size: 25px;
  line-height: 35px;
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card--content-sp .--cut-off .--text-off {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 30px;
  letter-spacing: 0.02em;
  color: white;
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card--content-sp .--wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card--content-sp .--text-price {
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 12px;
  line-height: 17px;
  letter-spacing: 0.02em;
  color: #232738;
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card--content-sp .--price-wrap {
  display: flex;
  align-items: flex-end;
  color: #0C6CE5;
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card--content-sp .--price {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 50px;
  line-height: 50px;
  letter-spacing: 0.02em;
  color: #0C6CE5;
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card--content-sp .--comma {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 35px;
  line-height: 35px;
  letter-spacing: 0.02em;
  color: #0C6CE5;
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card--content-sp .--unit {
  display: flex;
  flex-direction: column;
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card--content-sp .--yen {
  display: block;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.02em;
  color: #0C6CE5;
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card--content-sp .--tax {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 11px;
  line-height: 11px;
  letter-spacing: 0.02em;
  color: #0C6CE5;
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card--content-sp .--banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card--content-sp .--banner::before {
  content: url("../img/reserve__banner--left.png");
  height: 40px;
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card--content-sp .--banner::after {
  content: url("../img/reserve__banner--right.png");
  height: 40px;
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card--content-sp .--banner-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card--content-sp .--banner-text {
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0em;
  color: #232738;
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card--content-sp .--banner-content {
  display: flex;
  align-items: center;
  gap: 3px;
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card--content-sp .--banner-tag {
  display: block;
  padding: 3px 5px;
  background-color: #0C6CE5;
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0em;
  color: white;
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card--content-sp .--banner-text-em {
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0em;
  color: #0C6CE5;
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card--content-sp .--link {
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 39px;
  background-color: #06C755;
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0em;
  color: white;
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card--content-sp .--link::before {
  content: url("../img/ic__line.png");
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card--link-wrap {
  position: relative;
  z-index: 11;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
@media screen and (max-width: 798px) {
  .p-home .section-reservation .section__overlay .section__inner .reserv__card--link-wrap {
    display: none;
  }
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card--link-wrap .--link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: -moz-fit-content;
  width: fit-content;
  height: 46px;
  padding: 0 20px;
  margin-right: 52px;
  border: 1px solid #06C755;
  border-radius: 100px;
  background-color: #06C755;
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 15px;
  line-height: 15px;
  letter-spacing: 0.02em;
  color: white;
}
@media screen and (max-width: 1279px) {
  .p-home .section-reservation .section__overlay .section__inner .reserv__card--link-wrap .--link {
    margin-right: 0px;
  }
}
@media screen and (max-width: 998px) {
  .p-home .section-reservation .section__overlay .section__inner .reserv__card--link-wrap .--link {
    gap: 20px;
  }
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card--link-wrap .--link::after {
  content: url("../img/ic__link-right.png");
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 45%;
  height: 100%;
  background-color: #0C6CE5;
}
@media screen and (max-width: 798px) {
  .p-home .section-reservation .section__overlay .section__inner .reserv__card::before {
    width: 100%;
    height: 50%;
  }
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card:hover::after {
  transform: scale(1.2);
}
.p-home .section-reservation .section__overlay .section__inner .reserv__card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  display: block;
  width: 55%;
  height: 100%;
  background-image: url("../img/reserv__card-bg.png");
  background-size: cover;
  transition: 0.25s all ease;
  cursor: pointer;
}
@media screen and (max-width: 798px) {
  .p-home .section-reservation .section__overlay .section__inner .reserv__card::after {
    top: unset;
    bottom: 0;
    width: 100%;
    height: 50%;
  }
}
.p-home .section-reservation .section__overlay .section__inner .--particle01 {
  position: absolute;
  top: -240px;
  right: 86px;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1279px) {
  .p-home .section-reservation .section__overlay .section__inner .--particle01 {
    display: none;
  }
}
.p-home .section-reservation .section__overlay .section__inner .--particle02 {
  position: absolute;
  top: -220px;
  right: 163px;
  z-index: 1;
}
@media screen and (max-width: 1279px) {
  .p-home .section-reservation .section__overlay .section__inner .--particle02 {
    display: none;
  }
}
.p-home .section-reservation .section__overlay .section__inner .--particle03 {
  position: absolute;
  bottom: -239px;
  left: -400px;
  z-index: 1;
}
@media screen and (max-width: 1279px) {
  .p-home .section-reservation .section__overlay .section__inner .--particle03 {
    display: none;
  }
}
.p-home .section-concern {
  padding: 82px 27px 80px 28px;
  background-image: url("../img/concern__bg.png");
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 798px) {
  .p-home .section-concern {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.p-home .section-concern .section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 798px) {
  .p-home .section-concern .section__inner {
    gap: 28px;
  }
}
.p-home .section-concern .concern__ttl {
  position: relative;
  display: flex;
  align-items: baseline;
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 32px;
  line-height: 46px;
  letter-spacing: 0em;
  color: white;
}
@media screen and (max-width: 798px) {
  .p-home .section-concern .concern__ttl {
    flex-direction: column;
    align-items: center;
  }
}
.p-home .section-concern .concern__ttl .--wrap {
  display: flex;
  align-items: baseline;
}
.p-home .section-concern .concern__ttl .--dot {
  position: relative;
  font-size: 40px;
  line-height: 58px;
  color: white;
}
.p-home .section-concern .concern__ttl .--dot::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10px;
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background-color: white;
}
.p-home .section-concern .concern__line {
  margin-top: -32px;
}
@media screen and (max-width: 798px) {
  .p-home .section-concern .concern__line {
    margin-top: 0px;
  }
}
.p-home .section-concern .concern__content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 774px;
  padding: 40px 20px 40px 45px;
  background-color: #F6FAFF;
}
@media screen and (max-width: 798px) {
  .p-home .section-concern .concern__content {
    padding-top: 27px;
    padding-bottom: 28px;
  }
}
.p-home .section-concern .concern__items {
  display: flex;
  flex-direction: column;
  gap: 23px;
}
@media screen and (max-width: 798px) {
  .p-home .section-concern .concern__items {
    gap: 10px;
  }
}
.p-home .section-concern .concern__item {
  position: relative;
}
.p-home .section-concern .concern__item p {
  display: inline;
  border-bottom: 2px dotted #000000;
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0em;
  color: #232738;
}
@media screen and (max-width: 798px) {
  .p-home .section-concern .concern__item p {
    font-size: 16px;
    line-height: 29px;
  }
}
.p-home .section-concern .concern__item p .--em {
  font-size: 18px;
  line-height: 32px;
  color: #FF7F00;
}
@media screen and (max-width: 798px) {
  .p-home .section-concern .concern__item p .--em {
    font-size: 16px;
    line-height: 29px;
  }
}
.p-home .section-concern .concern__item::before {
  content: "";
  position: absolute;
  top: 7px;
  left: -39px;
  width: 28px;
  height: 28px;
  background-image: url("../img/ic__check.svg");
  background-size: cover;
}
@media screen and (max-width: 798px) {
  .p-home .section-concern .concern__item::before {
    left: -25px;
    width: 18px;
    height: 18px;
  }
}
.p-home .section-point {
  padding: 80px 27px 80px 28px;
  overflow: hidden;
}
@media screen and (max-width: 798px) {
  .p-home .section-point {
    padding: 50px 27px 50px 28px;
  }
}
.p-home .section-point .section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 137px;
}
@media screen and (max-width: 798px) {
  .p-home .section-point .section__inner {
    gap: 125px;
  }
}
.p-home .section-point .section__ttl {
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 32px;
  line-height: 46px;
  letter-spacing: 0em;
  color: #232738;
  text-align: center;
}
@media screen and (max-width: 798px) {
  .p-home .section-point .section__ttl {
    font-size: 24px;
    line-height: 35px;
  }
}
.p-home .section-point .point__items {
  display: flex;
  flex-direction: column;
  gap: 104px;
}
.p-home .section-point .point__item {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  width: 100%;
  max-width: 960px;
  transition: box-shadow 0.3s ease;
}
.p-home .section-point .point__item.--item01 {
  margin-bottom: 30px;
}
@media screen and (max-width: 798px) {
  .p-home .section-point .point__item.--item01 {
    margin-bottom: 0px;
  }
}
.p-home .section-point .point__item--content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  max-width: 440px;
}
@media screen and (max-width: 798px) {
  .p-home .section-point .point__item--content {
    align-items: center;
    gap: 28px;
  }
}
.p-home .section-point .point__item--label {
  position: absolute;
  top: -57px;
  left: 0;
  display: block;
  padding-bottom: 3px;
  border-bottom: 1px solid #0C6CE5;
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 24px;
  line-height: 35px;
  letter-spacing: 0em;
  color: #0C6CE5;
}
@media screen and (max-width: 798px) {
  .p-home .section-point .point__item--label {
    top: -75px;
    left: calc((100% - 79px) / 2);
  }
}
.p-home .section-point .point__item--label .--no {
  font-family: "Oswald", sans-serif;
  font-size: 25px;
  line-height: 37px;
}
.p-home .section-point .point__item--label::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: calc((100% - 6px) / 2);
  width: 6px;
  height: 7px;
  background-color: #0C6CE5;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.p-home .section-point .point__item--ttl {
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 24px;
  background-color: white;
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 40px;
  line-height: 56px;
  letter-spacing: 0.02em;
  color: #232738;
}
@media screen and (max-width: 998px) {
  .p-home .section-point .point__item--ttl {
    font-size: 24px;
    line-height: 35px;
  }
}
.p-home .section-point .point__item--ttl.--particle::before {
  content: "";
  position: absolute;
  top: -300px;
  left: -300px;
  z-index: -1;
  width: 600px;
  height: 600px;
  background-image: url("../img/point__particle.png");
  background-size: cover;
}
@media screen and (max-width: 798px) {
  .p-home .section-point .point__item--ttl.--particle::before {
    top: -200px;
    left: -200px;
    width: 400px;
    height: 400px;
  }
}
.p-home .section-point .point__item--ttl.--particle02::after {
  content: "";
  position: absolute;
  top: -250px;
  right: -250px;
  z-index: -1;
  width: 600px;
  height: 600px;
  background-image: url("../img/point__particle.png");
  background-size: cover;
}
@media screen and (max-width: 798px) {
  .p-home .section-point .point__item--ttl.--particle02::after {
    top: -180px;
    right: -180px;
    width: 400px;
    height: 400px;
  }
}
@media screen and (max-width: 798px) and (max-width: 798px) {
  .p-home .section-point .point__item--ttl.--particle02::after {
    right: unset;
    left: -200px;
  }
}
.p-home .section-point .point__item--text {
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 20px;
  line-height: 36px;
  letter-spacing: 0em;
  color: #232738;
}
@media screen and (max-width: 998px) {
  .p-home .section-point .point__item--text {
    font-size: 16px;
    line-height: 29px;
  }
}
.p-home .section-point .point__item--text .--bold {
  position: relative;
  font-weight: 700;
  font-size: 20px;
  line-height: 36px;
  letter-spacing: 0em;
}
@media screen and (max-width: 798px) {
  .p-home .section-point .point__item--text .--bold {
    font-size: 16px;
    line-height: 29px;
  }
}
.p-home .section-point .point__item--text .--bold::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  z-index: -1;
  width: 100%;
  height: 0;
  border-bottom: 10px solid #E9C090;
}
.p-home .section-point .point__item--img-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
  display: block;
}
@media screen and (max-width: 798px) {
  .p-home .section-point .point__item--img-wrap {
    display: none;
  }
}
.p-home .section-point .point__item--img-wrap.--particle::before {
  content: "";
  position: absolute;
  top: -300px;
  right: -300px;
  z-index: -1;
  width: 600px;
  height: 600px;
  background-image: url("../img/point__particle.png");
  background-size: cover;
}
@media screen and (max-width: 798px) {
  .p-home .section-point .point__item--img-wrap.--particle::before {
    top: -300px;
    right: -200px;
    width: 400px;
    height: 400px;
  }
}
.p-home .section-point .point__item--img {
  position: relative;
  display: none;
  width: 100%;
}
@media screen and (max-width: 798px) {
  .p-home .section-point .point__item--img {
    display: block;
  }
}
.p-home .section-point .point__item--img.--particle::before {
  content: "";
  position: absolute;
  top: -300px;
  right: -300px;
  z-index: -1;
  width: 600px;
  height: 600px;
  background-image: url("../img/point__particle.png");
  background-size: cover;
}
@media screen and (max-width: 798px) {
  .p-home .section-point .point__item--img.--particle::before {
    top: -300px;
    right: -200px;
    width: 400px;
    height: 400px;
  }
}
.p-home .section-effect {
  position: relative;
  padding: 77px 27px 80px 28px;
  background-color: white;
}
@media screen and (max-width: 798px) {
  .p-home .section-effect {
    padding: 50px 27px 50px 28px;
  }
}
.p-home .section-effect::after {
  content: "";
  position: absolute;
  left: calc((100% - 200px) / 2);
  bottom: -30px;
  display: block;
  width: 200px;
  height: 30px;
  background-color: white;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media screen and (max-width: 798px) {
  .p-home .section-effect::after {
    left: calc((100% - 100px) / 2);
    bottom: -18px;
    width: 100px;
    height: 18px;
  }
}
.p-home .section-effect .section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 31px;
}
@media screen and (max-width: 798px) {
  .p-home .section-effect .section__inner {
    gap: 40px;
  }
}
.p-home .section-effect .section__ttl {
  display: flex;
  align-items: baseline;
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 32px;
  line-height: 46px;
  letter-spacing: 0em;
  color: #232738;
}
.p-home .section-effect .section__ttl .--no {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 95px;
  letter-spacing: 0em;
  color: #FF7F00;
}
.p-home .section-effect .section__ttl .--percent {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 40px;
  letter-spacing: 0em;
  color: #FF7F00;
}
.p-home .section-effect .effect__text {
  display: flex;
  align-items: center;
  gap: 22px;
}
.p-home .section-effect .effect__text span {
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 32px;
  line-height: 46px;
  letter-spacing: 0em;
  text-align: center;
  color: #232738;
}
@media screen and (max-width: 798px) {
  .p-home .section-effect .effect__text span {
    font-size: 24px;
    line-height: 35px;
  }
}
.p-home .section-effect .effect__text .char__dot {
  font-size: 32px;
  line-height: 46px;
  color: #0C6CE5;
}
@media screen and (max-width: 798px) {
  .p-home .section-effect .effect__text .char__dot {
    font-size: 24px;
    line-height: 35px;
  }
}
.p-home .section-effect .effect__text .char__dot.--number {
  font-family: "Oswald", sans-serif;
}
.p-home .section-effect .effect__text::before {
  content: url("../img/effect__stick01.png");
}
@media screen and (max-width: 798px) {
  .p-home .section-effect .effect__text::before {
    content: unset;
  }
}
.p-home .section-effect .effect__text::after {
  content: url("../img/effect__stick02.png");
}
@media screen and (max-width: 798px) {
  .p-home .section-effect .effect__text::after {
    content: unset;
  }
}
.p-home .section-example {
  padding: 110px 27px 80px 28px;
}
@media screen and (max-width: 798px) {
  .p-home .section-example {
    padding: 68px 27px 50px 28px;
  }
}
.p-home .section-example .section__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.p-home .section-example .example__items {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 28px;
}
@media screen and (max-width: 798px) {
  .p-home .section-example .example__items {
    flex-direction: column;
  }
}
.p-home .section-example .example__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 301px;
  padding: 40px 17px 40px 16px;
  background-color: white;
  transition: box-shadow 0.3s ease;
}
.p-home .section-example .example__item:hover {
  cursor: pointer;
  --tw-shadow: 0px 14px 10px rgba(14, 51, 108, .06), 40px 30px 40px rgba(14, 51, 108, .12);
  --tw-shadow-colored: 0px 14px 10px var(--tw-shadow-color), 40px 30px 40px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
}
@media screen and (max-width: 798px) {
  .p-home .section-example .example__item {
    max-width: 420px;
    padding: 40px 26px 50px;
  }
}
.p-home .section-example .example__item--label {
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 24px;
  line-height: 35px;
  letter-spacing: 0em;
  color: #0C6CE5;
}
.p-home .section-example .example__item--ttl {
  margin-top: -4px;
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 16px;
  line-height: 29px;
  letter-spacing: -0.01em;
  color: #0C6CE5;
}
.p-home .section-example .example__item--img-wrap {
  display: flex;
  align-items: stretch;
  gap: 8px;
}
.p-home .section-example .example__item--img {
  position: relative;
}
.p-home .section-example .example__item--img .--caption-before {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 17px;
  background-color: #0C6CE5;
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 12px;
  line-height: 22px;
  letter-spacing: 0em;
  color: white;
}
.p-home .section-example .example__item--img .--caption-after {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 17px;
  background-color: #FF7F00;
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 12px;
  line-height: 22px;
  letter-spacing: 0em;
  color: white;
}
.p-home .section-example .example__item--text {
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 16px;
  line-height: 29px;
}
.p-home .section-voice {
  padding: 80px 0px;
  background: linear-gradient(100.24deg, #0C6CE5 0%, #073C7F 100%);
}
@media screen and (max-width: 798px) {
  .p-home .section-voice {
    padding: 40px 0px;
  }
}
.p-home .section-voice .section__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
}
@media screen and (max-width: 798px) {
  .p-home .section-voice .section__inner {
    padding-left: 3px;
    padding-right: 2px;
    gap: 3px;
  }
}
.p-home .section-voice .section__inner .swiper {
  width: 100%;
  max-width: 960px;
  margin: 0px;
}
.p-home .section-voice .section__inner .swiper .swiper-wrapper {
  align-items: stretch;
}
.p-home .section-voice .section__inner .swiper .swiper-slide {
  height: 100%;
}
.p-home .section-voice .section__inner .swiper .swiper-button-next, .p-home .section-voice .section__inner .swiper .swiper-button-prev, .p-home .section-voice .section__inner .swiper .swiper-scrollbar {
  display: none;
}
@media screen and (max-width: 798px) {
  .p-home .section-voice .section__inner .swiper {
    max-width: 100%;
  }
}
.p-home .section-voice .section__inner .swiper-prev, .p-home .section-voice .section__inner .swiper-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  min-width: 38px;
  height: 38px;
  background-color: white;
  border-radius: 100%;
  opacity: 0.7;
  transition: all 0.25s ease;
}
@media screen and (max-width: 798px) {
  .p-home .section-voice .section__inner .swiper-prev, .p-home .section-voice .section__inner .swiper-next {
    width: 22px;
    min-width: 22px;
    height: 22px;
  }
}
.p-home .section-voice .section__inner .swiper-prev:hover, .p-home .section-voice .section__inner .swiper-next:hover {
  opacity: 1;
}
@media screen and (max-width: 798px) {
  .p-home .section-voice .section__inner .swiper-prev svg, .p-home .section-voice .section__inner .swiper-next svg {
    width: 4px;
  }
}
.p-home .section-voice .section__inner .voice__item {
  display: flex;
  align-items: stretch;
  gap: 38px;
  width: 100%;
  max-width: 960px;
  padding: 40px 40px 40px 38px;
  background-color: white;
}
@media screen and (max-width: 998px) {
  .p-home .section-voice .section__inner .voice__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}
@media screen and (max-width: 798px) {
  .p-home .section-voice .section__inner .voice__item {
    padding: 14px 15px 14px 14px;
  }
}
.p-home .section-voice .section__inner .voice__item--img {
  width: 100%;
  max-width: 404px;
}
@media screen and (max-width: 798px) {
  .p-home .section-voice .section__inner .voice__item--img {
    max-width: unset;
  }
}
.p-home .section-voice .section__inner .voice__item--content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 440px;
}
@media screen and (max-width: 798px) {
  .p-home .section-voice .section__inner .voice__item--content {
    gap: 12px;
    max-width: unset;
  }
}
.p-home .section-voice .section__inner .voice__item--ttl {
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 20px;
  line-height: 29px;
  letter-spacing: 0em;
  color: #0C6CE5;
}
@media screen and (max-width: 798px) {
  .p-home .section-voice .section__inner .voice__item--ttl {
    font-size: 15px;
    line-height: 22px;
  }
}
.p-home .section-voice .section__inner .voice__item--text {
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 16px;
  line-height: 29px;
  letter-spacing: 0em;
  color: #232738;
}
@media screen and (max-width: 798px) {
  .p-home .section-voice .section__inner .voice__item--text {
    font-size: 15px;
    line-height: 27px;
  }
}
.p-home .section-voice-extra {
  padding: 80px 0px 0px;
}
@media screen and (max-width: 998px) {
  .p-home .section-voice-extra {
    padding: 0px;
  }
}
.p-home .section-voice-extra .section__inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-home .section-voice-extra .voice-extra__wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 960px;
}
@media screen and (max-width: 998px) {
  .p-home .section-voice-extra .voice-extra__wrapper {
    max-width: 100%;
  }
}
.p-home .section-voice-extra .voice-extra__wrapper img {
  width: 100%;
}
.p-home .section-voice-extra .section__ttl {
  padding: 40px 0 41px;
  margin-top: -1px;
  background: linear-gradient(176.01deg, #437EF6 -43.48%, #1359B2 96.74%);
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 32px;
  line-height: 46px;
  letter-spacing: 0em;
  color: white;
  text-align: center;
}
@media screen and (max-width: 798px) {
  .p-home .section-voice-extra .section__ttl {
    padding: 29px 43px 28px 44px;
    font-size: 24px;
    line-height: 35px;
  }
}
.p-home .section-famous {
  padding: 80px 27px 80px 28px;
}
@media screen and (max-width: 798px) {
  .p-home .section-famous {
    padding: 50px 27px 50px 28px;
  }
}
.p-home .section-famous .section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 80px;
}
@media screen and (max-width: 798px) {
  .p-home .section-famous .section__inner {
    gap: 28px;
  }
}
.p-home .section-famous .section__ttl {
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 32px;
  line-height: 46px;
  letter-spacing: 0em;
  color: #232738;
  text-align: center;
}
@media screen and (max-width: 798px) {
  .p-home .section-famous .section__ttl {
    font-size: 20px;
    line-height: 29px;
  }
}
.p-home .section-famous .section__ttl .--clr-blue {
  font-size: 32px;
  line-height: 46px;
  color: #0C6CE5;
}
@media screen and (max-width: 798px) {
  .p-home .section-famous .section__ttl .--clr-blue {
    font-size: 20px;
    line-height: 29px;
  }
}
.p-home .section-famous .famous__card {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 960px;
  background-color: white;
  transition: box-shadow 0.3s ease;
}
.p-home .section-famous .famous__card:hover {
  --tw-shadow: 0px 14px 10px rgba(14, 51, 108, .06), 40px 30px 40px rgba(14, 51, 108, .12);
  --tw-shadow-colored: 0px 14px 10px var(--tw-shadow-color), 40px 30px 40px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
}
.p-home .section-famous .famous__card--img {
  width: 100%;
}
.p-home .section-famous .famous__card--content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px;
}
@media screen and (max-width: 798px) {
  .p-home .section-famous .famous__card--content {
    gap: 12px;
    padding: 20px 19px;
  }
}
.p-home .section-famous .famous__card--ttl {
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 24px;
  line-height: 35px;
  letter-spacing: 0em;
  text-align: center;
  color: #000;
}
@media screen and (max-width: 798px) {
  .p-home .section-famous .famous__card--ttl {
    font-size: 18px;
    line-height: 32px;
  }
}
.p-home .section-famous .famous__card--text {
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 16px;
  line-height: 29px;
  letter-spacing: 0em;
  text-align: center;
  color: #000;
}
@media screen and (max-width: 798px) {
  .p-home .section-famous .famous__card--text {
    font-size: 16px;
    line-height: 29px;
    text-align: left;
  }
}
.p-home .section-players {
  overflow: hidden;
}
.p-home .section-players .player__items {
  display: flex;
}
@media screen and (max-width: 798px) {
  .p-home .section-players .player__item {
    height: 130px;
  }
}
.p-home .section-activity {
  padding: 80px 27px 80px 28px;
}
@media screen and (max-width: 798px) {
  .p-home .section-activity {
    padding: 50px 27px 50px 28px;
  }
}
.p-home .section-activity .section__inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-home .section-activity .activity__card {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 781px;
  margin-bottom: -88px;
}
@media screen and (max-width: 998px) {
  .p-home .section-activity .activity__card {
    margin-bottom: 0px;
    max-width: 701px;
  }
}
.p-home .section-activity .activity__card--text {
  height: 173px;
  padding: 25px 62px 25px 63px;
  margin-right: 80px;
  background: linear-gradient(167.48deg, #0C6CE5 8.3%, #073C7F 90.21%);
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 24px;
  line-height: 35px;
  letter-spacing: 0em;
  color: white;
  text-align: center;
}
@media screen and (max-width: 998px) {
  .p-home .section-activity .activity__card--text {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0;
  }
}
@media screen and (max-width: 798px) {
  .p-home .section-activity .activity__card--text {
    height: 79px;
    padding: 0;
    font-size: 18px;
    line-height: 32px;
  }
}
.p-home .section-activity .activity__card--img {
  height: 173px;
  margin-left: 80px;
  transform: translateY(-88px);
}
@media screen and (max-width: 998px) {
  .p-home .section-activity .activity__card--img {
    transform: translateY(0);
    margin-left: 0;
  }
}
@media screen and (max-width: 798px) {
  .p-home .section-activity .activity__card--img {
    height: auto;
  }
}
.p-home .section-comparison {
  padding: 80px 27px 90px 28px;
}
@media screen and (max-width: 798px) {
  .p-home .section-comparison {
    padding: 50px 18px 60px 18px;
  }
}
.p-home .section-comparison .section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 69px;
}
@media screen and (max-width: 798px) {
  .p-home .section-comparison .section__inner {
    gap: 60px;
  }
}
.p-home .section-comparison .section__ttl {
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 32px;
  line-height: 54px;
  letter-spacing: 0.02em;
  text-align: center;
  color: #232738;
}
@media screen and (max-width: 798px) {
  .p-home .section-comparison .section__ttl {
    font-size: 20px;
    line-height: 34px;
  }
}
.p-home .section-comparison .section__ttl--en {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  text-align: center;
  color: #0C6CE5;
}
.p-home .section-comparison .section__ttl--wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.p-home .section-comparison .comparison__wrapper {
  width: 100%;
  max-width: 958px;
  padding: 17px 11px 18px 18px;
  background-color: #DFE5EB;
  border-radius: 5px;
}
@media screen and (max-width: 798px) {
  .p-home .section-comparison .comparison__wrapper {
    padding: 10px 11px;
  }
}
.p-home .section-comparison .comparison__wrapper table {
  width: 100%;
}
.p-home .section-comparison .comparison__wrapper table .--standard__wrapper {
  width: 190px;
  min-width: 190px;
  padding-top: 10px;
}
@media screen and (max-width: 798px) {
  .p-home .section-comparison .comparison__wrapper table .--standard__wrapper {
    width: 68px;
    min-width: 68px;
    padding-top: 5px;
  }
}
.p-home .section-comparison .comparison__wrapper table .--standard {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 100px;
  background-color: #0C6CE5;
  border-radius: 5px;
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0em;
  text-align: center;
  color: white;
}
@media screen and (max-width: 798px) {
  .p-home .section-comparison .comparison__wrapper table .--standard {
    font-size: 12px;
    line-height: 22px;
  }
}
.p-home .section-comparison .comparison__wrapper table .--normal__wrapper {
  padding-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
}
@media screen and (max-width: 798px) {
  .p-home .section-comparison .comparison__wrapper table .--normal__wrapper {
    padding-top: 5px;
    padding-left: 5px;
    padding-right: 5px;
  }
}
.p-home .section-comparison .comparison__wrapper table .--normal {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 100px;
  background-color: white;
  border-radius: 5px;
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 20px;
  line-height: 36px;
  letter-spacing: 0em;
  text-align: center;
  color: #000000;
}
@media screen and (max-width: 798px) {
  .p-home .section-comparison .comparison__wrapper table .--normal {
    font-size: 13px;
    line-height: 23px;
  }
}
.p-home .section-comparison .comparison__wrapper table .--jikutsui__wrapper {
  position: relative;
  padding-top: 10px;
  padding-left: 20px;
  padding-right: 19px;
  background-color: #0C6CE5;
}
@media screen and (max-width: 798px) {
  .p-home .section-comparison .comparison__wrapper table .--jikutsui__wrapper {
    padding-top: 5px;
    padding-left: 5px;
    padding-right: 5px;
  }
}
.p-home .section-comparison .comparison__wrapper table .--jikutsui__wrapper.--top::before {
  content: "";
  position: absolute;
  left: 0;
  top: -26px;
  width: 100%;
  height: 26px;
  background-color: #0C6CE5;
  border-radius: 5px 5px 0 0;
}
@media screen and (max-width: 798px) {
  .p-home .section-comparison .comparison__wrapper table .--jikutsui__wrapper.--top::before {
    top: -20px;
    height: 20px;
  }
}
.p-home .section-comparison .comparison__wrapper table .--jikutsui__wrapper.--bottom::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -28px;
  width: 100%;
  height: 28px;
  background-color: #0C6CE5;
  border-radius: 0 0 5px 5px;
}
@media screen and (max-width: 798px) {
  .p-home .section-comparison .comparison__wrapper table .--jikutsui__wrapper.--bottom::after {
    bottom: -20px;
    height: 20px;
  }
}
.p-home .section-comparison .comparison__wrapper table .--jikutsui {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 100px;
  background-color: white;
  border-radius: 5px;
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 24px;
  line-height: 43px;
  letter-spacing: 0em;
  text-align: center;
  color: #0C6CE5;
}
@media screen and (max-width: 798px) {
  .p-home .section-comparison .comparison__wrapper table .--jikutsui {
    font-size: 13px;
    line-height: 23px;
  }
}
.p-home .section-comparison .comparison__wrapper table .--number {
  font-family: "Oswald", sans-serif;
}
.p-home .section-comparison .comparison__wrapper table .--sm {
  display: block;
  font-size: 16px;
  line-height: 29px;
}
@media screen and (max-width: 798px) {
  .p-home .section-comparison .comparison__wrapper table .--sm {
    font-size: 10px;
    line-height: 18px;
  }
}
.p-home .section-comparison .comparison__wrapper table thead .--standard__wrapper {
  padding-top: 0;
}
.p-home .section-comparison .comparison__wrapper table thead .--normal__wrapper {
  padding-top: 0;
  white-space: nowrap;
}
.p-home .section-comparison .comparison__wrapper table thead .--normal {
  min-height: 80px;
  font-weight: 700;
}
@media screen and (max-width: 798px) {
  .p-home .section-comparison .comparison__wrapper table thead .--normal {
    min-height: 57px;
  }
}
.p-home .section-comparison .comparison__wrapper table thead .--jikutsui__wrapper {
  padding-top: 0;
  white-space: nowrap;
}
.p-home .section-comparison .comparison__wrapper table thead .--jikutsui {
  min-height: 80px;
  background-color: #0C6CE5;
  color: white;
  font-weight: 700;
  font-size: 32px;
  line-height: 46px;
}
@media screen and (max-width: 798px) {
  .p-home .section-comparison .comparison__wrapper table thead .--jikutsui {
    min-height: 57px;
    font-size: 20px;
    line-height: 29px;
  }
}
.p-home .section-flow {
  padding: 80px 28px 80px 28px;
  background-color: white;
}
@media screen and (max-width: 798px) {
  .p-home .section-flow {
    padding: 50px 28px 50px 28px;
  }
}
.p-home .section-flow .section__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 80px;
}
@media screen and (max-width: 798px) {
  .p-home .section-flow .section__inner {
    gap: 50px;
  }
}
.p-home .section-flow .section__inner .--circle-top {
  position: absolute;
  top: -152px;
  right: -220px;
  z-index: 5;
}
@media screen and (max-width: 998px) {
  .p-home .section-flow .section__inner .--circle-top {
    top: 40%;
    right: -180px;
    z-index: 5;
    width: 220px;
  }
}
.p-home .section-flow .section__inner .--circle-bottom {
  position: absolute;
  bottom: -252px;
  left: -200px;
}
@media screen and (max-width: 998px) {
  .p-home .section-flow .section__inner .--circle-bottom {
    display: none;
  }
}
.p-home .section-flow .section__ttl {
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 32px;
  line-height: 54px;
  letter-spacing: 0.02em;
  text-align: center;
  color: #232738;
}
@media screen and (max-width: 798px) {
  .p-home .section-flow .section__ttl {
    font-size: 20px;
    line-height: 34px;
  }
}
.p-home .section-flow .section__ttl--en {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  text-align: center;
  color: #0C6CE5;
}
.p-home .section-flow .section__ttl--wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.p-home .section-flow .flow__items {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 60px 65px;
  width: 100%;
  max-width: 960px;
}
@media screen and (max-width: 798px) {
  .p-home .section-flow .flow__items {
    gap: 24px;
    padding: 28px 24px 28px 25px;
  }
}
.p-home .section-flow .flow__items::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #F5F8FF;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.0588235294);
}
@media screen and (max-width: 798px) {
  .p-home .section-flow .flow__items::before {
    height: calc(100% - 193px - 28px);
  }
}
.p-home .section-flow .flow__items .--particle {
  position: absolute;
  top: 50px;
  right: -450px;
  z-index: -2;
}
@media screen and (max-width: 798px) {
  .p-home .section-flow .flow__items .--particle {
    display: none;
  }
}
.p-home .section-flow .flow__item {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  background-color: white;
  box-shadow: 0px 0px 20px rgba(33, 78, 171, 0.0588235294);
  transition: box-shadow 0.3s ease;
}
.p-home .section-flow .flow__item:hover {
  cursor: pointer;
  --tw-shadow: 0px 14px 10px rgba(14, 51, 108, .06), 40px 30px 40px rgba(14, 51, 108, .12);
  --tw-shadow-colored: 0px 14px 10px var(--tw-shadow-color), 40px 30px 40px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
}
@media screen and (max-width: 798px) {
  .p-home .section-flow .flow__item {
    flex-direction: column;
  }
}
.p-home .section-flow .flow__item--content {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 998px) {
  .p-home .section-flow .flow__item--content {
    flex-direction: column;
    gap: 14px;
  }
}
.p-home .section-flow .flow__item--label {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0.05em;
  color: #0C6CE5;
}
@media screen and (max-width: 798px) {
  .p-home .section-flow .flow__item--label {
    font-size: 16px;
    line-height: 22px;
  }
}
.p-home .section-flow .flow__item--body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 311px;
}
@media screen and (max-width: 798px) {
  .p-home .section-flow .flow__item--body {
    max-width: 100%;
  }
}
.p-home .section-flow .flow__item--ttl {
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 24px;
  line-height: 34px;
  letter-spacing: 0.02em;
  color: #0C6CE5;
}
@media screen and (max-width: 798px) {
  .p-home .section-flow .flow__item--ttl {
    font-size: 18px;
    line-height: 25px;
  }
}
.p-home .section-flow .flow__item--text {
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.02em;
  text-align: justify;
  color: #232738;
}
@media screen and (max-width: 798px) {
  .p-home .section-flow .flow__item--img {
    width: 100%;
  }
  .p-home .section-flow .flow__item--img img {
    width: 100%;
  }
}
.p-home .section-cert {
  position: relative;
  z-index: 5;
  padding: 80px 28px;
  background: linear-gradient(100.24deg, #0C6CE5 0%, #073C7F 100%);
}
@media screen and (max-width: 798px) {
  .p-home .section-cert {
    padding: 50px 28px;
  }
}
.p-home .section-cert .section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 798px) {
  .p-home .section-cert .section__inner {
    gap: 5px;
  }
}
.p-home .section-cert .cert__card {
  width: 100%;
  max-width: 960px;
  padding: 16px;
  background-color: white;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.0588235294);
}
@media screen and (max-width: 798px) {
  .p-home .section-cert .cert__card {
    padding: 10px;
  }
}
.p-home .section-cert .cert__card--inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 44px 31px 40px;
  border: 8px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(89.84deg, #437EF6 0.12%, #1359B2 35.3%);
}
@media screen and (max-width: 798px) {
  .p-home .section-cert .cert__card--inner {
    border-width: 3px;
    padding: 19px 28px 28px 28px;
  }
}
.p-home .section-cert .cert__card--label {
  display: block;
  padding: 3px 29px 3px 30px;
  background: #FF7F00;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.0588235294);
  border-radius: 100px;
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 18px;
  line-height: 32px;
  color: white;
}
@media screen and (max-width: 798px) {
  .p-home .section-cert .cert__card--label {
    padding: 1px 21px 2px 21px;
    font-size: 15px;
    line-height: 27px;
  }
}
.p-home .section-cert .cert__card--ttl {
  margin: 7px 0 40px;
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 48px;
  line-height: 70px;
  letter-spacing: 0em;
  color: #0C6CE5;
}
@media screen and (max-width: 798px) {
  .p-home .section-cert .cert__card--ttl {
    margin: 20px 0 28px;
    font-size: 25px;
    line-height: 36px;
  }
}
.p-home .section-cert .cert__card--ttl::after {
  border-width: 20px;
}
@media screen and (max-width: 798px) {
  .p-home .section-cert .cert__card--ttl::after {
    border-width: 10px;
  }
}
.p-home .section-cert .cert__card--text {
  max-width: 605px;
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 16px;
  line-height: 29px;
  letter-spacing: 0em;
  color: #232738;
}
@media screen and (max-width: 798px) {
  .p-home .section-cert .cert__card--text {
    font-size: 14px;
    line-height: 25px;
  }
}
.p-home .section-cert .cert__card--text .--clr-blue {
  font-size: 18px;
  line-height: 32px;
  color: #0C6CE5;
}
@media screen and (max-width: 798px) {
  .p-home .section-cert .cert__card--text .--clr-blue {
    font-size: 16px;
    line-height: 29px;
  }
}
.p-home .section-cert .cert__card--text .--clr-orange {
  font-size: 18px;
  line-height: 32px;
  color: #FF7F00;
}
@media screen and (max-width: 798px) {
  .p-home .section-cert .cert__card--text .--clr-orange {
    font-size: 16px;
    line-height: 29px;
  }
}
.p-home .section-cert .cert__notice {
  width: 100%;
  max-width: 960px;
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 12px;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: right;
  color: white;
}
@media screen and (max-width: 798px) {
  .p-home .section-cert .cert__notice {
    font-size: 10px;
    line-height: 18px;
    text-align: left;
  }
}
.p-home .section-greeting {
  padding: 80px 27px 80px 28px;
  background-color: white;
}
@media screen and (max-width: 798px) {
  .p-home .section-greeting {
    padding: 50px 27px 50px 28px;
  }
}
.p-home .section-greeting .section__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 798px) {
  .p-home .section-greeting .section__inner {
    gap: 50px;
  }
}
.p-home .section-greeting .section__ttl {
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 32px;
  line-height: 54px;
  letter-spacing: 0.02em;
  text-align: center;
  color: #232738;
}
@media screen and (max-width: 798px) {
  .p-home .section-greeting .section__ttl {
    font-size: 20px;
    line-height: 34px;
  }
}
.p-home .section-greeting .section__ttl--en {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  text-align: center;
  color: #0C6CE5;
}
.p-home .section-greeting .section__ttl--wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.p-home .section-greeting .greeting {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  width: 100%;
  max-width: 960px;
}
@media screen and (max-width: 798px) {
  .p-home .section-greeting .greeting {
    flex-direction: column;
    align-items: center;
  }
}
.p-home .section-greeting .greeting__img {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 400px;
}
@media screen and (max-width: 798px) {
  .p-home .section-greeting .greeting__img {
    gap: 4px;
  }
}
.p-home .section-greeting .greeting__name {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.p-home .section-greeting .greeting__name dt {
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: #232738;
}
.p-home .section-greeting .greeting__name dd {
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 18px;
  line-height: 31px;
  letter-spacing: 0.02em;
  color: #232738;
}
.p-home .section-greeting .greeting__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 515px;
}
@media screen and (max-width: 798px) {
  .p-home .section-greeting .greeting__content {
    align-items: center;
    gap: 28px;
  }
}
.p-home .section-greeting .greeting__ttl {
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 24px;
  line-height: 35px;
  letter-spacing: 0em;
  color: #0C6CE5;
}
@media screen and (max-width: 798px) {
  .p-home .section-greeting .greeting__ttl {
    font-size: 20px;
    line-height: 29px;
  }
}
.p-home .section-greeting .greeting__text {
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: #232738;
}
.p-home .section-faq {
  position: relative;
  z-index: 5;
  padding: 80px 28px;
}
@media screen and (max-width: 798px) {
  .p-home .section-faq {
    padding: 50px 28px;
  }
}
.p-home .section-faq .section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.p-home .section-faq .faq__items {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  max-width: 960px;
}
.p-home .section-faq .faq__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 32px;
  background-color: white;
  transition: box-shadow 0.3s ease;
}
.p-home .section-faq .faq__item:hover {
  cursor: pointer;
  --tw-shadow: 0px 14px 10px rgba(14, 51, 108, .06), 40px 30px 40px rgba(14, 51, 108, .12);
  --tw-shadow-colored: 0px 14px 10px var(--tw-shadow-color), 40px 30px 40px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
}
@media screen and (max-width: 798px) {
  .p-home .section-faq .faq__item {
    gap: 14px;
    padding: 14px;
  }
}
.p-home .section-faq .faq__item--heading {
  display: flex;
  align-items: center;
  gap: 14px;
}
.p-home .section-faq .faq__item--heading .--label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  min-width: 32px;
  height: 32px;
  background-color: #0C6CE5;
  border-radius: 100px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0.02em;
  color: white;
}
@media screen and (max-width: 798px) {
  .p-home .section-faq .faq__item--heading .--label {
    width: 28px;
    min-width: 28px;
    height: 28px;
    font-size: 16px;
    line-height: 22px;
  }
}
.p-home .section-faq .faq__item--ttl {
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.02em;
  color: #0C6CE5;
}
@media screen and (max-width: 798px) {
  .p-home .section-faq .faq__item--ttl {
    font-size: 16px;
    line-height: 22px;
  }
}
.p-home .section-faq .faq__item--body {
  display: flex;
  align-items: start;
  gap: 14px;
}
.p-home .section-faq .faq__item--body .--label {
  width: 32px;
  min-width: 32px;
  padding-left: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0.02em;
  color: #0C6CE5;
}
@media screen and (max-width: 798px) {
  .p-home .section-faq .faq__item--body .--label {
    width: 28px;
    min-width: 28px;
    font-size: 16px;
    line-height: 22px;
  }
}
.p-home .section-faq .faq__item--text {
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: #232738;
}
.p-home .section-access {
  padding: 80px 27px 80px 26px;
  background-color: white;
}
@media screen and (max-width: 798px) {
  .p-home .section-access {
    padding: 50px 27px 50px 26px;
  }
}
.p-home .section-access .section__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 798px) {
  .p-home .section-access .section__inner {
    gap: 50px;
  }
}
.p-home .section-access .section__ttl {
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 32px;
  line-height: 54px;
  letter-spacing: 0.02em;
  text-align: center;
  color: #232738;
}
@media screen and (max-width: 798px) {
  .p-home .section-access .section__ttl {
    font-size: 20px;
    line-height: 34px;
  }
}
.p-home .section-access .section__ttl--en {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  text-align: center;
  color: #0C6CE5;
}
.p-home .section-access .section__ttl--wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.p-home .section-access .access__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
}
@media screen and (max-width: 798px) {
  .p-home .section-access .access__wrapper {
    gap: 24px;
  }
}
.p-home .section-access .access__info {
  display: flex;
  flex-direction: column;
  gap: 11px;
  width: 100%;
  max-width: 462px;
}
.p-home .section-access .access__map {
  width: 100%;
  max-width: 960px;
}
.p-home .section-access .access__map iframe {
  width: 100%;
  height: 350px;
}
@media screen and (max-width: 798px) {
  .p-home .section-access .access__map iframe {
    height: 182px;
  }
}
.p-home .section-access .info__company-name {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 0.02em;
  color: #0C6CE5;
}
.p-home .section-access .info__wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.p-home .section-access .info__wrapper dl {
  display: flex;
  align-items: start;
  gap: 14px;
}
.p-home .section-access .info__wrapper dl dt {
  width: 60px;
}
.p-home .section-access .info__wrapper dl dt, .p-home .section-access .info__wrapper dl dd {
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0.02em;
  font-style: normal;
  color: #232738;
}
.p-home .section-access .info__wrapper dl address {
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.02em;
  font-style: normal;
  color: #232738;
}

html {
  margin-top: 0px !important;
}
@media screen and (max-width: 998px) {
  html {
    scroll-padding-top: 72px;
    /* Adjust to your header height */
  }
}

body {
  overflow-x: hidden;
  background-color: #F5F5F5;
}

/* LINE fixed CTA (pop.html only) */
.has-line-fixed-cta .line-fixed-cta {
  display: none;
}
@media screen and (max-width: 798px) {
  .has-line-fixed-cta {
    padding-bottom: calc(80px + env(safe-area-inset-bottom));
  }
  .has-line-fixed-cta .line-fixed-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    padding: 0 0 env(safe-area-inset-bottom);
    text-align: center;
    text-decoration: none;
    z-index: 9999;
  }
  .has-line-fixed-cta .line-fixed-cta__frame {
    display: block;
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
  }
  .has-line-fixed-cta .line-fixed-cta img {
    width: 100%;
    height: auto;
    display: block;
  }
}
/*# sourceMappingURL=style.css.map */
