@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
/* Reset CSS */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

:root {
  --f50: 50px;
  --f48: 48px;
  --f40: 40px;
  --f36: 36px;
  --f34: 34px;
  --f28: 28px;
  --f24: 24px;
  --f20: 20px;
  --f18: 18px;
  --f16: 16px;
  --red: #ef2923;
  --yellow: #ffe100;
  --gold: linear-gradient(90deg, #fcf3a2 0%, #ffd768 49%, #d8c068 100%);
}
@media (max-width: 767px) {
  :root {
    --f16: 15px;
    --f18: 17px;
    --f20: 18px;
  }
}
@media screen and (max-width: 600px) {
  :root {
    --f40: 24px;
    --f50: 28px;
  }
}

body {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1.6;
  font-size: 18px;
  -webkit-font-feature-settings: "palt" on, "hwid" on;
          font-feature-settings: "palt" on, "hwid" on;
}

.sans {
  font-family: "Noto Sans JP", sans-serif !important;
}

img {
  max-width: 100%;
}

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

.inner {
  width: 1000px;
  max-width: 100%;
  margin: auto;
}
@media (max-width: 767px) {
  .inner {
    max-width: 95%;
  }
}

.base__contents {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .base__contents {
    padding: 40px 0;
  }
}

.back__grey {
  background: url(../img/base-back.webp);
  background-size: cover;
}

.mv {
  width: 100%;
  margin: auto;
}
.mv img {
  display: block;
}

.cta__area {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  gap: 34px;
  background: #000000;
  background: #000;
  height: 194px;
  position: relative;
}
@media (max-width: 767px) {
  .cta__area {
    height: auto;
    padding: 24px 0;
    gap: 20px;
  }
}
.cta__area:before {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold);
  position: absolute;
}
.cta__area:after {
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold);
  position: absolute;
}
.cta__area .inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  gap: 24px;
}
@media (max-width: 767px) {
  .cta__area .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.cta__area-text {
  width: 55%;
  color: #fff;
  font-weight: 500;
  font-size: var(--f34);
  line-height: 49px;
}
@media (max-width: 767px) {
  .cta__area-text {
    width: 100%;
    font-size: var(--f20);
    line-height: 120%;
    text-align: center;
  }
}
.cta__area-text strong {
  font-size: var(--f48);
  color: var(--yellow);
}
@media (max-width: 767px) {
  .cta__area-text strong {
    font-size: var(--f28);
  }
}
.cta__area-btn {
  width: 45%;
}
@media (max-width: 767px) {
  .cta__area-btn {
    width: 100%;
    text-align: center;
  }
}
.cta__area-btn img {
  width: 95%;
  padding-top: 12px;
}

.base__title {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 64px;
  height: 107.75px;
  background: #000000;
  -webkit-box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.25);
  border-radius: 0px 24px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 80px;
  border: 4px solid #c3bb83;
}
@media (max-width: 767px) {
  .base__title {
    margin: 0 auto 40px;
    padding: 16px 32px;
    height: auto;
  }
}
.base__title h2 {
  font-weight: 700;
  font-size: var(--f48);
  line-height: 120%;
  text-align: center;
  background: -webkit-gradient(linear, left top, right top, from(#fcf3a2), color-stop(49%, #ffd768), to(#d8c068));
  background: -webkit-linear-gradient(left, #fcf3a2 0%, #ffd768 49%, #d8c068 100%);
  background: linear-gradient(90deg, #fcf3a2 0%, #ffd768 49%, #d8c068 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
@media (max-width: 767px) {
  .base__title h2 {
    font-size: var(--f28);
  }
}
.base__title h2 small {
  font-size: var(--f24);
  display: block;
}
@media (max-width: 767px) {
  .base__title h2 small {
    font-size: var(--f20);
  }
}

.s1 {
  margin-bottom: 80px;
}
.s1-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media (max-width: 767px) {
  .s1-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.s1-box-text {
  width: 50%;
}
@media (max-width: 767px) {
  .s1-box-text {
    width: 100%;
  }
}
.s1-box-text h3 {
  background: #000000;
  font-weight: 500;
  font-size: var(--f34);
  line-height: 49px;
  -webkit-font-feature-settings: "palt" on, "hwid" on;
          font-feature-settings: "palt" on, "hwid" on;
  color: #ffffff;
  padding: 8px;
  text-align: center;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .s1-box-text h3 {
    font-size: var(--f24);
    line-height: 140%;
  }
}
.s1-box-text p {
  font-size: var(--f16);
  line-height: 180%;
}
.s1-box-img {
  width: 50%;
}
@media (max-width: 767px) {
  .s1-box-img {
    width: 100%;
  }
}

.s2-box {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 64px;
  background: rgba(255, 255, 255, 0.8);
  -webkit-box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.25);
  position: relative;
  padding: 46px 0;
  overflow-x: hidden;
}
@media (max-width: 767px) {
  .s2-box {
    padding: 32px 0;
    gap: 24px;
  }
}
.s2-box:before {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold);
  position: absolute;
}
.s2-box:after {
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold);
  position: absolute;
}
.s2-box h2 {
  font-size: var(--f40);
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .s2-box h2 {
    font-size: var(--f28);
  }
}
.s2-box h2 strong {
  font-size: var(--f48);
}
@media (max-width: 767px) {
  .s2-box h2 strong {
    font-size: var(--f34);
  }
}

.slider .slider-box {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0px;
  width: 360px;
  height: 323.61px;
  background: #ffffff;
  border: 1px solid #e7e7e7;
  position: relative;
  margin-right: 16px;
}
.slider .slider-box--img {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}
.slider .slider-box--img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.slider .slider-box-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  line-height: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: var(--f24);
  padding-top: 16px;
  text-align: center;
}
.slider .slider-box-text small {
  font-size: 80%;
}
.slider .slider-box .open-icon {
  position: absolute;
  top: -64px;
  margin: auto;
  left: 0;
  right: 0;
  width: 90%;
}

.slick-list {
  padding-top: 56px !important;
}

.voice__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0px;
  gap: 40px;
}
@media (max-width: 767px) {
  .voice__list {
    gap: 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.voice__list-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 23px 22px;
  gap: 23px;
  background: #faf6ed;
  width: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 767px) {
  .voice__list-box {
    width: 100%;
  }
}
.voice__list-box-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px;
  gap: 32px;
}
.voice__list-box-title .img {
  width: 120px;
  height: 120px;
  background: #7d7d7d;
  position: relative;
  overflow: hidden;
}
.voice__list-box-title .text {
  width: calc(100% - 120px);
}
.voice__list-box-title .text h3 {
  font-size: var(--f28);
}
@media (max-width: 767px) {
  .voice__list-box-title .text h3 {
    line-height: 1.4;
  }
}
.voice__list-box-title .text h3 small {
  font-size: var(--f20);
}
.voice__list-box .block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 21px 19px;
  gap: 10px;
  background: #ffffff;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.voice__list-box .block h4 {
  font-size: var(--f18);
  font-weight: 700;
  line-height: 160%;
  color: #e40101;
}
.voice__list-box .block p {
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  color: #000000;
}

.strong {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0px;
  gap: 32px;
}
.strong-box {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 3px 7px;
  width: 800px;
  background: #ffffff;
  border: 8px solid #000000;
  -webkit-box-shadow: 0px 8px 0px #e0c468;
          box-shadow: 0px 8px 0px #e0c468;
  margin: auto;
  max-width: 100%;
  gap: 32px;
}
@media (max-width: 767px) {
  .strong-box {
    gap: 16px;
  }
}
.strong-box .img {
  width: 120px;
  height: auto;
}
@media (max-width: 767px) {
  .strong-box .img {
    width: 80px;
  }
}
.strong-box .text {
  font-size: var(--f34);
  background: -webkit-gradient(linear, left top, right top, from(#e60000), to(#c00000));
  background: -webkit-linear-gradient(left, #e60000 0%, #c00000 100%);
  background: linear-gradient(90deg, #e60000 0%, #c00000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}
@media (max-width: 767px) {
  .strong-box .text {
    font-size: var(--f24);
    line-height: 1.2;
  }
}
.strong-box .text small {
  display: block;
  font-size: var(--f20);
  background: none;
  color: #000;
  -webkit-text-fill-color: #000000;
  -webkit-background-clip: none;
}
@media (max-width: 767px) {
  .strong-box .text small {
    font-size: var(--f18);
  }
}

.merit {
  background: url(../img/back-merit.webp);
  background-size: cover;
  position: relative;
}
.merit .f24 {
  font-size: var(--f24);
  line-height: 180%;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .merit .f24 {
    font-size: var(--f18);
  }
}

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

.merit__list {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 800px;
  height: 84px;
  max-width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  background: #ffffff;
  -webkit-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  border: 5px solid #e60000;
  margin: auto;
  font-weight: 600;
  font-size: var(--f28);
  line-height: 180%;
  color: #0e0e0e;
  position: relative;
  margin-top: 32px;
}
@media (max-width: 767px) {
  .merit__list {
    font-size: var(--f124);
  }
}
.merit__list.fukidashi {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .merit__list.fukidashi {
    margin-top: 64px;
  }
}
.merit__list.fukidashi img {
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
}
.merit__list.fukidashi1 img {
  width: 320px;
  top: -56px;
}
@media (max-width: 767px) {
  .merit__list.fukidashi1 img {
    width: 240px;
    top: -40px;
  }
}
.merit__list.fukidashi2 img {
  width: 399px;
  top: -56px;
}
@media (max-width: 767px) {
  .merit__list.fukidashi2 img {
    width: 280px;
    top: -40px;
  }
}
.merit__list.fukidashi4 img {
  width: 574px;
  top: -72px;
}
@media (max-width: 767px) {
  .merit__list.fukidashi4 img {
    top: -47px;
  }
}
.merit__list.fukidashi5 img {
  width: 253px;
  top: -56px;
}
@media (max-width: 767px) {
  .merit__list.fukidashi5 img {
    width: 180px;
    top: -40px;
  }
}

.and {
  position: absolute;
  bottom: -80px;
  width: 320px;
  margin: auto;
  left: 0;
  right: 0;
}
@media (max-width: 767px) {
  .and {
    bottom: -40px;
    width: 160px;
  }
}

.strong-text {
  font-weight: 500;
  font-size: var(--f40);
  line-height: 180%;
  color: #000000;
  margin-bottom: 64px;
}
.strong-text strong {
  background: -webkit-gradient(linear, left top, right top, from(#e60000), to(#c00000));
  background: -webkit-linear-gradient(left, #e60000 0%, #c00000 100%);
  background: linear-gradient(90deg, #e60000 0%, #c00000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.strong-text img {
  width: 800px;
  max-width: 100%;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.why {
  background: url(../img/back-why.webp);
  background-size: cover;
  background-position: right;
}
.why__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  margin-bottom: 64px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 767px) {
  .why__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 32px;
    gap: 16px;
  }
}
.why__list .box {
  width: 50%;
}
@media (max-width: 767px) {
  .why__list .box {
    width: 100%;
  }
}
.why__list .box.box2 {
  width: 720px;
  max-width: 100%;
}

.flow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(38.24%, rgba(252, 225, 162, 0.5)), color-stop(72.22%, rgba(225, 189, 60, 0.5)));
  background: -webkit-linear-gradient(top, rgba(252, 225, 162, 0.5) 38.24%, rgba(225, 189, 60, 0.5) 72.22%);
  background: linear-gradient(180deg, rgba(252, 225, 162, 0.5) 38.24%, rgba(225, 189, 60, 0.5) 72.22%);
}

.w90 {
  width: 90%;
}

.inner2 {
  width: 640px;
  max-width: 100%;
}

.contact h2 {
  font-weight: 700;
  font-size: var(--f48);
  line-height: 120%;
  text-align: center;
  color: #000000;
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  .contact h2 {
    font-size: var(--f28);
  }
  .contact h2 svg {
    width: 72px;
  }
}

.sp-only {
  display: none;
}
@media (max-width: 767px) {
  .sp-only {
    display: block;
  }
}

.model-box {
  background: #fff;
  padding: 24px;
}
.model-box h3 {
  font-size: var(--f40);
  font-weight: 600;
}/*# sourceMappingURL=style.css.map */