@charset "UTF-8";
/* CSS変数カスタムプロパティ */
:root {
  --header-height: 85px; /* PCでのヘッダーの高さ */
}
@media screen and (max-width: 1280px) {
  :root {
    --header-height: 82px;
  }
}
@media screen and (max-width: 1024px) {
  :root {
    --header-height: 75px;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --header-height: 60px;
  }
}

:root {
  /* --- 1. 基本（背景・文字） --- */
  --bg-primary: #fff;
  --bg-dark: #000;
  --text-primary: #000;
  --text-light: #fff;

  /* --- 2. メイン ＆ 頻出背景 --- */
  --color-main: #1ab7a5;
  --bg-sub: #fef2b8;
  --bg-fourth: #e46062;

  /* --- 3. 特定エリア ＆ スポット --- */
  --bg-staffpage: #1c84dd;
  --bg-spot-y: #ffe400;
  --bg-spot-g: #4cc764;
  --text-alert: #ff0000;
}

/* 全体的な設定 */
html {
  height: 100%;
  scroll-padding-top: 100px;
  scroll-behavior: smooth;
  font-size: 62.5%; /* 16px × 0.625 = 10px */
}
body {
  height: 100%;
  height: 100dvh;
}
body,
input,
select,
textarea {
  font-family:
    "Noto Sans JP", "Helvetica Neue", "Arial", "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", "Meiryo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.8rem;
  line-height: 1.6;
  letter-spacing: 2px;
  color: var(--color-tx);
  background-color: var(--bg-primary);
  margin: 0;
  padding: 0;
  overflow-wrap: break-word;
}
/* JSでbodyに付与する固定用クラス */
body.is-fixed {
  overflow: hidden;
  height: 100%;
}
/* 見出し */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}
/* リンク */
a {
  text-decoration: none;
}
/* 画像 */
img {
  width: 100%;
  height: auto;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
@media screen and (max-width: 600px) {
  body,
  input,
  select,
  textarea {
    font-size: 1.6rem;
  }
}

/* 問い合わせフォームで非表示にするclass */
.wpcf7-spinner {
  display: none !important;
}

/*---------------------*/
/* ヘッダー */
.l-header {
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
}
.p-header {
  display: block;
  background: var(--bg-primary);
}
.p-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
}
.header-title-a {
  position: absolute;
  top: 5px;
  left: 10px;
  display: flex;
  align-items: center;
  height: 100%;
  z-index: 100;
}
.p-header .header-title {
  max-width: 130px;
  margin-bottom: 0;
}
.p-nav.header-box {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-primary);
  transition:
    right 0.6s,
    opacity 0.6s;
  position: static;
  opacity: 1;
  height: inherit;
  background: transparent;
  width: 100%;
  padding: 0;
}
.p-nav .nav-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.p-nav .contact-area {
  display: flex;
  justify-content: right;
  column-gap: 30px;
  padding: 10px 20px 5px;
}
.p-nav .contact-area .nav-list {
  background-color: initial;
  width: auto;
  padding: 0;
}
.p-nav .contact-area .nav-link {
  color: var(--text-primary);
  transition: all 0.4s ease;
}
.p-nav .contact-area .nav-link:hover {
  color: var(--color-main);
}
.p-nav .contact-area .nav-item:not(:first-child)::before {
  background-color: var(--bg-dark);
}
.p-nav .contact-area .nav-recruit .nav-link {
  padding-right: 0;
}
.p-nav .mail-area {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px dashed var(--color-tx);
  border-radius: 0 0 15px 15px;
  background-color: var(--bg-spot-y);
}
.mail-area a {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 8px 20px;
  transition: all 0.3s ease-in;
}
.mail-area a:hover {
  color: var(--color-main);
}
.mail-area p {
  display: flex;
  align-items: center;
  font-weight: 600;
}
.mail-area p::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 21px;
  background-image: url("..//images/common/icon-mail.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 8px;
}
.p-nav .detail {
  padding-top: 5px;
}
.p-nav .tel-area {
  color: var(--color-main);
  line-height: 1;
  margin-bottom: 4px;
}
.p-nav .tel-area .number {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: 3.4px;
}
.p-nav .tel-area .number span {
  font-size: 1.8rem;
}
.p-nav .shop-hours {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.1px;
  line-height: 1;
}
.p-nav .nav-list {
  padding: 0px;
  display: flex;
  justify-content: right;
  width: 100%;
  padding: 8px 20px;
  background-color: var(--color-main);
}
.p-nav .nav-item {
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
}
.p-nav .nav-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background-color: var(--bg-primary);
}
.p-nav .nav-item:first-child::before {
  display: none;
}
.p-nav .nav-link {
  color: var(--text-light);
  font-weight: 600;
  display: block;
  padding: 0px 30px;
  white-space: nowrap;
  transition: all 0.4s ease;
}
.p-nav .nav-link:hover {
  color: var(--text-primary);
}
.p-hamburger {
  z-index: 100;
  position: absolute;
  top: 0;
  right: 0;
  width: 70px;
  height: 100%;
  display: none;
}
.c-hamburger {
  position: relative;
  width: inherit;
  height: inherit;
  margin: 0;
  border: transparent;
  background-color: transparent;
  cursor: pointer;
}
.c-hamburger span {
  display: block;
  position: relative;
  left: 50%;
  width: 24px;
  height: 2px;
  transform: translateX(-50%);
  background: black;
  transition: all 0.4s;
}
.c-hamburger span:nth-of-type(1) {
  top: -4px;
}
.c-hamburger span:nth-of-type(2) {
  top: 1px;
  transform: translateX(-0.45deg);
}
.c-hamburger span:nth-of-type(3) {
  top: 6px;
  transform: translateX(-0.45deg);
}
.c-hamburger.is-active span:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%) rotate(225deg);
}
.c-hamburger.is-active span:nth-of-type(2) {
  opacity: 0;
}
.c-hamburger.is-active span:nth-of-type(3) {
  top: -4px;
  transform: translateX(-50%) rotate(-225deg);
}
@media screen and (max-width: 1280px) {
  .p-nav .nav-link {
    padding: 0px 20px;
  }
  .p-nav .nav-item,
  .mail-area p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-header .header-title {
    max-width: 110px;
  }
  .p-nav .nav-link {
    padding: 0px 10px;
  }
  .p-nav .nav-item,
  .mail-area p {
    font-size: 1.3rem;
  }
  .p-nav .contact-area {
    column-gap: 20px;
    padding: 10px 10px 5px;
  }
  .p-nav .tel-area .number {
    font-size: 2.2rem;
    letter-spacing: 3px;
  }
}
@media screen and (max-width: 767px) {
  .header-title-a {
    top: 0px;
  }
  .p-header .header-title {
    max-width: 100px;
  }
  .p-nav.header-box {
    position: fixed;
    top: 0;
    right: -100%; /* 画面の外に隠す */
    opacity: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(26, 183, 165, 0.9);
    backdrop-filter: blur(5px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 60px 0 40px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 10;
  }
  .p-nav.header-box.is-active {
    position: fixed;
    top: 0;
    left: auto;
    right: 0;
    opacity: 1;
  }
  .p-nav .nav-inner {
    margin-right: auto;
    margin-left: auto;
    max-width: initial;
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    row-gap: 0px;
  }
  .p-nav .nav-list {
    background-color: transparent;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .p-nav .nav-item {
    border-bottom: 2px solid var(--text-light);
  }
  .p-nav .nav-item,
  .mail-area p {
    font-size: 1.6rem;
  }
  .p-nav .nav-link {
    width: 200px;
    line-height: 1.2;
    padding: 10px;
  }
  .p-nav .nav-item::before {
    display: none;
  }
  .p-nav .contact-area {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    max-width: 300px;
    margin: 0 auto;
    padding: 0;
  }
  .p-nav .contact-area .nav-link {
    color: var(--text-light);
  }
  .p-nav .mail-area {
    border-radius: 5px;
    width: 200px;
    margin: 5px auto 0;
  }
  .p-nav .tel-area .number {
    color: var(--text-primary);
    text-align: center;
  }
  .p-nav .tel-area .number span {
    font-size: 1.6rem;
  }
  .p-nav .tel-area {
    margin-bottom: 10px;
    text-align: center;
  }
  .p-hamburger {
    display: block;
  }
}
@media screen and (max-width: 430px) {
  .p-nav .nav-item,
  .mail-area p {
    font-size: 1.4rem;
  }
  .p-nav .tel-area .number {
    font-size: 2rem;
  }
}

/*---------------------*/
/* フッター */
footer {
  text-align: center;
  padding: 60px 0 20px;
}
footer .logo-area {
  margin: 0 auto 20px;
}
footer .logo-img {
  max-width: 260px;
  margin: 0 auto 20px;
}
footer .tel-area {
  color: var(--color-main);
}
footer .tel-area .number {
  font-size: 2.6rem;
  font-weight: 900;
}
footer .shop-hours {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.1px;
}
.footer-nav ul {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}
.footer-nav ul li {
  position: relative;
  transition: all 0.3s ease-in;
}
.footer-nav ul li:hover {
  color: var(--color-main);
}
.footer-nav ul li:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background-color: var(--bg-dark);
}
.footer-nav ul li a {
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 600;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  height: 100%;
}
footer .info-area {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
footer .img-area {
  display: flex;
  justify-self: center;
  column-gap: 20px;
}
footer .box02 iframe {
  border: 1px solid #777;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
}
footer .full-img {
  margin-top: 30px;
  margin-bottom: 10px;
}
footer small {
  font-size: 1.4rem;
}
@media screen and (max-width: 1280px) {
  footer {
    padding: 40px 0 20px;
  }
  .footer-nav ul {
    margin-bottom: 40px;
  }
  .footer-nav ul li a {
    font-size: 1.4rem;
    padding: 0 15px;
  }
}
@media screen and (max-width: 1024px) {
  .footer-nav ul {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    row-gap: 14px;
  }
  .footer-nav ul li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
    background-color: var(--bg-dark);
  }
  .footer-nav ul li:nth-child(5n)::after,
  .footer-nav ul li:last-child::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
    background-color: var(--bg-dark);
  }
  .footer-nav ul li a {
    padding: 0 10px;
  }
}
@media screen and (max-width: 767px) {
  .footer-nav ul li a {
    line-height: 1.2;
  }
  footer .info-area {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }
  footer .logo-img {
    max-width: 200px;
    margin: 0 auto 10px;
  }
  footer .img-area {
    max-width: 500px;
  }
  footer .box02 iframe {
    height: 250px;
  }
  footer small {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 600px) {
  .footer-nav ul {
    grid-template-columns: repeat(3, 2fr);
  }
  .footer-nav ul li::before {
    left: 0;
  }
  .footer-nav ul li:nth-child(5n)::after {
    display: none;
  }
  .footer-nav ul li:nth-child(3n)::after,
  .footer-nav ul li:last-child::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
    background-color: var(--bg-dark);
    display: block;
  }
  .footer-nav ul li .br-767 {
    display: none;
  }
}
@media screen and (max-width: 430px) {
  .footer-nav ul li a {
    font-size: 1.2rem;
  }
  .footer-nav ul li .br-767 {
    display: block;
  }
}

/*---------------------*/
/* 全体共通 */
.page-top {
  margin-top: var(--header-height);
}
.section {
  padding: 70px 0;
}
.section-bk {
  margin: 40px 0;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.bk-color {
  background-color: var(--color-main);
}
.bk-color-sub {
  background-color: var(--bg-sub);
}
@media screen and (max-width: 1300px) {
  .section-inner {
    padding: 0 30px;
  }
}
@media screen and (max-width: 1024px) {
  .section {
    padding: 60px 0;
  }
}
@media screen and (max-width: 767px) {
  .section {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .section {
    padding: 40px 0;
  }
  .section-inner {
    padding: 0 15px;
  }
}

/*---------------------*/
/* 共通改行 */
.br-1280,
.br-1024,
.br-960,
.br-767,
.br-500,
.br-600,
.br-430,
.br-390 {
  display: none;
}
@media screen and (max-width: 1280px) {
  .br-1280 {
    display: block;
  }
  .br-none1280 {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .br-1024 {
    display: block;
  }
  .br-none1024 {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  .br-960 {
    display: block;
  }
  .br-none960 {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .br-767 {
    display: block;
  }
  .br-none767 {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .br-600 {
    display: block;
  }
  .br-none600 {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .br-500 {
    display: block;
  }
  .br-none500 {
    display: none;
  }
}
@media screen and (max-width: 430px) {
  .br-430 {
    display: block;
  }
  .br-none430 {
    display: none;
  }
}
@media screen and (max-width: 390px) {
  .br-390 {
    display: block;
  }
  .br-none390 {
    display: none;
  }
}

/*---------------------*/
/* タイトル */
.t01 {
  margin-bottom: 40px;
}
.t01 .t-ja {
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1;
}
.t01 .t-en {
  font-size: 4.8rem;
  font-weight: 900;
  line-height: 1;
}
.t02-lead {
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.3em;
  margin-bottom: 50px;
}
.bk-color .t01 {
  color: var(--text-light);
}
@media screen and (max-width: 1280px) {
  .t02-lead {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .t01 .t-en {
    font-size: 4.2rem;
  }
}
@media screen and (max-width: 767px) {
  .t02-lead {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 600px) {
  .t01 {
    margin-bottom: 30px;
  }
  .t01 .t-en {
    font-size: 3.8rem;
  }
}
@media screen and (max-width: 430px) {
  .t01 .t-en {
    font-size: 3.4rem;
  }
  .t02-lead {
    font-size: 2rem;
  }
}

/*---------------------*/
/* ボタン */
.btn-area {
  text-align: center;
}
.btn-area .btn {
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 50px;
  color: var(--text-primary);
  max-width: 330px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
}
.btn-area .btn .btn-icon {
  width: 30px;
  height: 30px;
  background-color: var(--color-main);
  border-radius: 50%;
  flex-shrink: 0;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.btn-area .btn .btn-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 25%;
  width: 50%;
  height: 2px;
  background-color: #fff;
  transform: translateY(-50%);
}
.btn-area .btn .btn-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 25%;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
.btn-area .btn2 {
  justify-content: left;
  margin-left: 0;
  padding: 0;
  color: var(--bg-primary);
}
.btn-area .btn2 .btn-icon {
  background-color: var(--bg-primary);
  right: initial;
  left: 120px;
}
.btn-area .btn2 .btn-icon::before {
  background-color: var(--text-primary);
}
.btn-area .btn2 .btn-icon::after {
  border-top: 2px solid var(--text-primary);
  border-right: 2px solid var(--text-primary);
}

/*---------------------*/
/* よくある質問 faq */
.cs-faq {
  background-color: var(--bg-sub);
  margin-bottom: 0;
}
.cs-faq .t01 .t-en {
  color: var(--color-main);
}
.cs-faq .faq-item {
  border-bottom: 1px solid #fffceb;
}
.cs-faq .faq-question,
.cs-faq .faq-answer {
  font-size: 2rem;
}
.cs-faq .faq-question {
  width: 100%;
  padding: 20px;
  background: none;
  border: none;
  text-align: left;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}
.cs-faq .faq-question::before {
  content: "Q";
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: var(--color-main);
  color: var(--bg-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 5px;
  font-size: 2.8rem;
}
.cs-faq .faq-question .faq-icon {
  margin-left: auto;
  position: relative;
  width: 12px;
  height: 12px;
  border-top: 3px solid var(--color-main);
  border-right: 3px solid var(--color-main);
  transform: rotate(135deg);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.active .faq-question .faq-icon {
  transform: rotate(-45deg);
}
.cs-faq .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
}
.cs-faq .faq-answer p {
  padding: 0 20px 20px 20px;
  margin: 0;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 15px;
}
.cs-faq .faq-answer p::before {
  content: "A";
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border: 3px solid var(--color-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 2px;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--color-main);
}
.faq-item.active .faq-answer {
  max-height: 120px;
}
@media screen and (max-width: 1024px) {
  .cs-faq .faq-question,
  .cs-faq .faq-answer p {
    font-size: 1.8rem;
    line-height: 1.4;
  }
  .cs-faq .faq-question {
    padding: 15px;
  }
  .cs-faq .faq-answer p {
    padding: 0 15px 15px 15px;
  }
}
@media screen and (max-width: 767px) {
  .cs-faq .faq-question,
  .cs-faq .faq-answer p {
    font-size: 1.6rem;
    line-height: 1.2;
  }
  .cs-faq .faq-question {
    padding: 10px;
  }
  .cs-faq .faq-answer p {
    padding: 0 10px 10px 10px;
  }
  .cs-faq .faq-question::before,
  .cs-faq .faq-answer p::before {
    width: 40px;
    height: 40px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 600px) {
  .cs-faq .faq-question,
  .cs-faq .faq-answer p {
    font-size: 1.5rem;
  }
  .cs-faq .faq-answer p br {
    display: none;
  }
}

/*---------------------*/
/* 予約とLINE banner */
.cs-banner .content {
  display: flex;
  column-gap: 40px;
}
.cs-banner .link-area {
  display: block;
  height: 100%;
  transition: transform 0.3s ease;
}
.cs-banner .link-area:hover {
  transform: translateY(-4px);
}
@media screen and (max-width: 1024px) {
  .cs-banner .content {
    column-gap: 20px;
  }
}
@media screen and (max-width: 600px) {
  .cs-banner .content {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    max-width: 400px;
    margin: 0 auto;
  }
}

/*---------------------*/
/* 採用情報 reqruit */
.cs-recruit {
  background-color: var(--color-main);
}
.cs-recruit .content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  transition: transform 0.3s ease;
}
.cs-recruit a:hover .content {
  transform: translateY(-4px);
}
.cs-recruit .t01 {
  color: var(--text-light);
}
.cs-recruit .t02-lead {
  color: var(--text-light);
}
.cs-recruit .btn-area .btn .btn-icon {
  right: initial;
  left: 120px;
}
.cs-recruit .img-area {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .cs-recruit .t02-lead {
    font-size: 2.2rem;
    letter-spacing: 4px;
  }
}
@media screen and (max-width: 767px) {
  .cs-recruit .content {
    grid-template-columns: 55% auto;
    gap: 10px;
  }
  .cs-recruit .t02-lead {
    font-size: 2rem;
    letter-spacing: 3px;
  }
}
@media screen and (max-width: 600px) {
  .cs-recruit .content {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
  }
  .cs-recruit .img-area {
    max-width: 300px;
    margin: 0 auto;
  }
}

/*---------------------*/
/* アニメーション */
/* 下からスライドイン */
.slideInBottom {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 1s,
    transform 1s;
}
.slideInBottom.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* 右からスライドイン */
.slideInRight {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 1s,
    transform 1s;
}
.slideInRight.is-show {
  opacity: 1;
  transform: translateX(0);
}

/* 左からスライドイン */
.slideInLeft {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 1s,
    transform 1s;
}
.slideInLeft.is-show {
  opacity: 1;
  transform: translateX(0);
}

/* フェードイン・拡大表示 */
.fadeIn {
  opacity: 0;
  transform: scale(0.5);
  transition:
    opacity 1s,
    transform 1s;
}
.fadeIn.is-show {
  opacity: 1;
  transform: scale(1);
}

/* フェードイン・縮小表示 */
.fadeIn-shrink {
  opacity: 0;
  transform: scale(1.2);
  transition:
    opacity 2.5s,
    transform 1s;
}
.fadeIn-shrink.is-show {
  opacity: 1;
  transform: scale(1);
}

/* 下からスライドインアップ */
/* 親要素に slide-triggerをつける */
.slide-trigger {
  overflow: hidden;
}
.slide-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation-fill-mode: both;
}
.is-show .slide-in-up {
  animation-name: slide-in-up-effect;
  animation-duration: 1s;
  animation-timing-function: ease-out;
}
@keyframes slide-in-up-effect {
  0% {
    opacity: 0;
    transform: translateY(80px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 画像をぼかして徐々に表示 */
.fadeBlurIn {
  opacity: 0;
  filter: blur(5px);
  transition:
    opacity 1.5s ease-out,
    filter 1.5s ease-out;
  will-change: opacity, filter;
}
.fadeBlurIn.is-show {
  opacity: 1;
  filter: blur(0);
}

/* ホバーで浮き上がるアニメーション */
.hover-up {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.hover-up:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}
