@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

.sp-menu {
	width:38px;
	margin-right: 6px;
	margin-bottom: -6px;
}

/* ------------------------------------------------------
 * ヘッダーバーのキャッチフレーズの表示幅
 * ------------------------------------------------------ */
.l-header__bar .c-catchphrase {
width: 70%;/*数値は自由*/
}

/* ------------------------------------------------------
 * スマホメニューのズレ解消
 * ------------------------------------------------------ */
.menu-item a {
  display: flex;
  align-items: center;  /* 画像とテキストを上下中央に揃える */
  gap: 0.4em;           /* 画像と文字の間にスペース */
}
.menu-item a img.sp_menu {
  display: block;       /* 不要な隙間を消す */
  height: auto;        /* テキストに合わせてサイズ調整（必要に応じて変更） */
  width: 40px;
}

/* 三角形の設定 */
.triangle__inner {
   padding: 0;
   text-align: center;
}
.triangle {
   display: inline-block;
   border-left: 80px solid transparent;
   border-right: 80px solid transparent;
}

/* ================================ */
/* Card Layout 1 */
/* ================================ */
#cardlayout-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin-top: 120px;
}
.card-list {
  background: #fff;
  box-shadow: 3px 4px 8px rgba(0, 0, 0, 0.2);
  margin: 40px 1% 40px 1%;
  width: 100%;
  text-align: center;
  position: relative;
  border-radius: 8px;
}
/*.card-list:hover {
  top: -3px !important;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
}*/
.card-figure {
  width: 260px;
  height: 260px;
  display: block;
  background: #fff;
  border-radius: 50%;
  margin: -60px auto 0px auto;
  padding: 5px;
}
.card-figure span {
  width: 250px;
  height: 250px;
  display: block;
  background: #ccc no-repeat 50% 50% / cover;
  border-radius: 50%;
  border: 3px solid #5275e6;
  font-size: 50px;
  color: #6881c2;
}

.card-title {
  font-size: 1.4rem;
  font-weight: bolder;
  padding: 0 0px;
}
.card-text {
  padding: 0px 0px 3px 0px;
  font-size: 1.1em;
}

/* ================================ */
/* Responsive Card Layouts */
/* ================================ */
@media (min-width: 768px) {
  .card-list { width: calc(96% / 2); }
}
@media (min-width: 1024px) {
  .card-list { width: calc(94% / 3); }  /* 3カラム */
}

.for_SP {display: inline-block;}
.for_PC {display: none}
.for_TB {display: none;}


/* -------------------------------------------- */
/* ▼タブレット用として付け足すデザイン */
/* -------------------------------------------- */
	@media (min-width: 960px) {
.for_SP {display: none;}
.for_PC {display: none}
.for_TB {display: inline-block;}

/*MAIN MENU fontawesome周り*/
.global_menu_pc {
	font-size: 12pt !important;
	margin-bottom: 5px;
	display: block;
}
.ttl {
	font-size: 10pt !important;
	font-weight: bolder;
	display: block;
	color: #0081B8;
		}
.ttl .ttl_en {
	font-size: 6pt !important;
	font-weight: bolder;
	display: block;
		}
		.sub-menu .menu-item {
			color: #0081B8;
		}
		.menu-item img {
			width: 40px;
		}
		.sub_menu_img {
			width: 280px !important;
			margin-bottom: 8px;
		}
    /* アイコンがぴょこっと跳ねる */
    .menu-item:hover img {
      animation: bounce 0.5s ease;
    }
    @keyframes bounce {
      0%   { transform: translateY(0); }
      30%  { transform: translateY(-8px); }
      60%  { transform: translateY(3px); }
      80%  { transform: translateY(-3px); }
      100% { transform: translateY(0); }
    }

/*header右のボタン*/
    .btn-wrapper {
      display: flex;
      gap: 0px; /* ボタン同士の間隔 */
      justify-content: center;
      margin-top: 0px;
    }
    .circle-btn {
      width: 90px;
      height: 90px;
/*      border-radius: 50%; 丸にするか四角にするか・・・*/
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: bold;
      text-decoration: none;
      line-height: 1;
      vertical-align: middle;
      transition: transform 0.25s ease;
    }
    .circle-btn img {
      width: 24px;
      margin-bottom: 4px;
      line-height: 1;
      display: inline-block; /* アニメーション対象にするため */
    }
    /* アイコンがぴょこっと跳ねる */
    .circle-btn:hover img {
      animation: bounce 0.5s ease;
    }
    @keyframes bounce {
      0%   { transform: translateY(0); }
      30%  { transform: translateY(-8px); }
      60%  { transform: translateY(3px); }
      80%  { transform: translateY(-3px); }
      100% { transform: translateY(0); }
    }
    /* お問い合わせボタン */
    .contact-btn {
      /*background-color: #268ece;*/
      background-color: #04384c;
      color: #fff;
    }
    /* ご予約ボタン */
    .reserve-btn {
      background-color: #fff023;
      color: #04384c;
    }
		.ttl_ja {
			font-size: 0.7em;
			line-height: 1.5em;
		}
	}

/* ------------------------------------ */
/* ▼PC用として付け足すデザイン */
/* ------------------------------------ */
	@media (min-width: 1200px) {
.for_SP {display: none;}
.for_PC {display: inline-block;}
.for_TB {display: inline-block;}

	}


/* ==========================
   スマホ用 お問い合わせ・予約ボタン
========================== */

  .sp_btn-wrapper {
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .sp_btn-wrapper > a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-sizing: border-box;
    min-height: 70px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
  }

  /* お問い合わせ */
  .sp_contact-btn {
    background: #04384c;
    color: #fff;
  }

  /* ご予約 */
  .sp_reserve-btn {
    background: #fff023;
    color: #04384c;
  }

  /* アイコン */
  .sp_btn-wrapper img {
    width: 26px;
    height: auto;
    margin-bottom: 4px;
  }

  /* Contact / Reserve */
  .sp_ttl_ja_inq {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 2px;
    color:#fff;
  }
  .sp_ttl_inq {
    color:#fff;
  }
  .sp_ttl_ja_rsv {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 2px;
  }

