/*
Theme Name: Theme name
Author: Author
Author URI:
*/
/* A Modern CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role='list'],
ol[role='list'] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  scroll-behavior: smooth;
  scroll-padding: 5rem;
  font-size: calc(100vw / 1440 * 15);
}
@media (1440px < width) {
  html {
    font-size: 15px;
    scroll-padding: 4.1333333333rem;
  }
}
@media (width <= 768px) {
  html {
    font-size: calc(100vw / 390 * 15);
  }
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #182226;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 500;
}
body.is-menu-open {
  overflow: hidden;
}

a {
  color: #182226;
  text-decoration: none;
}
a:hover {
  opacity: 0.9;
  filter: alpha(opacity=90);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

pre {
  white-space: pre;
}

section {
  max-width: 96rem;
  margin: 0 auto;
}

/********************************************
* Layout
********************************************/
/* Header */
.l-header {
  padding: 0.7333333333rem 3.6rem 0.7333333333rem 3.2rem;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 1000;
}
@media (width <= 768px) {
  .l-header {
    height: auto;
    padding: 1.1333333333rem 1.2rem;
  }
}
.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (width <= 768px) {
  .l-header__inner:before {
    opacity: 0;
    z-index: -1;
    transition: 0.3s;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.7);
    content: '';
    visibility: hidden;
  }
  .l-header__inner:after {
    height: 100%;
    width: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
  }
}
@media (width <= 768px) {
  .is-menu-open .l-header__inner:before {
    visibility: visible;
    opacity: 1;
    z-index: 0;
  }
}
.l-header__logo {
  width: 5.7333333333rem;
  position: relative;
  z-index: 10;
}
@media (width <= 768px) {
  .l-header__logo {
    width: 5rem;
  }
}
@media (width <= 768px) {
  .l-header__nav {
    background: #63b8ff;
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    transition: 0.3s;
    padding: 8rem 1.3333333333rem 4rem;
    overflow-y: scroll;
  }
  .is-menu-open .l-header__nav {
    top: 0;
  }
}
.l-header__nav-list {
  display: flex;
  gap: 2.6666666667rem;
}
@media (width <= 768px) {
  .l-header__nav-list {
    flex-wrap: wrap;
    gap: 1.3333333333rem;
  }
}
@media (width <= 768px) {
  .l-header__nav-item {
    width: 100%;
  }
}
.l-header__nav-link {
  color: #000;
  font-size: 1.0666666667rem;
  font-weight: 500;
}
@media (width <= 768px) {
  .l-header__nav-link {
    display: block;
    text-align: center;
    color: #fff;
    font-size: 1.3333333333rem;
    font-weight: 600;
  }
}

.l-menu-trigger {
  width: 2rem;
  height: 1.3333333333rem;
  cursor: pointer;
  position: relative;
  display: none;
  z-index: 10;
}
@media (width <= 768px) {
  .l-menu-trigger {
    display: block;
  }
}
.l-menu-trigger__bar {
  display: block;
  transition: all 0.3s;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  top: calc(50% - 1px);
  display: inline-block;
  background: #182226;
}
.l-menu-trigger__bar:nth-of-type(1) {
  transform: translateY(-0.4666666667rem);
}
.is-menu-open .l-menu-trigger__bar:nth-of-type(1) {
  transform: translateY(0rem) rotate(45deg);
}
.is-menu-open .l-menu-trigger__bar:nth-of-type(2) {
  transform: scaleX(0);
}
.l-menu-trigger__bar:nth-of-type(3) {
  transform: translateY(0.4666666667rem);
}
.is-menu-open .l-menu-trigger__bar:nth-of-type(3) {
  transform: translateY(0rem) rotate(-45deg);
}

.l-article {
  min-height: 20rem;
  padding-top: 5rem;
}
@media (width <= 768px) {
  .l-article {
    padding-top: 4rem;
  }
}

/* Footer */
.l-footer {
  background-color: #242424;
  color: #fff;
  padding: 2.9333333333rem 8rem 10rem;
}
@media (width <= 768px) {
  .l-footer {
    padding: 2.6666666667rem 1.3333333333rem 10rem;
  }
}
.l-footer__inner {
  max-width: 80rem;
  margin: 0 auto;
}
.l-footer__top {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 2.3333333333rem;
  margin-bottom: 2.3333333333rem;
}
@media (width <= 768px) {
  .l-footer__top {
    flex-wrap: wrap;
    margin-bottom: 1.6666666667rem;
  }
}
.l-footer__logo {
  width: 6.8rem;
}
@media (width <= 768px) {
  .l-footer__logo {
    width: 8.3333333333rem;
    margin: 0 auto 2.6666666667rem;
  }
  .l-footer__logo img {
    width: 100%;
  }
}
.l-footer__nav-list {
  display: flex;
  gap: 2.6666666667rem;
}
@media (width <= 768px) {
  .l-footer__nav-list {
    flex-wrap: wrap;
    gap: 1.2rem 0;
    justify-content: center;
  }
}
@media (width <= 768px) {
  .l-footer__nav-item {
    width: 100%;
    text-align: center;
  }
}
.l-footer__nav-link {
  color: #fff;
  font-size: 1.0666666667rem;
  font-weight: 500;
}
.l-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (width <= 768px) {
  .l-footer__bottom {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (width <= 768px) {
  .l-footer__other-nav {
    width: 100%;
    margin-bottom: 0.6666666667rem;
  }
}
.l-footer__other-list {
  display: flex;
  align-items: center;
  gap: 4rem;
}
@media (width <= 768px) {
  .l-footer__other-list {
    gap: 2.6666666667rem;
    justify-content: center;
  }
}
.l-footer__other-link {
  font-size: 0.8666666667rem;
  text-decoration: underline;
  color: #fff;
  position: relative;
}
@media (width <= 768px) {
  .l-footer__other-link {
    font-size: 0.8rem;
  }
}
.l-footer__other-link--external:after {
  content: '';
  width: 0.8rem;
  height: 0.8rem;
  display: inline-block;
  position: absolute;
  right: -1.1333333333rem;
  top: 0.3333333333rem;
  background-image: url(../images/webp/icons/external.svg);
  background-size: 100%;
  background-position: center;
}
.l-footer__copyrights {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}
@media (width <= 768px) {
  .l-footer__copyrights {
    font-size: 0.6666666667rem;
  }
}

/* Sidebar */
/********************************************
* Form
********************************************/
input[type='email'],
input[type='text'] {
  width: 500px;
  max-width: 100%;
  padding: 5px;
  height: 35px;
}

textarea {
  width: 500px;
  max-width: 100%;
  height: 250px;
}

input[type='submit'] {
  width: 300px;
  height: 35px;
  max-width: 100%;
  border: 1px solid #ccc;
}

/********************************************
* Wordpress
********************************************/
/* Media */
.size-auto,
.size-full,
.size-large,
.size-medium,
.size-thumbnail {
  max-width: 100%;
  height: auto;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

.alignright {
  float: right;
}

.alignleft {
  float: left;
}

/* Contact Form */
.wpcf7 .wpcf7-not-valid-tip {
  display: none;
}
.wpcf7 .wpcf7-not-valid {
  background: pink;
}
.wpcf7 .wpcf7-response-output {
  margin: 10px 0 0;
  padding: 8px 35px 8px 14px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.wpcf7 .wpcf7-validation-errors {
  color: #b94a48;
  background-color: #f2dede;
  border: 1px solid #eed3d7;
}
.wpcf7 .wpcf7-mail-sent-ok {
  color: #3a87ad;
  background-color: #d9edf7;
  border: 1px solid #bce8f1;
}

/********************************************
* Component
********************************************/
.c-btn {
  background-color: #63b8ff;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  display: inline-block;
  line-height: 1;
  padding: 1.2rem 4rem 1.2rem 2.5333333333rem;
  border-radius: 999px;
  position: relative;
}
.c-btn:after {
  content: '';
  width: 0.6666666667rem;
  height: 0.6666666667rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 0.3333333333rem);
  right: 2.5333333333rem;
}
.c-btn--black {
  background-color: #182226;
}

.c-inner {
  margin: 0 auto;
  max-width: 73.3333333333rem;
}
@media (width <= 768px) {
  .c-inner {
    width: 100%;
    padding: 0 1.3333333333rem;
  }
}

.c-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-list--upper-alphabet {
  list-style: upper-alpha;
}
.c-list--lower-alphabet {
  list-style: lower-alpha;
}
.c-list--upper-roman {
  list-style: upper-roman;
}
.c-list--lower-roman {
  list-style: lower-roman;
}
.c-list--none {
  list-style: none;
}
.c-list--circle {
  list-style: circle;
}
.c-list--square {
  list-style: square;
}
.c-list--decimal {
  list-style: decimal;
}
.c-list--decimal-leading-zero {
  list-style: decimal-leading-zero;
}

.c-pagenation {
  margin: 50px 0 0 0;
  text-align: center;
}
.c-pagenation:after,
.c-pagenation__navul:after {
  clear: both;
  content: '.';
  display: block;
  height: 0;
  visibility: hidden;
}
.c-pagenation__nav {
  margin: 0;
}
.c-pagenation__item {
  float: left;
  list-style: none outside none;
  margin-left: 3px;
  margin-bottom: 3px;
}
.c-pagenation__item:first-child {
  margin-left: 0;
}
.c-pagenation__item--active {
  background-color: #333;
  border-radius: 3px;
  color: #ffffff;
  cursor: not-allowed;
  padding: 10px 20px;
}
.c-pagenation__link {
  background: none repeat scroll 0 0 #cccccc;
  border-radius: 3px;
  color: #ffffff;
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
}
.c-pagenation__link:hover {
  background-color: #333;
  color: #ffffff;
  opacity: 0.8;
  transition-duration: 500ms;
  transition-property: all;
  transition-timing-function: ease;
}

.c-scroll {
  overflow-x: auto;
}
.c-scroll table {
  min-width: 640px;
  margin: 0 0 40px 0;
}

.c-scroll-bar {
  overflow-y: scroll;
}
.c-scroll-bar::-webkit-scrollbar {
  width: 0.1666666667rem;
}
.c-scroll-bar::-webkit-scrollbar-thumb {
  background-color: #63b8ff;
  border-radius: 999px;
}
.c-scroll-bar::-webkit-scrollbar-track {
  background-color: #999;
  border-radius: 0.1666666667rem;
}

.c-table {
  width: 100%;
  border-collapse: collapse;
}
.c-table th {
  text-align: center;
  background: #ededed;
  padding: 1rem;
  width: 10rem;
  border: 1px solid #d1d1d1;
  vertical-align: middle;
}
@media (width <= 768px) {
  .c-table th {
    width: 100%;
    display: block;
  }
}
.c-table td {
  padding: 1rem 1.3333333333rem;
  text-align: left;
  border: 1px solid #d1d1d1;
}
@media (width <= 768px) {
  .c-table td {
    width: 100%;
    display: block;
  }
}
.c-table--product {
  margin-bottom: 2.3333333333rem;
}
.c-table--product tr {
  display: block;
  border-top: 1px solid #f5f5f5;
}
@media (width <= 768px) {
  .c-table--product tr {
    border: none;
  }
}
.c-table--product th {
  width: 10rem;
  background-color: #f5f5f5;
  font-weight: 700;
  text-align: left;
  border: 2px solid #fff;
}
@media (width <= 768px) {
  .c-table--product th {
    width: 100%;
    font-size: 1rem;
    text-align: center;
    padding: 0.3333333333rem 0;
  }
}
.c-table--product td {
  width: calc(100% - 10rem);
  font-size: 1rem;
  border: 2px solid #fff;
  letter-spacing: 0;
}
@media (width <= 768px) {
  .c-table--product td {
    width: 100%;
    padding: 0.3333333333rem 0 0.6666666667rem;
    font-size: 1rem;
    line-height: 1.4666666667;
  }
}

.c-title {
  font-weight: 700;
}
.c-title__h2 {
  font-size: 3.3333333333rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-align: center;
  line-height: 1.1;
  margin-bottom: 2rem;
}
@media (width <= 768px) {
  .c-title__h2 {
    font-size: 2.9333333333rem;
  }
}
.c-title--eng {
  font-size: 1.0666666667rem;
  font-weight: 400;
  color: #63b8ff;
}

.c-youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.c-youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/********************************************
* Project
********************************************/
.p-lp__p {
  font-size: 1.0666666667rem;
  margin-bottom: 1em;
}
@media (width <= 768px) {
  .p-lp__p {
    font-size: 0.9333333333rem;
  }
}
.p-lp__mv {
  background-image: url(../images/webp/lp/mv-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  height: 45.3333333333rem;
}
@media (width <= 768px) {
  .p-lp__mv {
    background-image: url(../images/webp/lp/mv-sp.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    height: 54rem;
  }
}
.p-lp__mv .c-inner {
  max-width: 80rem;
}
@media (width <= 768px) {
  .p-lp__mv .c-inner {
    max-width: 100%;
  }
}
.p-lp__mv-inner {
  display: flex;
  align-items: center;
  padding: 1.3333333333rem 0;
  height: 40.5333333333rem;
}
@media (width <= 768px) {
  .p-lp__mv-inner {
    justify-content: center;
    padding-top: 3.3333333333rem;
    height: auto;
  }
}
.p-lp__mv-thumb {
  width: 35.3333333333rem;
}
@media (width <= 768px) {
  .p-lp__mv-thumb {
    width: 100%;
    order: 2;
    width: 21.3333333333rem;
  }
}
.p-lp__mv-text {
  width: 37.8rem;
  font-weight: 700;
}
@media (width <= 768px) {
  .p-lp__mv-text {
    width: 100%;
    order: 1;
  }
}
.p-lp__mv-catch {
  font-size: 1.5333333333rem;
  letter-spacing: 0.06em;
  color: #63b8ff;
}
@media (width <= 768px) {
  .p-lp__mv-catch {
    font-size: 1rem;
  }
}
.p-lp__mv-title {
  color: #63b8ff;
  font-size: 3.4666666667rem;
  line-height: 1.5;
  transform: skewX(-5deg);
  background-image: url(../images/webp/lp/h1-bg.webp);
  background-repeat: no-repeat;
  background-size: 34.8rem;
  background-position: left bottom;
  padding-bottom: 0.3333333333rem;
  margin-bottom: 1rem;
}
@media (width <= 768px) {
  .p-lp__mv-title {
    line-height: 1.25;
    text-align: center;
    font-size: 2.2666666667rem;
    background-image: url(../images/webp/lp/h1-bg-sp.webp);
    background-repeat: no-repeat;
    background-size: 22.6666666667rem;
    background-position: left bottom;
    margin-bottom: 0.3333333333rem;
  }
}
.p-lp__mv-title .u-text--small {
  font-size: 3rem;
}
@media (width <= 768px) {
  .p-lp__mv-title .u-text--small {
    font-size: 1.8666666667rem;
  }
}
.p-lp__mv-p {
  font-size: 1.3333333333rem;
  line-height: 1.8;
}
@media (width <= 768px) {
  .p-lp__mv-p {
    font-size: 0.8666666667rem;
    text-align: center;
  }
}
.p-lp__mv-span {
  font-size: 1.3333333333rem;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media (width <= 768px) {
  .p-lp__mv-span {
    font-size: 0.8rem;
  }
}
.p-lp__mv-name {
  font-size: 2rem;
  font-weight: 500;
}
@media (width <= 768px) {
  .p-lp__mv-name {
    font-size: 1.2rem;
  }
}
.p-lp__mv-iyaku {
  font-size: 0.9333333333rem;
  letter-spacing: 0.08em;
  border: 1px solid #fff;
  padding: 0.2rem 0.6666666667rem;
}
@media (width <= 768px) {
  .p-lp__mv-iyaku {
    font-size: 0.6666666667rem;
  }
}
.p-lp__mv-bikkuri {
  margin-left: -0.4em;
}
.p-lp__mv-bnr {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 20.4rem;
  background-color: #fff;
  outline: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.3333333333rem;
  overflow: hidden;
  box-shadow: 0 0.2666666667rem 0.2666666667rem 0 rgba(0, 0, 0, 0.25);
  z-index: 10;
  border: 0.1333333333rem solid #fff;
}
@media (width <= 768px) {
  .p-lp__mv-bnr {
    height: 7.3333333333rem;
    width: 23.4666666667rem;
    bottom: 1.7333333333rem;
    left: 1.3333333333rem;
  }
}
.p-lp__mv-bnr-link {
  display: flex;
  align-items: center;
}
.p-lp__mv-bnr-thumb {
  width: 8.6666666667rem;
}
@media (width <= 768px) {
  .p-lp__mv-bnr-thumb {
    width: 10rem;
    height: 100%;
  }
}
.p-lp__mv-bnr-text {
  width: calc(100% - 8.6666666667rem);
  letter-spacing: 0.03em;
  padding: 0rem 1.1333333333rem;
  font-weight: 700;
}
@media (width <= 768px) {
  .p-lp__mv-bnr-text {
    width: calc(100% - 10rem);
  }
}
.p-lp__mv-bnr-text:after {
  width: 0.6666666667rem;
  height: 0.6666666667rem;
  border-top: 2px solid #182226;
  border-right: 2px solid #182226;
  transform: rotate(45deg);
  position: absolute;
  content: '';
  right: 1rem;
  top: calc(50% - 0.2666666667rem);
}
.p-lp__mv-bnr-sub {
  font-size: 0.7333333333rem;
  background-color: #114c7d;
  color: #fff;
  border-radius: 999px;
  text-align: center;
  margin-bottom: 0.3333333333rem;
  width: 90%;
}
.p-lp__mv-bnr-title {
  font-size: 1.3333333333rem;
  line-height: 1.3;
  color: #182226;
}
.p-lp__nayami {
  padding: 4rem 0 6rem;
}
@media (width <= 768px) {
  .p-lp__nayami {
    padding-top: 2rem;
    padding-bottom: 2.6666666667rem;
  }
}
.p-lp__nayami-title {
  font-size: 2.6666666667rem;
  letter-spacing: 0.07em;
  font-weight: 700;
  color: #63b8ff;
  line-height: 1.45;
  text-align: center;
  margin-bottom: 3.3333333333rem;
}
@media (width <= 768px) {
  .p-lp__nayami-title {
    width: calc(100% + 1.3333333333rem);
    margin-left: -0.6666666667rem;
    font-size: 1.4666666667rem;
    line-height: 2.1333333333rem;
    letter-spacing: 0.07em;
    margin-bottom: 1.6666666667rem;
  }
}
.p-lp__nayami-inner {
  display: flex;
  justify-content: space-between;
}
@media (width <= 768px) {
  .p-lp__nayami-inner {
    flex-wrap: wrap;
  }
}
.p-lp__nayami-thumb {
  width: 26.0666666667rem;
}
@media (width <= 768px) {
  .p-lp__nayami-thumb {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.p-lp__nayami-thumb img {
  width: 100%;
}
.p-lp__nayami-text {
  width: 43.7333333333rem;
  font-size: 1.4666666667rem;
  letter-spacing: 0.07em;
}
@media (width <= 768px) {
  .p-lp__nayami-text {
    width: 100%;
  }
}
.p-lp__nayami-h3 {
  font-size: 2.1333333333rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  margin-bottom: 1rem;
}
@media (width <= 768px) {
  .p-lp__nayami-h3 {
    font-size: 1.4666666667rem;
    text-align: center;
  }
}
.p-lp__nayami .c-list__item {
  background-image: url(../images/webp/lp/list.svg);
  background-repeat: no-repeat;
  background-size: 1.5666666667rem;
  background-position: left 0.8666666667rem;
  padding: 0.4666666667rem 0.4666666667rem 0.4666666667rem 2.3333333333rem;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
}
@media (width <= 768px) {
  .p-lp__nayami .c-list__item {
    font-size: 1.2rem;
    letter-spacing: 0.07em;
    padding: 1.0666666667rem 0.4666666667rem 1.0666666667rem 2.3333333333rem;
    background-position: left 1.3333333333rem;
    line-height: 1.4444444444;
    background-position: left center;
  }
}
.p-lp__feature {
  position: relative;
  z-index: 1;
  text-align: center;
  background-image: url(../images/webp/lp/feature-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  height: 108.2rem;
  color: #fff;
  padding-top: 12rem;
}
@media (width <= 768px) {
  .p-lp__feature {
    background-image: url(../images/webp/lp/feature-bg-sp.webp);
    background-repeat: no-repeat;
    background-size: 26rem;
    height: 120rem;
    padding-top: 5.3333333333rem;
  }
}
.p-lp__feature .c-title--eng {
  color: #fff;
}
.p-lp__feature .p-lp__p {
  margin-bottom: 2.6666666667rem;
}
@media (width <= 768px) {
  .p-lp__feature .p-lp__p {
    margin-bottom: 1.3333333333rem;
  }
}
.p-lp__feature .c-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5333333333rem;
}
@media (width <= 768px) {
  .p-lp__feature .c-list {
    gap: 0.9333333333rem;
  }
}
.p-lp__feature .c-list__item {
  width: 100%;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 3rem 2rem 4rem;
  text-align: left;
  box-shadow: 0 0.2666666667rem 0.2666666667rem 0 rgba(0, 0, 0, 0.1);
  border-radius: 0.3333333333rem;
}
@media (width <= 768px) {
  .p-lp__feature .c-list__item {
    flex-wrap: wrap;
    padding: 1.3333333333rem 1.2rem 2rem;
  }
}
.p-lp__feature-thumb {
  width: 28.4666666667rem;
  border-radius: 0.3333333333rem;
  overflow: hidden;
}
@media (width <= 768px) {
  .p-lp__feature-thumb {
    width: 100%;
    height: 12rem;
  }
}
.p-lp__feature-text {
  width: 34.2666666667rem;
}
@media (width <= 768px) {
  .p-lp__feature-text {
    width: 100%;
  }
}
.p-lp__feature-point {
  background-color: #fff000;
  color: #182226;
  font-size: 1.0666666667rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  width: 7.6rem;
  border-radius: 999px;
  line-height: 1;
  text-align: center;
  padding: 0.6666666667rem 0.3333333333rem;
  margin-bottom: 0.6666666667rem;
}
@media (width <= 768px) {
  .p-lp__feature-point {
    display: block;
    margin: -1.3333333333rem auto 0.6666666667rem;
  }
}
.p-lp__feature-h3 {
  font-size: 2.2666666667rem;
  letter-spacing: 0.15em;
  color: #63b8ff;
  line-height: 1.4411764706;
  font-weight: 700;
  margin-bottom: 0.6666666667rem;
}
@media (width <= 768px) {
  .p-lp__feature-h3 {
    font-size: 1.8666666667rem;
    letter-spacing: 0.1em;
    text-align: center;
  }
}
.p-lp__feature-p {
  font-size: 1.0666666667rem;
  line-height: 2.0625;
  color: #182226;
}
@media (width <= 768px) {
  .p-lp__feature-p {
    font-size: 1.2rem;
    text-align: left;
    line-height: 2.2rem;
  }
}
.p-lp__scene {
  text-align: center;
  padding: 12rem 0 2.6666666667rem;
  margin-top: -6.6666666667rem;
  background-image: linear-gradient(rgba(201, 167, 17, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 167, 17, 0.1) 1px, transparent 1px);
  background-size: 1.9333333333rem 1.9333333333rem;
  background-color: #ffffff;
}
@media (width <= 768px) {
  .p-lp__scene {
    padding-top: 8rem;
    background-size: 1.3333333333rem 1.3333333333rem;
  }
}
.p-lp__scene .c-title__h2 {
  margin-bottom: 1.3333333333rem;
}
.p-lp__scene .p-lp__p {
  margin-bottom: 5.3333333333rem;
}
@media (width <= 768px) {
  .p-lp__scene .p-lp__p {
    margin-bottom: 2rem;
  }
}
.p-lp__scene .c-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.6666666667rem 6rem;
}
@media (width <= 768px) {
  .p-lp__scene .c-list {
    gap: 1.3333333333rem;
  }
}
.p-lp__scene .c-list__item {
  width: 18rem;
  position: relative;
}
@media (width <= 768px) {
  .p-lp__scene .c-list__item {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
}
.p-lp__scene .c-list__item--large {
  width: 18.3333333333rem;
}
@media (width <= 768px) {
  .p-lp__scene .c-list__item--large {
    width: 100%;
  }
}
.p-lp__scene .c-list__item--large .p-lp__scene-thumb {
  width: 100%;
  max-width: 100%;
}
@media (width <= 768px) {
  .p-lp__scene .c-list__item--large .p-lp__scene-thumb {
    width: 7.2rem;
    height: 7.2rem;
  }
}
@media (width <= 768px) {
  .p-lp__scene .c-list__item--fuki {
    margin-bottom: 8rem;
  }
}
.p-lp__scene-thumb {
  margin-bottom: 0.6666666667rem;
  width: 16.8rem;
  height: 15.2666666667rem;
  overflow: hidden;
  max-width: 15.6rem;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (width <= 768px) {
  .p-lp__scene-thumb {
    width: 7.2rem;
    height: 7.2rem;
  }
}
.p-lp__scene-thumb img {
  width: 100%;
}
.p-lp__scene-fuki {
  top: 0;
  left: -8.6666666667rem;
  position: absolute;
  background-image: url(../images/webp/lp/fuki.svg);
  background-repeat: no-repeat;
  width: 14.9333333333rem;
  height: 12.4666666667rem;
  background-size: cover;
  background-position: center;
  padding-top: 2rem;
  transform: rotate(-10deg) !important;
}
@media (width <= 768px) {
  .p-lp__scene-fuki {
    width: 100%;
    background-image: url(../images/webp/lp/fuki-sp.svg);
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 999px;
    transform: inherit !important;
    top: calc(100% + 0.6666666667rem);
    left: 0;
    text-align: center;
    height: 6.3333333333rem;
    padding-top: 1.3333333333rem;
  }
}
.p-lp__scene-fuki-title {
  font-weight: 700;
  font-size: 1.2rem;
  color: #63b8ff;
  margin-bottom: 0.3333333333rem;
  line-height: 1.2636363636;
  width: 100%;
  margin-left: -0.6666666667rem;
}
@media (width <= 768px) {
  .p-lp__scene-fuki-title {
    margin-left: 0;
    font-size: 1.2rem;
    margin-bottom: 0rem;
  }
}
.p-lp__scene-fuki-title span {
  letter-spacing: -0.6em;
}
.p-lp__scene-fuki-p {
  font-size: 1.02rem;
  line-height: 1.3651208361;
}
@media (width <= 768px) {
  .p-lp__scene-text {
    width: 15.8666666667rem;
    text-align: left;
  }
}
.p-lp__scene-title {
  color: #63b8ff;
  font-size: 1.6666666667rem;
  line-height: 1.4;
  margin-bottom: 0.6666666667rem;
}
@media (width <= 768px) {
  .p-lp__scene-title {
    font-size: 1.4666666667rem;
  }
}
.p-lp__scene-title span {
  font-size: 1.3333333333rem;
  display: block;
}
@media (width <= 768px) {
  .p-lp__scene-title span {
    font-size: 1.2rem;
  }
}
.p-lp__scene-p {
  font-size: 1rem;
  line-height: 1.5625;
}
@media (width <= 768px) {
  .p-lp__scene-p {
    font-size: 0.9333333333rem;
    line-height: 1.6666666667rem;
    letter-spacing: 0;
  }
}
.p-lp__howto {
  text-align: center;
  background-image: url(../images/webp/lp/howto-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  height: 96.4666666667rem;
  padding-top: 11rem;
  color: #fff;
  position: relative;
  z-index: 1;
}
@media (width <= 768px) {
  .p-lp__howto {
    background-image: url(../images/webp/lp/howto-bg-sp.webp);
    background-repeat: no-repeat;
    background-size: 26rem;
    height: 97.7333333333rem;
    padding-top: 4rem;
    background-position: center top;
  }
}
.p-lp__howto .c-title--eng {
  color: #fff;
}
.p-lp__howto .c-inner {
  background-color: #fff;
  border-radius: 0.3333333333rem;
  padding: 2.6666666667rem 8rem 2rem;
}
@media (width <= 768px) {
  .p-lp__howto .c-inner {
    padding: 2rem 1.3333333333rem;
    margin-left: 1.3333333333rem;
    margin-right: 1.3333333333rem;
    width: calc(100% - 2.6666666667rem);
  }
}
.p-lp__howto-catch {
  display: inline;
  color: #63b8ff;
  font-size: 1.4666666667rem;
  font-weight: 700;
  background: linear-gradient(
    to bottom,
    transparent 0,
    transparent 80%,
    #fff000 80%,
    #fff000 98%,
    transparent 98%,
    transparent 100%
  );
}
@media (width <= 768px) {
  .p-lp__howto-catch {
    font-size: 1.2rem;
    line-height: 2rem;
  }
}
.p-lp__howto-list {
  text-align: left;
  margin-top: 2rem;
}
.p-lp__howto-item {
  color: #182226;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #cecece;
  padding: 1.6666666667rem;
  margin-bottom: 2.3333333333rem;
  position: relative;
}
@media (width <= 768px) {
  .p-lp__howto-item {
    margin-bottom: 2.6666666667rem;
    padding: 3rem 0.8rem 1.3333333333rem;
  }
}
.p-lp__howto-item:last-child {
  margin-bottom: 0;
}
.p-lp__howto-item:last-child:after {
  content: inherit;
}
.p-lp__howto-item:after {
  bottom: -2.6666666667rem;
  left: calc(50% - 2.8333333333rem);
  position: absolute;
  content: '';
  width: 5.6666666667rem;
  height: 1.2666666667rem;
  background-color: #bfbfbf;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  display: block;
  margin: 0.6666666667rem auto;
}
@media (width <= 768px) {
  .p-lp__howto-item:after {
    width: 4.6rem;
    height: 1rem;
    left: calc(50% - 2.3333333333rem);
  }
}
.p-lp__howto-step {
  border-radius: 999px;
  width: 5.6rem;
  height: 5.6rem;
  text-align: center;
  font-size: 1.0666666667rem;
  line-height: 1.2;
  background-color: #fff000;
  padding-top: 1.1333333333rem;
}
@media (width <= 768px) {
  .p-lp__howto-step {
    line-height: 1;
    padding-top: 0;
    position: absolute;
    top: 0;
    left: calc(50% - 3.6rem);
    width: 7.2rem;
    height: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.0666666667rem;
    border-radius: 0rem 0rem 0.6666666667rem 0.6666666667rem;
    font-weight: 700;
  }
}
.p-lp__howto-step span {
  font-size: 1.5333333333rem;
  display: block;
}
@media (width <= 768px) {
  .p-lp__howto-step span {
    font-size: 1.0666666667rem;
    display: inline;
    margin-left: 0.6666666667rem;
  }
}
.p-lp__howto-text {
  width: 46.2rem;
  font-size: 1.4666666667rem;
  line-height: 1.5;
}
@media (width <= 768px) {
  .p-lp__howto-text {
    font-size: 1.2rem;
    line-height: 1.8666666667rem;
  }
}
.p-lp__howto-text--has-thumb {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (width <= 768px) {
  .p-lp__howto-text--has-thumb {
    flex-wrap: wrap;
  }
}
.p-lp__howto-text--has-thumb .p-lp__howto-p {
  width: 26.2rem;
}
@media (width <= 768px) {
  .p-lp__howto-text--has-thumb .p-lp__howto-p {
    width: 100%;
    margin-bottom: 0.6666666667rem;
  }
}
.p-lp__howto-text--has-thumb .p-lp__howto-thumb {
  width: 17.6666666667rem;
}
@media (width <= 768px) {
  .p-lp__howto-text--has-thumb .p-lp__howto-thumb {
    width: 100%;
  }
}
.p-lp__howto-point {
  background-color: #f0f0f0;
  border-radius: 999px;
  padding: 0.3333333333rem 1.3333333333rem;
  font-size: 1.2rem;
  margin-top: 0.6666666667rem;
}
@media (width <= 768px) {
  .p-lp__howto-point {
    border-radius: 0.3333333333rem;
    font-size: 0.9333333333rem;
    padding: 1rem;
    line-height: 1.4285714286;
  }
}
.p-lp__howto-point span:not(.u-pc--inline) {
  color: #63b8ff;
  font-size: 0.9333333333rem;
  vertical-align: middle;
}
@media (width <= 768px) {
  .p-lp__howto-point span:not(.u-pc--inline) {
    display: block;
  }
}
.p-lp__product {
  background-color: #f8f8f8;
  padding: 12.6666666667rem 0 5.3333333333rem;
  margin-top: -6.6666666667rem;
  position: relative;
  text-align: center;
}
@media (width <= 768px) {
  .p-lp__product {
    padding-top: 10rem;
  }
}
.p-lp__product .c-title__h2 {
  margin-bottom: 3.3333333333rem;
}
.p-lp__product .c-inner {
  padding: 3.3333333333rem 5.7333333333rem 6.6666666667rem;
  max-width: 73.3333333333rem;
  background-color: #fff;
  box-shadow: 0 0.2666666667rem 0.2666666667rem 0 rgba(0, 0, 0, 0.25);
}
@media (width <= 768px) {
  .p-lp__product .c-inner {
    padding: 1.3333333333rem 1.8666666667rem;
    margin-left: 1.3333333333rem;
    margin-right: 1.3333333333rem;
    width: calc(100% - 2.6666666667rem);
  }
}
.p-lp__product-header {
  display: flex;
  align-items: center;
  gap: 4.6666666667rem;
  margin-bottom: 3.3333333333rem;
}
@media (width <= 768px) {
  .p-lp__product-header {
    flex-wrap: wrap;
    gap: 0rem;
    justify-content: center;
    margin-bottom: 1.3333333333rem;
    background-color: #fff;
  }
}
.p-lp__product-thumb {
  width: 24.6666666667rem;
}
@media (width <= 768px) {
  .p-lp__product-thumb {
    width: 100%;
    margin-bottom: 1.3333333333rem;
  }
}
.p-lp__product-text {
  text-align: left;
  width: 24.6666666667rem;
}
@media (width <= 768px) {
  .p-lp__product-text {
    width: 100%;
  }
}
.p-lp__product-name {
  font-size: 2.1333333333rem;
  font-weight: 700;
  margin-right: -10.6666666667rem;
  width: calc(100% + 10.6666666667rem);
  text-align: left;
}
@media (width <= 768px) {
  .p-lp__product-name {
    text-align: center;
    font-size: 1.6rem;
    width: 100%;
    margin-right: 0;
  }
}
.p-lp__product-name span {
  border: 1px solid #182226;
  font-size: 1.2rem;
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
  padding: 0.3333333333rem 0.6666666667rem;
  margin-left: 0.6666666667rem;
}
@media (width <= 768px) {
  .p-lp__product-name span {
    font-size: 0.9333333333rem;
  }
}
.p-lp__product-notice {
  color: #63b8ff;
  font-size: 1.0666666667rem;
  font-weight: 600;
  text-align: left;
}
@media (width <= 768px) {
  .p-lp__product-notice {
    font-size: 0.8266666667rem;
  }
}
.p-lp__product-notice:before {
  content: '';
  width: 0.9333333333rem;
  height: 0.9333333333rem;
  border-radius: 999px;
  display: inline-block;
  background-color: #63b8ff;
  margin-right: 0.5333333333rem;
}
@media (width <= 768px) {
  .p-lp__product-notice:before {
    width: 0.7rem;
    height: 0.7rem;
  }
}
.p-lp__product-price {
  display: flex;
  justify-content: space-between;
  font-size: 2.1333333333rem;
  line-height: 1.8;
  width: calc(100% - 1.3333333333rem);
  font-weight: 700;
  line-height: 1.6;
}
@media (width <= 768px) {
  .p-lp__product-price {
    width: 100%;
    font-size: 1.6rem;
  }
}
.p-lp__product-price span {
  background-color: #fff;
  position: relative;
  z-index: 1;
}
.p-lp__product-price .u-text--small {
  font-size: 1.2rem;
}
@media (width <= 768px) {
  .p-lp__product-price .u-text--small {
    font-size: 0.9333333333rem;
  }
}
.p-lp__product-price .p-lp__yen {
  font-size: 1.7333333333rem;
}
.p-lp__product .c-btn {
  margin-top: 1.3333333333rem;
}
@media (width <= 768px) {
  .p-lp__product .c-btn {
    width: 100%;
  }
}
.p-lp__product-item {
  width: 26.6666666667rem;
}
@media (width <= 768px) {
  .p-lp__product-item {
    width: 100%;
  }
}
.p-lp__product .c-table {
  line-height: 1.4375;
}
@media (width <= 768px) {
  .p-lp__product .c-table {
    margin-bottom: 0rem;
  }
}
.p-lp__product .c-table td p {
  margin-top: 1em;
}
@media (width <= 768px) {
  .p-lp__product .c-table .p-lp__product-td-small {
    font-size: 0.9333333333rem;
  }
}
.p-lp__product__dotted-list {
  list-style-type: disc;
  padding-left: 0;
}
.p-lp__product__dotted-list li {
  padding-left: 1.3333333333rem;
  width: 24rem;
}
@media (width <= 768px) {
  .p-lp__product__dotted-list li {
    width: 100%;
  }
}
.p-lp__product .u-dotted-line--4-12 {
  position: relative;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.p-lp__product .u-dotted-line--4-12 span {
  background-color: #fff;
  position: relative;
  z-index: 1;
}
.p-lp__product .u-dotted-line--4-12 span:first-child {
  padding-right: 0.4666666667rem;
}
.p-lp__product .u-dotted-line--4-12 span:last-child {
  padding-left: 0.4666666667rem;
}
.p-lp__product-list {
  margin-top: 1.3333333333rem;
  display: flex;
  gap: 1rem;
}
@media (width <= 768px) {
  .p-lp__product-list {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 0.6666666667rem;
  }
  .p-lp__product-list::-webkit-scrollbar {
    height: 8px;
  }
  .p-lp__product-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
  }
  .p-lp__product-list::-webkit-scrollbar-thumb {
    background: #63b8ff;
    border-radius: 4px;
  }
  .p-lp__product-list::-webkit-scrollbar-thumb:hover {
    background: rgb(48, 160.7884615385, 255);
  }
}
.p-lp__product-item {
  width: 10.8666666667rem;
  text-align: left;
}
@media (width <= 768px) {
  .p-lp__product-item {
    flex-shrink: 0;
    width: 9.3333333333rem;
  }
}
.p-lp__product-list-thumb {
  margin-bottom: 0.6666666667rem;
}
@media (width <= 768px) {
  .p-lp__product-list-thumb {
    margin-bottom: 0.5333333333rem;
  }
}
.p-lp__product-list-title {
  font-size: 1rem;
  letter-spacing: 0.07em;
  line-height: 1.4666666667;
}
@media (width <= 768px) {
  .p-lp__product-list-title {
    font-size: 0.8666666667rem;
    line-height: 1.4;
  }
}
.p-lp__faq {
  background-color: #f8f8f8;
  padding-bottom: 5.3333333333rem;
  text-align: center;
}
.p-lp__faq .c-inner {
  max-width: 73.3333333333rem;
}
@media (width <= 768px) {
  .p-lp__faq .c-inner {
    padding: 0 1.3333333333rem;
  }
}
.p-lp__faq .c-title {
  margin-bottom: 4.6666666667rem;
}
@media (width <= 768px) {
  .p-lp__faq .c-title {
    margin-bottom: 2rem;
  }
}
.p-lp__faq-item {
  text-align: left;
  margin-bottom: 1.3333333333rem;
}
@media (width <= 768px) {
  .p-lp__faq-item {
    margin-bottom: 1.0666666667rem;
  }
}
.p-lp__faq-item:last-of-type {
  margin-bottom: 0;
}
.p-lp__faq-item.is-active .p-lp__faq-btn:after {
  transform: rotate(0deg);
}
.p-lp__faq-question {
  font-size: 1.3333333333rem;
  font-weight: 700;
  color: #fff;
  padding: 1.3333333333rem 5.3333333333rem 1.3333333333rem 2.2666666667rem;
  border-radius: 0.3333333333rem 0.3333333333rem 0 0;
  position: relative;
  background-color: #63b8ff;
}
@media (width <= 768px) {
  .p-lp__faq-question {
    font-size: 1.0666666667rem;
    line-height: 1.75;
    padding: 1.2rem 3.3333333333rem 1rem 1.3333333333rem;
  }
}
.p-lp__faq-btn {
  position: absolute;
  width: 2.2666666667rem;
  height: 2.2666666667rem;
  border-radius: 999px;
  background-color: #fff;
  right: 1.8rem;
  top: calc(50% - 1.1333333333rem);
}
@media (width <= 768px) {
  .p-lp__faq-btn {
    width: 1.7333333333rem;
    height: 1.7333333333rem;
    top: 1.1333333333rem;
    right: 1.1333333333rem;
  }
}
.p-lp__faq-btn:before {
  content: '';
  width: 1rem;
  height: 0.2rem;
  background-color: #63b8ff;
  top: calc(50% - 0.1rem);
  left: calc(50% - 0.5rem);
  position: absolute;
}
@media (width <= 768px) {
  .p-lp__faq-btn:before {
    width: 0.7333333333rem;
    height: 0.1333333333rem;
    top: calc(50% - 0.0666666667rem);
    left: calc(50% - 0.3666666667rem);
  }
}
.p-lp__faq-btn:after {
  content: '';
  width: 1rem;
  height: 0.2rem;
  background-color: #63b8ff;
  top: calc(50% - 0.1rem);
  left: calc(50% - 0.5rem);
  position: absolute;
  transform: rotate(90deg);
  transition: 0.3s;
}
@media (width <= 768px) {
  .p-lp__faq-btn:after {
    width: 0.7333333333rem;
    height: 0.1333333333rem;
    top: calc(50% - 0.0666666667rem);
    left: calc(50% - 0.3666666667rem);
  }
}
.p-lp__faq-answer {
  display: none;
  background-color: #fff;
  padding: 2rem 5.3333333333rem 2rem 2.2666666667rem;
  font-size: 1.2rem;
  line-height: 1.5555555556;
  border-radius: 0 0 0.3333333333rem 0.3333333333rem;
}
@media (width <= 768px) {
  .p-lp__faq-answer {
    font-size: 1rem;
    line-height: 1.7333333333;
    padding: 1.2rem 1.3333333333rem 1rem 1.3333333333rem;
  }
}

/* Utilities */
.u-mt0 {
  margin-top: 0px;
}

.u-mb0 {
  margin-bottom: 0px;
}

.u-mt10 {
  margin-top: 10px;
}

.u-mb10 {
  margin-bottom: 10px;
}

.u-mt20 {
  margin-top: 20px;
}

.u-mb20 {
  margin-bottom: 20px;
}

.u-mt30 {
  margin-top: 30px;
}

.u-mb30 {
  margin-bottom: 30px;
}

.u-mt40 {
  margin-top: 40px;
}

.u-mb40 {
  margin-bottom: 40px;
}

.u-mt50 {
  margin-top: 50px;
}

.u-mb50 {
  margin-bottom: 50px;
}

.u-mt60 {
  margin-top: 60px;
}

.u-mb60 {
  margin-bottom: 60px;
}

.u-mt70 {
  margin-top: 70px;
}

.u-mb70 {
  margin-bottom: 70px;
}

.u-mt80 {
  margin-top: 80px;
}

.u-mb80 {
  margin-bottom: 80px;
}

.u-mt90 {
  margin-top: 90px;
}

.u-mb90 {
  margin-bottom: 90px;
}

.u-mt100 {
  margin-top: 100px;
}

.u-mb100 {
  margin-bottom: 100px;
}

.u-pc {
  display: block;
}
@media (width <= 768px) {
  .u-pc {
    display: none;
  }
}
.u-pc--inline {
  display: inline;
}
@media (width <= 768px) {
  .u-pc--inline {
    display: none;
  }
}
.u-pc--iblock {
  display: inline-block;
}
@media (width <= 768px) {
  .u-pc--iblock {
    display: none;
  }
}
.u-pc--table {
  display: table;
}
@media (width <= 768px) {
  .u-pc--table {
    display: none;
  }
}

.u-sp {
  display: none;
}
@media (width <= 768px) {
  .u-sp {
    display: block;
  }
}
.u-sp--inline {
  display: none;
}
@media (width <= 768px) {
  .u-sp--inline {
    display: inline;
  }
}
.u-sp--iblock {
  display: none;
}
@media (width <= 768px) {
  .u-sp--iblock {
    display: inline-block;
  }
}
.u-sp--table {
  display: none;
}
@media (width <= 768px) {
  .u-sp--table {
    display: table;
  }
}

.u-ofit img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.u-pos--absolute {
  position: absolute;
}
.u-pos--fixed {
  position: fixed;
}
.u-pos--relative {
  position: relative;
}

.u-bg {
  background: linear-gradient(-30deg, #c8161d, #ff535a), url(./images/webp/lp/mv-bg.webp) no-repeat center/cover;
}
.u-bg--reverse {
  background: linear-gradient(-30deg, #ff535a, #c8161d), url(./images/webp/lp/mv-bg.webp) no-repeat center/cover;
}

.u-text--default {
  font-family: 'Noto Sans JP', sans-serif;
}
.u-text--mincho {
  font-family: 'Shippori Mincho B1', serif;
}
.u-text--center {
  text-align: center;
}
.u-text--left {
  text-align: left;
}
.u-text--right {
  text-align: right;
}
.u-text--thin {
  font-weight: 100;
}
.u-text--extra-light {
  font-weight: 200;
}
.u-text--light {
  font-weight: 300;
}
.u-text--regular {
  font-weight: 400;
}
.u-text--medium {
  font-weight: 500;
}
.u-text--semi-bold {
  font-weight: 600;
}
.u-text--bold {
  font-weight: 700;
}
.u-text--extra-bold {
  font-weight: 800;
}
.u-text--black {
  font-weight: 900;
}
.u-text--big {
  font-size: 1.4em;
}
.u-text--regular {
  font-size: 1em;
}
.u-text--small {
  font-size: 0.8em;
}

.u-ellipsis {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}
.u-ellipsis--2 {
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.u-ellipsis--3 {
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
.u-ellipsis--4 {
  -webkit-line-clamp: 4;
  line-clamp: 4;
}
.u-ellipsis--5 {
  -webkit-line-clamp: 5;
  line-clamp: 5;
}

.u-color__yellow {
  color: yellow;
}

.u-fade-in {
  opacity: 0;
  transform: translateY(2rem);
  transition: 0.8s;
}
@media (width <= 768px) {
  .u-fade-in {
    transform: translateY(2rem);
  }
}
.u-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.u-dotted-line--6-9 {
  position: relative;
}
.u-dotted-line--6-9:after {
  content: '';
  background-image: radial-gradient(circle at center, #000 0.2rem, transparent 0.2rem);
  background-size: 1rem 0.4rem;
  background-repeat: repeat-x;
  height: 0.4rem;
  width: 100%;
  max-width: 100%;
  vertical-align: middle;
  position: absolute;
  top: calc(50% - 0.1333333333rem);
  left: 0;
}
.u-dotted-line--4-12 {
  position: relative;
  display: inline-block;
}
.u-dotted-line--4-12:after {
  content: '';
  background-image: radial-gradient(circle at center, #000 0.1333333333rem, transparent 0.1333333333rem);
  background-size: 1.0666666667rem 0.2666666667rem;
  background-repeat: repeat-x;
  height: 0.2666666667rem;
  width: 100%;
  vertical-align: middle;
  position: absolute;
  top: calc(50% - 0.1333333333rem);
  left: 0;
} /*# sourceMappingURL=style.css.map */
