@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  font-family: "Zen Maru Gothic", "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  background: #fff;
  line-height: 1;
  letter-spacing: 0.1em;
  overflow-x: hidden;
  margin: 0 auto;
  padding: 40px;
}
body::before, body::after {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  width: 40px;
  z-index: 100;
  background: url("../images/line_tate.svg") repeat-y center top;
  background-size: contain;
  pointer-events: none;
}
body::before {
  left: 0;
}
body::after {
  right: 0;
}

#loading {
  position: fixed;
  z-index: 9999;
  inset: 0;
  width: 100dvw;
  height: 100dvh;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s;
}
#loading img {
  width: 100px;
  height: 100px;
  animation: rotate-logo 4s linear infinite;
}

@keyframes rotate-logo {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
body.loaded #loading {
  opacity: 0;
  pointer-events: none;
}

.line-top, .line-bottom {
  position: fixed;
  left: 0;
  right: 0;
  height: 40px;
  z-index: 101;
  background: url("../images/line_yoko.svg") repeat-x left center;
  background-size: contain;
  pointer-events: none;
}

.line-top {
  top: 0;
}

.line-bottom {
  bottom: 0;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  border-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  transition: all 0.3s ease;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

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

.main-visual {
  position: relative;
  z-index: 1;
}
@media (min-width: 1480px) {
  .main-visual .container {
    max-width: 1400px;
  }
}
.main-visual__cont {
  padding: 200px 0 140px;
}
.main-visual__cont .row {
  justify-content: space-between;
  align-items: center;
}
.main-visual__cont .col-lg-5 {
  text-align: center;
  max-width: 520px;
}
.main-visual__txt {
  font-size: 6.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-bottom: 75px;
}
.main-visual__txt span {
  color: #dfaa00;
  margin-right: 18px;
}
@media (max-width: 1440px) {
  .main-visual__txt {
    font-size: 4.8rem;
  }
}
@media (max-width: 1200px) {
  .main-visual__txt {
    font-size: 4.4rem;
  }
}
@media (max-width: 575px) {
  .main-visual__txt {
    font-size: 2.4rem;
  }
}
.main-visual__logo {
  max-width: 440px;
  margin-bottom: 50px;
}
.main-visual__bg {
  position: absolute;
  width: 100%;
  height: 720px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
  top: 0;
  z-index: -1;
}

.btn-instagram {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 10vw;
  max-width: 80px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #333;
  top: 80px;
  right: 80px;
  z-index: 99;
  transition: background-color 0.3s;
  overflow: hidden;
}
.btn-instagram img {
  width: 5vw;
  max-width: 40px;
  z-index: 2;
}
.btn-instagram::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(45deg, #f9ce34 0%, #ee2a7b 50%, #6228d7 100%);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
  pointer-events: none;
}
.btn-instagram:hover::after {
  opacity: 1;
}
.btn-contact {
  width: 70vw;
  display: flex;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  border: 2px solid;
  transition: all 0.3s ease;
  padding: 0 5%;
}
.btn-contact img {
  max-height: 60px;
  transition: all 0.3s ease;
}
.btn-contact--mainvis {
  max-width: 540px;
  height: 90px;
  border-radius: 45px;
  border-color: #eb6b30;
}
.btn-contact--mainvis:hover {
  background-color: #eb6b30;
}
.btn-contact--mainvis:hover img {
  content: url(../images/mainvis_btn--on.svg);
}
.btn-contact--normal {
  max-width: 580px;
  height: 120px;
  border-radius: 8.165px;
  border-color: #d25000;
}
.btn-contact--normal:hover {
  background-color: #d25000;
}
.btn-contact--normal:hover img {
  content: url(../images/contact_btn--on.svg);
}

.about {
  position: relative;
  padding: 275px 0 120px;
  margin-top: -255px;
  background-image: url(../images/bg_logoicon.svg), url(../images/bg_logoicon.svg);
  background-repeat: no-repeat;
  background-size: min(40vw, 700px);
  background-position: top -10px left -48px, bottom 10vw right -48px;
}
.about-cont {
  position: relative;
  z-index: 10;
  text-align: center;
  letter-spacing: 0.1em;
}
.about-cont h2 {
  font-size: 4.8rem;
  font-weight: 500;
  margin-bottom: 85px;
}
.about-cont p {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 2.33;
}
.about-cont p span {
  color: #fff;
  background-color: #333;
  border-radius: 4px;
  padding: 0 7px;
  margin: 0 5px;
}
.about-plan {
  position: relative;
  max-width: 1200px;
  margin: 180px auto 0;
  border: 2px solid #dfaa00;
  border-radius: 10px;
  background: linear-gradient(90deg, #fcf6e5 0% 55%, #fff 55% 100%);
}
.about-plan h3 {
  position: absolute;
  top: -40px;
  width: 360px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #dfaa00;
  font-size: 3.2rem;
  font-weight: 500;
  border-radius: 10px;
  left: 50%;
  transform: translateX(-50%);
  letter-spacing: 0.1em;
}
.about-plan--cont {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about-plan--menu {
  width: 55%;
  max-width: 660px;
  padding: 65px 0 50px;
}
.about-plan--menu ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 10px;
  padding: 0 20px;
}
.about-plan--menu ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 500;
  height: 40px;
  border-radius: 20px;
  color: #fff;
  background: #925e7d;
  padding: 0 20px;
  white-space: nowrap;
  list-style: none;
}
.about-plan--menu ul li.pickup {
  width: 40%;
  font-size: 2.4rem;
  height: 50px;
  border-radius: 25px;
  background-color: #eb6b30;
}
.about-plan--price {
  width: 45%;
  max-width: 540px;
  text-align: center;
  padding: 65px 0 50px;
  border-radius: 0 10px 10px 0;
}
.about-plan--price img {
  max-width: 375px;
}

.contact {
  padding: 60px 5%;
  background-color: #eb6b30;
  text-align: center;
}
.contact h2 {
  color: #fff;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-bottom: 42px;
}
.contact .btn-contact {
  margin: 0 auto;
}

.history {
  text-align: center;
  background-color: #fcf6e5;
  padding: 57px 0;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
}
.history h2 {
  width: -moz-fit-content;
  width: fit-content;
  height: 30px;
  display: flex;
  font-size: 2rem;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #333;
  border-radius: 4px;
  padding: 0 7px;
  margin: 0 auto 20px;
}
.history p {
  margin-bottom: 30px;
}
.history p:last-child {
  margin-bottom: 0;
}

footer {
  background-color: #f9eecc;
  text-align: center;
  padding: 36px 0;
}
footer ul {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 20px;
}
footer ul li:first-child {
  margin-bottom: 15px;
}
footer ul li a {
  position: relative;
  display: inline-flex;
  align-items: center;
}
footer ul li a:hover {
  text-decoration: underline;
}
footer ul li a::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 17.5px;
  height: 13px;
  margin-left: 4px;
  background: url("../images/ico_blank.svg") no-repeat center/contain;
}
footer span {
  font-size: 8px;
  font-weight: 500;
}

@media (max-width: 1440px) {
  body {
    padding: 24px;
  }
  body::before, body::after {
    width: 24px;
  }
  .line-top, .line-bottom {
    height: 24px;
  }
  .btn-contact--mainvis {
    max-width: 400px;
  }
}
@media (max-width: 992px) {
  body {
    padding: 12px;
  }
  body::before, body::after {
    width: 12px;
  }
  .line-top, .line-bottom {
    height: 12px;
  }
  .main-visual__cont {
    padding: 80px 5%;
  }
  .main-visual__cont .row {
    gap: 50px;
    justify-content: center;
  }
  .main-visual__cont .col-lg-7 {
    order: 2;
  }
  .main-visual__cont .col-lg-5 {
    order: 1;
  }
  .main-visual__txt {
    margin-bottom: 50px;
    text-align: center;
  }
  .main-visual__txt span {
    margin-right: 10px;
  }
  .main-visual__bg {
    height: max(90vh, 800px);
  }
  .btn-instagram {
    top: 25px;
    right: 25px;
  }
  .btn-instagram img {
    width: 60%;
  }
  .btn-contact {
    margin: 0 auto;
  }
  .btn-contact img {
    height: 50px;
  }
  .btn-contact--mainvis {
    max-width: none;
    background-color: #eb6b30;
  }
  .btn-contact--mainvis img {
    content: url(../images/mainvis_btn--on.svg);
  }
  .about {
    margin-top: -155px;
    background-size: 50vw;
    background-position: top -10px left -24px, bottom 5vw right -24px;
  }
  .about-plan {
    width: 95%;
    background: #fcf6e5;
  }
  .about-plan--cont {
    flex-flow: column;
  }
  .about-plan--menu, .about-plan--price {
    width: 100%;
  }
  .about-plan--menu {
    order: 2;
    padding: 50px 0;
  }
  .about-plan--menu ul {
    justify-content: center;
    gap: 10px;
  }
  .about-plan--price {
    order: 1;
    background: #fff;
    max-width: none;
    border-radius: 10px 10px 0 0;
    padding: 75px 0 50px;
  }
}
@media (max-width: 575px) {
  .btn-contact {
    width: 100%;
  }
  .btn-contact--mainvis {
    height: 70px;
  }
  .btn-contact--normal {
    height: 90px;
  }
  .about {
    margin-top: -105px;
    background-position: top 10vw left -24px, bottom 10vw right -24px;
    background-size: 70vw;
  }
  .about-cont h2 {
    font-size: 3rem;
    margin-bottom: 50px;
  }
  .about-cont p {
    font-size: 1.6rem;
  }
  .about-plan {
    margin: 120px auto 0;
  }
  .about-plan h3 {
    width: 80%;
    font-size: 2.4rem;
  }
  .about-plan--menu {
    padding: 30px 0;
  }
  .about-plan--menu ul {
    padding: 0 5%;
  }
  .about-plan--menu ul li {
    width: 100%;
    font-size: 1.6rem;
    height: 36px;
  }
  .about-plan--menu ul li.pickup {
    width: 100%;
    font-size: 2rem;
    height: 45px;
  }
  .about-plan--price img {
    width: 80%;
  }
  .contact h2 {
    font-size: 2.4rem;
  }
}
/* アニメーション */
.fadein {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.77, 0, 0.175, 1);
}
.fadein.is-show {
  opacity: 1;
}

.fadein-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.77, 0, 0.175, 1), transform 1s cubic-bezier(0.77, 0, 0.175, 1);
}
.fadein-up.is-show {
  opacity: 1;
  transform: none;
}

.fadein-down {
  opacity: 0;
  transform: translateY(-40px);
  transition: opacity 1s cubic-bezier(0.77, 0, 0.175, 1), transform 1s cubic-bezier(0.77, 0, 0.175, 1);
}
.fadein-down.is-show {
  opacity: 1;
  transform: none;
}

.fadein-left {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s cubic-bezier(0.77, 0, 0.175, 1), transform 1s cubic-bezier(0.77, 0, 0.175, 1);
}
.fadein-left.is-show {
  opacity: 1;
  transform: none;
}

.fadein-right {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s cubic-bezier(0.77, 0, 0.175, 1), transform 1s cubic-bezier(0.77, 0, 0.175, 1);
}
.fadein-right.is-show {
  opacity: 1;
  transform: none;
}/*# sourceMappingURL=style.css.map */