/*=============================
color & Breakpoints & Mixins
=============================*/
/* =============================
  Device Utility
============================= */
.pc {
  display: none !important;
}
@media screen and (min-width: 960px) {
  .pc {
    display: block !important;
  }
}

.sp {
  display: block !important;
}
@media screen and (min-width: 960px) {
  .sp {
    display: none !important;
  }
}

/*=============================
common (Base styles)
=============================*/
html {
  font-size: 62.5%;
  width: 100%;
}

body {
  background-color: #fff;
  color: #231815;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.15em;
  font-size: 1.5rem;
  text-align: justify;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
    text-align: justify;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-align: center;
  font-family: "Shippori Mincho B1", serif;
  letter-spacing: 0.2em;
  line-height: 1.5;
  font-weight: 600;
}

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

img {
  width: 100%;
  height: auto;
  display: block;
}

ul,
li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #231815;
  display: block;
  -webkit-text-fill-color: currentcolor;
}
a:hover {
  opacity: 0.9;
  transition: all ease 0.5s;
}

section {
  padding: 70px 0;
}
@media screen and (max-width: 767px) {
  section {
    padding: 40px 0;
  }
}

.inner {
  width: 80%;
  max-width: 1160px;
  margin: 0 auto;
}
@media screen and (max-width: 959px) {
  .inner {
    width: 90%;
  }
}
.inner--narrow {
  width: 57%;
  max-width: 900px;
}
@media screen and (max-width: 959px) {
  .inner--narrow {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .inner--narrow {
    width: 90%;
  }
}
.inner--medium {
  width: 73%;
  max-width: 900px;
}
@media screen and (max-width: 959px) {
  .inner--medium {
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .inner--medium {
    width: 90%;
  }
}

.caption {
  font-size: 1rem;
  font-feature-settings: "palt";
  line-height: 1.5;
  letter-spacing: 0em;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .caption {
    font-size: 7.5px;
  }
}

button {
  color: #231815;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-color: transparent;
  padding: 0;
  border: none;
  -webkit-text-fill-color: currentcolor;
}

.bg-gray {
  background-color: #f7f7f7;
}

.sans-bold {
  letter-spacing: 0.2em;
  font-weight: 600;
  text-align: center;
  font-size: 2rem;
}
@media screen and (max-width: 959px) {
  .sans-bold {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .sans-bold {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}
.sans-bold span {
  font-weight: 600;
  background: linear-gradient(transparent 75%, #f4966e 80%);
}

.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.strong-points {
  padding-top: 0;
}

.feature-list {
  margin: 50px auto;
  display: flex;
  flex-direction: column;
  gap: 35px;
  max-width: 560px;
}
@media screen and (max-width: 767px) {
  .feature-list {
    margin: 40px auto;
    gap: 25px;
  }
}
.feature-list__item {
  position: relative;
  padding-left: 50px;
  font-size: 2rem;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .feature-list__item {
    padding-left: 35px;
    font-size: 1.5rem;
  }
}
.feature-list__item::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 28px;
  height: 28px;
  background-image: url("../img/check-box.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .feature-list__item::before {
    width: 23px;
    height: 23px;
  }
}

.conclusion-box {
  max-width: 560px;
  position: relative;
  background-color: #102648;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .conclusion-box {
    margin-top: 60px;
  }
}
.conclusion-box::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-top: 40px solid #231815;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .conclusion-box::before {
    top: -35px;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 30px solid #231815;
  }
}
.conclusion-box__text {
  position: relative;
  z-index: 2;
  font-size: 2.4rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 959px) {
  .conclusion-box__text {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .conclusion-box__text {
    font-size: 1.6rem;
  }
}

.section-heading {
  position: relative;
  text-align: center;
  padding: 80px 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .section-heading {
    padding: 40px 0;
  }
}
.section-heading__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Libre Bodoni", serif;
  font-weight: 200;
  font-size: 15rem;
  letter-spacing: 0em;
  line-height: 0.85;
  color: #f5f3f6;
  z-index: 1;
  white-space: nowrap;
}
@media screen and (max-width: 959px) {
  .section-heading__bg {
    font-size: 11rem;
  }
}
@media screen and (max-width: 767px) {
  .section-heading__bg {
    font-size: 7rem;
    line-height: 1.3;
  }
}
.section-heading__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
}
.section-heading__label {
  color: #fff;
  background-color: #102648;
  font-size: 1.6rem;
  line-height: 1;
  padding: 8px 15px;
}
@media screen and (max-width: 767px) {
  .section-heading__label {
    font-size: 1.4rem;
    padding: 6px 10px;
  }
}
.section-heading__title {
  font-size: 4.2rem;
  border-bottom: 1px solid #102648;
  padding: 15px 60px;
  margin-bottom: 15px;
}
@media screen and (max-width: 959px) {
  .section-heading__title {
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 767px) {
  .section-heading__title {
    padding: 8px 30px;
    font-size: 2.2rem;
    margin-bottom: 10px;
  }
}
.section-heading__desc {
  font-size: 1.8rem;
  letter-spacing: 0.2em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .section-heading__desc {
    font-size: 1.4rem;
  }
}

/*=============================
header
=============================*/
header {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px;
}
@media screen and (max-width: 767px) {
  header {
    padding: 10px 15px;
  }
}
header .header_left {
  width: 200px;
}
@media screen and (max-width: 767px) {
  header .header_left {
    width: 110px;
  }
}
header .header_right {
  width: 230px;
}
@media screen and (max-width: 767px) {
  header .header_right {
    width: 130px;
  }
}

/*=============================
top
=============================*/
.top {
  padding-top: 0;
}
.top .top-cs {
  padding: 50px 0;
}
@media screen and (max-width: 767px) {
  .top .top-cs {
    padding: 40px 0;
  }
}
.top .top-cs h3 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top .top-cs h3 {
    font-size: 1.8rem;
  }
}
.top .top-cs h3::before, .top .top-cs h3::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background: #231815;
}
.top .top-cs h3::before {
  margin-right: 25px;
}
@media screen and (max-width: 767px) {
  .top .top-cs h3::before {
    margin-right: 10px;
  }
}
.top .top-cs h3::after {
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .top .top-cs h3::after {
    margin-left: 0px;
  }
}
.top .top-concept {
  padding-top: 60px;
}
@media screen and (max-width: 767px) {
  .top .top-concept {
    padding-top: 40px;
  }
}
.top .top-concept__title {
  font-size: 3rem;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .top .top-concept__title {
    font-size: 2.2rem;
    padding-left: 15px;
    margin-bottom: 25px;
  }
}

/*=============================
sp00
=============================*/
.sp-00 {
  background-image: url(../img/strong-points_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.sp-00__message {
  margin: 60px auto;
}
@media screen and (max-width: 767px) {
  .sp-00__message {
    margin: 35px auto;
  }
}
.sp-00__toc {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .sp-00__toc {
    grid-template-columns: 1fr;
  }
}
.sp-00 h3 {
  font-size: 3.5rem;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .sp-00 h3 {
    font-size: 2.5rem;
    margin-top: 40px;
  }
}

/*=============================
sp01
=============================*/
.sp-01__msg {
  color: #fff;
  background-color: #102648;
  padding: 25px 10px;
}
@media screen and (max-width: 767px) {
  .sp-01__msg {
    padding: 20px 10px;
  }
}
.sp-01__potential {
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .sp-01__potential {
    padding: 30px 0;
  }
}
.sp-01__potential .small {
  vertical-align: super;
  font-size: 0.5em;
}
.sp-01__potential .potential-img {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .sp-01__potential .potential-img {
    margin-top: 35px;
  }
}
.sp-01__potential .potential-img .img01 {
  width: 60%;
}
@media screen and (max-width: 767px) {
  .sp-01__potential .potential-img .img01 {
    width: 100%;
  }
}
.sp-01__potential .potential-img .img02 {
  width: 37%;
}
@media screen and (max-width: 767px) {
  .sp-01__potential .potential-img .img02 {
    width: 70%;
    margin: 35px auto 0;
  }
}

/*=============================
sp02
=============================*/
.sp-02 {
  padding-bottom: 0;
}
.sp-02__img {
  margin: 60px auto 30px;
  width: 60%;
}
@media screen and (max-width: 767px) {
  .sp-02__img {
    margin: 40px auto 30px;
    width: 90%;
  }
}
.sp-02__msg {
  text-align: center;
  font-size: 3.5rem;
  letter-spacing: 0.18em;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width: 959px) {
  .sp-02__msg {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .sp-02__msg {
    font-size: 2.5rem;
  }
}
.sp-02 .nomucom .section-heading__bg {
  color: #f6ece6;
}
.sp-02 .nomucom .section-heading__desc {
  margin-top: 30px;
  color: #b10510;
}
@media screen and (max-width: 767px) {
  .sp-02 .nomucom .section-heading__desc {
    margin-top: 15px;
    line-height: 1.5;
  }
}
.sp-02 .nomucom .nomu-features {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .sp-02 .nomucom .nomu-features {
    margin-top: 40px;
  }
}
.sp-02 .nomucom .nomu-features__heading {
  background-color: #102648;
  color: #fff;
  text-align: center;
  font-size: 2.4rem;
  line-height: 1;
  padding: 12px 0 15px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .sp-02 .nomucom .nomu-features__heading {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
}
.sp-02 .nomucom .nomu-features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0px 30px;
}
@media screen and (max-width: 767px) {
  .sp-02 .nomucom .nomu-features__grid {
    grid-template-columns: 1fr;
    gap: 15px 30px;
  }
}
.sp-02 .nomucom .nomu-features__desc {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .sp-02 .nomucom .nomu-features__desc {
    margin-bottom: 30px;
  }
}
.sp-02 .nomucom .nomu-features__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 959px) {
  .sp-02 .nomucom .nomu-features__stats {
    gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .sp-02 .nomucom .nomu-features__stats {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.sp-02 .nomucom .nomu-features__stats .stat-item {
  text-align: center;
}
.sp-02 .nomucom .nomu-features__stats .stat-item img {
  max-width: 350px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .sp-02 .nomucom .nomu-features__stats .stat-item img {
    max-width: 280px;
  }
}
.sp-02 .nomucom .feature-card {
  text-align: center;
}
.sp-02 .nomucom .feature-card__catch {
  font-family: "Shippori Mincho B1", serif;
  font-size: 2rem;
  margin-bottom: 5px;
}
@media screen and (max-width: 959px) {
  .sp-02 .nomucom .feature-card__catch {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .sp-02 .nomucom .feature-card__catch {
    font-size: 1.6rem;
  }
}
.sp-02 .nomucom .feature-card__title {
  color: #b10510;
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
@media screen and (max-width: 959px) {
  .sp-02 .nomucom .feature-card__title {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .sp-02 .nomucom .feature-card__title {
    margin-bottom: 15px;
  }
}
.sp-02 .nomucom .feature-card__img {
  margin: 0;
}
.sp-02 .suumo {
  margin-top: 70px;
  padding: 40px 0 70px;
}
@media screen and (max-width: 767px) {
  .sp-02 .suumo {
    margin-top: 50px;
    padding: 10px 0 50px;
  }
}
.sp-02 .suumo .section-heading__bg {
  color: #eaebe2;
}
.sp-02 .suumo .section-heading__desc {
  color: #0b7a3e;
}
.sp-02 .suumo__intro {
  margin-top: 50px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .sp-02 .suumo__intro {
    margin-top: 30px;
  }
}
.sp-02 .suumo__intro::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  max-width: 100%;
  border-bottom: 1px solid #231815;
}
.sp-02 .suumo__intro::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(-45deg);
  width: 12px;
  height: 12px;
  border-left: 1px solid #231815;
  border-bottom: 1px solid #231815;
  background-color: #f7f7f7;
}
.sp-02 .suumo__catch {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 50px;
  font-family: "Shippori Mincho B1", serif;
}
.sp-02 .suumo__catch .text-suumo {
  color: #0b7a3e;
  font-size: 4.8rem;
  letter-spacing: 0.1em;
}
.sp-02 .suumo__catch .box-special {
  background-color: #0b7a3e;
  color: #fff;
  font-size: 2.8rem;
  padding: 8px 24px;
}
.sp-02 .suumo__catch .text-suffix {
  font-size: 3.6rem;
}
@media screen and (max-width: 767px) {
  .sp-02 .suumo__catch {
    gap: 5px 8px;
    margin-bottom: 30px;
  }
  .sp-02 .suumo__catch .text-suumo {
    font-size: 2.2rem;
  }
  .sp-02 .suumo__catch .box-special {
    font-size: 1.6rem;
    padding: 5px 10px;
  }
  .sp-02 .suumo__catch .text-suffix {
    font-size: 1.8rem;
  }
}
.sp-02 .suumo__merits {
  display: grid;
  gap: 40px 20px;
  max-width: 820px;
  margin: 0 auto 40px;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 960px) {
  .sp-02 .suumo__merits {
    grid-template-columns: repeat(2, 1fr);
  }
}
.sp-02 .suumo__image {
  margin: 0;
}
.sp-02 .suumo .merit-box__header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .sp-02 .suumo .merit-box__header {
    gap: 12px;
  }
}
.sp-02 .suumo .merit-box__num {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #0b7a3e;
  font-family: "Shippori Mincho B1", serif;
  line-height: 1;
}
.sp-02 .suumo .merit-box__num .en {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.sp-02 .suumo .merit-box__num .num {
  font-size: 4rem;
}
.sp-02 .suumo .merit-box__title {
  color: #0b7a3e;
  font-size: 1.8rem;
  text-align: left;
  border-left: 2px solid #0b7a3e;
  padding-left: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .sp-02 .suumo .merit-box__title {
    font-size: 1.6rem;
    padding-left: 12px;
  }
}
@media screen and (max-width: 767px) {
  .sp-02 .suumo .merit-box__text {
    font-size: 1.4rem;
  }
}
.sp-02 .suumo__hankyo {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .sp-02 .suumo__hankyo {
    margin-top: 30px;
  }
}
.sp-02 .suumo__hankyo h3 {
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .sp-02 .suumo__hankyo h3 {
    font-size: 2rem;
  }
}
.sp-02 .suumo__hankyo .hankyo-wrap {
  margin: 0px auto;
  max-width: 820px;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .sp-02 .suumo__hankyo .hankyo-wrap {
    margin-top: 20px;
  }
}
.sp-02 .suumo__hankyo .hankyo-wrap .left {
  width: 52%;
}
.sp-02 .suumo__hankyo .hankyo-wrap .right {
  width: 38%;
}
.sp-02 .suumo .other-portals {
  margin-top: 70px;
  padding: 30px 20px;
  background-color: #e3e3e5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sp-02 .suumo .other-portals {
    margin-top: 40px;
    padding: 20px 15px;
  }
}
.sp-02 .suumo .other-portals__text {
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .sp-02 .suumo .other-portals__text {
    font-size: 1.6rem;
  }
}
.sp-02 .suumo .other-portals__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin: 20px 0;
}
@media screen and (max-width: 767px) {
  .sp-02 .suumo .other-portals__logos {
    flex-direction: column;
    gap: 12px;
    margin: 15px 0;
  }
}
.sp-02 .suumo .other-portals .logo-item {
  display: inline-block;
  padding: 10px 20px;
  line-height: 1;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .sp-02 .suumo .other-portals .logo-item {
    width: 100%;
    font-size: 1.6rem;
    padding: 10px;
  }
}
.sp-02 .suumo .other-portals .logo-item--athome {
  background-color: #b7282e;
  color: #fff;
}
.sp-02 .suumo .other-portals .logo-item--homes {
  background-color: #d76b26;
  color: #fff;
}
.sp-02 .suumo .other-portals .logo-item--japan {
  background-color: #fff;
}

/*=============================
sp03
=============================*/
.sp-03 {
  padding-top: 0;
}
.sp-03 .home-cleanup {
  text-align: center;
}
.sp-03 .home-cleanup__ttl {
  display: inline-block;
  margin-top: 50px;
  margin-bottom: 30px;
  color: #fff;
  padding: 5px 30px;
  background-color: #102648;
}
@media screen and (max-width: 767px) {
  .sp-03 .home-cleanup__ttl {
    margin-top: 30px;
  }
}
.sp-03 .home-cleanup__example {
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .sp-03 .home-cleanup__example {
    margin-top: 35px;
  }
}
.sp-03 .home-cleanup__example-image {
  margin: 0 auto 40px;
  text-align: center;
}
.sp-03 .home-cleanup__example-tabs {
  display: flex;
  max-width: 550px;
  margin: 0 auto;
  border: 1px solid #231815;
  border-radius: 50px;
  overflow: hidden;
}
.sp-03 .home-cleanup__example .tab-btn {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 8px;
  cursor: pointer;
  background-color: #fff;
  transition: all 0.3s ease;
}
.sp-03 .home-cleanup__example .tab-btn.is-active {
  background-color: #102648;
  color: #fff;
}
.sp-03 .home-cleanup__example .tab-btn .en {
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}
.sp-03 .home-cleanup__example .tab-btn .ja {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .sp-03 .home-cleanup__example .tab-btn {
    padding: 10px;
    gap: 8px;
  }
  .sp-03 .home-cleanup__example .tab-btn .en {
    font-size: 1.1rem;
  }
  .sp-03 .home-cleanup__example .tab-btn .ja {
    font-size: 1.5rem;
  }
}
.sp-03 .home-staging {
  padding-top: 50px;
}
@media screen and (max-width: 767px) {
  .sp-03 .home-staging {
    padding-top: 35px;
  }
}
.sp-03 .home-staging .value-step {
  margin: 50px auto;
}
@media screen and (max-width: 767px) {
  .sp-03 .home-staging .value-step {
    margin: 35px auto;
  }
}
.sp-03 .home-staging .value-step__list {
  width: 33%;
}
@media screen and (max-width: 767px) {
  .sp-03 .home-staging .value-step__list {
    width: 100%;
    margin-bottom: 15px;
  }
}
.sp-03 .home-staging__ex02 {
  margin: 40px auto;
  width: 80%;
}
@media screen and (max-width: 767px) {
  .sp-03 .home-staging__ex02 {
    margin: 25px auto;
    width: 95%;
  }
}
.sp-03 .walk-through {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .sp-03 .walk-through {
    margin-top: 50px;
  }
}
.sp-03 .walk-through__msg {
  border-bottom: 1px solid #231815;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.sp-03 .walk-through__desc {
  text-align: center;
  font-weight: 500;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .sp-03 .walk-through__desc {
    font-size: 1.5rem;
  }
}
.sp-03 .walk-through .virtual-tour__grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 3.5fr 1fr;
  gap: 20px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .sp-03 .walk-through .virtual-tour__grid {
    margin-top: 35px;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 12px;
  }
}
.sp-03 .walk-through .tour-item figure {
  margin: 0;
}
.sp-03 .walk-through .tour-item--main {
  grid-row: span 2;
}
@media screen and (max-width: 767px) {
  .sp-03 .walk-through .tour-item--main {
    grid-column: 1/-1;
    grid-row: auto;
  }
}
.sp-03 .safety-service01 {
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .sp-03 .safety-service01 {
    padding-top: 50px;
  }
}
.sp-03 .safety-service01 .value-steps {
  margin-top: 70px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .sp-03 .safety-service01 .value-steps {
    flex-direction: column;
    gap: 40px;
  }
}
.sp-03 .safety-service01 .value-step {
  width: 31%;
  background-color: #f4eef2;
  padding: 40px 30px 30px;
  position: relative;
}
@media screen and (max-width: 959px) {
  .sp-03 .safety-service01 .value-step {
    padding: 30px 20px 20px;
  }
}
@media screen and (max-width: 767px) {
  .sp-03 .safety-service01 .value-step {
    width: 100%;
    padding: 30px 20px 20px;
  }
}
.sp-03 .safety-service01 .value-step__badge {
  position: absolute;
  top: -20px;
  left: 0;
  width: 100px;
  margin: 0;
}
.sp-03 .safety-service01 .value-step__title {
  font-size: 2rem;
  color: #003f66;
  line-height: 1.5;
  margin-bottom: 15px;
  text-align: left;
  letter-spacing: 0.1em;
  font-weight: 500;
}
@media screen and (max-width: 959px) {
  .sp-03 .safety-service01 .value-step__title {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}
.sp-03 .safety-service01 .value-step__title .note-mark {
  color: #231815;
  font-size: 1rem;
  vertical-align: super;
}
.sp-03 .safety-service01 .value-step__text {
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
.sp-03 .safety-service01 .equipment-section {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .sp-03 .safety-service01 .equipment-section {
    margin-top: 35px;
  }
}
.sp-03 .safety-service01 .equipment-section__heading {
  font-size: 2.8rem;
  color: #003f66;
  text-align: left;
  margin-bottom: 20px;
  font-family: "Shippori Mincho B1", serif;
}
@media screen and (max-width: 767px) {
  .sp-03 .safety-service01 .equipment-section__heading {
    font-size: 2rem;
    text-align: center;
  }
}
.sp-03 .safety-service01 .equipment-section__content {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .sp-03 .safety-service01 .equipment-section__content {
    flex-direction: column;
    gap: 24px;
  }
}
.sp-03 .safety-service01 .equipment-section__img {
  width: 78%;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .sp-03 .safety-service01 .equipment-section__img {
    width: 100%;
  }
}
.sp-03 .safety-service01 .equipment-section__desc {
  width: 22%;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2;
  font-family: "Shippori Mincho B1", serif;
  color: #231815;
}
@media screen and (max-width: 767px) {
  .sp-03 .safety-service01 .equipment-section__desc {
    width: 100%;
    font-size: 1.5rem;
    text-align: center;
  }
}
.sp-03 .safety-service02 {
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .sp-03 .safety-service02 {
    padding-top: 40px;
  }
}
.sp-03 .safety-service02 .hoshu {
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .sp-03 .safety-service02 .hoshu {
    padding-bottom: 20px;
  }
}
.sp-03 .safety-service02 .hoshu figure {
  margin: 0;
}
.sp-03 .safety-service02 .hoshu__family {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .sp-03 .safety-service02 .hoshu__family {
    margin-bottom: 40px;
  }
}
.sp-03 .safety-service02 .hoshu__subject {
  margin: 0 auto;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .sp-03 .safety-service02 .hoshu__subject {
    margin-bottom: 40px;
  }
}
.sp-03 .safety-service02 .hoshu__house {
  width: 80%;
  margin: 50px auto 40px !important;
}
@media screen and (max-width: 767px) {
  .sp-03 .safety-service02 .hoshu__house {
    width: 100%;
    margin-bottom: 24px;
  }
}
.sp-03 .safety-service02 .hoshu__boxes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .sp-03 .safety-service02 .hoshu__boxes {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
.sp-03 .safety-service02 .hoshu__boxes img {
  width: 100%;
}
.sp-03 .safety-service02 .hoshu__term-pic {
  width: 100%;
}

/*=============================
sp04
=============================*/
.sp-04 .sellbuy-support {
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .sp-04 .sellbuy-support {
    padding-top: 20px;
  }
}
.sp-04 .sellbuy-support__img01 {
  margin: 50px auto;
}
@media screen and (max-width: 767px) {
  .sp-04 .sellbuy-support .section-heading__bg {
    font-size: 6rem;
  }
}
@media screen and (max-width: 767px) {
  .sp-04 .sellbuy-support .sellbuy-support__img01 {
    margin-top: 35px;
  }
}
.sp-04 .purchase-support {
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .sp-04 .purchase-support {
    padding-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .sp-04 .purchase-support .section-heading__bg {
    font-size: 6rem;
  }
}
@media screen and (max-width: 767px) {
  .sp-04 .purchase-support .section-heading__title {
    letter-spacing: 0.05em;
  }
}
.sp-04 .purchase-support .purchase-merits {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .sp-04 .purchase-support .purchase-merits {
    margin-top: 40px;
  }
}
.sp-04 .purchase-support .purchase-merits__heading {
  font-size: 2rem;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .sp-04 .purchase-support .purchase-merits__heading {
    margin-bottom: 25px;
  }
}
.sp-04 .purchase-support .purchase-merits__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .sp-04 .purchase-support .purchase-merits__cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.sp-04 .purchase-support .merit-card {
  background-color: #e5e5e5;
  padding: 25px 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 959px) {
  .sp-04 .purchase-support .merit-card {
    padding: 20px 10px;
  }
}
@media screen and (max-width: 767px) {
  .sp-04 .purchase-support .merit-card {
    padding: 20px 20px;
  }
}
.sp-04 .purchase-support .merit-card__header {
  font-family: "Shippori Mincho B1", serif;
  color: #102648;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0em;
  padding-bottom: 20px;
  margin-bottom: 15px;
  position: relative;
  line-height: 1;
}
@media screen and (max-width: 959px) {
  .sp-04 .purchase-support .merit-card__header {
    font-size: 1.5rem;
    padding-bottom: 15px;
  }
}
.sp-04 .purchase-support .merit-card__header .large {
  font-size: 3.2rem;
  margin-left: 5px;
}
@media screen and (max-width: 959px) {
  .sp-04 .purchase-support .merit-card__header .large {
    font-size: 2.4rem;
  }
}
.sp-04 .purchase-support .merit-card__header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  border-bottom: 1px solid #231815;
}
@media screen and (max-width: 767px) {
  .sp-04 .purchase-support .merit-card__header {
    font-size: 1.6rem;
  }
  .sp-04 .purchase-support .merit-card__header .large {
    font-size: 2.8rem;
  }
}
.sp-04 .purchase-support .merit-card__text {
  font-family: "Shippori Mincho B1", serif;
  letter-spacing: 0.1em;
  line-height: 1.7;
}
@media screen and (max-width: 959px) {
  .sp-04 .purchase-support .merit-card__text {
    font-size: 1.3rem;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 767px) {
  .sp-04 .purchase-support .merit-card__text {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
  }
}
.sp-04 .purchase-support .conclusion-box {
  max-width: 800px;
}
@media screen and (max-width: 767px) {
  .sp-04 .purchase-support .conclusion-box {
    margin-top: 30px;
  }
}
.sp-04 .purchase-support .conclusion-box::before {
  display: none;
}

/*=============================
contact
=============================*/
.contact {
  text-align: center;
  padding-top: 70px;
}
@media screen and (max-width: 767px) {
  .contact {
    padding-top: 30px;
    padding-bottom: 0px;
  }
}
.contact__title {
  font-size: 3.2rem;
  margin: 0 auto;
  margin-bottom: 40px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .contact__title {
    font-size: 2rem;
    margin-bottom: 30px;
    letter-spacing: 0.05em;
  }
}
.contact__wrapper {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .contact__wrapper {
    grid-template-columns: 1fr;
  }
}
.contact__map {
  width: 100%;
  height: 600px;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .contact__map {
    margin-top: 50px;
  }
}
@media screen and (max-width: 959px) {
  .contact__map {
    height: 500px;
  }
}
@media screen and (max-width: 767px) {
  .contact__map {
    height: 300px;
  }
}
.contact__map iframe {
  width: 100%;
  height: 100%;
}

/*=============================
footer
=============================*/
footer {
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  footer {
    padding: 40px 0;
  }
}
footer a {
  width: 70%;
  max-width: 700px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  footer a {
    width: 85%;
    max-width: 380px;
  }
}/*# sourceMappingURL=style.css.map */