:root {
  --primary: #de4444;
  --black: #000;
  --white: #fff;
  --orange: #e25b31;
  --orangelight: #d15b31;
  --gray: #C0C0C0;
  --graydark: #828282;
}

/*!
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

html {
  position: relative;
  font-size: 62.5%;
  min-height: 100%;
  min-width: 320px;
  font-weight: 400;
  height: -webkit-fill-available;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  margin: 0 auto;
  color: var(--text);
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  body {
    font-size: 15px;
    min-width: 1280px;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 4vw;
  }
}

*, *::before, *::after {
  box-sizing: border-box;
}

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

a {
  text-decoration: none;
  color: var(--text);
  transition: opacity 0.4s ease, color 0.4s ease, border 0.4s ease;
}

a:hover {
  opacity: 0.7;
}

body, tooltip, popover {
  font-family: "Noto Sans JP", sans-serif;
}

code, kbd, pre, samp {
  font-family: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.invisible {
  opacity: 0;
}

.animated {
  animation-timing-function: ease;
  animation-duration: 0.5s;
  animation-fill-mode: both;
}

.anime-delay-1 {
  animation-delay: 0.3s;
}

.anime-delay-2 {
  animation-delay: 0.6s;
}

.anime-delay-3 {
  animation-delay: 0.9s;
}

.anime-delay-4 {
  animation-delay: 1.2s;
}

.anime-delay-5 {
  animation-delay: 1.5s;
}

.anime-delay-6 {
  animation-delay: 1.8s;
}

.fadeIn {
  animation-name: fadeIn;
}

.fadeInUp {
  animation-name: fadeInUp;
}

.fadeInDown {
  animation-name: fadeInDown;
}

.fadeInLeft {
  animation-name: fadeInLeft;
}

.fadeInRight {
  animation-name: fadeInRight;
}

.fadeOut {
  animation-name: fadeOut;
}

.fadeOutUp {
  animation-name: fadeOutUp;
}

.fadeOutDown {
  animation-name: fadeOutDown;
}

.fadeOutLeft {
  animation-name: fadeOutLeft;
}

.fadeOutRight {
  animation-name: fadeOutRi;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(100px);
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateX(-100px);
  }
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateX(100px);
  }
}

.header {
  position: relative;
}

.header_logo {
  position: absolute;
}

@media screen and (min-width: 768px) {
  .header_logo {
    top: 30px;
    left: 30px;
    width: 74px;
  }
}

@media screen and (max-width: 767px) {
  .header_logo {
    top: 2.6666666667vw;
    left: 4vw;
    width: 11.84vw;
  }
}

.header_logo img {
  width: 100%;
}

.hamburger {
  z-index: 10000;
  position: fixed;
  top: 0;
  display: flex;
  align-items: center;
  transition: all 0.5s;
  font-feature-settings: "palt";
  background-color: rgba(255, 255, 255, 0.97);
}

@media screen and (min-width: 768px) {
  .hamburger {
    left: 100%;
    flex-flow: row-reverse;
  }
}

@media screen and (max-width: 767px) {
  .hamburger {
    overflow: auto;
    right: -110vw;
    flex-flow: column;
    width: 100vw;
    height: 100vh;
  }
}

.hamburger._show {
  display: flex;
  transition: all 0.5s;
}

@media screen and (min-width: 768px) {
  .hamburger._show {
    transform: translateX(-100%);
  }
}

@media screen and (max-width: 767px) {
  .hamburger._show {
    right: 0;
  }
}

@media screen and (min-width: 768px) {
  .hamburger ul {
    position: relative;
    display: flex;
    flex-flow: column;
    justify-content: center;
    width: 232px;
    height: 100vh;
  }
}

@media screen and (max-width: 767px) {
  .hamburger ul {
    width: 56.24vw;
    margin-top: 25.8666666667vw;
  }
}

@media screen and (max-width: 767px) {
  .hamburger li:nth-of-type(n):not(:first-of-type) {
    margin-bottom: 10.6666666667vw;
  }
}

.hamburger li:nth-of-type(n):not(:first-of-type)::before {
  content: "-";
  position: absolute;
  display: block;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .hamburger li:nth-of-type(n):not(:first-of-type)::before {
    left: -15px;
  }
}

@media screen and (max-width: 767px) {
  .hamburger li:nth-of-type(n):not(:first-of-type)::before {
    left: -4.2666666667vw;
  }
}

@media screen and (min-width: 768px) {
  .hamburger li:nth-of-type(n):not(:last-of-type) {
    margin-bottom: 30px;
  }
}

.hamburger_text {
  position: relative;
}

@media screen and (min-width: 768px) {
  .hamburger_text {
    margin-left: 45px;
    font-size: 14px;
    font-weight: 500;
  }
}

@media screen and (max-width: 767px) {
  .hamburger_text {
    margin-left: 4.9066666667vw;
    font-size: 4.8vw;
    font-weight: 700;
  }
}

.hamburger_text-large {
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
  .hamburger_text-large {
    margin-left: 30px;
    font-size: 16px;
    font-weight: 700;
  }
}

@media screen and (max-width: 767px) {
  .hamburger_text-large {
    margin-left: 0;
    margin-bottom: 6.6666666667vw;
  }
}

@media screen and (min-width: 768px) {
  .hamburger_inquiry {
    position: absolute;
    top: 40%;
    left: 0;
    transform: translateX(-99%);
  }
}

@media screen and (max-width: 767px) {
  .hamburger_inquiry {
    margin: 2.6666666667vw 0 25.8666666667vw;
  }
}

.hamburger_inquiry a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-weight: 900;
  background-color: var(--orange);
}

@media screen and (min-width: 768px) {
  .hamburger_inquiry a {
    width: 49.5px;
    height: 220px;
    border-radius: 10px 0 0 10px;
    font-size: 18px;
    writing-mode: vertical-rl;
  }
}

@media screen and (max-width: 767px) {
  .hamburger_inquiry a {
    width: 80vw;
    height: 16vw;
    border-radius: 1.6vw;
    font-size: 5.3333333333vw;
  }
}

.hamburger_inquiry a::after {
  font-family: "Material Icons Round";
  content: "\e5cc";
  position: absolute;
  display: block;
  color: var(--white);
}

@media screen and (min-width: 768px) {
  .hamburger_inquiry a::after {
    bottom: 12px;
    font-size: 30px;
  }
}

@media screen and (max-width: 767px) {
  .hamburger_inquiry a::after {
    top: 50%;
    transform: translateY(-50%);
    right: 2.6666666667vw;
    font-size: 8vw;
  }
}

.hamburger_button {
  z-index: 100000;
  position: fixed;
  border: none;
  background-color: transparent;
}

@media screen and (min-width: 768px) {
  .hamburger_button {
    top: 30px;
    right: 20px;
    width: 62px;
    height: 32px;
  }
}

@media screen and (max-width: 767px) {
  .hamburger_button {
    top: 3.2vw;
    right: 3.7333333333vw;
    width: 11.7333333333vw;
    height: 6.1333333333vw;
  }
}

.hamburger_button._active span::before {
  transform: rotate(20deg);
}

@media screen and (min-width: 768px) {
  .hamburger_button._active span::before {
    top: 0px;
  }
}

@media screen and (max-width: 767px) {
  .hamburger_button._active span::before {
    top: 0vw;
  }
}

.hamburger_button._active span::after {
  transform: rotate(-20deg);
}

@media screen and (min-width: 768px) {
  .hamburger_button._active span::after {
    top: 0px;
  }
}

@media screen and (max-width: 767px) {
  .hamburger_button._active span::after {
    top: 0vw;
  }
}

.hamburger_button span {
  position: relative;
  display: block;
}

.hamburger_button span::before {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  transition: all 0.5s;
}

@media screen and (min-width: 768px) {
  .hamburger_button span::before {
    top: -10px;
    width: 50px;
    border-bottom: solid 3px #88888a;
  }
}

@media screen and (max-width: 767px) {
  .hamburger_button span::before {
    top: -2.1333333333vw;
    width: 10.1333333333vw;
    border-bottom: solid 0.8vw #88888a;
  }
}

.hamburger_button span::after {
  content: "";
  position: absolute;
  left: 0;
  transition: all 0.5s;
}

@media screen and (min-width: 768px) {
  .hamburger_button span::after {
    top: 3px;
    width: 50px;
    border-bottom: solid 3px #88888a;
  }
}

@media screen and (max-width: 767px) {
  .hamburger_button span::after {
    top: 1.3333333333vw;
    width: 10.1333333333vw;
    border-bottom: solid 0.8vw #88888a;
  }
}

.footer {
  position: relative;
  display: flex;
  background-color: #c8c8c8;
}

@media screen and (min-width: 768px) {
  .footer {
    justify-content: center;
    padding: 60px 0;
  }
}

@media screen and (max-width: 767px) {
  .footer {
    flex-flow: column-reverse;
    padding: 6.1333333333vw 6.6666666667vw;
  }
}

@media screen and (min-width: 768px) {
  .footer_content {
    width: 640px;
    padding-left: 80px;
    border-right: solid 1px #ababab;
  }
}

@media screen and (max-width: 767px) {
  .footer_content {
    padding-top: 6.1333333333vw;
    border-top: solid 0.2666666667vw #ababab;
  }
}

.footer_item {
  display: flex;
}

@media screen and (min-width: 768px) {
  .footer_item {
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 767px) {
  .footer_item {
    margin-bottom: 8vw;
  }
}

@media screen and (min-width: 768px) {
  .footer_logo {
    width: 74px;
    margin-right: 35px;
  }
}

@media screen and (max-width: 767px) {
  .footer_logo {
    width: 26.6666666667vw;
    margin-right: 9.3333333333vw;
  }
}

@media screen and (min-width: 768px) {
  .footer_information {
    margin-top: 25px;
  }
}

.footer_telephone a {
  cursor: text;
}

.footer_telephone a:hover {
  opacity: 1;
}

.footer_fax {
  cursor: text;
}

@media screen and (max-width: 767px) {
  .footer_fax {
    cursor: text;
    pointer-events: none;
  }
}

.footer_banner {
  display: block;
}

@media screen and (min-width: 768px) {
  .footer_banner {
    width: 210px;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 767px) {
  .footer_banner {
    width: 74.6666666667vw;
    margin: 0 auto 8vw;
  }
}

.footer_company {
  font-weight: 700;
}

.footer_navigation {
  font-feature-settings: "palt";
}

@media screen and (min-width: 768px) {
  .footer_navigation {
    width: 640px;
    padding-left: 80px;
  }
}

@media screen and (min-width: 768px) {
  .footer_navigation ul {
    display: flex;
    flex-flow: column;
    flex-wrap: wrap;
    height: 180px;
  }
}

.footer_navigation li:nth-of-type(n):not(:first-of-type) {
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .footer_navigation li:nth-of-type(n):not(:first-of-type) {
    margin-left: 20px;
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .footer_navigation li:nth-of-type(n):not(:first-of-type) {
    margin-left: 8vw;
    font-size: 3.7333333333vw;
  }
}

@media screen and (min-width: 768px) {
  .footer_navigation li:nth-of-type(n):not(:first-of-type) a {
    padding: 0 5px;
  }
}

@media screen and (max-width: 767px) {
  .footer_navigation li:nth-of-type(n):not(:first-of-type) a {
    padding: 0 1.3333333333vw;
  }
}

.footer_navigation li:nth-of-type(n):not(:first-of-type)::before {
  content: "-";
  position: absolute;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .footer_navigation li:nth-of-type(n):not(:first-of-type)::before {
    left: -10px;
  }
}

@media screen and (max-width: 767px) {
  .footer_navigation li:nth-of-type(n):not(:first-of-type)::before {
    left: -2.6666666667vw;
  }
}

.footer_navigation li:nth-of-type(1) {
  letter-spacing: 0.1em;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .footer_navigation li:nth-of-type(1) {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .footer_navigation li:nth-of-type(1) {
    font-size: 4.2666666667vw;
  }
}

@media screen and (min-width: 768px) {
  .footer_navigation li:nth-of-type(5) {
    margin-top: 43px;
  }
}

.footer_text {
  position: relative;
}

@media screen and (min-width: 768px) {
  .footer_text {
    width: 230px;
    height: 43px;
  }
}

@media screen and (max-width: 767px) {
  .footer_text {
    height: 13.3333333333vw;
  }
}

.copyright {
  color: var(--graydark);
}

@media screen and (min-width: 768px) {
  .copyright {
    font-size: 13px;
  }
}

@media screen and (max-width: 767px) {
  .copyright {
    text-align: center;
    font-size: 3.4666666667vw;
  }
}

.pagetop {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--orange);
}

@media screen and (min-width: 768px) {
  .pagetop {
    width: 80px;
    height: 80px;
  }
}

@media screen and (max-width: 767px) {
  .pagetop {
    width: 16vw;
    height: 16vw;
  }
}

.pagetop::before {
  font-family: "Material Icons Round";
  content: "\e5ce";
  position: relative;
  display: block;
  color: var(--white);
}

@media screen and (min-width: 768px) {
  .pagetop::before {
    top: -10px;
    left: 9px;
    width: 50px;
    font-size: 65px;
  }
}

@media screen and (max-width: 767px) {
  .pagetop::before {
    top: -2.1333333333vw;
    left: 1.6vw;
    width: 13.3333333333vw;
    font-size: 13.3333333333vw;
  }
}

.btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  cursor: pointer;
  transition: 0.3s;
}

@media screen and (min-width: 768px) {
  .contact {
    padding: 100px 0 0;
  }
}

@media screen and (max-width: 767px) {
  .contact {
    width: 92vw;
    margin: 0 auto;
    padding: 13.3333333333vw 0 0;
  }
}

.contact_text {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .contact_text {
    margin-bottom: -50px;
  }
}

@media screen and (max-width: 767px) {
  .contact_text {
    margin-bottom: 8vw;
  }
}

@media screen and (min-width: 768px) {
  .contact_text-active {
    margin-bottom: 50px;
  }
}

.contact_thanks {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .contact_thanks_heading {
    margin: 60px auto 50px;
    font-size: 26px;
  }
}

.contact_thanks_top {
  display: block;
  position: relative;
  color: #fff;
  background-color: #de4444;
  border: 0;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (min-width: 768px) {
  .contact_thanks_top {
    width: 280px;
    margin: 75px auto 0;
    padding: 13.5px 30px;
    border-radius: 6px;
    font-size: 16px;
    transition: 0.7s;
  }
}

@media screen and (max-width: 767px) {
  .contact_thanks_top {
    width: 80vw;
    padding: 5.3333333333vw 8vw;
    margin: 13.3333333333vw auto 0;
    border-radius: 1.6vw;
    font-size: 4.2666666667vw;
  }
}

.contact .lead {
  display: flex;
  align-items: center;
  background-color: #fcf8e8;
}

@media screen and (min-width: 768px) {
  .contact .lead {
    justify-content: space-between;
    width: 640px;
    margin: 100px auto 0;
    padding: 30px 80px;
  }
}

@media screen and (max-width: 767px) {
  .contact .lead {
    flex-direction: column;
    width: 92vw;
    margin: 18.6666666667vw auto 0;
    padding: 8vw 17.3333333333vw;
  }
}

.contact .lead_heading {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  border: solid 2px #000;
  background-color: var(--white);
}

@media screen and (min-width: 768px) {
  .contact .lead_heading {
    height: 66px;
    width: 200px;
    font-size: 24px;
  }
}

@media screen and (max-width: 767px) {
  .contact .lead_heading {
    height: 10.6666666667vw;
    width: 100%;
    margin-bottom: 4vw;
    font-size: 4.8vw;
  }
}

.contact .lead_text {
  color: #000;
}

.contact .lead_text-top {
  position: relative;
  font-weight: 900;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .contact .lead_text-top {
    text-align: end;
    font-size: 35px;
  }
}

@media screen and (max-width: 767px) {
  .contact .lead_text-top {
    font-size: 8.2666666667vw;
  }
}

.contact .lead_text-top::before {
  content: "";
  position: absolute;
  background: url("/images/form/tel_icon.svg") no-repeat center center/contain;
}

@media screen and (min-width: 768px) {
  .contact .lead_text-top::before {
    width: 19px;
    height: 31px;
    left: 2px;
    bottom: 1px;
  }
}

.contact .lead_text-bottom {
  font-weight: 700;
  border-top: solid 1px #000;
  font-feature-settings: "palt";
}

@media screen and (min-width: 768px) {
  .contact .lead_text-bottom {
    margin-top: 4px;
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .contact .lead_text-bottom {
    margin-top: 2.6666666667vw;
    padding-top: 1.3333333333vw;
    font-size: 4.2666666667vw;
  }
}

.contact_question {
  display: flex;
  position: relative;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  background-color: colors(gray, l2);
}

@media screen and (min-width: 768px) {
  .contact_question {
    width: 941px;
    margin-top: 135px;
    padding: 60px 0 30px;
    font-size: 16px;
    border-radius: 10px;
  }
}

@media screen and (max-width: 767px) {
  .contact_question {
    margin-top: 21.3333333333vw;
    padding: 13.3333333333vw 5.3333333333vw 10.6666666667vw;
    border-radius: 2.6666666667vw;
    font-size: 5.3333333333vw;
  }
}

.contact_question h3 {
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .contact_question h3 {
    margin-bottom: 25px;
    font-size: 26px;
  }
}

@media screen and (max-width: 767px) {
  .contact_question h3 {
    margin-bottom: 5.3333333333vw;
    font-size: 5.6vw;
  }
}

.contact_question div {
  position: absolute;
}

@media screen and (min-width: 768px) {
  .contact_question div {
    top: -35px;
  }
}

@media screen and (max-width: 767px) {
  .contact_question div {
    width: 13.3333333333vw;
    top: -8vw;
  }
}

@media screen and (max-width: 767px) {
  .contact_question div img {
    width: 100%;
  }
}

.hero {
  display: flex;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .hero {
    align-items: center;
    width: 100%;
    aspect-ratio: 64/35;
    background: url("/images/hero_image01.png") no-repeat center top/100%;
  }
}

@media screen and (max-width: 767px) {
  .hero {
    height: 170.6666666667vw;
    background: url("/images/hero_image01_sp.png") no-repeat center top/100%;
  }
}

@media screen and (min-width: 768px) {
  .hero_content {
    position: relative;
    width: 64.9%;
    height: 93%;
    margin-top: 45px;
  }
}

@media screen and (max-width: 767px) {
  .hero_content {
    width: 94.6666666667vw;
    margin-top: 16.8vw;
  }
}

.hero_title {
  z-index: 100;
}

@media screen and (min-width: 768px) {
  .hero_title {
    position: absolute;
    top: 0;
    left: center;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .hero_title {
    width: 80.4vw;
    margin: 1.8666666667vw auto 0;
  }
}

.hero_title img {
  width: 100%;
}

.hero_image {
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .hero_image {
    position: absolute;
    top: -26px;
    left: 50%;
    transform: translateX(-50%);
    width: 83.1%;
  }
}

@media screen and (max-width: 767px) {
  .hero_image {
    margin-top: 8vw;
  }
}

.hero_image img {
  width: 100%;
}

.hero_caption {
  z-index: 100;
}

@media screen and (min-width: 768px) {
  .hero_caption {
    position: absolute;
    top: 87%;
    left: 50%;
    width: 77%;
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 767px) {
  .hero_caption {
    width: 77.3333333333vw;
    margin: 2.6666666667vw auto 0;
  }
}

.hero_caption img {
  width: 100%;
}

.container {
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .container {
    width: 1120px;
    padding: 120px 0;
  }
}

@media screen and (max-width: 767px) {
  .container {
    width: 92vw;
    padding: 32vw 0;
  }
}

.container_usersVoice {
  width: 100%;
}

.container_title {
  color: var(--orange);
  text-align: center;
  font-feature-settings: "palt";
}

@media screen and (min-width: 768px) {
  .container_title {
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .container_title {
    font-size: 4.2666666667vw;
  }
}

.container_title span {
  display: flex;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .container_title span {
    justify-content: center;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 767px) {
  .container_title span {
    margin-bottom: 4vw;
  }
}

@media screen and (min-width: 768px) {
  .container_title-whatIs span {
    width: 191px;
  }
}

@media screen and (max-width: 767px) {
  .container_title-whatIs span {
    width: 43.68vw;
  }
}

@media screen and (min-width: 768px) {
  .container_title-merit span {
    width: 140.7808px;
  }
}

@media screen and (max-width: 767px) {
  .container_title-merit span {
    width: 31.68vw;
  }
}

@media screen and (min-width: 768px) {
  .container_title-usersVoice span {
    width: 270px;
  }
}

@media screen and (max-width: 767px) {
  .container_title-usersVoice span {
    width: 63.7333333333vw;
  }
}

@media screen and (min-width: 768px) {
  .container_title-criterion span {
    width: 200px;
  }
}

@media screen and (max-width: 767px) {
  .container_title-criterion span {
    width: 45.8666666667vw;
  }
}

@media screen and (min-width: 768px) {
  .container_title-howToUse span {
    width: 241px;
  }
}

@media screen and (max-width: 767px) {
  .container_title-howToUse span {
    width: 49.0666666667vw;
  }
}

@media screen and (min-width: 768px) {
  .cardIcon {
    width: 520px;
  }
}

@media screen and (min-width: 768px) {
  .cardIcon_image {
    width: 100px;
  }
}

.pickUp_container {
  background-color: #dcdcdc;
}

@media screen and (min-width: 768px) {
  .pickUp_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1000px;
    margin-top: 100px;
    padding: 50px 48px;
  }
}

@media screen and (max-width: 767px) {
  .pickUp_container {
    margin-top: 16vw;
    padding: 0 2.6666666667vw 5.3333333333vw;
  }
}

@media screen and (min-width: 768px) {
  .pickUp_content {
    height: 134px;
    display: flex;
    align-items: flex-end;
  }
}

@media screen and (max-width: 767px) {
  .pickUp_content {
    padding-top: 4.8vw;
  }
}

.pickUp_title {
  position: relative;
  text-align: center;
  display: flex;
  flex-flow: column;
  color: var(--orange);
}

@media screen and (min-width: 768px) {
  .pickUp_title {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .pickUp_title {
    font-size: 4.2666666667vw;
    margin-bottom: 7.4666666667vw;
  }
}

.pickUp_title em {
  font-style: normal;
  font-weight: 700;
  color: var(--black);
}

@media screen and (min-width: 768px) {
  .pickUp_title em {
    font-size: 42px;
  }
}

@media screen and (max-width: 767px) {
  .pickUp_title em {
    font-size: 8.5333333333vw;
    padding-left: 14.6666666667vw;
  }
}

.pickUp_title::before {
  content: "!";
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  line-height: 1.2em;
  font-weight: 700;
  color: var(--white);
  background-color: var(--primary);
}

@media screen and (min-width: 768px) {
  .pickUp_title::before {
    top: -48px;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    font-size: 32px;
  }
}

@media screen and (max-width: 767px) {
  .pickUp_title::before {
    top: 1.7333333333vw;
    left: 24vw;
    width: 10.6666666667vw;
    height: 10.6666666667vw;
    border-radius: 5.3333333333vw;
    font-size: 8.5333333333vw;
  }
}

.pickUp_image {
  display: block;
}

@media screen and (min-width: 768px) {
  .pickUp_image:last-of-type {
    margin-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  .pickUp_image:last-of-type {
    margin-top: 2.6666666667vw;
  }
}

.pickUp_image img {
  display: block;
  width: 100%;
}

.whatIs_content {
  font-feature-settings: "palt";
}

@media screen and (min-width: 768px) {
  .whatIs_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
  }
}

@media screen and (max-width: 767px) {
  .whatIs_content {
    margin-top: 8vw;
  }
}

@media screen and (min-width: 768px) {
  .whatIs_item {
    width: 555px;
  }
}

@media screen and (max-width: 767px) {
  .whatIs_item {
    margin: 0 2.6666666667vw;
  }
}

.whatIs_title {
  font-weight: 700;
  color: var(--primary);
}

@media screen and (min-width: 768px) {
  .whatIs_title {
    margin-bottom: 40px;
    font-size: 28px;
  }
}

@media screen and (max-width: 767px) {
  .whatIs_title {
    margin-bottom: 6.6666666667vw;
    font-size: 4.8vw;
    line-height: 1.4;
  }
}

.whatIs_title em {
  font-style: normal;
}

@media screen and (min-width: 768px) {
  .whatIs_title em {
    font-size: 48px;
  }
}

@media screen and (max-width: 767px) {
  .whatIs_title em {
    font-size: 8.5333333333vw;
  }
}

.whatIs_text {
  line-height: 1.8;
}

.whatIs_text span {
  display: block;
}

@media screen and (min-width: 768px) {
  .whatIs_text span {
    margin-top: 10px;
    font-size: 13px;
  }
}

@media screen and (max-width: 767px) {
  .whatIs_text span {
    padding: 2.6666666667vw 0 4vw;
    font-size: 3.4666666667vw;
  }
}

@media screen and (min-width: 768px) {
  .whatIs_image {
    width: 535px;
  }
}

.whatIs_image img {
  width: 100%;
}

.merit {
  background-color: #fcf8e8;
}

.merit_content {
  display: flex;
  align-items: center;
  flex-flow: column-reverse;
}

@media screen and (min-width: 768px) {
  .merit_content {
    margin-top: 54px;
  }
}

@media screen and (max-width: 767px) {
  .merit_content {
    margin-top: 6.6666666667vw;
  }
}

@media screen and (min-width: 768px) {
  .merit_title {
    width: 763px;
    margin: 25px 0 120px;
  }
}

@media screen and (max-width: 767px) {
  .merit_title {
    width: 100%;
    margin: 8vw 0 9.8666666667vw;
  }
}

.merit_title img {
  width: 100%;
}

.merit_image {
  display: flex;
  justify-content: space-between;
}

@media screen and (min-width: 768px) {
  .merit_image {
    width: 960px;
  }
}

@media screen and (max-width: 767px) {
  .merit_image {
    width: 86.6666666667vw;
  }
}

@media screen and (min-width: 768px) {
  .merit_roof {
    width: 1220px;
    margin-bottom: 35px;
  }
}

@media screen and (max-width: 767px) {
  .merit_roof {
    width: 100%;
    margin-bottom: 11.2266666667vw;
  }
}

.merit_roof img {
  width: 100%;
}

.season {
  position: relative;
}

@media screen and (min-width: 768px) {
  .season {
    width: 470px;
  }
}

@media screen and (max-width: 767px) {
  .season {
    width: 42.6666666667vw;
  }
}

.season_title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (min-width: 768px) {
  .season_title {
    top: -44px;
  }
}

@media screen and (max-width: 767px) {
  .season_title {
    top: -4.5333333333vw;
  }
}

@media screen and (min-width: 768px) {
  .season_title-summer {
    width: 201.4px;
  }
}

@media screen and (max-width: 767px) {
  .season_title-summer {
    width: 28.4vw;
  }
}

@media screen and (min-width: 768px) {
  .season_title-winter {
    width: 245.7px;
  }
}

@media screen and (max-width: 767px) {
  .season_title-winter {
    width: 34.88vw;
  }
}

.season_image img {
  width: 100%;
}

.future {
  list-style: none;
}

@media screen and (min-width: 768px) {
  .future {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .future_item {
    width: 506px;
    height: 860px;
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 767px) {
  .future_item {
    width: 100%;
    margin-bottom: 16vw;
  }
}

@media screen and (max-width: 767px) {
  .future_item:nth-of-type(4) span {
    width: 42.6666666667vw;
  }
}

.future_title {
  display: flex;
  align-items: center;
  line-height: 1.3;
  font-weight: 900;
  font-feature-settings: "palt";
}

@media screen and (min-width: 768px) {
  .future_title {
    font-size: 32px;
  }
}

@media screen and (max-width: 767px) {
  .future_title {
    font-size: 6.4vw;
  }
}

.future_title span {
  display: block;
}

@media screen and (min-width: 768px) {
  .future_title span {
    width: 100px;
    margin-right: 14px;
  }
}

@media screen and (max-width: 767px) {
  .future_title span {
    width: 21.3333333333vw;
    margin-right: 2.6666666667vw;
  }
}

.future_title span img {
  width: 100%;
}

.future_inner {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
}

@media screen and (min-width: 768px) {
  .future_inner {
    margin-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  .future_inner {
    margin: 5.3333333333vw 2.6666666667vw 0 2.6666666667vw;
  }
}

@media screen and (min-width: 768px) {
  .future_text {
    width: 496px;
  }
}

.future_text-large {
  font-style: normal;
  font-weight: 700;
  font-feature-settings: "palt";
}

@media screen and (min-width: 768px) {
  .future_text-large {
    width: 220px;
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .future_text-large {
    font-size: 5.3333333333vw;
  }
}

@media screen and (min-width: 768px) {
  .future_image {
    width: 240px;
    margin: 7px 0 10px;
  }
}

@media screen and (max-width: 767px) {
  .future_image {
    width: 86.6666666667vw;
    margin: 7.4666666667vw 0 6.6666666667vw;
  }
}

.future_image img {
  width: 100%;
}

.future_graph {
  display: flex;
}

@media screen and (min-width: 768px) {
  .future_graph {
    justify-content: space-between;
    width: 496px;
    margin: 30px auto 0;
  }
}

@media screen and (max-width: 767px) {
  .future_graph {
    flex-flow: column;
    align-items: center;
    width: 86.6666666667vw;
    margin: 6.1333333333vw auto 0;
  }
}

@media screen and (min-width: 768px) {
  .future_graph-wide {
    margin-top: 77px;
  }
}

@media screen and (min-width: 768px) {
  .future_rate-small {
    width: 231 px;
    margin-top: 4px;
  }
}

@media screen and (max-width: 767px) {
  .future_rate-small {
    width: 69.3333333333vw;
    margin-bottom: 7.4666666667vw;
  }
}

@media screen and (max-width: 767px) {
  .future_rate-small img {
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .future_rate-large {
    width: 241px;
  }
}

@media screen and (max-width: 767px) {
  .future_rate-large {
    width: 86.6666666667vw;
  }
}

.future_rate-large img {
  width: 100%;
}

.choice {
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .choice {
    width: 1082px;
  }
}

@media screen and (max-width: 767px) {
  .choice {
    width: 83.4666666667vw;
  }
}

.choice img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .usersVoice {
    position: relative;
    overflow: hidden;
  }
}

@media screen and (min-width: 768px) {
  .mySwiper2 {
    position: absolute;
    top: 210px;
    left: 50%;
    transform: translateX(-50%);
    width: 2300px;
  }
}

.card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5s;
}

@media screen and (min-width: 768px) {
  .card {
    flex-flow: row-reverse;
    width: 608px;
    height: 342px;
    margin: 152px auto 15px;
    padding: 0 25px;
    border: #f1ca61 solid 4px;
    border-radius: 20px;
  }
}

@media screen and (max-width: 767px) {
  .card {
    flex-flow: column-reverse;
    width: 81.3333333333vw;
    height: 134.9333333333vw;
    margin: 8vw auto;
    padding: 6.6666666667vw;
    border: #f1ca61 solid 1.12vw;
    border-radius: 6.0266666667vw;
  }
}

@media screen and (min-width: 768px) {
  .card_content {
    width: 260px;
    height: 257px;
  }
}

@media screen and (max-width: 767px) {
  .card_content {
    height: 58.6666666667vw;
  }
}

.card_title {
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .card_title {
    font-size: 26px;
  }
}

@media screen and (max-width: 767px) {
  .card_title {
    font-size: 6.4vw;
  }
}

.card_caption {
  position: relative;
  font-weight: 700;
  color: var(--orange);
}

@media screen and (min-width: 768px) {
  .card_caption {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .card_caption {
    font-size: 4.2666666667vw;
  }
}

.card_caption::after {
  content: "";
  position: absolute;
  left: 0;
  background-color: var(--orange);
}

@media screen and (min-width: 768px) {
  .card_caption::after {
    top: 40px;
    width: 40px;
    height: 4px;
  }
}

@media screen and (max-width: 767px) {
  .card_caption::after {
    bottom: -2.6666666667vw;
    width: 10.6666666667vw;
    height: 1.0666666667vw;
  }
}

.card_text {
  font-feature-settings: "palt";
}

@media screen and (min-width: 768px) {
  .card_text {
    margin-top: 34px;
    font-size: 18px;
    line-height: 1.7;
  }
}

@media screen and (max-width: 767px) {
  .card_text {
    margin-top: 5.3333333333vw;
    font-size: 4.2666666667vw;
  }
}

.card_image {
  background-color: #d2d2d2;
}

@media screen and (min-width: 768px) {
  .card_image {
    width: 250px;
    height: 250px;
    border-radius: 125px;
  }
}

@media screen and (max-width: 767px) {
  .card_image {
    width: 53.3333333333vw;
    height: 53.3333333333vw;
    border-radius: 26.6666666667vw;
  }
}

.card_image img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .card_image img {
    height: 100%;
  }
}

@media screen and (min-width: 768px) {
  .swiper-slide-active .card {
    width: 640px;
    height: 380px;
    margin: 60px auto 0;
    padding: 0 20px;
    border: solid 4px var(--primary);
    border-radius: 20px;
  }
}

@media screen and (max-width: 767px) {
  .swiper-slide-active .card {
    border-color: var(--primary);
  }
}

@media screen and (min-width: 768px) {
  .swiper-slide-active .card_content {
    width: 288px;
    height: 257px;
  }
}

@media screen and (min-width: 768px) {
  .swiper-slide-active .card_title {
    font-size: 28px;
  }
}

@media screen and (min-width: 768px) {
  .swiper-slide-active .card_caption {
    font-size: 16px;
  }
}

@media screen and (min-width: 768px) {
  .swiper-slide-active .card_text {
    margin-top: 30px;
    font-size: 20px;
  }
}

@media screen and (min-width: 768px) {
  .swiper-slide-active .card_image {
    width: 280px;
    height: 280px;
    max-width: 280px;
    border-radius: 140px;
  }
}

.swiper-slide-active .card_image img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .swiper-slide-active .card_image img {
    height: 100%;
  }
}

.swiper-slide-thumb-active {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  .swiper-slide-thumb-active {
    border: solid 3px var(--orange);
    border-radius: 125px;
  }
}

@media screen and (max-width: 767px) {
  .swiper-slide-thumb-active {
    border: solid 0.48vw var(--orange);
    border-radius: 26.6666666667vw;
  }
}

.swiper-button-next {
  left: 50%;
  color: #bababc;
}

@media screen and (min-width: 768px) {
  .swiper-button-next {
    transform: translateX(360px);
  }
}

@media screen and (max-width: 767px) {
  .swiper-button-next {
    transform: translateX(42.1333333333vw);
  }
}

@media screen and (max-width: 767px) {
  .swiper-button-next::after {
    font-size: 7.4666666667vw;
  }
}

.swiper-button-prev {
  left: 50%;
  color: #bababc;
}

@media screen and (min-width: 768px) {
  .swiper-button-prev {
    transform: translateX(-387px);
  }
}

@media screen and (max-width: 767px) {
  .swiper-button-prev {
    transform: translateX(-48vw);
  }
}

@media screen and (max-width: 767px) {
  .swiper-button-prev::after {
    font-size: 7.4666666667vw;
  }
}

@media screen and (min-width: 768px) {
  .cardIcon {
    margin-top: 520px;
  }
}

@media screen and (max-width: 767px) {
  .cardIcon_content {
    width: 76vw;
  }
}

.cardIcon_image {
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .cardIcon_image {
    width: 100px !important;
    height: 100px !important;
    margin-right: 40px !important;
  }
}

@media screen and (max-width: 767px) {
  .cardIcon_image {
    width: 16.6666666667vw !important;
    height: 16.6666666667vw !important;
  }
}

.cardIcon_image:not(.swiper-slide-thumb-active) {
  background-color: #d2d2d2;
}

@media screen and (min-width: 768px) {
  .cardIcon_image:not(.swiper-slide-thumb-active) {
    border-radius: 125px;
  }
}

@media screen and (max-width: 767px) {
  .cardIcon_image:not(.swiper-slide-thumb-active) {
    border-radius: 8.5333333333vw;
  }
}

.cardIcon_image img {
  width: 100%;
}

.criterion {
  background-color: #ffddd3;
}

@media screen and (min-width: 768px) {
  .criterion_content {
    display: flex;
    justify-content: space-between;
  }
}

@media screen and (max-width: 767px) {
  .criterion_content {
    margin-top: 13.3333333333vw;
  }
}

.criterion_item {
  position: relative;
  background-color: var(--white);
}

@media screen and (min-width: 768px) {
  .criterion_item {
    width: 350px;
    height: 304px;
    margin: 40px 0 60px;
    border-radius: 20px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  }
}

@media screen and (max-width: 767px) {
  .criterion_item {
    width: 86.6666666667vw;
    height: 64vw;
    margin: 0 auto 9.3333333333vw;
    border-radius: 5.3333333333vw;
    box-shadow: 0 0 2.6666666667vw 0 rgba(0, 0, 0, 0.2);
  }
}

.criterion_item h4 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (min-width: 768px) {
  .criterion_item:nth-of-type(1) h4 {
    top: -27px;
    width: 265px;
  }
}

@media screen and (max-width: 767px) {
  .criterion_item:nth-of-type(1) h4 {
    top: -5.8666666667vw;
    width: 78.4266666667vw;
  }
}

@media screen and (min-width: 768px) {
  .criterion_item:nth-of-type(1) div {
    width: 197px;
    margin-top: 111px;
  }
}

@media screen and (max-width: 767px) {
  .criterion_item:nth-of-type(1) div {
    width: 52.5333333333vw;
    padding-top: 11.2vw;
  }
}

@media screen and (min-width: 768px) {
  .criterion_item:nth-of-type(2) h4 {
    top: -12px;
    width: 300px;
  }
}

@media screen and (max-width: 767px) {
  .criterion_item:nth-of-type(2) h4 {
    top: -6.08vw;
    width: 48.24vw;
  }
}

@media screen and (min-width: 768px) {
  .criterion_item:nth-of-type(2) div {
    width: 250px;
    margin-top: 100px;
  }
}

@media screen and (max-width: 767px) {
  .criterion_item:nth-of-type(2) div {
    width: 60vw;
    padding-top: 12.8vw;
  }
}

@media screen and (min-width: 768px) {
  .criterion_item:nth-of-type(3) h4 {
    top: -27px;
    width: 265px;
  }
}

@media screen and (max-width: 767px) {
  .criterion_item:nth-of-type(3) h4 {
    top: -7.2vw;
    width: 54.0533333333vw;
  }
}

@media screen and (min-width: 768px) {
  .criterion_item:nth-of-type(3) div {
    width: 289px;
    margin-top: 135px;
  }
}

@media screen and (max-width: 767px) {
  .criterion_item:nth-of-type(3) div {
    width: 69.3333333333vw;
    padding-top: 24.2666666667vw;
  }
}

.criterion_item img {
  width: 100%;
}

.criterion_image {
  margin: 0 auto;
}

.criterion_image img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .information {
    margin: 0 80px;
  }
}

@media screen and (max-width: 767px) {
  .information {
    margin-top: 11.2vw;
  }
}

@media screen and (min-width: 768px) {
  .information_item {
    margin: 110px 0 0;
  }
}

@media screen and (max-width: 767px) {
  .information_item:nth-of-type(3) h4 {
    text-align: justify;
    -moz-text-align-last: justify;
         text-align-last: justify;
    letter-spacing: 0.057em;
  }
}

@media screen and (min-width: 768px) {
  .information_item:nth-of-type(4) div:nth-of-type(2) {
    margin-top: 30px;
  }
}

@media screen and (max-width: 767px) {
  .information_item:nth-of-type(4) div:nth-of-type(2) {
    margin-top: 8vw;
  }
}

.information_title {
  font-weight: 900;
  font-feature-settings: "palt";
}

@media screen and (min-width: 768px) {
  .information_title {
    margin-bottom: 10px;
    font-size: 30px;
    letter-spacing: 0.08em;
  }
}

@media screen and (max-width: 767px) {
  .information_title {
    margin-top: 8vw;
    margin-bottom: 2.6666666667vw;
    font-size: 6.1333333333vw;
    letter-spacing: 0.1em;
  }
}

.information_title em {
  font-style: normal;
}

@media screen and (min-width: 768px) {
  .information_title em {
    font-size: 48px;
  }
}

@media screen and (max-width: 767px) {
  .information_title em {
    font-size: 10.4vw;
  }
}

.information_text {
  line-height: 1.8;
}

@media screen and (min-width: 768px) {
  .information_text {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .information_text {
    margin-bottom: 5.3333333333vw;
  }
}

.information_image img {
  width: 100%;
}

.step {
  list-style: none;
}

@media screen and (min-width: 768px) {
  .step {
    display: flex;
    justify-content: space-between;
  }
}

@media screen and (max-width: 767px) {
  .step {
    margin-top: 8vw;
  }
}

.step li {
  position: relative;
}

@media screen and (max-width: 767px) {
  .step li {
    margin: 0 auto 25.3333333333vw;
  }
}

.step li::after {
  position: absolute;
}

@media screen and (min-width: 768px) {
  .step li::after {
    content: "";
    top: 200px;
    right: -47px;
    width: 36px;
    height: 36px;
    background: url("/images/howToUse_image11.svg") no-repeat center center/100% 100%;
  }
}

@media screen and (max-width: 767px) {
  .step li::after {
    content: "";
    bottom: -16vw;
    left: 50%;
    transform: translateX(-50%);
    width: 9.6vw;
    height: 9.6vw;
    background: url("/images/howToUse_image11_sp.svg") no-repeat center center/100% 100%;
  }
}

.step li:last-child {
  margin-bottom: 0;
}

.step li:last-child::after {
  content: none;
}

.step_content {
  position: relative;
  display: flex;
  flex-flow: column;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .step_content {
    width: 336px;
    margin-top: 80px;
  }
}

@media screen and (max-width: 767px) {
  .step_content {
    width: 86.6666666667vw;
  }
}

.step_content h4 img {
  width: 100%;
}

.step_content div img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .step_content:nth-of-type(1) h4 {
    width: 61px;
  }
}

@media screen and (max-width: 767px) {
  .step_content:nth-of-type(1) h4 {
    width: 15.2vw;
  }
}

@media screen and (min-width: 768px) {
  .step_content:nth-of-type(1) div:nth-of-type(1) {
    width: 85px;
  }
}

@media screen and (max-width: 767px) {
  .step_content:nth-of-type(1) div:nth-of-type(1) {
    width: 22.8266666667vw;
  }
}

@media screen and (max-width: 767px) {
  .step_content:nth-of-type(1) a:nth-of-type(2) {
    margin-top: 2.1333333333vw;
  }
}

@media screen and (max-width: 767px) {
  .step_content:nth-of-type(2) section {
    height: 101.3333333333vw;
  }
}

@media screen and (min-width: 768px) {
  .step_content:nth-of-type(2) section h4 {
    width: 142px;
  }
}

@media screen and (max-width: 767px) {
  .step_content:nth-of-type(2) section h4 {
    width: 30.2666666667vw;
  }
}

@media screen and (min-width: 768px) {
  .step_content:nth-of-type(2) section div:nth-of-type(1) {
    width: 90px;
  }
}

@media screen and (max-width: 767px) {
  .step_content:nth-of-type(2) section div:nth-of-type(1) {
    width: 24vw;
  }
}

@media screen and (min-width: 768px) {
  .step_content:nth-of-type(3) h4 {
    width: 61px;
  }
}

@media screen and (max-width: 767px) {
  .step_content:nth-of-type(3) h4 {
    width: 15.4666666667vw;
  }
}

@media screen and (min-width: 768px) {
  .step_content:nth-of-type(3) div:nth-of-type(1) {
    width: 90px;
  }
}

@media screen and (max-width: 767px) {
  .step_content:nth-of-type(3) div:nth-of-type(1) {
    width: 23.3066666667vw;
  }
}

.step_item {
  display: flex;
  flex-flow: column;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .step_item {
    width: 336px;
    height: 450px;
    margin-bottom: 20px;
    border-radius: 20px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  }
}

@media screen and (max-width: 767px) {
  .step_item {
    width: 80vw;
    height: 85.3333333333vw;
    border-radius: 5.3333333333vw;
    box-shadow: 0 0 2.6666666667vw 0 rgba(0, 0, 0, 0.2);
  }
}

@media screen and (min-width: 768px) {
  .step_title {
    margin-top: 45px;
  }
}

@media screen and (max-width: 767px) {
  .step_title {
    margin-top: 13.3333333333vw;
  }
}

.step_number {
  z-index: 1;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (min-width: 768px) {
  .step_number {
    top: -13px;
  }
}

@media screen and (max-width: 767px) {
  .step_number {
    top: -3.4666666667vw;
  }
}

.step_number::before {
  z-index: -1;
  content: "";
  position: absolute;
  display: block;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary);
}

@media screen and (min-width: 768px) {
  .step_number::before {
    top: -7px;
    width: 227px;
    height: 40px;
    border-radius: 20px;
  }
}

@media screen and (max-width: 767px) {
  .step_number::before {
    top: -1.6vw;
    width: 58.6666666667vw;
    height: 10.4vw;
    border-radius: 5.3333333333vw;
  }
}

.step_image {
  display: flex;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .step_image {
    margin: 35px 0 20px;
    height: 232px;
  }
}

@media screen and (max-width: 767px) {
  .step_image {
    width: 64vw;
    margin-top: 5.3333333333vw;
  }
}

.step_text {
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .step_text {
    width: 290px;
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .step_text {
    width: 66.6666666667vw;
    margin-top: 5.3333333333vw;
  }
}

.step_bottom {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--orange);
}

@media screen and (min-width: 768px) {
  .step_bottom {
    width: 336px;
    height: 76px;
    margin-top: 10px;
    border: solid 3px var(--orange);
    border-radius: 6px;
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .step_bottom {
    width: 86.6666666667vw;
    height: 20vw;
    margin-top: 8vw;
    border: solid 0.7733333333vw var(--orange);
    border-radius: 1.6vw;
    font-size: 5.3333333333vw;
  }
}

.step_bottom::after {
  font-family: "Material Icons Round";
  content: "\e5cc";
  position: absolute;
  display: block;
  color: var(--orange);
}

@media screen and (min-width: 768px) {
  .step_bottom::after {
    top: 11px;
    right: 20px;
    font-size: 30px;
  }
}

@media screen and (max-width: 767px) {
  .step_bottom::after {
    top: 3.2vw;
    right: 5.3333333333vw;
    font-size: 8vw;
  }
}

.inquiry {
  position: relative;
  display: flex;
}

@media screen and (min-width: 768px) {
  .inquiry {
    overflow: hidden;
    flex-flow: row-reverse;
    justify-content: center;
    padding-top: 37px;
  }
}

@media screen and (max-width: 767px) {
  .inquiry {
    flex-flow: column-reverse;
  }
}

.inquiry_content {
  position: relative;
  font-feature-settings: "palt";
  background-color: #f1ca61;
}

@media screen and (min-width: 768px) {
  .inquiry_content {
    width: 50%;
  }
}

@media screen and (min-width: 768px) {
  .inquiry_item {
    width: 640px;
  }
}

@media screen and (max-width: 767px) {
  .inquiry_item {
    width: 86.6666666667vw;
    margin: 0 auto;
  }
}

.inquiry_title {
  text-align: center;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .inquiry_title {
    margin-top: 95px;
    font-size: 40px;
    letter-spacing: 0.08em;
  }
}

@media screen and (max-width: 767px) {
  .inquiry_title {
    margin-top: 34.4vw;
    font-size: 8.5333333333vw;
  }
}

@media screen and (min-width: 768px) {
  .inquiry_text {
    width: 478px;
    margin: 10px auto 30px;
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .inquiry_text {
    width: 86.6666666667vw;
    margin: 8vw 0;
  }
}

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

@media screen and (min-width: 768px) {
  .inquiry_text-large {
    margin-bottom: 10px;
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .inquiry_text-large {
    padding-left: 2.6666666667vw;
    font-size: 5.3333333333vw;
    letter-spacing: 0.2em;
  }
}

.inquiry_form {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 900;
  background-color: var(--white);
}

@media screen and (min-width: 768px) {
  .inquiry_form {
    width: 470px;
    height: 76px;
    margin: 0 auto;
    border: solid 3px var(--black);
    border-radius: 6px;
    font-size: 24px;
  }
}

@media screen and (max-width: 767px) {
  .inquiry_form {
    width: 86.6666666667vw;
    height: 20.2666666667vw;
    border: solid 0.8vw var(--black);
    border-radius: 1.6vw;
    font-size: 5.3333333333vw;
  }
}

.inquiry_form::after {
  font-family: "Material Icons Round";
  content: "\e5cc";
  position: absolute;
  display: block;
  color: var(--black);
}

@media screen and (min-width: 768px) {
  .inquiry_form::after {
    top: 11px;
    right: 10px;
    font-size: 30px;
  }
}

@media screen and (max-width: 767px) {
  .inquiry_form::after {
    top: 2.9333333333vw;
    right: 2.6666666667vw;
    font-size: 8vw;
  }
}

@media screen and (min-width: 768px) {
  .inquiry_information {
    display: flex;
    justify-content: space-between;
    width: 480px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .inquiry_information {
    width: 86.6666666667vw;
  }
}

.inquiry_company {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .inquiry_company {
    width: 200px;
    height: 66px;
    margin-top: 13px;
    font-size: 24px;
    border: solid 2px var(--black);
  }
}

@media screen and (max-width: 767px) {
  .inquiry_company {
    width: 86.6666666667vw;
    height: 10.6666666667vw;
    font-size: 6.4vw;
    border: solid 0.5333333333vw var(--black);
  }
}

@media screen and (max-width: 767px) {
  .inquiry_telephone {
    width: 72vw;
    margin: 2.6666666667vw auto 16vw;
  }
}

.inquiry_telephoneNumber {
  cursor: text;
  position: relative;
  font-weight: 900;
}

@media screen and (min-width: 768px) {
  .inquiry_telephoneNumber {
    font-size: 35px;
    padding-left: 30px;
    border-bottom: solid 1px var(--black);
  }
}

@media screen and (max-width: 767px) {
  .inquiry_telephoneNumber {
    font-size: 9.2vw;
    padding-left: 8vw;
    border-bottom: solid 0.2666666667vw var(--black);
  }
}

.inquiry_telephoneNumber:hover {
  opacity: 1;
}

.inquiry_telephoneNumber::before {
  content: "";
  position: absolute;
  display: block;
  background: url("/images/inquiry_image03.svg") no-repeat center center/100% 100%;
}

@media screen and (min-width: 768px) {
  .inquiry_telephoneNumber::before {
    top: 10px;
    width: 23px;
    height: 36px;
  }
}

@media screen and (max-width: 767px) {
  .inquiry_telephoneNumber::before {
    top: 2.6666666667vw;
    width: 6.1333333333vw;
    height: 9.6vw;
  }
}

.inquiry_time {
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .inquiry_time {
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .inquiry_time {
    font-size: 5.3333333333vw;
  }
}

.inquiry_captionImage {
  position: absolute;
}

@media screen and (min-width: 768px) {
  .inquiry_captionImage {
    top: -37px;
    left: 82px;
  }
}

@media screen and (max-width: 767px) {
  .inquiry_captionImage {
    top: -8.5333333333vw;
    left: 2.6666666667vw;
    width: 94.6666666667vw;
  }
}

.inquiry_captionImage img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .inquiry_image {
    min-width: 640px;
    width: 50%;
    height: 500px;
  }
}

.inquiry_image img {
  width: 100%;
}

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

@media screen and (max-width: 767px) {
  ._spHide {
    display: none;
  }
}

._show {
  display: block;
}

._hide {
  display: none;
}

._ta {
  text-align: left;
}

._tac {
  text-align: center;
}

._tar {
  text-align: right;
}

._m0 {
  margin: 0;
}

._mt0 {
  margin-top: 0;
}

._mr0 {
  margin-right: 0;
}

._mb0 {
  margin-bottom: 0;
}

._ml0 {
  margin-left: 0;
}

._p0 {
  padding: 0;
}

._pt0 {
  padding-top: 0;
}

._pr0 {
  padding-right: 0;
}

._pb0 {
  padding-bottom: 0;
}

._pl0 {
  padding-left: 0;
}