@charset "utf-8";
/* CSS Document */
/* 色の基準設定 */ :root {
  --main-pink: #FF8EBB;
  --accent-orange: #FF8561;
  --main-blue: #1C2E69;
}

/* remの基準設定 */
html {
  font-size: 62.5%;
  overflow-x: hidden;
}
/* bodyの基本設定 */
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
  padding-top: 170px;
  overflow-x: hidden;
}
/*ここからヘッダー*/
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  /*box-shadow: 0 2px 8px rgba(0,0,0,0.1);*/
  z-index: 1000;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  padding: 60px 230px 60px 150px;
  margin: 0 auto;
  transition: padding 0.3s ease;
}
/* スクロール時 */
.header-inner.scrolled {
  padding: 40px 230px 40px 150px;
}
/* ロゴ */
.header-logo {
  height: 50px;
  width: auto;
}
/*=============================
  共通グローバルナビスタイル
=============================*/
.gnav {
  display: flex;
  position: static;
  flex-direction: row;
  gap: 32px;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
  transform: none; /* ← PC時は常に表示 */
}
.gnav ul {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.gnav ul li a {
  text-decoration: none;
  color: var(--main-blue);
  font-size: 2.0rem;
  font-weight: 600;
  transition: color 0.3s ease;
}
.gnav ul li a:hover {
  color: var(--main-pink);
}
/* ボタンの基本スタイル */
.btn {
  position: relative;
  background-color: #fff;
  color: var(--btn-color, #FF8561);
  padding: 12px 24px;
  border: 2px solid var(--btn-color, #FF8561);
  border-radius: 8px;
  font-size: 1.6rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  width: 300px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.btn::after {
  content: '>';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--btn-color, #FF8561);
  transition: all 0.3s ease;
}
.btn:hover {
  background-color: var(--btn-color, #FF8561);
  color: #fff;
  border-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}
.btn:hover::after {
  color: #fff;
  transform: translateY(-50%) translateX(2px);
}
/* 色違いの修飾クラス */
.btn--pink {
  --btn-color: #FF8EBB;
}
.btn--orange {
  --btn-color: #FF8561;
}
/* サイズ違いの修飾クラス */
.btn--large {
  width: 300px;
}
.btn--medium {
  width: 250px;
}
.btn--small {
  width: 200px;
}
/*ここから問い合わせボタン*/
/* --- 基本共通スタイル --- */
.contact-btn {
  position: fixed;
  top: 0;
  right: 0;
  background: var(--main-blue);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease, transform 0.3s ease;
  overflow: hidden; /* ← はみ出し防止 */
  max-width: 100vw; /* ← これも効く */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  border-radius: 0 0 0 16px;
  font-size: 2.4rem;
  text-align: center;
  line-height: 1.2;
}
.contact-btn:hover {
  background: #50CAFF;
  transform: translateY(-2px);
  color: #1C2E69;
}
/* PC用問い合わせボタン */
.contact-btn img {
  width: 100px;
  height: 100px;
  margin-bottom: 4px;
}
/*ここまで問い合わせボタン*/
/*ここまでヘッダー*/
/*ここからCONTACT*/
.CONTACT h2 {
  font-size: 4.5rem;
  font-weight: 600;
  color: var(--main-blue);
}
.CONTACT h3 {
  font-size: 3.6rem;
  font-weight: 600;
  color: var(--main-blue);
}
.CONTACT h4 {
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--main-blue);
}
.CONTACT h5 {
  font-size: 2.0rem;
  font-weight: 600;
  color: var(--main-blue);
}
.CONTACT h6 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--main-blue);
}
.CONTACT p {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--main-blue);
}
/*ここからCONTACT内容*/
.CONTACT_align {
  display: flex;
  justify-content: center;
}
.CONTACT_Content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1200px;
}
.CONTACT_Content img {
  width: 50px;
  height: auto;
}
/*ここからCONTACT内容左*/
.CONTACT_Content-left {
  display: flex;
  flex-direction: column;
  width: 380px;
  gap: 10px;
  padding-right: 20px;
  border-right: 3px solid var(--main-blue);
}
/*ここまでCONTACT内容左*/
/*ここからCONTACT内容中央*/
.CONTACT_Content-center {
  display: flex;
  align-items: center;
  width: 440px;
  gap: 30px;
  padding: 0 20px;
  border-right: 3px solid var(--main-blue);
}
.CONTACT_Content-right-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
/*ここまでCONTACT内容中央*/
/*ここからCONTACT内容右*/
.CONTACT_Content-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 380px;
  gap: 30px;
  padding-left: 20px;
}
/*ここまでCONTACT内容*/
/* CONTACTバナー */
.CONTACT_banner {
  display: flex;
  justify-content: center;
  margin: 75px 0 50px;
}
.CONTACT_banner-align {
  display: flex;
  justify-content: center;
  width: 80%;
  gap: 40px; /* バナーの間隔も確保 */
  flex-wrap: wrap; /* スマホ時折り返し用 */
}
.CONTACT_banner-align li {
  width: 550px;
  display: flex;
  flex-direction: column;
  gap: 15px
}
.CONTACT_banner-align p {
	height: 170px;
}
.CONTACT_banner-align img {
  width: 550px;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
  border: 3px solid var(--main-blue);
}
/* ホバーアクションつけるなら */
.CONTACT_banner-align img:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}
/*ここまでCONTACT*/
/*ここから屋根の画像*/
.image {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}
.image img {
  display: block;
  width: 100%;
  height: auto;
}
/*ここまで屋根の画像*/
.ACCESS {
  text-align: center;
}
.ACCESS h2 {
  font-size: 4.5rem;
  font-weight: 600;
  color: #FFF;
}
.ACCESS h3 {
  font-size: 3.6rem;
  font-weight: 600;
  color: #FFF;
}
.ACCESS h4 {
  font-size: 2.4rem;
  font-weight: 600;
  color: #FFF;
}
.ACCESS h5 {
  font-size: 2.0rem;
  font-weight: 600;
  color: #FFF;
}
.ACCESS h6 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #FFF;
}
.ACCESS p {
  font-size: 1.6rem;
  font-weight: 400;
  color: #FFF;
}
/*ここからアクセス見出し*/
.ACCESS_Title {
  background-color: var(--main-pink);
}
.ACCESS_Title h2 {
  margin: 0;
}
/*ここまでアクセス見出し*/
/*ここからアクセスの内容*/
.ACCESS_Content {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
  background-color: var(--main-pink);
  padding-top: 50px;
}
.ACCESS_Content-left img {
  width: 400px;
  aspect-ratio: 4/ 3;
  border-radius: 8px;
}
/*ここからアクセスの右側*/
.ACCESS_Content-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 335px;
  height: 300px;
}
.TEL {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/*ボタンを中心に揃える*/
.ACCESS_btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
/*住所のコード*/
.ADDRESS {
  text-align: left; /*住所の左揃え*/
}
/*ここまでアクセスの右側*/
/*ここまでアクセスの内容*/
/*ここからフッター*/
.footer {
  padding-top: 100px;
  background: linear-gradient(to bottom, var(--main-pink), var(--accent-orange)); /*グラデーション*/
}
.footer_logo {
  height: 70px;
  width: auto;
}
.footer a {
  font-size: 1.6rem;
  color: #fff;
  font-weight: 400;
  width: 135px;
  text-align: center;
}
/*ここからフッター整列*/
.footer_align {
  display: flex;
  justify-content: center;
}
/*ここまでフッター整列*/
/*ここからフッター内容*/
.footer_Content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 80%;
  max-width: 1500px;
}
/*ここからフッターナビ*/
.footer_nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* ←右寄せ */
  gap: 16px;
}
.footer_nav p {
  margin-top: 100px;
  color: #fff;
}
.footer_nav-primary, .footer_nav-secondary {
  display: flex;
  justify-content: flex-end; /* ←右寄せ */
  gap: 24px; /* ←リンク同士の間隔を均等に */
  width: 100%;
}
.footer_img-kagu {
  margin-top: 100px;
  display: block;
  width: 100%;
  height: auto;
}
.fade-in {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
/* =============================
  1250px以下 レスポンシブ対応
============================= */
@media (max-width: 1250px) {
.CONTACT h2 {
  font-size: 2.4rem;
}
.CONTACT p {
  font-size: 1.0rem;
}
.CONTACT_Content {
  width: 720px;
}
.CONTACT_Content img {
  width: 30px;
}
/*ここからCONTACT内容左*/
.CONTACT_Content-left {
  width: 228px;
  gap: 6px;
  padding-right: 12px;
}
/*ここまでCONTACT内容左*/
/*ここからCONTACT内容中央*/
.CONTACT_Content-center {
  justify-content: center;
  width: 264px;
  gap: 18px;
  padding: 0 12px;
}
/*ここまでCONTACT内容中央*/
/*ここからCONTACT内容右*/
.CONTACT_Content-right {
  width: 228px;
  gap: 18px;
  padding-left: 12px;
}
.CONTACT_Content-right-text {
  gap: 6px;
}
.CONTACT_btn {
  width: 150px;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 1.2rem;
}
.CONTACT_btn span {
  font-size: 1.2rem;	
}
.btn::after {
	right: 12px;
    font-size: 1.0rem;
}
/*ここまでCONTACT内容*/
/* CONTACTバナー */
.CONTACT_banner {
  margin: 50px 0;
}
.CONTACT_banner-align {
  width: 720px;
  gap: 12px; /* バナーの間隔も確保 */
}
.CONTACT_banner-align li {
  width: 330px;
  gap: 10px
}
.CONTACT_banner-align p {
	height: 100px;
  }
.CONTACT_banner-align h4 {
    font-size: 1.8rem;
  }
.CONTACT_banner-align img {
  width: 330px;
  border: 2px solid var(--main-blue);
}
/* ホバーアクションつけるなら */
/*ここまでCONTACT*/
}
/* =============================
  1120px以下 レスポンシブ対応
============================= */
@media (max-width: 1120px) {
  body {
    padding-top: 130px;
  }
  .header-inner {
    padding: 40px 100px;
  }
  .header-inner.scrolled {
    padding: 30px 100px; /* スクロール時はさらに狭くするなど調整可能 */
  }
  .contact-btn {
    display: flex;
    width: 150px;
    height: 150px;
	font-size: 1.4rem;
  }
  .contact-btn img {
    width: 75px;
    height: 75px;
  }

  /* 通常は非表示 */
  /* スマホ用ナビ */
  .gnav {
    display: none;
  }
 
  .CONTACT_banner-align li {
    width: 250px;
  }
  .CONTACT_banner-align p {
	height: 140px;
  }
  .CONTACT_banner-align img {
    width: 250px;
  }
  .CONTACT_banner-align h4 {
    font-size: 1.4rem;
  }
  .ACCESS h2 {
    font-size: 3.0rem;
  }
  .ACCESS h3 {
    font-size: 2.4rem;
  }
  .ACCESS h4 {
    font-size: 2.0rem;
  }
  .ACCESS h5 {
    font-size: 1.6rem;
  }
  .ACCESS h6 {
    font-size: 1.4rem;
  }
  .ACCESS p {
    font-size: 1.4rem;
  }
  .ACCESS_Content {
    padding-top: 30px;
  }
  .ACCESS_Content-left img {
  width: 300px;
  aspect-ratio: 4/ 3;
  }
/*ここからアクセスの右側*/
  .ACCESS_Content-right {
    width: 300px;
    height: 225px;
  }
  .ACCESS_Content-right img {
    padding-left: 25px;
	padding-right: 25px;
  }
  .TEL {
    padding: 0 25px;
  }
  .ADDRESS {
    padding-left: 25px;
  }
/*ここまでアクセスの右側*/
  .footer {
    padding-top: 50px;
  }
  .footer a {
    font-size: 1.4rem;
    width: 115px;
  }
  .footer_Content {
    width: 80%;
    max-width: 700px;
  }
/*ここからフッターナビ*/
  .footer_nav {
    gap: 18px;
  }
  .footer_nav p {
    margin-top: 50px;
  }
  .footer_nav-primary, .footer_nav-secondary {
    gap: 18px; /* ←リンク同士の間隔を均等に */
  }
  .footer_img-kagu {
   margin-top: 50px;
  }
}
/* =============================
  768px以下 レスポンシブ対応
============================= */
@media (max-width: 768px) {
  body {
    padding-top: 90px;
  }
  .header-inner {
    padding: 20px 20px;
  }
  .header-inner.scrolled {
    padding: 15px 20px; /* スクロール時はさらに狭くするなど調整可能 */
  }
  　/* ロゴ */
  .header-logo {
    height: 50px !important;
    width: auto;
  }
  .contact-btn {
    width: 90px;
    height: 90px;
	font-size: 1.0rem;
  }
.contact-btn img {
  width: 45px;
  height: 45px;
}
  .btn {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 1.2rem;
  }
  .btn::after {
    font-size: 1.0rem;
  }
  .btn--large {
    width: 250px;
  }
  .btn--medium {
    width: 200px;
  }
  .btn--small {
    width: 150px;
  }
.CONTACT h2 {
  font-size: 3.0rem;
}
.CONTACT_Content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
/*ここからCONTACT内容左*/
.CONTACT_Content-left {
  width: 264px;
  gap: 0px;
  padding-right: 0px;
  border-right: none;
  /*border-bottom: 3px solid var(--main-blue);*/
}
/*ここまでCONTACT内容左*/
/*ここからCONTACT内容中央*/
.CONTACT_Content-center {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 264px;
  padding: 20px 0 0;
  border-right: none;
  /*border-bottom: 3px solid var(--main-blue);*/
}
.CONTACT_Content-right-text {
	width: 200px;	
}
/*ここまでCONTACT内容中央*/
/*ここからCONTACT内容右*/
.CONTACT_Content-right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 264px;
  padding: 0;
}
.CONTACT_banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 50px 0 25px;
}
.CONTACT_banner-align {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.CONTACT_banner-align li {
  width: 100%;
  max-width: 300px;
}
.CONTACT_banner-align p {
	height: auto;
}
.CONTACT_banner-align img {
    width: 100%;
    max-width: 300px;
  }
.ACCESS_Content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
.ACCESS_Content-left img {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 4/ 3;
  }
.footer a {
    text-align: left;
  }
.footer_nav-primary {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.footer_nav-secondary {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.footer_logo {
  display: none	
}
}