/*コメント*/
h1,h2,h3,h4{font-weight:normal;}

.carousel-container,.carousel-container-2,.carousel-container-3,.carousel-container-4 {
    position: relative;
    width: 100%;
}
.carousel img,.carousel-2 img,.carousel-3 img,.carousel-4 img {padding:0 2.5%;
    width: 100%;
    height: auto;
}

.custom-arrow,.custom-arrow-2,.custom-arrow-3,
    .custom-arrow-4,.custom-arrow-5 {
        z-index: 10;
        position: absolute;
        left: 50%;
        bottom: -35%; /* 下からの距離を調整 */
        transform: translateX(-50%); /* 中央揃え */
        display: flex;
        gap: 10px;
        width: auto;
        padding-top:0;
        margin: 0;
    }
    
    .custom-arrow .prev,.custom-arrow .next,
    .custom-arrow-2 .prev-2,.custom-arrow-2 .next-2,
    .custom-arrow-3 .prev-3,.custom-arrow-3 .next-3,
    .custom-arrow-4 .prev-4,.custom-arrow-4 .next-4,
    .custom-arrow-5 .prev-5,.custom-arrow-5 .next-5 {
        background: transparent;
        color: rgba(54,69,79,1.0);
        padding: 30px 30px;
        cursor: pointer;
        border: 1px solid rgba(54,69,79,1.0);
        border-radius: 50%;
        transition: background 0.3s;
        flex: 1;
        text-align: center;
    }
    
    .custom-arrow .prev:hover,.custom-arrow .next:hover,
    .custom-arrow-2 .prev-2:hover,.custom-arrow-2 .next-2:hover,
    .custom-arrow-3 .prev-3:hover,.custom-arrow-3 .next-3:hover,
    .custom-arrow-4 .prev-4:hover,.custom-arrow-4 .next-4:hover,
    .custom-arrow-5 .prev-5:hover,.custom-arrow-5 .next-5:hover {
        background: rgba(54,69,79,0.3);
    }


.navy-black a,.navy-black a:hover,.navy-black a:hover:after,.navy-black{color:#36454F;text-decoration:none;}


/**/
.circle a img,.circle img{border-radius:15px;}

.circle-2 img{border-radius:50%;}
/* 画像のコンテナ */
.scale-up {border-radius:15px;
  overflow: hidden;
   /* お好みで角丸を調整 */
}

/* 画像本体 */
.scale-up a img {
  width: 100%;
  height: 100%;
  /*object-fit: cover;*/
  transition: transform 0.3s ease;
  display: block;
}

/* ホバー時の拡大 */
.scale-up a img:hover {border-radius:15px;
  transform: scale(1.1);overflow:hidden;
}

.text-center{text-align:center;}
/* ブログアーカイブのスタイル */
.blog-list {
    margin: 0 -15px; /* 左右のネガティブマージンでコンテナをはみ出し、等間隔に */
}
.blog-item2 {
    float: left;
    width: 100%; /* 4つずつ表示 */
    padding: 0 15px;
    margin-bottom: 30px;
    box-sizing: border-box;
}
.blog-item {
    float: left;
    width: calc(100%/3); /* 4つずつ表示 */
    padding: 0 15px;
    margin-bottom: 30px;
    box-sizing: border-box;
}
.blog-detail-content{background:rgba(255,255,255,0.8);padding:10px;border-radius:10px;width:80%;}

.blog-detail-content h5{font-size:1.6em;}

.blog-detail-content p{font-size:1.2em;}
/* レスポンシブ対応 */
@media screen and (max-width: 992px) {
    .blog-item2 {
        width: 100%; /* タブレットでは3つずつ */
    }
    .blog-item {
        width: calc(100%/2); /* タブレットでは3つずつ */
    }
    .blog-detail-content h5{font-size:1.3em;}

    .blog-detail-content p{font-size:1.2em;}

    .blog-detail-content{background:rgba(255,255,255,0.8);padding:10px;border-radius:10px;width:100%;}
}

@media screen and (max-width: 768px) {
    .blog-item2 {
        width: 100%; /* 小さいタブレットでは2つずつ */
    }
    .blog-item {
        width: calc(100%/2); /* 小さいタブレットでは2つずつ */
    }
    .blog-detail-content h5{font-size:1.3em;}

    .blog-detail-content p{font-size:1.2em;}

    .blog-detail-content{background:rgba(255,255,255,0.8);padding:10px;border-radius:10px;width:100%;}
}

@media screen and (max-width: 480px) {
    .blog-item2 {
        width: 100%; /* スマホでは1つずつ */
    }
    .blog-item {
        width: calc(100%/2); /* スマホでは1つずつ */
    }
    .blog-detail-content h5{font-size:1.3em;}

    .blog-detail-content p{font-size:1.2em;}

    .blog-detail-content{background:rgba(255,255,255,0.8);padding:10px;border-radius:10px;width:100%;}
}

.blog-link {z-index:1;position:relative;
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.blog-link:hover {
    opacity: 0.8;
}

.blog-thumbnail {
    overflow: hidden;
    margin-bottom: 10px;
}

.blog-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.entry-date time {
    font-size: 1.25em;
    color: #666;
    margin-bottom: 5px;
}

.blog-box h4{font-size:1.25em;}

.entry-title h5,.entry-title p{
    font-size: 1.35em;
    margin: 0;
    line-height: 1.4;
    font-weight: normal;
}
/**/
.fade-in-element {
    opacity: 0;
    transform: translateY(120px);
    transition: opacity 5s ease, transform 1s ease;
}

.fade-in-element.visible {
    opacity: 1;
    transform: translateY(0);
}

/*part.5--box-border--*/

/*--neumo--*/
.neumo { 
    font-size: 1.2em;
    text-align: center; 
    padding-top: 1.0em; 
    width: 250px; 
    height: 60px; 
    border-radius: 57px; 
    background: #FF7A00; 
    box-shadow: 9px 9px 18px #d96800, -9px -9px 18px #ff8c1f; 
    transition: box-shadow 0.2s ease;
    color: #ffffff; /* オレンジ背景に合わせて白色テキストに変更 */
    /*border: 1px solid #2a2a2a;*/ 
}

.neumo:active {
    box-shadow: inset 9px 9px 18px #d96800, inset -9px -9px 18px #ff8c1f;
}

.no-line2 a, .no-line2 a:hover, .no-line2 a:hover:after
	{text-decoration:none;
	color:#2a2a2a !important;
	/*text-shadow:1px 1px 1px black !important;

-webkit-text-shadow:1px 1px 1px black !important;*/}

.neumo-button {position:relative; 
    font-size: 1.2em;
    text-align: center; 
    padding-top: 1.0em; 
    width: 250px; 
    height: 60px; 
    border-radius: 57px; 
    background: #01b700; /* 緑色に変更 */
    box-shadow: 9px 9px 18px #019a00, /* 暗い緑のシャドウ */
                -9px -9px 18px #01d400; /* 明るい緑のシャドウ */
    transition: box-shadow 0.2s ease;
    /*border: 1px solid #2a2a2a;*/ 
}

.neumo-button:active {
    box-shadow: inset 9px 9px 18px #019a00, /* 暗い緑のシャドウ（内側） */
                inset -9px -9px 18px #01d400; /* 明るい緑のシャドウ（内側） */
}

/**/
.orange04{color:#FF7A00;text-shadow:2px 2px 2px black;

-webkit-text-shadow:2px 2px 2px black;}

/*#502200*/

.brown01, .brown01 a, .brown01 a:hover, .brown01 a:hover:after{color:rgba(80,34,0,1.0); text-decoration:none;}
/*text animetions*/
@keyframes showTextFromBottom{
  0%{
    transform: translateY( 100% );
  }
  100%{
    transform: translateY( 0px );
  }
}
.anime-up.displayed span{
  animation: showText 1s backwards;
  display: inline-block;
}
.anime-up.displayed > span{
  overflow: hidden;
}
.anime-up.displayed > span > span{
  animation: showTextFromBottom 0.5s backwards;
}

.aa{margin:0;}

.next a {color:red;
  padding-top: 60px;
}
.next a:hover, .next a:hover:after{color:red; text-decoration:none;}

 .next a span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 1px solid red;
  border-bottom: 1px solid red;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb 2s infinite;
  animation: sdb 2s infinite;
  box-sizing: border-box;
}
@-webkit-keyframes sdb {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
  }
  20% {
    -webkit-transform: rotate(-45deg) translate(-10px, 10px);
  }
  40% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
  }
}
@keyframes sdb {
  0% {
    transform: rotate(-45deg) translate(0, 0);
  }
  20% {
    transform: rotate(-45deg) translate(-10px, 10px);
  }
  40% {
    transform: rotate(-45deg) translate(0, 0);
  }
}

.gnavi li a{
    /*線の基点とするためrelativeを指定*/
	position: relative;
}

.gnavi li.current a,
.gnavi li a:hover{
	color:#FF7A00;
}

.gnavi li a::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: 0px;
    left: 0%;
    /*線の形状*/
    width: 100%;
    height: 2px;
    background:#FF7A00;
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0, 1);/*X方向0、Y方向1*/
    transform-origin: left top;/*左上基点*/
}

/*現在地とhoverの設定*/
.gnavi li.current a::after,
.gnavi li a:hover::after {
    transform: scale(1, 1);/*X方向にスケール拡大*/
}

.eachTextAnime span{opacity: 0;}
.eachTextAnime.appeartext span{ animation:text_anime_on 1s ease-out forwards; }
@keyframes text_anime_on {
	0% {opacity:0;}
	100% {opacity:1;}
}

.no-line a, .no-line a:hover, .no-line a:hover:after{text-decoration:none;color:#151515;}

.glowAnime span{opacity: 0;display:inline-block;}

/*アニメーションで透過を0から1に変化させtext-shadowをつける*/
.glowAnime.glow span{ animation:glow_anime 1s ease-out forwards;display:inline-block; }

@keyframes glow_anime{
	0% { opacity:0; text-shadow: 0 0 0 #fff,0 0 0 #fff;}
	50% { opacity:1;text-shadow: 0 0 10px #fff,0 0 15px #fff; }
	100% { opacity:1; text-shadow: 0 0 0 #fff,0 0 0 #fff;}
}
/*button*/
.btn-b {
  display: inline-block;
  padding: 0.8em 0.8em;
  background-color: #eeeeee; /* 背景色 */
  box-shadow: 0 5px 0 #898989; /* 影の太さ・色 */
  border-radius: 5px;
  /*color: #fff;*/
  /*cursor: pointer;*/
  text-decoration: none; /* 文字の下線を消す */
}

/* ホバー時 */
.btn-b:hover {
  box-shadow: none;
  transform: translateY(5px);
}
/*button*/
.btn-z {
  display: inline-block;
  padding: 0.8em 2em;
  background-color: #eeeeee; /* 背景色 */
  box-shadow: 0 5px 0 #898989; /* 影の太さ・色 */
  border-radius: 5px;
  /*color: #fff;*/
  /*cursor: pointer;*/
  text-decoration: none; /* 文字の下線を消す */
}

/* ホバー時 */
.btn-z:hover {
  box-shadow: none;
  transform: translateY(5px);
}

.btn-y {
  display: inline-block;
  padding: 0.8em 1.2em;
  background-color: #eeeeee; /* 背景色 */
  box-shadow: 0 5px 0 #898989; /* 影の太さ・色 */
  border-radius: 5px;
  /*color: #fff;*/
  /*cursor: pointer;*/
  text-decoration: none; /* 文字の下線を消す */
}

/* ホバー時 */
.btn-y:hover {
  box-shadow: none;
  transform: translateY(5px);
}
/*オレンジ*/
.btn-x {
  display: inline-block;
  padding: 0.8em 2em;
  background-color: #FF7300; /* 背景色 */
  box-shadow: 0 5px 0 #E67417; /* 影の太さ・色 */
  border-radius: 5px;
  /*color: #fff;*/
  /*cursor: pointer;*/
  text-decoration: none; /* 文字の下線を消す */
}

/* ホバー時 */
.btn-x:hover {
  box-shadow: none;
  transform: translateY(5px);
}
/*end*/
/* カスタムスタイル（必要に応じて） */
.fullscreen-modal .modal-dialog {
  animation: fadeInDown 0.5s ease;
}
/* アニメーション定義 */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}


/*bush! button*/
@keyframes animate{
0%{transform:scale(.95); opacity:1}
90%{opacity:.1}to{transform:scale(1.2,1.5); opacity:0}
}


/*========= モーダル表示のためのCSS ===============*/

/*動画表示のモーダルの余白を変更したい場合*/
.modaal-video .modaal-inner-wrapper{
  padding:0;
}

/*モーダルのボタンの色を変更したい場合*/
.modaal-close:after, 
.modaal-close:before{
  background:#ccc;  
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before{
  background:#666;
}

.padding-between{padding:2% 4% 2% 4%;}

.flowchart{
  margin-left: .5em;
  border-left: 2px dashed;
}
.flowchart h4{
  position: relative;
  margin-left: 2em;
  margin-bottom: 0;
}
.flowchart p{
  margin-top: .3em;
  margin-left: 3em;
}
.flowchart h4:before{
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #000;
  position: absolute;
  left: calc(-2em - 6px);
  top: .5em;
}
.flowchart h4:after{
  content: "";
  border-bottom: 1px solid;
  width: 1.5em;
  background: #000;
  position: absolute;
  top: .7em;
  left: -2em; 
}

/*#b9826e*/
.emphasis-bright p,.emphasis-bright p a,.emphasis-bright h1{
	box-decoration-break:clone;
	-webkit-box-decoration:clone;
        display:inline-block;
	padding:10px;
 	line-height:2.2;
	font-weight:normal;
	text-align:center;
        color:rgba(185,130,110,1.0);
	background:#e2cfb8;}

.emphasis-bright-block p{
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    display: block;
    padding: 10px;
    line-height: 2.2;
    font-weight: normal;
    text-align: center;
    color:rgba(185,130,110,1.0);
    background-color: #e2cfb8;
    box-shadow: inset 0 0 0 2px #fff;
    padding: 14px;
}

/*fadeup-text*/
.anime .bg-wrap,
.anime .bg-wrap .inn {
  display:block;
}
 
.anime .bg-wrap {
  overflow: hidden;
  opacity: 0;
}
 
/*.anime .bg-wrap + .bg-wrap {
  margin-top: 10px;
}
 
.anime .bg-wrap .inn.large {
  font-size: 36px;
  font-weight: bold;
}
.anime .bg-wrap .inn.small {
  font-size: 15px;
}*/
 
.anime .bg-wrap .inn {
  opacity: 0;
  transform: translateY(200px);
  transition: 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
 
.anime.is-animated .bg-wrap {
  opacity: 1;
}
 
.anime.is-animated .bg-wrap .inn {
  opacity: 1;
  transform:  translateY(0px);
}
/*fadeup-text_end*/
/*fade-part2*/
.animate .bg-wrap,
.animate .bg-wrap .inn {
  display:block;
}
 
.animate .bg-wrap {
  overflow: hidden;
  opacity: 0;
}
 
/*.anime .bg-wrap + .bg-wrap {
  margin-top: 10px;
}
 
.anime .bg-wrap .inn.large {
  font-size: 36px;
  font-weight: bold;
}
.anime .bg-wrap .inn.small {
  font-size: 15px;
}*/
 
.animate .bg-wrap .inn {
  opacity: 0;
  transform: translateX(-300px);
  transition: 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
 
.animate.is-animated .bg-wrap {
  opacity: 1;
}
 
.animate.is-animated .bg-wrap .inn {
  opacity: 1;
  transform:  translateX(0px);
}
/*fade-part3*/
.anim .bg-wrap,
.anim .bg-wrap .inn {
  display:block;
}
 
.anim .bg-wrap {
  overflow: hidden;
  opacity: 0;
}
 
/*.anime .bg-wrap + .bg-wrap {
  margin-top: 10px;
}
 
.anime .bg-wrap .inn.large {
  font-size: 36px;
  font-weight: bold;
}
.anime .bg-wrap .inn.small {
  font-size: 15px;
}*/
 
.anim .bg-wrap .inn {
  opacity: 0;
  transform: translateY(-100px);
  transition: 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
 
.anim.is-animated .bg-wrap {
  opacity: 1;
}
 
.anim.is-animated .bg-wrap .inn {
  opacity: 1;
  transform:  translateY(0px);
}

/**/
.item {
  position: relative;
  overflow: hidden;
}

.item:hover .caption-up {
  transform: translateY(0);
}

.caption-up {
  text-align: left;
  margin: 0;
  padding: 1em;
  position: absolute;
  z-index: 0;
  top: 0; /* bottom: 0 から top: 0 に変更 */
  left: 0;
  width: 100%;
  height: 100%; /* 高さを100%に設定して画像全体を覆う */
  overflow: auto;
  box-sizing: border-box;
  transition: transform 0.5s;
  transform: translateY(100%);
  background: rgba(107,68,35,0.7);
  
}

.fadeup {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fadeup.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* 遅延バリエーション */
        .fadeup.delay-1 { transition-delay: 0.1s; }
        .fadeup.delay-2 { transition-delay: 0.2s; }
        .fadeup.delay-3 { transition-delay: 0.3s; }
        .fadeup.delay-4 { transition-delay: 0.4s; }
        .fadeup.delay-5 { transition-delay: 0.5s; }

.head-border {
  color: #151515;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  flex-wrap: wrap; /* 改行を許可 */
  gap: 0.5rem; /* 改行時の上下間隔 */
}

.head-border:before,
.head-border:after {
  content: "";
  flex: 1 1 20px; /* 最小幅を設定 */
  /*min-width: 20px;*/ /* 線の最小幅を保証 */
  height: 1px;
  background-color: #151515;
}

.head-border:before {
  margin-right: 1rem;
  order: -1; /* 常に最初に配置 */
}

.head-border:after {
  margin-left: 1rem;
  order: 999; /* 常に最後に配置 */
}

	.button-container {
            display: flex;
            justify-content: center;
            padding: 20px;
            max-width: 100%;
            box-sizing: border-box;
        }
        
        .special-button {
            position: relative;
            width: 200px;
            height: 50px;
            font-size: 1.35em;
            color: #502200;
            background-color: transparent;
            border: 2px solid #502200;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: color 0.3s ease;
            overflow: hidden; /* 重要: 背景エフェクトがはみ出さないようにする */
            box-sizing: border-box;
        }
        
        /* aタグのスタイル */
        .special-button a {
            color: #502200;
            text-decoration: none;
            transition: color 0.3s ease;
            z-index: 1;
            position: relative;
        }
        
        /* ホバー時の背景エフェクト */
        .special-button:after {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background-color: #502200;
            transition: left 0.3s ease;
            z-index: 0;
        }
        
        .special-button:hover {
            color: #ffffff;
        }
        
        .special-button:hover a {
            color: #ffffff;
        }
        
        .special-button:hover:after {
            left: 0;
        }
/*part2*/
        .special-button-2 {
            position: relative;
            width: 280px;
            height: 70px;
            font-size: 1.35em;
            color: #b9826e;
            background-color: transparent;
            border: 2px solid #b9826e;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: color 0.3s ease;
            overflow: hidden; /* 重要: 背景エフェクトがはみ出さないようにする */
            box-sizing: border-box;
        }
        
        /* aタグのスタイル */
        .special-button-2 a {
            color: #b9826e;
            text-decoration: none;
            transition: color 0.3s ease;
            z-index: 1;
            position: relative;
        }
        
        /* ホバー時の背景エフェクト */
        .special-button-2:after {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background-color: #b9826e;
            transition: left 0.3s ease;
            z-index: 0;
        }
        
        .special-button-2:hover {
            color: #ffffff;
        }
        
        .special-button-2:hover a {
            color: #ffffff;
        }
        
        .special-button-2:hover:after {
            left: 0;
        }
        /* 
        @media screen and (max-width: 480px) {
            .button-container {
                justify-content: center; 
            }
            
            .special-button {
                width: 90%; 
                max-width: 250px; 
            }
        }*/
/*special-button-3<a class="special-btn" href="#">VIEW MORE</a>*/
a.special-btn {
  display: inline-block;
  width: 280px;
  text-align: center;
  text-decoration: none;
  line-height: 60px;
  color: #fff;
  background-color: #e2cfb8;
  font-size:1.35em;
  font-weight:bold;
  border-radius:10px;
}
a.special-btn:hover {
  background-position: right center;
  background-size: 200% auto;
  -webkit-animation: pulse 2s infinite;
  animation: ripple 1.5s infinite;
  color: #fff;
}
@keyframes ripple {
  0% {box-shadow: 0 0 0 0 #e2cfb8;}
  70% {box-shadow: 0 0 0 10px rgb(226 207 184 / 0%);}
  100% {box-shadow: 0 0 0 0 rgb(226 207 184 / 0%);}
}
/*special-btn-2*/
a.special-btn-2 {
  display: inline-block;
  width: 280px;
  text-align: center;
  text-decoration: none;
  line-height: 60px;
  color: #fff;
  background-color: #06C755;
  font-size:1.35em;
  font-weight:bold;
  border-radius:10px;
}
a.special-btn-2:hover {
  background-position: right center;
  background-size: 200% auto;
  -webkit-animation: pulse 2s infinite;
  animation: ripples 1.5s infinite;
  color: #fff;
}
@keyframes ripples {
  0% {box-shadow: 0 0 0 0 #06C755;}
  70% {box-shadow: 0 0 0 10px rgb(6 199 85 / 0%);}
  100% {box-shadow: 0 0 0 0 rgb(6 199 85 / 0%);}
}
/*special-btn-3*/
a.special-btn-3 {
  display: inline-block;
  width: 140px;
  text-align: center;
  text-decoration: none;
  line-height: 40px;
  color: rgba(185,130,110,1.0);
  background-color: #e2cfb8;
  font-size:1.15em;
  border-radius:10px;
}
a.special-btn-3:hover {
  background-position: right center;
  background-size: 200% auto;
  -webkit-animation: pulse 2s infinite;
  animation: rip 1.5s infinite;
  color:rgba(185,130,110,1.0);
}
@keyframes rip {
  0% {box-shadow: 0 0 0 0 #e2cfb8;}
  70% {box-shadow: 0 0 0 10px rgb(226 207 184 / 0%);}
  100% {box-shadow: 0 0 0 0 rgb(226 207 184 / 0%);}
}
/*special-btn-4*/
a.special-btn-4 {
  display: inline-block;
  width: 280px;
  text-align: center;
  text-decoration: none;
  line-height: 60px;
  color: rgba(185,130,110,1.0);
  background-color: #e2cfb8;
  font-size:1.35em;
  font-weight:bold;
  border-radius:10px;
}
a.special-btn-4:hover {
  background-position: right center;
  background-size: 200% auto;
  -webkit-animation: pulse 2s infinite;
  animation: ripp 1.5s infinite;
  color: rgba(185,130,110,1.0);
}
@keyframes ripp {
  0% {box-shadow: 0 0 0 0 #e2cfb8;}
  70% {box-shadow: 0 0 0 10px rgb(226 207 184 / 0%);}
  100% {box-shadow: 0 0 0 0 rgb(226 207 184 / 0%);}
}
/* 固定ヘッダー */
        .fixed-header {
    position: fixed;
    top: 0; /* 常に表示 */
    left: 0;
    width: 100%;
    height: 100px;
    background-color: rgba(255,255,255,1.0);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    transition: opacity 0.3s ease; /* topからopacityに変更 */
    z-index: 100;
}

/* show クラスは削除または無効化 */
.fixed-header.show {
    /* 不要になったため削除可能 */
}

/* ロゴ */
.logo a {
    height: 70px;
    display: flex;
    align-items: center;
}

.logo a img {
    height: 100%;
    width: auto;
}

/* ロゴがない場合のテキスト表示 */
.logo-text {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

/* 電話ボタン（中央配置） */
.phone-button-wrapper {
    top: 5px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px; /* ボタン間の間隔 */
    align-items: center;
}

.phone-button-wrapper a {
    white-space: nowrap; /* テキストの改行を防ぐ */
}

/*<h2 class="heading-cover" data-en="Recruit"><span>英字とラインのCSS見出し</span></h2> */
.heading-cover {
	position: relative;
	padding-top: 60px;
	font-size: 2.2em;
	border-bottom: 2px solid #b9826e;
}

.heading-cover span {
	position: relative;
	z-index: 2;
}

.heading-cover::before {
	content: attr(data-en);
	position: absolute;
	top: 0px;
	left: 0;
	color: rgba(185,130,110,0.5);
	font-size: 1.8em;font-weight:bold;
        /*letter-spacing: 0.1em;*/
	z-index: 1;
        font-family: "Work Sans", sans-serif;
}

/* ========================================
   スタッフアーカイブページ
======================================== */

/* PC表示 */
.staff-archive-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.staff-thumbnail {
    flex-shrink: 0;
    width: 225px;
}

.staff-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.staff-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.staff-name-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.staff-name-ja h5 {
    color: #b9826e;
    margin: 0;
}

.staff-name-en {
    font-size: 1.1em;
    margin: 0;
    color: #333;
}

.staff-catchcopy {
    margin: 0;
}

/* スマホ表示 */
@media screen and (max-width: 768px) {
    .staff-archive-item {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .staff-thumbnail {
        width: 40%;
        min-width: 150px;
    }
    
    .staff-info {
        width: calc(60% - 15px);
        gap: 10px;
    }
    
    .staff-name-wrapper {
        /* 画像の横に配置 */
    }
    
    .staff-catchcopy {
        width: 100%;
        /* 画像と名前の下に配置 */
    }
}

/* ========================================
   スタッフ詳細ページ
======================================== */

.staff-detail {
    max-width: 1200px;
    margin: 0 auto;
}

/* ヘッダー部分（画像と名前の横並び） */
.staff-header {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.staff-main-image {
    flex-shrink: 0;
    width: 700px;
}

.staff-main-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.staff-name-section {
    flex: 1;
}

.staff-name-ja-single {
    color: #b9826e;
    margin: 0 0 10px 0;
}

.staff-name-en-single {
    font-size: 1.1em;
    margin: 0;
    color: #333;
}

/* キャッチコピー */
.staff-catchcopy-single {
    font-size: 1.4em;
    color: #b9826e;
    margin-bottom: 25px;
    font-weight: bold;
}

/* コメント1 */
.staff-comment1 {
    font-size: 1.25em;
    color: #151515;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* 繰り返しセクション */
.staff-repeat-section {
    margin-bottom: 40px;
}

.staff-catch2 {
    font-size: 1.2em;
    color: #b9826e;
    font-weight: bold;
    margin-bottom: 15px;
}

.staff-comment2 {
    font-size: 1.25em;
    color: #151515;
    margin-bottom: 20px;
    line-height: 1.8;
}

.staff-section-image {
    margin-bottom: 20px;
}

.staff-section-image img {
    max-width: 800px;
    width: 100%;
    height: auto;
    display: block;
}

/* テーブル */
.staff-table-wrapper {
    margin-top: 40px;
}

.staff-info-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.staff-info-table th,
.staff-info-table td {
    padding: 15px;
    border: 1px solid #ddd;
    text-align: left;
    vertical-align: top;
}

.staff-info-table th {
    background-color: #f8f8f8;
    font-weight: bold;
    width: 30%;
    color: #333;
}

.staff-info-table td {
    width: 70%;
    line-height: 1.8;
}

/* スマホ表示 */
@media screen and (max-width: 768px) {
    .staff-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .staff-main-image {
        width: 100%;
    }
    
    .staff-catchcopy-single {
        font-size: 1.2em;
    }
    
    .staff-comment1,
    .staff-comment2 {
        font-size: 1.1em;
    }
    
    .staff-section-image img {
        max-width: 100%;
    }
    
    .staff-info-table th,
    .staff-info-table td {
        display: block;
        width: 100%;
        padding: 10px;
    }
    
    .staff-info-table th {
        border-bottom: none;
        padding-bottom: 5px;
    }
    
    .staff-info-table td {
        border-top: none;
        padding-top: 5px;
    }
}
/*img-over-letter*/
figure {
  position: relative;
  display:block;
  width:100%;height:auto;
}
  figure img {
    width: 100%;
    vertical-align: top;
  }
  figure figcaption {width:100%;
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 5px 10px;
    font-size:1.2em;
    color:#9C5E29;
    background: rgba(240,228,214,0.9);
  }

.brown05,.brown05 a,.brown05 a:hover, .brown05 a:hover:after

{color:rgba(185,130,110,1.0);text-decoration:none;}

.beautiful-red,.beautiful-red a, .beautiful-red a:hover,.beautiful-red a:hover:after

{color:#FF4444;text-decoration:none;}