@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
  padding: 0;
  color: #393939;
  scroll-behavior: smooth;
  background-color: #fff;
}

figure {
  margin: 0;
  padding: 0;
}
figure img {
  width: 100%;
  height: 100%;
}

h2 {
  margin: 0;
  padding: 0;
}

a,
.btn_viewall {
  text-decoration: none;
  color: black;
  transition: all 0.3s;
}

li {
  list-style: none;
}

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

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

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

.section_title {
  font-family: "Roboto", sans-serif;
  text-shadow: 1px 1px 0 #000, -1px 1px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000;
  color: #FFFBF8;
  font-size: 2.5vw;
  width: 100%;
  font-weight: bold;
  text-align: center;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 768px) {
  .section_title {
    font-size: 2rem;
    text-shadow: 0.5px 0.5px 0 #000, -0.5px 0.5px 0 #000, -0.5px -0.5px 0 #000, 0.5px -0.5px 0 #000;
  }
}

.section_subtitle {
  font-size: 3.1vw;
  font-weight: bold;
  color: #1EAA8B;
  text-align: center;
  margin-bottom: 6.7vw;
  padding-top: 0.8rem;
  position: relative;
}
.section_subtitle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  width: 1px;
  height: 1.4rem;
  background-color: #000;
}
@media screen and (max-width: 768px) {
  .section_subtitle {
    font-size: 2.2rem;
  }
  .section_subtitle:before {
    height: 0.8rem;
    top: -0.5rem;
  }
}

.start_btn {
  width: 16vw;
  height: 4.1vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  cursor: pointer;
  background-color: transparent;
  transition: 0.3s;
  font-weight: bold;
  position: relative;
  padding: 1.6vw 0;
  z-index: 2;
}
.start_btn::before {
  content: "";
  position: absolute;
  bottom: -0.6rem;
  right: -0.6rem;
  width: 100%;
  height: 100%;
  background-color: #E5643C;
  z-index: -1;
  transition: all 0.5s;
}
.start_btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  border: 2px solid #393939;
  transition: all 0.6s;
}
.start_btn:hover {
  opacity: 0.6;
  transition: all 0.5s;
}
.start_btn:hover::before {
  transform: translate(-0.6rem, -0.6rem);
}
.start_btn:hover::after {
  opacity: 0;
  transition: all 0.6s;
}
.start_btn:hover p {
  margin-left: 0;
  transition: all 0.6s;
}
.start_btn:hover span {
  margin-left: 0;
  transition: all 0.6s;
}
.start_btn:hover .start_btn_right {
  transform: rotate(-90deg) scale(0);
  opacity: 0;
  transition: all 0.8s;
  right: -4rem;
}
.start_btn p {
  display: block;
  margin-left: 1rem;
  color: #fff;
  font-size: 1vw;
  transition: all 0.6s;
}
.start_btn span {
  display: block;
  color: #fff;
  font-size: 1.458vw;
  line-height: 1.5;
  letter-spacing: 0.08em;
  margin-left: 1rem;
  transition: all 0.6s;
  font-weight: 900;
}
.start_btn_right {
  position: absolute;
  bottom: 50%;
  right: -1.25vw;
  width: 2.5vw;
  height: 1px;
  background-color: #393939;
  transition: all 0.8s;
}
@media screen and (max-width: 768px) {
  .start_btn {
    width: calc(100% - 4rem);
    margin: 0 auto;
    height: 6rem;
    padding: 1.6vw 0;
    z-index: 2;
  }
  .start_btn p {
    margin-left: 1rem;
    font-size: 1.8rem;
    font-weight: 500;
  }
  .start_btn span {
    font-size: 2rem;
  }
  .start_btn_right {
    position: absolute;
    bottom: 50%;
    right: -1.25vw;
    width: 3rem;
    height: 1px;
    background-color: #393939;
    transition: all 0.8s;
  }
}

.btn_text {
  width: 50%;
  margin: 0 auto;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 768px) {
  .btn_text {
    width: 30rem;
  }
}

.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 4rem 2rem;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-sizing: border-box;
  z-index: 999;
}
.modal-container::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .modal-container {
    padding: 0;
  }
}

.modal-container.active {
  opacity: 1;
  visibility: visible;
}

.modal-body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 70%;
}
@media screen and (max-width: 768px) {
  .modal-body {
    width: calc(100% - 4rem);
  }
}

.modal-close {
  width: 3.2rem;
  height: 3.2rem;
  color: #5C4644;
  cursor: pointer;
}
.modal-close:hover {
  cursor: pointer;
}
.modal-close img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .modal-close {
    width: 1.8rem;
    height: 1.8rem;
  }
}

.modal-content {
  border: solid 2px #393939;
  background: #fff;
  border-radius: 3rem;
  text-align: left;
  padding: 30px;
  padding: 10rem;
}
.modal-content_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.08vw;
}
.modal-content h2 {
  font-size: 2.08vw;
  color: #1EAA8B;
  font-weight: bold;
}
.modal-content_text {
  font-size: 1.041vw;
  font-weight: 500;
  line-height: 1.8;
  border-top: solid 2px #DDDDDD;
  border-bottom: solid 2px #DDDDDD;
  padding: 2.082vw 0;
  margin-bottom: 2.082vw;
  letter-spacing: 0.05em;
}
.modal-content_text p {
  position: relative;
  margin-bottom: 1.041vw;
  padding-left: calc(1.041vw + 1rem);
}
.modal-content_text p::before {
  content: "";
  position: absolute;
  top: 0.4684166667vw;
  left: 0;
  width: 1.041vw;
  height: 1.041vw;
  background-color: #1EAA8B;
  border-radius: 100%;
}
.modal-content .start_btn {
  position: relative;
  pointer-events: all;
}
@media screen and (max-width: 768px) {
  .modal-content {
    padding: 4rem 2rem;
    overflow-x: scroll;
  }
  .modal-content_title {
    margin-bottom: 2.4rem;
  }
  .modal-content h2 {
    font-size: 6.28vw;
  }
  .modal-content p {
    margin-bottom: 2rem;
  }
  .modal-content p::before {
    width: 1rem;
    height: 1rem;
    top: 0.7rem;
  }
  .modal-content_text {
    font-size: 1.4rem;
    margin-bottom: 2.4rem;
  }
  .modal-content .start_btn {
    width: 100%;
  }
}

.l-header {
  background-color: #1EAA8B;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  border-radius: 0 0 4rem 4rem;
  border: 2px solid #393939;
  border-top: 0;
}
@media screen and (max-width: 768px) {
  .l-header {
    border-radius: 0 0 2rem 2rem;
  }
}

.header {
  width: 100%;
  height: 8.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.6rem 0;
}
.header_left {
  font-size: 1.45vw;
  font-weight: bold;
  color: #FEE781;
  margin-right: 2.3rem;
}
.header_right {
  font-size: 1.35vw;
  font-weight: bold;
  color: #fff;
}
.header_logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #fff;
  height: 7.4rem;
}
.header_logo figure {
  width: 15%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .header {
    display: block;
    text-align: center;
    height: auto;
    padding: 1.2rem 0;
  }
  .header_left {
    font-size: 1.3rem;
    margin-right: 0;
  }
  .header_right {
    font-size: 1.3rem;
  }
  .header_logo {
    padding-top: 2.2rem;
    padding-bottom: 1.6rem;
    height: 4.3rem;
  }
  .header_logo figure {
    width: 10.8rem;
  }
}

.l-top {
  background-image: url(../images/top_left_bg.svg), url(../images/top_right_bg.svg), url(../images/fv_bg.jpg);
  background-repeat: no-repeat;
  background-size: 7%, 20%, cover;
  background-position: top 15.8rem left, top 15.8rem right, center;
  padding: 0 5vw;
  padding-top: calc(3.125vw + 7.4rem + 8.4rem);
  padding-bottom: 6vw;
  position: relative;
}
.l-top .logo {
  position: absolute;
  top: calc(3.125vw + 7.4rem + 8.4rem);
  left: 6.5vw;
  width: 11vw;
}
@media screen and (max-width: 768px) {
  .l-top {
    padding: 0 2rem;
    padding-top: calc(5.7vw + 10.8rem);
    background-size: 18%, 31%, cover;
    background-position: top 10.8rem left, top 10.8rem right, center;
  }
  .l-top .logo {
    position: static;
    top: calc(5.7vw + 3rem);
    width: 20%;
    margin-bottom: 2rem;
    margin-left: 6rem;
  }
}

.top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.top_text {
  margin-bottom: 2rem;
  width: 70%;
}
.top_left {
  flex-basis: 40vw;
  padding-top: 4vw;
}
.top_left h2 {
  font-family: "Hiragino Sans";
  letter-spacing: 0.08em;
  line-height: 1;
}
.top_left_top {
  margin-bottom: 0.9375vw;
  color: #5C4644;
  font-size: 2.6vw;
  line-height: 1;
  font-weight: bold;
}
.top_left_top span {
  font-size: 3.5vw;
  color: #1EAA8B;
  letter-spacing: 0.1em;
  font-weight: bold;
}
.top_left_top span.you {
  color: #5C4644;
}
.top_left_mid {
  margin-bottom: 1.04vw;
  color: #5C4644;
  font-size: 2.6vw;
  line-height: 1;
  font-weight: bold;
}
.top_left_mid span {
  font-size: 3.125vw;
  color: #1EAA8B;
  letter-spacing: 0.1em;
  font-weight: bold;
}
.top_left_mid span.you {
  color: #5C4644;
}
.top_left_btm {
  display: inline-block;
  font-family: "Hiragino Sans";
  background-color: #5C4644;
  text-align: center;
  padding: 0.6vw 0.41vw;
  color: #fff;
  font-size: 2.7vw;
  font-weight: bold;
  margin-bottom: 2.08vw;
}
.top_left p {
  font-family: "Hiragino Sans";
  font-size: 1.45vw;
  line-height: 1.4;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: #5C4644;
}
.top_right {
  flex-basis: 60vw;
  position: relative;
}
.top_right .fv_img {
  width: 55vw;
  height: 36vw;
}
.top_right .fv_img figure {
  position: relative;
}
.top_right .fv_img img {
  width: 100%;
  height: 100%;
  transition: 0.5s;
  opacity: 0;
  transform: translateY(1em);
}
.top_right .fv_img .slick-active img {
  opacity: 1;
  transition: 0.5s 0.57s;
  transform: translateY(0);
}
.top_right .fv_point {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: -7vw;
  right: 0;
}
.top_right .fv_point_item {
  width: 10vw;
  height: 10vw;
  margin-left: -1.5rem;
}
.top_right .fv_point_item img {
  width: 100%;
  height: 100%;
}
.top_considerations {
  font-size: 0.93vw;
  font-weight: 500;
  color: #A3A3A3;
}
@media screen and (max-width: 768px) {
  .top {
    display: block;
  }
  .top_text {
    margin-bottom: 1.2rem;
    width: 90%;
  }
  .top_left_top {
    margin-bottom: 1.24vw;
    font-size: 2.8rem;
  }
  .top_left_top span {
    font-size: 3.6rem;
    letter-spacing: 0.1em;
  }
  .top_left_mid {
    margin-bottom: 1.5vw;
    font-size: 2.6rem;
  }
  .top_left_mid span {
    font-size: 3.6rem;
    letter-spacing: 0.1em;
  }
  .top_left_btm {
    padding: 0.6rem 0.4rem;
    font-size: 3rem;
    margin-bottom: 1.2rem;
  }
  .top_left p {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-bottom: 1.6rem;
  }
  .top_right {
    padding-top: 10.2rem;
  }
  .top_right .fv_img {
    width: 100%;
    height: auto;
    margin-bottom: 3rem;
  }
  .top_right .fv_point {
    justify-content: flex-start;
    bottom: auto;
    top: 0;
    right: auto;
    left: 0;
  }
  .top_right .fv_point_item {
    width: 9rem;
    height: 9rem;
    margin-left: -1.1rem;
  }
  .top_right .fv_point_item:nth-child(1) {
    margin-left: 0;
  }
  .top_considerations {
    font-size: 1.2rem;
  }
}

.l-about {
  overflow: hidden;
  position: relative;
  background-color: #FFFBF8;
  padding-top: 15vw;
  padding-bottom: 15vw;
  margin-top: 3.85vw;
  box-shadow: 0px 6px 8px 0px #D8D8D7;
}
.l-about_right {
  width: 26vw;
  position: absolute;
  top: 6rem;
  right: -5rem;
  z-index: 3;
}
.l-about_left {
  width: 25.3125vw;
  position: absolute;
  bottom: 3.1vw;
  left: -2rem;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .l-about {
    padding: 0 2rem;
    padding-top: 11rem;
    margin-top: 3rem;
    padding-bottom: 8rem;
  }
  .l-about_right {
    width: 25%;
    position: absolute;
    top: 0;
    right: -2rem;
  }
  .l-about_left {
    width: 25%;
    position: absolute;
    bottom: -2rem;
    left: -1rem;
  }
}
@media screen and (max-width: 375px) {
  .l-about_right {
    width: 35%;
  }
}

.about {
  position: relative;
  width: 86%;
  height: auto;
  padding-bottom: 4.7vw;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 3rem;
  border: 3px solid #393939;
  background-repeat: no-repeat;
  background-size: contain;
  text-align: center;
  background-position: center;
}
.about::before {
  content: "";
  position: absolute;
  top: -6.6vw;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  width: 27vw;
  height: 6.7vw;
  border-radius: 50%/100% 100% 0 0;
  background: #fff;
  border: 3px solid #393939;
  border-bottom: 0;
}
.about .section_title {
  position: relative;
  z-index: 2;
  width: 9.7vw;
  margin: 0 auto;
  padding-top: 1.8vw;
  margin-top: -3vw;
  margin-bottom: 4.1vw;
}
.about .section_title-about {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../images/about_title_mark.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 3.59vw;
  height: 1.25vw;
}
.about_text {
  margin-bottom: 2.5vw;
}
.about_text h2 {
  font-size: 2.7vw;
  font-weight: 900;
  color: #1EAA8B;
  margin-bottom: 2vw;
}
.about_text h2 span {
  display: inline-block;
  font-size: 3.1vw;
  color: #fff;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #000;
}
.about_text p {
  font-size: 1.25vw;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.about_considerations {
  font-size: 0.93vw;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #393939;
  font-weight: 600;
  margin-bottom: 2.6vw;
}
.about_considerations span {
  color: #1EAA8B;
}
.about_btm_text {
  margin: 0 auto;
  margin-top: 4rem;
}
.about_btm_text p {
  font-size: 0.833vw;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .about {
    width: 100%;
    padding-bottom: 6rem;
    margin: 0 auto;
    border: 2px solid #393939;
    text-align: left;
    background-position: center;
    border-radius: 1rem;
  }
  .about::before {
    content: "";
    top: -5.46rem;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    width: 60%;
    height: 5.5rem;
    border-radius: 50%/100% 100% 0 0;
    background: #fff;
    border: 2px solid #393939;
    border-bottom: 0;
  }
  .about .section_title {
    width: 20%;
    margin: 0 auto;
    padding-top: 2.4rem;
    margin-top: -3.5rem;
    margin-bottom: 2.4rem;
  }
  .about .section_title-about {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-size: contain;
    background-repeat: no-repeat;
    width: 4.8rem;
    height: 1.6rem;
  }
  .about_text {
    margin: 0 2rem;
    margin-bottom: 2.5vw;
  }
  .about_text h2 {
    font-size: 5vw;
    margin-bottom: 2.4rem;
    text-align: center;
  }
  .about_text h2 span {
    display: none;
  }
  .about_text p {
    font-size: 1.4rem;
    font-weight: 500;
  }
  .about_considerations {
    margin: 0 2rem;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    margin-bottom: 2.2rem;
    font-weight: 500;
  }
  .about_btm_text {
    margin: 0 2rem;
    margin-top: 4rem;
  }
  .about_btm_text p {
    font-size: 1.2rem;
    font-weight: 500;
  }
}

.l-experience {
  padding: 21vw 0;
  padding-top: 10.41vw;
  padding-bottom: 11.97vw;
}
@media screen and (max-width: 768px) {
  .l-experience {
    padding: 0 2rem;
    padding-top: 8rem;
    padding-bottom: 9rem;
  }
}

.experience {
  width: 57%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.experience .section_subtitle {
  margin-bottom: 6.25vw;
}
.experience_item {
  display: flex;
  align-items: center;
  border: 3px solid #393939;
  border-radius: 2rem;
  padding-top: 1.25vw;
  padding-bottom: 1.25vw;
  padding-left: 2vw;
  padding-right: 2vw;
  box-shadow: 12px 12px 0px 0px #D9D9D9;
  border-radius: 10px;
  margin-bottom: 3.75vw;
}
.experience_item-02 {
  padding-top: 3.125vw;
  padding-bottom: 3.125vw;
  margin-bottom: 0;
}
.experience_item_left {
  width: 20%;
  margin-right: 3vw;
}
.experience_item_right figure {
  width: 7.8vw;
  margin-bottom: 0.625vw;
}
.experience_item_right h2 {
  font-size: 1.6vw;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: bold;
  color: #1EAA8B;
  margin-bottom: 0.625vw;
}
.experience_item_right p {
  font-size: 1.1vw;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #393939;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .experience {
    width: 100%;
  }
  .experience .section_subtitle {
    margin-bottom: 4rem;
  }
  .experience_item {
    flex-direction: column;
    justify-content: center;
    border: 1.4px solid #393939;
    border-radius: 2rem;
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
    padding-left: 4rem;
    padding-right: 4rem;
    box-shadow: 10px 10px 0px 0px #D9D9D9;
    margin-bottom: 4rem;
  }
  .experience_item-02 {
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
    margin-bottom: 0;
  }
  .experience_item_left {
    width: 60%;
    margin-right: 0;
    margin-bottom: 2rem;
  }
  .experience_item_right figure {
    width: 30%;
    margin-bottom: 1rem;
    margin: 0 auto;
  }
  .experience_item_right h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
  }
  .experience_item_right p {
    font-size: 1.4rem;
    text-align: center;
  }
}

.l-recomemded {
  background-image: url(../images/recomemded_bg.svg), url(../images/recomemded_bg_btm.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top center, bottom center;
  padding: 21vw 0;
}
@media screen and (max-width: 768px) {
  .l-recomemded {
    padding: 21vw 2rem;
    padding-right: 3rem;
  }
}

.recomemded_items {
  width: 57%;
  max-width: 120rem;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}
.recomemded_item {
  flex-basis: calc(50% - 2.6vw);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #FAF6F3;
  border-radius: 2rem;
  padding: 4.2vw 3.4vw;
  padding-bottom: 4.1vw;
  position: relative;
  border: 1px solid #000;
  box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.25);
}
.recomemded_item_img {
  width: 100%;
  margin-bottom: 2rem;
}
.recomemded_item_num {
  width: 6.4vw;
  position: absolute;
  bottom: -2.5vw;
  right: 0.8vw;
}
.recomemded_item p {
  text-align: center;
  font-size: 1.1vw;
  color: #431613;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.recomemded_item p span {
  background: linear-gradient(transparent 70%, #E7C87B 70%);
}
.recomemded_item:nth-child(1) {
  margin-bottom: 2rem;
  margin-right: 2.6vw;
}
.recomemded_item:nth-child(3) {
  margin-bottom: 4rem;
  margin-right: 2.6vw;
}
.recomemded_item:nth-child(2) {
  margin-top: 8rem;
  margin-left: 2.6vw;
}
.recomemded_item:nth-child(4) {
  margin-top: 10rem;
  margin-left: 2.6vw;
}
@media screen and (max-width: 768px) {
  .recomemded_items {
    width: calc(100% - 8px);
    max-width: 120rem;
    margin: 0 auto;
    display: block;
    margin-bottom: 7rem;
  }
  .recomemded_item {
    flex-basis: calc(50% - 2.6vw);
    width: 100%;
    border-radius: 2rem;
    padding: 4.6rem 3.4vw;
    padding-bottom: 4.6rem;
    margin-bottom: 7.6rem;
  }
  .recomemded_item_img {
    width: 70%;
    margin-bottom: 1.4rem;
  }
  .recomemded_item_num {
    width: 8rem;
    position: absolute;
    bottom: -3.2rem;
    right: 0.8vw;
  }
  .recomemded_item p {
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
  .recomemded_item:nth-child(1) {
    margin-bottom: 0;
    margin-bottom: 8.6rem;
  }
  .recomemded_item:nth-child(3) {
    margin-bottom: 8.6rem;
    margin-right: 0;
  }
  .recomemded_item:nth-child(2) {
    margin-top: 0;
    margin-left: 0;
    margin-bottom: 8.6rem;
  }
  .recomemded_item:nth-child(4) {
    margin-top: 0;
    margin-left: 0;
    margin-bottom: 0;
  }
}

.l-feature {
  background-color: #FFFBF8;
  padding: 10vw 0;
}
@media screen and (max-width: 768px) {
  .l-feature {
    padding: 8rem 2rem;
  }
}

.feature_items {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 70%;
  margin-bottom: 4.16vw;
}
.feature_item {
  margin-bottom: 6rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-basis: 50%;
}
.feature_item:nth-child(1) {
  margin-bottom: 4.1vw;
}
.feature_item:nth-child(2) {
  margin-bottom: 4.1vw;
}
.feature_item:nth-child(4) {
  margin-bottom: 0;
}
.feature_title {
  display: flex;
  align-items: center;
  margin-bottom: 5rem;
}
.feature_title figure {
  width: 2.8vw;
  margin-right: 1.6rem;
}
.feature_title h2 {
  font-size: 1.6666666667vw;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: bold;
  color: #E5643C;
}
.feature_img {
  width: 55%;
  margin: 0 auto;
  margin-bottom: 4rem;
}
.feature_text {
  font-size: 1.25vw;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .feature_items {
    display: block;
    margin: 0 auto;
    width: 100%;
    margin-bottom: 5rem;
  }
  .feature_item:nth-child(1) {
    margin-bottom: 6rem;
  }
  .feature_item:nth-child(2) {
    margin-bottom: 6rem;
  }
  .feature_title {
    display: flex;
    align-items: center;
    margin-bottom: 5rem;
  }
  .feature_title figure {
    width: 5.5rem;
    margin-right: 1.6rem;
  }
  .feature_title h2 {
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
    font-weight: bold;
    color: #E5643C;
  }
  .feature_img {
    width: 65%;
    margin: 0 auto;
    margin-bottom: 2.8rem;
  }
  .feature_text {
    font-size: 1.4rem;
    letter-spacing: 0;
  }
}

.l-howto {
  padding-top: 6vw;
  padding-bottom: 10.5729166667vw;
  background-image: url(../images/fv_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l-howto {
    padding: 0 2rem;
    padding-top: 7.2rem;
    padding-bottom: 7.6rem;
  }
}

.howto_com {
  width: 72%;
  margin: 0 auto;
  height: 40vw;
  background-color: #393939;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2.4rem;
}
.howto_com h2 {
  font-size: 5rem;
  color: #fff;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 768px) {
  .howto_com {
    width: 100%;
    margin: 0 auto;
    height: 60vw;
  }
  .howto_com h2 {
    font-size: 4rem;
    color: #fff;
    font-family: "Roboto", sans-serif;
  }
}

.l-furniture {
  padding-top: 11.25vw;
  padding-bottom: 8.3333333333vw;
  background-color: #FFFBF8;
}
@media screen and (max-width: 768px) {
  .l-furniture {
    padding-top: 0;
    padding-bottom: 0;
    padding: 8rem 0;
  }
}

.furniture .comming {
  font-size: 1.6vw;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 2.6vw;
}
@media screen and (max-width: 768px) {
  .furniture .comming {
    font-size: 1.6rem;
  }
}
.furniture .section_subtitle {
  margin-bottom: 0;
}
.furniture p {
  font-size: 1.0416666667vw;
  line-height: 1.5;
  font-weight: 500;
  color: #5C4644;
  text-align: center;
  margin-top: 5rem;
  margin-bottom: 5.4166666667vw;
}
.furniture p .furniture_warning {
  display: block;
  font-size: 0.72vw;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #5C4644;
  opacity: 0.5;
  margin-top: 0.98vw;
}
.furniture_items {
  width: 70%;
  margin: 0 auto;
  margin-bottom: 4.1666666667vw !important;
  padding-bottom: 8rem;
}
.furniture_items .slick-arrow {
  position: absolute;
  bottom: 0;
  margin-top: -16px;
  width: 5rem;
  height: auto;
  opacity: 0.7;
  z-index: 3;
}
.furniture_items .slick-arrow:hover {
  cursor: pointer;
}
.furniture_items .prev-arrow {
  left: 20vw;
}
@media screen and (max-width: 1000px) {
  .furniture_items .prev-arrow {
    left: 8vw;
  }
}
.furniture_items .next-arrow {
  right: 20vw;
}
@media screen and (max-width: 1000px) {
  .furniture_items .next-arrow {
    right: 9vw;
  }
}
.furniture_items .slick-dots {
  bottom: 1.9rem !important;
}
.furniture_items .slick-dots li {
  height: 10px;
  width: 10px;
  margin: 0 1rem;
}
.furniture_items .slick-dots li button {
  width: 1rem;
  height: 1rem;
}
.furniture_items .slick-dots li button:before {
  content: "";
  width: 1rem;
  height: 1rem;
  background: #464646;
  opacity: 1;
  border-radius: 100%;
}
.furniture_items .slick-dots li.slick-active button:before {
  background: #E5643C;
}
.furniture_item {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-right: 0.7vw;
  margin-left: 0.7vw;
}
.furniture_item p {
  text-align: left;
  margin-top: 1rem;
  font-size: 0.83vw;
}
@media screen and (max-width: 768px) {
  .furniture {
    padding: 0 2rem;
  }
  .furniture p {
    font-size: 1.4rem;
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 5rem;
  }
  .furniture p .furniture_warning {
    font-size: 1.2rem;
    opacity: 0.5;
    margin-top: 0.8rem;
    line-height: 1.3;
  }
  .furniture_items {
    width: 100%;
    margin: 0 auto;
    margin-bottom: calc(4.1vw + 50px) !important;
    padding-bottom: 8.6rem;
  }
  .furniture_items .slick-arrow {
    position: absolute;
    bottom: 0;
    margin-top: -16px;
    width: 5rem;
    height: auto;
    opacity: 0.7;
    z-index: 10;
  }
  .furniture_items .prev-arrow {
    left: 2rem;
    bottom: 0;
  }
  .furniture_items .next-arrow {
    right: 2rem;
    bottom: 0;
  }
  .furniture_items .slick-dots {
    bottom: 21px !important;
  }
  .furniture_items .slick-dots li {
    height: 6px;
    margin: 0 0.5rem;
  }
  .furniture_items .slick-dots li:nth-child(1) {
    margin-left: 0;
  }
  .furniture_items .slick-dots li:last-child {
    margin-right: 0;
  }
  .furniture_items .slick-dots li button {
    width: 1rem;
    height: 1rem;
  }
  .furniture_items .slick-dots li button:before {
    content: "";
    width: 0.6rem;
    height: 0.6rem;
    background: rgba(70, 70, 70, 0.2);
    opacity: 1;
    border-radius: 100%;
  }
  .furniture_items .slick-dots li.slick-active button:before {
    background: #E5643C;
  }
  .furniture_item {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-right: 2.8vw;
    margin-left: 2.8vw;
  }
  .furniture_item p {
    font-size: 1.4rem;
  }
}

.l-faq {
  padding-top: 18rem;
  padding-bottom: 9rem;
}
@media screen and (max-width: 768px) {
  .l-faq {
    padding: 0 2rem;
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.faq {
  max-width: 120rem;
  margin: 0 auto;
}
.faq .section_title {
  letter-spacing: 0.48rem;
}
.faq .section_subtitle {
  margin-bottom: 6vw;
}
.faq_contents {
  width: 72%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.faq_left {
  flex-basis: 20%;
  margin-right: 10%;
}
.faq_left a {
  display: block;
  font-size: 0.83vw;
  color: #FFF;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.08rem;
  border-radius: 3rem;
  background: #5C4644;
  padding: 1.04vw 1.45vw;
  margin-bottom: 2rem;
  text-align: center;
}
.faq_left a:nth-child(even) {
  border: 1px solid #5C4644;
  color: #5c4644;
  background: transparent;
}
.faq_right {
  flex-basis: 70%;
}
.faq_ac {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 3.2rem;
}
.faq_ac:last-child {
  margin-bottom: 0;
}
.faq_ac_q {
  position: relative;
  cursor: pointer;
  transition: 0.1s;
  transition-delay: 0.4s;
  border-radius: 2rem;
  background: #1EAA8B;
  font-size: 1.25vw;
  color: #fff;
  font-weight: 700;
  padding: 2rem 4rem;
  padding-left: calc(4.6vw + 2rem);
  z-index: 2;
}
.faq_ac_q.active {
  transition: 0.1s;
  border-radius: 2rem 2rem 0 0;
}
.faq_ac_q.active span:nth-child(2) {
  transform: rotate(0deg);
  transition: transform 0.3s;
}
.faq_ac_q:before {
  content: "Q";
  font-family: "Roboto", sans-serif;
  font-size: 1.25vw;
  line-height: 2.6vw;
  text-align: center;
  color: #1EAA8B;
  position: absolute;
  left: 2vw;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 100%;
  width: 2.6vw;
  height: 2.6vw;
  background-color: #fff;
}
.faq_ac_q span {
  position: absolute;
  top: 1px;
  right: 20px;
  bottom: 0;
  width: 1.6vw;
  height: 2px;
  margin: auto;
  background: #fff;
}
.faq_ac_q span:nth-child(2) {
  transform: rotate(-90deg);
  transition: transform 0.3s;
}
.faq_ac_a {
  display: flex;
  justify-content: space-between;
  padding: 3.2rem 4rem;
  padding-left: calc(2vw - 3px);
  border-radius: 0 0 2rem 2rem;
  border: 3px solid #1EAA8B;
  background: #FFF;
  position: relative;
}
.faq_ac_a p {
  flex-basis: calc(100% - 2.6vw - 2rem);
  color: #393939;
  font-size: 1.04vw;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.1rem;
}
.faq_ac_a .icon_a {
  font-family: "Roboto", sans-serif;
  font-size: 1.25vw;
  line-height: 2.6vw;
  text-align: center;
  background-color: #1EAA8B;
  color: #fff;
  border-radius: 100%;
  height: 2.6vw;
  flex-basis: 2.6vw;
}
@media screen and (max-width: 768px) {
  .faq .section_title {
    letter-spacing: 0.48rem;
  }
  .faq .section_subtitle {
    margin-bottom: 5rem;
  }
  .faq_contents {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .faq_left {
    margin-right: 0;
    padding: 0 2rem;
    margin-bottom: 5rem;
  }
  .faq_left a {
    font-size: 1.4rem;
    padding: 2rem 2.8rem;
    margin-bottom: 1.2rem;
  }
  .faq_ac {
    width: 100%;
    margin-bottom: 2rem;
  }
  .faq_ac_q {
    border-radius: 1.2rem;
    font-size: 1.8rem;
    padding: 1.2rem 2rem;
    padding-left: 6.8rem;
    padding-right: 3.4rem;
  }
  .faq_ac_q.active {
    transition: 0.1s;
    border-radius: 1.2rem 1.2rem 0 0;
  }
  .faq_ac_q:before {
    content: "Q";
    font-size: 2rem;
    line-height: 3.6rem;
    position: absolute;
    left: 2rem;
    width: 3.6rem;
    height: 3.6rem;
  }
  .faq_ac_q span {
    position: absolute;
    top: 1px;
    right: 20px;
    bottom: 0;
    width: 2rem;
    height: 3px;
    margin: auto;
    background: #fff;
  }
  .faq_ac_q span:nth-child(2) {
    transform: rotate(-90deg);
    transition: transform 0.3s;
  }
  .faq_ac_a {
    display: flex;
    justify-content: space-between;
    padding: 2rem;
    padding-left: calc(2rem - 2px);
    border-radius: 0 0 2rem 2rem;
    border: 2px solid #1EAA8B;
  }
  .faq_ac_a p {
    flex-basis: calc(100% - 4.8rem);
    font-size: 1.4rem;
  }
  .faq_ac_a .icon_a {
    font-size: 2rem;
    line-height: 3.6rem;
    height: 3.6rem;
    flex-basis: 3.6rem;
  }
}

.l-footer {
  background-color: #3E3A39;
  padding: 6rem 0;
  padding-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .l-footer {
    padding: 6rem 0;
    padding-bottom: 4rem;
  }
}

.footer {
  text-align: center;
}
.footer h2 {
  font-size: min(4rem, 2.5vw);
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.05em;
  margin-bottom: 2.08vw;
}
.footer p {
  color: #fff;
}
.footer_top {
  font-size: 1.25vw;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 1vw;
}
.footer_contact {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25vw;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 1.875vw;
  color: #fff;
  line-height: 1;
}
.footer_contact a {
  display: flex;
  align-items: center;
  font-size: 1.25vw;
  color: #F7E182;
  line-height: 1;
  border-bottom: 1px solid #F7E182;
  padding-bottom: 3px;
}
.footer_contact a:hover {
  opacity: 0.7;
}
.footer_contact img {
  width: 1.25vw;
  height: 1em;
  vertical-align: middle;
  margin-top: 2px;
}
.footer_links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.footer_links_top {
  margin-bottom: 2rem;
}
.footer_links_btm {
  margin-bottom: 3.125vw;
}
.footer_links a {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 1.04vw;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: center;
  margin-left: 2.08vw;
  border-bottom: 1px solid #fff;
}
.footer_links a img {
  width: 1.04vw;
  margin-top: 2px;
  height: 1em; /* 画像の高さを文字の高さに合わせる */
  vertical-align: middle; /* 文字の中央に画像を配置 */
}
.footer_links a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .footer h2 {
    font-size: 4rem;
    margin-bottom: 4rem;
  }
  .footer p {
    color: #fff;
  }
  .footer_top {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
  }
  .footer_contact {
    display: block;
    font-size: 1.8rem;
    margin-bottom: 2.4rem;
    line-height: 1.5;
  }
  .footer_contact a {
    font-size: 1.8rem;
    margin-top: 1.2rem;
  }
  .footer_contact img {
    width: 1.8rem;
  }
  .footer_contact_kochira {
    display: inline-block;
  }
  .footer_holiday_title {
    font-size: 1.6rem;
    padding: 0 9.1rem;
  }
  .footer_holiday_title::before {
    width: 7.6rem;
  }
  .footer_holiday_title::after {
    width: 7.6rem;
  }
  .footer_holiday_text {
    font-size: 1.6rem;
    margin-bottom: 4rem;
  }
  .footer_links {
    flex-direction: column;
    margin-bottom: 0;
  }
  .footer_links_top {
    margin-bottom: 2.8rem;
  }
  .footer_links a {
    font-size: 1.6rem;
    margin-bottom: 2.8rem;
    margin-left: 0;
  }
  .footer_links a img {
    width: 1.6rem;
    margin-top: 2px;
  }
  .footer_links a:last-child {
    margin-bottom: 0;
  }
}

.copy {
  background-color: #7D7371;
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
  padding: 0.7rem 0;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .copy {
    font-size: 1.2rem;
    padding: 1rem 0;
  }
}/*# sourceMappingURL=style.css.map */