/* Initial Setup */
/* CSS Document */
/*
  ------------------------------------
  ####################################
   #Common style
  ####################################
  ------------------------------------
*/
/* Reset */
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;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* clearfix */
.clearfix {
  overflow: hidden;
}

.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

* html .clearfix {
  zoom: 1;
}

*:first-child + html .clearfix {
  zoom: 1;
}

* {
  box-sizing: border-box;
  word-break: break-word;
  font-family: "YakuHanJP", sans-serif;
}

html {
  background: #fff;
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  line-height: 1.6;
  font-size: 1.4rem;
  color: #222222;
  letter-spacing: 1px;
  touch-action: manipulation;
  touch-action: pan-x pan-y;
}
body.is-hidden {
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  body {
    min-width: inherit;
    width: 100%;
  }
}

.error {
  color: red;
  margin: 10px 0;
}

.wrap {
  overflow: hidden;
  width: 100%;
  transition: opacity 0.3s;
}
.wrap.js-load {
  opacity: 1;
}

.single-head {
  width: 100%;
  transition: opacity 0.3s;
}
.single-head.js-load {
  opacity: 1;
}

a {
  text-decoration: none;
  color: #222222;
  transition: 0.3s opacity;
}
a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
}

small {
  font-size: 85%;
}

.no_post {
  text-align: center;
  width: 100%;
}

.is-pc {
  display: block;
}

.is-pc-flex {
  display: flex;
}

.is-pc-ib {
  display: inline-block;
}

.is-sp,
.is-sp-flex,
.is-sp-flex,
.is-sp-ib {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .is-sp {
    display: block !important;
  }
  .is-sp-flex {
    display: flex !important;
  }
  .is-sp-ib {
    display: inline-block !important;
  }
  .is-pc,
  .is-pc-flex,
  .is-pc-ib {
    display: none !important;
  }
}
#wpadminbar {
  position: fixed !important;
}

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: none;
  font-style: normal;
  text-align: left;
  zoom: 1;
  box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

table {
  border-collapse: collapse;
  font-family: inherit;
}

h1,
h2,
h3,
h4,
h5 {
  font-size: 100%;
  font-weight: normal;
  line-height: 1;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: 16px;
}

input[type=button],
input[type=text],
input[type=submit] {
  border-radius: 0;
}

textarea {
  resize: none;
  border-radius: 0;
}

th,
td {
  border-collapse: collapse;
}

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

img {
  vertical-align: text-bottom;
  vertical-align: -webkit-baseline-middle;
  max-width: 100%;
  height: auto;
  width: auto;
}

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

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

::-webkit-scrollbar-track {
  background-color: #ccc;
}

::-webkit-scrollbar-thumb {
  background-color: #c39731;
}

* {
  box-sizing: border-box;
}

/* Layout Components */
.footer {
  background: var(--color-white, #FFF);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  padding: 80px 32px 44px;
  border-top: 1px solid var(--color-gray, #E5E5E5);
}
@media (max-width: 425px) {
  .footer {
    padding: 80px 24px 44px;
  }
}
.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 120px;
  width: 100%;
  max-width: 1400px;
}
.footer .footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 768px) {
  .footer .footer-content {
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .footer .footer-content.type2 {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
  }
}
.footer .footer-content--logo {
  width: 100%;
  max-width: 130px;
}
.footer .footer-content--linkbox {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer .footer-content--linkbox--linkrow {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.footer .footer-content--linkbox--linkrow--text {
  color: #666666;
  font-size: 16px;
  font-weight: 700;
}
.footer .footer-content--linkbox--linkrow--text:hover {
  color: rgb(255, 15, 107);
}
.footer .footer-content .copyright {
  color: var(--color-primary, #182346);
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 768px) {
  .footer .footer-content .copyright {
    margin-top: 20px;
  }
}
.footer .footer-content .icon-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .footer .footer-content .icon-logo {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
}
.footer .footer-content .icon-logo img {
  width: 100%;
  max-width: 133px;
}
.footer .footer-content .icon-logo .sub-text {
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 16px */
  letter-spacing: 0.5px;
}
.footer--linkbox {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 3px 40px 3px 30px;
  position: relative;
}
@media (max-width: 768px) {
  .footer--linkbox {
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 20px;
  }
}
@media (max-width: 425px) {
  .footer--linkbox {
    padding: 3px 0px 3px 24px;
  }
}
.footer--linkbox .link {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 30px;
}
.footer--linkbox .link .text {
  color: var(--color-primary, #182346);
  font-family: "YakuHanJP", "Noto Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 14px */
  letter-spacing: 1.4px;
  position: relative;
  width: 100%;
  text-align: center;
  transition: 0.3s;
  text-wrap: nowrap;
}
.footer--linkbox .link .hover {
  color: var(--color-primary, #182346);
  font-family: "YakuHanJP", "Noto Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 14px */
  letter-spacing: 1.4px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 30px);
  width: 100%;
  text-align: center;
  transition: 0.3s;
  text-wrap: nowrap;
}
.footer--linkbox .link:hover .text {
  transition: 0.3s;
  transform: translate(0%, -50px);
}
.footer--linkbox .link:hover .hover {
  transition: 0.3s;
  transform: translate(-50%, -50%);
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: fixed;
  z-index: 2000;
  background: rgba(255, 255, 255, 0);
  padding: 0px 2%;
  height: 90px;
  transition: 0.3s;
}
@media (max-width: 1024px) {
  .header {
    height: 70px;
  }
}
.header.active {
  background: #ffffff;
  transition: 0.3s;
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.05);
}
.header--logo {
  padding-left: 20px;
  display: flex;
  align-items: center;
  gap: 6%;
}
@media (max-width: 425px) {
  .header--logo {
    position: absolute;
    top: 15px;
    left: 0px;
    z-index: 1000;
  }
}
.header--logo img {
  min-width: 130px;
}
.header--logo .link {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 30px;
  width: 240px;
}
@media (max-width: 1024px) {
  .header--logo .link {
    display: none;
  }
}
.header--logo .link .text {
  color: var(--color-primary, #182346);
  font-family: "YakuHanJP", "Noto Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 14px */
  letter-spacing: 1.4px;
  position: relative;
  width: 100%;
  text-align: center;
  transition: 0.3s;
  text-wrap: nowrap;
}
.header--linkbox {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 3px 40px 3px 30px;
  position: relative;
}
@media (max-width: 1024px) {
  .header--linkbox {
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    z-index: 999;
    right: -100%;
    top: 0;
    height: 100%;
    width: 400px;
    padding: 100px 40px 3px 30px;
    transition: 0.3s;
    background: var(--color-background_1, #FFF);
    overflow: scroll;
  }
}
@media (max-width: 425px) {
  .header--linkbox {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .header--linkbox.open {
    right: 0%;
    transition: 0.3s;
  }
}
.header--linkbox .link {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 30px;
}
@media (max-width: 1024px) {
  .header--linkbox .link {
    align-items: flex-start;
    gap: 16px;
    height: auto;
    overflow: visible;
  }
}
.header--linkbox .link .text {
  color: var(--color-primary, #182346);
  font-family: "YakuHanJP", "Noto Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 14px */
  letter-spacing: 1.4px;
  position: relative;
  width: 100%;
  text-align: center;
  transition: 0.3s;
  text-wrap: nowrap;
}
@media (max-width: 1024px) {
  .header--linkbox .link .text {
    text-align: left;
    font-size: 24px;
  }
}
.header--linkbox .link .hover {
  color: var(--color-primary, #182346);
  font-family: "YakuHanJP", "Noto Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 14px */
  letter-spacing: 1.4px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 30px);
  width: 100%;
  text-align: center;
  transition: 0.3s;
  text-wrap: nowrap;
}
@media (max-width: 1024px) {
  .header--linkbox .link .hover {
    display: none;
  }
}
@media (min-width: 1024px) {
  .header--linkbox .link:hover .text {
    transition: 0.3s;
    transform: translate(0%, -50px);
  }
  .header--linkbox .link:hover .hover {
    transition: 0.3s;
    transform: translate(-50%, -50%);
  }
}
.header--linkbox .link .sp {
  display: none;
}
@media (max-width: 1024px) {
  .header--linkbox .link .sp {
    display: block;
    font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
    font-weight: 500;
    color: var(--color-primary, #182346);
  }
}
.header--linkbox .header-button {
  display: flex;
}
@media (max-width: 1024px) {
  .header--linkbox .header-button {
    display: none;
  }
}
.header--linkbox .Entry--cardbox {
  display: none;
}
@media (max-width: 1024px) {
  .header--linkbox .Entry--cardbox {
    display: flex;
    flex-direction: column;
  }
}
.header--linkbox .Entry--cardbox .Entry-card {
  padding: 20px;
  min-height: auto;
}
.header--linkbox .Entry--cardbox .Entry-card .card-title .title {
  font-size: 24px;
}
.header--linkbox .Entry--cardbox .Entry-card .card-title .sub-title {
  font-size: 16px;
}
.header--linkbox .copyright {
  display: none;
}
@media (max-width: 1024px) {
  .header--linkbox .copyright {
    display: block;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 100%;
    text-align: center;
    margin-top: 40px;
  }
}

.SP-header {
  display: none;
}
@media (max-width: 1024px) {
  .SP-header {
    position: fixed;
    width: 18px;
    height: 18px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    top: 25px;
    right: 25px;
    z-index: 2100;
  }
  .SP-header span {
    width: 100%;
    height: 2px;
    min-height: 2px;
    background-color: #333333;
    display: block;
    transition: 0.3s;
  }
  .SP-header.open {
    z-index: 2101;
  }
  .SP-header.open .line1 {
    rotate: 45deg;
    transition: 0.3s;
    transform: translate(6px, 5px);
    background-color: #666666;
  }
  .SP-header.open .line2 {
    width: 0;
    transition: 0.3s;
    background-color: #666666;
  }
  .SP-header.open .line3 {
    rotate: -45deg;
    transition: 0.3s;
    transform: translate(0px, 1px);
    background-color: #666666;
  }
}

.main {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
}
.main .max600 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  max-width: 780px;
}
@media screen and (max-width: 768px) {
  .main .max600 {
    max-width: 100%;
  }
}
.main .max600 img {
  width: 100%;
}
.main .max600 .button-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  padding: 30px 20px;
}
.main .max600 .button-box__title {
  margin-bottom: 6px;
}
.main .max600 .button-box__sub {
  max-width: 480px;
  margin-bottom: 16px;
}
.main .max600 .button-box__cont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 20px;
  position: relative;
  z-index: 2;
}
.main .max600 .button-box__cont__img {
  width: 100%;
}
.main .max600 .button-box__cont.line {
  width: 44%;
  height: 128px;
}
.main .max600 .button-box__cont.tel {
  width: 54%;
  height: 128px;
}
.main .max600 .policy {
  background-color: #333333;
  width: 100%;
  padding-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 170px;
}
@media screen and (max-width: 768px) {
  .main .max600 .policy {
    margin-bottom: 140px;
  }
}
@media screen and (max-width: 425px) {
  .main .max600 .policy {
    margin-bottom: 100px;
  }
}
.main .max600 .policy__title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 16px;
  padding: 25px 0 0;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .main .max600 .policy__title {
    font-size: 14px;
  }
}
.main .max600 .policy .cont-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 780px;
}
.main .max600 .policy .cont-box .policy-btn {
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .main .max600 .policy .cont-box .policy-btn {
    font-size: 14px;
  }
}
.main .max600 .stickyblock {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 780px;
  height: 26vw;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 100;
  max-width: 100%;
  padding: 0 20px 0px;
  max-height: 200px;
}
.main .max600 .stickyblock .stickyback {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 425px) {
  .main .max600 .stickyblock .button-box__cont {
    margin-bottom: 5px;
  }
}
.main .max600 .area {
  width: 100%;
  max-width: 780px;
}
.main .max600 .area__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 780px;
  background-color: #EFEFEF;
  padding: 25px 24px 36px;
}
.main .max600 .area__container .titlebox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0px 0 25px;
}
.main .max600 .area__container .titlebox__textbox {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.main .max600 .area__container .titlebox__textbox .text {
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 64px;
  font-weight: 900;
  color: #333333;
  letter-spacing: 0;
  line-height: 100%;
  text-wrap: nowrap;
  position: relative;
  z-index: 1;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .main .max600 .area__container .titlebox__textbox .text {
    font-size: 32px;
    height: 60px;
  }
}
.main .max600 .area__container .titlebox__textbox .text .area-text {
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 120px;
  font-weight: 700;
  color: #E4E4E4;
  letter-spacing: 0;
  line-height: 100%;
  text-wrap: nowrap;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .main .max600 .area__container .titlebox__textbox .text .area-text {
    font-size: 70px;
  }
}
.main .max600 .area__container .mapbox {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.main .max600 .area__container .mapbox__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 1px solid #555555;
  padding: 17px 15px 13px;
  background-color: #fff;
  border-radius: 11px;
}
.main .max600 .area__container .mapbox__box .prefecture {
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 100%;
  letter-spacing: 0;
  color: #555555;
}
@media screen and (max-width: 768px) {
  .main .max600 .area__container .mapbox__box .prefecture {
    font-size: 20px;
  }
}
.main .max600 .area__container .mapbox__box .line {
  width: 100%;
  height: 1px;
  background-color: #555555;
  margin: 11px 0 10px 0;
}
.main .max600 .area__container .mapbox__box .city-list {
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 180%;
  letter-spacing: 0;
  color: #555555;
}
@media screen and (max-width: 768px) {
  .main .max600 .area__container .mapbox__box .city-list {
    font-size: 14px;
  }
}
.main .max600 .area .comments {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  width: 100%;
  padding: 50px 24px 40px;
  background-color: #FDF2BB;
}
.main .max600 .area .comments__titlebox {
  display: flex;
  align-items: center;
  justify-content: center;
}
.main .max600 .area .comments__titlebox .text {
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 64px;
  font-weight: 900;
  color: #333333;
  letter-spacing: 0;
  line-height: 100%;
  text-wrap: nowrap;
  position: relative;
  z-index: 1;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .main .max600 .area .comments__titlebox .text {
    font-size: 32px;
    height: 60px;
  }
}
.main .max600 .area .comments__titlebox .text .area-text {
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 120px;
  font-weight: 700;
  color: #F8EBAA;
  letter-spacing: 0;
  line-height: 100%;
  text-wrap: nowrap;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .main .max600 .area .comments__titlebox .text .area-text {
    font-size: 70px;
  }
}
.main .max600 .area .comments__listbox {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.main .max600 .area .comments__listbox .contbox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background-color: #FFFFFF;
  border: 2px solid #F99A03;
  border-radius: 11px;
  padding: 24px 20px 20px 22px;
}
@media screen and (max-width: 768px) {
  .main .max600 .area .comments__listbox .contbox {
    flex-direction: column;
  }
}
.main .max600 .area .comments__listbox .contbox__left-cont {
  width: 100%;
  max-width: 108px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.main .max600 .area .comments__listbox .contbox__left-cont .img-cont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.main .max600 .area .comments__listbox .contbox__left-cont .img-cont .img1 {
  width: 100%;
  max-width: 108px;
}
.main .max600 .area .comments__listbox .contbox__left-cont .img-cont .img2 {
  width: 100%;
  max-width: 94px;
}
.main .max600 .area .comments__listbox .contbox__left-cont .img-cont .img3 {
  width: 100%;
  max-width: 107px;
}
.main .max600 .area .comments__listbox .contbox__left-cont .name {
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  letter-spacing: 0;
  line-height: 140%;
}
.main .max600 .area .comments__listbox .contbox__text {
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 18px;
  line-height: 180%;
  font-weight: 500;
  color: #000000;
  letter-spacing: 0;
}
.main .max600 .features {
  width: 100%;
  padding: 34px 24px 26px;
  background-color: #FAE403;
}
.main .max600 .features__title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}
.main .max600 .features__title-text {
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 30px;
  font-weight: 900;
  color: #333333;
  line-height: 140%;
  margin: 0;
  text-align: center;
  position: relative;
  height: 120px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .main .max600 .features__title-text {
    font-size: 22px;
    height: 60px;
  }
}
.main .max600 .features__title-text__bigspan {
  font-size: 70px;
  font-weight: 900;
  color: #333333;
  line-height: 100%;
}
@media screen and (max-width: 768px) {
  .main .max600 .features__title-text__bigspan {
    font-size: 40px;
  }
}
.main .max600 .features__title-text__smallspan {
  font-size: 54px;
  font-weight: 900;
  color: #333333;
  line-height: 100%;
}
@media screen and (max-width: 768px) {
  .main .max600 .features__title-text__smallspan {
    font-size: 30px;
  }
}
.main .max600 .features__title-bg {
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 120px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.35);
  line-height: 100%;
  z-index: 1;
  text-wrap: nowrap;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media screen and (max-width: 768px) {
  .main .max600 .features__title-bg {
    font-size: 70px;
  }
}
.main .max600 .features__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.main .max600 .features__card {
  width: 100%;
  background-color: #FFFFFF;
  border: 1px solid #D9D9D9;
  padding: 16px 16px 18px;
}
.main .max600 .features__label {
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  background-color: #F99A03;
  color: #FFFFFF;
  font-weight: 900;
  font-size: clamp(11px, 11px + (12px - 11px) * (100vw - 375px) / (780px - 375px), 12px);
  letter-spacing: 0.04em;
  line-height: 100%;
  margin-bottom: 10px;
}
.main .max600 .features__heading {
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: clamp(16px, 16px + (24px - 16px) * (100vw - 375px) / (780px - 375px), 24px);
  font-weight: 900;
  color: #000000;
  line-height: 145%;
  margin: 0 0 12px;
}
.main .max600 .features__media {
  width: 100%;
}
.main .max600 .features__image {
  width: 100%;
  display: block;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 12px;
}
.main .max600 .features__desc {
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 14px + (18px - 14px) * (100vw - 375px) / (780px - 375px), 18px);
  font-weight: 500;
  color: #333333;
  line-height: 175%;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .main .max600 .features {
    padding: 28px 20px 22px;
  }
  .main .max600 .features__br {
    display: block;
  }
  .main .max600 .features__title-text::before, .main .max600 .features__title-text::after {
    margin: 0 10px;
  }
}
.main .max600 .repair-flow {
  width: 100%;
  padding: 44px 24px 28px;
  background-color: #FFFFFF;
}
.main .max600 .repair-flow__title {
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: clamp(24px, 24px + (64px - 24px) * (100vw - 375px) / (780px - 375px), 64px);
  font-weight: 900;
  color: #333333;
  text-align: center;
  line-height: 120%;
  margin: 0 0 22px;
}
.main .max600 .repair-flow__list {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.main .max600 .repair-flow__item {
  width: 100%;
  display: flex;
  gap: 40px;
  padding: 18px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .main .max600 .repair-flow__item {
    gap: 20px;
  }
}
.main .max600 .repair-flow__item:not(.repair-flow__item--last) {
  border-bottom: 1px dashed #BDBDBD;
}
.main .max600 .repair-flow__item:not(.repair-flow__item--last)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  border-bottom: 1px dashed #333333;
}
.main .max600 .repair-flow__icon {
  flex: 0 0 96px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.main .max600 .repair-flow__icon img {
  width: 90px;
  max-width: 90px;
  height: auto;
}
.main .max600 .repair-flow__body {
  flex: 1 1 auto;
  padding-top: 4px;
}
.main .max600 .repair-flow__heading {
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: clamp(18px, 18px + (26px - 18px) * (100vw - 375px) / (780px - 375px), 26px);
  font-weight: 900;
  color: #000000;
  line-height: 130%;
  margin: 0 0 8px;
}
.main .max600 .repair-flow__text {
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 14px + (18px - 14px) * (100vw - 375px) / (780px - 375px), 18px);
  font-weight: 500;
  color: #333333;
  line-height: 170%;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .main .max600 .repair-flow {
    padding: 32px 20px 22px;
  }
  .main .max600 .repair-flow__icon {
    flex-basis: 82px;
  }
  .main .max600 .repair-flow__icon img {
    width: 82px;
    max-width: 82px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .main .max600 .repair-flow__icon img {
    width: 70px;
    max-width: 70px;
  }
}
.main .max600 .faq {
  width: 100%;
  padding: 40px 24px 44px;
  background-color: #FAE403;
}
.main .max600 .faq__title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
  color: #333333;
}
.main .max600 .faq__title-text {
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 64px;
  font-weight: 900;
  font-weight: 900;
  color: #333333;
  line-height: 110%;
  margin: 0;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .main .max600 .faq__title-text {
    font-size: 32px;
    height: 60px;
  }
}
.main .max600 .faq__title-bg {
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 120px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.35);
  line-height: 100%;
  z-index: 1;
  text-wrap: nowrap;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media screen and (max-width: 768px) {
  .main .max600 .faq__title-bg {
    font-size: 70px;
  }
}
.main .max600 .faq__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.main .max600 .faq__item {
  width: 100%;
  background-color: #FFFFFF;
  border: 2px solid #000000;
}
.main .max600 .faq__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background-color: #333333;
  padding: 18px 18px 16px;
}
.main .max600 .faq__row:first-child {
  margin-bottom: 10px;
}
.main .max600 .faq__row.--answer {
  background-color: #ffffff;
}
.main .max600 .faq__label {
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: clamp(18px, 18px + (24px - 18px) * (100vw - 375px) / (780px - 375px), 24px);
  line-height: 120%;
  flex: 0 0 auto;
}
.main .max600 .faq__label--q {
  color: #ffffff;
}
.main .max600 .faq__label--a {
  color: #EF0017;
}
.main .max600 .faq__question {
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 14px + (16px - 14px) * (100vw - 375px) / (780px - 375px), 16px);
  font-weight: 900;
  color: #ffffff;
  line-height: 160%;
  margin: 0;
}
.main .max600 .faq__answer {
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 14px + (16px - 14px) * (100vw - 375px) / (780px - 375px), 16px);
  font-weight: 500;
  color: #333333;
  line-height: 170%;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .main .max600 .faq {
    padding: 30px 20px 36px;
  }
  .main .max600 .faq__item {
    padding: 16px 16px 14px;
  }
}

/* NOTE: unused layout/modules removed to keep CSS lean *//*# sourceMappingURL=app.css.map */