@charset "utf-8";
/* CSS Document */
/***************************************************
基本設定
***************************************************/
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  height: 100%;
}
body {
  margin: 0;
  font-weight: normal;
  font-family: "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", "メイリオ", Arial, sans-serif;
  color: #343434;
  font-size: 1.6rem;
  line-height: 1.75;
  box-sizing: border-box;
  height: 100%;
  overflow-x: hidden;
  word-spacing: normal;
}
header {
  margin-top: 0;
  padding-top: 0;
}
/* sprites.svgだけをターゲット */
.svg-sprite {
  position: absolute;
  visibility: hidden;
}
/* 表示させたいアイコンやロゴには影響しない */
svg:not(.svg-sprite) {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  vertical-align: bottom;
  margin: 0;
  padding: 0;
  line-height: 1;
  overflow: hidden;
}
picture, img {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
  object-fit: cover;
  display: block;
}
ul, ol {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
a:hover {
  opacity: 0.5;
}
a, a:visited {
  text-decoration: none;
  color: #343434;
}
.preparation {
  text-align: center;
}
.main-box p a {
  text-decoration: underline;
  color: #5095D7;
}
.main-box p a:focus {
  outline: 2px solid #ff6600; /* フォーカス時の枠線 */
}
/***************************************************
スマホおよびタブレット縦向きデザイン（768px未満） 
***************************************************/
.header-inner {
  position: relative;
  padding: 0 5% 2.5%;
}
.slider {
  position: relative;
}
@media (max-width: 768px) {
  /* ===================
*
* ハンバーガーメニュー
*
===================================== */
  .hamburger {
    position: absolute;
    z-index: 10001;
    top: 0;
    right: 0;
    display: block;
    width: 60px;
    /*height: 100%;*/
    padding: 12px 0;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    border: 0;
    outline: 0;
    background-color: transparent;
    cursor: pointer;
  }
  .hamburger:before {
    content: "";
    display: block;
    width: 60px; /* 現在80pxに設定されている幅を調整 */
    height: 60px; /* 高さも同様に調整 */
    background-color: #CB0A1F;
    border-radius: 10%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
  }
  .hamburger .bar {
    will-change: transform;
    background-color: #fff;
    display: block;
    width: 38px; /* 幅を少し小さくする */
    height: 4px; /* 高さを少し薄くする */
    margin: 0 auto; /* 間隔を調整 */
    border-radius: 3px;
    transition: background-color .35s ease, transform .35s ease;
  }
  .hamburger .middle {
    color: #FFF;
    /*  padding: 2px 0;*/
    text-align: center;
    margin: 0 auto;
    display: block;
    font-weight: bold;
    font-size: 1.6rem;
  }
  /* メニューが閉じたときの黒背景の非表示 */
  .black_bg {
    opacity: 0;
    visibility: hidden;
    transition: opacity .6s ease;
  }
  /* 表示された時用のCSS */
  .nav-open .nav {
    right: 0;
  }
  .nav-open .hamburger {
    padding: 24px 0; /* 必要に応じて値を調整 */
  }
  .nav-open .hamburger:before {
    border-radius: 50%;
  }
  nav {
    position: fixed;
    right: 0; /* メニューが右に開く */
    top: 0;
    width: 75%; /* 画面幅の80%にする */
    height: 100vh;
    background-color: rgba(255, 255, 255, 1); /* 不透明な白背景 */
    transition: all .6s ease;
    z-index: 200;
    overflow-y: auto; /* スクロール可能にする */
  }
  /* 背景の黒のオーバーレイを透過させる */
  .nav-open .black_bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5); /* 左側が少し透過される黒背景 */
    visibility: visible;
    opacity: 1;
    transition: opacity .6s ease;
  }
  .nav-open .hamburger .bar.top {
    transform: rotate(45deg) translate(2px, 2px) /* 微調整 */
  }
  .nav-open .hamburger .middle {
    display: none;
  }
  .nav-open .hamburger .bar.bottom {
    transform: rotate(-45deg) translate(-1px, -1px); /* 微調整 */
  }
  .nav-open nav {
    padding: 0 5% 5%;
  }
  .nav_list {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 1.8rem;
    display: inherit;
  }
  .nav_list li {
    border-bottom: 1px dotted #BCBBBB;
    white-space: nowrap;
  }
  .nav_list li a::before {
    font-family: "Material Icons";
    content: "\e5cc";
    vertical-align: middle;
  }
  .nav_list a, .nav_list a:visited {
    display: block;
    padding: 8px 0;
    text-decoration: none;
    color: #343434;
  }
  .nav_list li ul {
    margin-left: 5%;
  }
  .nav_list li ul li {
    border-bottom: none;
  }
  .nav_list .en-name {
    color: #757575;
    font-size: 1.4rem;
    padding-left: 1rem;
  }
  nav h2 {
    margin: 0;
  }
  nav h2 svg.site-name {
    width: 80%;
  }
  .black_bg .f-sns-block {
    margin: 8% 0;
  }
  .black_bg .f-sns-block ul {
    gap: 20px;
  }
}
/* ===================
*
* 全ページ共通部分
*
===================================== */
header h1 {
  /*color: #757575;*/
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  width: calc(100% - 50px);
  line-height: 1.5;
  font-size: 1.2rem;
}
.logo {
  width: calc(100% - 50px);
}
svg.logo-mark {
  width: 25%;
}
svg.site-name {
  width: 65%;
}
.sns-block, .drawer_bg, .pc-only {
  display: none;
}
/*ヘッダー*/
header {
  width: 100%;
  background: rgb(255, 255, 255, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  box-sizing: border-box;
  -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2), -5px -5px 5px rgba(255, 255, 255, 0.2); /* 光と影 */
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2), -5px -5px 5px rgba(255, 255, 255, 0.2); /* 光と影 */
}
h2.sp-only {
  margin: 5% 0;
}
h2.sp-only::before {
  content: none !important;
}
.logo {
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.hidden-logo {
  height: 15px; /* 高さをゼロにする */
  overflow: hidden; /* コンテンツを非表示にする */
  transition: height 0.3s ease; /* スムーズなアニメーションを適用 */
  opacity: 0;
}
/*パンくず*/
.bcn-box {
  text-align: right;
}
.bcn {
  font-size: 1.4rem;
  display: inline-block;
  padding: 0.5% 13% 0.5% 2.5%;
  margin: 0 0 5% auto;
  background: #FFF;
  -webkit-box-shadow: inset 0 -3px 5px rgba(0, 0, 0, 0.2), inset 0 3px 5px rgba(255, 255, 255, 0.2); /* 光と影（内側に） */
  box-shadow: inset 0 -3px 5px rgba(0, 0, 0, 0.2), inset 0 3px 5px rgba(255, 255, 255, 0.2); /* 光と影（内側に） */
}
/* 検索フォーム全体のスタイル */
#search-form {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 20px 0 20px auto;
}
#search-container {
  position: relative;
  width: 60%;
  margin-right: 2.5%;
}
#search-container svg {
  height: 70%;
  fill: #bbb;
}
#s-box {
  width: 100%;
  padding: 1% 5% 1% 15%; /* 左右にアイコン分のスペースを追加 */
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
}
/* 虫眼鏡アイコンのスタイル */
.search-icon {
  position: absolute;
  left: 10px; /* アイコンの位置を調整 */
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none; /* クリックを無効化 */
}
#s-btn-area {
  background-color: #FF8C27; /* ボタンの背景色 */
  border: 3px solid #FF8C27; /* ボタンの枠線 */
  border-radius: 5px; /* ボタンの角を丸く */
  padding: 0.5% 3%; /* ボタン内のスペースを調整 */
  color: #fff; /* テキストの色 */
  font-size: 14px; /* テキストのサイズ */
  font-weight: bold; /* テキストを太字に */
  cursor: pointer; /* マウスオーバー時にポインターを表示 */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* ボタンに影を追加して立体感 */
  transition: all 0.3s ease; /* ホバー時のスムーズな変化 */
  display: inline-block; /* ボタンのサイズ調整 */
  text-align: center; /* テキストを中央寄せ */
}
/* ホバー時の効果 */
#s-btn-area:hover {
  background-color: #FF5722; /* ホバー時の背景色 */
  border-color: #FF5722; /* ホバー時の枠線色 */
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2); /* ホバー時に影を強調 */
  transform: translateY(-2px); /* 少し浮き上がるようにする */
}
/* フォーカス時のアクセシビリティ対応 */
#s-btn-area:focus {
  outline: 2px solid #FF5722; /* フォーカス時に枠線を追加 */
}
/*************************************************************************
ブロック共通
*****************************************************************************/
/*枠組み*/
.block-bottom {
  margin-bottom: 8%;
}
.inner-block {
  width: 90%;
  margin: 0 auto;
}
#main-contents {
  overflow: hidden;
}
/*リンクボタン*/
.all-link {
  display: flex; /* flexboxで右寄せ */
  justify-content: flex-end; /* 要素を右寄せ */
  position: relative;
  margin: 5% 5% 0 auto; /* 中央寄せや右寄せが必要なら調整 */
  background-color: rgba(255, 178, 25, 1); /* 要素の背景色 */
  -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2), -5px -5px 5px rgba(255, 255, 255, 0.2); /* 光と影 */
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2), -5px -5px 5px rgba(255, 255, 255, 0.2); /* 光と影 */
  border-radius: 10px; /* 角丸 */
  overflow: hidden;
  width: fit-content; /* テキストに合わせた幅にする */
  font-size: 1.4rem;
}
.all-link a {
  display: inline-block; /* aタグの背景に合わせて動く */
  padding: 10px 20px; /* ボタンの内側の余白 */
  background-color: transparent; /* 初期状態の背景色 */
  text-decoration: none; /* テキストの下線を消す */
  color: #222; /* テキストの色 */
}
.all-link span {
  display: inline-block;
  position: relative;
  z-index: 1; /* 背景と重ならないように */
}
.all-link:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: rgba(255, 148, 25, 1);
  transition: 0.2s;
  z-index: 0;
}
.all-link:hover a {
  color: #FFF;
  opacity: 1;
}
.all-link:hover span {
  z-index: 5;
}
.all-link:hover, .all-link:active {
  -webkit-box-shadow: inset 3px 3px 5px rgba(0, 0, 0, 0.2), inset -3px -3px 5px rgba(255, 255, 255, 0.2); /* 光と影（内側に） */
  box-shadow: inset 3px 3px 5px rgba(0, 0, 0, 0.2), inset -3px -3px 5px rgba(255, 255, 255, 0.2); /* 光と影（内側に） */
  transition: 0.3s ease-in-out; /* スムーズなアニメーション */
}
.all-link span:hover, .all-link:active span {
  color: #FFF;
}
.all-link:hover:before {
  width: 100%;
}
/*コラム・お知らせ（全ページ共通）*/
.column-block {
  overflow: hidden;
}
.column-top, .column-bottom {
  width: 90%;
  margin: 0 10% 0 0;
  height: auto; /* 自動的に高さを調整 */
  max-height: 150px; /* 高さの上限を設定して、大きすぎないように調整 */
  object-fit: contain; /* SVGが歪まないように調整 */
  position: relative;
  z-index: -10;
}
.column-bottom {
  margin: -20% 0 0 10%;
}
.column-top svg {
  transform: scale(2) translateX(-25%); /* 2倍に拡大し、少し左に移動 */
  width: 100%; /* 元の幅を100%に設定してから拡大 */
  height: auto; /* 高さを自動調整 */
  overflow: hidden; /* 画面外を隠す */
}
.column-bottom svg {
  transform: scale(2) scaleX(-1) scaleY(-1) translateX(-25%); /* 2倍に拡大し、右に移動 */
  width: 100%;
  height: auto;
  overflow: hidden;
}
.column-block li {
  border-bottom: 1px dashed #707070;
  padding-bottom: 1.5%;
  margin-bottom: 3.5%;
}
.column-date {
  font-size: 1.4rem;
  margin-bottom: 1.5%;
}
.column-cate {
  background: rgb(43, 95, 38, 1);
  border-radius: 10px;
  text-align: center;
  margin: 0 0 0 5%;
  padding: 1% 5%;
  display: inline-block;
}
.column-cate.news {
  background: rgb(15, 50, 140, 1);
}
.column-cate a, .column-cate a:visited {
  color: #FFF;
}
.column-cate a:hover {
  opacity: 0.5;
}
.column-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5px 10px 0;
}
.column-title a {
  flex: 1;
  white-space: nowrap;
  /*  overflow: hidden;
  text-overflow: ellipsis;*/
}
.column-title::after {
  font-family: "Material Icons";
  content: '\eac9';
  color: rgb(52, 172, 235, 1);
  background-size: 16px;
  width: 16px;
  height: 16px;
}
.column-block .all-link {
  background: rgb(171, 213, 235, 1)
}
.column-block .all-link:before {
  background: rgb(52, 172, 235, 1)
}
/*販売中写真一覧スライダ―（全ページ共通）*/
.all-page-photo {
  background: #eafaf1;
  padding: 8% 0;
  margin-bottom: 10%;
}
.photo-text {
  width: 90%;
  font-weight: bold;
  margin: 0 auto 5%;
}
.all-page-photo .all-link {
  background-color: rgb(255, 152, 0, 1);
  margin: 8% 5% 0 auto;
}
.all-page-photo .all-link:before {
  background: rgb(230, 137, 0, 1);
}
.photo-swiper {
  position: relative;
  overflow: hidden; /* スクロール干渉を防止 */
}
.swiper-slide {
  height: 100%; /* スライダー全体の高さに一致させる */
}
/* キャプション部分 */
.photo-swiper .slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
  height: 35%;
}
.swiper-slide:hover .slide-content {
  opacity: 1;
}
.photo-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 正方形内での調整 */
}
.slide-content .photo-link {
  background: #FFF;
  margin: 0 2.5% 0 5%;
  border-radius: 10px;
  color: #343434;
  width: fit-content;
  padding: 1.5% 2.5%;
  position: absolute;
  right: 0;
  bottom: 7%;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
}
.slide-content .photo-link::after {
  content: '\e5df';
  font-family: "Material Icons";
  vertical-align: middle;
  font-size: 1.8rem;
}
/*広告*/
#contents .ad-block h3.ad-title {
  color: #343434;
  border: none;
  text-align: center;
  margin: 0 auto 5%;
}
.ad-block .ad-lists {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.ad-block .ad-lists li {
  width: calc((100% - 10%) / 2);
}
.ad-block .ad-lists li a {
  display: block;
  width: 100%;
  height: auto; /* 必要に応じて調整 */
  padding: 10px; /* 必要に応じて調整 */
  box-sizing: border-box;
}
.ad-lists li img[width="1"][height="1"] {
  display: none; /* トラッキング用の透明画像を非表示に */
}
/*footer*/
footer {
  border-top: #0F308B 10px solid;
  position: relative;
  padding: 5% 0;
}
footer::before {
  content: "";
  position: absolute;
  top: -17px;
  border: solid 2px #0F308B;
  z-index: -1;
  width: 100vw;
  ;
}
.footer-inner {
  padding: 0 5%;
}
footer h1 {
  font-size: 1.4rem;
}
.office-name a, .f-sns-block .sns-icon {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10%;
}
.office-name .logo-text {
  flex: 1;
}
.f-sns-block .sns-icon {
  width: 60%;
}
.f-sns-block .sns-icon li {
  width: calc(100% - 5% / 3);
}
.f-sns-block .sns-icon li img, .f-sns-block .sns-icon li svg {
  max-height: 50px;
  width: auto;
}
.qualification img {
  width: 50%;
  margin-bottom: 10%;
}
.f-menu-block {
  margin-bottom: 10%;
}
.f-nav_list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1.6rem;
  display: inherit;
}
.f-nav_list li {
  border-bottom: 1px dotted #BCBBBB;
}
.f-nav_list li a::before {
  font-family: "Material Icons";
  content: "\e5cc";
  vertical-align: middle;
}
.f-nav_list a, .f-nav_list a:visited {
  display: block;
  align-items: baseline;
  padding: 8px 0;
  text-decoration: none;
  color: #343434;
}
.f-nav_list li ul {
  margin-left: 5%;
}
.f-nav_list li ul li {
  border-bottom: none;
}
.f-nav_list .en-name {
  color: #343434;
  font-size: 1.2rem;
  padding-left: 1rem;
}
.f-site-name {
  width: 50%;
  text-align: right;
  margin: 0 0 0 auto;
}
.f-site-name svg.site-name {
  width: 100%;
}
.copyright {
  text-align: center;
  font-size: 1.2rem;
}
aside {
display: none; /* 初期状態で非表示 */
  width: 100%;
  position: fixed;
  bottom: 0;
  background: #fb8c00;
  padding: 2.5%;
  text-align: center;
  color: #FFF;
z-index: 10000;
	font-size: 1.8rem;
}
aside .page-top-btn {
  position: absolute;
  right: 0;
  top: -50%;
background: #fb8c00;
    line-height: 1.25;
    padding: 0 1%;
    border-radius: 15px 0 0;
}
aside .page-top-btn a {
  font-family: "Material Icons";
  content: '\f182';
  vertical-align: text-bottom;
  font-size: clamp(5rem, 1.4vw, 6rem);
	font-weight: bold;
	color: #FFF;
}
aside .material-symbols-outlined {
  font-variation-settings:
    'FILL'1, 'wght'600, 'GRAD'200, 'opsz'40;
}
aside .side-btn-inner {
  display: flex;
  justify-content: space-around;
}
aside .side-btn .mail-btn {
font-family: "Material Icons";
content: '\f187';
vertical-align: text-bottom;
font-size: clamp(6rem, 1.2vw, 7rem);
font-weight: bold;
line-height: 1;
}
aside .side-btn .mail-btn a{
	color:#FFF;
}
aside .side-btn .line-btn {
  width: 40%;
}
aside .side-btn .line-btn img {
  height: auto;
}
/***************************************************
タブレット横向きおよびPC用デザイン（768px以上）
***************************************************/
@media (min-width: 768px) {
  .footer-inner {
    display: flex;
    justify-content: space-around;
    position: relative;
  }
  .office-info {
    width: 60%;
  }
  .f-menu-block {
    width: 38%;
  }
  .office-name {
    width: 70%;
    margin-bottom: 5%;
  }
  .f-sns-block {
    width: 60%;
  }
  .f-site-name {
    width: 20%;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  footer .sns-icon {
    width: 50%;
    margin-bottom: 5%;
  }
  .column-top, .column-bottom {
    width: 50%;
    max-height: none;
  }
  .photo-text {
    text-align: center;
    margin-bottom: 2.5%;
  }
	aside{
		width: 5%;
		bottom:10%;
		right:0;
		padding: 1% 0.5%;
		font-size: 1.4rem;
	}
	aside .side-btn-inner{
		display:block;
	}
	aside .side-btn .mail-btn,aside .side-btn .line-btn{
		width: 100%;
	}
	aside .side-btn .mail-btn{
		margin-bottom: 20%;
	}
	aside .page-top-btn{
		top:100%;
	}
}
/***************************************************
PC用デザイン（1024px以上）
***************************************************/
@media (min-width: 1024px) {
  body {
    font-size: 1.6rem;
    padding: 0;
  }
  .sp-only {
    display: none;
  }
  .sns-block, .drawer_bg, .pc-only {
    display: block;
  }
  /* ===================
*
* 全ページ共通部分
*
===================================== */
  /*ヘッダー*/
  header {
    padding: .25% 0;
  }
  .hidden-logo {
    opacity: 1;
    display: block;
    height: auto;
  }
  .hamburger {
    display: none;
  }
  .header-inner {
    padding: 0;
  }
  .header-inner01 {
    width: 74%;
    max-width: 1420px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: space-between;
  }
  .menu-block {
    align-items: flex-end;
  }
  header h1 {
    flex: 1;
    font-size: 1.4rem;
  }
  .sns-block {
    display: block;
    width: 15%;
  }
  .sns-icon {
    display: flex;
    justify-content: space-around;
    line-height: 1;
  }
  .sns-block .sns-icon li {
    width: calc(100% - 5% / 3);
  }
  .sns-block .sns-icon li img, .sns-block .sns-icon li svg {
    max-height: 25px;
    width: auto;
    vertical-align: baseline;
  }
  .logo {
    width: 23%;
  }
  .logo a {
    display: flex;
    align-items: baseline;
  }
  svg.logo-mark {
    width: 30%;
    margin-right: 1%;
  }
  .black_bg {
    flex: 1;
  }
  .nav_list {
    display: flex;
    line-height: 1.5;
    justify-content: flex-end;
    font-size: clamp(1.2rem, 1vw, 1.8rem);
  }
  .nav_list li {
    margin: 0 2.5%;
  }
  .nav_list li span {
    display: block;
    text-align: center;
  }
  /*  .nav_list a, .nav_list a:visited {
    color: #343434;
  }*/
  .en-name {
    color: #757575;
    font-size: clamp(1.0rem, 1vw, 1.4rem);
  }
  /* メインメニューのスタイル */
  .menu {
    position: relative;
  }
  .menu li {
    display: inline-block;
    position: relative;
  }
  /* ホバーまたはクリックでサブメニューを表示 */
  .has-submenu.active .submenu {
    display: block;
  }
  header .jp-name {
    position: relative;
    display: inline-block;
    padding-bottom: 5px; /* 下線と文字の間に余白を追加 */
  }
  header a .jp-name::after {
    content: '';
    position: absolute;
    width: 30%; /* 初期状態の下線は中央部分にのみ表示 */
    height: 2px; /* 下線の太さ */
    background-color: #000; /* 初期状態の下線の色 */
    left: 50%; /* 中央からスタート */
    transform: translateX(-50%); /* 中央に配置 */
    bottom: 0; /* 文字のすぐ下に配置 */
    transition: all 0.3s ease; /* アニメーションの滑らかさ */
  }
  header a:hover .jp-name::after {
    width: 100%; /* ホバー時に下線を全体に広げる */
    background-color: #FF8C27; /* 下線の色をオレンジに変更 */
  }
  header .nav_list li a:hover, header .nav_list li a:hover .en-name {
    color: #FF8C27;
    opacity: 1;
  }
  .nav_list .current-menu-item a, .nav_list .current-menu-item a .en-name {
    color: #FF8C27
  }
  header .nav_list .current-menu-item a .jp-name::after {
    background-color: #FF8C27
  }
  /* サブメニューの初期状態を非表示に */
  .has-submenu {
    position: relative;
    padding-right: 20px; /* アイコン分の余裕を確保 */
    line-height: 1.6; /* アイコンとテキストがバランスよく表示されるように */
  }
  .has-submenu .arrow-icon {
    display: none; /* 初期状態では非表示 */
  }
  .has-submenu.active .arrow-icon {
    display: inline-block; /* 展開時に表示 */
    position: absolute;
    left: 50%; /* 中央に位置する */
    top: 90%; /* 親メニューの下に表示 */
    transform: translateX(-50%); /* 完全に中央揃え */
    width: 40px; /* 矢印の幅 */
    height: 10px; /* 矢印の高さ */
  }
  .submenu {
    display: none; /* 初期は非表示 */
    position: fixed; /* 画面全体に対して絶対位置 */
    /* top: 100px; ナビゲーションの下に配置 */
    left: 0; /* 画面の左端から表示 */
    width: 100vw; /* ビューポート全体の幅を使用 */
    background-color: #FF8C27; /* 背景色を設定 */
    padding: 10px;
    z-index: 1000; /* 他の要素よりも前面に表示 */
    justify-content: space-between; /* 項目を左右に均等に配置 */
  }
  .menu-items {
    display: flex;
    justify-content: space-between; /* メニュー項目を均等に配置 */
    width: 60%;
    min-width: 1150px;
    margin: 0 auto; /* 中央に配置 */
  }
  .submenu.show {
    display: flex;
  }
  .submenu li {
    margin-right: 20px; /* 必要に応じて間隔を調整 */
  }
  .menu-items a {
    display: flex;
    align-items: center; /*  垂直中心 */
    /* justify-content: center;水平中心 */
  }
  .menu-items a::before {
    border-top: 1px solid #FFF;
    content: "";
    width: 0.5rem; /* 線の長さ */
    margin-right: 0.5rem;
  }
  .nav_list .menu-items a, .nav_list .menu-items a:active {
    color: #FFFFFF;
    text-decoration: none;
    pointer-events: auto;
  }
  .nav_list .menu-items a:hover {
    color: #4E4D4D;
  }
  .nav_list .menu-items a:hover::before {
    border-top: 1px solid #4E4D4D;
  }
  .nav_list li:first-child {
    display: none;
  }
	.nav_list .menu-items li:first-child{
		display: block;
	}
  .bcn {
    margin-bottom: 3%;
  }
  #search-container {
    width: 100%;
    max-width: 400px; /* 最大幅を指定 */
    margin-right: 1%;
  }
  #s-box {
    padding: 1% 5% 1% 10%;
  }
  #s-btn-area {
    padding: 0.1% 1.25%;
    font-size: 16px;
  }
  /*************************************************************************
ブロック共通
*****************************************************************************/
  /*枠組み*/
  .block-bottom {
    margin-bottom: 5%;
  }
  .inner-block {
    width: 74%;
    max-width: 1420px;
    margin: 0 auto;
  }
  .all-link {
    margin-right: 13%;
  }
  /***********コラム＆お知らせ（全ページ共通）**********/
  .column-bottom {
    margin: -12% 0 0 auto;
  }
  .column-top svg, .column-bottom svg {
    transform: none;
  }
  .column-block li {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    margin-bottom: 1.5%;
  }
  .column-date {
    width: 30%;
    margin-bottom: 0;
  }
  .column-title {
    flex: 1;
    padding: 0;
  }
  .column-block .all-link {
    margin-top: 2%;
  }
  /*********販売中写真一覧（全ページ共通スライダー）****************/
  .all-page-photo {
    margin-bottom: 5%;
  }
  .photo-swiper {
    margin: 0 auto; /* 中央揃え */
    width: 100%; /* 親要素の幅にフィット */
    max-width: 100vw; /* 画面の最大幅に合わせる */
    overflow: hidden; /* 余分なコンテンツを隠す */
  }
  .photo-swiper .swiper-slide {
    flex: 0 0 auto; /* デフォルトの幅を適用 */
    width: 100%; /* スライドを画面いっぱいに広げる */
  }
  .photo-swiper .swiper-slide {
    width: 350px; /* 横幅を調整 */
    height: 265px; /* 高さを調整 */
  }
  .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; /* 必要に応じて 'top' や 'bottom' に変更 */
  }
  .photo-swiper .slide-content {
    height: 48%;
  }
  .slide-content h3 {
    font-size: 1.6rem;
  }
  .slide-content p {
    font-size: 1.4rem;
  }
  .all-page-photo {
    padding: 4% 0;
  }
  .all-page-photo .all-link {
    margin-top: 3%;
  }
  /**********広告****************/
  #contents .ad-block h3.ad-title {
    margin-bottom: 2.5%;
  }
  .ad-block .ad-lists {
    width: 74%;
    max-width: 1420px;
    margin: 0 auto 10%;
  }
  .ad-block .ad-lists li {
    width: calc((100% - 10%) / 3);
  }
  /***************************	
	フッター
	***********************************/
  .footer-inner {
    width: 74%;
    max-width: 1420px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    position: relative;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
  }
  footer .office-info {
    width: 40%;
  }
  footer .office-name {
    width: 100%;
  }
  footer svg.logo-mark {
    width: 30%;
  }
  .f-sns-block .sns-icon {
    width: 100%;
  }
  .f-sns-block .sns-icon li img, .f-sns-block .sns-icon li svg {
    max-height: 35px;
  }
  .f-site-name {
    position: static;
    width: 10%;
  }
  .f-site-name svg.site-name {
    width: 25%;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .f-menu-block {
    display: flex;
    justify-content: center;
    width: 55%;
    margin-left: 8%;
    margin-bottom: 2%;
  }
  .f-menu-block ul.f-nav_list {
    width: 48%;
  }
  .f-menu-block ul.f-nav_list:nth-child(2) {
    width: 52%;
  }
  .f-nav_list {
    display: block;
  }
  .f-nav_list li {
    border: none;
  }
  .f-nav_list li a {
    display: flex;
    /*	align-items: center; 垂直中心 */
    /* 	justify-content: center;水平中心 */
    text-align: left;
  }
  footer .menu-items {
    display: block;
    min-width: initial;
    width: auto;
    margin: 0;
    text-align: left;
  }
  footer .menu-items a {
    display: flex;
    /* align-items: center; 垂直中心 */
    /* justify-content: center; 水平中心 */
    text-align: left;
  }
  footer .menu-items a::before {
    border-top: 1px solid #343434;
    content: "";
    width: 0.5rem; /* 線の長さ */
    margin-right: 0.5rem;
  }
}
/***************************************************
Retinaディスプレイ用
***************************************************/
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {}