@charset "utf-8";
/* CSS Document */
:root {
	--color-01: #EBA2A7;
	--color-02: #4A310D;
	--color-03: #FFF6EB;
	--color-04: #3e3a39;
	--color-05: #806c50;
	--col_i_blue : #00a3e5;
	--col_i_blue_restrain : #8ed4f1;
	--col_i_blue_sub:	#C8EFFF;
	--col_i_green : #8cc220;
	--col_i_green_restrain : #EFFFCF;
	--col_i_sumi_500: #949497;
	--col_i_sumi_100: #f1f1f4;
	--col_l_color : #1a1a1c;
}

*{
	padding:0;
	margin:0;
	line-height:1.8em;
	font-family: 'Spectral','Noto Serif JP', serif!important;
}
html {
  
}
body {
  color: #333;
  font-size: 1.1rem;
     
}

a {
  text-decoration: none;
    
}
img {
  max-width: 100%;
}
li {
  list-style: none;
  text-decoration: none;  
}
ul {
    
}
.menusml_em {
    font-style: normal;
    font-size: 85%;
    margin-right: 0;
    margin-left: 130px;
    color: #3e3a39;
}
.menusml_em02 {
    font-style: normal;
    font-size: 85%;
    color: #3e3a39;
}
.hr {
	border: 1px solid #D4C2A8;
    margin: 100px auto 50px auto;
    width: 95%;
    max-width: 990px;
}
.sp_view {
	display: none!important;
}
.pc_view {
    display: block!important;
}
.button_pink a {
    background: #eee;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px auto;
    max-width: 1300px;
    padding: 10px 25px;
    color: #4A310D;
    font-size: 1.5em;
    transition: 0.3s ease-in-out;
    font-weight: bold;
    letter-spacing: 0.2em;
    border-radius: 100vh;
}
.wsbtn a {
    max-width: 400px;
}
.button_pink.button_hf a{
    width: 600px;
    margin: 30px auto!important;
    justify-content: center;
}

.button_pink a:before {
    content: '';
    position: absolute;
    top: calc(50% - 2px);
    right: -1em;
    transform: translateY(calc(-50% - 2px)) rotate(30deg);
    width: 12px;
    height: 2px;
    background-color: #4A310D;
    transition: 0.3s;
}
.button_pink a:after {
    content: '';
    position: absolute;
    top: 50%;
    right: -1em;
    transform: translateY(-50%);
    width: 100px;
    height: 2px;
    background-color: #4A310D;
    transition: 0.3s;
}
.button_pink a:hover:before, .button_pink a:hover:after {
    right: -0.5em;
}
.button_pink a:hover {
    background: #E7D5BB;
    color: #4A310D;
    text-decoration: none;
}
.mttop {
    margin-top: -180px;
}
.site-title {
  width: 400px;
  line-height: 1px;
}
.site-title a {
  display: block;
}
.section-title {
  display: inline-block;
  font-size: 2rem;
  text-align: center;
  margin: 80px 0;
  color: var(--color-01);
  font-weight: bold;
  letter-spacing: 0.1em;  

}
.section-title span {
  color: var(--color-01);    
}
.content-title {
  font-size: 1rem;
  margin: 10px 0;
}
.wrapper{
	max-width: 1300px;
    margin: 0 auto 100px auto;
    padding: 0 4%;
    text-align: center;
    width: 92%;
    box-sizing: border-box;
}

.ft_text {
    font-weight: bold;
    font-size: 120%;
    padding: 20px 0;
    color: var(--color-02);
    
}
/*-------------------------------------------
スクロールするとフワット表示
-------------------------------------------*/
.fadein {
    opacity: 0;
    transform: translate(0,0);
    transition: all 2s;
}
.fadein.fadein-left{
      transform: translate(-30px,0);
}
.fadein.fadein-right{
      transform: translate(30px,0);
}
.fadein.fadein-up{
      transform: translate(0,-30px);
}
.fadein.fadein-bottom{
      transform: translate(0,30px);
}
.fadein.scrollin{
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}
.fadein.fadein-init {
	transform:translate(0,-10px);
}
/*-------------------------------------------
ヘッダー
-------------------------------------------*/
/*#header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  position: sticky;
  z-index: 999;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%!important;
    box-shadow: 0px 10px 10px -5px rgba(0,0,0,0.3);
}*/

#header {
  display: inline-block;
  width: 100%;
  margin: 0 auto;
  position: sticky;
  z-index: 999;
  top: 0;
  left: 0;
  background: #fff;
  box-shadow: 0px 10px 10px -5px rgba(0,0,0,0.3);
}
#header img {
  width: 100%;
}
#header ul {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    
}
#header li {
  margin-left: 50px;
  position: relative;
}
#header li a {
    color: var(--color-02);
    font-weight: bold;
    font-size: 100%;
    letter-spacing: 0.1em;
    text-decoration: none;
}
#header li a::after {
    display: block;
    position: absolute;
    left: 0;
    content: '';
    width: 90%;
    height: 3px;
    background: var(--color-01);
    transform: scale(0, 1);     /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
    transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
    transition: transform 0.3s; /*変形の時間*/
}

#header li a:hover::after {
    transform: scale(1, 1);     /*ホバー後、x軸方向に1（相対値）伸長*/
}

.hed_inner {
    display: flex;
}
.wrap_header_con {
    display: flex;
}
.wrap_nantop {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.wrap_nantop p {
    margin-left: 20px;
}
.hdoc_text {
    font-weight: bold;
    font-size: 65%;
    padding: 0;
    color: var(--color-02);
    text-align: left;
}
.wrap_header_nav {
    margin-bottom: -10px;
    padding: 0 6%;
    display: flex;
    justify-content: center;
}


/*-------------------------------------------
ヘッダーsns
-------------------------------------------*/
.wrap_sns_btns {
    width: 10%;
    margin-top: 20px;
    
    margin: 10px 0 10px auto;
    
}
img.sns_btn_img {
    width: 50px;
    height: 50px;
}
.sns_btn_img:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1280px) {

}

/*-------------------------------------------
hisotry
-------------------------------------------*/
.wrap_history {
	width: 100%;
    max-width: 800px;
    max-height: 150px; 
    overflow-y: scroll; 
    margin: 20px auto;
    height: auto;
    box-sizing: border-box;
    text-align: left;
}
.wrap_history dd {
    border-bottom: 1px solid  #ACACAC;
    margin-left: 0;
    margin-bottom: 1em;
}
.hist_time {
	position: relative;
    letter-spacing: 0.1rem;
}
.hist_time .new {
	position: absolute;
    top: 0;
    left: -70px;
}
.new {
    margin-bottom: 10px;
}
.hist_contant {
	    margin-bottom: 8px;
}
.hist_contant a {
    color:  #3e3a39;
}
.newslabel {
    color: var(--color-01)!important;
    background: #FFF9FB!important;
    border: 1px solid var(--color-01)!important;
    padding: 5px 10px!important;
    margin-bottom: 8px;
}





/*-------------------------------------------
Mainvisual
-------------------------------------------*/
#mainvisual {
}
.event_topimg_full {
  position: relative;
  width: 100%;
  min-height: 300px;
  background: url( "../event/img/topimage_event03.png")
    center / cover;
    
}
.cnterimg {
  width: 100%;
  padding: 30px 0;
}
.modal_cnterimg {
    margin: 0 auto;
    display: block;
}
.panbnr {
    margin: 50px auto;
    display: block;
}
.eventreport_topimg_full {
  position: relative;
  width: 100%;
  min-height: 300px;
  background: url( "../event/img/topimage_eventreport.png")
    center / cover;
    background-position: 100% 0; 
}
.eventreport_topimg_full_sp {
  position: relative;
  width: 100%;
  min-height: 400px;
  background: url( "../event/img/topimage_eventreport_sp.png")
    center / cover;
    
}
.div_menu_topimg{   

}
.menu_topimg_full {
  position: relative;
  max-width: 100vw;
  height: 300px;
  background: url( "../menu/img/topimage_menu01.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.news_topimg_full {
  position: relative;
  max-width: 100%;
  height: 300px;
  background: url( "../news/img/topimage_news02.png")
  center / cover;
}

@media screen and (max-width: 1920px) {
  .menu_topimg_full {
    background-size: contain;
  }
}

.access_topimg_full {
  position: relative;
  width: 100%;
  min-height: 300px;
  background: url( "../access/img/topimage_access02.png")
    center / cover;
}
.supporter_topimg_full {
  position: relative;
  width: 100%;
  min-height: 300px;
  background: url( "../supporter/img/topimage_supporter.png")
    center / cover;
    
}
/*-------------------------------------------
concept
-------------------------------------------*/
#concept_back {
    position: relative;
}
#concept_back .absolute01 {
    position: absolute;
    width: 30%;
    top: 100px;
    right: 0;
    
}
#concept_back .absolute02 {
    position: absolute;
    width: 25%;
    top: -100px;
    left: 50px;
    
}
#concept_back .absolute03 {
    position: absolute;
    width: 30%;
    top: 200px;
    left: 0;
    
    
}
#concept img {
  width: 100px;
  margin-bottom: 50px  
}


/*-------------------------------------------
contents
-------------------------------------------*/
#contents　{
    background: #FFE2E3!important;
    height: auto;
    
}
#contents .content {
  display: flex;
  justify-content: center;
  align-items: center;
}
#contents img {
  width: 100%;
  height: auto;
}
#sec2_icon_flx {
    width: 1000px;
}
.hbflex {
    display: flex;
    justify-content: space-evenly;
}
.hbflex img {
    width: 40%;
}
.honeyimg {
   
}
.honey_title {
    display: flex;
}
.modal_text {
    width: 300px;
    line-height: 1.8;
    margin-right: 30px;
    text-align: justify;
}
.modal_text02 {
    width: 300px;
    line-height: 1.8;
    margin-left: 30px;
    text-align: justify;
}
.icon_honey {
    width: 15%;
    margin: 0 0 20px auto;   
}

.honey_title_h3 {
    color: var(--color-01);
    font-weight: bold;
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: 20px!important;
    
}
#menu {
    margin: 30px auto 0 auto;
}
#menu img {
    width: 100%;
	margin-bottom: 10px;
}

.menu_flex {
    display: flex; 
    margin-bottom: 30px;
	justify-content: space-between;
}
.menu_flex img {
    width: 500px;
    height: 160px;
}
.menu_flex a {
	width: calc(50% - 5px);
} 
/*-------------------------------------------
フッター
-------------------------------------------*/
#footer{
    padding-top: 100px;
    background: url("../img/topimage03.png");
    background-size: cover;
    position: relative;
    height:100%;
    padding-bottom: 50px;
    
}
#footer::before{
     /* 透過した黒を上から重ねるイメージ */
  background-color: rgba(0,0,0,0.6)!important;
  /* 自由に位置指定 */
  position: absolute!important;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: ' ';
  z-index: ;
}
.footer_contens {
}
#footer .sns img {
    width: 90px;
}
.footer_confl {
    display: block;
    margin: 0 auto 80px auto!important;
    justify-content: center;
}
.img_ftlogo {
    padding: 10px!important;
    align-items: center;
}
.group_work {
    max-width: 800px;
    text-align: center;
    margin-bottom: 50px!important;
    display: block;
    margin: 0 auto 0 auto!important;
    justify-content: center;
}
.ftocl {
    
}
#footer .sns {
  display: flex;
  justify-content: center;
  margin: 50px 0;
    
}
#footer ul {
    display: flex;
    justify-content: center;  
    padding-left: 0;
    flex-wrap: wrap;
    margin-bottom: 100px;
    text-shadow: 1px 2px 3px #393939;
}
#footer .footer_nav_flex li {
  margin: 0 10px;
  letter-spacing: 0.1em;
    z-index: 100;
  
}
#footer .footer_nav_flex li a {
    color: #fff;
    text-decoration: none!important;
    border: solid 1px #fff;
    line-height: 3;
    padding: 10px;
}
#footer .footer_nav_flex li a:hover {
    color: #fff;
    text-decoration: none!important;
    border: solid 1px #fff;
    background: var(--color-01);
    line-height: 3;
    padding: 8px;
}
#footer .sns li {
  margin: 0 20px;
}

.footer_logo {
    align-items: center;
}
.footer_logo img {
    
}


.copy {
  background-color: var(--color-01);
  color: #fff;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  padding: 10px 20px;
  text-align: center;
  margin:0;
}
.concept_text {
	margin-bottom:180px;
    letter-spacing: 0.2em;
    line-height: 1.5;
}

/*-------------------------------------------
MENU
-------------------------------------------*/

#sec_menu  {
    
}

.menugroup_flex {
  width: 100%;
  margin: 0 auto;
  position: relative;
   
}
.menugroup_flex::after {
  content: "";
  display: block;
  clear: both;
  overflow: hidden; 
}
.menupic {

}
.menupic_right img {
  width: 40%;
  position: absolute; 
  top: 50%;
  right: 0;
  z-index: 100;    
}
.menupic_left img {
  width: 40%;
  position: absolute; 
  top: 50%;
  left: 0;
  z-index: 100;    
}
.menugroup_p_left {
  position: absolute; 
  top: 150px;
  transform: translateY(-50%); 
  left: 0;
  width: 50%;
  line-height: 1.8;
  color: #fff;
  background: #EBA2A7;
  padding: 50px 200px 50px 50px;
  text-align: left;

}
.menugroup_p_right {
  position: absolute; 
  top: 150px;
  transform: translateY(-50%); 
  right: 0;
  width: 50%;
  line-height: 1.8;
  color: #fff;
  background: #EBA2A7;
  padding: 50px 50px 50px 200px;
  text-align: left;

}
/*.menuchapter {
   margin-top: 400px;
}*/
.h3_title {
    color: #5f453d;
    font-weight: bold;
    border-bottom: solid 3px #5f453d;
    text-align: left;
    padding: 10px 0;
    letter-spacing: 0.1em;
    margin-bottom: 50px;
}


.line.dot:before{
	background: radial-gradient(ellipse at center,  rgba(193,193,193,1) 0%,rgba(193,193,193,1) 25%,rgba(255,255,255,1) 25%,rgba(255,255,255,1) 100%) center 0 repeat-y;
	background-size: 10px 10px;
	width: 8px;
	height: 70px;
	display: block;
	margin: 100px auto;
	content: "";
    
}
.picturepd {
    padding: 5px;
}
.lunch_span {
    font-size: 90%;
    margin-bottom: 5px;
    color: #fff;
    background: var(--color-02);
    padding: 4px;
    display: block;
    width: 200px;
    margin: 0 auto;
}
.hotbdg {
    width: 60px;
    margin-bottom: 5px;
    background: #ef7b18!important;
}
.icebdg {
    width: 60px;
    margin-bottom: 5px;
    background: #1F41C1!important;
}
.honeybdg {
    width: 120px;
    margin-bottom: 5px;
    background: #FAFD74!important;
    color: var(--color-02)!important;
    font-weight: bold;
}
.menuselect {
    border: #4A310D 1px solid;
    padding: 10px;
    background: #FFFFFF;
    
}  
.menutab_cntr {
    background-color: rgba(71,47,0,0.2);
    padding: 20px;
    
}
.menutab_cntr_sp {
    background-color: rgba(71,47,0,0.2);
    padding: 20px;
    
}
.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.menutab {
    margin: 0 auto!important;
    justify-content: center;
    width: 800px;
}
.menutab li a {
     color: var(--color-02);
    font-weight: bold;
    text-decoration: none;
}
.menuselect:hover {
    background: #4A310D;
    color: #fff; 
}
.menu_h2sub {
  letter-spacing: 0.2em;  
  position: relative;
  padding: 1em 1em 1em 2em;
  border-top: var(--color-01) solid 1px;
  font-weight: bold;
  margin: 100px auto;
  font-size: 170%;
  color: var(--color-01);
}
.menu_h2sub::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 0px solid transparent;
  border-right: 50px solid transparent;
  border-left: 50px solid var(--color-01);
  border-bottom: 50px solid transparent;
}

.oclc {
  font-size: 150%;
  letter-spacing: 0.15em;  
  font-weight: bold;
  background-color: #FFF6F6;
  color: var(--color-02);
  padding: 1em 1em calc(1em - 6px);
  position: relative;
line-height: 0;
}
.oclc p {
    margin: 0px -2px;
    color: var(--color-02);
}
.oclc::after {
  content: '';
  background-color: var(--color-01);
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: -6px;
  left: 0;
}
.lastorder {
    text-align: left!important;
    padding: 5px 8px;
    background: #E5D0BC;
    border-radius: 10px;
    font-size: 80%;
}
.red_oclc {
    color: firebrick;
}
.h2sub02 {
    font-size: 80%;
    width: 200px;
    color: var(--color-01);
    font-weight: normal;
    padding: 5px 12px;
}
.pnedan p {
    margin-top: -20px;
}
.nedan {
    align-items: center;
    font-weight: bold;
    letter-spacing: 0.2em;
    margin-top: -13px;
    font-size: 130%;
    color: #785111;
}

.option_sec {
    border: 2px solid var(--color-01);
    margin-top: 30px;
}
.option_sec .option_menu_title {
    font-size: 1.2em;
    background: #FFF8F9;
    padding: 10px 30px;
    text-align: left;
    color: var(--color-01);
    font-weight: bold;
    letter-spacing: 0.05em;
}
.menucard_wp {
    display: flex;
    align-items: stretch;
}

/*-------------------------------------------
EVENT
-------------------------------------------*/
.event_pink {
    text-align: left;
    background: #FFF7F7;
    padding: 10px 20px;
    margin: 0;
    color: var(--color-01);
    font-weight: 600;
    letter-spacing: 0.15rem!important;
}
.brown {
    color: var(--color-02)!important;
    background: #FFF8EF!important;
}
.event_text {
    text-align: left;
    margin-left: 10px;
    margin-top: -10px;
    font-size: 1rem;
    color: var(--color-02);
    
}
.event_date {
    text-align: left;
    margin-left: 10px;
    color: var(--color-02);
	font-weight: 600!important;
}
.contens_wp {
    align-items: stretch;
}
.contens_wp p {
    letter-spacing: 0.15rem;
}
.event_more {
	display: block;
    font-size: 100%;
    color: #FF9199;
    margin: 10px 0;
}
.event_more:hover{
	opacity: 0.7;
}
.event_more svg{
    fill: var(--color-01)!important;
}
.event_more svg rect{
    color: var(--color-01)!important;
}

a.btn-event {
  font-weight: bold;
  color: var(--color-02);
  padding: 10px 0; 
  border: 2px solid var(--color-02);
  border-radius: 0;
  background: #FFF8EA;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  width: 100%;
  margin: 10px 0 30px 0;
}
a.btn-event2 {
  font-weight: bold;
  color: #f0506e;
  padding: 10px 0; 
  border: 2px solid #f0506e;
  border-radius: 0;
  background: #FFF7F7;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  width: 100%;
  margin: -10px 0 30px 0;
}

a.btn-event:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 100%;
  content: '';
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-transform: translateX(0) translateY(0);
  transform: translateX(0) translateY(0);
  border-radius: 0 50% 50% 0;
  background: var(--color-02);    
}
a.btn-event2:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 100%;
  content: '';
  -webkit-transition: all .3s;
  transition: all .3s;
  border-radius: 0 50% 50% 0;
  background: #f0506e;
}

a.btn-event:hover:before {
  font-family: 'Font Awesome 5 Free';
  font-weight: bold;
  line-height: 30px;
  width: 30px;
  height: 30px;
  content: '\f061';
  -webkit-transform: translateX(1700%) translateY(.8rem);
  transform: translateX(1700%) translateY(.5rem);
  color: #fff;
  border-radius: 50%;
}
a.btn-event2:hover:before {
	font-family: 'Font Awesome 5 Free';
	font-weight: bold;
	line-height: 30px;
	width: 30px;
	height: 30px;
	content: '\f061';
    -webkit-transform: translateX(1700%) translateY(.8rem);
	transform: translateX(1700%) translateY(.8rem);
	color: #fff;
	border-radius: 50%;
    
}

.btn-fm {
    padding: 5px;
}
.btn-fm:hover{
    background: #fff;
    color: var(--color-02);
}
.btn-red:hover{
    background: #fff;
    color: #f0506e;
}
 
.fitimg a{
    text-decoration: none;
    display: inline-block;
}
.rental_space {
    display: flex;
    margin-bottom: 100px;
}
.rental_space_text {
    width: 500px;
    margin-left: 100px;
    text-align: left;
}

.sec03_event {
    margin-bottom: 250px;
}
.kouzabnr {
    width: 1000px;
    border: #9AF7FF 2px solid;
    border-radius: 10px;
    margin-top: 50px;
    margin: 0 auto!important;
    
}

.kouzabnr:hover {
    opacity: 0.5;
}
.sketchytx {
    text-align: left;
    
}
.sketchy {
    display: flex;
}
.sk_naiyou {
    display: flex;
}
.sk_naiyou ul {
    
}
.backpink {
    background: #FFF9F9;
    border: 1px solid var(--color-01);
    border-radius: 10px;
}
.sk_naiyou ul li{
    list-style-type: disc;
    color: var(--color-01);
    
}
.sk_naiyou span {
    color: #3e3a39;
}
.sketchy-title {
    font-size: 120%;
    margin-top: 10px;
    font-weight: bold;
    padding: 7px 5px 5px 5px;
    color: #fff;
    background: var(--color-02);
    
}
.sketchytx_bold {
    font-weight: bold;
    border-bottom: #EBA2A7 1px solid;
    display: block;
}
.event:hover {
    box-shadow: 0 5px 15px rgba(255,163,164,0.50);
    transform: translateY(-5px);
    cursor: pointer;
        }
.contens_wp a {
    text-decoration: none!important;
     
}
.box7{
    padding: 0.5em 1em;
    margin: 2em 0;
    color: #474747;
    background: whitesmoke;/*背景色*/
    border-left: double 7px #4ec4d3;/*左線*/
    border-right: double 7px #4ec4d3;/*右線*/
}
.box7 p {
    margin: 0; 
    padding: 0;
}
.sec01_event {
    margin-bottom: 50px;
}
.accordion-001 {
    max-width: 100%;
    background-color: #FFF9F9;
    margin-bottom: 150px!important;
}
.accordion-001:not([open]) {
    margin-bottom: 7px;
}

.accordion-001 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    border-radius: 5px;
    background-color: #E87B82;
    color: #fff;
    cursor: pointer;
    letter-spacing: 0.2em;
    
}
.accordion-001 summary::-webkit-details-marker {
    display: none;
}

.accordion-001 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
    content: '';
    transition: transform .3s;
}

.accordion-001 ul {
    list-style: none;
    display: flex;
    padding: 20px 0;
    width: 100%;
    flex-wrap: wrap;
    clear: both;
    align-items: center;
}
.accordion-001 li {
    list-style: none;
    width: calc(70% / 4 );
}

.accordion-001 li:not(:last-child){
    border-right: 2px solid #ddd;
    margin: 5px 0; 
}

.tab-label {
   display: block;
   float: left;
    

}
.tab-label-heading:not(:last-of-type) .tab-label{
   margin-right: 2px!important;
}
/*ラジオボタンを全て非表示に*/
input[name="tab-radio"] {
   display: none;
}
.tab-label{
   color: #525252!important;
   cursor: pointer!important;
   font-size: 16px!important;
   padding: 10px 20px!important;
   transition: .3s;
   margin: 0 10px; 
}
.tab-label:hover{
   opacity: .7!important;
}

input:checked + h2 > .tab-label{
   color: var(--color-01)!important;
   background-color: #FFFFFF!important;
   border: 1px solid var(--color-01);
   transition: .3s;
}
.tab-panel{
   padding: 30px; 
   clear: both;
   display: none; /*パネルを非表示*/
}
#tab-a:checked ~ .panel-202310,
#tab-b:checked ~ .panel-202311,
#tab-c:checked ~ .panel-202312,
#tab-d:checked ~ .panel-202401,
#tab-e:checked ~ .panel-202403,
#tab-f:checked ~ .panel-202404,
#tab-g:checked ~ .panel-202406,
#tab-h:checked ~ .panel-202407,
#tab-i:checked ~ .panel-202408,
#tab-j:checked ~ .panel-202409,
#tab-k:checked ~ .panel-202411,
#tab-l:checked ~ .panel-202501,
#tab-n:checked ~ .panel-202502,
#tab-m:checked ~ .panel-202503,
#tab-o:checked ~ .panel-202504,
#tab-p:checked ~ .panel-202505{
   display: block;
}
.order_box-title {
    padding: 10px;
    font-size: 130%;
    background: #BB4B4D;
    text-align: center;
    color: #FFF;
    font-weight: bold;
    letter-spacing: 0.3em;
}
.order_way{
    margin: 8em 0;
    background: #FFFCFC;
    border: 1px solid #BB4B4D;
    box-shadow: 0 4px 6px rgba(255,149,165,0.22);
}
.order_way p {
    margin: 0; 
    padding: 0 0 20px 0;
}


.box-design {
  margin: 20px auto;
  border: 2px solid #3583AD;
  background-color: #fff;
  background-image:  linear-gradient(#F3FAFF 2px, transparent 2px), linear-gradient(to right, #F3FAFF 1px, #fff 1px);
  background-size: 20px 20px;
}
.boxh {
    background: #3583AD;
    padding: 10px;;
    color: #fff;

}
.pf_text {
    padding: 20px;
}

.ttl_center3 {
  font-weight: bold;
  padding-bottom: 0.9em;
  text-align: center;
  position: relative;
  margin-bottom: 50px;  
}
.ttl_center3::after {
  content: '';
  position: absolute;
  border-bottom: 10px dotted #FF83A2;
  width: 50px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.pf_name {
    font-weight: bold;
    font-size: 110%;
}
p.boldfont {
    text-align: center!important;
    font-weight: bold;


}
/*-------------------------------------------
ACCESS
-------------------------------------------*/
.wrap_access_maps {
    display: flex;
    width: 100%;
    max-width: 800px;
    margin: 150px auto 10px;
}
.access_map_img {
	margin-right: 50px;
    width: 45%;
}
.wrap_access_info {
	
}
.access_info_p {
	font-size: 110%;
    margin: 12px 0;
    letter-spacing: 0.07em;
    text-align: left;
}
.wrap_public_transport {
	text-align: left;
}
.access_pt_h3 {
	text-align: left;
    padding: 4px 24px;
    background-color: var(--color-01);
    color: #fff;
    font-size: 120%;
    font-weight: 400;
    display: inline-block;
    border-radius: 20px;
    margin: 32px 0 0;
}
.access_info_pt_span {
    color: var(--col_i_blue);	
}
.access_info_pt_small {
	
}
div#page_top {
  border-radius: 10px!important;  
}
#page_top{
  width: 50px;
  height: 50px;
  position: fixed;
  right: 5px;
  bottom: 5px;
  background-color: rgba(104,48,0,0.80);
  z-index: 100;  
}
#page_top a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 15px;
  color: #fff;
  position: absolute;
  width: 10px;
  height: 10px;
  top: -30px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
#page_top a::after{
  content: 'TOP';
  font-size: 10px;
  color: #fff;
  position: absolute;
  top: 25px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
.cp_dm { background-color:#5a0300!important; }

.news_group {
    padding: 10px;
}
.news_naiyougp {
    text-align: left;
}
.news_naiyou {
    font-size: 110%;
}
.news_str {
    font-weight: bold;
    font-size: 150%;
    color: red;
}
#news_text p{
    text-align: left!important;
    margin: 30px 0; 
}
#sakuraterrace_event p {
    text-align: left;
}
.info_01 {
    padding: 20px;
    width: 800px;
    display: block;
    margin: 50px auto 0 auto;
    text-align: center;
    border: 2px solid #F9A2A3;
    
}
.info_h {
    font-size: 120%;
    background: #F9F9F9;
    color: #FF9A9B;
    text-align: center;
    padding: 10px;
}

.pic-container {
    background-color: #fff;
    display: grid;
    height: 100%;
}

.slider_event {
    display: flex;
    margin-bottom: 100px;
    background-color: #efefef;
    overflow: hidden;
}

.slider-list_event {
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
    animation: slideShow 20s infinite linear;
    list-style: none;
}

.slider-item_event {
    width: 400px;
    height: 250px;
}

.slider-item_event img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0 0.5rem;
}

.slider_event:hover .slider-list_event {
    animation-play-state: paused;
}

@keyframes slideShow {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }

}
.event_koramu iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
    display: block;
}
.h2_sub {
  font-size: 160%;  
  padding: 10px 0 10px 20px;
  color: #5f453d;
  background: #FFF8EF;
  border-left: solid 10px #5f453d;
  font-weight: 600;
  letter-spacing: 0.15em;

}
.ul_flx {
    display: flex;
}
.ul_plof {
    text-align: left;
    margin-top: 0;
}

.li_dot_pink::before {
    content: '●';
    color: #F47FBD;
        
}
.li_dot_pink li {
    margin-left: 30px;
}
.li_dot::before {
    content: '・';
    color: #3583AD;
        
}
.li_dot li {
    margin-left: 30px;
}

a.btnpink {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  background: var(--color-01);
  border: 2px solid var(--color-01);
  box-sizing: border-box;
  padding: 0 25px 0 40px;
  color: #fff;
  font-size: 120%;
  letter-spacing: 0.2em;
  line-height: 1.3;
  text-align: left;
  text-decoration: none;
  transition-duration: 0.3s;
  border-radius: 10px;
  margin-top: 100px;
    
}

a.btnpink:hover {
  background: #fff;
  color: var(--color-01);
  text-decoration: none;
    
}
.menu_bnr {
}
.bnr_csm {
    margin: 20px auto;
    border: 3px solid #785D21;
}
.bnr_csm:hover {
    opacity: 0.7;
}

.wrap_latest_study_report {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin: 50px 0 100px 0;
    
}
.latest_study_report {
    background-color: transparent;
    display: flex;
    
}

.latest_study_report {
    width: 24%;
    height: auto;
    background-color: #FFF;
    }

.modal_w {
    width: 900px!important;
    height: auto;
    }

.iseikaihoney_pmf_img {
    border: 1px solid blue;
    padding: 10px;
    width: 70%;
    margin: 0 auto;
    display: block;
}
.iseikaihoney_pmf a:hover{
    opacity: 0.7;
}
.report_card {
    margin: 50px;
}
.report_card_text {
    outline-offset: -15px;
    outline: 2px dashed var(--color-01);
}
#reportitiran a {
    text-decoration: none!important;
}
.report_title {
    color: var(--color-01)!important;
}
.read-more-1 {
    position: relative;
}

.read-more-1 p {
    position: relative;
    max-height: 100px; /* 開く前に見せたい高さを指定 */
    margin-bottom: 0;
    overflow: hidden;
    transition: max-height 1s;
}

.read-more-1 p::after {
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(180deg, hsla(0, 0%, 100%, 0) 0, hsla(0, 0%, 100%, .9) 50%, hsla(0, 0%, 100%, .9) 0, #fff);
    content: '';
}
.read-more-1 label::after {
    display: inline-block;
    width: 10px;
    height: 5px;
    background-color: #b6bdc3;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
}
#reportitiran {
    background: #FFF8EF;
    padding: 80px;
}
.infoflx {
    display: flex;
}

.infoflx img {
    width: 200px;
    height: 200px;
}
.info_tx {
    text-align: left;
    margin-left: 20px;
}
.info_h2 {
    font-weight: 600;
    color: var(--color-01);
    font-size: 110%;
}

.topbtn {
    max-width: 800px;
}
.p_em {
    margin-top: -30px;
}
.span_sm {
    font-size: 1rem;
}
.honey_title_h2 {
  font-weight: bold;
  padding: 0.5em 1em;
  margin: 50px 0!important;  
  margin-left: 10px;
  margin-right: 10px;
  background-color: #FCFFCC;
  box-shadow: 0 0 0 10px #FCFFCC;
  border-top: 2px dashed #4A3709;
  border-bottom: 2px dashed #4A3709;
  color: #574111;
  letter-spacing: 0.15em; 
  font-size: 165%;
 
}
.h2bgs {
    background-color: #ECF9E3!important;
    box-shadow: 0 0 0 10px ECF9E3!important;
}
.h2sptr {
    background-color: #F9EBED!important;
    box-shadow: 0 0 0 10px #F9EBED!important;
}
.catchcopy {
    font-family: "Kiwi Maru", serif!important;
    font-weight: 500;
    font-style: normal;
    font-size: 180%;
    color: var(--color-01);
    text-align: center;
}
.modalbotn {
    max-width: 700px;
}
#inner_back01 {
    height: auto;
    background: #FFFAF2;
    padding-bottom: 30px!important;
}
@media screen and (max-width: 1400px) {
.concept_text {
    margin-bottom: 300px;
}
footer p.oclc {
    font-size: 90%;
}

.group_work {
    max-width: 50%;
}
}

.menu__imgs {
    margin-top: -500px;
}
ul.menu__imgs {
   padding-left: 0;
}
  
    
.chamomile {
    margin: 2em 0;
    background: #FFFDE5;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.22);
}
.chamomile-title,
.chamomile-title small{
    background: #6E4E00;
    padding: 13px;
    text-align: center!important;
    color: #FFF;
    font-weight: bold;
    letter-spacing: 0.05em;
}
.chamomile p {
    padding: 15px 20px;
    margin: 0;
}
p.nopd {
    margin-bottom: 0!important;
    
}

#supporter {
    height: auto;
    background: #FFFAF2;
    padding-bottom: 30px!important;
}
#supporter_modalback_con01 {
    padding: 20px 0 20px 0;
    background: url("../supporter/img/supporter_modalback_con01.png");
    background-blend-mode: screen;
    background-size: cover;
    background-position: 50% 50%;  
}
.h2stroke{
  text-shadow:3px 3px 0 #FFF, -3px -3px 0 #FFF,
              -3px 3px 0 #FFF, 3px -3px 0 #FFF,
              0px 3px 0 #FFF,  0-3px 0 #FFF,
              -3px 0 0 #FFF, 3px 0 0 #FFF;
}

table.tbl2 tr th{
    text-align: center!important;
}
div#modal_supporter {
   
}
div#modal_supporter table {
    width: 100%;
}
div#modal_supporter table tr th {
    text-align: left;
    vertical-align: middle;
    padding: 8px 10px;
    background-color: #eee;
    border: 1px solid #ccc;}

.mgnsp {
    margin: 50px 0 20px 0;
}
.modalback {
  margin: 0!important;
    padding: 0!important;
  
    
}
.button-41 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 800px;
    margin: 50px auto;
    padding: .9em 2em;
    border: none;
    border-radius: 50px;
    background-color: #DD3B64;
    color: #fff;
    font-weight: 600;
    font-size: 150%;
    letter-spacing: 0.2em;
}

.button-41:hover {
    animation: anima-button-41 2s linear infinite;
    text-decoration: none;
}

@keyframes anima-button-41 {
    7% {
        transform: translateY(-15px);
    }
    15% {
        transform: translateY(0);
    }
    20% {
        transform: translateY(-7px);
    }
    25% {
        transform: translateY(0);
    }
}

.button-41::after {
    transform: rotate(45deg);
    width: 5px;
    height: 5px;
    margin-left: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    content: '';
}

.supl_longevity {
	display: inline-block;
    padding-left: 5px;
    font-size: 90%;
    color: var(--col_i_sumi_500);
    font-weight: bold;
}
.tju_tx{
    font-size: 100%;
}
.menusml_p{
    font-size: 94%;
}
.oclc_ft {
    margin: 20px auto 30px auto;
}
.hours img {
    width: 60%;
}
div.footer_logor {
    justify-content: center!important;
    margin: 0px auto 0 auto;
    padding: 0px 0 100px 0;
}

.external_bn {
    position: fixed;
    bottom: 80px;
    right: 0px;
    display: block;
    width: 100px;
    height: 100px;
    background-color: var(--color-01);
    /* border-radius: 16px; */
    font-weight: normal;
    color: var(--color-03);
    text-align: center;
    padding: 15px 10px;
    box-sizing: border-box;
    font-size: 90%;
    /* box-shadow: 0 0 0px 5px #fff; */
    text-decoration: none;
    
}
.external_bn span {
    fill:var(--color-03);
}
.external_bn:hover {
    color: var(--col_i_blue_sub);
    /* box-shadow: 0 0 0px 5px var(--col_i_blue_sub); */
    text-decoration: none;
}
.external_bn:hover span {
    fill:var(--col_i_blue_sub);
}
.red {
    color: #FC6392;
}
.balloon1-top {
  position: relative;
  display: inline-block;
  padding: 10px 10px;
  min-width: 120px;
  max-width: 100%;
  font-size: 16px;
  background: #FFEBF5;
}

.balloon1-top:before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-bottom: 15px solid #FFEBF5;
}

.balloon1-top p {
  margin: 0;
  padding: 0;
}

.balloon1-bottom {
  position: relative;
  display: inline-block;
margin: 20px 10px 0 10px;
  padding: 10px 10px;
  min-width: 120px;
  font-size: 16px;
  background: #FDF8BC;
}

.balloon1-bottom:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #FDF8BC;
}

.balloon1-bottom p {
  margin: 0;
  padding: 0;
}
.bln_tx {
    font-weight: bold;
    color: #7F3F00;}
.column {
    display: flex!important;
    flex-direction: column!important;
}
.grow {
    flex-grow: 1!important;
}

img.event_fly {
    width: 60%;
	margin: 50px auto 0 auto;
    display: block;
    
}
div.event_flybox a  {
	padding-top: 100px;
}
p.event_date_new {
    font-weight: bold!important;
    color: var(--color-02)!important;
}
.event_date_new {
　font-weight: bold!important;
  position: relative;
  background: #EDE3D3;
  padding: 2px 5px 2px 20px;
  font-size: 20px;
  border-radius: 0 10px 10px 0;
}

.event_date_new:before {
  font-family: "Font Awesome 5 Free";
  content: "\f073";
  display: inline-block;
  line-height: 40px;
  position: absolute;
  padding: 0em;
  color: white;
  background: #7F3F00;
  font-weight: 900;
  width: 40px;
  text-align: center;
  height: 40px;
  line-height: 40px;
  left: -1.35em;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 50%;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.29);
}
.event_naiyo:before {
  font-family: "Font Awesome 5 Free";
  content: "\f328";
}
.event_title_bg {
    padding: 2%;
    height: 100px!important;
}
.event_title {
    color: #f0506e!important;
    background: #fff;
    width: 100%;
    font-weight: bold;
    opacity: 0.8;
    letter-spacing: 0.2rem;
    font-size: 1.5rem;
    padding: 20px!important;
    margin-bottom: 0!important;
}
.today_don {
    background: #FFFDCE;
}

.h4_menu {
    background: #FF8E00;
    padding: 10px;
    color: #fff;
    letter-spacing: 0.2rem;
    font-weight: bold;
    border-radius: 10px;
}

.tdybdg {
    width: 50px;
    font-size: 1rem!important;
    margin-bottom: 5px;
    background: #E33939!important;
    padding: 15px 5px!important;
}

button.btnskr {
    color: #fff;
    border: 2px solid #fff;
    border-radius: 0;
    font-weight: bold;
    letter-spacing: 0.2rem;
    background-color: #FF9A8B;
    background-image: linear-gradient(90deg, #FF9A8B 0%, #FF6A88 55%, #FF99AC 100%);

  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
  box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
}

button.btnskr:hover {
  -webkit-transform: translate(0, -2px);
  transform: translate(0, -2px);
  color: #fff;
  -webkit-box-shadow: 0 8px 15px rgba(0, 0, 0, .2);
  box-shadow: 0 8px 15px rgba(0, 0, 0, .2);
}
table.info_hours {
    font-weight: bold;
    font-size: 1rem;
    color: var(--color-02);
    letter-spacing: 0.15rem;
    
}
.uk-modal-body {

}
.info_hours tbody th {
    width: 20%;
    font-weight: bold;
    font-size: 1rem;
    color: #fff;
    background: #E9747F;
}
.info_hours tbody tr:nth-of-type(odd), .info_hours>tr:nth-of-type(odd) {
    background: #FFF7ED!important;
}
.info_hours  tbody tr:nth-of-type(2n), .info_hours>tr:nth-of-type(2n) {
     background: #FFF9FC!important;
}

h3.hbg_pink {
    padding: 15px!important;
    color: #fff;
    font-weight: bold;
    background-image: linear-gradient(90deg, #FF9A8B 0%, #FF6A88 55%, #FF99AC 100%);
    font-size: 1.1rem;
    letter-spacing: 0.2rem;

}
.btn_contact {
    background: #634829!important;
}
#don {
    margin-top: 50px;
}

.past_event_title {
	color: #fff!important;
	border-radius: 5px;
	font-weight: 600!important;
	padding: 10px 20px;
	background: #E87B82;
	font-size: 1.1rem;
	letter-spacing: 0.2rem;
}
.past_event_title::before {
    background-color: rgb(255, 255, 255);
    color: #E87B82;
    text-align: center;
    border-radius: 4px;
}
.uk-accordion-title:hover {
	color: #fff;
	opacity: 0.7;
}
.uk-open>.uk-accordion-title::before {
	content: '\f077'!important;
    font-family: FontAwesome;
	background-image: none;

}
.uk-accordion-title::before {
    content: '\f078'!important;
    font-family: FontAwesome;
	background-image: none!important;
	text-shadow: none;
}
#event20250726,#event20250809,#event20250917 {
    padding-top: 100px;
    margin-top: -100px;
}