@charset "utf-8";
/* CSS Document */

html {
  font-size: 62.5%;
  margin: 0;
  padding: 0;
}

body {
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 400;
  margin: 0;
  padding: 0;
  color: #000000;

}


a:hover {
  transition : 0.5s;
}

/*------------------
ナビメニュー
------------------*/

.header {
  position: sticky; /* headerを追従にする */
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 68px;
  background-color: #ffffff;
  z-index: 9999;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}
.logo {
  width: 180px;
  z-index: 9999;
  margin: 10px 0 0 20px;
}
.logo h1 {
  width: 100%;
}
.logo h1 img {
  width: 100%;
  height: auto;
}

@media screen and (min-width:768px){
  .header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 110px;
  }
  .header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
  }
  .logo {
    width: 312px;
    margin: 14px 0 20px 0;
  }
}


/* ハンバーガーボタンのデザイン */
.drawer__button {
  position: relative;
  width: 68px;
  height: 68px;
  background-color: #D32D25;
  border: none;
  cursor: pointer;
  z-index: 999; /* メニューを開いている時もクリックできるよう設定 */
}
.drawer__button::after {
  content: "メニュー";
  position: absolute;
  bottom: 5px;
  right: 0;
  left: 0;
  margin: 0 auto;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

@media screen and (min-width:768px){
  .drawer__button {
    display: none;

  }
}



/* ハンバーガーボタン内の線 */
.drawer__button > span {
  display: block;
  position: absolute;
  top: 40%;
  left: 50%;
  width: 40px;
  height: 2px;
  background-color: #ffffff;
  transform: translateX(-50%);
}
.drawer__button > span:first-child {
  transform: translate(-50%, calc(-50% - 10px));
  transition: transform 0.3s ease;
}
.drawer__button > span:nth-child(2) {
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}
.drawer__button > span:last-child {
  transform: translate(-50%, calc(-50% + 10px));
  transition: transform 0.3s ease;
}
/* 展開時のデザイン */
.drawer__button.active > span:first-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.drawer__button.active > span:nth-child(2) {
  opacity: 0;
}
.drawer__button.active > span:last-child {
  transform: translate(-50%, -50%) rotate(45deg);
}


/* メニューのデザイン */
.drawer__nav {
  position: fixed; /* 追従ヘッダーなどでも表示できるよう設定しておく */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.5s ease;
  opacity: 0;
  visibility: hidden;
}
.drawer__nav.active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease;
}
.drawer__nav__inner {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  padding: 68px 0 0 0;
  margin: 0 0 0 auto;
  overflow: scroll;
  transition: transform 0.5s ease;
}
.drawer__nav.active .drawer__nav__inner {
  transition: opacity 0.5s ease;
}
.drawer__nav__menu {
  list-style: none;
  padding-left: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.drawer__nav__link,.nav-open {
  display: flex;
  align-content: center;
  height: 70px;
  text-decoration: none;
  border-bottom: solid 1px #BA9E5C;
  position: relative;
  color: #333333;
  padding-left: 80px;
  font-size: 16px;
  font-weight: 700;
}
.drawer__nav__link {
  padding-top: 15px;
}

.drawer__nav__item {
  position: relative;
}
.drawer__nav__item::after {
  content: "";
  width: 22px;
  height: 22px;
  position: absolute;
  right: 20px;
  top: 30px;
  background-repeat: no-repeat;
  background-size: cover;
}
.li_shop::after,
.li_rest::after,
.li_relax::after{
  background-image: url(../images/arrow_nav.png);
}
.li_access::after {
  background-image: url(../images/arrow_nav.png);
  transform: rotate(-90deg);/* 回転 */
}
.li_shop {
  background-image: url(../images/menu_shopping.png);
  background-position: left 20px top 20px;
  background-size: 40px 40px;
  background-repeat: no-repeat;
}

.li_rest {
  background-image: url("../images/menu_restaurant.png");
  background-position: left 20px top 20px;
  background-size: 40px 40px;
  background-repeat: no-repeat;
}

.li_relax {
  background-image: url("../images/menu_relax.png");
  background-position: left 10px top 20px;
  background-size: 58px 40px;
  background-repeat: no-repeat;
}

.li_access {
  background-image: url("../images/menu_access.png");
  background-position: left 20px top 20px;
  background-size: 40px 40px;
  background-repeat: no-repeat;
}




@media screen and (min-width:768px){
  .drawer__nav {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 110px;
    background: none;
    transition: opacity 0.5s ease;
    opacity: 1;
    visibility:visible;
  }
  .drawer__nav.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease;
  }
  .drawer__nav__inner {
    position: relative;
    display: flex;
    justify-content: flex-end;
    width: auto;
    height: auto;
    background: none;
    padding: 0;
    margin: 0 0 0 auto;
    overflow: visible;
    transition: transform 0.5s ease;
  }
  .drawer__nav.active .drawer__nav__inner {
    transition: opacity 0.5s ease;
  }
  .drawer__nav__menu {
    list-style: none;
    padding-left: 0;
    display: flex;
  }
  .drawer__nav__link {
    display: block;
    text-align: center;
    line-height: 1.2;
    text-decoration: none;
    padding: 50px 10px 0 10px;
    border-bottom: none;
    height: 55px;
  }
  .nav-open {
    display: block;
    text-align: center;
    line-height: 1.2;
    text-decoration: none;
    padding: 50px 25px 0 25px;
    border-bottom: none;
    height: 55px;
  }
  .drawer__nav__link:hover {
    color: #D32D25;
  }
  .drawer__nav__item::after {
    background: none;
  }
  .li_shop {
    background-position: center top 15px;
    background-size: 40px 40px;
  }
  .li_shop:hover {
    background-image: url(../images/menu_shopping_ov.png);
  }
  .li_rest {
    background-position: center top 15px;
    background-size: 40px 40px;
  }
  .li_rest:hover {
    background-image: url("../images/menu_restaurant_ov.png");
  }
  .li_relax {
    background-position: center top 10px;
    background-size: 58px 40px;
  }
  .li_relax:hover {
    background-image: url("../images/menu_relax_ov.png");
  }
  .li_access {
    background-position: center top 10px;
    background-size: 40px 40px;
  
  }
  .li_access:hover {
    background-image: url("../images/menu_access_ov.png");
    border-bottom: 6px solid #D32D25;

  }

}



.nav-open{
  width: auto;
  display: block;
}

@media screen and (min-width:768px){

  .nav-open{
    position: relative;
    width: auto;
  }

}


nav .sub-menu {
  display: none;
}
nav .sub-menu a {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 20px 40px;
  display: block;
  background-color: #D32D25;
  text-decoration: none;
  background-image: url(../images/arrow_nav_sub.png);
  background-repeat: no-repeat;
  background-position: right 20px center;
  border-bottom: 1px solid #FFFFFF;
}

@media screen and (min-width:768px){
  /* 子メニュー - .sub-menu PCだけで機能*/
  /* PCだけhoverで開閉、スマホはjsで開閉*/
  nav .sub-menu {
    position: absolute;
    width: 240px;
    background: #ffffff;
    top: 110px;
    opacity: 0;
    display: block;
    visibility: hidden;
    transition: 0.5s;
  }
  nav .sub-menu a {
  color: #333333;
  padding: 10px 15px;
  display: block;
  background-color: #ffffff;
  border-bottom: 1px solid #D9CDBE;
  background-image: url(../images/arrow_submenu.png);
  background-repeat: no-repeat;
  background-position: right 20px center;
  }
  nav .sub-menu a:hover {
    
  }

  /* ホバーで子メニュー表示 */
  nav .menu-item-has-children:hover {
    border-bottom: 6px solid #D32D25;
  }
  nav .menu-item-has-children:hover ul {
    opacity: 1;
    visibility: visible;
  }
  nav .menu-item-has-children:hover .nav-open {
    color: #D32D25;    
  }
  nav li.menu-item-has-children li a:hover {
  background-color: #F9C8C6;
  }
  
  
}


.bnr_line {
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 20px;
  margin: 20px;
  background-color: #729140;
  height: 80px;
  text-decoration: none;
}
.bnr_line::before {
  content: "";
  width: 40px;
  height: 40px;
  background-image: url(../images/ico_line_baloon.png);
  background-size: cover;
}
@media screen and (min-width:768px){
  .bnr_line {
    flex-direction: column;
    column-gap: 10px;
    margin: 0;
    width: 180px;
    height: 110px;
    text-align: center;
    line-height: 1.2;
  }
  .bnr_line::before {
    content: "";
    width: 40px;
    height: 40px;
    background-image: url(../images/ico_line_baloon.png);
    background-size: cover;
  }
  .bnr_line:hover {
    background-color: #658631;
  }
}


/* ハンバーガーメニュー展開時、背景を固定 */
body.active {
  height: 100%;
  overflow: hidden;
}



/*------------------
フッター
------------------*/

.footer {
  background-color: #505050;
}
.footer_inner {
  padding: 20px;
}
.footer_inner,.footer_inner a {
  color: #FFFFFF;
  text-decoration: none;
}
.footer_inner p {

}
.footer_inner ul {
  list-style-type: none;
  padding-top: 5px;
}
.footer_inner ul li {
  font-size: 14px;
  font-weight: 400;
  padding: 5px 0;
  line-height: 1;
}
.footer_inner ul li::before {
  content: "└ ";
}

.foot_logo {
  display: block;
  width: 158px;
  height: 158px;
  margin: 0 auto;
}
.foot_adress {
  text-align: center;
  font-size: 14px;
  padding: 20px;
  border-bottom: 1px solid #FFFFFF;
}
.foot_adress_head {
  font-size: 16px;
  font-weight: 700;
   font-family: "Zen Kaku Gothic New", sans-serif;
}
.foot_menu {
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
}

.foot_menu p {
  color: #FFFFFF;
  font-size: 16px;
}
.foot_menu_block_1 {
  width: 100%;
  margin-bottom: 20px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
}
.foot_menu_block_2 {
  width: 50%;
  margin-bottom: 20px;
}

.foot_menu_block_3 {
  width: 50%;
  margin-bottom: 20px;
}
.foot_menu_block_4 {
  width: 50%;
  margin-bottom: 20px;
}
.foot_menu_block_2 p,
.foot_menu_block_3 p,
.foot_menu_block_4 p{
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
}
.foot_menu_block_5 {
  width: 50%;
  margin-bottom: 20px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
}
.foot_menu_block_5 a {
  display: block;
  margin-bottom: 20px;
  line-height: 1.2;
}

.foot_sns {
  display: flex;
  justify-content: center;
  column-gap: 30px;
}
.foot_sns a {
  display: block;
  width: 45px;
}
.foot_sns a img {
  width: 100%;
}

.footer_copy {
  font-size: 12px;
  text-align: center;
  color: #FFFFFF;
  padding: 20px 0;
}

@media screen and (min-width:768px){
  .footer {
    padding-top: 20px;
  }
  .footer_inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
  }

  .footer_inner ul {
    padding-top: 5px;
  }
  .footer_inner ul li {
    font-size: 14px;
    font-weight: 400;
    padding: 5px 0;
    line-height: 1;
  }

  .foot_logo {
    width: 158px;
    height: 158px;
    margin: 0 auto;
  }
  .foot_adress {
    text-align: left;
    font-size: 14px;
    padding: 20px;
    margin-right: 20px;
    border-bottom: none;
    border-right: 1px solid #FFFFFF;
  }
  .foot_adress_head {
    font-size: 16px;
    font-weight: 700;
  }
  .foot_menu {
    max-width: 680px;
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .foot_menu p {
    color: #FFFFFF;
    font-size: 16px;
  }
  .foot_menu_block_1 {
    width: 10%;
    margin-bottom: 20px;
  }
  .foot_menu_block_2 {
    width: 30%;
    margin-bottom: 20px;
  }
  .foot_menu_block_3 {
    width: 30%;
    margin-bottom: 20px;

  }
  .foot_menu_block_4 {
    width: 30%;
    margin-bottom: 20px;
  }
  .foot_menu_block_5 {
    width: 100%;
    margin-bottom: 0;
    display: flex;
    padding-left: 10%;
  }
  .foot_menu_block_5 a {
   width: 33%;
    margin-bottom: 20px;
  }

  .foot_sns {
    display: flex;
    justify-content: center;
    column-gap: 30px;
    padding: 20px 0;
  }
  .foot_sns a {
    display: block;
    width: 45px;
  }
  .foot_sns a img {
    width: 100%;
  }

  .footer_copy {
    font-size: 12px;
    text-align: center;
    color: #FFFFFF;
  }
}


/*------------------
営業時間案内
------------------*/

.shop_info {
  background-color: #FFFFFF;
  background-image: url(../images/bg_h2_wave.png),url(../images/bg_bottom.png);
  background-position: center top 60px,center bottom;
  background-repeat: no-repeat,no-repeat;
  background-size: 92px 34px,164px 145px;
}
.shop_info h2 {
  margin-top: 50px;

}
.shop_info_inner {
  padding: 0 20px 80px;
}
.shop_group {
  
}
.shop_info_block {
  padding: 5px 50px 0 50px;
  background-image: url(../images/bg_shopinfo.png);
  background-repeat: no-repeat;
  background-position: left 20px top 50px;
  position: relative;
  margin-bottom: 20px;
} 
.shop_info_block::before {
  content: "";
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
} 

.shop_01::before {
  background-image: url(../images/ico_shop_baige.png);
}
.shop_02::before {
  background-image: url(../images/ico_shop_green.png);
}
.shop_03::before {
  background-image: url(../images/ico_shop_black.png);
}
.shop_04::before {
  background-image: url(../images/ico_restaurant_orange.png);
}
.shop_05::before {
  background-image: url(../images/ico_restaurant_red.png);
}
.shop_06::before {
  background-image: url(../images/ico_relax_green.png);
}
.shop_07::before {
  background-image: url(../images/ico_relax_blue.png);
}

.shop_info_name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
}
.shop_info_detail {
  font-size: 14px;
}

@media screen and (min-width:768px){
  .shop_info {
    background-image: url(../images/bg_h2_wave_2.png),url(../images/bg_bottom.png);
    background-position: center top 80px,center bottom;
    background-repeat: no-repeat,no-repeat;
    background-size: 512px 34px,164px 145px;
  }
  .shop_info h2 {
    margin-top: 0;
  }
  .shop_info_inner {
    padding: 0 10px 80px;
    display: flex;
    justify-content: space-between;
  }
  .shop_group {

  }
  .shop_info_block {
    padding: 5px 50px 0 50px;
    background-image: url(../images/bg_shopinfo.png);
    background-repeat: no-repeat;
    background-position: left 20px top 50px;
    position: relative;
    margin-bottom: 20px;
  } 
  .shop_info_block::before {
    content: "";
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: left top;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
  } 

  .shop_info_name {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
  }
  .shop_info_detail {
    font-size: 14px;
  } 
  
}



/*------------------
コンテンツ
------------------*/


/*コンテンツ共通*/

.sp {
  display: block;
}
.pc {
  display: none;
}
.section {
  padding: 60px 0;
}
.inner_section {
  width: 100%;
  padding: 0;
}

main {
  background-color: #FFF9F2;
  padding: 0;
  margin: 0;
}

.wrapper {
  width: 100%;
  padding: 0;
  overflow-x: hidden;
}

 
@media screen and (min-width:768px){
  .sp {
    display: none;
  }

  .pc {
    display: block;
  }
  .section {
    padding: 80px 0;
  }
  main {

  }
  .inner_section {
    max-width: 1100px;
    margin: 0 auto;
  }
  .wrapper {
  }
}


.h2 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 28px;
  font-weight: 700; 
  margin-bottom: 10px;
  line-height: 2;
  text-align: center;
}
.h2 span {
  font-family: "Caveat", cursive;
  font-optical-sizing: auto;
  font-size: 18px;
  font-weight: 500; 
  margin-bottom: 30px;
  display: block;
}
.h2red span {
  color: #D32D25; 
}
.h2beige span {
  color: #BA9E5C; 
}
.h2green span {
  color: #729140; 
}
.h2orage span {
  color: #D98A2E; 
}
.h2blue span {
  color: #2998B6; 
}

.fred {
  color: #D32D25;  
}

@media screen and (min-width:768px){
  .h2 {
    font-size: 32px;
    margin-bottom: 10px;
  }
  .h2 span {
    font-size: 22px;
    margin-bottom: 30px;
  }
}

p.description {
  font-size: 14px;
  color: #333333;  
  font-weight: 400;
  line-height: 2;
  text-align: center;
}
@media screen and (min-width:768px){
  p.description {
    font-size: 16px;
  }
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 20px;
  height: 52px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.btn:hover {
  transition : 0.5s;
}

.btn_red {
  background-color: #D32D25;  
  width: 100%;
  color: #FFFFFF;
}
.btn_red::after {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  background-image: url(../images/arrow_btn_w.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.btn_beige {
  background-color: #BA9E5C;  
  width: 100%;
  color: #FFFFFF;
}
.btn_beige::after {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  background-image: url(../images/arrow_btn_w.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.btn_green {
  background-color: #729140;  
  width: 100%;
  color: #FFFFFF;
}
.btn_green::after {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  background-image: url(../images/arrow_btn_w.png);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width:768px){
  .btn {
    column-gap: 20px;
    height: 70px;
    font-size: 16px;
    margin: 0 auto;
  }

  .btn_red {
    background: none; 
    color: #D32D25;
    border-bottom: 2px solid #D32D25;
    width: 230px;
  }
  .btn_red::after {
    width: 44px;
    height: 44px;
    background-image: url(../images/arrow_red.png);
  }
  .btn_red:hover {
    background-color: #D32D25; 
    color: #ffffff;
    border-bottom: 2px solid #D32D25;
    width: 230px;
  }
  .btn_red:hover::after {
    width: 44px;
    height: 44px;
    background-image: url(../images/arrow_btn_w.png);
  }
  
  .btn_beige {
    background: none; 
    color: #BA9E5C;
    border-bottom: 2px solid #BA9E5C;
    width: 230px;
  }
  .btn_beige::after {
    width: 44px;
    height: 44px;
    background-image: url("../images/arrow_beige.png");
  }
  .btn_beige:hover {
    background-color: #BA9E5C; 
    color: #ffffff;
    border-bottom: 2px solid #BA9E5C;
    width: 230px;
  }
  .btn_beige:hover::after {
    width: 44px;
    height: 44px;
    background-image: url(../images/arrow_btn_w.png);
  }
  
  .btn_green {
    background: none; 
    color: #729140;
    border-bottom: 2px solid #729140;
    width: 230px;
  }
  .btn_green::after {
    width: 44px;
    height: 44px;
    background-image: url("../images/arrow_green.png");
  }
  .btn_green:hover {
    background-color: #729140; 
    color: #ffffff;
    border-bottom: 2px solid #729140;
    width: 230px;
  }
  .btn_green:hover::after {
    width: 44px;
    height: 44px;
    background-image: url(../images/arrow_btn_w.png);
  }
  
}



/*------------------
TOPページ
------------------*/

/* メインビジュアルのスライドショー */

.mv {
  
}
.slider_mv_wrap {
  width: 1200px;
  margin:0 auto;
}
.slider_mv {
  width: auto;
  z-index: 1;
}
.mv .slick-list {
	overflow: visible !important;
}
.slick-img {

}
.slick-img img {
  width: 100%;
}

@media screen and (max-width:1199px){
  .slider_mv_wrap {
    width: 100%;
  }
}

@media screen and (max-width:767px){
  .slider_mv {
    aspect-ratio: 39 / 60;
  }
  .slick-img {
    aspect-ratio: 39 / 60;
  }
}


/* welcome */

.welcome {
  
}
.welcome_inner {
  padding: 200px 0;
  background-image: url(../images/bg_welcome_sp_top.png),url(../images/bg_welcome_sp_bottom.png);
  background-repeat: no-repeat,no-repeat;
  background-position: center top 20px,center bottom 20px;
  background-size: auto 150px,auto 150px;
}


@media screen and (min-width:768px){
  .welcome {

  }
  .welcome_inner {
    padding: 40px 0;
    background-image: url("../images/bg_welcome_pc_l.png"),url("../images/bg_welcome_pc_r.png");
    background-repeat: no-repeat,no-repeat;
    background-position: left top 20px,right top 20px;
    background-size: 250px auto,250px auto;
  }

}


/* news insta */

.news_insta {
  margin-bottom: 40px;
  padding: 0 20px;
}
.news_insta_inner {
  background-image: url(../images/bg_cloud_01.png),url(../images/bg_cloud_02.png);
  background-repeat: no-repeat,no-repeat;
  background-size: 140px 46px,140px 46px;
  background-position: left top,right bottom;
  padding: 46px 0;
}
.insta_block,.news_block {
  display: block;
  background-color: #FFFFFF; 
  padding: 30px;
  outline: 2px solid #D9CDBE;
  outline-offset: -8px;
}
.insta_block {
  
}

.news_block {
  
}
ul.news_list {
  list-style-type: none;
  margin-bottom: 40px;
}
ul.news_list li {
  border-bottom: 2px solid #D9CDBE;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
ul.news_list li span {
  display: block;
}
.news_date {
  font-size: 14px;
  color: #AAAAAA;
}
.news_title a {
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  text-decoration: none;
}
.news_title a:hover {
  color: #D32D25;
}
.news_detail {
  font-size: 14px;
}
.news_detail p {
  display: inline;
}
.news_detail a {
  color: #D32D25;
  text-decoration: underline;
}

@media screen and (min-width:768px){
  .news_insta {
    padding: 0;
  }
  .news_insta_inner {
    background-size: 250px 82px,250px 82px;
    background-position: left top,right bottom;
    padding: 82px 0;
    display: flex;
    justify-content: space-between;
  }
  .insta_block,.news_block {
    display: block;
    background-color: #FFFFFF; 
    padding: 30px;
    outline: 2px solid #D9CDBE;
    outline-offset: -8px;
    width: 43%;
  }
  .insta_block {

  }

  .news_block {

  }
  ul.news_list {
    margin-bottom: 60px;
  }
  ul.news_list li {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  ul.news_list li span {
    display: block;
  }
  .news_date {
    font-size: 14px;
  }
  .news_title a {
    font-size: 20px;
  }
  .news_detail {
    font-size: 14px;
  }
}


/* Pick Up */

.pickup {
  background-image: url(../images/bg_h2_wave.png);
  background-repeat: no-repeat;
  background-position: center top;
}
.inner_pickup {
  background: linear-gradient(180deg, transparent 0%, transparent 20%, #D32D25 20%, #D32D25 100%);
  padding: 0 20px;
}
.slider_pickup {
  width: 100%;
}
.pickup_img {
  width: 100%;
}
.pickup_img img {
  width: 100%;
  aspect-ratio: 352 / 234;
  object-fit: cover;
}
.caption {
  display: block;
  color: #FFFFFF;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin: 10px 40px;
}

.slide-arrow_white {
  cursor: pointer;
  margin: auto;
  position: absolute;
  top: auto;
  bottom: 30px;
  width: 36px;
  height: 36px;
  z-index: 100;
}
.prev-arrow_white {
  left: 0;
}
.next-arrow_white {
  right: 0;
}

@media screen and (min-width:768px){
  .pickup {
    background-image: url(../images/bg_h2_wave_2.png);
    background-position: center top 80px;
  }
  .inner_pickup {
    padding: 0;
  }
  .slider_pickup {
    width: 100%;
  }
  .pickup_img {
    width: 340px;
    margin: 0 10px;
  }
  .pickup_img img {
    width: 100%;
    aspect-ratio: 352 / 234;
    object-fit: cover;
  }
  .caption {
    font-size: 20px;
    margin: 10px 0;
  }

  .slide-arrow_white {
    cursor: pointer;
    margin: auto;
    position: absolute;
    top: 40%;
    bottom: auto;
    width: 36px;
    height: 36px;
    z-index: 100;
  }
  .prev-arrow_white {
    left: 7%;
  }
  .next-arrow_white {
    right: 7%;
  }
}


/* お店の紹介 */

.shops {
  
}
.inner_shops {
  padding: 0 20px;
}
.shop_block {
  width: 100%;
  padding: 0;
  margin: 0 auto 60px auto;

}
.shop_block_head {
  position: relative;
}
.shop_block_head_01::before {
  content: "";
  width: 120px;
  height: 60px;
  background-image: url(../images/bg_koi_beige.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: 0;
  top: 0;
}
.shop_block_head_02::before {
  content: "";
  width: 120px;
  height: 60px;
  background-image: url("../images/bg_koi_green.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.shop_block_head_03-1::before {
  content: "";
  width: 120px;
  height: 60px;
  background-image: url(../images/bg_koi_orange.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: 0;
  top: 0;
}
.shop_block_head_03-2::before {
  content: "";
  width: 120px;
  height: 60px;
  background-image: url("../images/bg_koi_red.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
}

.shop_ico {
  display: block;
  width: 64px;
  height: 64px;
  margin: 0 auto;
}
.shop_block_img {

}
.shop_block_01 .shop_block_img,
.shop_block_02 .shop_block_img {
  margin: 0 -20px;
}
.shops_img,.shops_slide_img {
  width: 100%;
}

.shop_block_01 .shops_img img,
.shop_block_02 .shops_img img {
  width: 100%;
  aspect-ratio: 39 / 26;
  object-fit: cover;
}
.shop_block_03 .shops_img img {
  width: 100%;
  aspect-ratio: 352 / 235;
  object-fit: cover;
}
.shop_block_txt {
  margin: 0 auto 40px auto;
}

.slider_shops_01 {
  
}


@media screen and (min-width:768px){
  .shops {

  }
  .inner_shops {
    padding: 0;
  }
  .shop_block_01,
  .shop_block_03 {
    width: 100%;
    padding: 0;
    margin: 0 auto 60px auto;
    position: relative;
  }
  .shop_block_02 {
    width: 100%;
    padding: 70px 0 0 0;
    margin: 0 auto 60px auto;
    position: relative;
  }
  .shop_block_01,
  .shop_block_02 {
    min-height: 33vw;
  }
  .shop_block_03 {
    min-height: 44vw;
  }
  .shop_block_01 .shop_block_head,
  .shop_block_03 .shop_block_head {
    margin-left: 52vw;
    max-width: 530px;
  }
  .shop_block_02 .shop_block_head {
    margin: 0 52vw 40px auto;
    max-width: 530px;
  }
  .shop_block_head_01::before {
    width: 180px;
    height: 98px;
    right: 0;
    top: -50px;
  }
  .shop_block_head_02::before {
    width: 180px;
    height: 98px;
    left: auto;
    right: 0;
  top: -50px;
  }
  .shop_block_head_03-1::before {
    display: none;
  }
  .shop_block_head_03-2::before {
    display: none;
  }

  .shop_ico {
    width: 64px;
    height: 64px;
    margin: 0 auto 0 0;
  }
  .shop_block h2 {
    text-align: left;
  }


  .shop_block_01 .shop_block_img,
  .shop_block_03 .shop_block_img {
    width: 48vw;
    position: absolute;
    top: 0;
    left: 0;
  }
  .shop_block_02 .shop_block_img {
    width: 48vw;
    position: absolute;
    top: 0;
    right: 0;
  }
  .shop_block_01 .shop_block_img,
  .shop_block_02 .shop_block_img {
    margin: 0;
  }
  .shops_img,.shops_slide_img {
    width: 100%;
  }
  .shop_block_01 .shops_img img,
  .shop_block_02 .shops_img img {
    width: 100%;
    aspect-ratio: 680 / 453;
    object-fit: cover;
  }
  .shop_block_03 .shops_img img {
    width: 100%;
    /*aspect-ratio: 680 / 618;*/
	  aspect-ratio: 680 / 453;
    object-fit: cover;
  }
  .shop_block_01 .shop_block_txt,
  .shop_block_03 .shop_block_txt {
    margin: 0 auto 40px 52vw;
    max-width: 530px;
  }
  .shop_block_02 .shop_block_txt {
    margin: 0 52vw 40px auto;
    max-width: 530px;
  }
  .shop_block_txt .btn {
    margin-left: 0;
  }
  .slider_shops_01 {

  }
}


/* お店スライダーのドット */

.slick-dots{
  bottom:-30px !important;
}
.slick-dots li button:before{
  font-size: 10px !important;
  color: #BABABA !important;
}

.slick-dots li.slick-active button:before{
  color: #D32D25 !important;
}


/* 催事情報 */

.event_info {
  padding: 0 20px;
}
.event_info_wrap {
  background-image: url(../images/bg_cloud_01.png),url(../images/bg_cloud_02.png);
  background-repeat: no-repeat,no-repeat;
  background-size: 140px 46px,140px 46px;
  background-position: left top,right bottom;
  padding: 46px 0;
}
.event_info_inner {
  background-color: #FFFFFF;
  padding: 80px 30px 30px 30px;
  outline: 2px solid #D9CDBE;
  outline-offset: -8px;
  background-image: url(../images/bg_flag.png);
  background-repeat: no-repeat;
  background-size: 82px auto;
  background-position: center top 30px;
}
.event_block_wrap {
  
}
.gcalendar {
  
}
.gcalendar p {
  margin-bottom: 20px;
}
.gcalendar p a {
  color: #D32D25;  
}
.event_img_block {
  
}
.event_img {
  width: 100%;
}
.event_img img {
  width: 100%;
  aspect-ratio: 426 / 261;
  object-fit: cover;
}
.shopname {
  display: block;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 18px;
  padding: 10px 0;
}
.slide-arrow_red {
  cursor: pointer;
  margin: auto;
  position: absolute;
  top: auto;
  bottom: 10px;
  width: 36px;
  height: 36px;
  z-index: 100;
}
.prev-arrow_red {
  left: 0;
}
.next-arrow_red {
  right: 0;
}
@media screen and (min-width:768px){
  .event_info {
    padding: 0;
  }
  .event_info_wrap {
    background-size: 250px 82px,250px 82px;
    background-position: left top,right bottom;
    padding: 82px 0;
  }
  .event_info_inner {
    padding: 80px 30px 30px 30px;
    background-image: url(../images/bg_flag_2.png);
    background-repeat: no-repeat;
    background-size: 460px auto;
    background-position: center top 70px;
  }
  .event_info_inner {
    padding: 50px;
  }
  .event_block_wrap {
    display: flex;
    justify-content: space-between;
  }
  .gcalendar {
    display: block;
    width: 48%;
  }
  .event_img_block {
    display: block;
    width: 40%;
    max-width: 520px;
    padding: 0 40px;
  }
  .event_img {
    width: 100%;
  }
  .event_img img {
    width: 100%;
    aspect-ratio: 426 / 261;
    object-fit: cover;
  }
  .shopname {
    font-size: 20px;
    padding: 10px 0;
  }
  .slide-arrow_red {
    cursor: pointer;
    margin: auto;
    position: absolute;
    top: 30%;
    bottom: auto;
    width: 36px;
    height: 36px;
    z-index: 100;
  }
  .prev-arrow_red {
    left: -40px;
  }
  .next-arrow_red {
    right: -40px;
  }
}





/*------------------
ページ共通
------------------*/


/* ページヘッダー */

.page_head {
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 0;
}
.yumemachibito .page_head {
  background-image: url(../images/head_shop01_sp.jpg);
}
.cosmos .page_head {
  background-image: url(../images/head_shop02_sp.jpg);
}
.access_spot .page_head,
.news .page_head {
  background-image: url(../images/head_other_sp.jpg);
}
.page_title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.6;
  width: 70%;
  max-width: 300px;
  aspect-ratio: 1 / 1;
  background-image: url(../images/flame_head.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  text-align: center;
}
.page_title span {
  font-family: "Caveat", cursive;
  font-optical-sizing: auto;
  font-size: 16px;
  font-weight: 500; 
  color: #D32D25; 
  margin-bottom: 30px;
  display: block;
}
.page_title::before {
  content: "";
  width: 64px;
  height: 64px;
  background-image: url(../images/ico_shop_black.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  margin: 10px 0;
}

@media screen and (min-width:768px){
  .page_head {
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .yumemachibito .page_head {
    background-image: url(../images/head_shop01_pc.jpg);
  }
  .cosmos .page_head {
    background-image: url(../images/head_shop02_pc.jpg);
  }
  .access_spot .page_head,
  .news .page_head  {
    background-image: url(../images/head_other_pc.jpg);
  }
  .page_title {
    font-size: 32px;
    margin-bottom: 10px;
    line-height: 1.6;
    width: 354px;
    max-width: 354px;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
  .page_title span {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page_title::before {
    width: 64px;
    height: 64px;
    margin: 15px 0;
  }
}



/*------------------
お買い物
------------------*/

/* お買い物共通 */

.yumemachibito {
  
}
.cosmos {
  
}
.shop_head {
  background-repeat: no-repeat;
  background-position: center top 56px;
  background-size: 140px 53px;
}
.yumemachibito .shop_head {
  padding: 0;
  background-image: url(../images/bg_yumemachi_head.png);
}
.cosmos .shop_head {
  padding: 0;
  background-image: url(../images/bg_cosmos_head.png);
}
.shishigin .shop_head {
  padding: 0;
  background-image: url(../images/bg_shishigin_head.png);
}
.hana .shop_head {
  padding: 0;
  background-image: url(../images/bg_hana_head.png);
}
.atrest .shop_head {
  padding: 0;
  background-image: url(../images/bg_atrest_head.png);
}
.mominoki .shop_head {
  padding: 0;
  background-image: url(../images/bg_mominoki_head.png);
}

.shop_head_inner {
  padding: 130px 0 60px;
  background-image: url(../images/bg_cloud_01.png),url(../images/bg_cloud_02.png);
  background-repeat: no-repeat,no-repeat;
  background-size: 140px 46px,140px 46px;
  background-position: left top,right bottom;
}
.yumemachibito .shop_head_inner {
  padding: 130px 20px 60px;
}
.cosmos .shop_head_inner {
  background-image: url(../images/bg_cloud_01.png);
  background-repeat: no-repeat;
  background-size: 140px 46px;
  background-position: left top;
}

.shop_head_inner p {
  padding: 0 20px 60px;
  text-align: center;
}
.cosmos .shop_head_inner p {
  padding-bottom: 0;
  background-image: none;
}

.shop_head_inner img {
  width: 100%;
}
.yumemachibito .shop_head_inner img {
  width: 100%;
  margin: 0 20px;
}


@media screen and (min-width:768px){
  .yumemachibito {

  }

  .shop_head {
    background-position: center top 56px;
    background-size: 180px 68px;
  }
  .yumemachibito .shop_head {
    padding: 0;
    background-image: url(../images/shopping/bg_yumemachi_head.png);
  }
  .shop_head_inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 150px 50px 110px 50px;
    background-image: url(../images/bg_cloud_01.png),url(../images/bg_cloud_02.png);
    background-repeat: no-repeat,no-repeat;
    background-size: 250px 82px,250px 82px;
    background-position: left top 60px,right bottom;
  }
  .cosmos .shop_head_inner {
    background-image: url(../images/bg_cloud_01.png);
    background-repeat: no-repeat;
    background-size: 250px 82px;
    background-position: left top;
  }
  .shop_head_inner p {
    padding-bottom: 60px;
  }
  .shop_head_inner img {
    width: 100%;
  }
}



/* 特産館「夢街人」 */

/* 名品紹介 */

.masterprice {
  background-color: #FFFFFF; 
  padding: 40px 20px 40px 20px;
  outline: 2px solid #D9CDBE;
  outline-offset: -8px;
}
.masterprice h2 {
  background-image: url(../images/bg_h2_wave.png);
  background-repeat: no-repeat;
  background-position: center top;
  padding-top: 60px;
}
.masterprice_inner {
  margin: 0 auto;
  padding: 30px 20px;
}
.tab_container_wrap {
  background-color: #F0EBE4;
  padding: 20px;
  margin-bottom: 20px;
}
.tab_container_wrap p {
  text-align: center;
  margin-bottom: 20px;
}
.tab_container {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 10px;
}

.tab {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 18px;
  padding: 10px;
  width: 100%;
  background-color: #f8f8f8;
  cursor: pointer;
  border: 1px solid #BA9E5C;
  margin-top: -1px;
}

.tab.active {
  background-color: #BA9E5C;
  color: #FFFFFF;
}

.item_group {
  display: none; /*必須*/
}
.item_group.show {
  display: block; /*必須*/
}

.items_wrap {
  padding: 20px;
}

.item_block {
  margin-bottom: 40px;
}
.item_block_img {
  width: 100%;
  aspect-ratio: 340 / 226;
  margin-bottom: 10px;
  display: block;
  overflow: hidden;
}
.item_block_img img {
  width: 100%;
  aspect-ratio: 340 / 226;
  object-fit: cover;
}
.item_name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 18px;
  display: block;
  margin-bottom: 10px;
}
.item_tag {
  font-weight: 700;
  font-size: 14px;
  color: #D32D25;
  display: block;
  margin-bottom: 10px;
}

.btn_item {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 20px;
  height: 40px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  background-color: #BA9E5C;  
  width: 100%;
  color: #FFFFFF;
}

.btn_item::after {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  background-image: url(../images/arrow_btn_w.png);
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (min-width:768px){
  .masterprice {
    padding: 100px 20px 50px 20px;
    outline-offset: -8px;
  }
  .masterprice h2 {
    background-image: url("../images/bg_h2_wave_2.png");
    background-repeat: no-repeat;
    background-position: center top;
    padding-top: 0;
  }
  .masterprice_inner {
    margin: 0 auto;
    padding: 30px 0;
    max-width: 1100px;
  }
  .tab_container_wrap {
    padding: 20px;
    margin-bottom: 20px;
  }
  .tab_container_wrap p {
    margin-bottom: 20px;
  }
  .tab_container {
    max-width: 800px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto 10px;
  }

  .tab {
    font-size: 20px;
    padding: 10px 0;
    width: calc(98% / 4);
    margin-top: 0;
    margin-right: -1px;
  }

  .tab.active {
    background-color: #BA9E5C;
    color: #FFFFFF;
  }

  .item_group {
    display: none; /*必須*/
  }
  .item_group.show {
    display: block; /*必須*/
  }

  .items_wrap {
    padding: 20px;
  }

  .item_group_inner {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    column-gap: 5%;
  }
  .item_block {
    margin-bottom: 60px;
    width: 30%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .item_block_img {
    width: 100%;
    aspect-ratio: 340 / 226;
  }
  .item_block_img img {
    width: 100%;
    aspect-ratio: 340 / 226;
    object-fit: cover;
  }
  .item_name {
    font-size: 20px;
    display: block;
    padding: 10px 0;
    width: 100%;
  }
  .item_tag {
    display: block;
    padding: 5px 0;
  }

  .btn_item {
    column-gap: 20px;
    height: 28px;
    font-size: 16px;
    margin: 0;
    background: none; 
    color: #BA9E5C;
    width: 130px;
    justify-content: flex-end;
  }
  .btn_item::after {
    width: 28px;
    height: 28px;
    background-image: url("../images/arrow_beige.png");
  }
}


/* お支払い方法のご案内 */

.payment {
  padding: 60px 20px;
}
.payment_wrap {
  background-color: #FFFFFF;  
  padding: 20px;
}
.payment p {
  text-align: center; 
  font-size: 14px;
  margin-bottom: 20px;
}
.payment p.payment_head {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
}
.payment_inner {
  
}
.payment_block {
  border: 2px solid #D9CDBE;
  padding: 10px;
  margin-bottom: 10px;
}
.payment_block p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 18px;
}
.payment_block img {
 width: 100%; 
}
.pay_caution {
  color: #D32D25;
  font-size: 14px;
  text-align: left;
}

@media screen and (min-width:768px){
  .payment {
    padding: 80px 0;
    
  }
  .payment_wrap {
    padding: 40px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .payment p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .payment p.payment_head {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
  }
  .payment_inner {
    display: flex;
    justify-content: space-between;
  }
  .payment_block {
    padding: 10px;
    margin-bottom: 10px;
    width: 46%;
  }
  .payment_block p {

    font-size: 20px;
  }
  .payment_block img {
   width: 100%; 
  }
  .pay_caution {
    font-size: 16px;
    text-align: center;
  }

}


/* 夢街人の商品個別ページ */

.shopitem {
  padding: 46px 20px 80px;
  background-image: url(../images/bg_cloud_01.png),url(../images/bg_cloud_02.png);
  background-repeat: no-repeat,no-repeat;
  background-size: 140px 46px,140px 46px;
  background-position: left 20px top,right 20px bottom;
}
.shopitem_wrap {
  background-color: #FFFFFF; 
  padding: 30px;
  outline: 2px solid #D9CDBE;
  outline-offset: -8px;
  margin-bottom: 50px;
}
.shopitem_inner {
  width: 100%;
}
h1.shopitem_name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 40px;
}
.shopitem_wrap img {
  width: 100%;
  margin-bottom: 40px;
  display: block;
}

@media screen and (min-width:768px){
  .shopitem {
    max-width: 1200px;
    margin: 0 auto;
    padding: 82px 0 100px;
    background-size: 250px 82px,250px 82px;
    background-position: left top,right bottom;
  }
  .shopitem_wrap {
    width: 100%;
    margin: 0 auto 70px;
    padding: 60px 0;
  }
  .shopitem_inner {
    max-width: 1000px;
    margin: 0 auto;
  }
  h1.shopitem_name {
    font-size: 26px;
    margin-bottom: 40px;
  }
  .shopitem_wrap img {
    max-width: 600px;
    margin-bottom: 40px;
  }
}



/* コスモス */

.cosmos {
  
}
.season {
  padding: 20px;

}
.season_inner {
  position: relative;
  margin-bottom: 40px;
}

.season_inner img {
  width: 100%;
}

.calendar {
  padding: 46px 20px;
  background-image: url(../images/bg_cloud_02.png);
  background-repeat: no-repeat;
  background-size: 140px 46px;
  background-position: right 20px top;
}
.calendar_wrap {
  background-color: #FFFFFF; 
  padding: 30px;
  outline: 2px solid #D9CDBE;
  outline-offset: -8px;
  margin-bottom: 50px;
}
.calendar h2 {
  background-image: url(../images/bg_flag.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 82px 44px;
  padding-top: 50px;
}

.calendar_inner {
  
}
.calendar_img {
  width: 100%;
  overflow-x: scroll;
  margin-bottom: 20px;
}
.calendar_img img {
  width: 800px;
  height: 690px;
}



@media screen and (min-width:768px){
  .cosmos {
    
  }
  .season {
    padding: 0 0 90px;
    background-size: 250px 82px;
  }
  .season_inner {
    max-width: 1100px;
    margin: 0 auto 100px auto;
  }

  .season_inner img {
    width: 100%;
  }
  .season_inner p {
    width: 75%;
  }
  .season_inner:nth-child(even) p {
    margin: -80px auto auto 0;
  }
  .season_inner:nth-child(odd) p {
    margin: -80px 0 auto auto;
  }
  .calendar {
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto 50px;
    background-size: 250px 82px;
    background-position: right 20px top;
  }
  .calendar_wrap {
    padding: 60px 0;
  }
  .calendar h2 {
    background-image: url("../images/bg_flag_2.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 632px 44px;
    padding-top: 0;
  }
  .calendar_inner {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
  }
  .calendar_img {
    width: 100%;
    overflow-x: hidden;
    margin-bottom: 40px;
  }
  .calendar_img img {
    width: 100%;
    height: auto;
  }
}


.fadeIn_left {
  opacity: 0;
  transform: translate(-50%, 0);
  transition: 2s;
}
.fadeIn_left.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_right {
  opacity: 0;
  transform: translate(50%, 0);
  transition: 2s;
}
.fadeIn_right.is-show {
  transform: translate(0, 0);
  opacity: 1;
}


/*------------------
レストラン・リラクゼーション
------------------*/

/* おすすめメニュー*/

.menu {
  
}
.inner_menu {
  padding: 0 20px 40px;
}
.shishigin .inner_menu {
  background: linear-gradient(180deg, transparent 0%, transparent 20%, #D98A2E 20%, #D98A2E 100%);
  padding: 0 20px 40px;
}
.hana .inner_menu {
  background: linear-gradient(180deg, transparent 0%, transparent 20%, #D32D25 20%, #D32D25 100%);
  padding: 0 20px 40px;
}
.mominoki .inner_menu {
  background: linear-gradient(180deg, transparent 0%, transparent 20%, #1A7740 20%, #1A7740 100%);
  padding: 0 20px 40px;
}
.atrest .inner_menu {
  background: linear-gradient(180deg, transparent 0%, transparent 20%, #2998B6 20%, #2998B6 100%);
  padding: 0 20px 40px;
}
.slider_menu {
  width: 100%;
}
.menu_img {
  width: 100%;
}
.menu_img img {
  width: 100%;
  aspect-ratio: 352 / 234;
  object-fit: cover;
}
.caption {
  display: block;
  color: #FFFFFF;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin: 10px 40px;
}

.slide-page-arrow_white {
  cursor: pointer;
  margin: auto;
  position: absolute;
  top: auto;
  bottom: 0;
  width: 36px;
  height: 36px;
  z-index: 100;
}
.prev-page-arrow_white {
  left: 0;
}
.next-page-arrow_white {
  right: 0;
}

@media screen and (min-width:768px){
  .menu {
    
  }
  .inner_menu {
    padding: 0;
  }
  .slider_menu {
    max-width: 1100px;
    margin: 0 auto;
  }
  .menu_img {
    width: 340px;
    margin: 0 10px;
  }
  .menu_img img {
    width: 100%;
    aspect-ratio: 352 / 234;
    object-fit: cover;
  }
  .caption {
    font-size: 20px;
    margin: 10px 0;
  }

  .slide-page-arrow_white {
    cursor: pointer;
    margin: auto;
    position: absolute;
    top: 40%;
    bottom: auto;
    width: 36px;
    height: 36px;
    z-index: 100;
  }
  .prev-page-arrow_white {
    left: -50px;
  }
  .next-page-arrow_white {
    right: -50px;
  }
}


/* 価格表 */

.pricelist {
  padding: 60px 20px;
}
.shishigin .pricelist {
  background-color: #F9E5CE;  
}
.hana .pricelist {
  background-color: #F8D0CA;  
}
.mominoki .pricelist {
  background-color: #CFE0D1;  
}
.atrest .pricelist {
  background-color: #D1E5E6;  
}

.pricelist_wrap {
  background-color: #FFFFFF; 
  padding: 30px;
  outline: 2px solid #D9CDBE;
  outline-offset: -8px;
}
.pricelist_inner {
  margin-bottom: 20px;
}
.price_category {
  display: inline-block;
  padding: 10px;
  color: #FFFFFF;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}
.price_category span {
  font-size: 0.8em;
}
.shishigin .price_category {
  background-color: #D98A2E;
}
.hana .price_category {
  background-color: #D32D25;
}
.mominoki .price_category {
  background-color: #1A7740;
}
.atrest .price_category {
  background-color: #2998B6;
}

.price_exp {
  display: block;
  font-size: 14px;
}
.dish_block_wrap {
  margin-bottom: 40px;
}
.dish_block {
  position: relative;
  padding: 10px 0;
}
.shishigin .dish_block {
  border-bottom: 1px solid #D9CDBE;
}
.hana .dish_block {
  border-bottom: 1px solid #D9CDBE;
}

.dish_name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  display: block;
  margin: 0 0 20px;
}
.shishigin .dish_name {
  color: #914E00;
}
.hana .dish_name {
  color: #D32D25;
}
.mominoki .dish_name {
  color: #1A7740;
}

.dish_name_long {
  padding-bottom: 24px;
}
.dish_exp {
  font-size: 14px;
  display: block;
}
.dish_price {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-weight: 700;
}
.shishigin .dish_price {
  color: #914E00;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}
.hana_price {
  text-align: right;  
}
.hana_price .grade {
  padding-left: 20px;
}

.hana .dish_price {
  color: #D32D25;
}
.dish_price_long {
  top: auto;
  bottom: 10px;
}
.dish_price span {
  font-size: 28px;
}

.mominoki .dish_price {
  color: #1A7740;
}

.atrest .dish_price {
  color: #2998B6;
}

.tenant_info {
  padding: 30px 10px 20px;
}
.shishigin .tenant_info {
  background-color: #FCF3EA;
}
.hana .tenant_info {
  background-color: #FDE9E8
}
.mominoki .tenant_info {
  background-color: #E6F1EB
}
.atrest .tenant_info {
  background-color: #E8F5F8
}
.tenant_info dl {
  font-size: 14px;
}
.tenant_info dl dt {
  font-weight: 700;
}
.shishigin .tenant_info dl dt {
  color: #D98A2E;
}
.hana .tenant_info dl dt {
  color: #D32D25;
}
.mominoki .tenant_info dl dt {
  color: #1A7740;
}
.atrest .tenant_info dl dt {
  color: #2998B6;
}
.tenant_info dl dd {
  margin-bottom: 10px;
}
.tenant_info dl dd img {
  width: 100%;
}

.dish_block_waku_wrap {
 
}
.dish_block_waku1,
.dish_block_waku2 {
  padding: 0 20px 20px;
  border: 1px solid #D32D25;
  margin-bottom: 20px;
}
.dish_block_waku1 .price_category,
.dish_block_waku2 .price_category {
  margin-left: -20px;
}
.dish_block_waku1 .dish_exp,
.dish_block_waku2 .dish_exp {
  margin-bottom: 20px;
}
.setmenu {
  display: flex;
  justify-content: space-between;
  width: 90%;
  margin: 0 auto;
}
.setname {

}
.setprice {

}


@media screen and (min-width:768px){
  .pricelist {
    padding: 80px 0;
  }
  .pricelist_wrap {
    padding: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .pricelist_inner {
    max-width: 1000px;
    margin: 0 auto 20px;
  }
  .price_category {
    padding: 5px 10px;
    font-size: 20px;
    margin-bottom: 20px;
  }
  .dish_block_wrap {
    display: flex;
    flex-wrap: wrap;
  }
  .dish_block {
    padding: 20px;
    width: 100%;
  }
  .dish_block_2line {
    width: calc(48% - 40px);
    padding: 20px 28px;
  }
  .dish_block_3line {
    width: calc(32% - 60px);
    padding: 20px 36px;
  }
  .dish_block_4line {
    width: calc(25% - 40px);
    padding: 20px 36px;
  }
  .dish_block_other {
    width: calc(70% - 100px);
    padding: 20px 0 20px 110px;
  }
  .dish_name {
    font-size: 20px;
    line-height: 1.4;
    display: inline-block;
    margin-bottom: 0;
  }
  .dish_exp {
    font-size: 16px;
    display: inline-block;
    padding-left: 20px;
  }
  .dish_price {
    font-size: 20px;
  }
  .shishigin .dish_price {
    top: 10px;
    right: 0;
  }
  .dish_price span {
    font-size: 32px;
  }
  .tenant_info {
    max-width: 1000px;
    padding: 30px 50px 20px;
    display: flex;
    align-items: flex-start;
    margin: 0 auto;
  }
  .tenant_info dl {
    font-size: 16px;
    width: 50%;
    display: flex;
    flex-wrap: wrap;
  }
  .tenant_info dl dt {
    width: 25%;
  }
  .tenant_info dl dd {
    width: 75%;
    margin-bottom: 10px;
  }
  .tenant_info dl dd img {
    width: 100%;
  }
  .tenant_info .bnr {
    width: 50%;
  }
  .dish_block_waku_wrap {
    display: flex;
    column-gap: 30px;
    padding: 20px;
  }
  .dish_block_hanadrink {
    display: flex;
  }
  .dish_block_drink {

  } 
  .hana_left {
    width: 20%;
  }
  .hana_right {
    width: 80%;
  }
  .hana_right .dish_block_drink {
    float: left;
    margin-right: 40px;
  }
  .hana_right .dish_block_drink .setname {
    margin-right: 20px;
  }
  
}


/* もみの木HOUSE*/

.mominoki_catchcopy {
  border-top: 1px solid #1A7740;
  border-bottom: 1px solid #1A7740;
  text-align: center;
  padding: 10px 0;
  margin: 40px 20px;
}
.mominoki_catchcopy p {
  padding: 0;
}
.mominoki_catchcopy_head {
  color: #1A7740;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.mominoki_features {
  padding: 0 20px;
}
.mominoki_features_block {
  margin-bottom: 40px;
}
.mominoki_features_block img {
  width: 100%;
  margin-bottom: 20px;
}
.mominoki_features_block p {
  padding: 0;
  text-align: left;
}

.mominoki_features_head {
  color: #1A7740;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}
.service_list_wrap {
  margin-bottom: 40px;
}
.service_list_left {
  
}
.service_list_right {
  
}
.service_exp {
  margin-bottom: 20px;
}
.service_block {
  border-bottom: 1px solid #D9CDBE;
  padding: 10px 0;
}
.service_name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-weight: 700;
  display: block;
}
.service_name span {
  font-size: 14px;
}
.mominoki .service_price {
  font-size: 14px;
  display: block;
  text-align: right;
}
.mominoki .service_price .p1 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 28px;
  font-weight: 700;
  padding-left: 10px;
}
.mominoki .service_price .p2 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.mominoki .service_name {
  color: #1A7740;
}
.mominoki .mominoki .service_price .p1,
.mominoki .mominoki .service_price .p2 {
  color: #1A7740;
}
img.paypay {
  width: 92px !important;
  height: auto;
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
}
.bnr_tenant_info_line {
  display: flex;
  align-items: center;
  padding: 10px;
  color: #FFFFFF;
  text-decoration: none;
  background-image: url(../images/arrow_slide_next_white.png);
  background-repeat: no-repeat;
  background-size: 44px 44px;
  background-position: right 20px center;
  background-color: #00B148;
  margin-bottom: 10px;
}
.bnr_tenant_info_line img {
  width: 120px;
  height: 120px;
}
.bnr_tenant_info_line p {
  padding: 15px 0;
  margin: 0 10px;
  border-top: 1px solid #FFFFFF;
  border-bottom: 1px solid #FFFFFF;
  width: 100%;
}
.bnr_tenant_info_blog {
  display: block;
  background-color: #1A7740;
  padding: 10px;
  color: #FFFFFF;
  text-decoration: none;
  background-image: url(../images/arrow_slide_next_white.png);
  background-repeat: no-repeat;
  background-size: 44px 44px;
  background-position: right 20px center;
}


@media screen and (min-width:768px){
  .mominoki_catchcopy {
    padding: 10px 0;
    margin: 60px 20px;
  }
  .mominoki_catchcopy p {
    padding: 0;
  }
  .mominoki_catchcopy_head {
    font-size: 20px;
  }

  .mominoki_features {
    padding: 0;
    display: flex;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto 60px auto;
  }
  .mominoki_features_block {
    width: 48%;
    margin-bottom: 0;
  }
  .mominoki_features_block img {
    width: 100%;
    margin-bottom: 20px;
  }
  .mominoki_features_block p {

  }
  .mominoki_features_head {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .service_list_wrap {
    margin-bottom: 40px;
    display: flex;
  }
  .service_list_left {
    width: 20%;
  }
  .service_list_right {
    width: 80%;
  }
  .service_exp {
    margin-bottom: 20px;
  }
  .service_block {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .service_name {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 18px;
    font-weight: 700;
    display: block;
  }
  .service_name span {
    font-size: 14px;
  }
  .mominoki .service_price {
    font-size: 14px;
    display: block;
    text-align: right;
  }
  .mominoki .service_price .p1 {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 28px;
    font-weight: 700;
    padding-left: 10px;
  }
  .mominoki .service_price .p2 {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 18px;
    font-weight: 700;
  }
  .tarot .service_price .p2 {
    padding-right: 30px;
  }
  .mominoki .service_name {
    color: #1A7740;
  }
  .mominoki .service_price .p1,
  .mominoki .service_price .p2 {
    color: #1A7740;
  }
}


/* アットレスト*/

.atrest_features {
  padding: 0 20px;
}
.atrest_features_block {
  margin-bottom: 40px;
}
.atrest_features_block img {
  width: 100%;
  margin-bottom: 20px;
}
.atrest_features_block p {
  padding: 0;
  text-align: left;
}

.atrest_features_head {
  color: #2998B6;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}
.atrest .service_block {
  display: flex;
  flex-wrap: wrap;
}
.atrest .service_price {
  font-size: 14px;
  display: block;
  width: 45%;
}
.atrest .service_price .p1 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 28px;
  font-weight: 700;
  padding-left: 10px;
}
.atrest .service_price .p2 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.atrest .service_name {
  color: #2998B6;
}
.atrest .service_price .p1,
.atrest .service_price .p2 {
  color: #2998B6;
}
.atrest_insta {
  display: flex;
  padding: 10px 0;
}
.atrest_insta img {
  display: block;
  width: 48px !important;
  height: 48px !important;
}
.atrest_insta span {
  display: block;
  padding-left: 10px;
}

@media screen and (min-width:768px){
  .atrest_features {
    padding: 0;
    display: flex;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto 60px auto;
  }
  .atrest_features_block {
    width: 48%;
    margin-bottom: 0;
  }
  .atrest_features_block img {
    width: 100%;
    margin-bottom: 20px;
  }
  .atrest_features_block p {

  }
  .atrest_features_head {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .atrest .service_block {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .atrest .service_price {
    font-size: 16px;
    display: block;
    width: 25%;
  }
  .atrest .service_price_3 {
    margin-right: 30px;
  }
  .atrest .service_price .p1 {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 28px;
    font-weight: 700;
    padding-left: 10px;
  }
  .atrest .service_price .p2 {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 18px;
    font-weight: 700;
  }

  .atrest .service_name {
    color: #2998B6;
  }
  .atrest .service_price .p1,
  .atrest .service_price .p2 {
    color: #2998B6;
  }
  .atrest_insta img {
    display: block;
    width: 38px !important;
    height: 38px !important;
  }
}



/*------------------
アクセス・周辺の見どころ
------------------*/

/* アクセス */

.access_spot {
  
}
.access {
  background-image: url(../images/bg_cloud_01.png);
  background-repeat: no-repeat;
  background-size: 140px 46px;
  background-position: left 20px top;
  padding: 50px 0;
}
.access h2 {
  background-image: url(../images/bg_h2_wave.png);
  background-repeat: no-repeat;
  background-position: center top;
  padding-top: 60px;
}
.access_map {
  width: 100%;
  aspect-ratio: 39 / 60;
}
.access_map iframe {
  width: 100%;
  aspect-ratio: 39 / 60;
}
.access_detail {
  padding: 20px 20px;
}
.access_root {
  margin-bottom: 50px;
}
.access_title {
  font-size: 18px;
  font-weight: 700;
  margin-top: 25px;
}
.access_title span {
  color: #D32D25;  
}
.parking {
  
}
.parking img {
  width: 100%;
}

@media screen and (min-width:768px){
  .access_spot {

  }
  .access {
    background-image: url(../images/bg_cloud_01.png);
    background-repeat: no-repeat;
    background-size: 250px 82px;
    background-position: left 20px top;
    padding: 50px 0;
  }
  .access h2 {
    background-image: url(../images/bg_h2_wave_2.png);
    background-position: center top 60px;
    padding-top: 60px;
  }
  .access_map {
    max-width: 1100px;
    aspect-ratio: 11 / 3;
    margin: 0 auto;
  }
  .access_map iframe {
    width: 100%;
    aspect-ratio: 11 / 3;
  }
  .access_detail {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    column-gap: 50px;
    padding: 40px 20px;
  }
  .access_root {
    width: 50%;
    margin-bottom: 50px;
  }
  .access_title {
    font-size: 20px;
  }
  .access_title span {
 
  }
  .parking {
    padding-top: 30px;
    max-width: 430px;
  }
  .parking img {
    width: 100%;
  }
}


/* 施設案内 */

.facility {
  padding: 60px 20px;
}
.facility h2 {
  background-image: url(../images/bg_h2_wave.png);
  background-repeat: no-repeat;
  background-position: center top;
  padding-top: 60px;
}
.facility_inner {
  
}
.facility_block {
  margin-bottom: 40px;
}
.facility_block img {
  width: 100%;
}
.facility_name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-weight: 700;
}

@media screen and (min-width:768px){
  .facility {
    padding: 80px 0 160px;
  }
  .facility h2 {
    background-image: url(../images/bg_h2_wave_2.png);
    background-position: center top 60px;
    padding-top: 60px;
  }
  .facility_inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    column-gap: 3%;
  }
  .facility_block {
    width: calc(94% / 3);
    
  }
  .facility_block img {
    width: 100%;
  }
  .facility_name {
    font-size: 20px;
  }
}


/* 加東市の紹介 */

.about_kako {
  background-image: url(../images/bg_cloud_01.png);
  background-repeat: no-repeat;
  background-size: 140px 46px;
  background-position: right top;
  padding: 46px 0;
}
.about_kako_inner {
  background-color: #F0EBE4;  
}
.about_kako_inner h2 {
  position: relative;
  padding-top: 70px;
}
.about_kako_inner h2::before {
  content: "";
  width: 212px;
  height: 117px;
  background-image: url(../images/bg_koi_2.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.kako_img_sp {
  width: 100%;
}
.kako_img_pc {
  display: none;
}
.about_kako_exp {
  padding: 20px;
}

@media screen and (min-width:768px){
  .about_kako {
    background: linear-gradient(180deg, transparent 0%, transparent 78px, #F0EBE4 78px, #F0EBE4 100%);
    padding: 0;
    height: 600px;
    margin-bottom: 80px;
  }
  .about_kako_inner {
    background-image: url(../images/bg_cloud_01.png);
    background-repeat: no-repeat;
    background-size: 250px 82px;
    background-position: right top;
    background-color: hsla(0,0%,100%,0.00);
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
  }
  .about_kako_inner h2 {
    position: relative;
    padding: 100px 0 0 20px;
    z-index: 10;
    text-align: left;
  }
  .about_kako_inner h2::before {
    content: "";
    width: 280px;
    height: 154px;
    background-image: url(../images/bg_koi_2.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: auto;
    right: 30px;
    margin: 0 0 auto auto;
  }
  .kako_img_sp {
    display: none;
  }
  .kako_img_pc {
    display: block;
    margin-left: calc(50% - 50vw);
    width: 50vw;
    background-image: url(../images/access/about_kato_pc.png);
    background-repeat: no-repeat;
    background-position: right 20px top;
    background-size: auto 100%;
    height: 600px;
  }
  .kako_img_pc img {
    height: 600px;
    aspect-ratio: 680 / 608;
  }
  .about_right {
    width: 50%;

  }
  .about_kako_inner img {
    width: 100%;
  }
  .about_kako_exp {
    padding: 20px;
    z-index: 11;
  }
}


/* 周辺の見どころ */

.nearby_spots {
  padding: 46px 20px 80px;
  background-image: url(../images/bg_cloud_01.png);
  background-repeat: no-repeat;
  background-size: 140px 46px;
  background-position: left 20px top;
}
.nearby_spots_wrap {
  background-color: #FFFFFF; 
  padding: 100px 20px 50px 20px;
  outline: 2px solid #D9CDBE;
  outline-offset: -8px;
}
.nearby_spots h2 {
  background-image: url(../images/bg_h2_wave.png);
  background-repeat: no-repeat;
  background-position: center top;
  padding-top: 60px;
}
.nearby_spots_inner {
  margin: 0 auto;
  padding: 30px 20px;
}
.nearby_spots_block {
  margin-bottom: 40px;
}
.nearby_spots_block img {
  width: 100%;
}
.nearby_spots_name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-weight: 700;
}

@media screen and (min-width:768px){
  .nearby_spots {

  }
  .nearby_spots_wrap {
    padding: 100px 20px 50px 20px;
    outline-offset: -8px;
  }
  .nearby_spots h2 {
    background-image: url(../images/bg_h2_wave_2.png);
    background-position: center top 60px;
    padding-top: 60px;
  }
  .nearby_spots_inner {
    margin: 0 auto;
    padding: 30px 0;
    max-width: 1100px;
    display: flex;
    flex-wrap: wrap;
    column-gap: 5%;
  }
  .nearby_spots_block {
    margin-bottom: 40px;
    width: 30%;
  }
  .nearby_spots_block img {
    width: 100%;
  }
  .nearby_spots_name {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 18px;
    font-weight: 700;
  }
}



/*------------------
お知らせ
------------------*/

.news_section {
  padding: 46px 20px 80px;
  background-image: url(../images/bg_cloud_01.png),url(../images/bg_cloud_02.png);
  background-repeat: no-repeat,no-repeat;
  background-size: 140px 46px,140px 46px;
  background-position: left 20px top,right 20px bottom;
}
.news_wrap {
  background-color: #FFFFFF; 
  padding: 30px;
  outline: 2px solid #D9CDBE;
  outline-offset: -8px;
  margin-bottom: 50px;
}
@media screen and (min-width:768px){
  .news_section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 82px 0 100px;
    background-size: 250px 82px,250px 82px;
    background-position: left top,right bottom;
  }
  .news_wrap {
    width: 100%;
    margin: 0 auto 70px;
    padding: 60px 0;
  }
}


/* お知らせの一覧ページ */

.news_all_list {
  width: 100%;
}
.news_all_list_block {
  padding: 0;
}
.news_all_list_img {
  margin-bottom: 5px;
}
.news_all_list_img img {
  width: 100%;
}
.news_all_list_txt {
  border-bottom: 2px solid #D9CDBE;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.news_all_list_txt span {
  display: block;
}

.news_all_list_txt .news_date {
  font-size: 14px;
  color: #AAAAAA;
  margin-bottom: 10px;
}
.news_all_list_txt .news_title a {
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  text-decoration: none;
  margin-bottom: 10px;
  display: block;
}
.news_all_list_txt .news_detail {
  font-size: 14px;
}
.news_all_list_txt .news_detail a {
  color: #D32D25;
  text-decoration: underline;
}

@media screen and (min-width:768px){
  
  .news_all_list {
    max-width: 1000px;
    width: 90%;
    margin: 0 auto;
    padding: 20px 0;
  }
  .news_all_list_block {
    padding: 0;
    display: flex;
    column-gap: 30px;
    margin-bottom: 30px;
  }
  .news_all_list_img {
    width: 240px;
    height: 160px;
    margin-bottom: 0;
  }
  .news_all_list_img img {
    width: 240px;
    height: 160px;
    object-fit: cover;
  }
  .news_all_list_txt {
    padding: 10px 0 20px;
    margin-bottom: 20px;
    width: 100%;
  }
  .news_all_list_txt span {
    display: block;
  }

  .news_all_list_txt .news_date {
    font-size: 14px;
  }
  .news_all_list_txt .news_title a {
    font-size: 20px;
  }
  .news_all_list_txt .news_detail {
    font-size: 14px;
  }
  .news_all_list_txt .news_detail a {
    display: block;
    text-align: right;
  }
}


/* ページネーション */

.pagination {
  display: flex;
  justify-content: center;
}
 
 
.nav-links{
   display:flex;
}
.page-numbers{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  width: 44px;
  height: 44px;
  color: #D32D25;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #D32D25;
  text-decoration: none;
}
.page-numbers.current{
   background:#D32D25;
   color:#ffffff;
}
.page-numbers.prev,
.page-numbers.next{
   display: none;
}
.page-numbers.dots{
   background:transparent;
   box-shadow:none;
     border:none;
   color:#D32D25; 
}



/* お知らせの個別ページ */


.news_single_inner {
  width: 100%;
}
.news_single_inner img {
  max-width: 100%;
}
h1.news_single_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 40px;
}


@media screen and (min-width:768px){
  .news_single_inner {
    max-width: 1000px;
    margin: 0 auto;
  }
  h1.news_single_title {
    font-size: 26px;
    margin-bottom: 40px;
  }

}




@media screen and (min-width:768px){
  /*タブレット以上　画面幅を768pxまでに設定*/
}

.price_time{
	margin-left:30px;
}

/*250327 yumemachibitoページのページネーション*/
.pagination-wrap {
  margin-top: 30px;
  text-align: center;
}

.pagination-wrap .page-num {
  display: inline-block;
  margin: 0 5px;
  padding: 8px 14px;
  font-size: 14px;
  background: #f0f0f0;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.pagination-wrap .page-num:hover {
  background: #ddd;
}

.pagination-wrap .page-num.active {
  background-color: #c0a060;
  color: #fff;
  font-weight: bold;
  pointer-events: none;
}



/*250404 Convenience stores*/
.image-container {
  display: flex;
  flex-direction: column; /* デフォルトは縦並び */
  gap: 32px; /* 画像間の隙間 */
	width:90%;
	margin:0 auto;
}

.image-container img {
  width: 100%;
  height: auto;
}

/* PCサイズのときだけ横並びにする */
@media screen and (min-width: 768px) {
  .image-container {
    flex-direction: row; /* 横並び */
  }

  .image-container img {
    width: 50%; /* 横並びにするため幅50%に調整 */
  }
}

.inner_section p {
	text-align:center;
	margin-bottom:40px;
}


.shop_info_fami {
  background-color: #FFFFFF;
  background-image: url(../images/bg_h2_wave_2.png);
  background-position: center top 80px, center bottom;
        background-repeat: no-repeat, no-repeat;
        background-size: 512px 34px, 164px 145px;
}


@media screen and (max-width:768px){
  .shop_info_fami {
       background-color: #FFFFFF;
    background-image: url(../images/bg_h2_wave.png);
    background-position: center top 30px, center bottom;
    background-repeat: no-repeat, no-repeat;
    background-size: 92px 34px, 164px 145px;
  }
}

.sake_banner{
	margin-bottom:90px;
}

@media screen and (max-width:768px){
	.sake_banner{
		text-align: center;
	}

}