@charset "UTF-8";
@keyframes reflection {
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    transform: scale(0) rotate(45deg);
    opacity: 0.25;
  }
  81% {
    transform: scale(4) rotate(45deg);
    opacity: 0.4;
  }
  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
/* ========================
Base
======================== */
html {
  font-size: 10px;
}
@media (max-width: 375px) {
  html {
    font-size: 2.6666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 2.6666666667vw;
  }
}
@media (min-width: 375px) {
  html {
    font-size: 10px;
  }
}

body {
  --ff-main: "Noto Sans JP", sans-serif;
  --ff-sub: "Roboto", sans-serif;
  --ff-number: "nimbus-sans", sans-serif;
  --text: #000;
  --primary: #c2a245;
  --red: #c30d24;
  --red2: #e35442;
  --btn-red1: #d83f28;
  --btn-red2: #e35442;
  --dark-red: #a80b1f;
  --yellow: #ffe9a6;
  --yellow2: #fff796;
  --yellow3: #efec64;
  --yellow4: #f3f04b;
  --marker-yellow: #fff57c;
  --white: #fff;
  --light-blue: #d3eaf7;
  --navy: #003483;
  --navy2: #003a90;
  --gray: #707070;
  --black: #1e1e1e;
  color: var(--text);
  font-family: var(--ff-main);
  font-weight: 500;
  position: relative;
  line-height: 1.7;
  background: #f2f2f2;
}

@media screen and (min-width: 769px) {
  body {
    padding-block-start: 67px;
  }
}
.btn {
  overflow: hidden;
  border-radius: 10px;
}

.fadeup {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s;
}

.fadeup.show {
  opacity: 1;
  transform: translateY(0);
}

/* === Slick === */
.cont {
  padding: 30px 20px 40px;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: var(--white);
}

.hero {
  position: relative;
  padding-top: 10px;
  padding-bottom: 14px;
  background: url(../images/hero_bg.jpg) center bottom/cover no-repeat;
  overflow: hidden;
}

.cta {
  padding: 25px 20px;
  background: var(--red);
}

.push {
  padding-top: 30px;
  padding-bottom: 110px;
  background-color: #b89a41;
  padding-inline: 15px;
}

.request {
  position: relative;
  padding-top: 53px;
  padding-bottom: 45px;
  background: url(../images/request_bg.jpg) center/cover no-repeat;
}

.marker {
  background: linear-gradient(to top, var(--yellow) 10px, transparent 10px);
}

.primary {
  color: var(--primary);
}

.yellow {
  color: var(--yellow);
}

.red {
  color: var(--red);
}

.bold {
  font-weight: bold;
}

.extrabold {
  font-weight: 800;
}

.scroll-hint {
  overscroll-behavior: auto; /* または none, contain を試す */
}

.js-marker {
  display: inline;
  background: linear-gradient(transparent 80%, var(--marker-yellow) 80%);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  transition: background-size 0.6s ease-in-out;
}

.js-marker.active {
  background-size: 100% 100%;
}

/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

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

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

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

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

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* Remove all animations and transitions for people that prefer not to see them */
@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 {
  font-size: 10px;
}
@media (max-width: 375px) {
  html {
    font-size: 2.6666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 2.6666666667vw;
  }
}
@media (min-width: 375px) {
  html {
    font-size: 10px;
  }
}

body {
  font-size: 1.6rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
  display: inline-block;
}

.inner {
  padding: 0 20px;
  margin: 0 auto;
  width: 100%;
}

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

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

/*-------------------------------
about
-------------------------------*/
.about {
  background: linear-gradient(180deg, rgba(239, 236, 100, 0.7) 0%, rgba(239, 236, 100, 0.7) 50%, rgb(0, 58, 144) 50%, rgb(0, 58, 144) 100%);
}

.about__bg {
  padding-block: 4.4rem 4.9rem;
  background-image: url(../images/seisokuin/about-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.about__title {
  color: var(--navy2);
}

.about__description {
  margin-top: 3.3rem;
  padding-inline: 0.3rem;
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 500;
}

.about__highlight {
  font-weight: 900;
  display: inline;
  z-index: 1;
}

.about__img {
  margin-top: 4rem;
}

.about__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 335/202;
}

/*-------------------------------
achievement
-------------------------------*/
.achievement {
  padding-top: 5.6rem;
  padding-bottom: 3.9rem;
  background-color: var(--navy2);
}

.achievement__title.section-title {
  color: var(--white);
}

.achievement__title.section-title::before {
  opacity: 0.5;
  top: 62%;
}

.achievement__list {
  margin-top: 5.9rem;
}

.achievement__item {
  margin-inline: 2rem;
  padding: 3rem 2.5rem 3.4rem;
  background-color: var(--white);
  border-radius: 2rem;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.16);
}

.achievement__shop {
  padding-block: 0.7rem 1.2rem;
  font-size: 2.6rem;
  line-height: 1.4230769231;
  font-weight: 800;
  color: var(--navy2);
  text-align: center;
  border-radius: 0.5rem;
  background-color: var(--light-blue);
}

.achievement__sales {
  margin-top: 1.5rem;
  font-size: 2.6rem;
  line-height: 1;
  font-weight: 800;
  text-align: center;
  position: relative;
  z-index: 20;
}

.achievement__sales::before {
  content: "";
  width: 100%;
  height: 2rem;
  position: absolute;
  bottom: 0.6rem;
  left: 0;
  background-color: var(--marker-yellow);
  z-index: -1;
}

.achievement__2024 {
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 500;
  position: absolute;
  bottom: -24%;
  left: 50%;
  transform: translateX(-50%);
}

.achievement__amount {
  color: var(--red2);
  letter-spacing: 0;
}

.achievement__number {
  padding-inline: 0.5rem 0.2rem;
  font-family: var(--ff-number);
  letter-spacing: -0.05em;
  font-size: 8rem;
  font-weight: 700;
}

.achievement__img {
  margin-top: 3.5rem;
  position: relative;
}

.achievement__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 285/136;
}

.achievement__note {
  padding: 0.6rem 1.7rem;
  width: -moz-max-content;
  width: max-content;
  font-size: 1.3rem;
  line-height: 1.5384615385;
  text-align: center;
  background-color: var(--white);
  border-radius: 0.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
}

.achievement .slick-prev,
.achievement .slick-next {
  top: 48.1%;
}

.achievement .slick-dots li button {
  background-color: #5184D0;
}

.achievement .slick-dots li.slick-active button {
  background-color: #BFD9FF;
}

.btn--gritter {
  overflow: hidden;
  position: relative;
  display: block;
}

.btn--gritter::before {
  content: "";
  display: block;
  height: 100%;
  width: 10%;
  position: absolute;
  top: -50%;
  left: -78px;
  background-color: #fff;
  opacity: 0;
  transform-origin: left bottom;
  transform: rotate(45deg);
  animation: reflection 3s ease-in-out infinite;
}

.btn-wrap {
  display: flex;
  justify-content: center;
  padding-left: 17px;
  padding-right: 17px;
  margin-top: 16px;
}

.cont_inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* ========================
Blocks
======================== */
/*-------------------------------
cta-btn
-------------------------------*/
.cta-btn {
  margin-inline: 1.5rem;
  width: 33.5rem;
  position: relative;
  z-index: 50;
}

.cta-btn::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0.3rem;
  left: 0;
  border-radius: 5rem;
  background-color: var(--black);
  z-index: -1;
}

.cta-btn a {
  padding: 0.6rem;
  display: flex;
  background: linear-gradient(180deg, var(--btn-red1) 0%, var(--btn-red1) 52%, var(--btn-red2) 52%, var(--btn-red2) 100%);
  border-radius: 5rem;
}

.cta-btn__tag {
  width: 5.5rem;
  height: 5.5rem;
  font-size: 1.6rem;
  line-height: 1.3125;
  font-weight: 600;
  color: var(--red2);
  text-align: center;
  background-color: var(--white);
  border-radius: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-btn__text-wrap {
  line-height: 1;
  font-weight: 800;
  color: var(--white);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-btn__subtext {
  font-size: 1.3rem;
}

.cta-btn__text {
  margin-top: 0.7rem;
  font-size: 2.4rem;
}

.fixed-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: url(../images/fixed_bg-left.jpg) left center/auto 100% no-repeat, url(../images/fixed_bg-right.jpg) right center/auto 100% no-repeat;
}

img {
  max-width: 100%;
}

a {
  color: var(--red);
}

a:hover,
a:focus {
  opacity: 0.9;
}

ul,
ol {
  list-style: none;
}

em,
address,
b {
  font-style: normal;
}

/* ========================
Common
======================== */
/*-------------------------------
flow
-------------------------------*/
.flow {
  background: linear-gradient(180deg, rgb(0, 58, 144) 0%, rgb(0, 58, 144) 50%, rgba(239, 236, 100, 0.7) 50%, rgba(239, 236, 100, 0.7) 100%);
}

.flow__bg {
  padding-top: 6.5rem;
  padding-bottom: 9.3rem;
  background-image: url(../images/seisokuin/flow-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.flow__inner.-top.inner {
  padding: 0;
}

.flow__title.section-title {
  color: var(--navy2);
}

.flow__list-wrap {
  margin-top: 4.3rem;
  overflow-x: scroll;
}

.flow__list {
  padding: 0 20px;
  display: flex;
  align-items: center;
}

.flow__item-first {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.flow__item-first a {
  padding-top: 2.6rem;
}

.flow__DL-img {
  width: 7rem;
}

.flow__DL-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 70/70;
}

.flow__DL-text {
  font-size: 1.8rem;
  line-height: 1.4444444444;
  font-weight: 800;
  color: var(--text);
  text-align: center;
}

.flow__main-img {
  width: 111.7rem;
}

.flow__main-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1117/215;
}

.flow__qa-wrap {
  padding-top: 3.9rem;
  padding-bottom: 7.7rem;
  background-color: var(--marker-yellow);
}

.flow__qa-title {
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 800;
  text-align: center;
  position: relative;
}

.flow__qa-title::before,
.flow__qa-title::after {
  content: "";
  width: 1.7rem;
  height: 5.9rem;
  position: absolute;
  top: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.flow__qa-title::before {
  left: -2.8%;
  background-image: url(../images/seisokuin/flow-decoration1.webp);
}

.flow__qa-title::after {
  right: -3%;
  background-image: url(../images/seisokuin/flow-decoration2.webp);
}

.flow__highlight {
  font-size: 2.2rem;
  line-height: 1.4545454545;
}

.flow__qa-list {
  margin-top: 3.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.flow__qa-item {
  display: flex;
  justify-content: flex-end;
}

.flow__qa-item-wrap {
  width: 31.4rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.2rem;
}

.flow__qa-item:nth-child(even),
.flow__qa-item:nth-child(even) .flow__qa-item-wrap {
  flex-direction: row-reverse;
}

.flow__qa-icon {
  width: 8.1rem;
}

.flow__qa-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 81/81;
}

.flow__qa-question {
  padding-block: 1.2rem;
  padding-left: 4rem;
  width: 22.5rem;
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 600;
  border-radius: 1rem;
  position: relative;
  z-index: 20;
}

.flow__qa-item.-orange .flow__qa-question {
  background-color: #ffba67;
}

.flow__qa-item.-white .flow__qa-question {
  background-color: var(--white);
}

.flow__qa-item.-green .flow__qa-question {
  background-color: #b9e199;
}

.flow__qa-question::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 0.9rem solid transparent;
  border-left: 0.9rem solid transparent;
  border-top: 0;
  position: absolute;
  top: 50%;
  z-index: -1;
}

.flow__qa-item:nth-child(odd) .flow__qa-question::before {
  left: -4%;
  transform: translateY(-50%) rotate(30deg);
}

.flow__qa-item:nth-child(even) .flow__qa-question::before {
  right: -4%;
  transform: translateY(-50%) rotate(-30deg);
}

.flow__qa-item.-orange .flow__qa-question::before {
  border-bottom: 1.6rem solid #ffba67;
}

.flow__qa-item.-white .flow__qa-question::before {
  border-bottom: 1.6rem solid var(--white);
}

.flow__qa-item.-green .flow__qa-question::before {
  border-bottom: 1.6rem solid #b9e199;
}

.flow__qa-question::after {
  content: "";
  width: 2.3rem;
  height: 2.3rem;
  position: absolute;
  top: 50%;
  left: 1.1rem;
  transform: translateY(-50%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.flow__qa-item.-orange .flow__qa-question::after {
  background-image: url(../images/seisokuin/check-orange.webp);
}

.flow__qa-item.-white .flow__qa-question::after {
  background-image: url(../images/seisokuin/check-white.webp);
}

.flow__qa-item.-green .flow__qa-question::after {
  background-image: url(../images/seisokuin/check-green.webp);
}

/*-------------------------------
flow スクロールヒント
-------------------------------*/
.flow .scroll-hint-icon-wrap {
  top: -4%;
}

.flow .scroll-hint-icon {
  padding: 28px 10px 17px;
  width: 88px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 20px;
}

.flow .scroll-hint-icon::before {
  height: 43px;
}

.flow .scroll-hint-icon::after {
  margin-left: -29px;
  width: 49px;
  height: 18px;
  top: 17px;
  background-size: contain;
}

.flow .scroll-hint-text {
  display: none;
}

.footer {
  background-color: var(--navy2);
  color: #fff;
  padding-top: 30px;
  padding-bottom: 20px;
}

.footer_inner.inner {
  position: relative;
  padding: 0 15px;
  margin: 0 auto;
}

.footer_about-franchise-salon {
  box-sizing: border-box;
  border-radius: 10px;
  background-color: #fff;
  color: var(--text);
  padding: 17px 16px;
}

.footer_about-title {
  margin-left: -10px;
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 600;
}

.footer_about-title span {
  margin-left: -4px;
  padding-bottom: 5px;
}

.footer_about-logo {
  display: inline-block;
  width: 20rem;
}

.footer_about-desc {
  margin-top: 2px;
  font-size: 1.4rem;
  line-height: 1.7857142857;
}

.footer_company-info {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.footer_info {
  flex: 1;
  font-family: var(--font-en);
}

.footer_info + .footer_info {
  margin-block-start: 15px;
  padding-left: 0;
  border: none;
}

.footer_company {
  font-size: 1.5rem;
  font-weight: bold;
}

.footer_head-office {
  margin-top: 2px;
  font-size: 1.5rem;
  font-weight: bold;
}

.footer_address {
  margin-top: 3px;
  font-size: 1.4rem;
  line-height: 1.7857142857;
  font-weight: 500;
}

.footer_contact {
  margin-block-start: 24px;
  display: block;
  border: 1px solid #fff;
  border-radius: 999px;
  width: 100%;
  position: relative;
  box-sizing: border-box;
}

.footer_contact-link {
  grid-area: 1/2/2/3;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.3846153846;
  text-decoration: none;
  display: block;
  width: 100%;
  padding: 10px 0;
  text-align: center;
}

.footer_copyright {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.4285714286;
}

.footer--copyright {
  padding-top: 10px;
  padding-bottom: 20px;
  background-color: var(--navy2);
}

/* ========================
Helper
======================== */
@media screen and (max-width: 768px) {
  .only-pc {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .only-sp {
    display: none;
  }
}
/*-------------------------------
form
-------------------------------*/
.form_item {
  display: block;
  gap: 13px;
  color: #000;
}

.form_item:not(:first-child) {
  margin-top: 11px;
}

.form_item--short .wpcf7-form-control-wrap {
  max-width: 185px;
  margin-inline-end: 3px;
  flex-shrink: 0;
}

.form_item--has-btn {
  display: flex;
  flex-wrap: wrap;
  gap: 0px;
}

.form_item--has-btn .form_title {
  width: 100%;
}

.form_item--has-btn .wpcf7-form-control-wrap {
  flex: none;
  width: 100%;
  margin-left: 0;
  margin-block-start: 0;
}

.form_item--left {
  float: none;
  width: auto;
}

.form_item--right {
  float: right;
  box-sizing: border-box;
  width: 50%;
  float: none;
  width: auto;
}

.form_title {
  display: block;
  width: auto;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
}

.form_title--long {
  letter-spacing: -0.1em;
}

.form_required {
  margin-left: 0.4rem;
  color: #ef6430;
}

.form_control {
  display: block;
  width: 100%;
}

.form .form-text {
  box-sizing: border-box;
  height: 48px;
  padding: 14px;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 5px;
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1.5;
  box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.1);
  background-color: #f6f6f5;
}

.form .form-text::-moz-placeholder {
  color: rgba(108, 108, 108, 0.5);
}

.form .form-text::placeholder {
  color: rgba(108, 108, 108, 0.5);
}

.form .form-text:not(:-moz-placeholder-shown) {
  background-color: #fff;
  border: 1px solid #232323;
}

.form .form-text:not(:placeholder-shown) {
  background-color: #fff;
  border: 1px solid #232323;
}

.form .form-text:focus,
.form .form-select:focus {
  border: 2px solid rgba(0, 58, 144, 0.8);
  outline: none;
}

.form .form-select {
  box-sizing: border-box;
  height: 46px;
  padding: 11px 14px 8px;
  background-color: var(--white);
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 5px;
  box-shadow: inset 3px 3px 2px rgba(0, 0, 0, 0.2);
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 400;
  width: 100%;
  box-shadow: none;
  color: var(--text);
  background-color: rgba(255, 232, 224, 0.4);
}

.form .form-select--initial {
  background-color: #fff;
}

.form .form-zip-btn {
  margin-top: 7px;
  margin-left: 10px;
  padding: 14px 0;
  width: 39%;
  height: -moz-max-content;
  height: max-content;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3333333333;
  color: var(--text);
  cursor: pointer;
  flex-shrink: 0;
  border: 2px solid #000;
  border-radius: 5px;
}

.form .wpcf7-form-control-wrap {
  display: block;
  flex: 1;
  margin-top: 7px;
}

.form .form-textarea {
  height: 200px;
}

.form .form_item--select .wpcf7-form-control-wrap {
  position: relative;
}

.form .form_item--select .wpcf7-form-control-wrap::after {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  position: absolute;
  top: 1.5rem;
  right: 4.5%;
  transform: translateX(-50%) rotate(45deg);
  border-bottom: 2px solid rgba(0, 0, 0, 0.6);
  border-right: 2px solid rgba(0, 0, 0, 0.6);
}

.form .form_item--radio > p {
  flex: 1;
}

.form .form_item--radio .wpcf7-radio {
  width: auto;
  margin-top: 0;
  margin-left: 0;
  display: flex;
  gap: 21px;
}

.form .form_item--radio .wpcf7-radio input {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
}

.form .form_item--radio .wpcf7-radio input:checked + .wpcf7-list-item-label {
  cursor: auto;
}

.form .form_item--radio .wpcf7-radio input:checked + .wpcf7-list-item-label::before {
  cursor: auto;
  border-color: #003a90;
}

.form .form_item--radio .wpcf7-radio input:checked + .wpcf7-list-item-label::after {
  opacity: 1;
  cursor: auto;
}

.form .form_item--radio .wpcf7-list-item {
  display: inline-block;
  display: block;
  margin-left: 0;
}

.form .form_item--radio .wpcf7-list-item-label {
  display: inline-block;
  position: relative;
  padding-left: 1.5em;
  font-size: 1.6rem;
  line-height: 1.25;
  cursor: pointer;
  font-weight: 500;
  letter-spacing: 0.025em;
}

.form .form_item--radio .wpcf7-list-item-label::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  box-sizing: border-box;
  width: 1.2em;
  height: 1.2em;
  background-color: #fff;
  border: 2px solid #cbcbcb;
  border-radius: 50%;
  cursor: pointer;
}

.form .form_item--radio .wpcf7-list-item-label::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  background-color: #003a90;
  border-radius: 50%;
  opacity: 0;
  cursor: pointer;
}

.form .form_item--checkbox .wpcf7-checkbox {
  margin-top: 0;
  margin-left: 0;
}

.form .form_item--checkbox .wpcf7-checkbox input {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
}

.form .form_item--checkbox .wpcf7-checkbox input:checked + .wpcf7-list-item-label::before {
  background-color: #b6b6b6;
  box-shadow: none;
}

.form .form_item--checkbox .wpcf7-checkbox input:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.form .form_item--checkbox .wpcf7-list-item {
  display: block;
  margin-top: 12px;
  margin-left: 0;
}

.form .form_item--checkbox .wpcf7-list-item-label {
  display: inline-block;
  position: relative;
  line-height: 1.7857142857;
  cursor: pointer;
  padding-left: 24px;
  font-size: 1.1em;
  color: #999;
  font-weight: 300;
}

.form .form_item--checkbox .wpcf7-list-item-label::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  box-sizing: border-box;
  width: 18px;
  height: 18px;
  border-radius: 2px;
  background-color: #fff;
  cursor: pointer;
  border: 1px solid #b6b6b6;
}

.form .form_item--checkbox .wpcf7-list-item-label::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-65%) rotate(-45deg);
  width: 9px;
  height: 5px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  opacity: 0;
  cursor: pointer;
  left: 4px;
}

.form .form_item--optional:not(._) {
  text-align: center;
  margin-top: 12px;
}

.form .form_item--optional:not(._) .wpcf7-list-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.form .form_item--optional:not(._) .wpcf7-list-item-label {
  color: #b6b6b6;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 500;
}

.form .wpcf7-not-valid:not(.wpcf7-radio) {
  background: #f6f6f6;
  color: #464646;
}

.form .wpcf7-not-valid-tip {
  margin-top: 4px;
}

.form_note {
  margin-top: 2px;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  margin-left: 0.3rem;
}

.form_privacy-policy-wrap {
  margin-top: 17px;
}

.form_privacy-policy {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 2;
  text-align: center;
}

.form_privacy-policy a {
  color: #014bb4;
  text-decoration: underline;
}

.form_submit-wrap {
  margin-top: 25px;
  text-align: center;
  position: relative;
}

.form_submit {
  position: relative;
  width: 22.5rem;
  padding-top: 13px;
  padding-bottom: 15px;
  outline: none;
  border: none;
  border-radius: 40px;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: bold;
  letter-spacing: 0.05em;
  cursor: pointer;
  background-color: #d41200;
}

/*-------------------------------
fv
-------------------------------*/
.fv {
  margin-top: 6rem;
  position: relative;
}

.fv__bg {
  background: linear-gradient(180deg, var(--white) 0%, var(--white) 50%, rgba(239, 236, 100, 0.7) 50%, rgba(239, 236, 100, 0.7) 100%);
}

.fv__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 375/459;
}

.fv__inner.inner {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fv__catchphrase {
  margin-top: 2.3rem;
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
  text-shadow: 1px 1px 1px var(--white), -1px 1px 1px var(--white), 1px -1px 1px var(--white), -1px -1px 1px var(--white), 1px 0px 1px var(--white), 0px 1px 1px var(--white), -1px 0px 1px var(--white), 0px -1px 1px var(--white);
  display: flex;
  justify-content: center;
}

.fv__catchphrase .-blue {
  color: var(--navy);
}

.fv__catchphrase p {
  width: -moz-max-content;
  width: max-content;
  position: relative;
}

.fv__catchphrase p::before,
.fv__catchphrase p::after {
  content: "";
  width: 2.4rem;
  height: 5rem;
  position: absolute;
  top: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.fv__catchphrase p::before {
  left: -3.65rem;
  background-image: url(../images/seisokuin/fv-decoration1.webp);
}

.fv__catchphrase p::after {
  right: -3.65rem;
  background-image: url(../images/seisokuin/fv-decoration2.webp);
}

.fv__performance {
  margin-top: 3.6rem;
}

.fv__keywords {
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  text-shadow: 1px 1px 1px var(--white), -1px 1px 1px var(--white), 1px -1px 1px var(--white), -1px -1px 1px var(--white), 1px 0px 1px var(--white), 0px 1px 1px var(--white), -1px 0px 1px var(--white), 0px -1px 1px var(--white);
  display: flex;
  justify-content: center;
  gap: 3.9rem;
  position: relative;
}

.fv__keywords::before,
.fv__keywords::after {
  content: "";
  width: 2.4rem;
  height: 0.3rem;
  border-radius: 1px;
  position: absolute;
  top: 50%;
  left: 50.5%;
  background-color: var(--black);
  z-index: 50;
}

.fv__keywords::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.fv__keywords::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.fv__keywords-item {
  display: flex;
  align-items: center;
}

.fv__keywords-item-wrap {
  position: relative;
}

.fv__keywords-item-wrap::before {
  content: "";
  width: 12.36rem;
  height: 12.36rem;
  position: absolute;
  top: 54%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10rem;
  background-color: rgba(255, 255, 255, 0.7);
}

.fv__badge {
  width: -moz-max-content;
  width: max-content;
  display: inline-block;
  background-color: var(--yellow2);
  position: relative;
  z-index: 20;
}

.fv__badge:nth-of-type(2) {
  margin-top: 0.4rem;
}

.fv__badge .-small {
  font-size: 2rem;
}

.fv__text {
  margin-left: 0.3rem;
  position: relative;
  z-index: 20;
}

.fv__result-img {
  width: 100%;
  max-width: 32.8rem;
  position: relative;
  top: -1.5rem;
  left: 0.4rem;
}

.fv__result-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 328/158;
}

.fv__features {
  margin-top: 7.2rem;
}

.fv__list {
  display: flex;
  gap: 1.5rem;
}

.fv__item-img {
  width: 47.7611940299%;
  max-width: 16rem;
}

.fv__cta {
  padding-top: 3.1rem;
  padding-bottom: 1.7rem;
  background-color: rgba(239, 236, 100, 0.7);
}

.fv__message {
  font-weight: 600;
  text-align: center;
}

.fv__message .-navy {
  margin-top: 0.4rem;
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
  color: var(--navy2);
  text-wrap: nowrap;
  display: inline-block;
}

.fv__button-wrapper {
  margin: 0 auto;
  margin-top: 0.5rem;
}

/*-------------------------------
header
-------------------------------*/
.header {
  height: 6rem;
}

.header__inner {
  padding-right: 1.5rem;
  height: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4.3rem;
  position: relative;
}

.header__inner::before,
.header__inner::after {
  content: "";
  width: 1.8rem;
  height: 0.2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #323232;
}

.header__inner::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.header__inner::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.header__logo {
  width: 13.67rem;
  height: inherit;
  display: flex;
}

.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 136.7/41;
}

.header__link {
  width: 13rem;
  height: inherit;
  display: flex;
  align-items: center;
}

.header__link img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 130/38;
}

.pc-nav {
  position: fixed;
  top: 50%;
  left: 10.9722222222vw;
  translate: 0 -50%;
}

@media screen and (max-width: 1220px) {
  .pc-nav {
    left: 10px;
  }
}
.pc-nav_list {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  gap: 1em;
}

.pc-nav_link {
  position: relative;
  color: #acacac;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  padding-inline-start: 28px;
  text-decoration: none;
  display: block;
  text-align: center;
}

.pc-nav_link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 19px;
  height: 16px;
  -webkit-mask: url(../images/chevron2.svg) center/contain no-repeat;
          mask: url(../images/chevron2.svg) center/contain no-repeat;
  background: #00c5c5;
  opacity: 0;
}

.pc-nav_link::after {
  content: "";
  position: absolute;
  bottom: -3px;
  right: 0;
  translate: 0 -50%;
  width: calc(100% - 28px);
  height: 2px;
  background: #00c5c5;
  opacity: 0;
}

.pc_nav-item.current .pc-nav_link {
  color: #00c5c5;
}

.pc_nav-item.current > .pc-nav_link::before,
.pc_nav-item.current > .pc-nav_link::after {
  opacity: 1;
}

.pc_nav-item:hover {
  opacity: 1;
}

.pc_nav-item:hover > .pc-nav_link {
  color: #00c5c5;
  opacity: 1;
}

.pc_nav-item:hover > .pc-nav_link::before,
.pc_nav-item:hover > .pc-nav_link::after {
  opacity: 1;
}

.pc-cta {
  max-width: 331px;
  margin-inline: auto;
  position: fixed;
  top: 50%;
  translate: 0 -50%;
  left: calc(50% + 20vw);
}

@media screen and (max-width: 1220px) {
  .pc-cta {
    left: calc(50% + 16vw);
  }
}
@media screen and (max-width: 1024px) {
  .pc-cta {
    display: none;
  }
}
.pc-cta_block {
  padding-block-start: 42px;
}

@media screen and (max-height: 620px) {
  .pc-cta_block {
    padding-block-start: 3px;
  }
}
.pc-cta_block-inner {
  padding-block-start: 3.4972677596vh;
  background: var(--white);
  border-radius: 15px;
}

.pc-cta_block-icon {
  aspect-ratio: 1;
  width: 5.8333333333vw;
  max-width: 84px;
  border-radius: 50%;
  background: var(--white);
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  display: grid;
  place-items: center;
}

@media screen and (max-height: 620px) {
  .pc-cta_block-icon {
    display: none;
  }
}
.pc-cta_block-icon img {
  aspect-ratio: 1;
  width: 3.0555555556vw;
  max-width: 44px;
  margin-inline: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

.pc-cta_block-title {
  color: #00c5c5;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
  padding-inline: 13px;
  position: relative;
  max-width: 280px;
  display: block;
  margin-inline: auto;
  width: -moz-max-content;
  width: max-content;
}

.pc-cta_block-title::before,
.pc-cta_block-title::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 2px;
  height: 50px;
  background-color: #00c5c5;
  rotate: -25deg;
}

.pc-cta_block-title::after {
  left: auto;
  right: 0;
  rotate: 25deg;
}

.pc-cta_block-line {
  width: 14.4444444444vw;
  max-width: 208px;
  margin-inline: auto;
  margin-block-start: 6px;
}

.pc-cta_block-desc {
  color: var(--text);
  font-size: 1.3rem;
  line-height: 1.5;
  display: block;
  width: 19.0277777778vw;
  max-width: 274px;
  margin-inline: auto;
  margin-block-start: 8px;
}

.pc-cta_block-qr {
  aspect-ratio: 234/80;
  width: 16.25vw;
  max-width: 234px;
  margin-inline: auto;
  margin-block: 9px;
}

.pc-cta_block-footer {
  background: #00c5c5;
  padding: 2.2950819672vh 22px;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
}

.pc-cta_block-logo {
  display: flex;
  justify-content: center;
  align-self: center;
}

.pc-cta_block-logo span {
  font-size: min(1.4rem, 2.2vw);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  display: flex;
  align-items: center;
}

.pc-cta_block-footer-text {
  color: var(--white);
  text-align: center;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.6;
}

.pc-cta_btn {
  margin-block-start: 2.8415300546vh;
  display: block;
  border: 2px solid #00c5c5;
  border-radius: 999px;
  background: var(--white);
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.25);
  padding-block: 8px;
  position: relative;
  color: #00c5c5;
}

.pc-cta_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  translate: 0% -50%;
  width: 10px;
  height: 14px;
  background-color: #00c5c5;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.pc-cta_btn-inner {
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.5;
}

/* ヘッダー */
.primary-dark {
  color: var(--primary-dark);
}

/*-------------------------------
reason
-------------------------------*/
.reason {
  padding-top: 5.4rem;
  padding-bottom: 8.1rem;
  background-color: var(--navy2);
}

.reason__title {
  color: var(--white);
}

.reason__title.section-title::before {
  opacity: 0.5;
  top: 50%;
}

.reason__lead {
  margin-top: 2.4rem;
  font-size: 1.6rem;
  line-height: 1.875;
  font-weight: 500;
  color: var(--white);
  text-align: center;
}

.reason__list {
  margin-top: 1.9rem;
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.reason__number {
  margin-left: 2rem;
  width: -moz-max-content;
  width: max-content;
  font-family: var(--ff-number);
  font-size: 3.5rem;
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 700;
  color: var(--navy2);
  position: relative;
  top: 2rem;
  z-index: 20;
}

.reason__number::before {
  content: "";
  width: 7.6rem;
  height: 7.6rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  background-image: url(../images/seisokuin/reason-number-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.reason__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 670/364;
}

.reason__text-wrap {
  padding: 2.5rem 1.9rem 1.7rem;
  background-color: var(--white);
  border-radius: 0 0 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reason__heading {
  font-size: 2.6rem;
  line-height: 1.1538461538;
  font-weight: 800;
  color: var(--navy2);
  text-align: center;
  z-index: 20;
  display: inline-block;
}

.reason__heading.js-marker {
  display: inline;
  background: linear-gradient(to right, var(--marker-yellow));
  background-size: 0% 100%;
  background-repeat: no-repeat;
  transition: background-size 0.6s ease-in-out;
}

.reason__heading.js-marker.active {
  background-size: 100% 100%;
}

.reason__text {
  margin-top: 0.7rem;
  font-size: 1.6rem;
  line-height: 2;
}

.request_title {
  width: 100%;
  position: absolute;
  top: -83px;
  left: 50%;
  transform: translateX(-50%);
}

.request_title-inner {
  box-sizing: border-box;
  width: -moz-max-content;
  width: max-content;
  padding: 18px 20px 34px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
  background: url(../images/push_speech-bubble.png) center/contain no-repeat;
  width: 100%;
}

.request_title-inner em {
  display: block;
  font-size: 2rem;
  line-height: 1;
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
  margin-block-start: 8px;
}

.request_title-inner em span {
  position: relative;
  padding-block-start: 4px;
  display: inline-block;
}

.request_title-inner em span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -50%;
  width: 3px;
  height: 3px;
  background: var(--red);
  border-radius: 50%;
}

.request_note {
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.7;
}

.request_note-mail {
  display: block;
}

.request_panel {
  box-sizing: border-box;
  margin: 21px auto 0;
}

.request_appeal {
  display: flex;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  padding: 0 18px;
  margin: 0 auto;
  background-color: var(--red);
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 700;
  white-space: nowrap;
  height: 37px;
  border-radius: 999em;
}

.request_appeal em {
  display: flex;
  align-items: center;
  gap: 2px;
  padding-inline-start: 2px;
  line-height: 1;
}

.request_appeal strong {
  font-size: 2.3rem;
  display: inline-block;
  line-height: 1;
  margin-block-start: -3px;
}

.request_require-note {
  text-align: right;
  font-size: 1.1rem;
  margin-block-start: 8px;
}

.request_form {
  margin-top: 4px;
}

/*-------------------------------
section-title
-------------------------------*/
.section-title {
  font-size: 3rem;
  line-height: 1.35;
  font-weight: 800;
  text-align: center;
  position: relative;
  z-index: 20;
}

.section-title::before {
  content: "";
  width: 7.4rem;
  height: 7.4rem;
  position: absolute;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  background-color: var(--light-blue);
  border-radius: 5rem;
}

.slick-list {
  margin-left: -20px;
  margin-right: -20px;
  padding-bottom: 21px;
}

.slick-track {
  display: flex;
}

.slick-slide {
  float: none;
  height: auto;
}

.slick-slide:not(.slick-current) * {
  filter: none;
}

.slick-prev,
.slick-next {
  display: block;
  position: absolute;
  top: 49.1%;
  z-index: 1;
  transform: translateY(-50%);
  width: 28px;
  height: 150px;
  padding: 0;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  outline: none;
  color: transparent;
  cursor: pointer;
}

.slick-prev::after,
.slick-next::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-70%, -50%) rotate(-45deg);
  width: 14px;
  height: 14px;
  border-right: 4px solid #fff;
  border-bottom: 4px solid #fff;
  border-radius: 2px;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  color: transparent;
}

.slick-prev {
  transform: translateY(-50%) scale(-1, 1);
  left: -20px;
}

.slick-next {
  right: -20px;
}

.slick-disabled {
  opacity: 0;
  cursor: auto;
}

.slick-disabled:hover,
.slick-disabled:focus {
  opacity: 0;
}

.slick-dotted.slick-slider {
  margin-bottom: 40px;
}

.slick-dots {
  display: block;
  position: absolute;
  bottom: -28px;
  left: 3%;
  width: 100%;
  text-align: center;
  margin-inline-start: -10px;
}

.slick-dots li {
  display: inline-block;
  margin: 0 10px;
  cursor: pointer;
}

.slick-dots li button {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  padding: 0;
  background-color: #bfd9ff;
  border: 0;
  outline: none;
  color: transparent;
  font-size: 0px;
  line-height: 0px;
  cursor: pointer;
}

.slick-dots li.slick-active button {
  background-color: #003A90;
}

.sp-contents {
  overflow-x: hidden;
  max-width: 425px;
  margin-inline: auto;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.35);
  position: relative;
  background: var(--white);
}

@media screen and (max-width: 1220px) {
  .sp-contents {
    margin-inline-start: 295px;
  }
}
@media screen and (max-width: 768px) {
  .sp-contents {
    margin-inline: auto;
  }
}
@media screen and (max-width: 410px) {
  .sp-contents {
    box-shadow: none;
    width: 100%;
  }
}
/* PC用コンテンツ */
/*-------------------------------
voice
-------------------------------*/
.voice {
  padding-bottom: 4.1rem;
  background: linear-gradient(180deg, rgb(0, 58, 144) 0%, rgb(0, 58, 144) 50%, rgba(239, 236, 100, 0.7) 50%, rgba(239, 236, 100, 0.7) 100%);
}

.voice__bg {
  padding-block: 6.7rem 4.4rem;
  background-image: url(../images/seisokuin/voice-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.voice__title {
  color: var(--navy2);
}

.voice__list {
  margin-top: 5rem;
}

.voice__item {
  margin-inline: 2rem;
  padding: 4.5rem 2.3rem 3.8rem;
  background-color: var(--white);
  border-radius: 2rem;
  box-shadow: 0.5rem 0.5rem 0.5rem rgba(0, 0, 0, 0.16);
}

.voice__profile {
  margin-inline: 0.2rem;
  padding-block: 0.6rem;
  padding-left: 8.5rem;
  background-color: var(--navy2);
  border-radius: 0.5rem;
  position: relative;
}

.voice__icon {
  position: absolute;
  bottom: 0;
}

.voice__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.voice__item:nth-child(1) .voice__icon {
  width: 9.4rem;
  left: -1.1rem;
}

.voice__item:nth-child(1) .voice__icon img {
  aspect-ratio: 94/98;
}

.voice__item:nth-child(2) .voice__icon {
  width: 10.4rem;
  left: -3.3rem;
}

.voice__item:nth-child(2) .voice__icon img {
  aspect-ratio: 104/103;
}

.voice__item:nth-child(3) .voice__icon {
  width: 10.5rem;
  left: -2.6rem;
}

.voice__item:nth-child(3) .voice__icon img {
  aspect-ratio: 105/98;
}

.voice__info {
  color: var(--white);
}

.voice__name {
  font-size: 2rem;
  line-height: 1.45;
  font-weight: 800;
}

.voice__kana {
  font-size: 1rem;
  line-height: 1.5;
  display: block;
}

.voice__shops {
  margin-top: 1.8rem;
  position: relative;
}

.voice__shops::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  top: 1rem;
  left: 0;
  background-color: var(--gray);
}

.voice__label {
  margin: 0 auto;
  padding-inline: 1.34rem;
  width: -moz-max-content;
  width: max-content;
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 800;
  text-align: center;
  background-color: var(--white);
  position: relative;
  z-index: 20;
}

.voice__shops-wrap {
  display: flex;
  gap: 0.4rem;
  border-bottom: var(--gray) 1px solid;
}

.voice__tag {
  width: 5.7rem;
  font-size: 1.3rem;
  line-height: 1.0769230769;
  font-weight: 700;
  color: var(--navy2);
  text-decoration: underline;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: -0.3rem;
  z-index: 20;
}

.voice__tag::before {
  content: "";
  width: 5.7rem;
  height: 5.7rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 5rem;
  background-color: var(--marker-yellow);
  z-index: -1;
}

.voice__shoplist {
  padding-block: 0.8rem 1.5rem;
  font-size: 1.4rem;
  line-height: 2;
}

.voice__shoplist .-small {
  letter-spacing: -0.3em;
}

.voice__item:nth-child(2) .voice__shops-wrap,
.voice__item:nth-child(3) .voice__shops-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.voice__item:nth-child(2) .voice__shoplist,
.voice__item:nth-child(3) .voice__shoplist {
  width: 22.5rem;
}

.voice__item:nth-child(3) .voice__shoplist {
  text-align: center;
}

.voice__comment {
  margin-top: 2.85rem;
  font-size: 1.5rem;
  line-height: 2;
}

.voice__highlight {
  font-weight: 800;
  position: relative;
}

.voice__CTA {
  margin-top: 4.3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.voice__CTA-text {
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
  color: var(--navy2);
  text-align: center;
  text-wrap: nowrap;
  display: inline-block;
}

.voice__button-wrapper {
  margin-top: 0.9rem;
  margin-inline: 0;
}

.white-line {
  background-image: linear-gradient(to top, #fff 7px, transparent 7px);
}

/*-------------------------------
contact
-------------------------------*/
.contact {
  padding-bottom: 3.1rem;
  background-color: var(--light-blue);
}

.contact__inner.inner {
  padding: 0 15px;
  position: relative;
}

.contact__lead {
  padding-block: 1.7rem;
  width: calc(100% - 30px);
  max-width: 34.5rem;
  color: var(--white);
  text-align: center;
  background: linear-gradient(180deg, var(--btn-red1) 38%, var(--btn-red2) 90%);
  border-radius: 0.7rem;
  position: absolute;
  top: -3.6rem;
  left: 50%;
  transform: translateX(-50%);
}

.contact__lead::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 0.65rem solid transparent;
  border-left: 0.65rem solid transparent;
  border-top: 1.1rem solid var(--red2);
  border-bottom: 0;
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
}

.contact__catch {
  font-size: 1.3rem;
  line-height: 1.4615384615;
  font-weight: 700;
}

.contact__cta {
  font-size: 2.3rem;
  line-height: 1.4782608696;
  font-weight: 800;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
}

.contact__cta .ls-short {
  letter-spacing: 0.03em;
}

.contact__note {
  padding-top: 6.8rem;
  font-size: 1.5rem;
  line-height: 1;
  text-align: center;
}

.contact__subtext {
  margin-top: 1.1rem;
  font-size: 1.3rem;
}

.contact__form-wrap {
  margin-top: 3.3rem;
  padding: 2.2rem 1.2rem 3.3rem;
  background-color: var(--white);
  border-radius: 0.5rem;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}

.contact__time {
  margin: 0 auto;
  width: 21.2rem;
  background-color: var(--marker-yellow);
  border-radius: 0.5rem;
}

.contact__time-box {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 700;
}

.contact__time-highlight {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact__time-number {
  margin-inline: 0.2rem;
  font-family: var(--ff-number);
  font-size: 3.6rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--red2);
}

.contact__time-unit {
  color: var(--red2);
}

.contact__required {
  margin-top: 0.8rem;
  font-size: 1.1rem;
  line-height: 1.4545454545;
  text-align: end;
}

.contact__required .-red {
  color: #EF6430;
}

/*-------------------------------

-------------------------------*/
/*# sourceMappingURL=styles.css.map */
