@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; 
}

body.is-fixed {
    overflow: hidden;
    height: 100%;
}

 @media (max-width: 430px){  /* ?? */
    .jumbotron{
        margin-top: 50px !important;
    }
}

body::-webkit-scrollbar {
  display: none;
}
.jumbotron__img{
    height: 100vh;
    min-height: 400px; 
    background-color: transparent;
    position: relative;
    background-attachment:fixed;
}
.jumbotron__content{
    position: relative;
    top: 45%;
    -webkit-transform: translateY(-45%);
    transform: translateY(-45%);
}
.navbar__content{
    position: fixed;
    top: 0;
    width: 100vw;
}
.navbar__border{
    border:none !important; 
}
.nav-item{
	margin: 4rem 0rem -4rem 1rem;
	padding-left: 1rem;
    background-color: white;  /* white */
    max-width: 9rem;
    opacity: 0.85;
	z-index: 9990;
}
.nav_padding{
     padding-top: 1.8rem;
}

/* 20250422_add bootstrap navbarの外枠罫線を消す------------------------------------- */
:focus {
  box-shadow:none !important;
}
:focus {
  outline: none !important;
}

.display__h1{
    font-size: clamp(3.75rem, 3.302rem + 1.89vw, 7.5rem);
    font-weight: 100;
    letter-spacing: 0.1rem;
    line-height: 5rem;
    text-align: center;
}
span.h1__aks{
    display: inline-block;
}
.contact__p{
    font-size: 0.95rem;
    line-height: 1.5rem;
}
.contact__form-margin{
    margin-top: 5rem;
}

/*hambuger_menu-----------------------------------------------------------------------------*/
/*ボタン外側※レイアウトによってpositionや形状は適宜変更*/
.openbtn{
	/*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
	position: relative;
	background-color: none; /*255,255,0.50);*/
	cursor: pointer;
    width: 55px;
    height:55px;
    /* border: none; /*1px solid #000;*/
	border-radius: 7px;
	z-index: 9999; /* add ボタン最前面に */
}
/*ボタン内側*/
.openbtn span{
    display: inline-block;
    transition: all .3s;/*アニメーションの設定*/
    position: absolute;
    left: 13px;
    height: 1px;
    border-radius: 0px;
	background: #000;
  	width: 50%;
  }
.openbtn span:nth-of-type(1) {
	top:11px; /*12*/
}
.openbtn span:nth-of-type(2) {
	/*opacity: 0;*/
    top:23px; /*23*/
}
.openbtn span:nth-of-type(3) {
	top:35px; /*34*/
}
/*activeクラスが付与されると線が回転して&times;に*/
.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 14px;
    transform: translateY(6px) rotate(-45deg);
    width: 45%;
}
.openbtn.active span:nth-of-type(2) {
	opacity: 0;/*真ん中の線は透過*/
}
.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 14px;
    transform: translateY(-6px) rotate(45deg);
    width: 45%;
}

/* add_menu -----------------------------------------------------------------------------------*/
.g-nav{
	position: fixed;
	z-index: -1;
	opacity: 0;
	top:0;
        left:0;
	width: 100%;
	height: 100vh;
	background: white;
	transition: all 0.3s;
	/*margin-left: -1rem;
	border: none;*/
}
.g-nav.panelactive{
	opacity: 0.85;
	border: none;
	z-index: 999;
}

/* ------------------------------------------------------------------------------------------------
#g-nav.panelactive #g-nav-list{
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 100vh;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}
#g-nav ul{
	display: none;
	z-index: 999;
	top:50%;
	left:50%;
	transform: translate(-50%,-50%);
}
#g-nav.panelactive ul{
	display: block;
}
#g-nav li{
	list-style: none;
	text-align: center;
}
#g-nav li a{
	display: inline-block;
	text-decoration: none;
	color: #000;
	padding: 10px;
} 
end ---------------------------------------------------------------------------------------------*/

/*画像拡大＋回転------------------------------------------------------------------------------*/
.zoomInRotate img{
	transform: scale(1);
	transition: .4s ease-in-out;/*移り変わる速さを変更したい場合はこの数値を変更*/
}
.zoomInRotate a:hover img{/*hoverした時の変化*/
	transform:rotate(-2deg) scale(1.1);/*拡大、回転の値を変更したい場合はこの数値を変更*/
}
/*画像のマスク*/
.mask{
    display: block;
    line-height: 0;/*行の高さを0にする*/
    overflow: hidden;/*拡大してはみ出る要素を隠す*/
}

/* modal window------------------------------------------------------------------------------ */
/*全て共通：hideエリアをはじめは非表示*/
.hide-area{
	display: none;
}

/*全て共通：モーダルのボタンの色を変更したい場合*/
.modaal-close:after, 
.modaal-close:before {
	background: #fff !important;

}
.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
	background: #fff !important;
}

.row__margin{
    margin-bottom: 20px;
}
.img__triming{
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.img__triming2{
    width: 100%;
    height: 278px;
    border: solid 1px #E7E7E7;
    object-fit: cover;
}
.img__triming3{
    width: 100%;
    height: 260px;
    object-fit: cover;
}

/* link page -------------------------------------------------------------------------------------*/
.link-page__img{
    padding-top: 4rem;
    margin-bottom: 2rem;
}

/* drop shadow --------------------------------------------------------------------------------
.drop-shadow{
    filter: drop-shadow(6px 7px 3px rgba(190,190,190,1.0));
}
--------------------------------------------------------------------------------------------------*/

/* particle js img  ------------------------------------------------------------------------------*/
html,body{
	height: 100%;/*高さを100%にして描画エリアをとる*/
}
#particles-js{ 
	position:absolute;/*描画固定*/
	z-index:-1;/*描画を一番下に*/
	width: 100%;
	height: 100%;
	background-color:#fff;/*背景色*/
}
#wrapper{
	position: relative;/*描画を#particles-jsよりも上にするためposition:relative;を指定*/
	z-index:1;/*z-indexの数字を大きくすることで描画を#particles-jsよりも上に*/
	width:100%;
	height: 100%;
}

/* search item ---------------------------------------------------------------------------------*/
.search_item {
  display: inline-block;
  font-size: 0.9rem;
  line-height: 2.2rem;
  padding: 0 0.8rem;
  cursor: pointer;
}
.search_item.is-active {
  /* color: black;
  background-color: none;*/
  text-decoration: underline;
  text-underline-offset: 0.6rem;
}
.is-hide {
  display: none;
}

/* button underline ----------------------------------------------------------------------------*/
.button_underline{
    text-underline-offset: 0.37rem;
}

/*card column count ---------------------------------------------------------------------------
@media (min-width: 576px) {
    .card-columns {
        column-count: 1;
    }
}
@media (min-width: 768px) {
    .card-columns {
        column-count: 2;
    }
}
@media (min-width: 992px) {
    .card-columns {
        column-count: 5;
    }
}
@media (min-width: 1200px) {
    .card-columns {
        column-count: 6;
    }
}

/* about text -----------------------------------------------------------------------------------*/
.about__text{
    line-height: 2.1rem;
}

/* privacy policy -------------------------------------------------------------------------------*/
.indent_1{
    text-indent: -1.5rem;
    margin-left: 1.5rem;
    line-height: 1.7rem;
}

/* announcements ------------------------------------------------------------------------------
ul{
  width: 100vw;
}
li{
  display: flex;
  padding: 15px;
  border-bottom: 1px solid #C1C1C1;
}
.day{
}
.label{
  background-color:black;
  border-radius:3px;
  color:#fff;
  padding:2px 5px;
  margin:0 20px;
}
.text{
  
} */

/* announcements2----------------------------------------------------------------------------*/
.li_style{
    display: flex;
    flex-wrap: wrap;
    padding: 15px;
    border-bottom: 1px dotted #a1a1a1;
    width: 100%;
    list-style: outside;
}
.li_label{
    font-size: 0.7rem;
    font-weight:300;
    text-align: center;
    background-color: #212121;
    border-radius: 3px;
    color: white;
    margin: 5px 9px 0px;
    padding: 2px 5px;
    min-width: 53px;
    max-height: 1.3rem;
}
.li_text{
    padding: 2px 0px; /* margin: 0px 27px; */
    line-height: 1.7rem;
    width: 100%;
    display: inline-block;
}
.li_day{
    padding: 2px 0px 0px 0px;
}
@media screen and (max-width: 767px){
.list_text{
  flex-wrap: wrap;
}

/* tategumi -------------------------------------------------------------------------------------*/
.vertical{
	-ms-writing-mode: tb-rl;
     writing-mode: vertical-rl;
	text-orientation: mixed;
	}
}

/* reCAPTCHA -------------------------------------------------------------------------------- */
.grecaptcha-badge {
    bottom: 1.3rem !important;
    right: 1.5rem !important;
    width: 70px !important;       /* アイコンのサイズに固定 */
    overflow: hidden !important;   /* はみ出たテキストを隠す */
    box-shadow: none !important;
    border: 1px solid #e0e0e0 !important;
    box-sizing: border-box !important;
    
 /* アニメーションの速度を調整（0.3秒かけてスムーズに開閉） */
    transition: width 0.3s ease !important; 
}
/* ホバー時：横幅を元に戻してコメントを表示する */
.grecaptcha-badge:hover {
    width: 256px !important;      /* デフォルトのバッジの横幅に戻す */
}

/* underline ------------------------------------------------------------------------------------ */
/* ホバー・クリック時だけ離れた下線を出す設定 */
.policy-link {
  text-decoration: none;               /* 最初は標準の下線を消す */
  border-bottom: 1px solid transparent; /* 最初は透明な線を引いておく */
  padding-bottom: 1px;                /* 下線の離し具合 */
  transition: border-color 0.15s ease; /* ふんわりと線を出す設定 */
}

/* マウスホバー時とクリック時（active） */
.policy-link:hover,
.policy-link:active {
  /* 下線を「!important」で強制的に打ち消し */
  text-decoration: none !important;    
  border-bottom-color: #212529;        /* 離れた下線（黒）だけを表示 */
}

/* honey field -------------------------------------------------------------------------------- */
.hp-field {
    position: absolute !important;
    top: -9999px !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}