@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");
.fade {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 0.8s;
  transition-timing-function: ease-out;
}
.fade.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

b {
  font-weight: bold;
}

.center {
  text-align: center;
}

.zen {
  font-family: "Zen Maru Gothic", sans-serif;
  font-style: normal;
}

.bg-blue {
  background: #4B89C7 !important;
  color: #fff;
}
.bg-blue * {
  color: #fff;
}

.bg-green {
  background: #4BC789 !important;
  color: #fff;
}
.bg-green * {
  color: #fff;
}

.yellow {
  color: #FCFFA6;
}

.blue {
  color: #4B89C7 !important;
}

.green {
  color: #4BC789 !important;
}

.none {
  display: none;
}

@media screen and (max-width: 1100px) {
  .sp_flex-show {
    display: flex !important;
  }
}
@media screen and (min-width: 1101px) {
  .sp_flex-show {
    display: none !important;
  }
}

@media screen and (max-width: 1100px) {
  .pc_flex-show {
    display: none !important;
  }
}
@media screen and (min-width: 1101px) {
  .pc_flex-show {
    display: flex !important;
  }
}

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

@media screen and (max-width: 1100px) {
  .pc-show {
    display: none !important;
  }
}
@media screen and (min-width: 1051px) {
  .pc-show {
    display: block !important;
  }
}

body * {
  color: #222;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1.8;
}
body h1, body h2, body h3, body h4, body h5 {
  font-weight: bold;
}
body h1 *, body h2 *, body h3 *, body h4 *, body h5 * {
  font-weight: bold;
}
body p, body a, body b {
  font-size: 16px;
}
@media screen and (max-width: 1100px) {
  body p, body a, body b {
    font-size: 4.2105263158vw;
  }
}
body p {
  line-height: 2;
}
body small {
  font-family: "Zen Maru Gothic", sans-serif;
  font-style: normal;
  display: block;
}
body small + small {
  margin-top: 0 !important;
}
body a {
  text-decoration: unset;
  cursor: pointer;
  transition: 0.3s;
}
body a.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  letter-spacing: 0.1em;
  position: relative;
  color: #fff;
  width: 300px;
  height: 50px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 25px;
  text-align: center;
  background: #4B89C7;
  border: 2px solid #4B89C7;
}
body a.btn:hover {
  background: #fff;
  color: #4B89C7;
}
body a.btn.greenbtn {
  background: #4BC789;
  border: 2px solid #4BC789;
}
body a.btn.greenbtn:hover {
  background: #fff;
  color: #4BC789;
}
body ul, body li {
  list-style: none;
}
body table {
  display: table;
}
body input[type=text], body select, body textarea {
  display: block;
  width: 100%;
}
body select {
  cursor: pointer;
}
body .flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
body .flex .reverse {
  flex-direction: row-reverse;
}
body img, body picture {
  display: block;
  max-width: 100%;
  height: auto;
}
body .slick-dotted.slick-slider {
  margin-bottom: 0;
}
body #top-btn {
  position: fixed;
  bottom: 30px;
  right: calc(50% - 260px + 20px);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.25);
}
body #top-btn:before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../img/icon-top.svg) no-repeat;
  background-size: contain;
  width: 14px;
  height: 9px;
}
body #top-btn:hover {
  box-shadow: unset;
}
body #top-btn.on {
  opacity: 1;
  pointer-events: auto;
}
@media screen and (max-width: 1100px) {
  body #top-btn {
    bottom: 16vw;
    right: 4vw;
    width: 10.6666666667vw;
    height: 10.6666666667vw;
    border: unset;
    box-shadow: 0.6666666667vw 0.6666666667vw 1.0666666667vw rgba(0, 0, 0, 0.1);
  }
  body #top-btn:before {
    width: 2.9333333333vw;
    height: 1.3333333333vw;
    left: 52%;
  }
}
body header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 100;
}
body header ul {
  display: flex;
  justify-content: flex-end;
  padding: 20px 30px;
}
body header ul li a {
  font-weight: bold;
  display: flex;
  align-items: center;
  padding: 0 15px;
  height: 50px;
  position: relative;
}
body header ul li a:before {
  transition: 0.3s;
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background: #4B89C7;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  transform-origin: center;
}
body header ul li a:hover {
  color: #4B89C7;
}
body header ul li a:hover:before {
  width: calc(100% - 30px);
}
body footer {
  background: #222;
}
body footer * {
  color: #fff;
}
body footer {
  padding: 100px 0;
}
body footer ul {
  display: flex;
  justify-content: center;
}
body footer ul li a {
  font-weight: bold;
  display: flex;
  align-items: center;
  padding: 0 15px;
  height: 50px;
  position: relative;
}
body footer ul li a:before {
  transition: 0.3s;
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background: #4B89C7;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  transform-origin: center;
}
body footer ul li a:hover {
  color: #4B89C7;
}
body footer ul li a:hover:before {
  width: calc(100% - 30px);
}
body footer .main {
  text-align: center;
  font-size: 40px;
  letter-spacing: 0.01em;
  font-weight: bold;
  margin: 0 0 20px;
}
body footer small {
  text-align: center;
}
body .float {
  transition: 0.3s;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  border-radius: 10px 0 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  padding-top: 40px;
  color: #fff;
  font-weight: 500;
  text-align: center;
  font-size: 14px;
  width: 50px;
  height: 180px;
  padding-bottom: 10px;
  background: #4B89C7 url(../img/icon-mail-white.svg) no-repeat top 20px center;
  background-size: 20px;
  writing-mode: vertical-rl;
  border: 2px solid #4B89C7;
  border-right: unset;
}
body .float:hover {
  background: #fff url(../img/icon-mail.svg) no-repeat top 20px center;
  background-size: 20px;
  color: #4B89C7;
}
body article .ticker-wrapper {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  padding: 20px 0;
}
body article .ticker-wrapper .ticker-content {
  display: inline-block;
  font-weight: bold;
}
body article .ticker-wrapper .ticker-content span {
  display: inline-block;
  padding-right: 50px;
  font-weight: bold;
  font-size: 100px;
  line-height: 1;
  color: #4B89C7;
}
body article .ticker-wrapper .ticker-content.reverse span {
  color: transparent;
  -webkit-text-stroke: 2px #4B89C7;
}
body article section {
  position: relative;
}
body article section .inner {
  padding: 100px 40px;
  max-width: 1280px;
  margin: 0 auto;
}
body article section .inner h2 span {
  display: block;
  text-align: left;
  letter-spacing: 0.1em;
}
body article section .inner h2 span.ja {
  font-size: 32px;
}
body article section .inner h2 span.en {
  margin-top: 10px;
  font-size: 20px;
}
body article section .inner h2 + p {
  margin-top: 30px;
}
body article section.mv {
  height: 100vh;
  overflow: hidden;
}
body article section.mv .txt {
  max-width: 1200px;
  width: 100%;
  position: absolute;
  z-index: 10;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin-bottom: 45px;
}
body article section.mv .txt h1 span {
  line-height: 1;
  display: block;
}
body article section.mv .txt h1 span * {
  display: inline;
}
body article section.mv .txt h1 span.main {
  font-size: 80px;
  letter-spacing: 0.01em;
  margin-bottom: 30px;
}
body article section.mv .txt h1 span.sub {
  font-size: 30px;
  margin-bottom: 25px;
}
body article section.mv .txt h1 span.catch {
  font-size: 32px;
}
body article section.mv .txt p {
  margin-top: 50px;
  font-size: 20px;
}
body article section.mv canvas {
  opacity: 0.9;
  pointer-events: none;
}
body article section.about .inner h2 {
  margin-bottom: 50px;
}
body article section.about .inner .flex {
  align-items: center;
}
body article section.about .inner .flex .txt {
  max-width: 600px;
}
body article section.about .inner .flex .txt h3 {
  letter-spacing: 0.1em;
  font-size: 24px;
}
body article section.about .inner .flex .txt h3 + p {
  margin-top: 20px;
}
body article section.about .inner .flex .txt + .txt {
  margin-top: 50px;
}
body article section.about .inner .flex img {
  width: 500px;
  height: 480px;
  -o-object-fit: contain;
     object-fit: contain;
}
body article section.about .inner .flex:nth-child(odd) {
  flex-direction: row-reverse;
}
body article section.about .inner .flex + .flex {
  margin-top: 50px;
}
body article section.works {
  background: #eee;
  border-radius: 40px 40px 0 0;
}
body article section.works .inner small {
  margin-top: 20px;
}
body article section.works .inner .flex {
  justify-content: center;
  gap: 20px;
  margin: 50px auto;
}
body article section.works .inner .flex .flex-item {
  width: 300px;
}
body article section.works .inner .flex .flex-item * {
  width: 100%;
}
body article section.works .inner .flex .flex-item img {
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  height: 200px;
}
body article section.works .inner .flex .flex-item .ttl {
  margin: 20px 0 15px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
}
body article section.plan .inner h2 + p {
  margin-bottom: 80px;
}
body article section.plan .inner h3 {
  letter-spacing: 0.1em;
  font-size: 28px;
  margin-bottom: 30px;
}
body article section.plan .inner .cost {
  padding: 40px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
  position: relative;
  justify-content: center;
  gap: 80px;
  row-gap: 0;
}
body article section.plan .inner .cost h3 {
  width: 100%;
  text-align: center;
}
body article section.plan .inner .cost .flex-item {
  width: 300px;
  height: 50px;
  font-weight: 500;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  letter-spacing: 0.1em;
}
body article section.plan .inner .cost + .cost {
  margin-top: 50px;
}
body article section.plan .inner .content {
  margin-top: 80px;
}
body article section.plan .inner .content > .flex {
  gap: 30px;
  row-gap: 100px;
}
body article section.plan .inner .content > .flex .flex-item {
  padding: 80px 40px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
  position: relative;
  gap: 50px;
  width: 550px;
}
body article section.plan .inner .content > .flex .flex-item::before {
  background: url(../img/icon-pin.png) no-repeat;
  background-size: contain;
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 80px;
  height: 80px;
}
body article section.plan .inner .content > .flex .flex-item small {
  margin-top: 1rem;
}
body article section.plan .inner .content > .flex .flex-item h4, body article section.plan .inner .content > .flex .flex-item .sub {
  line-height: 1;
  letter-spacing: 0.1em;
}
body article section.plan .inner .content > .flex .flex-item h4 {
  font-size: 28px;
}
body article section.plan .inner .content > .flex .flex-item .sub {
  font-weight: bold;
  font-size: 20px;
  margin-top: 20px;
}
body article section.plan .inner .content > .flex .flex-item .txt {
  margin-top: 50px;
}
body article section.plan .inner .content > .flex .flex-item .board ul {
  padding: 30px 0;
}
body article section.plan .inner .content > .flex .flex-item .board ul li {
  font-size: 14px;
  position: relative;
}
body article section.plan .inner .content > .flex .flex-item .board ul li:before {
  content: "・";
}
body article section.plan .inner .content > .flex .flex-item .board .price {
  display: flex;
}
body article section.plan .inner .content > .flex .flex-item .board .price span {
  font-weight: bold;
}
body article section.plan .inner .content > .flex .flex-item .board .price .yen, body article section.plan .inner .content > .flex .flex-item .board .price b {
  padding-left: 10px;
  font-size: 18px;
}
body article section.plan .inner .content > .flex .flex-item .board .price .yen .tax, body article section.plan .inner .content > .flex .flex-item .board .price b .tax {
  opacity: 0.6;
}
body article section.plan .inner .content > .flex .flex-item .board .price + .price {
  margin-top: 15px;
}
body article section.plan .inner .content > .flex .flex-item .flex {
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}
body article section.plan .inner .content > .flex .flex-item .flex .btn {
  margin: 0;
}/*# sourceMappingURL=style.css.map */