@charset "UTF-8";
/* CSS Document */
/* 基本設定-------------------------------------------*/
a {
  text-decoration: none;
  transition: all 0.3s;
  color: #343434;
  outline: none;
  position: relative;
  display: inline-block;
}

a img,
a svg {
  text-decoration: none;
  transition: all 0.3s;
  color: #343434;
  outline: none;
}

div {
  outline: none;
  word-break: break-word;
}

img {
  max-width: 100%;
  height: auto;
  outline: none;
}

svg {
  backface-visibility: hidden;
  transform: translateZ(0);
}

div,
li,
header,
footer,
dt,
dd,
section {
  box-sizing: border-box;
}

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

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

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

.pc-view {
  display: none !important;
}

.sp-view {
  display: block !important;
}

@media screen and (min-width: 769px) {
  .pc-view {
    display: block !important;
  }
  .sp-view {
    display: none !important;
  }
}
/*-- Base --*/
html {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  height: -webkit-fill-available;
}

body {
  color: #343434;
  background: #fff;
  line-height: 1.5;
  font-family: "Zen Kaku Gothic New", "ヒラギノ角ゴシック", "Hiragino Kaku Gothic", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 14px;
  width: 100%;
  word-wrap: break-word;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  min-height: -webkit-fill-available;
}

@media screen and (min-width: 769px) {
  body {
    font-size: 16px;
  }
  a[href*="tel:"] {
    text-decoration: none;
  }
}
/*-- HTML5 elements --*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
nav,
section,
summary {
  display: block;
  margin: 0;
  padding: 0;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.clearfix {
  min-height: 1px;
}

* html .clearfix {
  height: 1px;
  /*\*/ /*/
height: auto;
overflow: hidden;
/**/
}

strong {
  font-weight: bold;
}

section,
article {
  position: relative;
}

.nolink {
  pointer-events: none;
}
.nolink:hover {
  opacity: 1;
}

[data-aos=fade-up] {
  transform: translate3d(0, 30px, 0);
}

.svg-box {
  width: 0;
  height: 0;
}

/* 細かいパーツ-------------------------------------------*/
#page {
  position: relative;
  overflow: hidden;
  background-image: url(../images/common/pattern_bg.png);
  background-color: #f5eedf;
  background-blend-mode: color-dodge;
  padding-top: 106px;
}
#page::before {
  content: "";
  position: absolute;
  background-color: #F7C975;
  opacity: 0.2;
  width: 61.0666666667vw;
  height: 121.3333333333vw;
  border-radius: 0px 0px 0px 40px;
  top: 0;
  right: 0;
}
@media (min-width: 769px) {
  #page::before {
    width: 66.2518301611vw;
    height: 30.0878477306vw;
    border-radius: 0px 0px 0px 60px;
  }
}

.flex-wrapper {
  display: flex;
}

.box-inner {
  padding: 0 24px;
  position: relative;
}

@media screen and (min-width: 769px) {
  .box-inner {
    margin: 0 auto;
    padding: 0;
    max-width: 86.7496339678vw;
  }
  .pc-flex {
    display: flex;
  }
}
.font-en {
  font-family: "Unbounded", sans-serif;
}

.icon-svg {
  position: absolute;
  width: 0;
  height: 0;
}

.icon-arrow01 {
  width: 38px;
  height: 38px;
  background: #b60081;
  border-radius: 50%;
  position: relative;
  display: block;
}
.icon-arrow01::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 12px;
  height: 12px;
  background: url(../images/common/icon_arrow01.svg) no-repeat;
  background-size: contain;
}

.font-s {
  font-size: 10px;
}

@media screen and (min-width: 769px) {
  .font-s {
    font-size: 12px;
  }
}
.animated-element {
  opacity: 0;
  transform: translateY(50px);
  animation-fill-mode: forwards;
}

/* ページロード時のアニメーション */
.animate-on-load {
  animation: bounceInUp 0.7s ease-out forwards;
}

/* スクロール時のアニメーション */
.animate-on-scroll {
  animation: bounceInUp 0.7s ease-out forwards;
}

/* メインアニメーション：フェードイン + 下から上 + 跳ね */
@keyframes bounceInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  50% {
    opacity: 0.8;
    transform: translateY(-10px); /* 少し行き過ぎる */
  }
  65% {
    opacity: 1;
    transform: translateY(5px); /* 下に戻る */
  }
  80% {
    transform: translateY(-3px); /* 小さく跳ねる */
  }
  100% {
    opacity: 1;
    transform: translateY(0); /* 最終位置 */
  }
}
@keyframes hoverArrow {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  90% {
    transform: translateX(100%);
    opacity: 0;
  }
  91% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes shake1 {
  0%, 100% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(5deg);
  }
}
@keyframes shake2 {
  0%, 100% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(-5deg);
  }
}
.btn-base a {
  font-weight: 600;
}
.btn-base.btn-w {
  border-radius: 35px;
  background: #fff;
  box-shadow: 0px 0px 20px rgba(211, 197, 169, 0.4);
  height: 70px;
  transition: 0.3s;
}
@media (min-width: 769px) {
  .btn-base.btn-w {
    height: 80px;
    border-radius: 100px;
    max-width: 296px;
    width: 100%;
  }
}
.btn-base.btn-w a {
  color: #343434;
  font-size: 16px;
  padding: 16px;
  padding-left: 46px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}
@media (min-width: 769px) {
  .btn-base.btn-w a {
    height: 80px;
    padding-right: 20px;
  }
}
@media (min-width: 769px) {
  .btn-base.btn-w:hover {
    transform: scale(0.985);
    box-shadow: 0px 0px 20px rgba(211, 197, 169, 0);
  }
  .btn-base.btn-w:hover .icon-arrow01::before {
    animation-name: hoverArrow;
    animation-duration: 300ms;
    animation-fill-mode: both;
  }
}

@keyframes hoverArrow {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  90% {
    transform: translateX(100%);
    opacity: 0;
  }
  91% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/* ヘッダー-------------------------------------------*/
.page-hd {
  position: fixed;
  width: 100%;
  height: 90px;
  top: 0;
  left: 0;
  z-index: 100;
  padding: 0 24px;
  padding-top: 25px;
  transition: 0.3s;
}
@media (min-width: 769px) {
  .page-hd {
    height: 103px;
    padding: 0;
    padding-left: 40px;
    padding-top: 0px;
  }
}
.page-hd .hd-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page-hd .hd-inner .top-logo a img {
  width: 160px;
}
@media (min-width: 769px) {
  .page-hd .hd-inner .top-logo a img {
    width: 203px;
  }
}
.page-hd .hd-inner .btn-menu {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: #b60081;
  position: relative;
}
@media (min-width: 769px) {
  .page-hd .hd-inner .btn-menu {
    display: none;
  }
}
.page-hd .hd-inner .btn-menu .hbg-wrapper {
  width: 16px;
  height: 14px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.page-hd .hd-inner .btn-menu .hbg-wrapper span {
  background: #fff;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  transition: 0.3s;
}
.page-hd .hd-inner .btn-menu .hbg-wrapper span:nth-child(1) {
  top: 0;
}
.page-hd .hd-inner .btn-menu .hbg-wrapper span:nth-child(2) {
  top: 0;
  bottom: 0;
  margin: auto;
}
.page-hd .hd-inner .btn-menu .hbg-wrapper span:nth-child(3) {
  bottom: 0;
}
.page-hd .hd-inner .btn-menu.open .hbg-wrapper span:nth-child(1) {
  transform: translateY(6px) rotate(-45deg);
}
.page-hd .hd-inner .btn-menu.open .hbg-wrapper span:nth-child(2) {
  display: none;
}
.page-hd .hd-inner .btn-menu.open .hbg-wrapper span:nth-child(3) {
  transform: translateY(-6px) rotate(45deg);
}
.page-hd.is-scroll {
  background-color: #f9f5e5;
}

/* グローバルナビ-------------------------------------------*/
@media (max-width: 768px) {
  #gnav {
    display: none;
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 20;
    overflow: scroll;
    top: 0;
    height: 100vh;
    background: #B60081;
    color: #fff;
    padding-bottom: 110px;
  }
  #gnav a {
    color: #fff;
  }
  #gnav a:hover {
    opacity: 1;
  }
  #gnav .gnav-inner {
    padding: 0 24px;
    padding-top: 25px;
  }
  #gnav .gnav-inner .hd-inner {
    margin-bottom: 56px;
    padding: 0;
  }
  #gnav .gnav-inner .hd-inner .btn-menu {
    background: #fff;
  }
  #gnav .gnav-inner .hd-inner .btn-menu .hbg-wrapper span {
    background: #B60081;
  }
  #gnav .gnav-inner .nav-list {
    padding: 0 13px 25px;
    border-bottom: 1px solid #C5449D;
  }
  #gnav .gnav-inner .nav-list .link01 a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    margin-top: 25px;
    border-top: 1px solid #C5449D;
  }
  #gnav .gnav-inner .nav-list .link01 a div .txt-en {
    font-family: "Unbounded", sans-serif;
    font-size: 22px;
    display: block;
  }
  #gnav .gnav-inner .nav-list .link01 a div .txt-jp {
    font-size: 12px;
    font-weight: bold;
    display: block;
  }
  #gnav .gnav-inner .nav-list .link01 a .icon-arrow01 {
    background: #fff;
  }
  #gnav .gnav-inner .nav-list .link01 a .icon-arrow01::before {
    background: url(../images/common/icon_arrow01_r.svg) no-repeat;
    background-size: contain;
  }
  #gnav .gnav-inner .nav-list .link01 a .icon-plus {
    display: inline-block;
    width: 38px;
    height: 38px;
    background-color: #fff;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  #gnav .gnav-inner .nav-list .link01 a .icon-plus::before, #gnav .gnav-inner .nav-list .link01 a .icon-plus::after {
    content: "";
    position: absolute;
    background-color: #B60081;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.2s ease;
  }
  #gnav .gnav-inner .nav-list .link01 a .icon-plus::before {
    width: 2px;
    height: 11px;
  }
  #gnav .gnav-inner .nav-list .link01 a .icon-plus::after {
    width: 11px;
    height: 2px;
  }
  #gnav .gnav-inner .nav-list .link01 a.acr-trigger.open .icon-plus::before {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  #gnav .gnav-inner .nav-list .link01 .nav-list-child li {
    padding-left: 24px;
  }
  #gnav .gnav-inner .nav-list .link01 .nav-list-child li a {
    font-size: 18px;
    font-weight: bold;
    padding-top: 25px;
    margin-top: 25px;
    position: relative;
    padding-left: 10px;
  }
  #gnav .gnav-inner .nav-list .link01 .nav-list-child li a::before {
    content: "-";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    color: #fff;
    font-size: 18px;
    height: 2px;
  }
  #gnav .gnav-inner .nav-list .link01 .nav-list-child li a .font-s {
    font-size: 13px;
  }
  #gnav .gnav-inner .btn-base.btn-entry {
    background: #fff;
    border-radius: 100px;
    text-align: center;
    margin: 40px 13px 0;
  }
  #gnav .gnav-inner .btn-base.btn-entry a {
    color: #B60081;
    display: block;
    padding: 20px 0;
  }
  #gnav .gnav-inner .btn-base.btn-entry a .txt-en {
    font-size: 24px;
    font-family: "Unbounded", sans-serif;
  }
  #gnav .gnav-inner .btn-base.btn-entry a .txt-jp {
    font-size: 13px;
  }
}
@media (min-width: 769px) {
  .page-hd {
    display: flex;
    justify-content: space-between;
  }
  #gnav .gnav-inner {
    display: flex;
    padding-top: 30px;
    padding-right: 40px;
  }
  #gnav .gnav-inner .hd-inner {
    display: none;
  }
  #gnav .gnav-inner .nav-list {
    display: flex;
    gap: 40px;
  }
  #gnav .gnav-inner .nav-list .link01 {
    position: relative;
  }
  #gnav .gnav-inner .nav-list .link01 a div .txt-en {
    font-family: "Unbounded", sans-serif;
    font-size: 15px;
    display: block;
  }
  #gnav .gnav-inner .nav-list .link01 a div .txt-jp {
    font-size: 10px;
    font-weight: bold;
    display: block;
    color: #B60081;
  }
  #gnav .gnav-inner .nav-list .link01 a .icon-plus {
    display: none;
  }
}
@media (min-width: 769px) and (min-width: 769px) {
  #gnav .gnav-inner .nav-list .link01 a:hover {
    opacity: 0.7;
  }
}
@media (min-width: 769px) {
  #gnav .gnav-inner .nav-list .link01:hover .nav-list-child {
    opacity: 1;
    visibility: visible;
  }
  #gnav .gnav-inner .nav-list .link01 .nav-list-child {
    position: absolute;
    top: 55px;
    left: 0;
    width: 180px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #B60081;
    padding: 22px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  #gnav .gnav-inner .nav-list .link01 .nav-list-child::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: transparent;
  }
  #gnav .gnav-inner .nav-list .link01 .nav-list-child li {
    font-size: 12px;
    font-weight: bold;
  }
  #gnav .gnav-inner .nav-list .link01 .nav-list-child li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 1px solid #E0E0E0;
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
  #gnav .gnav-inner .nav-list .link01 .nav-list-child li a .icon-arrow01 {
    display: block;
    width: 20px;
    height: 20px;
  }
  #gnav .gnav-inner .nav-list .link01 .nav-list-child li a .icon-arrow01::before {
    width: 8px;
    height: 8px;
  }
}
@media (min-width: 769px) and (min-width: 769px) {
  #gnav .gnav-inner .nav-list .link01 .nav-list-child li a:hover {
    opacity: 0.7;
  }
}
@media (min-width: 769px) {
  #gnav .gnav-inner .nav-list .link01 .nav-list-child li a .font-s {
    font-size: min(0.6588579795vw, 9px);
  }
  #gnav .gnav-inner .nav-list .link01 .nav-list-child li:last-child a {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
  }
  #gnav .gnav-inner .nav-list li a .icon-arrow01 {
    display: none;
  }
  #gnav .gnav-inner .btn-base.btn-entry {
    margin-left: 40px;
    width: 180px;
    height: 46px;
    border-radius: 23px;
    background: #b60081;
    transition: 0.3s;
  }
  #gnav .gnav-inner .btn-base.btn-entry:hover {
    opacity: 0.7;
  }
  #gnav .gnav-inner .btn-base.btn-entry a {
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  #gnav .gnav-inner .btn-base.btn-entry .txt-en {
    font-size: 15px;
    font-family: "Unbounded", sans-serif;
  }
  #gnav .gnav-inner .btn-base.btn-entry .txt-jp {
    font-size: 10px;
  }
}
@media (max-width: 768px) {
  #gnav {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .nav-list-child {
    overflow: hidden;
    transition: max-height 0.3s ease;
    max-height: 0;
  }
}
.mv-box {
  opacity: 0;
  transform: translateY(50px);
  animation-fill-mode: forwards;
}
.mv-box.show {
  animation: bounceInUp 0.7s ease-out forwards;
}

/* フッター-------------------------------------------*/
.ft-map-nav {
  padding-top: 56px;
  padding-bottom: 40px;
}
@media (min-width: 769px) {
  .ft-map-nav {
    padding-top: 72px;
    padding-bottom: 60px;
  }
}
.ft-map-nav .ft-map {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 0;
  padding: 0 24px;
}
@media (min-width: 769px) {
  .ft-map-nav .ft-map {
    max-width: 940px;
    margin: 0 auto;
    gap: 10px 32px;
    padding: 0;
  }
}
.ft-map-nav .ft-map li {
  width: 50%;
  font-size: 13px;
  font-weight: 500;
}
@media (min-width: 769px) {
  .ft-map-nav .ft-map li {
    width: 230px;
    font-size: 14px;
  }
  .ft-map-nav .ft-map li a:hover {
    opacity: 0.7;
  }
  .ft-map-nav .ft-map li:nth-child(1), .ft-map-nav .ft-map li:nth-child(5) {
    width: 150px;
  }
}

.page-ft {
  border-radius: 20px 20px 0px 0px;
  background: #fff;
  padding: 40px 0 30px;
}
@media (min-width: 769px) {
  .page-ft {
    padding: 30px 0 25px;
  }
}
.page-ft .box-inner {
  position: relative;
}
@media (min-width: 769px) {
  .page-ft .box-inner {
    display: flex;
    align-items: center;
    gap: 0 49px;
  }
}
.page-ft .box-inner .logo-ft img {
  width: 90px;
}
@media (min-width: 769px) {
  .page-ft .box-inner .logo-ft img {
    width: 104px;
  }
}
.page-ft .box-inner .ft-nav {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 769px) {
  .page-ft .box-inner .ft-nav {
    margin-top: 0;
    gap: 24px;
  }
}
.page-ft .box-inner .ft-nav li {
  font-size: 13px;
  font-weight: 500;
}
.page-ft .box-inner .ft-nav li a {
  display: flex;
  align-items: center;
}
.page-ft .box-inner .ft-nav li a .icon-arrow01 {
  transform: scale(0.62);
}
@media (min-width: 769px) {
  .page-ft .box-inner .ft-nav li a:hover {
    opacity: 0.7;
  }
  .page-ft .box-inner .ft-nav li a:hover .icon-arrow01::before {
    animation-name: hoverArrow;
    animation-duration: 300ms;
    animation-fill-mode: both;
  }
}
.page-ft .box-inner .logo-tree {
  position: absolute;
  top: 0px;
  right: 24px;
  width: 122px;
  height: fit-content;
}
@media (min-width: 769px) {
  .page-ft .box-inner .logo-tree {
    width: 156px;
    right: 10px;
  }
}
/*# sourceMappingURL=_map/common.css.map */
