@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Marcellus&family=Noto+Sans+JP:wght@400;500;700&display=swap");
/* ------------------------------
    reset
------------------------------ */
html {
  font-size: 62.5%;
  overflow-y: scroll;
}
@media screen and (max-width: 1440px) {
  html {
    font-size: 0.6944444444vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.5641025641vw;
  }
}

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

body, h1, h2, h3, h4, h5, h6, p, address, time,
ul, ol, li, dl, dt, dd,
table, th, td, img, figure, figcaption,
form, input, button, textarea, select {
  margin: 0;
  padding: 0;
  border: none;
  line-height: 100%;
  list-style-type: none;
  font-style: normal;
  font-weight: normal;
  font-family: "游ゴシック体", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "メイリオ", Meiryo, sans-serif;
  color: #323232;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: normal;
  line-break: strict;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input, button, textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  resize: none;
  outline: none;
  background: none;
}

select::-ms-expand {
  display: none;
}

button:hover {
  cursor: pointer;
}

a {
  text-decoration: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: opacity;
  transform: translate3d(0, 0, 0);
  color: #323232;
  transition: opacity 0.3s ease;
}

img, object {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

/* ------------------------------
    base
------------------------------ */
html.is-fixed {
  overflow: hidden;
}

body {
  color: #323232;
  font-size: 1rem;
  text-align: left;
}
body.is-fixed {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
body.is-fixed .l-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

section {
  position: relative;
}

main {
  display: block;
}

p, th, td, dt, dd, li, input, button, textarea {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.03em;
}

.fade {
  transition: opacity 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.fade img {
  outline: 1px solid transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.fade:hover {
  opacity: 0.7;
  cursor: pointer;
}

.h-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateZ(0);
}

.v-center {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateZ(0);
}

.hv-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateZ(0);
}

.flex {
  display: flex;
  justify-content: space-between;
}

.tal {
  text-align: left;
}

.tar {
  text-align: right;
}

.tac {
  text-align: center;
}

.left {
  float: left;
}

.right {
  float: right;
}

.center {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
  a,
  a * {
    outline: none;
  }
}
@media screen and (max-width: 767px) {
  body {
    min-width: inherit;
  }
  input, textarea, select, textarea {
    font-size: 16px;
  }
}
/* ------------------------------
    layout
------------------------------ */
.l-wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.l-container {
  position: relative;
  width: 100%;
  max-width: 110rem;
  margin: 0 auto;
}

/* ------------------------------
    component
------------------------------ */
.c-deco {
  position: absolute;
}

.c-tel-btn__link,
.c-form-btn__link {
  position: relative;
  width: 32rem;
  height: 6rem;
  border-radius: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  font-weight: 700;
  margin: auto;
}
.c-tel-btn__link::before, .c-tel-btn__link::after,
.c-form-btn__link::before,
.c-form-btn__link::after {
  position: absolute;
  content: "";
}
.c-tel-btn__link::before,
.c-form-btn__link::before {
  width: 1.1rem;
  height: 1.1rem;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  right: 2.2rem;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  z-index: 2;
}
.c-tel-btn__link::after,
.c-form-btn__link::after {
  width: 100%;
  height: 100%;
  border-radius: 8rem;
  z-index: -1;
  transition: 0.4s ease;
  transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  left: 0;
  top: 0;
}
@media print and (any-hover: hover), screen and (any-hover: hover) and (min-width: 768px) {
  .c-tel-btn__link:hover::after,
  .c-form-btn__link:hover::after {
    transform: scale(1.05);
  }
}
.c-tel-btn__txt,
.c-form-btn__txt {
  display: block;
  font-size: 1.2rem;
  text-align: center;
  margin-top: 0.6rem;
}

.c-tel-btn__link {
  letter-spacing: 0.05em;
}
.c-tel-btn__link::before {
  background: #ECB403;
}
.c-tel-btn__link::after {
  background: #ECB403;
}

.c-form-btn__link {
  letter-spacing: 0;
}
.c-form-btn__link::before {
  background: #72BB2A;
}
.c-form-btn__link::after {
  background: #72BB2A;
}

.c-more-btn__link {
  position: relative;
  letter-spacing: 0;
  font-size: 1.9rem;
  font-family: "Marcellus", serif;
}
@media print and (any-hover: hover), screen and (any-hover: hover) and (min-width: 768px) {
  .c-more-btn__link {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .c-more-btn__link:hover {
    opacity: 0.7;
  }
}
.c-more-btn__link::before {
  position: absolute;
  content: "";
  background: url("../img/icn_arrow.svg") no-repeat center center/contain;
  width: 1.1rem;
  height: 1.7rem;
  right: -3.4rem;
  top: 50%;
  transform: translateY(-50%);
}

.c-ttl {
  display: flex;
  flex-direction: column;
}
.c-ttl.-center {
  align-items: center;
}
.c-ttl__en {
  font-family: "Marcellus", serif;
  font-size: 1.7rem;
  letter-spacing: 0.05em;
}
.c-ttl__jp {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  margin-top: 2rem;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .c-ttl__jp {
    margin-top: 1.8rem;
  }
}

.c-subttl {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.c-subttl.-left {
  align-items: flex-start;
}
.c-subttl__en {
  font-family: "Marcellus", serif;
  font-size: 1.4rem;
  letter-spacing: 0;
}
.c-subttl__jp {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  margin-top: 0.8rem;
  letter-spacing: 0;
}

/* ------------------------------
    ユーティリティ
------------------------------ */
.u-en {
  font-family: "Marcellus", serif;
}

.u-green {
  color: #72BB2A;
}

.u-blue {
  color: #20ABE3;
}

.u-pink {
  color: #ED82B1;
}

.u-orange {
  color: #EF7E00;
}

.u-yel {
  color: #ECB403;
}

/* ------------------------------
    header
------------------------------ */
.l-header {
  background-color: transparent;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 98;
  transition: all 0.3s ease;
}
.l-header__inner {
  position: relative;
  width: 100%;
  padding: 0 0 0 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.4s ease;
}
@media screen and (min-width: 768px) {
  .l-header__inner::before {
    position: absolute;
    content: "";
    background: url("../img/bg_nav.png") no-repeat center center/cover;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    width: calc(100% - 6rem);
    height: 100%;
    border-radius: 10rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    visibility: hidden;
    opacity: 0;
    transition: 0.4s ease 0.1s;
  }
  .l-header__inner.is-change {
    transform: translateY(2rem);
  }
  .l-header__inner.is-change::before {
    visibility: visible;
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    height: 6.7rem;
    padding: 0 0 0 2.6rem;
  }
}
.l-header__left {
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-header__left {
    height: 6.7rem;
    z-index: 999;
    width: 100%;
  }
}
.l-header__logo {
  position: relative;
  width: 20.4rem;
}
@media print and (any-hover: hover), screen and (any-hover: hover) and (min-width: 768px) {
  .l-header__logo {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .l-header__logo:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    width: 13.9rem;
    z-index: 999;
    padding-top: 2rem;
  }
}
.l-header__menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0 3rem;
  height: 9rem;
  padding: 0 6.8rem 0 6rem;
  border-bottom-left-radius: 4rem;
}
.l-header__menu li a {
  position: relative;
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
}
.l-header__menu li a::before {
  position: absolute;
  content: "";
  background: #20ABE3;
  width: 100%;
  height: 1px;
  bottom: -0.4rem;
  left: 0;
  opacity: 0;
  transition: 0.4s ease;
}
@media print and (any-hover: hover), screen and (any-hover: hover) and (min-width: 768px) {
  .l-header__menu li a:hover {
    color: #20ABE3;
  }
  .l-header__menu li a:hover::before {
    opacity: 1;
  }
}

@media screen and (max-width: 767px) {
  .l-header__nav {
    position: fixed;
    right: 0;
    top: 0;
    transform: translateY(-100%);
    width: 100%;
    height: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
  }
  .l-header__nav-inner {
    position: relative;
    z-index: 997;
    overflow-y: auto;
    background: url("../img/bg_nav_sp.png") no-repeat center top/100%;
    padding: 15rem 0 12.4rem;
  }
  .l-header__menu {
    flex-direction: column;
    gap: 2.2rem 0;
    background-color: transparent;
    height: auto;
    border-radius: 0;
  }
  .l-header__menu li a {
    color: #323232;
  }
  .l-header__trigger {
    position: relative;
    z-index: 999;
    width: 7.5rem;
    height: 6.7rem;
    padding: 0 0 0.3em 0.3em;
    background: linear-gradient(180deg, rgb(227, 244, 252) 0%, rgb(210, 240, 252) 100%);
    border-bottom-left-radius: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
  }
  .l-header__line {
    position: relative;
    width: 3rem;
    height: 1.4rem;
  }
  .l-header__line span {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 3rem;
    height: 0.2rem;
    background: #323232;
    transition: all 0.3s ease-out;
  }
  .l-header__line span:nth-of-type(1) {
    top: 0;
  }
  .l-header__line span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  .l-header__line span:nth-of-type(3) {
    bottom: 0;
  }
  .l-header__change {
    font-family: "Marcellus", serif;
    font-size: 1.1rem;
    text-align: center;
    margin-top: 0.6rem;
  }
  .l-header.is-active .l-header__line span:nth-of-type(1) {
    top: 50%;
    transform: translateY(-50%) rotate(-30deg);
  }
  .l-header.is-active .l-header__line span:nth-of-type(2) {
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
  }
  .l-header.is-active .l-header__line span:nth-of-type(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(30deg);
  }
  .l-header.is-active .l-header__nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .l-header.is-active .l-header__left::before {
    position: absolute;
    content: "";
    background: #fff;
    top: 0;
    left: 0;
    height: 6.7rem;
    width: 39rem;
    margin-left: -2.6rem;
    z-index: 997;
  }
  .l-header__contact {
    margin-top: 4rem;
  }
  .l-header__form {
    margin-top: 1.2rem;
  }
}
/* ------------------------------
    footer cloud
------------------------------ */
.p-cloud-footer {
  position: relative;
  z-index: 2;
}
.p-cloud-footer img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 39.2rem;
}

/* ------------------------------
    footer
------------------------------ */
.l-footer {
  position: relative;
  width: 100%;
  background: #f8f8f8;
}
.l-footer::before {
  position: absolute;
  content: "";
  background: url("../img/img_footer_cloud_pc.png") no-repeat center top/100%;
  width: 100%;
  height: 43rem;
  top: -35rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 1680px) {
  .l-footer::before {
    top: -42rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer::before {
    background-image: url("../img/img_footer_cloud_sp.png");
    height: 20.9rem;
    top: -15.6rem;
  }
}
.l-footer__container {
  display: flex;
  gap: 0 11.3rem;
}
@media screen and (max-width: 767px) {
  .l-footer__container {
    flex-direction: column;
    align-items: center;
    padding: 0 2rem;
  }
}
.l-footer__contact {
  width: 100%;
  background: #fff;
  border-radius: 2.7rem;
  padding: 2.8rem 0 4rem;
}
@media screen and (max-width: 767px) {
  .l-footer__contact {
    padding: 3rem 0 5.5rem;
  }
}
.l-footer__btn {
  display: flex;
  justify-content: center;
  gap: 0 4rem;
  margin: 2.8rem auto 0;
}
@media screen and (max-width: 767px) {
  .l-footer__btn {
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-top: 3.6rem;
  }
}
.l-footer__btm {
  padding-top: 22.6rem;
  padding-left: 4.7rem;
  padding-right: 8.3rem;
  padding-bottom: 3.8rem;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .l-footer__btm {
    flex-direction: column;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-top: 3rem;
    gap: 2rem 0;
  }
}
.l-footer__ill img {
  width: 90.9rem;
}
@media screen and (max-width: 767px) {
  .l-footer__ill img {
    width: 37rem;
  }
}
.l-footer__copy {
  font-size: 1.2rem;
  font-weight: 500;
  padding-bottom: 1rem;
}

.l-footer-topbtn {
  position: fixed;
  right: 7rem;
  bottom: 8rem;
  width: 6.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 97;
}
@media screen and (max-width: 767px) {
  .l-footer-topbtn {
    right: 1.8rem;
  }
}
.l-footer-topbtn__img {
  width: 100%;
}
.l-footer-topbtn__txt {
  font-family: "Marcellus", serif;
  font-size: 2rem;
  letter-spacing: 0;
  text-align: center;
  line-height: 1.2;
}
.l-footer-topbtn__link {
  transition: transform 0.4s ease;
}
@media print and (any-hover: hover), screen and (any-hover: hover) and (min-width: 768px) {
  .l-footer-topbtn__link:hover {
    transform: translateY(-2rem);
  }
}

.l-footer-left {
  width: 11rem;
  display: flex;
}
@media screen and (max-width: 767px) {
  .l-footer-left {
    width: 100%;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
  }
}
.l-footer-left__sub {
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  writing-mode: vertical-rl;
  letter-spacing: 0.116em;
  margin-left: 0.8em;
}
@media screen and (max-width: 767px) {
  .l-footer-left__sub {
    font-size: 1.4rem;
    writing-mode: inherit;
    margin-left: auto;
    margin-right: auto;
  }
}
.l-footer-left__ttl {
  width: 54rem;
}

.l-footer-right {
  width: 80rem;
  padding-top: 1.4rem;
}
@media screen and (max-width: 767px) {
  .l-footer-right {
    width: 100%;
    padding-top: 0;
  }
}
.l-footer-right__head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .l-footer-right__head {
    flex-direction: column;
    align-items: center;
    margin-bottom: 3.5rem;
  }
}
.l-footer-right__info {
  width: 30rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .l-footer-right__info {
    width: 100%;
    text-align: center;
  }
}
.l-footer-right__logo {
  width: 22.9rem;
}
@media screen and (max-width: 767px) {
  .l-footer-right__logo {
    margin: 0 auto;
  }
}
.l-footer-right__address {
  font-size: 1.4rem;
  font-weight: 500;
  margin-top: 3.2rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .l-footer-right__address {
    margin-top: 1rem;
    white-space: normal;
  }
}
.l-footer-right__menu {
  -moz-column-count: 2;
       column-count: 2;
  margin-top: 1.8rem;
}
@media screen and (max-width: 767px) {
  .l-footer-right__menu {
    width: 100%;
    -moz-column-count: 1;
         column-count: 1;
    margin-top: 3.2rem;
  }
}
.l-footer-right__menu li {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 2.8;
}
.l-footer-right__menu li:nth-child(n+4) {
  margin-left: 1.8em;
}
@media screen and (max-width: 767px) {
  .l-footer-right__menu li {
    margin-left: auto !important;
    margin-right: auto;
    text-align: center;
  }
}
.l-footer-right__menu li a {
  display: block;
  position: relative;
}
.l-footer-right__menu li a::before {
  position: absolute;
  content: "";
  background: #323232;
  width: 100%;
  height: 1px;
  bottom: 0.5rem;
  left: 0;
  opacity: 0;
  transition: 0.4s ease;
}
@media print and (any-hover: hover), screen and (any-hover: hover) and (min-width: 768px) {
  .l-footer-right__menu li a:hover::before {
    opacity: 1;
  }
}

/* ------------------------------
    responsive
------------------------------ */
@media screen and (min-width: 1440px) {
  .pc-none {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .sp-none {
    display: none !important;
  }
}
/* ------------------------------
    clearfix
------------------------------ */
.cf {
  zoom: 1;
}
.cf::after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  overflow: hidden;
  font-size: 0.1em;
  line-height: 0;
}

/* ------------------------------
    scroll animation
------------------------------ */
.loadanim.fade-in,
.scroll.fade-in {
  opacity: 0;
  transition: opacity 1.5s ease;
}
.loadanim.is-show.fade-in,
.scroll.is-show.fade-in {
  opacity: 1;
}
.loadanim.fade-up,
.scroll.fade-up {
  opacity: 0;
  transform: translateY(3rem);
  transition: opacity 1.5s ease, transform 1.5s ease;
}
.loadanim.is-show.fade-up,
.scroll.is-show.fade-up {
  opacity: 1;
  transform: translateY(0);
}
.loadanim.fade-up2,
.scroll.fade-up2 {
  opacity: 0;
  transform: translateY(3rem);
  transition: opacity 0.3s ease-in, transform 0.3s ease-in;
}
.loadanim.is-show.fade-up2,
.scroll.is-show.fade-up2 {
  opacity: 1;
  transform: translateY(0);
}
.loadanim.fade-scale,
.scroll.fade-scale {
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.5s cubic-bezier(0.65, -0.55, 0.265, 1.55);
}
.loadanim.is-show.fade-scale,
.scroll.is-show.fade-scale {
  opacity: 1;
  transform: scale(1);
}

.delay1 {
  transition-delay: 0.5s !important;
}

.delay2 {
  transition-delay: 1s !important;
}

.delay3 {
  transition-delay: 1.5s !important;
}
/*# sourceMappingURL=common.css.map */