﻿@charset "utf-8";

*,
::before,
::after{
  padding: 0;
  margin: 0;
box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

a{
  color: inherit;
  text-decoration: none;
  
}



body {  
  font-family:  'LineSeedJP', sans-serif,"Yu Gothic",游ゴシック, "ヒラギノ角ゴ ProN W3", HiraKakuProN-W3,  メイリオ, Meiryo, Verdana, Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: #000000;
  line-height: 1;
  background-color: #ffffff;
}
img {
  max-width: 100%;
  
}


.toggle-menu-button{
  display: none;
}



#logo{
  align-items: center; 
  margin-right: 60px; 
  width: 65px;
  height: 65px;
  
}

  #logo img {
  width: 100%;
  height: auto;
}

.n-rp {
  display:none;
}



    /* ヘッダー */

/* ===== デスクトップメニュー ===== */

.header-menu {
  display: flex;
  align-items: center; /* ← これで縦位置が揃う */
  height: 85px;
  padding-left: 40px;
  padding-top: 10px;
  background: #fff; /* 背景色は好みで */

}

.desktop-nav ul {
  display: flex;
  gap: 40px; /* 項目の間隔 */
  margin: 0;
}

.desktop-nav li {
  list-style: none;
}

.desktop-nav li a {
  font-size: 15px;
  font-weight: 500;
  color: #000;
   line-height: 1.2;
  position: relative;
  text-decoration: none;
}

.desktop-nav li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background-color: #000;
  transition: width 0.3s ease;
}

.desktop-nav li a:hover::after {
  width: 100%;
}

/* ===== ハンバーガーメニュー ===== */
.menu-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: none;
}

.menu-toggle__line {
  position: absolute;
  left: 11px;
  width: 26px;
  height: 3px;
  background-color: #000000;
  transition: all 0.6s;
}

.menu-toggle__line:nth-of-type(1) { top: 14px; }
.menu-toggle__line:nth-of-type(2) { top: 23px; }
.menu-toggle__line:nth-of-type(3) { top: 32px; }

.menu-toggle.active .menu-toggle__line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
.menu-toggle.active .menu-toggle__line:nth-of-type(2) {
  opacity: 0;
}
.menu-toggle.active .menu-toggle__line:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}

/* ===== オーバーレイメニュー ===== */
.menu-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.95);
  visibility: hidden;
  opacity: 0;
  transition: all .6s;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-nav ul {
  text-align: center;
}

.menu-nav ul li {
  margin: 20px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all .6s;
}

.menu-nav.active {
  visibility: visible;
  opacity: 1;
}

.menu-nav.active ul li {
  opacity: 1;
  transform: translateY(0);
}

.menu-nav.active ul li:nth-child(1) { transition-delay: 0.1s; }
.menu-nav.active ul li:nth-child(2) { transition-delay: 0.2s; }
.menu-nav.active ul li:nth-child(3) { transition-delay: 0.3s; }
.menu-nav.active ul li:nth-child(4) { transition-delay: 0.4s; }
.menu-nav.active ul li:nth-child(5) { transition-delay: 0.5s; }

.menu-nav ul li a {
  color: #000000;
  font-size: 24px;
}

/* ===== レスポンシブ ===== */
@media screen and (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .menu-nav {
    display: flex;
  }
}








/* ニュース記事全体 */
.news-article {
  max-width: 900px;      /* 横幅を制限 */
  margin: 80px auto;     /* 中央寄せ */
  padding: 0 20px;       /* 画面端の余白 */
  font-family: 'LineSeedJP', sans-serif;
  line-height: 2;
  color: #333;
}

/* 見出し */
.news-article h1 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  border-bottom: 2px solid #ddd;
  padding-bottom: 10px;
  padding-top: 50px;
}

/* 本文 */
.news-article .text p {
  font-size: 16px;
  margin-bottom: 20px;
}

.news-article .text.vertical p {
  max-width:600px;
  margin:0 auto;
}


/* リンク */
.link-Blue {
	color:#0000FF;
}

.link-Blue:hover {
	color:#6699FF;
}


/* 日付・署名部分 */
.news-article .text .date {
  text-align: right;
  font-size: 14px;
  color: #666;
  margin-top: 40px;
}
.news-article .swiper {
  position: relative;
  width: 100%;          /* 写真エリアの幅（全体の80%） */
  max-width: 1000px;   /* 最大幅を制限 */
  margin: 60px auto;   /* 画面中央に配置＆上下余白 */
  overflow: hidden;
  
}

.news-article .swiper.vertical {
	max-width: 600px;
}

.swiper-wrapper {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* 枠に収める */
  display: block;
  aspect-ratio: 16/9;
  
}

.vertical .swiper-slide img {
	  aspect-ratio: 3/4;
}

.swiper-slide {
  overflow: hidden;
}


.swiper-pagination {
  position:relative;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  bottom: 0; /* 必要に応じて調整 */
  left: 0;
  width: 100%;
  overflow:visible;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
  margin: 0 4px;
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}

/* スマホ用 */
@media screen and (max-width: 768px) {
  .news-article h1 {
    padding: 0 15px;  /* 左右余白微調整 */
    font-size: clamp(13px, 3vw, 17px);
  }

  .news-article .text p {
    margin-right: 15px;
    font-size: clamp(12px, 3vw, 16px);
  }

  .news-article .text .date {
    font-size: clamp(12px, 3vw, 16px);
  }
  
  .swiper {
    width: 95%;
    margin: 30px auto;
    
  }
  .swiper-slide img {
    aspect-ratio: 4/3; /* スマホは縦横比を少し変える */
  }
    
  .rp {
	display:none;
  }

  .n-rp {
    display:block;
  }

}


@media (any-hover: hover) {
  .buttonNeumorphism {
    transition: box-shadow 0.6s;
  }


.buttonNeumorphism:hover {
  box-shadow: -10px -10px 10px #ffffff, 2px 2px 4px rgb(255, 255, 255);
}

.buttonNeumorphism:active {
  background-color: #e6e6e6;
  box-shadow: inset 10px 10px 20px rgba(228, 230, 241, 0.16);
}
}



.footer {
  background-color: #ffffff;
  color: #000000;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-nav {
  width: 100%;
  max-width: 960px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* .footer-left を中央に寄せる */
.footer-left {
  display: flex;
  gap: 30px;
  
  justify-content: center;
  flex: 1; 
  align-items: center; 
}

.footer-menu {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav-item.tel {
  font-size: 25px;
  margin-top: -2px;
  line-height: 40px; 
  height: 40px;
  display: inline-block;
  color: #000000;
  text-decoration: none;
}

/* 電話スタイル */
.la-phone {
  position: relative;
  top: 2px;
}


.footer-nav-item a:hover {
  opacity: 0.7;
}


/* メールボタン内のSVGは上下中央 */
.buttonNeumorphism svg {
 height: 30px;  /* ボタン内で少し小さめ */
  width: auto;
  display: block;
  margin: 0;
}


/* メールボタンスタイル */
.buttonNeumorphism {
 width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 5px 5px 20px #c8c9cc, inset -5px -5px 20px #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;;
  padding: 0; /* 念のため */
}

.iconEmail {
  margin: 0;
 
}

/* インスタ画像とメールボタンの高さを揃える */
.footer-menu img
 {
  height: 30px;
  display: block; /* 不要な下余白を消す */
  width: auto;    /* 横幅は自動調整 */
  margin-top: 5px; /* 例えば上下5px調整で垂直中心に近づける */
  margin-bottom: 5px;
}


/* コピーライト */
.footer-copyright {
  margin-top: 80px;
  text-align: center;

}


/***追従するトップへ戻るボタン***/
#page-top {
  margin-bottom: 100px;
    position: fixed;
    right: 5px;
    bottom: 20px;
    height: 50px;
    text-decoration: none;
    font-weight: bold;
    transform: rotate(90deg);
    font-size: 90%;
    line-height: 1.5rem;
    color: #272727;
    padding: 0 0 0 35px;
    border-top: solid 1px;
}
#page-top::before {
    content: "";
    display: block;
    position: absolute;
    top: -1px;
    left: 0px;
    width: 15px;
    border-top: solid 1px;
    transform: rotate(35deg);
    transform-origin: left top;
}
/***トップへ戻るボタンここまで***/