@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd, ul, ol {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  color: #333;
  background: #F2F0ED;
  line-height: 2;
  text-align: left;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
  font-size: 1rem;
}
@media (max-width: 767px) {
  body {
    font-size: 0.875rem;
    line-height: 1.7;
  }
}

img, picture, svg, video, canvas {
  max-width: 100%;
  display: block;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  appearance: none;
}

button {
  cursor: pointer;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
a:not([class]) {
  text-decoration-skip-ink: auto;
}

.pc-br {
  display: block;
}
@media (max-width: 767px) {
  .pc-br {
    display: none;
  }
}

.sp-br {
  display: none;
}
@media (max-width: 767px) {
  .sp-br {
    display: block;
  }
}

i, em {
  font-style: normal;
}

/*------------------------------------------------------------
ラッパー
------------------------------------------------------------*/
#wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.inner {
  padding: 0 clamp(90px, calc(5.8823529412vw + 67.0588235294px), 180px);
  margin: 0 auto;
}
@media all and (max-width: 1440px) {
  .inner {
    padding: 0 clamp(30px, calc(3.9215686275vw + 14.7058823529px), 90px);
  }
}

/*------------------------------------------------------------
nav関連
------------------------------------------------------------*/
.smenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  z-index: 1000;
  transition: all 0.3s ease;
}
.smenu.act {
  padding: 20px;
  height: 80px;
}
.smenu .logo {
  z-index: 1100;
}
.smenu .logo img {
  height: 42px;
  width: auto;
}
@media all and (max-width: 767px) {
  .smenu {
    padding: 20px;
    height: 80px;
  }
}

.nav-btn {
  position: relative;
  z-index: 1100;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-btn span, .nav-btn span::before, .nav-btn span::after {
  content: "";
  position: absolute;
  left: 50%;
  translate: -50% 0;
  width: 30px;
  height: 2px;
  background: #333;
  transition: 0.3s;
  border-radius: clamp(3px, calc(0.1960784314vw + 2.2352941176px), 6px);
}
.nav-btn span {
  top: 50%;
  translate: -50% -50%;
}
.nav-btn span::before {
  top: -9px;
}
.nav-btn span::after {
  top: 9px;
}

.nav-open .nav-btn span {
  background: transparent;
}
.nav-open .nav-btn span::before {
  top: 0;
  rotate: 45deg;
}
.nav-open .nav-btn span::after {
  top: 0;
  rotate: -45deg;
}

.nav-content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.4s;
}
.nav-content ul {
  list-style: none;
  text-align: center;
}
.nav-content ul li {
  margin-bottom: 15px;
}
.nav-content ul li a {
  font-size: clamp(14px, calc(0.1307189542vw + 13.4901960784px), 16px);
  font-weight: bold;
}

.nav-open .nav-content {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/*------------------------------------------------------------
footer
------------------------------------------------------------*/
.grad_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(300px, calc(1.3071895425vw + 294.9019607843px), 320px);
  max-width: 100%;
  height: 64px;
  margin: 0 auto;
  color: #fff;
  border-radius: 100vh;
  text-decoration: none;
  font-weight: bold;
  background: linear-gradient(270deg, #3bade3 0%, #576fe6 25%, #9844b7 51%, #ff357f 100%);
  background-size: 200% auto;
  background-position: 0% 50%;
  transition: all 0.5s ease;
}
.grad_btn:hover {
  background-position: 100% 50%;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(87, 111, 230, 0.3);
}

.grad_btn:hover {
  color: #fff;
  background-position: 99% 50%;
}

/*------------------------------------------------------------
inview css
------------------------------------------------------------*/
.anm {
  opacity: 0;
}

.anm_all.trigger {
  opacity: 1;
}
.anm_all .item {
  opacity: 0;
}
.anm_all .item.up {
  animation: up 0.7s cubic-bezier(0.33, 1, 0.68, 1) 0.1s 1 normal forwards;
}

.trigger {
  opacity: 0;
}
.trigger.up {
  animation: up 1s cubic-bezier(0.33, 1, 0.68, 1) 0.1s 1 normal forwards;
}
.trigger.blur {
  animation: blur 1s cubic-bezier(0.33, 1, 0.68, 1) 0.1s 1 normal forwards;
}
.trigger.delay0 {
  animation-delay: 0ms;
}
.trigger.delay1 {
  animation-delay: 100ms;
}
.trigger.delay2 {
  animation-delay: 200ms;
}
.trigger.delay3 {
  animation-delay: 300ms;
}
.trigger.delay4 {
  animation-delay: 400ms;
}
.trigger.delay5 {
  animation-delay: 500ms;
}
.trigger.delay6 {
  animation-delay: 600ms;
}
.trigger.delay7 {
  animation-delay: 700ms;
}
.trigger.delay8 {
  animation-delay: 800ms;
}
.trigger.delay9 {
  animation-delay: 900ms;
}
.trigger.delay10 {
  animation-delay: 1000ms;
}
.trigger.delay11 {
  animation-delay: 1100ms;
}
.trigger.delay12 {
  animation-delay: 1200ms;
}
.trigger.delay13 {
  animation-delay: 1300ms;
}
.trigger.delay14 {
  animation-delay: 1400ms;
}
.trigger.delay15 {
  animation-delay: 1500ms;
}
.trigger.delay16 {
  animation-delay: 1600ms;
}
.trigger.delay17 {
  animation-delay: 1700ms;
}
.trigger.delay18 {
  animation-delay: 1800ms;
}
.trigger.delay19 {
  animation-delay: 1900ms;
}
.trigger.delay20 {
  animation-delay: 2000ms;
}

@keyframes up {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes blur {
  0% {
    filter: blur(10px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    transform: translateY(0px);
    opacity: 1;
  }
}
.btn_cm {
  place-content: center;
  display: block;
  width: clamp(280px, calc(1.3071895425vw + 274.9019607843px), 300px);
  max-width: 100%;
  height: 60px;
  padding: 0 20px;
  box-sizing: border-box;
  background: url("../images/arw1.png") center right 20px no-repeat, white;
  background-size: 16px auto;
  color: #333;
  text-align: left;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), background 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn_cm:hover {
  background: url("../images/arw1w.png") center right 15px no-repeat, #1E2A3A;
  background-size: 16px auto;
  color: white;
}

.cta .inner {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.cta .left {
  background: #1E2A3A;
  color: white;
  padding: 90px 0 45px 0;
  box-sizing: border-box;
}
.cta .left .in {
  max-width: 700px;
  width: 90%;
  margin: 0 auto;
}
.cta .left h2 {
  font-size: clamp(20px, calc(0.522875817vw + 17.9607843137px), 28px);
  font-weight: 400;
  line-height: 1.6;
}
.cta .left .in2 {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 0 20px;
}
.cta .left .badge_w {
  display: inline-block;
}
.cta .left .badge {
  margin: 20px 0 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #141E2C;
  padding: 20px 20px;
  box-sizing: border-box;
  gap: 0 12px;
}
.cta .left .f1 {
  font-size: 14px;
}
.cta .left .f2 {
  font-size: 28px;
  line-height: 1.2;
}
.cta .left .lead1 {
  font-size: 15px;
  margin-top: 5px;
}
.cta .left .lead1 i {
  font-size: 18px;
  font-weight: bold;
  position: relative;
}
.cta .left .lead1 i:before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  margin-top: 0;
  margin-left: 0;
  width: 100%;
  height: 1px;
  background: white;
}
.cta .left .lead2 {
  background: linear-gradient(to right, #FFFFFF, #EBC350, #826428);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 18px;
  margin: 20px 0;
}
.cta .left .lead3 {
  font-size: 14px;
}
.cta .left .btnw {
  margin-top: 40px;
  width: 100%;
  max-width: 490px;
}
.cta .left .btnw a {
  width: 100%;
  max-width: 490px;
  letter-spacing: -0.05em;
}
.cta .left .btnw a:hover {
  background: url("../images/arw1w.png") center right 15px no-repeat, #000;
  background-size: 16px auto;
  color: white;
}
.cta .left .btnw .mn {
  text-align: center;
  color: #ED8C8C;
  margin-top: 12px;
  font-size: 12px;
}
.cta .right {
  background: url("../images/cta.jpg") center top/cover;
}
@media all and (max-width: 1280px) {
  .cta .left {
    padding: 40px 0 45px 0;
  }
  .cta .left .in2 {
    grid-template-columns: 1fr;
  }
  .cta .left .in2 .r {
    order: 1;
    text-align: center;
  }
  .cta .left .in2 .r img {
    display: inline-block;
    max-width: 120px;
    margin-bottom: 20px;
  }
  .cta .left .in2 .l {
    order: 2;
  }
  .cta .left .btnw {
    max-width: unset;
  }
  .cta .left .btnw a {
    max-width: unset;
  }
}
@media all and (max-width: 1000px) {
  .cta .inner {
    grid-template-columns: repeat(1, 1fr);
  }
  .cta .right {
    background: url("../images/cta.jpg") center top/cover;
  }
}
@media all and (max-width: 767px) {
  .cta .left {
    padding: 40px 0 45px 0;
  }
  .cta .left .badge {
    width: auto;
    display: block;
    text-align: center;
  }
  .cta .left .in2 {
    grid-template-columns: 1fr;
  }
  .cta .left .in2 .r {
    order: 1;
    width: 140px;
    margin: 0 auto 40px auto;
  }
  .cta .left .in2 .l {
    order: 2;
  }
  .cta .left .f1 {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .cta .left .f2 {
    font-size: 24px;
  }
}

.ttl-bx {
  color: #525252;
  line-height: 1.5;
}
.ttl-bx .eg {
  color: #D3D3D3;
  font-size: clamp(12px, calc(0.7843137255vw + 8.9411764706px), 24px);
  font-family: "Dancing Script", cursive;
  font-weight: 400;
}
.ttl-bx .jp {
  font-size: clamp(20px, calc(0.7843137255vw + 16.9411764706px), 32px);
  font-weight: 400;
}
.ttl-bx .jp i {
  font-size: clamp(24px, calc(0.7189542484vw + 21.1960784314px), 35px);
  font-weight: 500;
}

footer {
  padding: 180px 0 40px 0;
  box-sizing: border-box;
  text-align: center;
}
footer .ft-logo {
  width: 270px;
  margin: 0 auto;
  display: block;
}
footer .menus {
  display: inline-block;
  margin: 20px 0 40px 0;
}
footer .menus .in {
  display: flex;
  justify-content: flex-start;
  gap: 0 40px;
}
footer .menus .in a {
  font-size: 14px;
}
footer .btn-2 {
  max-width: 1024px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 70px;
}
footer .btn-2 a {
  display: block;
  background: #F5F4F2;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  place-content: center;
  height: 120px;
  font-size: clamp(20px, calc(0.7843137255vw + 16.9411764706px), 32px);
  border-bottom: 2px solid #707070;
  transition: all 0.3s ease;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.02);
}
footer .btn-2 a:nth-of-type(2) {
  border-bottom: none;
}
footer .btn-2 a:hover {
  background: #000;
  color: white;
}
footer .copyright {
  margin-top: 150px;
  font-size: 12px;
}
@media all and (max-width: 1080px) {
  footer {
    padding: 100px 0 40px 0;
  }
  footer .btn-2 {
    max-width: 1024px;
    margin: 0 auto;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 0;
    width: 70%;
  }
  footer .btn-2 a {
    height: 80px;
  }
  footer .copyright {
    margin-top: 70px;
  }
}
@media all and (max-width: 767px) {
  footer {
    padding: 60px 0 20px 0;
  }
  footer .ft-logo {
    width: 170px;
  }
  footer .menus {
    margin: 20px 0 20px 0;
  }
  footer .menus .in {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 12px 0;
  }
  footer .menus .in a {
    font-size: 14px;
  }
  footer .btn-2 {
    width: 90%;
    margin: 20px auto;
    gap: 20px 0;
  }
  footer .copyright {
    margin-top: 50px;
    font-size: 10px;
  }
}

.page-ttl {
  margin-top: 240px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page-ttl .eg {
  font-size: clamp(12px, calc(0.7843137255vw + 8.9411764706px), 24px);
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  writing-mode: vertical-rl;
  line-height: 1;
}
.page-ttl .ttls {
  text-align: right;
}
.page-ttl .ttls h1 {
  font-size: clamp(32px, calc(1.8300653595vw + 24.862745098px), 60px);
  letter-spacing: 0.2em;
  line-height: 1;
  font-weight: 400;
}
.page-ttl .ttls .sub {
  color: #D3D3D3;
  font-family: "Dancing Script", cursive;
  font-weight: 400;
  font-size: clamp(12px, calc(0.7843137255vw + 8.9411764706px), 24px);
  margin-top: 20px;
}
@media all and (max-width: 1280px) {
  .page-ttl {
    margin-top: 160px;
  }
}
@media all and (max-width: 767px) {
  .page-ttl {
    margin-top: 120px;
  }
  .page-ttl .ttls .sub {
    margin-top: 10px;
  }
}

@media all and (max-width: 767px) {
  .under-mv .inner {
    padding: 0 20px;
  }
}

.mes-area {
  height: 100vh;
  place-content: center;
  text-align: center;
}
.mes-area .inner {
  display: inline-block;
}
.mes-area h2 {
  font-size: clamp(20px, calc(0.9803921569vw + 16.1764705882px), 35px);
  line-height: 1.6;
  text-align: left;
}
.mes-area .txt {
  line-height: 3;
  margin-top: 30px;
  text-align: left;
}
@media all and (max-width: 767px) {
  .mes-area h2 {
    font-size: clamp(24px, calc(0.7189542484vw + 21.1960784314px), 35px);
    line-height: 1.6;
    text-align: left;
  }
  .mes-area .txt {
    line-height: 2;
    font-size: 12px;
    margin-top: 20px;
    text-align: left;
  }
}

/*# sourceMappingURL=base.css.map */
