@charset "UTF-8";
/*
Theme Name: new
*/
html {
  scroll-behavior: smooth;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
}

a:hover {
  opacity: 0.7;
}

img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

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

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: #d9333f;
  color: white;
  margin: 0.25rem 0.675rem 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 5rem;
}

header {
  position: fixed;
  width: 100%;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.8);
}
header .hm {
  position: fixed;
  top: 24px;
  width: 60px;
  height: 35px;
  right: 32px;
  z-index: 20;
}
@media screen and (max-width: 768px) {
  header .hm:hover {
    cursor: pointer;
  }
}
header .hm__inner {
  width: 100%;
  height: 3px;
  background-color: black;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
header .hm__inner::before {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 3px;
  background-color: black;
  top: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .hm__inner::after {
  content: "";
  position: absolute;
  display: block;
  width: 15px;
  height: 3px;
  background-color: black;
  top: 32px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .menu {
  position: absolute;
  top: 110vh;
  width: 100%;
  height: 100vh;
  background: #d9333f;
  z-index: 10;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
header .menu ul {
  position: absolute;
  width: 100%;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
header .menu ul li {
  text-align: center;
}
header .menu ul li a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 0.5rem;
  font-weight: bold;
}
header .menu.show {
  top: 0;
  opacity: 1;
}
header h1 {
  padding: 1rem;
}
header h1 img {
  height: 56px;
  width: auto;
}

.open .hm__inner {
  background: #fff !important;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.open .hm__inner::before {
  background: #fff;
  opacity: 0;
}
.open .hm__inner::after {
  background: #fff;
  width: 100%;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  top: 0;
  left: 0;
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
}

.mv {
  position: relative;
}
.mv .bgImg {
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.mv .text {
  position: absolute;
  max-width: 800px;
  width: 90%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 2vw;
  border-radius: 1rem;
}
.mv .text img {
  -webkit-filter: drop-shadow(0 0 6px #fff) drop-shadow(0 0 6px #fff) drop-shadow(0 0 6px #fff);
          filter: drop-shadow(0 0 6px #fff) drop-shadow(0 0 6px #fff) drop-shadow(0 0 6px #fff);
}

.cv {
  position: relative;
  display: block;
  background: #d9333f;
  width: 90%;
  max-width: 480px;
  padding: 0.5em;
  font-size: 2rem;
  text-align: center;
  text-decoration: none;
  color: #fff;
  border-radius: 5rem;
  font-weight: bold;
  margin: 1.5rem auto;
  -webkit-animation: scaleUpDown 0.75s infinite alternate;
          animation: scaleUpDown 0.75s infinite alternate;
}
@-webkit-keyframes scaleUpDown {
  from {
    -webkit-transform: scale(0.85);
            transform: scale(0.85);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes scaleUpDown {
  from {
    -webkit-transform: scale(0.85);
            transform: scale(0.85);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.cv::after {
  content: "〉";
  position: absolute;
  top: 50%;
  right: 2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 2rem;
  color: #fff;
}

section .inner {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 2rem;
  }
}
h2::after {
  content: "";
  display: block;
  width: 2em;
  height: 3px;
  background: #d9333f;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
h2 ruby {
  font-size: 1em;
}
h2 span {
  font-size: 0.5em;
  display: block;
}

.about {
  background: #f9e7e9;
  padding: 5rem 0;
}
.about ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .about ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.about ul li {
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
  background: #fff;
  padding: 1rem;
  border-radius: 1rem;
  position: relative;
  margin-bottom: 2rem;
}
.about ul li .material-icons {
  font-size: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  color: #d9333f;
  margin: 1rem 0;
}
.about ul li h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.25em;
  text-align: center;
  background: #d9333f;
  color: #fff;
  padding: 0.5em;
  border-radius: 0.5rem;
}
.about ul li p {
  font-weight: 600;
  font-size: 1.25em;
}

.flow {
  padding: 5rem 0;
}
.flow ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .flow ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.flow ul li {
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
  background: #f9e7e9;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
  position: relative;
}
.flow ul li::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  background: linear-gradient(45deg, #d9333f 50%, transparent 50%);
  border-top-right-radius: 0.5rem;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(75%, -50%) rotate(-135deg);
          transform: translate(75%, -50%) rotate(-135deg);
}
@media screen and (max-width: 768px) {
  .flow ul li::after {
    top: auto;
    bottom: 0;
    right: 50%;
    -webkit-transform: translate(50%, 50%) rotate(-45deg);
            transform: translate(50%, 50%) rotate(-45deg);
  }
}
.flow ul li:last-of-type::after {
  display: none;
}
.flow ul li h3 {
  font-size: 1.25rem;
  color: #d9333f;
  font-weight: bold;
  text-align: center;
  padding: 0.5em;
  border-radius: 0.5rem;
}
.flow ul li p {
  text-align: center;
}

.cases {
  padding: 5rem 0;
  background: #f9e7e9;
}
.cases .cases_wrapper ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.cases .cases_wrapper ul .cases_card {
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
}
.cases .cases_wrapper ul .cases_card img {
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}
.cases .cases_wrapper ul .cases_card-text {
  background: #fff;
  padding: 1rem;
  border-radius: 0 0 0.5rem 0.5rem;
}
.cases .cases_wrapper ul .cases_card-text h3 {
  font-size: 1.25rem;
}

.news {
  padding: 5rem 0;
}
.news ul {
  border-top: 1px dashed #d5787e;
}
.news ul li {
  padding: 1em;
  border-bottom: 1px dashed #d5787e;
}
.news ul li a {
  text-decoration: none;
  color: #000;
}
.news ul li span {
  margin-right: 2em;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .news ul li span {
    display: block;
  }
}

.other {
  padding: 5rem 0;
  background: #f9e7e9;
}
.other ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.other ul li {
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  margin-top: 0.5em;
  background: #d9333f;
  padding: 1rem;
  border-radius: 0.5rem 0.5rem;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .other ul li {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
  }
}
.other ul li img {
  border-radius: 0.5rem 0.5rem 0 0;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 3/2;
}

.faq {
  padding: 5rem 0;
}
.faq dl {
  border-top: 1px dashed #d5787e;
}
.faq dl dt {
  font-size: 1.25rem;
  color: #d9333f;
  font-weight: bold;
  margin-bottom: 0.5em;
  padding-top: 1rem;
}
.faq dl dt::before {
  content: "Q.";
  margin-right: 0.5em;
}
.faq dl dd {
  color: #333;
  padding-bottom: 1rem;
  border-bottom: 1px dashed #d5787e;
  font-size: 1.125rem;
}
.faq dl dd::before {
  content: "A.";
  margin-right: 0.5em;
}

.profile {
  padding: 5rem 0;
  background: #f9e7e9;
}
.profile dl {
  border-top: 1px dashed #d5787e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 680px;
  margin: 0 auto;
}
.profile dl dt {
  font-size: 1.125rem;
  color: #d9333f;
  font-weight: bold;
  padding: 1rem;
  -ms-flex-preferred-size: 7rem;
      flex-basis: 7rem;
  border-bottom: 1px dashed #d5787e;
}
.profile dl dd {
  color: #333;
  font-size: 1.125rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed #d5787e;
  -ms-flex-preferred-size: calc(100% - 7rem);
      flex-basis: calc(100% - 7rem);
  padding: 1rem;
}
.profile .btn {
  display: block;
  margin: 2rem auto 0;
  text-align: center;
  max-width: 420px;
}

.price {
  padding: 5rem 0;
}
.price h3 {
  font-size: 1.5rem;
  text-align: center;
  margin: 2rem 0 1rem;
  font-weight: bold;
  color: #d9333f;
}
.price p {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
}
.price .fee {
  font-size: 2rem;
  font-weight: bold;
}
.price .small {
  font-size: 1rem;
}

#offer {
  padding: 5rem 0;
  background: #f9e7e9;
}
#offer .inner {
  max-width: 580px;
}
#offer .intro {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
#offer h3 {
  font-size: 1.5rem;
  margin: 1rem 0 0.5rem;
  font-weight: bold;
  color: #d9333f;
  border-top: dashed 1px #d5787e;
  padding-top: 1rem;
}
#offer .must::after {
  content: "*必須";
  color: #d9333f;
  margin-left: 1rem;
  font-size: 0.875rem;
}
#offer input {
  padding: 0.5rem;
  font-size: 1.125rem;
  border-radius: 5px;
  width: 100%;
}
#offer p {
  font-size: 1.25rem;
  font-weight: 500;
}
#offer .corner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  #offer .corner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.25rem;
  }
}
#offer .corner .amount {
  width: 5rem;
  min-width: auto;
}
#offer #totalPrice {
  font-size: 1.75rem;
  font-weight: 600;
  margin: 0 0.5rem;
}
#offer #totalPrice::after {
  content: "円";
  font-size: 1rem;
  padding-left: 0.5rem;
}
#offer p.desc {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}
#offer .submit {
  display: block;
  margin: 2rem auto 0;
  text-align: center;
  width: 100%;
  max-width: 420px;
  background: #d9333f;
  color: #fff;
  font-weight: bold;
  border: none;
  padding: 1rem 2rem;
  border-radius: 5rem;
}

.thanks {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #f9e7e9;
}
.thanks h2 {
  font-size: 2.5rem;
  text-align: center;
}
.thanks p {
  font-size: 1.25rem;
  text-align: center;
}
.thanks .btn {
  display: block;
  margin: 2rem auto 0;
  width: 90%;
  text-align: center;
  max-width: 420px;
}

footer {
  padding: 5rem 0 5rem;
  background: #d5787e;
}
footer p {
  color: white;
  font-weight: bold;
  text-align: center;
}
footer .credit {
  font-size: 0.75rem;
}