@media(max-width: 360px){
    html{
    font-size: 16px;
}
}
:root{ 
    --about: #CEF0FF;
    --news: #FFD9CE;
    --night: #F4F0E9;
    --contact: #FBF3D6;
    --info: #FFFFFF;
}
*{
    box-sizing: border-box;
}
html{
  scroll-behavior: smooth;
}
body{
    margin: 0;
    font-family: "Shippori Mincho", serif;
}
a{
    text-decoration: none;
    color: inherit;
}
h1{
    font-size: 2rem;
    text-align: center;
    margin: 0 0 40px 0;
}
h3{
    font-size:1rem;
}
p{
    font-size: 0.8rem;
}
li{
  list-style-type: none;
}
/*header*/
.header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1200;
  background: #f5f5f5;
}
.header_inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
}
.logo{
  display: inline-flex;
  align-items: center;
}
.logo img{
  width: 60px;
  height: auto;
  display: block;
}

/* =========================
   header / footer base
========================= */

.pc_nav,
.hcontact_btn,
.pc_footer {
  display: none;
}
/* =========================
   PC header
========================= */
@media screen and (min-width: 768px) {
  .header_inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 32px 40px 24px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
  }
  .logo img {
    width: 170px;
    height: auto;
    display: block;
  }
  .pc_nav {
    display: block;
    margin-top: 18px;
    flex: 1;
  }
  .pc_nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 54px;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .pc_nav a {
    font-size: 1.2rem;
    color: #222;
    text-decoration: none;
  }
  .pc_nav a:hover {
    opacity: 0.7;
  }
  .hcontact_btn {
    display: inline-block;
  padding: 16px 40px;
  border-radius: 999px;
  background: #ffd967;
  color: rgba(0,0,0,.7);
  text-decoration: none;
  font-size: 1.2rem;
  box-shadow: 0 6px 14px rgba(0,0,0,.08)
  }
  
  .hcontact_btn:hover {
    opacity: 0.8;
  }
  .menubtn {
    display: none;
  }
}

/*humburger開く*/
.drawer{
position: fixed;
top: 0;
right: -100%;
width: 100%;
height: 100vh;
background: #eaf7f7;
box-shadow: 0 8px 30px rgba(0,0,0,0.08);
transition: .5s;
z-index: 1000;
}
.drawer.active{
right: 0;
}
.drawer_inner{
padding: 120px 60px 40px;
}
.drawer_menu{
list-style: none;
}
.drawer_menu li{
margin-bottom: 16px;
opacity: 0;
transform: translateY(10px);
transition: 1.2s;
}
.drawer.active .drawer_menu li{
  opacity: 1;
  transform: translateY(0);
}
.drawer_menu a{
font-size: 1.6rem;
color: #333;
text-decoration: none;
}

/*humburger閉じる*/
.menubtn{
  width: 40px;
  height: 40px;
  position: relative;
  border: none;
  background-color: #f5f5f5;
  z-index: 1300;
}
.menubtn span{
position: absolute;
width: 24px;
height: 2px;
background: #333;
left: 8px;
transition: .3s;
}
.menubtn span:nth-child(1){
top: 12px;
}
.menubtn span:nth-child(2){
top: 20px;
}
.menubtn span:nth-child(3){
top: 28px;
}
.menubtn.active span:nth-child(1){
top: 20px;
transform: rotate(45deg);
}
.menubtn.active span:nth-child(2){
opacity: 0;
}
.menubtn.active span:nth-child(3){
top: 20px;
transform: rotate(-45deg);
}

.drawer_address{
margin-top:60px;
font-size:0.9rem;
line-height:1.5;
color:#555;
}
.drawer_address a{
text-decoration:none;
color:#555;
}
.privacy{
margin-top:20px;
font-size:0.8rem;
color:#777;
font-family:"Noto Sans JP",sans-serif; 
}

/*main*/
main{
  padding-top: 76px;
}



.hero{
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2f3138;
  overflow: hidden;
  position: relative;
  transition: background 1.2s ease;
}

.hero__media{
  position: relative;
  width: 260px;
  height: 320px;
}

.hero_img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* 初期状態 */
.hero_img1{
  opacity: 1;
  z-index: 2;
  transition: opacity .45s ease;
}

.hero_img2{
  opacity: 0;
  z-index: 1;
  transition: opacity .45s ease;
}

/* 切り替え後 */
.hero.is-show .hero_img1{
  opacity: 0;
}

.hero.is-show .hero_img2{
  opacity: 1;
  filter:
    drop-shadow(0 0 30px rgba(255,240,180,0.9))
    drop-shadow(0 0 90px rgba(255,240,180,0.6))
    drop-shadow(0 0 160px rgba(255,240,180,0.35))
    drop-shadow(0 0 300px rgba(255,240,180,0.2));
}

/* 文字 */
.hero_catch{
  position: absolute;
  left: 50%;
  top: 62%;
  transform: translate(-50%, 12px);
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: #f4e7b8;
  opacity: 0;
  transition: opacity .45s ease, transform .45s ease;
  white-space: nowrap;
}

.hero.is-show .hero_catch{
  opacity: 0.85;
  transform: translate(-50%, 0);
}

@media screen and (max-width: 767px){
  .hero__media{
    width: 170px;
    height: 210px;
  }

  .hero_catch{
    top: 60%;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
  }
}


/*about*/
#about{
    text-align: center;
    padding: 100px 20px 80px;
    background: linear-gradient(
        to bottom,
        var(--about) 0%,var(--about) 80%,var(--news) 100%);
}
#about p{
    text-align: center;
    line-height: 2.2;
    margin: 28px 0 0;
    font-size:0.9rem;
}
.maru{
    width: 200px;
    margin: 0 auto;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: #FFFFD3;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 8px 20px 40px rgba(0,0,0,0.15),
                4px 6px 10px rgba(0,0,0,0.08);
}
#about .maru p{
    font-size: 1.2rem;
    line-height: 2.4;
    text-align:left;
    transform: translateY(-12px);
}
#about .point{
    display: inline-block;
    margin: 40px auto 0;
    padding: 10px 20px;
    background-color: #0f3ea8;
    border-radius: 30px;
    font-size: 1.2rem;
    text-decoration: none;
    color: #FFFFFF;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
}
  #about .point:hover{
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}
  #about .point:active{
  transform: translateY(0);
  box-shadow: 0 4px 8px rgba(0,0,0,0.12);
}

/*news*/
#news{
    text-align: center;
    padding: 90px 70px 90px 70px;
    background: var(--news);
    background: linear-gradient(
        to bottom,
        var(--news) 0%,var(--news) 80%,var(--night) 100%);
}
.news_list{
    list-style: none;
    padding: 0;
    margin: 0;
}
.news_list .news_item{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 0;
    border-top: 1px solid rgba(0,0,0,0.15);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: transform .2s ease;
}
.news_list .news_item:last-child{
    border-bottom: 1px solid rgba(0,0,0,0.15);
}
.news_list .news_item:hover img{
    transform: scale(1.06);
    filter: brightness(.95);
}
.news_thumb{
    width: 100px;
    height: 100px;
    overflow: hidden;
    flex: 0 0 auto;
    padding: 0;
}
.news_thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .25s ease, filter .25s ease;
}
.news_thumb_logo{
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255,255,255,0.6);
}
.news_thumb_logo img{
    width: 90px;
    height: auto;
    object-fit: contain;
    padding: 14px;
    box-sizing: border-box;
    transition: transform .25s ease, filter .25s ease;
}
.news_text{
    font-size: 0.8rem;
    margin: 0;
}
#news .read_btn{
    display: inline-block;
    margin: 40px auto 0;
    padding: 10px 20px;
    background-color: #FF8282;
    border-radius: 30px;
    font-size: 1.2rem;
    text-decoration: none;
    color: #FFFFFF;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
}
.read_btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}
.read_btn:active{
  transform: translateY(0);
  box-shadow: 0 4px 8px rgba(0,0,0,0.12);
}

/*night*/
#night{
  text-align: center;    
  padding: 110px 80px;
  background: var(--night);
  background: linear-gradient(
        to bottom,
        var(--night) 0%,var(--night) 80%,var(--contact) 100%);
}
.night_grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 30px;
  align-items: end;
  max-width: 520px;
  margin: 0 auto;
}
#night h1{
  padding-bottom: 40px;
}
#night p{
    line-height: 1.8;
    max-width: 12em;
    margin: 0 auto;
}
.night_card{
  display: block;
  min-height: 240px;
  text-decoration: none;
  color: inherit;
  background: rgba(255,255,255,0.55);
  overflow: hidden; 
  transition: transform .2s ease, filter .2s ease;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(6px);
  cursor: pointer;
}


.night_card--round:hover{
  transform: translateY(-2px);
  filter: brightness(.98);
}
.night_card--round{
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  padding: 40px 30px;
}
.night_card--img{
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.night_card--img img{
  width: 100%;
  height:100%;
  object-fit: cover;
}

/* スマホ */
@media (max-width: 480px){
  #night{ padding: 80px 22px; }
  .night_grid{ max-width: 100%; gap: 16px; }
  .night_card{ min-height: 160px; }
}

/*contact*/
#contact{
  text-align: center;    
  padding: 100px 70px;
  background: var(--contact);
  background: linear-gradient(
        to bottom,
        var(--contact) 0%,var(--contact) 80%,var(--info) 100%);  
}
#contact h1{
  margin-bottom: 50px;
}
.sns_icon{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 520px;
  margin: 0 auto 40px;
  justify-items: center;
}
.insta{
  text-align: center;
}
.x{
  text-align: center;
}
.sns{
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}
.sns img{
  width: 60px;
  height: auto;
}
.sns_x{
  width: 200px;
  height: 200px;
  object-fit: contain;
  display: block;
}
.contact_text{
  max-width: 120px;
  margin: 30px auto;
}
.contact_btn{
  display: inline-block;
  padding: 16px 40px;
  border-radius: 999px;
  background: #ffd967;
  color: rgba(0,0,0,.7);
  text-decoration: none;
  font-size: 1.2rem;
  box-shadow: 0 6px 14px rgba(0,0,0,.08);
}
.contact_btn:active{
  transform: translateY(1px);
}

/*info*/
#info{
  text-align: center;
  padding: 100px 70px;
  margin-bottom: 100px;
  font-family: "Noto Sans Jp", sans-serif;
}
#info h1{
  font-family: "Shippori Mincho", serif;
}
.info_text{
  font-size: 0.8rem;
  padding-bottom: 20px;
}
.access{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}
.address{
    font-style: normal;
    line-height: 1.8;
}
.map{
  margin: 0;
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid #111111;
  display: grid;
  place-items: center;
  background: rgba(235, 21, 21, 0.3);
}

@media (max-width: 480px){
  .access{ grid-template-columns: 1fr; }
  .map_dummy{ aspect-ratio: 16/10; }
}




/*aboutページ*/
.about_exp{
   max-width: 600px;
   margin: 0 auto;
   padding: 80px 35px 50px 35px;
   background-color: #CEF0FF;
}
.about h1{
   margin-bottom: 40px;
}
.byakuya_img{
  display: block;
   margin:0 auto 48px;
   width: 100%;
   max-width: 480px;
   height: auto;
   border-radius: 12px;
}
.about_catch{
  font-size: 1.3rem;
  line-height: 1.8;
  text-align: center;
  margin: 64px 0 64px;
  font-weight: 400;
}
.about_detail{
  margin-top: 40px;
  font-size: 1rem;
  line-height: 2.1;
  margin: 50px 0 20px 0;
}
.about p{
  text-align: center;
  font-size: 0.9rem;
  line-height: 2.1;
  margin: 0 0 0 14px;
  padding: 0 30px;
}
.about_end{
  font-size: 1rem;
  margin-top: 50px;
  line-height: 2.2;
  text-align: center;
}
.about_img{
  max-width: 600px;
  margin: 0 auto;
  padding: 24px 24px 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.about_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo{
  width: 100%;
  display: block;
  object-fit: cover;
}

.photo_large{
  grid-column: 1 / 3;
  aspect-ratio: 16 / 10;
}

.photo_small{
  aspect-ratio: 1 / 1;
}

/*about pc*/
@media screen and (min-width: 768px){
  .about_exp{
    max-width: 1100px;
    margin: 0 auto;
    padding: 120px 40px;
  }
  .about_box{
    max-width: 720px;
    margin: 0 auto;
  }
  .byakuya_img{
    display: block;
    width: 100%;
    max-width: 1000px;
    height: 420px;
    object-fit: cover;
    margin: 95px auto 70px;
  }
  .about_catch{
    font-size: 1.6rem;
    margin-top: 120px;
    margin-bottom: 40px;
  }
  .about_detail{
    font-size: 1.7rem;
    margin-top: 100px;
    margin-bottom: 40px;
  }
  .about_text p{
    font-size: 1.3rem;
    line-height: 2;
    margin-top: 30px;
  }
  .about_text p.about_end{
    font-size: 1.5rem;
    padding-top: 90px;
    line-height: 2.2;
    text-align: center;
  }
  .about_img{
    padding: 120px 0 140px;
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .photo{
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: 0;
  }
  .photo_large{
    grid-column: span 2;
  }
  .photo_small{
    grid-column: span 1;
  }
}


/*menu*/
.menu_exp{
  max-width: 600px;
  margin: 0 auto;
  padding: 80px 60px 50px 60px;
}
.menu_nav{
  background: #eeeeee;
  width: 260px;
  aspect-ratio: 1/1;
  padding: 32px 20px;
  max-width: 500px;
  margin: 40px auto;
}
.menu_nav ul{
  text-align: center;
  margin: 0;
  padding: 0;
}
.menu_nav li{
  margin: 20px 0;
  font-size: 1.1rem;
}
.menu_nav .night{
  font-size: 0.95rem;
  margin-top: 28px;
}
.menu_title{
  font-size: 1.4rem;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  scroll-margin-top: 100px;
}
.menu_title::after{
  content: "";
  flex: 1;
  height: 1px;
  background: #333;
}
.menu_text{
  line-height: 2;
  font-size: 0.9rem;
  margin-bottom: 48px;
}
.menu_item{
  text-align: center;
  margin-bottom: 60px;
}
.menu_item img{
  width: 200px;
  height: auto;
  margin: 0 auto 16px;
  display: block;
}
.menu_name{
  font-size: 0.85rem;
  font-family: "Noto Sans JP",sans-serif;
}
.menu_price{
  font-family: "Playfair Display",serif;
  color: #222;
}
.and{
  text-align: right;
  font-size: 0.9rem;
}
.menu_drink{
  font-size: 1rem;
  margin-top: -20px;
  color: #4d4d4d;
}

/* night menu */
.nightmenu{
  background-color: #0f3ea8;
  color: #eae7e7;
  padding: 90px 24px 120px;
  overflow: hidden;
}

.nightmenu_title{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.5rem;
  margin-bottom: 48px;
}

.nightmenu_title::before,
.nightmenu_title::after{
  content: "";
  width: 80px;
  height: 1px;
  background: #eae7e7;
}

.nightmenu_lead{
  text-align: center;
  line-height: 2.2;
  margin-bottom: 72px;
  font-size: 1rem;
}

.nightmenu_item{
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 72px;
}

.nightmenu_item.right{
  flex-direction: row;
}

.nightmenu_item.left{
  flex-direction: row-reverse;
}

.nightmenu_photo{
  width: 260px;
  height: 320px;
  background: #f7f6f2;
  overflow: hidden;
  border-radius: 130px;
  flex-shrink: 0;
}

.nightmenu_photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nightmenu_item.right .nightmenu_text{
  text-align: right;
}

.nightmenu_item.left .nightmenu_text{
  text-align: left;
}

.nightmenu_text{
  max-width: 220px;
}

.nightmenu_name{
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.nightmenu_tag{
  font-size: 0.95rem;
  opacity: 0.95;
}

.night_desc{
  margin-top: 18px;
  line-height: 2;
  font-size: 0.9rem;
}

.night_drink{
  text-align: center;
  margin-top: 30px;
}

.night_drink img{
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  margin: 0 auto;
  background: #fff;
  padding: 24px;
}

.night_drink_text{
  padding: 28px 20px 0;
  text-align: center;
  line-height: 2;
  font-size: 0.95rem;
}

/*menu pc*/
@media screen and (min-width: 768px){

  .menu_exp{
    max-width: 1000px;
    margin: 0 auto;
    padding: 110px 40px 90px;
  }
  .menu_nav{
    width: 410px;
    aspect-ratio: auto;
    max-width: 100%;
    padding: 70px 42px;
    margin: 55px auto 90px;
    background: #eeeeee;
  }
  .menu_nav ul{
    margin: 0;
    padding: 0;
    text-align: center;
  }
  .menu_nav li{
    margin: 0 0 26px;
    font-size: 1.3rem;
    list-style: none;
  }
  .menu_nav li:last-child{
    margin-bottom: 0;
  }
  .menu_nav .night{
    margin-top: 34px;
    font-size: 0.98rem;
  }
  .menu_nav a{
    color: #222;
    text-decoration: none;
  }
  .menu_title{
    font-size: 2.1rem;
    margin: 0 0 34px;
    display: flex;
    align-items: center;
    gap: 28px;
    scroll-margin-top: 140px;
  }
  .menu_title::after{
    content: "";
    flex: 1;
    height: 1px;
    background: #333;
  }
  .menu_text{
    font-size: 1.1rem;
    line-height: 2;
    margin: 0 0 58px;
  }
  .menu_drink{
    font-size: 1.2rem;
    margin-top: 26px;
    color: #4d4d4d;
  }
  .menu_items{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 36px;
    margin-top: 50px;
  }
  .menu_item{
    text-align: center;
    margin-bottom: 0;
  }
  .menu_item img{
    width: 100%;
    max-width: 220px;
    height: 180px;
    object-fit: contain;
    display: block;
    margin: 0 auto 18px;
  }
  .menu_name{
    font-size: 1rem;
    line-height: 1.8;
    font-family: "Noto Sans JP", sans-serif;
    margin: 0 0 14px;
  }
  .menu_price{
    font-family: "Playfair Display", serif;
    color: #222;
    font-size: 1rem;
    margin: 0;
  }
  .and{
    text-align: right;
    font-size: 0.95rem;
    margin-top: 22px;
  }
}

  /*night menu pc*/
@media screen and (min-width: 768px){

  .nightmenu{
    width: 100%;
    margin: 140px 0 0;
    padding: 120px 80px 140px;
  }
  .nightmenu_title{
    gap: 24px;
    font-size: 2.2rem;
    margin-bottom: 32px;
  }
  .nightmenu_title::before,
  .nightmenu_title::after{
    width: 180px;
  }
  .nightmenu_lead{
    font-size: 1.15rem;
    line-height: 2.3;
    margin-bottom: 60px;
  }
  .nightmenu_item{
    justify-content: center;
    gap: 70px;
    margin-bottom: 100px;
  }
  .nightmenu_photo{
    width: 320px;
    height: 400px;
    border-radius: 160px;
  }
  .nightmenu_text{
    max-width: 300px;
  }
  .nightmenu_name{
    font-size: 1.9rem;
    margin-bottom: 16px;
  }
  .nightmenu_tag{
    font-size: 1.15rem;
  }
  .night_desc{
    margin-top: 1px;
    font-size: 1.05rem;
  }
  .night_drink{
    margin-top: 20px;
  }
  .night_drink img{
    max-width: 620px;
    padding: 36px 44px;
  }
  .night_drink_text{
    padding-top: 44px;
    font-size: 1.2rem;
    line-height: 2.3;
  }
}


  /* 各ブロック間の余白 */
  #food{
    margin-top: 0;
  }

  #dessert{
    margin-top: 120px;
  }

  #drink{
    margin-top: 120px;
  }

  /* Drinkの下の余白 */
  .menu_exp > .menu_drink{
    margin-bottom: 110px;
    display: block;
  }



/*experience*/
.experience_exp{
  max-width: 600px;
  margin: 0 auto;
  padding: 80px 60px 50px 60px;
}
.experience_icon{
  display: grid;
  grid-template-columns: repeat(2,140px);
  justify-content: center;
  gap: 16px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}
.experience_icon a{
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}
.experience_icon a:hover{
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.10);
}
.experience_icon a:active{
  transform: translateY(-2px);
}
.experience_icon a:focus-visible{
  outline: 2px solid #222;
  outline-offset: 4px;
}
.experience_icon li{
  width: 120px;
  height: 120px;
  background-color: #FD997F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.experience_center{
  text-align: center;
  margin: 12px 0;
  padding: 0;
  font-size: 1.4rem;
  transform: translateX(-6px);
}
.experience_text{
  margin:60px 20px;
}
.experience_sub{
  font-size: 1.4rem;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  scroll-margin-top: 100px;
}
.experience_sub::after{
  content: "";
  flex: 1;
  height: 1px;
  background: #333;
}
.experience_text p{
  line-height: 2;
  font-size: 0.9rem;
  margin-bottom: 48px;
}

.min15{
  background: #FFD9D9;
  margin-top: 80px;
  padding: 90px 24px 100px;
  border-top-left-radius: 500px 200px;
  border-top-right-radius: 500px 200px;
}
.min15_inner{
  position: relative;
  z-index: 1;
  max-width: 420px;
  margin: 20px auto 0 auto;
  text-align: center;
  transition: 1s;
}
.min15_inner:hover{
  transform: translateY(-10px);
}
.min15 h2{
  font-size: 1.6rem;
  margin-top: 10px;
  margin-bottom: 24px;
  color: #626262;
}
.min15_sub{
  margin-bottom: 32px;
  font-size: 1rem;
  color: #353434;
}
.min15 img{
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
  margin: 0 auto 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.min15_text{
  max-width: 340px;
  margin: 0 auto;
  text-align: left;
  color: #353434;
}
.min15_text p{
  line-height: 2.2;
  font-size: 0.95rem;
  margin:0 10px 14px;
}

/* experience PC */
@media screen and (min-width: 768px){

  .experience_exp{
    max-width: 1100px;
    margin: 0 auto;
    padding: 120px 40px 100px;
  }

  .experience_exp h1{
    text-align: center;
    font-size: 3rem;
    margin-bottom: 70px;
  }

  /* 上2つ */
  .experience_exp > .experience_icon:nth-of-type(1){
    display: flex;
    justify-content: center;
    gap: 140px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  /* 下2つ */
  .experience_exp > .experience_icon:nth-of-type(2){
    display: flex;
    justify-content: center;
    gap: 140px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .experience_icon li{
    width: 180px;
    height: 180px;
    background-color: #FD997F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .experience_icon li a{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #222;
    font-size: 1.7rem;
    font-weight: 400;
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
  }

  .experience_icon li a:hover{
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
  }

  .experience_center{
    text-align: center;
    font-size: 2.2rem;
    margin: 24px 0;
    line-height: 1;
  }

  .experience_text{
    max-width: 820px;
    margin: 80px auto 0;
  }

  .experience_sub{
    font-size: 2rem;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    scroll-margin-top: 120px;
  }

  .experience_sub::after{
    content: "";
    flex: 1;
    height: 1px;
    background: #333;
  }

  .experience_text p{
    font-size: 1.1rem;
    line-height: 2.2;
    margin: 0 0 70px;
  }


  /* 4つの丸をなるべく1画面に収めるために少し詰める */
  .experience_exp{
    min-height: 100vh;
  }


  /* min15 PC */
  .min15{
    margin-top: 100px;
    padding: 120px 60px 130px;
    background: #FDD9D9;
    border-top-left-radius: 700px 220px;
    border-top-right-radius: 700px 220px;
  }

  .min15_inner{
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
  }

  .min15 h2{
    font-size: 2.8rem;
    margin-bottom: 20px;
  }

  .min15_sub{
    font-size: 2rem;
    margin-bottom: 60px;
  }

  .min15_inner img{
    width: 48%;
    max-width: 520px;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.14);
  }

  .min15_inner{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }

  .min15 h2,
  .min15_sub{
    width: 100%;
  }

  .min15_text{
    width: 46%;
    text-align: left;
    margin-top: 0;
  }

  .min15_text p{
    font-size: 1.15rem;
    line-height: 2;
    margin: 0 0 18px;
  }
}


/*news*/
.news_exp{
  max-width: 600px;
  margin: 0 auto;
  padding: 80px 60px 0 60px;
}
.news_exp ul{
  list-style: none;
  margin: 0;
  padding: 0;
}
.news_exp li{
  margin: 0;
  padding: 0;
  border: none;
}
.news_item2{
  display: flex;
  padding: 20px 0;
  gap: 16px;
  border-bottom: 1px solid #dddddd;
  color: #333;
  cursor: pointer;
  transition: transform .2s ease;
}
.news_exp li:last-child .news_item2{
  border-bottom: none;
}
.news_item2:hover{
  opacity: 0.8;
}
.news_img{
  width: 130px;
  height: 130px;
  flex-shrink: 0;
}
.news_img img{
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;;
  object-fit: cover;
  display: block;
  transition: transform .25s ease, filter .25s ease;
}
.news_exp .news_item2:hover img{
    transform: scale(1.06);
    filter: brightness(.95);
}
.news-text{
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.news_title{
  font-size: 0.9rem;
  margin: 8px 0 4px;
}
.news_category{
  display: inline-block;
  font-size: 0.7rem;
  padding: 4px 10px;
  background: #f3d88b;
  border-radius: 20px;
}
.news_category.menu{
  background: #f2a7a7;
}
.news_date{
  font-size: 0.7rem;
  margin-top: 18px;
  color: #888;
}
.pager{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}
.pager_btn{
  text-decoration: none;
  color: #555;
  border: 1px solid #aaa;
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 0.85rem;
}
.pager_num{
  font-size: 0.9rem;
}

/* news PC */
@media screen and (min-width: 768px){
.news_exp{
  max-width: 980px;
  margin: 0 auto;
  padding: 80px 40px 0;
}

.news_exp ul{
  list-style: none;
  margin: 0;
  padding: 0;
}

.news_exp li{
  width: 100%;
  margin: 0;
  padding: 0;
}

.news_item2{
  display: grid;
  grid-template-columns: 160px 1fr;
  column-gap: 40px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid #dddddd;
  color: #333;
  text-decoration: none;
  box-sizing: border-box;
}

.news_img{
  width: 160px;
  height: 160px;
  margin: 0;
  justify-self: start;
  overflow: cover;
}

.news_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news_text{
  width: 100%;
}
.news_item2{
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid #dddddd;
  color: #333;
  cursor: pointer;
  transition: transform .2s ease, opacity .2s ease;
}
.news_exp li:last-child .news_item2{
  border-bottom: none;
}
.news_item2:hover{
  opacity: 0.85;
}
.news_img{
  width: 180px;
  height: 180px;
  flex-shrink: 0;
}
.news_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .25s ease, filter .25s ease;
}
.news_item2:hover img{
  transform: scale(1.04);
  filter: brightness(.96);
}
.news-text{
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.news_category{
  display: inline-block;
  width: fit-content;
  font-size: 0.78rem;
  padding: 5px 12px;
  border-radius: 20px;
}
.news_title{
  font-size: 1.15rem;
  margin: 12px 0 8px;
  line-height: 1.8;
}
.news_date{
  font-size: 0.85rem;
  margin-top: 10px;
  color: #888;
}
.pager{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 56px;
  margin-bottom: 60px;
}
}
/*night column*/
.night_column{
  background: #093D7A;
  color: #D4D4D4;
  padding-bottom: 120px;
}
.night_column .light{
  width: 100%;
  display: block;
  height: auto;
}
.night_opendoor{
  display: block;
  margin: 70px auto 40px auto;
}
.night_column h1{
  margin-top: 40px;
}
.nightcolumn_copy{
  text-align: center;
  margin-bottom: 8px;
  font-size: 0.9rem;
}
.nightcolumn_lead{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 0.9rem;
}
.nightcolumn_lead::before,
.nightcolumn_lead::after{
  content:"";
  width: 60px;
  height: 1px;
  background: #FFFFFF;
}
.nightcolumn_menu{
  position: relative;
  border: 1px solid #d5d5d5;
  padding: 40px 10px 100px;
  margin: 100px 60px 20px;
  text-align: center;
}
.night_toc{
  font-size: 1.3rem;
}
.nightcolumn_menu ul{
  width: fit-content;
  margin: 24px auto 0;
  padding-left: 20px;
}
.nightcolumn_menu li{
  list-style: disc;
  text-align: left;
  font-size: 1rem;
  line-height: 2.3;
  margin-bottom: 6px;
}
.small_door{
  position: absolute;
  right: 10px;
  bottom: 12px;
  width: 70px;
}
.small_door:hover{
  transform: scale(1.05);
}

/*night column pc*/
.nightcolumn_lead{
  font-size: 1.15rem;
}
.nightcolumn_menu{
  max-width: 700px;
  margin: 80px auto;
  position: relative;
  border: 1px solid #d5d5d5;
  padding: 40px 100px;
  text-align: center;
}
.small_door{
  width: 100px;
}

/*contact*/
.contact_exp{
  max-width: 600px;
  margin: 0 auto;
  padding: 80px 32px 100px;
}
.contact_form{
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.form_group{
  display: flex;
  flex-direction: column;
}
.form_gruop label{
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: #333;
}
.form_group input,
.form_group textarea{
  width: 100%;
  border: none;
  background: #e9edf2;
  padding: 15px 15px;
  font-size: 1rem;
  box-sizing: border-box;
}
.form_group input{
  height: 56px;
}
.form_group textarea{
  min-height: 220px;
  resize: vertical;
}

.contact_check{
  margin-top: 20px;
  font-size: 0.95rem;
  line-height: 1.8;
}
.contact_check label{
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.contact_check input{
  margin-top: 7px;
}
.contact_submit_btn{
  display: block;
  margin: 36px auto 0;
  border: none;
   border-radius: 20px;
  padding: 12px 50px;
  color: #333;
  font-size: 0.95rem;
  background: #d5d5d5;
  cursor: pointer;
}
.contact_btn:hover{
  opacity: 0.8;
}

/*footer*/
footer{
  padding: 40px 30px 20px;
  background-color: #ffd967;
}
footer .container{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
footer img{
  width: 60px;
  height: auto;
}
footer small{
  color: #7b7a7a;
  font-size: 0.6rem;
}

/* =========================
   PC footer
========================= */
@media screen and (min-width: 768px) {
  .footer{
    display: none;
    margin-top: 0;
  }
  .pc_footer {
    display: block;
    background: #ffd967;
    margin-top: 0;
    padding: 64px 64px 28px;
  }

  .footer_inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 220px 1fr 320px;
    gap: 56px;
    align-items: start;
  }

  .footer_logo img {
    width: 150px;
    height: auto;
    display: block;
  }

  .footer_nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 80px;
    padding-top: 16px;
  }

  .footer_nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .footer_nav li + li {
    margin-top: 22px;
  }

  .footer_nav a {
    text-decoration: none;
    color: #222;
    font-size: 1.2rem;
  }

  .footer_nav a:hover {
    opacity: 0.7;
  }

  .footer_info {
    padding-top: 6px;
    color: #222;
  }

  .footer_open {
    margin: 0 0 10px;
    font-size: 1.1rem;
  }

  .footer_time {
    margin: 0 0 52px;
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .footer_address {
    margin-bottom: 38px;
  }

  .footer_address p,
  .footer_contact p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.9;
  }

  .footer_bottom {
    max-width: 1300px;
    margin: 60px auto 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 56px;
  }

  .footer_bottom p,
  .footer_bottom small {
    margin: 0;
    color: #777;
    font-size: 0.95rem;
  }
  .footer_bottom a {
    color: #777;
    text-decoration: none;
  }

  .footer_bottom a:hover {
    opacity: 0.7;
  }
  
  .footer .container {
    display: none;
  }
}

/*PC版共通*/
@media screen and (min-width: 768px){

  body{
    font-size: 16px;
  }

  h1{
    font-size: 3rem;
    font-weight: 400;
    margin: 60px auto 40px;
  }

  h2{
    font-size: 2rem;
  }

  h3{
    font-size: 1.4rem;
  }

  p{
    font-size: 1rem;
    line-height: 2;
  }

  .container{
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
  }

  .section{
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .header_inner{
    padding: 20px 40px;
  }

  .logo img{
    width: 80px;
  }
  .hcontact_btn{
    display: inline-block;
  }

.hero{
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2f3138;
  overflow: hidden;
}

.hero__media{
  position: relative;
  width: min(100%, 760px);
  height: 560px;
  margin: 0 auto;
}

.hero_img,
.hero_img1,
.hero_img2{
  position: absolute;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%);
  width: min(100%, 480px);
  height: auto;
  max-width: none;
  object-fit: contain;
}

  #about{
    text-align: center;

  }

  #about .container{
    max-width: 760px;
  }

  .maru{
    width: 240px;
    height: 240px;
    margin: 0 auto 40px;
  }

  #about p{
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.2rem;
    padding-bottom: 0;
  }


  #news .news_list{
    max-width: 900px;
    margin: 0 auto 40px;
  }

  #news .news_item{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 0;
  }

  #news .news_thumb,
  #news .news_thumb_logo{
    width: 140px;
    height: 140px;
    flex-shrink: 0;
    overflow: hidden;
  }

  #news .news_thumb img,
  #news .news_thumb_logo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  #news .news_text{
    font-size: 1.1rem;
  }

  #night .night_grid{
    max-width: 900px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
  }

  #night .night_card{
    width: 100%;
  }

  #night .night_card--round{
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
  }
  #night .night_card--round p{
    font-size: 1.1rem;
    line-height: 1.8;
  }
  #night .night_card--img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  #contact .sns_icon{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
    margin-top: 50px;
  }

  #contact .insta,
  #contact .x{
    width: 220px;
    text-align: center;
  }

  #contact .sns{
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #contact .contact_text{
    max-width: 220px;
    margin: 0 auto;
  }

  #info .access{
    max-width: 900px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 48px;
    align-items: start;
  }

  #info .address{
    text-align: left;
  }

  #info .map{
    width: 100%;
    max-width: 480px;
    height: 320px;
    margin-left: auto;
    background: #efb6b6;
  }
}

@media screen and (max-width: 767px){
  .hero_img1{
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }

  .hero_img2{
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    transform: none !important;
  }

  .hero{
    background: #3a3e44 !important;
  }
}@media(max-width: 360px){
    html{
    font-size: 16px;
}
}
:root{ 
    --about: #CEF0FF;
    --news: #FFD9CE;
    --night: #F4F0E9;
    --contact: #FBF3D6;
    --info: #FFFFFF;
}
*{
    box-sizing: border-box;
}
html{
  scroll-behavior: smooth;
}
body{
    margin: 0;
    font-family: "Shippori Mincho", serif;
}
a{
    text-decoration: none;
    color: inherit;
}
h1{
    font-size: 2rem;
    text-align: center;
    margin: 0 0 40px 0;
}
h3{
    font-size:1rem;
}
p{
    font-size: 0.8rem;
}
li{
  list-style-type: none;
}
/*header*/
.header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1200;
  background: #f5f5f5;
}
.header_inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
}
.logo{
  display: inline-flex;
  align-items: center;
}
.logo img{
  width: 60px;
  height: auto;
  display: block;
}

/* =========================
   header / footer base
========================= */

.pc_nav,
.hcontact_btn,
.pc_footer {
  display: none;
}
/* =========================
   PC header
========================= */
@media screen and (min-width: 768px) {
  .header_inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 32px 40px 24px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
  }
  .logo img {
    width: 170px;
    height: auto;
    display: block;
  }
  .pc_nav {
    display: block;
    margin-top: 18px;
    flex: 1;
  }
  .pc_nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 54px;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .pc_nav a {
    font-size: 1.2rem;
    color: #222;
    text-decoration: none;
  }
  .pc_nav a:hover {
    opacity: 0.7;
  }
  .hcontact_btn {
    display: inline-block;
  padding: 16px 40px;
  border-radius: 999px;
  background: #ffd967;
  color: rgba(0,0,0,.7);
  text-decoration: none;
  font-size: 1.2rem;
  box-shadow: 0 6px 14px rgba(0,0,0,.08);
  }
  
  .hcontact_btn:hover {
    opacity: 0.8;
  }
  .menubtn {
    display: none;
  }
}

/*humburger開く*/
.drawer{
position: fixed;
top: 0;
right: -100%;
width: 100%;
height: 100vh;
background: #eaf7f7;
box-shadow: 0 8px 30px rgba(0,0,0,0.08);
transition: .5s;
z-index: 1000;
}
.drawer.active{
right: 0;
}
.drawer_inner{
padding: 120px 60px 40px;
}
.drawer_menu{
list-style: none;
}
.drawer_menu li{
margin-bottom: 16px;
opacity: 0;
transform: translateY(10px);
transition: 1.2s;
}
.drawer.active .drawer_menu li{
  opacity: 1;
  transform: translateY(0);
}
.drawer_menu a{
font-size: 1.6rem;
color: #333;
text-decoration: none;
}

/*humburger閉じる*/
.menubtn{
  width: 40px;
  height: 40px;
  position: relative;
  border: none;
  background-color: #f5f5f5;
  z-index: 1300;
}
.menubtn span{
position: absolute;
width: 24px;
height: 2px;
background: #333;
left: 8px;
transition: .3s;
}
.menubtn span:nth-child(1){
top: 12px;
}
.menubtn span:nth-child(2){
top: 20px;
}
.menubtn span:nth-child(3){
top: 28px;
}
.menubtn.active span:nth-child(1){
top: 20px;
transform: rotate(45deg);
}
.menubtn.active span:nth-child(2){
opacity: 0;
}
.menubtn.active span:nth-child(3){
top: 20px;
transform: rotate(-45deg);
}

.drawer_address{
margin-top:60px;
font-size:0.9rem;
line-height:1.5;
color:#555;
}
.drawer_address a{
text-decoration:none;
color:#555;
}
.privacy{
margin-top:20px;
font-size:0.8rem;
color:#777;
font-family:"Noto Sans JP",sans-serif; 
}

/*main*/
main{
  padding-top: 76px;
}

/* hero */
.hero{
  height:100vh;
  background:#2c2f34;
  display:flex;
  justify-content:center;
  align-items:center;
  overflow:hidden;
  transition: 1.2s ease;
  position: relative;
}

/* 画像を重ねる */
.hero__media{
  position:relative;
  width: 260px;
  height: 320px;
}

/* 共通 */
.hero_img{
  position:absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
/* 最初は閉じドア */
.hero_img1{
  opacity:1;
  visibility: visible;
  transition: opacity 1.2s ease, visibility 0s linear 1.2s;
}
/* 開きドアは隠す */
.hero_img2{
  opacity:0;
  visibility: hidden;
  transition: opacity 1.2s ease, visibility 0s linear 1.2s;
  transform: scale(1.01);
}
/* 切り替え */
.hero.is-show{
  background: #3a3e44;
}
.hero.is-show .hero_img1{
  opacity:0;
  visibility: hidden;
}
.hero.is-show .hero_img2{
  opacity:1;
  filter:
    drop-shadow(0 0 30px rgba(255,240,180,0.9))
    drop-shadow(0 0 90px rgba(255,240,180,0.6))
    drop-shadow(0 0 160px rgba(255,240,180,0.35))
    drop-shadow(0 0 300px rgba(255,240,180,0.2));
}
.hero_catch{
  position: absolute;
  left: 50%;
  top: 62%;
  transform: translate(-50%, 20px);
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: #f4e7b8;
  opacity: 0;
  transition: 1.5s ease;
  white-space: nowrap;
}

.hero.is-show .hero_catch{
  opacity: 0.85;
  transform: translate(-50%, 0);
}

@media screen and (max-width: 767px){
  .hero_catch{
    top: 58%;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
  }
}

/*about*/
#about{
    text-align: center;
    padding: 100px 20px 80px;
    background: linear-gradient(
        to bottom,
        var(--about) 0%,var(--about) 80%,var(--news) 100%);
}
#about p{
    text-align: center;
    line-height: 2.2;
    margin: 28px 0 0;
    font-size:0.9rem;
}
.maru{
    width: 200px;
    margin: 0 auto;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: #FFFFD3;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 8px 20px 40px rgba(0,0,0,0.15),
                4px 6px 10px rgba(0,0,0,0.08);
}
#about .maru p{
    font-size: 1.2rem;
    line-height: 2.4;
    text-align:left;
    transform: translateY(-12px);
}
#about .point{
    display: inline-block;
    margin: 40px auto 0;
    padding: 10px 20px;
    background-color: #0f3ea8;
    border-radius: 30px;
    font-size: 1.2rem;
    text-decoration: none;
    color: #FFFFFF;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
}
  #about .point:hover{
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}
  #about .point:active{
  transform: translateY(0);
  box-shadow: 0 4px 8px rgba(0,0,0,0.12);
}

/*news*/
#news{
    text-align: center;
    padding: 90px 70px 90px 70px;
    background: var(--news);
    background: linear-gradient(
        to bottom,
        var(--news) 0%,var(--news) 80%,var(--night) 100%);
}
.news_list{
    list-style: none;
    padding: 0;
    margin: 0;
}
.news_list .news_item{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 0;
    border-top: 1px solid rgba(0,0,0,0.15);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: transform .2s ease;
}
.news_list .news_item:last-child{
    border-bottom: 1px solid rgba(0,0,0,0.15);
}
.news_list .news_item:hover img{
    transform: scale(1.06);
    filter: brightness(.95);
}
.news_thumb{
    width: 100px;
    height: 100px;
    overflow: hidden;
    flex: 0 0 auto;
    padding: 0;
}
.news_thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .25s ease, filter .25s ease;
}
.news_thumb_logo{
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255,255,255,0.6);
}
.news_thumb_logo img{
    width: 90px;
    height: auto;
    object-fit: contain;
    padding: 14px;
    box-sizing: border-box;
    transition: transform .25s ease, filter .25s ease;
}
.news_text{
    font-size: 0.8rem;
    margin: 0;
}
#news .read_btn{
    display: inline-block;
    margin: 40px auto 0;
    padding: 10px 20px;
    background-color: #FF8282;
    border-radius: 30px;
    font-size: 1.2rem;
    text-decoration: none;
    color: #FFFFFF;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
}
.read_btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}
.read_btn:active{
  transform: translateY(0);
  box-shadow: 0 4px 8px rgba(0,0,0,0.12);
}

/*night*/
#night{
  text-align: center;    
  padding: 110px 80px;
  background: var(--night);
  background: linear-gradient(
        to bottom,
        var(--night) 0%,var(--night) 80%,var(--contact) 100%);
}
.night_grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 30px;
  align-items: end;
  max-width: 520px;
  margin: 0 auto;
}
#night h1{
  padding-bottom: 40px;
}
#night p{
    line-height: 1.8;
    max-width: 12em;
    margin: 0 auto;
}
.night_card{
  display: block;
  min-height: 240px;
  text-decoration: none;
  color: inherit;
  background: rgba(255,255,255,0.55);
  overflow: hidden; 
  transition: transform .2s ease, filter .2s ease;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(6px);
  cursor: pointer;
}


.night_card--round:hover{
  transform: translateY(-2px);
  filter: brightness(.98);
}
.night_card--round{
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  padding: 40px 30px;
}
.night_card--img{
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.night_card--img img{
  width: 100%;
  height:100%;
  object-fit: cover;
}

/* スマホ */
@media (max-width: 480px){
  #night{ padding: 80px 22px; }
  .night_grid{ max-width: 100%; gap: 16px; }
  .night_card{ min-height: 160px; }
}

/*contact*/
#contact{
  text-align: center;    
  padding: 100px 24px;
  background: linear-gradient(
    to bottom,
    var(--contact) 0%,
    var(--contact) 80%,
    var(--info) 100%
  );  
}

#contact h1{
  margin-bottom: 50px;
}

.sns_icon{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 520px;
  margin: 0 auto 40px;
  justify-items: center;
}

.insta,
.x{
  text-align: center;
}

.sns{
  width: 120px;
  height: 120px;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}

.sns img,
.sns_x{
  width: 60px;
  height: auto;
  object-fit: contain;
  display: block;
}

.contact_text{
  max-width: 140px;
  margin: 20px auto 0;
  line-height: 1.8;
}

.contact_btn{
  display: inline-block;
  padding: 16px 40px;
  border-radius: 999px;
  background: #ffd967;
  color: rgba(0,0,0,.7);
  text-decoration: none;
  font-size: 1.2rem;
  box-shadow: 0 6px 14px rgba(0,0,0,.08);
}

.contact_btn:active{
  transform: translateY(1px);
}
@media (max-width: 480px){
  #contact{
    padding: 80px 24px;
  }

  #contact h1{
    margin-bottom: 40px;
  }

  .sns_icon{
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 100%;
  }

  .sns{
    width: 110px;
    height: 110px;
  }

  .sns img,
  .sns_x{
    width: 56px;
  }

  .contact_text{
    max-width: 220px;
    margin: 16px auto 0;
  }

  .contact_btn{
    padding: 14px 32px;
    font-size: 1rem;
  }
}

/*info*/
#info{
  text-align: center;
  padding: 100px 70px;
  margin-bottom: 100px;
  font-family: "Noto Sans Jp", sans-serif;
}
#info h1{
  font-family: "Shippori Mincho", serif;
}
.info_text{
  font-size: 0.8rem;
  padding-bottom: 20px;
}
.access{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}
.address{
    font-style: normal;
    line-height: 1.8;
}
.map{
  margin: 0;
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid #111111;
  display: grid;
  place-items: center;
  background: rgba(235, 21, 21, 0.3);
}

@media (max-width: 480px){
  .access{ grid-template-columns: 1fr; }
  .map_dummy{ aspect-ratio: 16/10; }
}




/*aboutページ*/
.about_exp{
   max-width: 600px;
   margin: 0 auto;
   padding: 80px 35px 50px 35px;
   background-color: #CEF0FF;
}
.about h1{
   margin-bottom: 40px;
}
.byakuya_img{
  display: block;
   margin:0 auto 48px;
   width: 100%;
   max-width: 480px;
   height: auto;
   border-radius: 12px;
}
.about_catch{
  font-size: 1.3rem;
  line-height: 1.8;
  text-align: center;
  margin: 64px 0 64px;
  font-weight: 400;
}
.about_detail{
  margin-top: 40px;
  font-size: 1rem;
  line-height: 2.1;
  margin: 50px 0 20px 0;
}
.about p{
  text-align: center;
  font-size: 0.9rem;
  line-height: 2.1;
  margin: 0 0 0 14px;
  padding: 0 30px;
}
.about_end{
  font-size: 1rem;
  margin-top: 50px;
  line-height: 2.2;
  text-align: center;
}
.about_img{
  max-width: 600px;
  margin: 0 auto;
  padding: 24px 24px 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.about_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo{
  width: 100%;
  display: block;
  object-fit: cover;
}

.photo_large{
  grid-column: 1 / 3;
  aspect-ratio: 16 / 10;
}

.photo_small{
  aspect-ratio: 1 / 1;
}

/*about pc*/
@media screen and (min-width: 768px){
  .about_exp{
    max-width: 1100px;
    margin: 0 auto;
    padding: 120px 40px;
  }
  .about_box{
    max-width: 720px;
    margin: 0 auto;
  }
  .byakuya_img{
    display: block;
    width: 100%;
    max-width: 1000px;
    height: 420px;
    object-fit: cover;
    margin: 95px auto 70px;
  }
  .about_catch{
    font-size: 1.6rem;
    margin-top: 120px;
    margin-bottom: 40px;
  }
  .about_detail{
    font-size: 1.7rem;
    margin-top: 100px;
    margin-bottom: 40px;
  }
  .about_text p{
    font-size: 1.3rem;
    line-height: 2;
    margin-top: 30px;
  }
  .about_text p.about_end{
    font-size: 1.5rem;
    padding-top: 90px;
    line-height: 2.2;
    text-align: center;
  }
  .about_img{
    padding: 120px 0 140px;
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .photo{
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: 0;
  }
  .photo_large{
    grid-column: span 2;
  }
  .photo_small{
    grid-column: span 1;
  }
}


/*menu*/
.menu_exp{
  max-width: 600px;
  margin: 0 auto;
  padding: 80px 60px 50px 60px;
}
.menu_nav{
  background: #eeeeee;
  width: 260px;
  aspect-ratio: 1/1;
  padding: 32px 20px;
  max-width: 500px;
  margin: 40px auto;
}
.menu_nav ul{
  text-align: center;
  margin: 0;
  padding: 0;
}
.menu_nav li{
  margin: 20px 0;
  font-size: 1.1rem;
}
.menu_nav .night{
  font-size: 0.95rem;
  margin-top: 28px;
}
.menu_title{
  font-size: 1.4rem;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  scroll-margin-top: 100px;
}
.menu_title::after{
  content: "";
  flex: 1;
  height: 1px;
  background: #333;
}
.menu_text{
  line-height: 2;
  font-size: 0.9rem;
  margin-bottom: 48px;
}
.menu_item{
  text-align: center;
  margin-bottom: 60px;
}
.menu_item img{
  width: 200px;
  height: auto;
  margin: 0 auto 16px;
  display: block;
}
.menu_name{
  font-size: 0.85rem;
  font-family: "Noto Sans JP",sans-serif;
}
.menu_price{
  font-family: "Playfair Display",serif;
  color: #222;
}
.and{
  text-align: right;
  font-size: 0.9rem;
}
.menu_drink{
  font-size: 1rem;
  margin-top: -20px;
  color: #4d4d4d;
}

/* night menu */
.nightmenu{
  background-color: #0f3ea8;
  color: #eae7e7;
  padding: 90px 24px 120px;
  overflow: hidden;
}

.nightmenu_title{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.5rem;
  margin-bottom: 48px;
}

.nightmenu_title::before,
.nightmenu_title::after{
  content: "";
  width: 80px;
  height: 1px;
  background: #eae7e7;
}

.nightmenu_lead{
  text-align: center;
  line-height: 2.2;
  margin-bottom: 72px;
  font-size: 1rem;
}

.nightmenu_item{
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 72px;
}

.nightmenu_item.right{
  flex-direction: row;
}

.nightmenu_item.left{
  flex-direction: row-reverse;
}

.nightmenu_photo{
  width: 260px;
  height: 320px;
  background: #f7f6f2;
  overflow: hidden;
  border-radius: 130px;
  flex-shrink: 0;
}

.nightmenu_photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nightmenu_item.right .nightmenu_text{
  text-align: right;
}

.nightmenu_item.left .nightmenu_text{
  text-align: left;
}

.nightmenu_text{
  max-width: 220px;
}

.nightmenu_name{
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.nightmenu_tag{
  font-size: 0.95rem;
  opacity: 0.95;
}

.night_desc{
  margin-top: 18px;
  line-height: 2;
  font-size: 0.9rem;
}

.night_drink{
  text-align: center;
  margin-top: 30px;
}

.night_drink img{
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  margin: 0 auto;
  background: #fff;
  padding: 24px;
}

.night_drink_text{
  padding: 28px 20px 0;
  text-align: center;
  line-height: 2;
  font-size: 0.95rem;
}

/*menu pc*/
@media screen and (min-width: 768px){

  .menu_exp{
    max-width: 1000px;
    margin: 0 auto;
    padding: 110px 40px 90px;
  }
  .menu_nav{
    width: 410px;
    aspect-ratio: auto;
    max-width: 100%;
    padding: 70px 42px;
    margin: 55px auto 90px;
    background: #eeeeee;
  }
  .menu_nav ul{
    margin: 0;
    padding: 0;
    text-align: center;
  }
  .menu_nav li{
    margin: 0 0 26px;
    font-size: 1.3rem;
    list-style: none;
  }
  .menu_nav li:last-child{
    margin-bottom: 0;
  }
  .menu_nav .night{
    margin-top: 34px;
    font-size: 0.98rem;
  }
  .menu_nav a{
    color: #222;
    text-decoration: none;
  }
  .menu_title{
    font-size: 2.1rem;
    margin: 0 0 34px;
    display: flex;
    align-items: center;
    gap: 28px;
    scroll-margin-top: 140px;
  }
  .menu_title::after{
    content: "";
    flex: 1;
    height: 1px;
    background: #333;
  }
  .menu_text{
    font-size: 1.1rem;
    line-height: 2;
    margin: 0 0 58px;
  }
  .menu_drink{
    font-size: 1.2rem;
    margin-top: 26px;
    color: #4d4d4d;
  }
  .menu_items{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 36px;
    margin-top: 50px;
  }
  .menu_item{
    text-align: center;
    margin-bottom: 0;
  }
  .menu_item img{
    width: 100%;
    max-width: 220px;
    height: 180px;
    object-fit: contain;
    display: block;
    margin: 0 auto 18px;
  }
  .menu_name{
    font-size: 1rem;
    line-height: 1.8;
    font-family: "Noto Sans JP", sans-serif;
    margin: 0 0 14px;
  }
  .menu_price{
    font-family: "Playfair Display", serif;
    color: #222;
    font-size: 1rem;
    margin: 0;
  }
  .and{
    text-align: right;
    font-size: 0.95rem;
    margin-top: 22px;
  }
}

  /*night menu pc*/
@media screen and (min-width: 768px){

  .nightmenu{
    width: 100%;
    margin: 140px 0 0;
    padding: 120px 80px 140px;
  }
  .nightmenu_title{
    gap: 24px;
    font-size: 2.2rem;
    margin-bottom: 32px;
  }
  .nightmenu_title::before,
  .nightmenu_title::after{
    width: 180px;
  }
  .nightmenu_lead{
    font-size: 1.15rem;
    line-height: 2.3;
    margin-bottom: 60px;
  }
  .nightmenu_item{
    justify-content: center;
    gap: 70px;
    margin-bottom: 100px;
  }
  .nightmenu_photo{
    width: 320px;
    height: 400px;
    border-radius: 160px;
  }
  .nightmenu_text{
    max-width: 300px;
  }
  .nightmenu_name{
    font-size: 1.9rem;
    margin-bottom: 16px;
  }
  .nightmenu_tag{
    font-size: 1.15rem;
  }
  .night_desc{
    margin-top: 1px;
    font-size: 1.05rem;
  }
  .night_drink{
    margin-top: 20px;
  }
  .night_drink img{
    max-width: 620px;
    padding: 36px 44px;
  }
  .night_drink_text{
    padding-top: 44px;
    font-size: 1.2rem;
    line-height: 2.3;
  }
}


  /* 各ブロック間の余白 */
  #food{
    margin-top: 0;
  }

  #dessert{
    margin-top: 120px;
  }

  #drink{
    margin-top: 120px;
  }

  /* Drinkの下の余白 */
  .menu_exp > .menu_drink{
    margin-bottom: 110px;
    display: block;
  }



/*experience*/
.experience_exp{
  max-width: 600px;
  margin: 0 auto;
  padding: 80px 60px 50px 60px;
}
.experience_icon{
  display: grid;
  grid-template-columns: repeat(2,140px);
  justify-content: center;
  gap: 16px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}
.experience_icon a{
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}
.experience_icon a:hover{
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.10);
}
.experience_icon a:active{
  transform: translateY(-2px);
}
.experience_icon a:focus-visible{
  outline: 2px solid #222;
  outline-offset: 4px;
}
.experience_icon li{
  width: 120px;
  height: 120px;
  background-color: #FD997F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.experience_center{
  text-align: center;
  margin: 12px 0;
  padding: 0;
  font-size: 1.4rem;
  transform: translateX(-6px);
}
.experience_text{
  margin:60px 20px;
}
.experience_sub{
  font-size: 1.4rem;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  scroll-margin-top: 100px;
}
.experience_sub::after{
  content: "";
  flex: 1;
  height: 1px;
  background: #333;
}
.experience_text p{
  line-height: 2;
  font-size: 0.9rem;
  margin-bottom: 48px;
}

.min15{
  background: #FFD9D9;
  margin-top: 80px;
  padding: 90px 24px 100px;
  border-top-left-radius: 500px 200px;
  border-top-right-radius: 500px 200px;
}
.min15_inner{
  position: relative;
  z-index: 1;
  max-width: 420px;
  margin: 20px auto 0 auto;
  text-align: center;
  transition: 1s;
}
.min15_inner:hover{
  transform: translateY(-10px);
}
.min15 h2{
  font-size: 1.6rem;
  margin-top: 10px;
  margin-bottom: 24px;
  color: #626262;
}
.min15_sub{
  margin-bottom: 32px;
  font-size: 1rem;
  color: #353434;
}
.min15 img{
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
  margin: 0 auto 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.min15_text{
  max-width: 340px;
  margin: 0 auto;
  text-align: left;
  color: #353434;
}
.min15_text p{
  line-height: 2.2;
  font-size: 0.95rem;
  margin:0 10px 14px;
}

/* experience PC */
@media screen and (min-width: 768px){

  .experience_exp{
    max-width: 1100px;
    margin: 0 auto;
    padding: 120px 40px 100px;
  }

  .experience_exp h1{
    text-align: center;
    font-size: 3rem;
    margin-bottom: 70px;
  }

  /* 上2つ */
  .experience_exp > .experience_icon:nth-of-type(1){
    display: flex;
    justify-content: center;
    gap: 140px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  /* 下2つ */
  .experience_exp > .experience_icon:nth-of-type(2){
    display: flex;
    justify-content: center;
    gap: 140px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .experience_icon li{
    width: 180px;
    height: 180px;
    background-color: #FD997F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .experience_icon li a{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #222;
    font-size: 1.7rem;
    font-weight: 400;
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
  }

  .experience_icon li a:hover{
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
  }

  .experience_center{
    text-align: center;
    font-size: 2.2rem;
    margin: 24px 0;
    line-height: 1;
  }

  .experience_text{
    max-width: 820px;
    margin: 80px auto 0;
  }

  .experience_sub{
    font-size: 2rem;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    scroll-margin-top: 120px;
  }

  .experience_sub::after{
    content: "";
    flex: 1;
    height: 1px;
    background: #333;
  }

  .experience_text p{
    font-size: 1.1rem;
    line-height: 2.2;
    margin: 0 0 70px;
  }


  /* 4つの丸をなるべく1画面に収めるために少し詰める */
  .experience_exp{
    min-height: 100vh;
  }


  /* min15 PC */
  .min15{
    margin-top: 100px;
    padding: 120px 60px 130px;
    background: #FDD9D9;
    border-top-left-radius: 700px 220px;
    border-top-right-radius: 700px 220px;
  }

  .min15_inner{
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
  }

  .min15 h2{
    font-size: 2.8rem;
    margin-bottom: 20px;
  }

  .min15_sub{
    font-size: 2rem;
    margin-bottom: 60px;
  }

  .min15_inner img{
    width: 48%;
    max-width: 520px;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.14);
  }

  .min15_inner{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }

  .min15 h2,
  .min15_sub{
    width: 100%;
  }

  .min15_text{
    width: 46%;
    text-align: left;
    margin-top: 0;
  }

  .min15_text p{
    font-size: 1.15rem;
    line-height: 2;
    margin: 0 0 18px;
  }
}


/*news*/
.news_exp{
  max-width: 600px;
  margin: 0 auto;
  padding: 80px 60px 0 60px;
}
.news_exp ul{
  list-style: none;
  margin: 0;
  padding: 0;
}
.news_exp li{
  margin: 0;
  padding: 0;
  border: none;
}
.news_item2{
  display: flex;
  padding: 20px 0;
  gap: 16px;
  border-bottom: 1px solid #dddddd;
  color: #333;
  cursor: pointer;
  transition: transform .2s ease;
}
.news_exp li:last-child .news_item2{
  border-bottom: none;
}
.news_item2:hover{
  opacity: 0.8;
}
.news_img{
  width: 130px;
  height: 130px;
  flex-shrink: 0;
}
.news_img img{
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;;
  object-fit: cover;
  display: block;
  transition: transform .25s ease, filter .25s ease;
}
.news_exp .news_item2:hover img{
    transform: scale(1.06);
    filter: brightness(.95);
}
.news-text{
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.news_title{
  font-size: 0.9rem;
  margin: 8px 0 4px;
}
.news_category{
  display: inline-block;
  font-size: 0.7rem;
  padding: 4px 10px;
  background: #f3d88b;
  border-radius: 20px;
}
.news_category.menu{
  background: #f2a7a7;
}
.news_date{
  font-size: 0.7rem;
  margin-top: 18px;
  color: #888;
}
.pager{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}
.pager_btn{
  text-decoration: none;
  color: #555;
  border: 1px solid #aaa;
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 0.85rem;
}
.pager_num{
  font-size: 0.9rem;
}

/* news PC */
@media screen and (min-width: 768px){
.news_exp{
  max-width: 980px;
  margin: 0 auto;
  padding: 80px 40px 0;
}

.news_exp ul{
  list-style: none;
  margin: 0;
  padding: 0;
}

.news_exp li{
  width: 100%;
  margin: 0;
  padding: 0;
}

.news_item2{
  display: grid;
  grid-template-columns: 160px 1fr;
  column-gap: 40px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid #dddddd;
  color: #333;
  text-decoration: none;
  box-sizing: border-box;
}

.news_img{
  width: 160px;
  height: 160px;
  margin: 0;
  justify-self: start;
  overflow: cover;
}

.news_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news_text{
  width: 100%;
}
.news_item2{
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid #dddddd;
  color: #333;
  cursor: pointer;
  transition: transform .2s ease, opacity .2s ease;
}
.news_exp li:last-child .news_item2{
  border-bottom: none;
}
.news_item2:hover{
  opacity: 0.85;
}
.news_img{
  width: 180px;
  height: 180px;
  flex-shrink: 0;
}
.news_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .25s ease, filter .25s ease;
}
.news_item2:hover img{
  transform: scale(1.04);
  filter: brightness(.96);
}
.news-text{
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.news_category{
  display: inline-block;
  width: fit-content;
  font-size: 0.78rem;
  padding: 5px 12px;
  border-radius: 20px;
}
.news_title{
  font-size: 1.15rem;
  margin: 12px 0 8px;
  line-height: 1.8;
}
.news_date{
  font-size: 0.85rem;
  margin-top: 10px;
  color: #888;
}
.pager{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 56px;
  margin-bottom: 60px;
}
}
/*night column*/
.night_column{
  background: #093D7A;
  color: #D4D4D4;
  padding-bottom: 120px;
}
.night_column .light{
  width: 100%;
  display: block;
  height: auto;
}
.night_opendoor{
  display: block;
  margin: 70px auto 40px auto;
}
.night_column h1{
  margin-top: 40px;
}
.nightcolumn_copy{
  text-align: center;
  margin-bottom: 8px;
  font-size: 0.9rem;
}
.nightcolumn_lead{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 0.9rem;
}
.nightcolumn_lead::before,
.nightcolumn_lead::after{
  content:"";
  width: 60px;
  height: 1px;
  background: #FFFFFF;
}
.nightcolumn_menu{
  position: relative;
  border: 1px solid #d5d5d5;
  padding: 40px 10px 100px;
  margin: 100px 60px 20px;
  text-align: center;
}
.night_toc{
  font-size: 1.3rem;
}
.nightcolumn_menu ul{
  width: fit-content;
  margin: 24px auto 0;
  padding-left: 20px;
}
.nightcolumn_menu li{
  list-style: disc;
  text-align: left;
  font-size: 1rem;
  line-height: 2.3;
  margin-bottom: 6px;
}
.small_door{
  position: absolute;
  right: 10px;
  bottom: 12px;
  width: 70px;
}
.small_door:hover{
  transform: scale(1.05);
}

/*night column pc*/
.nightcolumn_lead{
  font-size: 1.15rem;
}
.nightcolumn_menu{
  max-width: 700px;
  margin: 80px auto;
  position: relative;
  border: 1px solid #d5d5d5;
  padding: 40px 100px;
  text-align: center;
}
.small_door{
  width: 100px;
}

/*contact*/
.contact_exp{
  max-width: 600px;
  margin: 0 auto;
  padding: 80px 32px 100px;
}
.contact_form{
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.form_group{
  display: flex;
  flex-direction: column;
}
.form_gruop label{
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: #333;
}
.form_group input,
.form_group textarea{
  width: 100%;
  border: none;
  background: #e9edf2;
  padding: 15px 15px;
  font-size: 1rem;
  box-sizing: border-box;
}
.form_group input{
  height: 56px;
}
.form_group textarea{
  min-height: 220px;
  resize: vertical;
}

.contact_check{
  margin-top: 20px;
  font-size: 0.95rem;
  line-height: 1.8;
}
.contact_check label{
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.contact_check input{
  margin-top: 7px;
}
.contact_submit_btn{
  display: block;
  margin: 36px auto 0;
  border: none;
   border-radius: 20px;
  padding: 12px 50px;
  color: #333;
  font-size: 0.95rem;
  background: #d5d5d5;
  cursor: pointer;
}
.contact_btn:hover{
  opacity: 0.8;
}

/*footer*/
footer{
  padding: 40px 30px 20px;
  background-color: #ffd967;
}
footer .container{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
footer img{
  width: 60px;
  height: auto;
}
footer small{
  color: #7b7a7a;
  font-size: 0.6rem;
}

/* =========================
   PC footer
========================= */
@media screen and (min-width: 768px) {
  .footer{
    display: none;
    margin-top: 0;
  }
  .pc_footer {
    display: block;
    background: #ffd967;
    margin-top: 0;
    padding: 64px 64px 28px;
  }

  .footer_inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 220px 1fr 320px;
    gap: 56px;
    align-items: start;
  }

  .footer_logo img {
    width: 150px;
    height: auto;
    display: block;
  }

  .footer_nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 80px;
    padding-top: 16px;
  }

  .footer_nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .footer_nav li + li {
    margin-top: 22px;
  }

  .footer_nav a {
    text-decoration: none;
    color: #222;
    font-size: 1.2rem;
  }

  .footer_nav a:hover {
    opacity: 0.7;
  }

  .footer_info {
    padding-top: 6px;
    color: #222;
  }

  .footer_open {
    margin: 0 0 10px;
    font-size: 1.1rem;
  }

  .footer_time {
    margin: 0 0 52px;
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .footer_address {
    margin-bottom: 38px;
  }

  .footer_address p,
  .footer_contact p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.9;
  }

  .footer_bottom {
    max-width: 1300px;
    margin: 60px auto 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 56px;
  }

  .footer_bottom p,
  .footer_bottom small {
    margin: 0;
    color: #777;
    font-size: 0.95rem;
  }
  .footer_bottom a {
    color: #777;
    text-decoration: none;
  }

  .footer_bottom a:hover {
    opacity: 0.7;
  }
  
  .footer .container {
    display: none;
  }
}

/*PC版共通*/
@media screen and (min-width: 768px){

  body{
    font-size: 16px;
  }

  h1{
    font-size: 3rem;
    font-weight: 400;
    margin: 60px auto 40px;
  }

  h2{
    font-size: 2rem;
  }

  h3{
    font-size: 1.4rem;
  }

  p{
    font-size: 1rem;
    line-height: 2;
  }

  .container{
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
  }

  .section{
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .header_inner{
    padding: 20px 40px;
  }

  .logo img{
    width: 80px;
  }
  .hcontact_btn{
    display: inline-block;
  }

.hero{
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2f3138;
  overflow: hidden;
}

.hero__media{
  position: relative;
  width: min(100%, 760px);
  height: 560px;
  margin: 0 auto;
}

.hero_img{
  position: absolute;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%);
  width: min(100%, 480px);
  height: auto;
  max-width: none;
  object-fit: contain;
}

  #about{
    text-align: center;

  }

  #about .container{
    max-width: 760px;
  }

  .maru{
    width: 240px;
    height: 240px;
    margin: 0 auto 40px;
  }

  #about p{
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.2rem;
    padding-bottom: 0;
  }


  #news .news_list{
    max-width: 900px;
    margin: 0 auto 40px;
  }

  #news .news_item{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 0;
  }

  #news .news_thumb,
  #news .news_thumb_logo{
    width: 140px;
    height: 140px;
    flex-shrink: 0;
    overflow: hidden;
  }

  #news .news_thumb img,
  #news .news_thumb_logo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  #news .news_text{
    font-size: 1.1rem;
  }

  #night .night_grid{
    max-width: 900px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
  }

  #night .night_card{
    width: 100%;
  }

  #night .night_card--round{
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
  }
  #night .night_card--round p{
    font-size: 1.1rem;
    line-height: 1.8;
  }
  #night .night_card--img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  #contact .sns_icon{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
    margin-top: 50px;
  }

  #contact .insta,
  #contact .x{
    width: 220px;
    text-align: center;
  }

  #contact .sns{
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #contact .contact_text{
    max-width: 220px;
    margin: 0 auto;
  }

  #info .access{
    max-width: 900px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 48px;
    align-items: start;
  }

  #info .address{
    text-align: left;
  }

  #info .map{
    width: 100%;
    max-width: 480px;
    height: 320px;
    margin-left: auto;
    background: #efb6b6;
  }
}