/*
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: #231815;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 500;
}
body.is-menu-open {
  overflow: hidden;
}

a {
  color: #4499ff;
  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;
}

/********************************************
* Layout
********************************************/
/* Header */
.l-header {
  padding: 0.6666666667rem 3.2rem;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  height: 5rem;
  background-color: #fff;
  z-index: 1000;
}
@media (width <= 768px) {
  .l-header {
    height: auto;
    padding: 0.5333333333rem 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: 7.7333333333rem;
  position: relative;
  z-index: 10;
}
@media (width <= 768px) {
  .l-header__logo {
    width: 6.6rem;
  }
}
@media (width <= 768px) {
  .l-header__nav {
    background: linear-gradient(45deg, #c8161d, #ff535a), url(./images/webp/lp/mv-bg.webp) no-repeat center/cover;
    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: #231815;
}
.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;
}

/* 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: 7.7333333333rem;
}
@media (width <= 768px) {
  .l-footer__logo {
    width: 10.6666666667rem;
    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: #c8161d;
  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: #231815;
}

.c-inner {
  margin: 0 auto;
  max-width: 80rem;
}
@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: #ff0000;
  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 tr {
  display: block;
  border-top: 1px solid #dcc3b0;
}
@media (width <= 768px) {
  .c-table--product tr {
    border: none;
  }
}
.c-table--product th {
  width: 10rem;
  background-color: #f3eae3;
  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;
}
@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: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
  position: relative;
  margin-bottom: 2rem;
}
@media (width <= 768px) {
  .c-title__h2 {
    font-size: 2.1333333333rem;
  }
}
.c-title__h2:after {
  content: '';
  width: 5.3333333333rem;
  height: 0.3333333333rem;
  background-color: #c8161d;
  position: absolute;
  bottom: -0.6666666667rem;
  left: calc(50% - 2.6666666667rem);
}
@media (width <= 768px) {
  .c-title__h2:after {
    width: 4.2rem;
    bottom: 0;
    left: calc(50% - 2.1rem);
  }
}

.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__mv {
  overflow: hidden;
  height: 50.3333333333rem;
}
@media (width <= 768px) {
  .p-lp__mv {
    padding: 1.3333333333rem 0 8rem;
    height: 59.7333333333rem;
  }
}
.p-lp__mv .c-inner {
  margin-top: 5rem;
  height: 45.4rem;
  position: relative;
  display: flex;
  align-items: center;
}
@media (width <= 768px) {
  .p-lp__mv .c-inner {
    align-items: start;
    flex-wrap: wrap;
  }
}
.p-lp__mv-text {
  color: #fff;
  width: 39.4666666667rem;
  position: absolute;
  left: calc(50% - 40rem);
}
@media (width <= 768px) {
  .p-lp__mv-text {
    width: 100%;
    position: static;
    text-align: center;
  }
}
.p-lp__mv-sub {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 1.3333333333rem;
  opacity: 0;
}
@media (width <= 768px) {
  .p-lp__mv-sub {
    font-size: 1.3666666667rem;
    margin-bottom: 0rem;
  }
}
.p-lp__mv-sub .char {
  opacity: 0;
}
.p-lp__mv-name {
  margin-bottom: 2rem;
  opacity: 0;
}
@media (width <= 768px) {
  .p-lp__mv-name {
    width: 22.4666666667rem;
    margin-bottom: 0.6666666667rem;
  }
}
.p-lp__mv-pic {
  position: absolute;
  right: calc(50% - 40rem);
  width: 37.8666666667rem;
  opacity: 0;
}
@media (width <= 768px) {
  .p-lp__mv-pic {
    width: 24.6666666667rem;
    right: inherit;
    left: -2rem;
    bottom: 0.6666666667rem;
  }
}
.p-lp__mv-pic2 {
  position: absolute;
  right: calc(50% - 60rem);
  width: 57.6666666667rem;
  opacity: 0;
}
@media (width <= 768px) {
  .p-lp__mv-pic2 {
    max-width: inherit;
    width: 40rem;
    right: -6.6666666667rem;
    bottom: -14.6666666667rem;
    transform: rotate(60deg);
  }
}
.p-lp__mv-list {
  display: flex;
  gap: 1.0666666667rem;
}
@media (width <= 768px) {
  .p-lp__mv-list {
    gap: 0.64rem;
    justify-content: center;
  }
}
.p-lp__mv-item {
  width: 12.4rem;
  opacity: 0;
}
@media (width <= 768px) {
  .p-lp__mv-item {
    width: 7.3333333333rem;
  }
}
.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: 2;
}
@media (width <= 768px) {
  .p-lp__mv-bnr {
    height: 6.8rem;
    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 #231815;
  border-right: 2px solid #231815;
  transform: rotate(45deg);
  position: absolute;
  content: '';
  right: 1rem;
  top: calc(50% - 0.2666666667rem);
}
.p-lp__mv-bnr-sub {
  font-size: 0.7333333333rem;
  background-color: #c8161d;
  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: #231815;
}
.p-lp__block {
  display: flex;
  align-items: center;
  gap: 3.3333333333rem;
  margin-bottom: 2rem;
}
@media (width <= 768px) {
  .p-lp__block {
    flex-wrap: wrap;
    gap: 1.3333333333rem;
  }
}
.p-lp__block:last-of-type {
  margin-bottom: 0;
  flex-direction: row-reverse;
}
.p-lp__block-text {
  width: 50%;
  flex: 1;
}
@media (width <= 768px) {
  .p-lp__block-text {
    width: 100%;
    flex: none;
  }
}
.p-lp__block-title {
  font-size: 2.5333333333rem;
  font-weight: 700;
  line-height: 1.4210526316;
  letter-spacing: 0.03em;
  margin-bottom: 1.3333333333rem;
}
@media (width <= 768px) {
  .p-lp__block-title {
    font-size: 1.6rem;
    line-height: 1.4166666667;
    margin-bottom: 1rem;
  }
}
.p-lp__block-title .u-text--small {
  font-size: 1.6666666667rem;
}
@media (width <= 768px) {
  .p-lp__block-title .u-text--small {
    font-size: 1.3333333333rem;
    letter-spacing: 0.03em;
  }
}
.p-lp__block-p {
  font-size: 1.2rem;
  line-height: 2.1111111111;
}
@media (width <= 768px) {
  .p-lp__block-p {
    font-size: 0.9333333333rem;
    line-height: 2;
  }
}
.p-lp__block-thumb {
  max-width: 40%;
  flex: 1;
}
@media (width <= 768px) {
  .p-lp__block-thumb {
    max-width: 100%;
    flex: none;
  }
}
.p-lp__block--reverse {
  flex-direction: row-reverse;
}
@media (width <= 768px) {
  .p-lp__block--reverse {
    flex-direction: column-reverse;
  }
}
.p-lp__reason {
  background-image: url(../images/webp/lp/bg-reason.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  padding: 6.6666666667rem 0;
}
@media (width <= 768px) {
  .p-lp__reason {
    padding: 2.6666666667rem 0;
  }
}
.p-lp__reason .p-lp__block:nth-of-type(2) .p-lp__block-thumb {
  max-width: 30%;
}
@media (width <= 768px) {
  .p-lp__reason .p-lp__block:nth-of-type(2) .p-lp__block-thumb {
    max-width: 65%;
    flex: none;
    margin: 0 auto;
  }
}
.p-lp__voice {
  overflow: hidden;
  padding: 4rem 0 5.3333333333rem;
  background-image: url(../images/webp/lp/bg-voice.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}
@media (width <= 768px) {
  .p-lp__voice {
    padding: 2rem 0 2.6666666667rem;
  }
}
.p-lp__voice-title {
  font-size: 3.3333333333rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.03em;
}
@media (width <= 768px) {
  .p-lp__voice-title {
    font-size: 2.6666666667rem;
  }
}
.p-lp__voice-p {
  font-size: 1.2rem;
  text-align: center;
  font-weight: 600;
  margin-bottom: 3.3333333333rem;
}
@media (width <= 768px) {
  .p-lp__voice-p {
    font-size: 0.9333333333rem;
    line-height: 1.8571428571;
    margin-bottom: 1.6666666667rem;
  }
}
.p-lp__voice-slider .swiper-wrapper {
  transition-timing-function: linear;
}
.p-lp__voice-item {
  background-color: #fff;
  padding: 1.3333333333rem 2.2666666667rem;
  border-radius: 0.3333333333rem;
  box-shadow: 0 0.2666666667rem 0.2666666667rem 0 rgba(0, 0, 0, 0.25);
  height: auto;
}
.p-lp__voice-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 0.6666666667rem;
}
.p-lp__voice-thumb {
  width: 5.2666666667rem;
}
.p-lp__voice-name {
  font-size: 1.4rem;
  font-weight: 600;
  color: #c8161d;
}
.p-lp__voice-p {
  line-height: 1.8666666667;
}
.p-lp__about {
  padding: 4.6666666667rem 0;
}
@media (width <= 768px) {
  .p-lp__about {
    padding: 2.6666666667rem 1.3333333333rem;
  }
}
.p-lp__about .c-inner {
  background-color: #fff;
  padding: 3.3333333333rem;
  display: flex;
  justify-content: space-between;
}
@media (width <= 768px) {
  .p-lp__about .c-inner {
    padding: 1.6666666667rem 1.6666666667rem 1.3333333333rem 1.6666666667rem;
    flex-wrap: wrap;
  }
}
.p-lp__about-thumb {
  width: 28.5333333333rem;
}
@media (width <= 768px) {
  .p-lp__about-thumb {
    width: 100%;
    margin-bottom: 0.6666666667rem;
  }
}
.p-lp__about-text {
  width: 42.2666666667rem;
}
@media (width <= 768px) {
  .p-lp__about-text {
    width: 100%;
  }
}
.p-lp__about-title {
  color: #c9854a;
  font-size: 3rem;
  line-height: 1.3;
}
@media (width <= 768px) {
  .p-lp__about-title {
    font-size: 2.6666666667rem;
    text-align: center;
    margin-bottom: 1.3333333333rem;
  }
}
.p-lp__about-title .p-lp__about-span {
  font-size: 2.1333333333rem;
  display: block;
}
@media (width <= 768px) {
  .p-lp__about-title .p-lp__about-span {
    font-size: 1.7333333333rem;
  }
}
.p-lp__about-title .u-text--small {
  font-size: 2.5333333333rem;
}
@media (width <= 768px) {
  .p-lp__about-title .u-text--small {
    font-size: 2.3333333333rem;
  }
}
.p-lp__about-p {
  margin-bottom: 1.3333333333rem;
  line-height: 2.1333333333;
}
@media (width <= 768px) {
  .p-lp__about-p {
    font-size: 0.9333333333rem;
    line-height: 2;
  }
}
.p-lp__about .c-btn {
  margin-bottom: 1.3333333333rem;
}
@media (width <= 768px) {
  .p-lp__about .c-btn {
    width: 100%;
  }
}
.p-lp__about-inner {
  background-color: #f3eae3;
  padding: 1.3333333333rem;
}
@media (width <= 768px) {
  .p-lp__about-inner {
    padding: 1rem 1.3333333333rem;
  }
}
.p-lp__about-inner .p-lp__about-p {
  letter-spacing: 0.01em;
  margin-bottom: 0;
}
@media (width <= 768px) {
  .p-lp__about-inner .p-lp__about-p {
    line-height: 1.7142857143;
  }
}
.p-lp__about-h3 {
  font-weight: 700;
  color: #c8161d;
  line-height: 1.4;
  font-size: 1.0666666667rem;
}
.p-lp__about-h3:before {
  content: '';
  width: 0.9333333333rem;
  height: 0.9333333333rem;
  border-radius: 999px;
  display: inline-block;
  background-color: #c8161d;
  margin-right: 0.5333333333rem;
}
.p-lp__ingredients {
  background-image: url(../images/webp/lp/bg-worries.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  text-align: center;
  padding: 4.2666666667rem 0 5.3333333333rem;
}
@media (width <= 768px) {
  .p-lp__ingredients {
    padding: 2.6666666667rem 0;
  }
}
.p-lp__ingredients-title {
  font-size: 2.8rem;
  letter-spacing: 0.03em;
  line-height: 1.6428571429;
  margin-bottom: 0.6666666667rem;
}
@media (width <= 768px) {
  .p-lp__ingredients-title {
    letter-spacing: 0.02em;
    font-size: 1.6rem;
    margin-bottom: 1.3333333333rem;
  }
}
.p-lp__ingredients-title .u-text--big {
  font-size: 3.2666666667rem;
  color: #c8161d;
}
@media (width <= 768px) {
  .p-lp__ingredients-title .u-text--big {
    font-size: 1.9333333333rem;
  }
}
.p-lp__ingredients-sign {
  display: flex;
  gap: 3.8rem;
  justify-content: center;
  margin-bottom: 5.0666666667rem;
}
@media (width <= 768px) {
  .p-lp__ingredients-sign {
    flex-wrap: wrap;
    gap: 2.2rem;
    margin-bottom: 2.6666666667rem;
  }
}
.p-lp__ingredients-sign-item {
  position: relative;
  width: 24.1333333333rem;
}
@media (width <= 768px) {
  .p-lp__ingredients-sign-item {
    width: 100%;
  }
}
.p-lp__ingredients-sign-img {
  border-radius: 0.3333333333rem;
}
.p-lp__ingredients-sign-title {
  font-size: 1.8666666667rem;
  color: #231815;
  line-height: 1.3571428571;
  position: absolute;
  left: -1rem;
  bottom: -1rem;
  text-align: left;
  text-shadow: -0.2rem -0.2rem 0 #ffffff, 0.2rem -0.2rem 0 #ffffff, -0.2rem 0.2rem 0 #ffffff, 0.2rem 0.2rem 0 #ffffff,
    -0.2rem 0 0 #ffffff, 0.2rem 0 0 #ffffff, 0 -0.2rem 0 #ffffff, 0 0.2rem 0 #ffffff;
}
@media (width <= 768px) {
  .p-lp__ingredients-sign-title {
    font-size: 1.6rem;
    line-height: 1.25;
    left: -0.2666666667rem;
    left: -0.2666666667rem;
  }
}
.p-lp__ingredients-arrow {
  width: 25.2rem;
  margin: 0 auto 0.6666666667rem;
}
@media (width <= 768px) {
  .p-lp__ingredients-arrow {
    width: 12.8rem;
    margin: 0rem auto 0.6666666667rem;
  }
}
.p-lp__ingredients-title2 {
  font-size: 3.3333333333rem;
  font-weight: 700;
}
@media (width <= 768px) {
  .p-lp__ingredients-title2 {
    font-size: 1.7333333333rem;
  }
}
.p-lp__ingredients-p {
  font-size: 1.2rem;
  line-height: 2.1111111111;
  margin-bottom: 2rem;
}
@media (width <= 768px) {
  .p-lp__ingredients-p {
    font-size: 0.9333333333rem;
    line-height: 2;
    letter-spacing: 0.02em;
  }
}
.p-lp__ingredients-block {
  display: flex;
  gap: 1.6rem;
  max-width: 73.3333333333rem;
  margin: 0 auto;
  position: relative;
}
@media (width <= 768px) {
  .p-lp__ingredients-block {
    flex-wrap: wrap;
  }
}
.p-lp__ingredients-item {
  width: 50%;
  flex: 1;
  background-color: #fff;
  border-radius: 0.3333333333rem;
  box-shadow: 0 0.2666666667rem 0.2666666667rem 0 rgba(0, 0, 0, 0.25);
}
@media (width <= 768px) {
  .p-lp__ingredients-item {
    width: 100%;
    flex: none;
  }
}
.p-lp__ingredients-btn {
  position: absolute;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 999px;
  border: 0.3333333333rem solid #fff;
  top: calc(50% - 2.2rem);
  left: calc(50% - 2.2rem);
  z-index: 1;
}
@media (width <= 768px) {
  .p-lp__ingredients-btn {
    width: 3.0666666667rem;
    height: 3.0666666667rem;
    top: calc(50% - 1.5333333333rem);
    left: calc(50% - 1.5333333333rem);
  }
}
.p-lp__ingredients-btn:before {
  width: 1.8666666667rem;
  height: 0.3333333333rem;
  background-color: #fff;
  position: absolute;
  content: '';
  top: calc(50% - 0.1666666667rem);
  left: calc(50% - 0.9333333333rem);
}
@media (width <= 768px) {
  .p-lp__ingredients-btn:before {
    width: 1.1333333333rem;
    height: 0.2rem;
    top: calc(50% - 0.1rem);
    left: calc(50% - 0.5666666667rem);
  }
}
.p-lp__ingredients-btn:after {
  width: 1.8666666667rem;
  height: 0.3333333333rem;
  background-color: #fff;
  position: absolute;
  content: '';
  top: calc(50% - 0.1666666667rem);
  left: calc(50% - 0.9333333333rem);
  transform: rotate(90deg);
}
@media (width <= 768px) {
  .p-lp__ingredients-btn:after {
    width: 1.1333333333rem;
    height: 0.2rem;
    top: calc(50% - 0.1rem);
    left: calc(50% - 0.5666666667rem);
  }
}
.p-lp__ingredients-thumb {
  position: relative;
}
@media (width <= 768px) {
  .p-lp__ingredients-thumb {
    height: 14.2rem;
  }
}
.p-lp__ingredients-h3 {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  color: #fff;
  font-size: 2.1333333333rem;
  font-weight: 700;
  line-height: 1.6;
  padding-bottom: 2rem;
  text-shadow: 0 0 1.4rem #5c3512;
}
@media (width <= 768px) {
  .p-lp__ingredients-h3 {
    font-size: 1.6666666667rem;
    padding-bottom: 1.3333333333rem;
  }
}
.p-lp__ingredients-h3 .u-text--small {
  display: block;
}
@media (width <= 768px) {
  .p-lp__ingredients-h3 .u-text--small {
    font-size: 1.4rem;
  }
}
.p-lp__ingredients-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding: 1.5333333333rem 1.4rem;
}
@media (width <= 768px) {
  .p-lp__ingredients-list {
    gap: 0.6666666667rem 0.5333333333rem;
    padding: 1.1333333333rem 0;
  }
}
.p-lp__ingredients-list-item {
  border-radius: 0.3333333333rem;
  width: 16.1333333333rem;
  height: 4.5333333333rem;
  background: linear-gradient(30deg, #ffb87a, #c9854a);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.1666666667;
}
@media (width <= 768px) {
  .p-lp__ingredients-list-item {
    font-size: 0.9333333333rem;
    width: 10.5333333333rem;
    height: 3.5333333333rem;
    line-height: 1.1714285714;
  }
}
.p-lp__bg--faq {
  background-image: url(../images/webp/lp/bg-faq.webp);
  background-repeat: repeat-x;
  background-size: 96rem;
  background-position: center top;
  padding: 7.3333333333rem 0 6.6666666667rem;
}
@media (width <= 768px) {
  .p-lp__bg--faq {
    padding: 2.6666666667rem 1.3333333333rem;
  }
}
.p-lp__product {
  margin-bottom: 4rem;
}
@media (width <= 768px) {
  .p-lp__product {
    margin-bottom: 2.6666666667rem;
  }
}
.p-lp__product .c-inner {
  padding: 3.3333333333rem 5.7333333333rem;
  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.3333333333rem;
  }
}
.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;
  }
}
.p-lp__product-thumb {
  width: 24.6666666667rem;
}
@media (width <= 768px) {
  .p-lp__product-thumb {
    width: 18rem;
  }
}
.p-lp__product-text {
  width: 24.6666666667rem;
}
@media (width <= 768px) {
  .p-lp__product-text {
    width: 100%;
  }
}
.p-lp__product-name {
  font-size: 2.1333333333rem;
  font-weight: 700;
}
@media (width <= 768px) {
  .p-lp__product-name {
    font-size: 1.6rem;
  }
}
.p-lp__product-name span {
  border: 1px solid #231815;
  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: #c8161d;
  font-size: 1.0666666667rem;
  font-weight: 600;
}
@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: #c8161d;
  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-price-item1 {
  padding-right: 0.6666666667rem;
}
@media (width <= 768px) {
  .p-lp__product-price-item1 {
    padding-right: 0.4rem;
  }
}
.p-lp__product-price-item2 {
  padding-left: 0.6666666667rem;
}
@media (width <= 768px) {
  .p-lp__product-price-item2 {
    padding-left: 0.5333333333rem;
  }
}
.p-lp__product .c-btn {
  margin-top: 1.3333333333rem;
}
@media (width <= 768px) {
  .p-lp__product .c-btn {
    width: 100%;
  }
}
.p-lp__product-item {
  width: 24rem;
}
@media (width <= 768px) {
  .p-lp__product-item {
    width: 100%;
  }
}
@media (width <= 768px) {
  .p-lp__product-item-sub {
    font-size: 0.8rem;
  }
}
.p-lp__product .c-table {
  line-height: 1.4375;
}
.p-lp__product .c-table td p {
  margin-top: 1em;
}
.p-lp__dotted-list {
  list-style-type: disc;
  padding-left: 0;
}
.p-lp__dotted-list li {
  padding-left: 1.3333333333rem;
  width: 24rem;
}
@media (width <= 768px) {
  .p-lp__dotted-list li {
    width: 100%;
  }
}
.p-lp .u-dotted-line--4-12 {
  position: relative;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.p-lp .u-dotted-line--4-12 span {
  background-color: #fff;
  position: relative;
  z-index: 1;
}
.p-lp .u-dotted-line--4-12 span:first-child {
  padding-right: 0.3333333333rem;
}
.p-lp .u-dotted-line--4-12 span:last-child {
  padding-left: 0.4666666667rem;
}
.p-lp__faq .c-inner {
  max-width: 73.3333333333rem;
}
@media (width <= 768px) {
  .p-lp__faq .c-inner {
    padding: 0;
  }
}
.p-lp__faq .c-title {
  margin-bottom: 4.6666666667rem;
}
@media (width <= 768px) {
  .p-lp__faq .c-title {
    margin-bottom: 2rem;
  }
}
.p-lp__faq-item {
  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;
}
@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: #c8161d;
  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: #c8161d;
  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;
  }
}
.p-lp__bottom {
  padding: 4rem 0;
}
@media (width <= 768px) {
  .p-lp__bottom {
    padding: 2.6666666667rem 1.3333333333rem;
  }
}
.p-lp__bottom .c-inner {
  background-color: #fff;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 73.3333333333rem;
  padding: 2.6666666667rem 0 4rem 7.3333333333rem;
}
@media (width <= 768px) {
  .p-lp__bottom .c-inner {
    flex-wrap: wrap;
    padding: 1.3333333333rem 0.9333333333rem;
  }
}
.p-lp__bottom-text {
  width: 33.3333333333rem;
  position: relative;
  z-index: 1;
}
@media (width <= 768px) {
  .p-lp__bottom-text {
    width: 100%;
    padding-top: 20rem;
  }
}
.p-lp__bottom-title {
  font-size: 3.3333333333rem;
  font-weight: 700;
  line-height: 1.52;
  letter-spacing: 0.03em;
  background-image: url(../images/webp/lp/line.webp);
  background-repeat: no-repeat;
  background-size: 29.4666666667rem;
  background-position: left bottom;
  padding-bottom: 0.3333333333rem;
  margin-bottom: 1.3333333333rem;
  position: relative;
  z-index: 1;
}
@media (width <= 768px) {
  .p-lp__bottom-title {
    font-size: 2.2rem;
    line-height: 1.5;
    letter-spacing: 0.1em;
    background-size: 20rem;
  }
}
.p-lp__bottom-title span {
  letter-spacing: -0.25em;
}
.p-lp__bottom-p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
@media (width <= 768px) {
  .p-lp__bottom-p {
    font-size: 0.9333333333rem;
    line-height: 1.8571428571;
    letter-spacing: 0.03em;
  }
}
.p-lp__bottom-thumb {
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 70%;
}
@media (width <= 768px) {
  .p-lp__bottom-thumb {
    width: 100%;
  }
}
.p-lp__bottom-img {
  position: absolute;
  width: 30rem;
  right: 5.3333333333rem;
  top: 2rem;
}
@media (width <= 768px) {
  .p-lp__bottom-img {
    width: 20rem;
    right: 3.3333333333rem;
    top: 0.6666666667rem;
  }
}
.p-lp__bottom-bg {
  position: absolute;
  width: 44.6666666667rem;
  right: -10rem;
  top: -6rem;
}
@media (width <= 768px) {
  .p-lp__bottom-bg {
    width: 51.8666666667rem;
    right: -14.6666666667rem;
    top: -31.3333333333rem;
    max-width: inherit;
  }
}
@media (width <= 768px) {
  .p-lp__bottom .c-btn {
    font-size: 1.0666666667rem;
  }
}

/* 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: 'Noto Sans JP', sans-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 */
