@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
}

:root {
  --main-color: #3a1909;
  --sub-color: #5d5780;
}

html {
  font-size: 62.5%;
}

html * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-size: 1.6rem;
  text-align: justify;
  font-family: "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", Osaka, Verdana, sans-serif;
  line-height: 1.5;
  font-weight: 400;
  color: #000000;
}

ul, ol {
  list-style-type: none;
}
a {
  text-decoration: none;
}
a:hover {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  opacity: 0.8;
}
img {
  width: 100%;
}

.main-color {
  color: var(--main-color);
}
.white {
  color: #FFFFFF;
}
.section-container {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
}

.section-ttl {
  font-size: 3.6rem;
  font-weight: 900;
  word-break: keep-all;
  text-align: center;
  position: relative;
}
.sp-only{
  display: none;
}
.btn {
  font-weight: 700;
  font-style: normal;
  text-align: center;
  border: none;
  width: 200px;
  height: 44px;
  padding: 9px 0;
  font-size: 16px;
  border-radius: 50px;
}

@media only screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
  .sp-only{
    display: block;
  }
  .section-ttl {
    font-size: 3rem;
  }
  .section-container {
    padding-left: 10px;
    padding-right: 10px;
  }

}

/* HEADER */
#header {
  margin-top: 8px;
  position: fixed;
  width: 100%;
  z-index: 100;
  height: 72px;
}
#header .headerWrap {
  max-width: 1360px;
  width: 96%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 25px;
  background-color: #fff;
  border-radius: 50px;
}
#header .logo {
  width: 146px;
  aspect-ratio: 146 / 57;
  vertical-align: -webkit-baseline-middle;
}
#header .headerWrap #headertop {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.headerMenu {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  #header {
    margin-top: inherit;
    height: 58px;
  }
  #header .logo {
    width: 112px;
  }
  #header .headerWrap {
    border-radius: inherit;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
/*ハンバーガーボタン*/
@media only screen and (max-width: 768px) {
  .hamburger {
    width: 30px;
    height: 50px;
    cursor: pointer;
    text-align: center;
    position: relative;
    margin-left: 10px;
  }
  .hamburger span {
    display: block;
    position: absolute;
    z-index: 101;
    width: 30px;
    height: 2px;
    border-radius: 30px;
    background-color: var(--main-color);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .hamburger span:nth-child(1) {
    top: 15px;
  }
  .hamburger span:nth-child(2) {
    top: 25px;
  }
  .hamburger span:nth-child(3) {
    top: 35px;
  }
  .hamburger.active span:nth-child(1) {
    top: 23px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .hamburger.active span:nth-child(2), .hamburger.active span:nth-child(3) {
    top: 23px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}

.globalMenu .navList {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 0;
}
.globalMenu .navList li {
  text-align: center;
  display: inline-block;
  padding: 0 3.6rem;
  line-height: 1;
}
.globalMenu .navList li:not(:first-child) {
  border-left: 1px solid var(--main-color);
}
.globalMenu .navList li a {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}
.contact-btn {
  text-align: center;
  padding: 1rem 4.5rem;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  font-weight: bold;
  border-radius: 50px;
  background-color: var(--sub-color);
  color: #FFFFFF;
  line-height: 1;
}

@media only screen and (max-width: 1119px) {
  .globalMenu .navList li {
    padding: 0 1.5rem;
  }
  .contact-btn {
    padding: 1rem 2.5rem;
    align-self: center;
  }
}

/* ナビ開いてる時のボタン */
@media only screen and (max-width: 768px) {
  .globalMenu {
    position: absolute;
    z-index: 101;
    top: 100%;
    right: 11%;
    display: none;
    background-color: #e1d8c6;
    text-align: left;
    padding: 40px;
    transition: .4s all;
  }
  .globalMenu .navList {
    flex-direction: column;
    gap: 20px;
    margin: 0 auto;
    padding: 0;
    width: 100%;
  }
  .globalMenu .navList li {
    margin: 0 2em;
    padding: 0;
    width: 100%;
    -webkit-transition: .4s all;
    transition: .4s all;
    text-align: left;
  }
  .globalMenu .navList li:last-child {
    padding-bottom: 0;
  }
  .globalMenu .navList li:not(:first-child) {
    border-left: none;
  }
  .globalMenu .navList li a {
    padding: 20px 3%;
    padding: 1em 0;
  }
  .globalMenu .navList li a:hover {
    opacity: 0.8;
  }
  .globalMenu.active {
    display: block;
  }
  .globalMenu div {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
  }
  .globalMenu div .btn{
    width: 250px;
  }
  #headertop h1 {
    height: 70px;
  }
}

/*メインビジュアル*/
.mv-bg {
  background-image: url(../images/mv_01.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 60 / 29;
  margin: 0 auto;
}
.mv-container {
  display: flex;
  justify-content: flex-start;
  padding: 15% 0 0;
}
.mv-txt p {
  position: relative;
  font-size: 2.2rem;
  font-weight: bold;
  background-color: var(--main-color);
  border-radius: 5px;
  text-align: center;
  padding: 12px 17px;
  display: inline-block;
  line-height: 1;
}
.mv-txt p::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 15px;
  clip-path: polygon(0% 100%, 30% 0%, 100% 0%);
  background-color: var(--main-color);
  top: 100%;
  left: calc(50% - 9px);
  z-index: 2;
}
.mv-txt h2 {
  margin-top: 40px;
  text-align: left;
  font-size: 6rem;
}
.mv-txt h2 .big {
  display: block;
  font-size: 8rem;
}

@media only screen and (max-width: 1119px) {
  .mv-container {
    padding: 14% 2% 0;
  }
  .mv-txt p {
    font-size: clamp(1.6rem, 2vw, 2.2rem);
  }
  .mv-txt h2 {
    margin-top: 30px;
    font-size: clamp(3.5rem, 5vw, 6rem);
  }
  .mv-txt h2 .big {
    font-size: clamp(5.5rem, 6vw, 8rem);
  }
}

@media only screen and (max-width: 768px) {
  .mv {
    padding-top: 58px;
  }
  .mv-bg {
    background-image: url(../images/mv_02.jpg);
    aspect-ratio: 195 / 223;
    background-position: top center;
  }
  .mv-container {
    flex-direction: column;
    padding-top: 4%;
  }
  .mv-txt {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .mv-txt h2 {
    font-size: clamp(3.9rem, 8vw, 6rem);
    margin-top: 3%;
    display: inline-block;
  }
  .mv-txt h2 .big {
    font-size: clamp(4.9rem, 9vw, 8rem);
    letter-spacing: -0.02em;
  }
  .mv-txt p {
    font-size: clamp(1.5rem, 3vw, 3.2rem);
    width: 72%;
    padding: 12px 7px;
  }
}

/*出張整体とは*/
.about {
  padding-top: 88px;
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.banner {
  padding-bottom: 105px;
}
.about .round {
  position: absolute;
  width: 37%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  top: 3%;
  right: -10%;
  z-index: -1;
  max-width: 80rem;
}
.about .round:nth-of-type(2) {
  top: inherit;
  bottom: -10%;
  left: -10%;
}
.about-container {
  margin-top: 67px;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.about .description {
  width: 47%;
  text-align: left;
}
.about .description h4 {
  font-size: clamp(2.5rem, 2.5vw, 3rem);
  color: #5d5780;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.about .description p {
  margin-top: 1em;
}
.about .person-img {
  width: 49%;
  aspect-ratio: 1060 / 707;
}
.section-ttl.main-color {
  display: inline-block;
}
.section-ttl.main-color::after {
  content: "";
  position: absolute;
  width: 186px;
  height: auto;
  top: 100%;
  left: calc(50% - 93px);
  background-image: url(../images/under-line.png);
  background-size: cover;
  aspect-ratio: 187 / 12;
}
@media only screen and (max-width: 1119px) {
  .banner .section-container {
    width: 90%;
  }
}
@media only screen and (max-width: 768px) {
  .about {
    padding-top: 50px;
    padding-bottom: 70px;
  }
  .banner {
    padding-bottom: 105px;
  }
  .about-container {
    flex-direction: column;
    row-gap: 30px;
  }
  .about .description {
    width: 100%;
  }
  .about .person-img {
    width: 90%;
    margin: 0 auto;
  }
  .about .round {
    width: 45%;
  }
  .about .round:nth-of-type(2) {
    bottom: 0;
  }
}

.section-ttl.white::before {
  content: "・";
  margin-right: 22px;
}
.section-ttl.white::after {
  margin-left: 22px;
  content: "・";
}

/*サービス*/
.service {
  background-color: #e1d8c6;
  position: relative;
  border-radius: 20px 20px 0 0;
  text-align: center;
  padding-bottom: 87px;
}
.service .section-ttl {
  background-color: var(--main-color);
  border-radius: 20px 20px 0 0;
  padding: 22px 0;
}
.service-list {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 30px 50px;
  align-items: center;
}
.service-list li {
  font-size: clamp(2rem, 2vw, 2.8rem);
  font-weight: bold;
}
.service-list li::before {
  content: "";
  display: inline-block;
  background-image: url(../images/service-check.png);
  background-size: cover;
  aspect-ratio: 67 / 56;
  width: 33px;
  height: auto;
  margin-right: 10px;
  vertical-align: middle;
}
.service .section-container > p {
  font-size: clamp(1.9rem, 1.6vw, 2.4rem);
  width: 80%;
  margin: 20px auto;
  padding-top: 20px;
  border-top: 1px solid var(--main-color);
}
.waveline {
  text-decoration: #ff5c00 wavy underline;
  text-underline-offset: 7px;
}
.service-container {
  margin-top: 55px;
  display: flex;
  justify-content: center;
  gap: 45px;
  align-items: flex-start;
}
.service-container > div{
  background-color: #FFFFFF;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  text-align: center;
  position: relative;
  z-index: 1;
  width: 25%;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-direction: column;
  box-shadow: 7px 7px 0 var(--sub-color);
}
.service-container > div:nth-of-type(odd) {
  margin-top: 85px;
}
.service-container > div p {
  font-size: clamp(1.7rem, 1.6vw, 2.2rem);
  font-weight: bold;
  color: var(--sub-color);
  letter-spacing: 0.05em;
}
.service-container > div img {
  display: block;
  width: 20%;
  margin: 0 auto;
}
#wave_01 {
  position: absolute;
  top: 99.9%;
  width: 100%;
  left: 0;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .sevice {
    padding-bottom: 70px;
  }
  .service .section-ttl {
    padding: 10px 0;
  }
  .service-container {
    gap: 0;
  }
  .service-container > div {
    width: 30%;
  }
  .service .section-container > p {
    font-size: clamp(1.8rem, 2vw, 2.4rem);
    word-break: keep-all;
  }
  .service-list {
    justify-content: flex-start;
    flex-wrap: wrap;
    text-align: left;
    width: 80%;
    margin: 50px auto 20px;
  }
  .service-list li {
    width: 45%;
  }
  .service-container > div p {
    font-size: clamp(1rem, 2.5vw, 1.8rem);
  }
}
@media only screen and (max-width: 650px) {
  .service-list {
    width: 55%;
  }
  .service-list li {
    width: 100%;
  }
}
/*導入の流れ*/
.flow {
  padding-top: 120px;
  padding-bottom: 100px;
  text-align: center;
  background-image: url(../images/flow-bg.png);
  background-size: contain;
  background-repeat: repeat;
  overflow: hidden;
  position: relative;
}
.flow ol {
  margin-top: 40px;
  counter-reset: num;
}
.flow ol li {
  position: relative;
  font-size: 2.4rem;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
  counter-increment: num;
  color: #273063;
}
.flow ol li::before {
  content: counter(num);
  font-size: 5.6rem;
  font-style: italic;
  line-height: 1;
}
.flow ol li img {
  height: 20rem;
  object-fit: contain;
  aspect-ratio: 1 / 1;
}

.flow .flow-img {
  position: absolute;
  object-fit: cover;
  z-index: 2;
  width: 40vw;
}
.flow .flow-img:nth-of-type(1) {
  aspect-ratio: 1654 / 1148;
  max-width: 827px;
  top: 7%;
  right: 72vw;
}
.flow .flow-img:nth-of-type(2) {
  aspect-ratio: 1454 / 901;
  max-width: 726px;
  top: 50%;
  left: 70vw;
}
.flow .flow-img:nth-of-type(3) {
  aspect-ratio: 1099 / 1074;
  max-width: 548px;
  bottom: -2%;
  right: 65vw;
}
.flow .confetti {
  position: absolute;
  width: 30vw;
  object-fit: cover;
  z-index: 1;
}
.flow .confetti:nth-of-type(4) {
  aspect-ratio: 910 / 744;
  max-width: 455px;
  top: -2%;
  left: 80vw;
}
.flow .confetti:nth-of-type(5) {
  aspect-ratio: 1240 / 1211;
  max-width: 620px;
  top: 50%;
  right: 75vw;
}
.flow .confetti:nth-of-type(6) {
  aspect-ratio: 708 / 974;
  max-width: 354px;
  bottom: -5%;
  left: 76vw;
}

@media only screen and (max-width: 768px) {
  .flow {
    padding-top: 90px;
    padding-bottom: 70px;
  }
  .flow ol {
    grid-template-columns: 250px;
    justify-content: center;
    row-gap: 65px;
  }
}
@media only screen and (max-width: 650px) {
  .flow ol li {
    font-size: 2rem;
  }
  .flow ol li::before {
    font-size: 4rem;
  }
  .flow ol li img {
    height: 15rem;
  }
  .flow .flow-img:nth-of-type(1) {
    top: 12%;
    right: 63vw;
  }
  .flow .flow-img:nth-of-type(2) {
    width: 48vw;
    left: 65vw;
    top: 49%;
  }
  .flow .flow-img:nth-of-type(3) {
    bottom: -1.5%;
  }
  .flow .confetti {
    width: 40vw;
  }
}

/*料金*/
.price {
  padding-top: 100px;
  padding-bottom: 100px;
  text-align: center;
  background-color: var(--sub-color);
  position: relative;
}
.price dl {
  margin: 50px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  max-width: 900px;
  letter-spacing: 0.05em;
}
.price dt,
.price dd {
  text-align: left;
  background-color: #FFFFFF;
  color: var(--main-color);
}
.price dt {
  width: 18%;
  text-align: center;
  font-weight: bold;
  font-size: 2.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.price dd {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 80%;
  font-size: 1.7rem;
  padding: 25px 30px;
}
.price dd p {
  width: 40%;
}
.price dd p+p {
  width: 55%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 20px;
  text-align: center;
}
.price .fee {
  font-size: 3rem;
  font-style: italic;
  font-weight: bold;
}
.price .introduce {
  font-size: 1.9rem;
  background-color: var(--main-color);
  color: #FFFFFF;
  padding: 3px 0;
}

#wave_02 {
  position: absolute;
  bottom: 99.9%;
  width: 100%;
  left: 0;
  z-index: 2;
}
#wave_03 {
  position: absolute;
  top: 99.9%;
  width: 100%;
  left: 0;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .price {
    padding-top: 50px;
    padding-bottom: 70px;
  }
  .price dl {
    margin-top: 40px;
  }
  .price dd {
    flex-direction: column;
  }
  .price dd p {
    width: 100%;
  }
  .price dd p+p {
    width: 80%;
  }
  .price .introduce {
    font-size: clamp(1rem, 3vw, 1.9rem);
  }
}

/*お問い合わせ*/
.contact {
  padding-top: 150px;
  padding-bottom: 50px;
}
.contact-container {
  background-color: #00b900;
  border-radius: 30px;
  display: flex;
  justify-content: space-between;
  padding: 50px 100px;
  align-items: center;
}
.contact-container > div {
  display: flex;
  justify-content: center;
  gap: 18px;
  align-items: center;
}
.contact-container > div p {
  color: #FFFFFF;
  font-size: 4.1rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.contact-container img {
  object-fit: contain;
}
.contact-container > div img {
  aspect-ratio: 167 / 159;
  width: 23%;
}
.contact-container > img {
  aspect-ratio: 1 / 1;
  width: 22%;
}
@media only screen and (max-width: 1080px) {
  .contact-container > div p {
    font-size: clamp(1.8rem, 3.4vw, 4.1rem);
  }
}
@media only screen and (max-width: 768px) {
  .contact {
    padding-top: 70px;
    padding-bottom: 30px;
  }
  .contact-container {
    flex-wrap: wrap;
    padding: 30px 100px;
    justify-content: center;
    gap: 20px;
  }
  .contact-container > div p {
    font-size: clamp(1.6rem, 4vw, 4.1rem);
  }
  .contact-container > img {
    width: 30%;
  }
}
@media only screen and (max-width: 650px) {
  .contact-container {
    padding: 30px 45px;
  }
}

/*店舗一覧*/
.shoplist {
  padding-top: 50px;
  padding-bottom: 80px;
  text-align: center;
}
.shop-container {
  text-align: left;
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.shop-container ul li {
  margin-bottom: 30px;
  font-family: YuMincho, "Hiragino Mincho ProN", serif;
  font-size: 1.6rem;
  letter-spacing: -0.05em;
}
@media only screen and (max-width: 768px) {
  .shoplist {
    padding-bottom: 70px;
  }
  .shop-container {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
    width: 90%;
    margin: 70px auto 0;
  }
}

/*FOOTER*/
#footer {
  background-color: var(--main-color);
  border-radius: 20px 20px 0 0;
}

#footer .footerNavArea {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}

.footer-logo {
  width: 82px;
}
#footer .footerNav {
  display: flex;
  gap: 35px;
  justify-content: flex-start;
  flex-grow: 1;
}
#footer .footerNav ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 10px 25px;
}
#footer .footerNav a {
  font-size: 1.6rem;
  color: #FFFFFF;
  letter-spacing: 0.1em;
}

#footer .footerNav ul a:before {
  margin-right: 8px;
  content: "▼";
}
#footer .footerNav a.prapoli {
  font-size: 1.2rem;
  font-weight: normal;
}
.copyright {
  font-size: 1.2rem;
  color: #FFFFFF;
  font-family: YuMincho, "Hiragino Mincho ProN", serif;
  letter-spacing: 0.05em;
}
#footer a.contact-btn {
  background-color: #e1d8c6;
  color: var(--main-color);
  align-self: center;
}
@media only screen and (max-width: 768px) {
  #footer .footerNav a.contact-btn {
    width: 45vw;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 650px) {
  #footer .footerNav {
    justify-content: center;
  }
  #footer .footerNav ul {
    flex-direction: column;
  }
  .copyright {
    letter-spacing: 0.03em;
  }
}

/*プライバシーポリシー*/
.privacypolicy {
  padding-top: 100px;
  padding-bottom: 100px;
}
#header.prapoli-header {
  margin-top: inherit;
}
#header.prapoli-header .headerWrap {
  border-radius: inherit;
}

.privacypolicy h2 {
  font-size: 3.6rem;
  color: var(--main-color);
}
.privacypolicy .section-container p {
  margin-top: 50px;
  margin-bottom: 30px;
}
.privacypolicy .section-container > ol li:not(:first-child) {
  margin-top: 20px;
}
.privacypolicy .section-container > ol > li > ol li {
  margin-top: 15px;
}
.privacypolicy .section-container h3 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  color: var(--sub-color);
}
.privacypolicy .section-container > ol ol {
    list-style-type: decimal;
    margin-left: 40px;
}
.privacypolicy dl {
  margin-top: 15px;
  margin-left: 40px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.privacypolicy dt {
  width: 20%;
}
.privacypolicy dd {
  width: 80%;
}
#footer.prapoli-footer .footerNav div {
  display: flex;
  align-items: flex-end;
}
@media only screen and (max-width: 768px) {
  .privacypolicy {
    padding-bottom: 70px;
  }
  .privacypolicy h2 {
    font-size: 3rem;
  }
  .privacypolicy .section-container h3 {
    font-size: 2.2rem;
  }
  .privacypolicy dt,
  .privacypolicy dd {
    width: 100%;
  }
  .privacypolicy dd {
    margin-left: 20px;
  }
  .privacypolicy .section-container > ol ol {
    margin-left: 25px;
  }
}