@charset "UTF-8";
/*
Theme Name: atsukita
*/
@charset "utf-8";
/* CSS Document */
* {
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
  font-family: 'Kiwi Maru', serif;
  color: #442f38;
}
a{
	word-break: break-all;
}
.decol {
  font-family: 'Kaisei Decol', serif;
}
.flexbox {
  display: flex;
}
.flexbox_pc {
  display: flex;
}
.center {
  text-align: center;
}
pre {
  white-space: pre-wrap;
  line-height: 1.1;
}
/*.2_column_pc {
  justify-content: space-around;
}*/
.pc_2column {
  margin: 0 auto;
}
.pc_2column img {
  margin-bottom: 6vw;
  max-height: 40vh;
  object-fit: cover !important;
  width: 26vw;
  height: 16vw;
  margin: 0 auto;
  margin-right: 1.5vw;
  margin-left: 1.5vw;
}
.pc {
  display: block;
}
.sp {
  display: none !important;
}
#wrap {
  overflow: hidden;
}
a[href^="tel"] {
  color: inherit;
  text-decoration: none;
}
img {
  width: 100%;
  display: block;
  height: auto;
}
/*ページトップへ戻るボタン*/
#pageTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99999;
}
#pageTop a {
  display: block;
  z-index: 999;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  background-color: #34623f;
  opacity: 0.8;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  padding-top: 2px;
}
#pageTop:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
  -ms-filter: "alpha(opacity=80)";
}
#pageTop ul li {
  font-size: 2rem !important;
  font-weight: normal;
  text-align: center;
  color: #fff !important;
  padding-top: 0.2em;
}
#pageTop ul li i {
  color: #fff;
}
.flexbox {
  display: flex;
}
/*ページトップへ戻るボタン-end-*/
/**************************************
ヘッダー部分
**************************************/
.logo_img {
  width: 3.8vw;
  height: 3.8vw;
  margin: 0 auto;
}
.logo_outer {
  margin-left: 0vw;
  margin-top: 0.2vw;
}
h1 {
  background: #34623f;
  color: #fff;
  font-weight: 400;
  line-height: 1.8;
  font-size: 0.9vw;
  padding-left: 0.5vw;
}
.h1_title {
  background: #34623f;
  color: #fff;
  font-weight: 400;
  line-height: 1.8;
  font-size: 0.9vw;
  padding-left: 0.5vw;
}
.site_title {
  font-size: 3.5vw;
  font-weight: bold;
  margin-bottom: 1vw;
}
.site_text {
  font-size: 1.2vw;
  padding-left: 0.5vw;
  margin-bottom: 0.4vw;
}
.site_text span {
  font-size: 1.6vw;
  font-weight: 800
}
.team {
  font-size: 0.9vw;
  line-height: 1.2;
  font-weight: 500;
}
.title_area {
  display: flex;
}
.title_navigation {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.navigation_list {
  display: flex;
  width: 54vw;
  justify-content: space-between;
  margin-right: 8vw;
  padding-bottom: 1.5em;
}
.navigation_list li {
  font-size: 1.2vw;
}
/*出てくるナビゲーション*/
.title_navigation {
  position: relative;
  height: 4vw;
}
.fixed {
  position: fixed;
}
.fixed.title_navigation {
  width: 100%;
  z-index: 99999;
  background-color: rgba(52, 98, 63, 0.95);
  height: 3.15vw;
}
.fixed.title_navigation nav ul li a {
  color: #fff;
}
.fixed .site_title {
  color: #fff;
}
.fixed .site_title:before {
  content: url("../../../img/atsukita_rogo_green_maru_mini.png"); /*画像のURL*/
  margin-right: 0.8vw;
  margin-top: 1vw;
}
.fixed .logo_outer {
  display: none;
}
.fixed .site_title {
  font-size: 2.5vw;
  margin-left: 0.5em;
  padding-top: 1.5vw;
  margin-bottom: 0.5vw;
}
.fixed .navigation_list {
  padding-bottom: 0.8vw;
}
main {
  padding-top: 5vw;
  margin-top: -5vw;
}
/*検索むしめがね*/
button, input, select, textarea {
  background-color: transparent;
  border-style: none;
  color: inherit;
}
.search_outer {
  position: fixed;
  top: 6.2vw;
  right: 10px;
  z-index: 600;
}
/*========= 検索窓を開くためのボタン設定 ===========*/
.search_bg {
  /* background: rgba(255,255,255,0.95);*/
  width: 60px;
  height: 60px;
  border-radius: 30px;
  margin-right: 40px;
  margin-top: -41px;
  /*box-shadow: 2px 2px 2px #eee;*/
}
.open-btn1 {
  position: absolute;
  top: -2.5vw;
  right: 50px;
  background: url("https://atsukita-kitaq.jp/img/top/search-solid.png") no-repeat 15px center; /*虫眼鏡アイコンを背景に表示*/
  background-size: 30px 30px;
  width: 50px;
  height: 50px;
  cursor: pointer; /*カーソルを指マークに*/
  transition: 0.5s all;
}
.open-btn1:hover {
  transform: scale(1.2, 1.2);
  transition: 0.5s all;
}
/*クリック後、JSでボタンに btnactive クラスが付与された後の見た目*/
.open-btn1.btnactive {
  background: url("https://atsukita-kitaq.jp/img/top/times-solid.png") no-repeat 10px center; /*閉じるアイコンを背景に表示*/
  background-size: 20px 20px;
  z-index: 99999;
}
/*========= 検索窓の設定 ===============*/
/*==検索窓背景のエリア*/
#search-wrap {
  position: absolute; /*絶対配置にして*/
  top: 6vw;
  right: 20px;
  z-index: 500; /*最背面に設定*/
  opacity: 0; /*透過を0に*/
  width: 0; /*横幅は0に*/
  transition: all 0.4s; /*transitionを使ってスムースに現れる*/
  border-radius: 5px;
}
/*ボタンクリック後、JSで#search-wrapに panelactive クラスが付与された後の見た目*/
#search-wrap.panelactive {
  opacity: 1; /*不透明に変更*/
  z-index: 510; /*全面に出現*/
  width: 280px;
  padding: 20px;
  top: -15px;
  background: #fff;
  right: 5.4vw;
  box-shadow: 2px 2px 2px #eee;
}
/*==検索窓*/
#search-wrap #searchform {
  display: none; /*検索窓は、はじめ非表示*/
}
/*ボタンクリック後、JSで#search-wrapに panelactive クラスが付与された後*/
#search-wrap.panelactive #searchform {
  display: block; /*検索窓を表示*/
}
/*==検索フォームの設定*/
/*==テキスト入力とボタンinput共通設定*/
#search-wrap input {
  -webkit-appearance: none; /*SafariやChromeのデフォルトの設定を無効*/
  outline: none;
  cursor: pointer; /*カーソルを指マークに*/
  color: #666;
}
/*テキスト入力input設定*/
#search-wrap input[type="text"] {
  width: 100%;
  border: none;
  border-bottom: 2px solid #ccc;
  transition: all 0.5s;
  letter-spacing: 0.05em;
  height: 46px;
  padding: 10px;
}
/*テキスト入力inputにフォーカスされたら*/
#search-wrap input[type="text"]:focus {
  background: #eee; /*背景色を付ける*/
}
/*ボタンinput設定*/
#search-wrap input[type="submit"] {
  position: absolute;
  top: 10px;
  right: 30px;
  background: url("https://atsukita-kitaq.jp/img/top/search-solid.png") no-repeat right; /*虫眼鏡アイコンを背景に表示*/
  background-size: 20px 20px;
  width: 30px;
  height: 60px;
}
/*検索むしめがね*/
/*トップスライダー*/
.top_slider {
  margin-bottom: 2vw;
  z-index: 450;
}
.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  background: #fefbf2;
}
.slick-dots li button:before {
  color: #34623f !important;
}
.slick-dots li.slick-active button:before {
  color: #34623f !important;
}
.slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}
.slick-track {
  background: #fefbf2;
}
.slide_outer {
  background: #fefbf2;
  padding-bottom: 3vw;
}
.sec_inner {
  width: 60vw;
  margin: 0 auto;
  background: #fefbf2;
}
.slider {
  background: #fefbf2;
}
.slick-prev:before, .slick-next:before {
  font-family: 'slick';
  font-size: 40px !important;
  color: #34623f !important;
}
.slick-next {
  right: -3vw !important;
}
.slick-prev {
  left: -4vw !important;
}
/*-----------height調整----------*/
.slick-slide {
  height: auto !important;
}
/*------------------------------*/
/*トップスライダーここまで*/
/*スクロールダウン 表示ここから*/
/*スクロールダウン全体の場所*/
.scrolldown4 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  bottom: 1%;
  right: 5%;
  /*矢印の動き1秒かけて永遠にループ*/
  animation: arrowmove 1s ease-in-out infinite;
}
/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove {
  0% {
    bottom: 1%;
  }
  50% {
    bottom: 3%;
  }
  100% {
    bottom: 1%;
  }
}
/*Scrollテキストの描写*/
.scrolldown4 span {
  /*描画位置*/
  position: absolute;
  left: -180px;
  bottom: 80px;
  /*テキストの形状*/
  color: #333;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  bottom: 4.5vw;
  left: -11.5vw;
}
/* 矢印の描写 */
.scrolldown4:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 80px;
  right: 154px;
  /*矢印の形状*/
  width: 2px;
  height: 20px;
  background: #333;
  transform: skewX(-31deg);
  bottom: 4.4vw;
  right: 9.7vw;
}
.scrolldown4:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 80px;
  right: 160px;
  /*矢印の形状*/
  width: 2px;
  height: 50px;
  background: #333;
  bottom: 4.5vw;
  right: 10.1vw;
}
/*スクロールダウン 表示ここまで*/
.pickup_title {
  padding-top: 2.5vw;
  width: 22vw;
  border-radius: 150% 150% 0 0;
  background-color: #34623f;
  height: 13.5vw;
  margin-left: 10vw;
  z-index: 5;
}
.green_bg {
  background: #34623f;
}
.pickup_title p {
  color: white;
  text-align: center;
}
.pickup_title p:first-of-type {
  font-size: 1.4vw;
  margin-bottom: 0.4em;
  font-weight: 400;
}
.pickup_title p:last-of-type {
  font-size: 2vw;
}
.pickup_box {
  border-radius: 15px;
  /* border: solid 15px #34623f;*/
  display: flex;
  width: 60vw;
  margin: 0 auto;
  margin-top: -7vw;
  z-index: 10;
  background-color: #34623f;
  -webkit-transition: all .3s;
  transition: all .3s;
  padding-top: 2vw;
  padding-bottom: 2vw;
}
.pickup_box a {
  display: flex;
  transition: 0.5s all;
}
.pickup_box a:hover {
  transform: scale(1.05, 1.05);
  transition: 0.5s all;
}
.pickup_box:hover {}
.event_bnr {
  width: 45%;
  background-color: #fff;
}
.event_text_outer {
  width: 55%;
  background-color: #fff;
  padding: 1vw;
  position: relative;
}
.event_text_title {
  font-size: 1.8vw;
  font-weight: 500;
  margin-bottom: 1em;
}
.event_text {
  font-size: 1.1vw;
  line-height: 1.25;
  margin-bottom: 1em;
}
.event_moreinfo {
  text-align: right;
  font-weight: 600;
  font-size: 1.1vw;
  position: absolute;
  bottom: 1vw;
  right: 1.5vw;
}
.pickup_area_outer {
  background-color: #fefbf2;
}
.lh2 {
  line-height: 2;
}
.article_list_title {
  margin-left: 15vw !important;
}
/*****************************
探すエリア
********************************/
.search_area {
  padding-top: 2vw;
}
.search_title {
  background: #e6cd45;
  width: 24vw;
  margin-left: 15vw;
  margin-left: 10vw;
}
.search_title h2 {
  color: white;
  font-size: 1.7vw;
  padding: 1.5vw 2.5vw;
  font-weight: 400;
  text-align: right;
  text-shadow: 2px 2px 2px #999;
}
.search_title .h2_genre_area_title {
  color: white;
  font-size: 1.7vw;
  padding: 1.5vw 2.5vw;
  font-weight: 400;
  text-align: right;
  text-shadow: 2px 2px 2px #999;
}
.arrow {
  border-top: 35px solid transparent;
  border-bottom: 35px solid transparent;
  border-left: 35px solid #e6cd45;
}
.title_line {
  border-top: solid 1px #d4d2d5;
  margin-top: -35px;
  margin-left: 40vw;
  margin-right: 8vw;
  z-index: 100;
}
.title_icon {
  width: 7vw;
  margin-left: 9vw;
  margin-top: -4vw;
}
/*****************************************
ジャンルで探す
****************************************/
.genrebox_area {
  display: flex;
  margin-top: 4.5vw;
  justify-content: center;
  margin-bottom: 4vw;
}
.genrebox_outer {
  box-shadow: 2px 2px 2px #eee;
  width: 19.5%;
  margin-right: 1.4vw;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.genrebox_outer:hover {
  opacity: 0.8;
  filter: brightness(104%);
  transform: scale(1.05, 1.05);
}
.genrebox_innerline {
  border: solid 1px #d4d2d5;
  padding: 2.2vw 0.6vw;
  margin: 0.8vw;
}
.genrebox_outer:last-of-type {
  margin-right: 0;
}
.genre_image {
  width: 12vw;
  margin: 0 auto;
  margin-bottom: 1.2vw;
}
.genre_text {
  font-size: 1vw;
  text-align: center;
  color: #665d59;
  line-height: 1.8;
  padding-bottom: 1.2vw;
}
.genre_btn {
  background: #e79686;
  border-radius: 25px;
  width: 68%;
  margin: 0 auto;
  font-size: 1.2vw;
  margin-top: 1.2vw;
  -webkit-transition: all .3s;
  transition: all .3s;
  color: rgb(255, 255, 255);
  font-weight: 500;
  text-align: center;
  display: block;
  padding: 0.4em;
}
.genre_btn a {
  color: #fff;
  font-weight: 500;
  text-align: center;
  display: block;
  padding: 0.4em;
}
.genrebox_innerline hr {
  border-top: dashed 1px #bfafa6;
  width: 70%;
  margin: 0 auto;
}
.bg_yellow {
  background: #fefbf2;
}
/************************************
エリアから探す
******************************************/
.icon_2 {
  width: 7.5vw;
  margin-left: 7vw;
  margin-top: -4.5vw;
}
.search_area_title_outer {
  background: #fefbf2;
}
.search_area_title_outer > div > h2 {
  text-align: center;
}
.search_area_title_outer > div > .h2_genre_area_title {
  text-align: center;
}
.search_area_inner {
  display: flex;
  padding-top: 6vw;
  padding-bottom: 4vw;
}
#map_outer_pc_1 {
  margin-left: 12vw;
}
#map_outer_pc_1 img {
  display: block;
  width: auto;
  height: auto;
}
#map_outer_pc_2 {
  margin-left: 12vw;
}
#map_outer_pc_2 img {
  display: block;
  width: auto;
  height: auto;
}
#map_outer_pc_3 {
  margin-left: 12vw;
}
#map_outer_pc_3 img {
  display: block;
  width: auto;
  height: auto;
}
.map {
  /*width: 800px;
	height: 800px;
	width: 400px;
	height: 400px;*/
}
.area_btn_outer {
  display: flex;
  flex-wrap: wrap;
  width: 38vw;
  margin-left: 5vw;
  height: 15vw;
  margin-top: 2vw;
}
.area_btn {
  background: #34623f;
  border-radius: 25px;
  width: 10vw;
  margin-right: 2.5vw;
  font-size: 1.4vw;
  -webkit-transition: all .3s;
  transition: all .3s;
  height: 2.2em;
}
.area_btn:hover {
  opacity: 0.6;
  filter: brightness(108%);
}
.area_btn a {
  color: #fff;
  font-weight: 500;
  text-align: center;
  display: block;
  padding: 0.6em;
}
.img_line_outer {
  width: 100vw;
}
.img_line_outer ul {
  display: flex;
  padding-top: 2vw;
  padding-bottom: 6vw;
}
/*タブ*/
/*タブ切り替え*/
.tab-wrap {
  display: flex;
  flex-wrap: wrap;
}
.tab-wrap:after {
  content: '';
  width: 100%;
  /*height: 3px;
  background: #da4e6b;*/
  display: block;
  order: -1;
}
.tab-wrap-sp {
  display: none;
}
.tab-label {
  background: #e6cd45;
  font-size: 1.3vw;
  font-weight: 500;
  white-space: nowrap;
  text-align: center;
  padding: 0.6em 0 0.5em 0;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  /*border-radius: 5px 5px 0 0;*/
  flex: 1;
  color: #fff;
  border-radius: 25px;
}
.tab-label:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
  -ms-filter: "alpha(opacity=80)";
}
.tab_label_1 {
  margin-left: 25vw;
  margin-right: 3vw;
  margin-top: 5vw;
}
.tab_label_2 {
  margin-left: 3vw;
  margin-right: 3vw;
  margin-top: 5vw;
}
.tab_label_3 {
  margin-left: 3vw;
  margin-right: 25vw;
  margin-top: 5vw;
}
.tab-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
  display: flex;
}
/* アクティブなタブ */
.tab-switch:checked + .tab-label + .tab-content {
  height: auto;
  overflow: auto;
  opacity: 1;
  transition: .5s opacity;
  padding-top: 4%;
}
/* ラジオボタン非表示 */
.tab-switch {
  display: none;
}
.tab_1:checked + .tab-label {
  background: #ed8a5f;
}
.tab_2:checked + .tab-label {
  background: #ed8a5f;
}
.tab_3:checked + .tab-label {
  background: #ed8a5f;
}
/*==================================================
スライダーのためのcss
===================================*/
.slider_line li p {
  background-color: white;
}
.slider_line li p img {
  opacity: 0.85;
}
/*slickのJSで書かれるタグ内、スライド左右の余白調整*/
.slider_line .slick-slide {
  margin: 0 0px; /*スライド左右の余白調整*/
}
/************************************
ハッシュタグで探す
******************************************/
.icon_3 {
  width: 5vw;
  margin-left: 10vw;
  margin-top: -4.5vw;
}
.tag_area_inner {
  width: 80vw;
  margin: 0 auto;
  padding-top: 5vw;
  padding-bottom: 2vw;
}
.recomend_tag_title {
  margin-left: 7vw;
  margin-bottom: 2vw;
  font-weight: 500;
  font-size: 1.2vw;
}
.recomend_tag_list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  justify-content: center;
}
.recomend_tag {
  background: #e79686;
  border-radius: 25px;
  width: auto;
  margin-right: 1vw;
  margin-left: 1vw;
  font-size: 1.1vw;
  -webkit-transition: all .3s;
  transition: all .3s;
  height: 2.2em;
  margin-bottom: 2.5vw;
}
.recomend_tag:hover {
  opacity: 0.6;
  filter: brightness(108%);
}
.recomend_tag a {
  color: #fff;
  font-weight: 500;
  text-align: center;
  display: block;
  padding: 0.6em 1em;
}
.tag_more_view_btn a {
  width: 20vw;
  display: block;
  padding: 0.6em;
}
#tag {
  height: 5vw;
}
.tag_under_dots {
  width: 20vw;
  margin: 0 auto;
  margin-top: -1vw;
}
#tag_nav_sp {
  text-align: center;
}
#tag_nav {
  text-align: center;
  padding-top: 6vw;
}
.tag_h2 {
  display: inline-block;
  width: auto;
  font-size: 1.5vw;
  text-align: justify;
  line-height: 1.3;
  margin: 0 10vw;
  padding-top: 0vw;
  background-image: url("https://atsukita-kitaq.jp/img/top/tag_under_dots.png");
  background-repeat: repeat-x;
  background-size: 20vw;
  background-position: bottom;
  padding-bottom: 0.7em;
}
.tag_h2 span {
  font-size: 4vw;
  font-weight: 500;
  line-height: 1;
}
.txt-hide {
  display: none;
}
button.view_more {
  display: block;
  outline: 0;
  transition: .3s;
  -erbkit-transition: .3s;
  font-size: 1.2vw;
  text-align: center;
  transition: 0.5s all;
  width: 20vw;
  border: solid 3px #e6cd45;
  line-height: 1.2;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.6);
  margin-top: 4vw;
  margin-bottom: 6vw;
  cursor: pointer;
  padding: 0.6em;
}
button.view_more:hover {
  border: solid 3px #e79686;
  transition: 0.5s all;
}
button.view_more::after {
  content: "もっと見る\f078 ";
  transition: .2s;
  -erbkit-transition: .2s;
  font-weight: 900;
  font-family: 'Kiwi Maru', 'Font Awesome 5 Free', serif;
}
button.view_more.on-click_btn::after {
  content: "閉じる";
}
/*********************************
SNS/お問い合わせ
************************************/
.sns_mail_section {
  background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("https://atsukita-kitaq.jp/img/top/city_bgi.jpg");
  background-size: cover;
  background-position: center;
  margin-bottom: 6vw;
}
.sns_mail_wrap {
  display: flex;
  padding-top: 6vw;
  padding-bottom: 6vw;
  width: 70vw;
  margin: 0 auto;
  justify-content: space-evenly;
}
.sns_mail_subtitle {
  font-size: 1.4vw;
  text-align: center;
  margin-bottom: 1.2em;
}
.sns_mail_title {
  font-size: 2.4vw;
  text-align: center;
  font-weight: 500;
  margin-bottom: 0.8em;
}
.sns_list {
  display: flex;
  justify-content: center;
}
.sns_list li {
  font-size: 4.5vw;
  margin-left: 1vw;
  margin-right: 1vw;
  text-align: center;
  transition: 0.5s all;
}
.sns_list li:hover {
  transform: scale(1.1, 1.1);
  transition: 0.5s all;
  opacity: 0.9;
  filter: brightness(110%);
}
.mail_area {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 5px;
}
.inner_line {
  border: dashed 1px #bfafa6;
  margin: 1vw;
  border-radius: 5px;
  padding: 1vw 2vw;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.inner_line:hover {
  transform: scale(1.05, 1.05);
  transition: 0.5s all;
  opacity: 0.9;
  filter: brightness(110%);
}
.inner_noline {
  margin: 0.3vw;
  border-radius: 5px;
  padding: 1vw 2vw;
}
.mail_icon {
  font-size: 4.2vw;
  text-align: center;
}
/*********************************
footer bnr
************************************/
.footer_item {
  width: 10vw;
  margin: 0 auto;
  margin-bottom: 2vw;
}
.footer_item {
  width: 10vw;
  margin: 0 auto;
  margin-bottom: 2vw;
}
.footer_item {
  width: 10vw;
  margin: 0 auto;
  margin-bottom: 2vw;
}
.bottom_bnr_title {
  font-size: 1.6vw;
  text-align: center;
  margin: 4vw;
  margin-top: 2vw;
}
.bottom_bnr_title {
  font-size: 1.6vw;
  text-align: center;
  margin: 2vw;
	margin-top: 4vw;
}
.bottom_bnr_area {
  width: 80vw;
  margin: 0 auto;
  display: flex;
  margin-bottom: 6vw;
}
.bottom_bnr_area {
  width: 80vw;
  margin: 0 auto;
  display: flex;
  margin-bottom: 6vw;
}
.bottom_bnr_area p {
  margin-right: 1.2vw;
  margin-left: 1.2vw;
  transition: 0.5s all;
  width: 33%;
}
.bottom_bnr_area p {
  margin-right: 1.2vw;
  margin-left: 1.2vw;
  transition: 0.5s all;
  width: 33%;
}
.bottom_bnr_area p:hover {
  transform: scale(1.05, 1.05);
  transition: 0.5s all;
}
.bottom_bnr_area p:hover {
  transform: scale(1.05, 1.05);
  transition: 0.5s all;
}
.bnr_trimming {
  object-fit: cover;
  height: 8vw;
  width: 100%;
}
.bnr_trimming img {
  object-fit: cover;
  height: 8vw;
  width: 100%;
}
/*********************************
footer
************************************/
footer {}
.footer_bg_green {
  padding-left: 2vw;
}
footer > p {
  color: #fff;
}
footer > div > p {
  color: #fff;
}
.footer_nav li a {
  color: #fff;
}
.footer_nav {
  margin-bottom: 1vw;
  padding-bottom: 0.8em;
  margin-top: 2vw;
}
footer > div > .sns_list li {
  font-size: 2.5vw;
}
footer > .logo_outer {
  display: flex;
  margin-bottom: 1vw;
}
footer > div > .logo_outer > a > .site_title {
  color: #fff;
  font-size: 3.2vw;
}
footer > div > .logo_outer > a {
  display: flex;
}
footer > .logo_outer > .team {
  color: #fff;
}
.team_small {
  display: block;
  font-size: 0.7vw;
  color: #fff;
  margin-left: -0.8em;
}
.footer_logo_img {
  margin: inherit;
  width: 3.8vw;
  height: 3.8vw;
}
small {
  color: #fff;
  text-align: center;
  width: 90%;
  margin: 0 auto;
  font-size: 0.9vw;
  display: block;
  padding-bottom: 1em;
}
footer > div > .sns_list {
  justify-content: unset;
  color: #fff;
}
footer > div > .sns_list i {
  margin-bottom: 3vw;
  color: #fff;
}
#map_outer_sp {
  display: none;
}
#map_outer_sp_2 {
  display: none;
}
#map_outer_sp_3 {
  display: none;
}
.navigation_list > li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.navigation_list > li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #442f38;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}
.fixed .navigation_list > li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 1.5px;
  background: #fff;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}
.footer_nav.navigation_list > li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 1.5px;
  background: #fff;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}
.navigation_list > li a:hover::after {
  transform: scale(1, 1);
}
/*======================================

ジャンルページここから

============================================*/
/*パンクズリスト*/
.breadcrumb {
  display: block;
  width: 100%;
  padding: 0.8em 0 0 0;
  padding-left: 15vw;
}
.bread_adjust {
  padding-top: 0.7em;
  padding-bottom: 0.3em;
}
.breadcrumb li {
  display: inline-block;
  width: auto;
  list-style: none;
  font-size: 0.85vw;
  font-weight: 500;
  vertical-align: top;
}
.breadcrumb li:after {
  content: '>';
  padding: 0 3px;
  color: #888;
}
.breadcrumb li:last-child:after {
  content: '';
}
.breadcrumb li a {
  text-decoration: none;
  color: #888;
}
.breadcrumb .active {
  color: #555;
}
.breadcrumb li a:hover {
  text-decoration: underline;
}
.food_page {
  background-size: auto;
}
/*パンクズリスト-end-*/
/**************
スイーツページ
*******************/
.genre_topimg {
  width: 60vw;
  margin: 0 auto;
}
.genre_topimg_outer {
  padding-top: 1vw;
  position: relative;
}
.shop_image_shop_name {
 width: auto;
    position: absolute;
    padding: 0.5em;
    top: 0;
    left: 18.5vw;
    font-size: 1.2vw;
    font-weight: 500;
    text-shadow: 2px 2px 10px #fff;
    background: rgba(255,255,255,0.4);
    display: inline-flex;
    border-radius: 0 0 5px 0;
    padding-top: 0;
    margin-top: 1vw;
    line-height: 1.8;
    padding-right: 1.2em;
    padding-left: 1.8em;
}
.genre-page_title h2 {
  color: white;
  font-size: 1.7vw;
  padding: 0.8vw 2.5vw;
  font-weight: 400;
  text-align: right;
  text-shadow: 2px 2px 2px #999;
}
.genre-page_title .h2_genre_area_title {
  color: white;
  font-size: 1.7vw;
  padding: 0.8vw 2.5vw;
  font-weight: 400;
  text-align: right;
  text-shadow: 2px 2px 2px #999;
}
.genre-page_title {
  background: #e79686;
  width: 20vw;
  margin-top: 1.5vw;
}
.genre-page_title .h2_genre_area_title {
  background: #e79686;
}
.bg_green {
  background-color: #34623f !important;
}
.genre-page_arrow {
  margin-top: 1.5vw;
  border-top: 28px solid transparent;
  border-bottom: 28px solid transparent;
  border-left: 28px solid #e79686;
}
.genre_title_icon {
  width: 8vw;
  margin-left: 14vw;
  margin-top: -7vw;
}
#area_filter {
  width: 70vw;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 2vw;
  box-shadow: 1px 1px 1px #e8e8e8;
  background: #fff;
  padding: 1.8vw;
}
#area_filter > p {
  text-align: left;
  margin-left: 0.5vw;
  margin-right: 3vw;
	font-size: 1.4vw;
}
#area_filter > .area_btn_outer {
  display: flex;
  flex-wrap: wrap;
  width: auto;
  margin-left: 0vw;
  height: auto;
  margin-top: 0vw;
  justify-content: flex-start;
}
#area_filter > .area_btn_outer > .area_btn {
  border: solid 1.5px #34623f;
  border-radius: 25px;
  width: 6vw;
  font-size: 0.9vw;
  -webkit-transition: all .3s;
  transition: all .3s;
  margin-bottom: 0;
  margin-right: 0.5vw;
  margin-left: 0.5vw;
  background: #fff;
}
#area_filter > .area_btn_outer > .area_btn.current a {
  color: #fff;
  font-weight: 500;
}
#area_filter > .area_btn_outer > .area_btn.current {
  background: #34623f;
}
#area_filter > .area_btn_outer > .area_btn:hover {
  opacity: 0.6;
  filter: brightness(108%);
}
#area_filter > .area_btn_outer > .area_btn a {
  color: #34623f;
  padding: 0.6em;
  padding-top: 0.48em;
  font-weight: 500;
}
.sample_img {
  width: 80vw;
  margin: 0 auto;
  margin-top: 5vw;
}
/*ジャンルページ　店舗一覧部分*/
.trimming {
  object-fit: cover;
  height: 15vw;
  width: 100%;
}
.trimming img {
  object-fit: cover;
  height: 15vw;
  width: 100%;
}
.shop_box_outer {
  background-color: #fff;
  border: solid 1px #e6e6e6;
  width: 30%;
  border-radius: 15px;
  margin-right: 1.2vw;
  margin-left: 1.2vw;
  margin-bottom: 1.8vw;
  -webkit-transition: all .3s;
  transition: all .3s;
  padding-bottom: 3vw;
  position: relative;
}
.shop_box_outer:hover {
  opacity: 0.6;
  filter: brightness(104%);
}
.shop_list_img_outer img {
  border-radius: 15px 15px 0 0;
}
.shop_list_img_outer{
	position: relative;
}
.list_shop_image_shop_name{
position: absolute;
    top: 0;
    left: 0;
    font-size: 0.8vw;
    font-weight: 500;
    text-shadow: 2px 2px 10px #fff;
    background: rgba(255,255,255,0.8);
    display: inline-flex;
    border-radius: 15px 0 5px 0;
    line-height: 1.4;
    padding-left: 0.5em;
    padding-bottom: 0.2em;
    padding-right: 0.5em;
	
}
.category_label_outer {
  text-align: right;
}
.category_label_text {
  background-color: #442f38;
  color: #fff;
  border-radius: 5px;
  padding: 0.2em 0.5em 0.3em 0.5em;
  width: auto;
  font-size: 0.9vw;
  margin: 0.4em;
  margin-bottom: 0;
  text-align: left;
  display: inline-block;
  line-height: 1.2;
}
.shop_name {
  font-size: 1.3vw !important;
  line-height: 1.2 !important;
  padding: 0.5vw !important;
  padding-bottom: 0.5em !important;
  background-color: inherit !important;
  color: inherit;
  font-weight: 500;
}
.shop_text {
  line-height: 1.2;
  padding: 0.5vw;
  font-size: 1.15vw;
  padding-bottom: 1.5em;
}
.detail_btn {
  font-size: 0.9vw;
  width: 100%;
  text-align: right;
  position: absolute;
  bottom: 0.8em;
  right: 1.2em;
}
.shop_list_outer {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.shop_list_wrap {
  width: 72vw;
  margin: auto;
  overflow: hidden;
}
.shop-hide {
  display: none;
}
.hide_shoplist_outer {
  display: flex;
  flex-wrap: wrap;
}
button.view_more_shop {
  width: 18vw;
  margin: 20px auto;
  display: block;
  color: inherit;
  padding: 10px 15px;
  font-weight: 600;
  outline: 0;
  transition: .5s;
  -erbkit-transition: .5s;
  border: solid 3px #e79686;
  cursor: pointer;
  font-size: 1.2vw;
}
button.view_more_shop:hover {
  border: solid 3px #e6cd45;
}
button.view_more_shop::after {
  content: "もっと見る";
  transition: .2s;
  -erbkit-transition: .2s;
}
button.view_more_shop.on-click_more_shop_btn::after {
  content: "閉じる";
}
/*======================================

エリアページここから

============================================*/
.area_page_bread {
  padding-top: 0;
  margin-top: -0.5vw;
}
#genre_filter {
  width: 70vw;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 2vw;
  box-shadow: 1px 1px 1px #e8e8e8;
  background:#fff;
  padding: 1.8vw;
}
#genre_filter > p {
  text-align: left;
  margin-left: 0.5vw;
  margin-right: 3vw;
	font-size: 1.4vw;
}
#genre_filter > .area_btn_outer {
  display: flex;
  flex-wrap: wrap;
  width: auto;
  margin-left: 0vw;
  height: auto;
  margin-top: 0vw;
  justify-content: flex-start;
}
#genre_filter > .area_btn_outer > .area_btn {
  border: solid 1.5px #e79686;
  border-radius: 25px;
  width: 10.4vw;
  font-size: 0.9vw;
  -webkit-transition: all .3s;
  transition: all .3s;
  margin-bottom: 0;
  margin-right: 0.5vw;
  margin-left: 0.5vw;
  background: #fff;
	letter-spacing: -1.2px;
}
#genre_filter > .area_btn_outer > .area_btn.current a {
  color: #fff;
  font-weight: 500;
}
#genre_filter > .area_btn_outer > .area_btn.current {
  background: #e79686;
}
#genre_filter > .area_btn_outer > .area_btn:hover {
  opacity: 0.6;
  filter: brightness(108%);
}
#genre_filter > .area_btn_outer > .area_btn a {
  color: #e79686;
  padding: 0.6em;
  padding-top: 0.48em;
  font-weight: 500;
}
.area-page_title {
  background: #34623f;
  width: 18vw;
}
.area-page_arrow {
  border-left-color: #34623f;
}
.area_title_icon {
  width: 8vw;
  margin-left: 15vw;
  margin-top: -5vw;
}
#area_detail > section > div > div > div > a > div > div > .category_label_text {
  width: 10vw;
  margin-left: 11vw;
}
#area_detail > section > div > div > div > div > div > a > div > div > .category_label_text {
  width: 10vw;
  margin-left: 11vw;
}
/*****************************
記事ページ
********************************/
.share_text {
  font-size: 1.2vw;
  line-height: 1.9;
}
.article_bread {
  padding-left: 20vw;
}
.article_title_icon {
  margin-left: 20vw;
}
.article_title {
  margin-left: 0;
}
.page_title_outer {
  margin-left: 5vw;
}
#article_wrap h1 {
  width: 60vw;
  margin: 0 auto;
  background-color: inherit;
  color: inherit;
  font-size: 1.8vw;
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.article_miniinfo {
  display: flex;
  justify-content: flex-end;
  margin-right: 20vw;
  margin-bottom: 2vw;
}
.article_date {
  text-align: right;
  margin-right: 20vw;
  font-size: 1.2vw;
  margin-bottom: 0.5vw;
}
.article_subject_outer {
  display: flex;
  text-align: right;
  justify-content: flex-end;
  margin-right: 0vw;
  margin-bottom: 0.5vw;
}
.article_subject {
  background-color: #442f38;
  border-radius: 5px;
  margin-top: 0.5em;
  margin-right: 0.5em;
  margin-left: 0.5em;
  font-size: 0.9vw;
}
.article_subject:last-of-type {
  margin-right: 0;
}
.article_subject a {
  color: #fff;
  padding: 0.5em;
  display: block;
}
.article_sns_list {
  display: flex;
  font-size: 2.2vw;
  justify-content: flex-end;
  margin-top: 0.15vw;
  margin-left: 2vw;
}
.article_last_line {
  border-top: solid 1px #333;
  margin-top: 5vw;
  padding-top: 0vw;
}
.margin {
  height: 3vw;
}
.fa-brands {
  font-family: 'Font Awesome 5 Brands';
  font-style: inherit;
}
.article_sns_list li {
  padding-left: 0.8vw;
  padding-right: 0.8vw;
}
.article_sns_list li:last-of-type {
  padding-right: 0;
}
.index_outer {
  width: 60vw;
  margin: 0 auto;
  padding: 1.5vw 2vw;
  margin-bottom: 3vw;
}
.index_title {
  font-size: 1.4vw;
  text-align: center;
  line-height: 2;
  margin-bottom: 2vw;
}
.index_number {
  padding: 0 1.2vw;
  margin-right: 1.5vw;
  display: inline-block;
  width: 3vw;
  text-align: center;
}
.index_list {
  margin-left: 3vw;
}
.index_item {
  line-height: 2;
  font-size: 1.25vw;
  font-weight: 500;
}
.index_item_wrap {
  align-items: center;
  margin-bottom: 0.8vw;
}
.index_text {
  line-height: 1.2;
}
#article_inner {
  width: 58vw;
  margin: 0 auto;
}
#article_inner h2 {
  font-size: 1.6vw;
  font-weight: 500 !important;
  border-bottom: solid 1px;
  margin-bottom: 0.8em;
  padding-bottom: 0.2em;
  line-height: 1.2;
  margin-top: -2.5vw;
  padding-top: 4.5vw;
}
#article_inner h2 strong {
  font-weight: 500 !important;
}
.article_text {
  margin-top: 2vw;
  font-size: 1.25vw;
  line-height: 1.4;
  margin-bottom: 3vw;
}
.article_flex_img {
  display: flex;
  margin-top: 3vw;
  margin-bottom: 3vw;
}
.midokoro_icon {
  width: 9vw;
}
.place_info {
  line-height: 1.8;
  font-size: 1.1vw;
}
.writer_box {
  margin-top: 2vw;
  margin-bottom: 4vw;
  border: solid 4px rgba(68, 47, 56, 0.5);
}
.writer_index {
  line-height: 2.4;
  padding-left: 0.4em;
  font-size: 1.2vw;
  border-bottom: solid 1.5px rgba(68, 47, 56, 0.2);
}
.writer_inner {
  display: flex;
  align-items: center;
}
.writer_img {
  width: 15vw;
  border-right: solid 1.5px rgba(68, 47, 56, 0.2);
}
.writer_img img {
  border-radius: 50%;
  padding: 1vw;
}
.writer_name {
  font-size: 1.1vw;
  left: 1.6em;
  margin-bottom: 0.8em;
}
.writer_comment {
  font-size: 1vw;
  line-height: 1.4;
}
.writer_text_wrap {
  padding: 0.8em;
}
#article_inner .event_link_bnr {
  width: 33vw;
  margin: 0 auto;
  margin-bottom: 6vw;
}
#article_inner .other_article_link {
  display: flex;
  margin-bottom: 6vw;
}
#article_inner .other_event_bnr {
  padding-left: 2vw;
  padding-right: 2vw;
  margin-top: 0;
}
/*記事ページ*/
#__article__ .genre_topimg {
  display: block;
  width: 60vw;
  margin: 0 auto;
}
#__article__ .genre_topimg img {
  max-height: 75vh;
  object-fit: cover;
}
.outline {
  width: 60vw;
  margin: 0 auto;
  padding: 1.5vw 2vw;
  margin-bottom: 3vw;
  background: #fefbf2;
}
.outline__title {
  display: block;
  width: 100%;
  font-size: 1.4vw;
  text-align: center;
  line-height: 2;
  margin-bottom: 1vw;
}
.outline__number {
  display: inline-block;
  width: 3vw;
  text-align: center;
}
.outline__list {
  margin-left: 3vw;
}
.outline__item {
  line-height: 2;
  font-size: 1.25vw;
  font-weight: 500;
}
.outline .outline__toggle {
  display: none;
}
#article_inner p {
  margin-top: 1em;
  font-size: 1.1vw;
  line-height: 1.4;
  margin-bottom: 1em
}
#article_inner .wp-caption {
  width: 100% !important;
}
#article_inner img {
  max-height: 82vh;
  object-fit: contain;
}
#article_inner .pc_2column img {
  height: auto;
  max-height: auto;
  object-fit: contain;
}
#article_inner .wp-caption-text {
  margin-top: 0.5em;
  font-size: 1vw;
  line-height: 1.4;
  margin-bottom: 1em;
  color: #666;
}
#article_inner .pc_2column .wp-caption-text {
  width: 26vw;
  margin: 0 auto;
}
#article_inner .writer_box {
  margin-top: 2vw;
  margin-bottom: 4vw;
  border: solid 4px rgba(68, 47, 56, 0.5);
}
#article_inner .writer_index {
  line-height: 2.4;
  padding-left: 0.4em;
  font-size: 1.2vw;
  border-bottom: solid 1.5px rgba(68, 47, 56, 0.2);
  margin-top: 0;
  margin-bottom: 0;
}
#article_inner .writer_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#article_inner .writer_img {
  width: 20%;
  border-right: solid 1.5px rgba(68, 47, 56, 0.2);
  margin-top: 0;
  margin-bottom: 0;
}
#article_inner .writer_img img {
  border-radius: 50%;
  padding: 1vw;
  margin-top: 0;
  margin-bottom: 0;
  width: 8vw;
  margin: 0 auto;
}
#article_inner .writer_name {
  font-size: 1.1vw;
  left: 1.6em;
  margin-bottom: 0.8em;
  margin-top: 0.8em;
}
#article_inner .writer_comment {
  font-size: 1vw;
  line-height: 1.4;
}
#article_inner .writer_text_wrap {
  padding: 0.8em;
  width: 100%;
}
/*テーブル作成のため一時的にコメントアウト*/
/*#article_inner .table-type1 {
  margin-top: 1.5em;
}
#article_inner .table-type1 .tr {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
}
#article_inner .table-type1 .tr > li {
  width: auto;
  font-size: 1.1vw;
  padding-bottom: 0.5em;
}
#article_inner .table-type1 .tr > .td {
  width: auto;
  font-size: 1.1vw;
  padding-left: 0.5em;
  line-height: 1.3;
  padding-bottom: 0.5em;
}
#article_inner .shop-name {
  margin-bottom: 0.8em;
}*/
h2[id^="outline"] {
  padding-top: 4.5vw;
  margin-top: -4.5vw;
}
#article_inner p iframe {
  display: block;
  width: 100%;
  margin: 0 auto;
}
#article_inner .article_subject {
  font-size: 0.9vw;
  line-height: 1;
}
/*タグ結果一覧ページ*/
.tag_page_tagsearch {
  margin-bottom: -3vw;
}
#tag_page h1 {
  /*	
   
    font-size: 1.4vw;
    text-align: center;
    margin: 0 auto;
	padding-top: 4vw;
	font-weight: 500;*/
  background: inherit;
  color: inherit;
  display: inline-block;
  width: auto;
  font-size: 1.5vw;
  text-align: justify;
  line-height: 1.3;
  margin: 0 10vw;
  padding-top: 4vw;
  background-image: url(https://atsukita-kitaq.jp/img/top/tag_under_dots.png);
  background-repeat: repeat-x;
  background-size: 20vw;
  background-position: bottom;
  padding-bottom: 0.7em;
}
#tag_page .top_slider {
  margin-bottom: 0;
}
.tag_shop_list_area {
  padding-top: 2.5vw;
}
.tag_page_tagsearch > div > h2 {
  padding-top: 4vw;
  font-weight: 500;
}
#tag_page > .top_slider > div > .tag_under_dots {
  margin-top: 0;
}
/*テーブル作成のため一時的にコメントアウト*/
/*#bottom_shop_info_outer{
	display: flex;
}
#article_inner #bottom_shop_info_outer .table-type1 {
    margin-top: 1.5em;
    width: 30vw;
    margin-right: 3vw;
}
#article_inner #bottom_shop_info_outer > div >iframe  {
	width: 27vw;
	height: 350px;
}*/
/*404ページ*/
.not_found_text {
  text-align: center;
  width: 62vw;
  margin: 8vw auto;
  line-height: 2.8;
  background-color: #fefbf2;
  padding: 6vw 12vw;
  border-radius: 15px;
  font-size: 1.2vw;
}
.shop_list_outer > .not_found_text {
  margin: 2vw auto !important;
}
/*検索ページ*/
#search_page .top_slider > #area_filter > #genre_filter {
  width: 70vw;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2vw;
  box-shadow: none;
  background: none;
  padding: 1.8vw;
  padding-bottom: 0;
}
.search_result {
  margin-left: 15vw;
  font-size: 1.8vw;
  margin-top: 1em;
  margin-bottom: 1.5em;
}
#search_page > .top_slider > #area_filter {
  display: block;
}
#search_page > .top_slider > #area_filter > p {
  margin-bottom: 0.5em;
}
#search_page > .top_slider > #area_filter > #genre_filter {
  display: block;
  flex-wrap: wrap;
  width: auto;
  margin-left: 0vw;
  height: auto;
  margin-top: 0vw;
  justify-content: flex-start;
  padding-left: 0;
  padding-right: 0;
}
#search_page > .top_slider > #area_filter > .area_btn_outer {
  width: 50vw;
  justify-content: space-between;
  margin: 0 auto;
}
#search_page > .top_slider > #area_filter > #genre_filter > .area_btn_outer {
  width: 50vw;
  justify-content: space-between;
  margin: 0 auto;
}
/*フォーム部分*/
form {
  margin: 0 auto;
  text-align: center;
}
#form_area h1 {
  background: inherit;
  color: inherit;
  display: inline-block;
  width: auto;
  font-size: 1.5vw;
  text-align: justify;
  line-height: 1.3;
  margin: 0 auto 2vw auto;
  padding-top: 0vw;
  background-image: url(https://atsukita-kitaq.jp/img/top/tag_under_dots.png);
  background-repeat: repeat-x;
  background-size: 20vw;
  background-position: bottom;
  padding-bottom: 0.7em;
  padding-left: 0.5em;
  padding-right: 0.5em;
}
form > dl {
  text-align: left;
}
/*form*/
.form_area {
  display: block;
  width: 65vw;
  margin: 0 auto;
  margin-top: 3.5%;
  padding: 3% 5%;
  margin-bottom: 5%;
  background-color: #fff;
}
.form_area dl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  text-align: left;
  margin-left: 5vw;
}
.form_area dl > dt {
  width: 28%;
  font-size: 1vw;
  font-weight: 500;
  color: #333;
  padding-bottom: 2em;
  line-height: 1.5em;
}
.form_area dl > dd {
  width: 70%;
  font-size: 1vw;
  font-weight: 500;
  color: #333;
  padding-bottom: 2em;
}
.form_area .required {
  color: #ee0000;
}
.form_area input[type=text] {
  font-size: 1vw;
  font-weight: 400;
  color: #333;
  padding: 0.5vw 1vw;
  border-radius: 3px;
  border: 1px solid #ccc;
  width: 70%;
}
.form_area input[name=price1], .form_area input[name=price2], .form_area input[name=price3] {
  width: 30%;
}
.form_area input[type=email] {
  font-size: 1vw;
  font-weight: 400;
  color: #333;
  padding: 0.5vw 1vw;
  border-radius: 3px;
  border: 1px solid #ccc;
  width: 70%;
}
.form_area textarea {
  font-size: 1vw;
  font-weight: 400;
  color: #333;
  padding: 0.5vw 1vw;
  border-radius: 3px;
  border: 1px solid #ccc;
  width: 70%;
}
.form_area select {
  font-size: 1vw;
  font-weight: 400;
  color: #333;
  padding: 0.5vw 1vw;
}
.form_area .mwform-checkbox-field input, .form_area .mwform-radio-field input {
  vertical-align: bottom;
}
.form_area input[type=submit] {
  font-size: 1vw;
  font-weight: 400;
  color: #fff;
  padding: 0.6vw 1vw;
  border-radius: 3px;
  border: 1px solid #ccc;
  display: block;
  width: 45%;
  margin: 0 auto;
  background: #707070;
  cursor: pointer;
  margin-top: 2vw;
}
.form_area input[type=submit]:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
  -ms-filter: "alpha(opacity=80)";
}
.form_bread {
  text-align: left;
  padding-left: 10vw;
}
#__form__ {
  padding-bottom: 5vw;
  margin-bottom: -5vw;
}
.thanks_area {
  width: 50vw;
  margin: 5vw auto;
  line-height: 1.4;
  font-size: 1.2vw;
  text-align: center;
}
.btn_box {
  display: flex;
}
/*店舗情報　テーブル*/
.shop_detail_area {
  padding-top: 1%;
}
.shop_detail_area h3 {
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 0.6em;
  font-size: 1.1vw;
  font-weight: 400;
  color: #fff;
  text-align: justify;
  padding-left: 1em;
  background: #a19e8b;
}
.shop_detail_area {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 4vw;
}
.shop_detail_area > .table-type1 {
  width: 56.5%;
  border-top: 5px solid #ccc;
  margin-top: 2%;
  margin-right: 2%;
}
.shop_detail_area > .detail_right_column {
  width: 41.5%;
  margin-top: 2%;
}
.shop_detail_area > .detail_right_column .gmap {
  height: 0;
  overflow: hidden;
  /*padding-bottom: 56.25%;*/
  padding-bottom: 110%;
  position: relative;
}
.shop_detail_area > .detail_right_column .gmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.shop_detail_area > .detail_right_column > iframe {
  width: 100%;
  height: 100%;
}
.table-type1 .tr {
  display: table;
  width: 100%;
}
.table-type1 .tr .th, .table-type1 .tr .td {
  display: table-cell;
  font-size: 0.9vw;
  padding: 0.5em 1em;
  background: #fff;
  border-right: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  line-height: 1.4em;
  color: #555;
}
.shop_contents_area .table-type1 .tr .td .note {
  font-size: 0.8vw;
  color: #666;
  background: none;
  padding: 0;
}
.table-type1 .tr .th {
  width: 22.5%;
  background: #fefdfa;
}
.table-type1 .tr {
  border-left: 1px solid #ccc;
}
.table-type1 .tr .td {
  width: calc(100% - 22.5%);
}
.sns_info {}
.table-type1 .sns_info .td {
  display: flex !important;
  width: auto;
  justify-content: flex-start;
}
.table-type1 .sns_info .td p {
  font-size: 3vw !important;
  line-height: 1 !important;
  margin: 0 0.25em !important;
}
.table-type1 .sns_info .td p:first-of-type {
  margin-left: 0 !important;
}
/*ページネーション*/
.pagination {
  width: 100%;
  margin: 3vw auto;
}
.pagination ul {
  display: flex;
  justify-content: flex-end;
}
.pagination ul li {
  font-size: 1.2vw;
  margin: 1.5em;
}
/*プライバシーポリシー*/
.privacy_wrap {
  padding: 4vw 0;
  padding-bottom: 10vw;
  margin-bottom: -5vw;
}
.privacy_text_outer {
  width: 60vw;
  background: #fff;
  border: solid 1px #ccc;
  border-radius: 15px;
  margin: 0 auto;
  padding: 4vw;
}
.privacy_text_outer p {
  font-size: 1.05vw;
  line-height: 1.8;
  margin-bottom: 2.5em;
}
.privacy_text_outer h2 {
  font-weight: 400;
  font-size: 1.8vw;
  line-height: 1.2;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.event_page_event_name {
  font-size: 1.4vw !important;
  font-weight: 500 !important;
  border-bottom: solid 1px #ccc !important;
  margin-bottom: 0 !important;
  width: 56.5%;
}
/*ジャンル別記事一覧ページ　調節*/
.checkpoint-page_title {
  width: 16vw !important;
}
.food_title_icon {
  width: 7.5vw;
}
.takeout_title_icon {
  width: 8vw;
  margin-left: 12vw;
}
/*0314*/
.page_title_pink {
  background: #e79686 !important;
  width: 26vw;
  margin-top: 1.5vw;
  margin-left: 15vw;
}
.page_title_pink_inner {
  color: white;
  font-size: 1.7vw;
  padding: 0;
  font-weight: 400;
  text-align: center;
  text-shadow: 2px 2px 2px #999;
  line-height: 1.8;
  padding-left: 3em;
}
.page_title_pink h1 {
  color: white;
  font-size: 1.7vw;
  padding: 0;
  font-weight: 400;
  text-align: center;
  text-shadow: 2px 2px 2px #999;
  background: #e79686 !important;
  padding-left: 3em;
}
.pink_arrow_right {
  margin-top: 1.5vw;
  border-top: 26px solid transparent;
  border-bottom: 26px solid transparent;
  border-left: 26px solid #e79686;
}
.page_title_green {
  background: #34623f;
  width: 18vw;
  margin-top: 1.5vw;
  margin-left: 15vw;
}
.page_title_green_inner {
  color: white;
  font-size: 1.7vw;
  padding: 0;
  font-weight: 400;
  text-align: center;
  text-shadow: 2px 2px 2px #999;
  padding-left: 2.5em;
}
.green_arrow_right {
  margin-top: 1.5vw;
  border-top: 26px solid transparent;
  border-bottom: 26px solid transparent;
  border-left: 26px solid #34623f;
}
.tag_area_bg_yellow {
  padding-bottom: 2vw;
}
.bottom_bnr_area_outer {
  margin-top: 1vw;
}
.event_link_bnr {
  width: 38vw;
  margin: 0 auto;
  margin-bottom: 3vw;
}
.other_event_wrap{
	display: flex;
	width: 80vw;
	margin: 0 auto;
	margin-bottom: 6vw;
	display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.other_event_box{
	margin-left: 1vw;
	margin-right: 1vw;
	width: 32%;
	margin: 0 auto;
}
.other_event_title{
	text-align: center;
    font-size: 1.4vw;
    font-weight: 500;
    line-height: 1.2;
}
.other_event_bnr{
	margin-bottom: 1vw;
	min-height: 17vw;
}
.no_other_event{
	text-align: center;
	width: 80vw;
	margin: 6vw auto;
	font-size: 1vw;
}
.footer_adjust{
	    padding-bottom: 10vw;
    margin-bottom: -5vw;
}
.category_list_top_area{
	margin-bottom: 0;
	
}
.category_list_top_bg{
	padding-top: 1vw;
	padding-bottom: 4vw;
}
.tag_icon{
	font-size: 3.8vw;
    font-weight: 500;
    line-height: 1;
}
@media only screen and (max-width: 1180px) {
	.pickup_area_outer{
		padding-top: 3vw;
	}
	#area_filter > .area_btn_outer > .area_btn {
		width: 7.8vw;
	}
	#genre_filter > p {
		margin-right: 0;
	}
	#genre_filter > .area_btn_outer > .area_btn {
    width: 11.2vw;
	}
	#genre_filter {
		width: 72vw;
	}
	#area_filter > p {
    margin-right: 0vw; 
}
	.arrow {
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 20px solid #e6cd45;
}
	.title_line {
		margin-top: -20px;
	}
	.pink_arrow_right {
    margin-top: 1.5vw;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 16px solid #e79686;
}
	.green_arrow_right {
    margin-top: 1.5vw;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 16px solid #34623f;
}
	.slick-prev {
    left: -8vw !important;
}
	.slick-next {
    right: -5.5vw !important;
}
	.genre_text {
    font-size: 1vw;
    text-align: center;
    color: #665d59;
    line-height: 1.8;
    padding-bottom: 1.2vw;
    letter-spacing: -1.1px;
}
}
@media only screen and (max-width: 767px) {
  #pageTop {
    bottom: 18vw;
    right: 3.4vw;
  }
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .flexbox_pc {
    display: block;
  }
  .pc_2column img {
    width: 90vw;
    margin: 0 auto;
  }
  #article_inner .pc_2column .wp-caption-text {
    width: 90vw;
  }
  .header_nav_outer {
    padding: 8vw 0;
  }
  .breadcrumb .active {
    width: 80vw;
  }
  /*　ハンバーガーボタン　*/
  .hamburger {
    display: block;
    position: fixed;
    z-index: 9999999;
    right: 13px;
    top: 45px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
    background: #34623f;
    opacity: 0.8;
  }
  .hamburger span {
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 6px;
    background: #fff;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .hamburger span:nth-child(1) {
    top: 10px;
  }
  .hamburger span:nth-child(2) {
    top: 20px;
  }
  .hamburger span:nth-child(3) {
    top: 30px;
  }
  /* ナビ開いてる時のボタン */
  .hamburger.active span:nth-child(1) {
    top: 16px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .hamburger.active span:nth-child(2), .hamburger.active span:nth-child(3) {
    top: 16px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .logo_small_outer {
    width: 45vw;
    top: 3vw;
  }
  nav.globalMenuSp {
    position: fixed;
    z-index: 500;
    top: 0;
    left: 0;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.96);
    text-align: center;
    transform: translateX(100%);
    transition: all 0.38s;
    width: 100%;
  }
  nav.globalMenuSp ul {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    height: 100vh;
  }
  nav.globalMenuSp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
  }
  nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
  nav.globalMenuSp ul li:hover {
    background: #e6cd45;
  }
  nav.globalMenuSp ul li a {
    display: block;
    color: #fefbf2;
    font-weight: 800;
    padding: 5.5vw 0;
    text-decoration: none;
    width: 100%;
    font-size: 6.4vw;
    font-family: 'Kaisei Decol', serif;
  }
  .sp_menu_item:first-of-type {
    margin-top: 15px;
  }
  .sp_menu_item:last-of-type {
    margin-bottom: 15px;
  }
  /* このクラスを、jQueryで付与・削除する */
  nav.globalMenuSp.active {
    transform: translateX(0%);
    z-index: 999999;
    height: 100vh;
    padding-top: 25vw;
    background: #34623f;
    /*background-image: url("https://atsukita-kitaq.jp/img/top/city_bgi.jpg");
	  background-size: cover;
	  filter: brightness(80%)*/
  }
  nav.globalMenuSp ul li {
    position: relative;
    display: inline-block;
  }
  nav.globalMenuSp ul li::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 20px;
    background-color: #fff;
    position: absolute;
    top: 5vw;
    right: -5px;
    z-index: 1;
  }
  /*　/ハンバーガーmenu　*/
  h1 {
    font-size: 3vw;
  }
  .slick-next {
    display: none !important;
  }
  .slick-prev {
    display: none !important;
  }
  .h1_title {
    font-size: 3vw;
  }
  .slide_outer {
    padding-top: 6vw;
    padding-bottom: 8vw;
  }
  .open-btn1 {
    position: absolute;
    top: 65px;
    right: 4px;
  }
  #search-wrap.panelactive {
    top: 50px;
    width: 75vw;
    right: 18.4vw;
  }
  .site_text {
    font-size: 3.3vw;
    padding-left: 0.4em;
    margin-bottom: 0.4em;
  }
  .site_text span {
    font-size: 4vw;
    font-weight: 800;
  }
  .site_title {
    font-size: 10vw !important;
  }
  .logo_img {
    width: 11vw;
    height: 11vw;
    padding-top: 0;
  }
  .top_slider {
    margin-top: 10vw;
    margin-bottom: 12vw;
  }
	.category_list_top_area {
    margin-bottom: 0;
}
  .sec_inner {
    width: 100vw;
  }
  .pickup_area_outer {
    padding-top: 12vw;
    padding-bottom: 10vw;
  }
  .pickup_title {
    border-radius: 350% 350% 0 0;
    padding-top: 4.5vw;
    width: 82vw;
    height: 54vw;
    margin: 0 auto;
  }
  .pickup_title p:first-of-type {
    font-size: 4vw;
    text-align: center;
  }
  .pickup_title p:last-of-type {
    font-size: 6.4vw;
    text-align: center;
  }
  .pickup_box {
    width: 90vw;
    padding-top: 5vw;
    padding-bottom: 5vw;
    margin-top: -33vw;
  }
  .pickup_box a {
    display: block;
  }
  .event_bnr {
    width: 100%;
  }
  .event_text_outer {
    width: 100%;
  }
  .event_text_title {
    font-size: 4.6vw;
  }
  .event_text {
    font-size: 3.6vw;
  }
  .event_moreinfo {
    font-size: 3.4vw;
  }
  /*sp　コンテンツメニューボタン*/
  .sp_contents_box {
    background: #fefbf2;
    margin: 1vw;
    padding: 2vw;
    width: 30vw;
    height: 30vw;
  }
  .sp_contents_boxline {
    border: solid 1px #bfafa6;
    height: 26vw;
  }
  .sp_contents_boxline > p:first-of-type {
    margin-top: 2vw;
  }
  .sp_contents_boxline > p:last-of-type {
    text-align: center;
    font-size: 3.2vw;
    font-weight: 600;
  }
  .sp_contentsbtnimg1 {
    width: 78%;
    margin: 0 auto;
    margin-bottom: 2vw;
  }
  .sp_contentsbtnimg2 {
    width: 60%;
    margin: 0 auto;
    margin-bottom: 4vw;
  }
  .sp_contentsbtnimg3 {
    width: 30%;
    margin: 0 auto;
    margin-bottom: 4vw;
    margin-top: 3vw !important;
  }
  .sp_contents_menu ul {
    display: flex;
    margin-top: 5vw;
    justify-content: center;
  }
  /*ジャンルから探す*/
  .search_title {
    width: 70vw;
    margin-left: 0vw;
  }
  .search_title h2 {
    padding: 2.5vw;
    font-size: 5.4vw;
  }
  .search_title .h2_genre_area_title {
    padding: 2.5vw;
    font-size: 5.4vw;
  }
  .arrow {
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    border-left: 18px solid #e6cd45;
  }
  .search_area_title_outer > div > h2 {
    text-align: right;
  }
  .search_area_title_outer > div > .h2_genre_area_title {
    text-align: right;
  }
  .title_icon_sp {
    width: 20vw;
    margin-left: 2vw;
    margin-top: -14vw;
  }
  .genrebox_area {
    margin-top: 8vw;
    flex-wrap: nowrap;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
    justify-content: unset;
    margin-left: 8vw;
    margin-bottom: 16vw;
  }
  .genrebox_outer {
    width: 70%;
    flex: none;
    margin-right: 5vw;
  }
  .genre_image {
    width: 42vw;
    margin-bottom: 8.2vw;
  }
  .genrebox_innerline {
    padding: 8.2vw 0.3em;
  }
  .genrebox_outer:last-of-type {
    margin-right: 5vw;
  }
  .genre_text {
    font-size: 4vw;
    padding-bottom: 4.2vw;
  }
  .genre_btn {
    width: 68%;
    font-size: 4.2vw;
    margin-top: 5.2vw;
  }
  /*エリアから探す*/
  .add_height {
    height: 10vw;
    padding-bottom: 6vw;
  }
  .icon_2 {
    width: 17.5vw;
    margin-left: 5vw;
    margin-top: -10vw;
  }
  .search_area_inner {
    display: block;
  }
  .area_btn {
    width: 28vw;
    margin-right: 4vw;
    margin-left: 4vw;
    font-size: 4.4vw;
    margin-bottom: 6vw;
  }
  .area_btn_outer {
    width: 75vw;
    margin: 0 auto;
    height: auto;
    justify-content: space-between;
    margin-top: 6vw;
    margin-bottom: 0vw;
  }
  .tab-content {
    display: block;
  }
  #map_outer_pc_1 {
    display: none !important;
  }
  #map_outer_pc_2 {
    display: none !important;
  }
  #map_outer_pc_3 {
    display: none !important;
  }
  #map_outer_sp {
    margin: 0 auto;
    display: block !important;
    width: 300px;
  }
  #map_outer_sp img {
    display: block;
    width: 300px;
    height: auto;
  }
  #map_outer_sp_2 {
    margin: 0 auto;
    display: block !important;
    width: 300px;
  }
  #map_outer_sp_2 img {
    display: block;
    width: 300px;
    height: auto;
  }
  #map_outer_sp_3 {
    margin: 0 auto;
    display: block !important;
    width: 300px;
  }
  #map_outer_sp_3 img {
    display: block;
    width: 300px;
    height: auto;
  }
  *:focus {
    outline: none;
  }
  .tab_label_1 {
    margin-left: 5vw;
    margin-right: 3vw;
    margin-top: 5vw;
  }
  .tab_label_2 {
    margin-left: 3vw;
    margin-right: 3vw;
    margin-top: 5vw;
  }
  .tab_label_3 {
    margin-left: 3vw;
    margin-right: 5vw;
    margin-top: 5vw;
  }
  .tab-label {
    font-size: 3.8vw;
    padding: 0.6em 0.6em 0.5em 0.6em;
  }
  /*タグで探す*/
  .icon_3 {
    width: 7vw;
    margin-left: 8vw;
    margin-top: -11.5vw;
  }
  .tag_area_inner {
    width: 90vw;
    margin: 0 auto;
    padding-top: 10vw;
    padding-bottom: 14vw;
  }
  .recomend_tag_title {
    margin-left: 1vw;
    margin-bottom: 8vw;
    font-weight: 500;
    font-size: 3.8vw;
    margin-top: 6vw;
  }
  .recomend_tag_list {
    width: 90vw;
    margin: 0 auto;
    justify-content: flex-start;
  }
  .recomend_tag {
    margin-right: 2vw;
    margin-left: 2vw;
    font-size: 3.6vw;
    margin-bottom: 4.5vw;
  }
  .tag_more_view_btn {
    font-size: 3.2vw;
    width: 25vw;
  }
  .tag_h2 span {
    font-size: 10vw;
  }
  .tag_h2 {
    font-size: 4.8vw;
  }
  .tag_under_dots {
    width: 50vw;
    margin: 0 auto;
    margin-top: -3vw;
  }
  button.view_more {
    font-size: 3.2vw;
    width: 60vw;
    margin-top: 8vw;
    cursor: pointer;
  }
  button.view_more:hover {
    border: solid 3px #e6cd45;
  }
  .img_line_outer ul {
    padding-bottom: 12vw;
  }
  /*sns mail*/
  .sns_mail_wrap {
    display: block;
    width: 80vw;
    padding-top: 12vw;
    padding-bottom: 12vw;
  }
  .sns_mail_subtitle {
    font-size: 4.4vw;
  }
  .sns_mail_title {
    font-size: 6.4vw;
  }
  .sns_list li {
    font-size: 12.2vw !important;
    margin-left: 5vw;
    margin-right: 5vw;
  }
  .inner_noline {
    margin-bottom: 5vw;
  }
  .mail_icon {
    font-size: 14.2vw;
  }
  .mail_area {
    padding: 3vw;
  }
  .inner_line {
    padding: 2
  }
  /*bottom_bnr*/
  .footer_item {
    width: 36vw;
    margin-top: 18vw;
    margin-bottom: 4vw;
  }
  .bottom_bnr_title {
    font-size: 4.6vw;
    margin-bottom: 12vw;
  }
  .bottom_bnr_area {
    display: block;
    margin-bottom: 24vw;
  }
  .bottom_bnr_area p {
    margin-bottom: 10vw;
    width: 100%;
  }
  footer > .logo_outer > a > .site_title {
    font-size: 8.2vw;
  }
  .footer_nav {
   display: flex;
    margin-top: 10vw;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .footer_nav li {
    margin-bottom: 1.4em;
    font-size: 3.4vw;
	  width: 35vw;
	  margin-right: 5vw;
	  padding-bottom: 1.4em;
  }
  footer > div > .team {
    font-size: 3.2vw;
    padding-bottom: 1em;
    padding-top: 4vw;
  }
  .team_small {
    font-size: 3vw;
  }
  footer > nav > .navigation_list {
    padding-bottom: 0;
  }
  footer > .sns_list li {
    margin-left: 0;
    margin-right: 6vw;
  }
  footer {
    /* padding-left: 4vw;*/
  }
  small {
    font-size: 2.6vw;
  }
  .fixed.title_navigation {
    display: none !important;
  }
  footer > .sns_list li {
    font-size: 8.5vw;
  }
  /*======================================

ジャンルページここから

============================================*/
  .breadcrumb li {
    font-size: 2.8vw;
    padding-top: 0.5em;
    padding-bottom: 1.2em;
    line-height: 1.2;
  }
  /**************
スイーツページ
*******************/
  .genre_topimg {
    width: 100vw;
	  padding-top: 6vw;
    padding-bottom: 8vw;

  }
  .genre-page_title {
    width: 57vw;
  }
  .genre_title_icon {
    width: 13vw;
    margin-left: 3vw;
    margin-top: -16vw;
  }
  .genre-page_arrow {
    margin-top: 1.5vw;
    border-top: 17px solid transparent;
    border-bottom: 17px solid transparent;
    border-left: 17px solid #e79686;
  }
  #area_filter {
    display: block;
    width: 90vw;
  }
  .shop_list_wrap {
    width: 100vw;
  }
  .shop_list_outer {
    display: block;
  }
  .shop_box_outer {
    width: 88vw;
    margin: 0 auto;
    margin-bottom: 5vw;
  }
  .trimming {
    height: auto;
  }
  .trimming img {
    height: auto;
  }
  .category_label_text {
    font-size: 3.2vw;
  }
  
  .shop_name {
    font-size: 4.2vw !important;
  }
  .shop_text {
    font-size: 3.5vw;
    padding: 1.5vw;
	  padding-bottom: 1.5em;
  }
  .detail_btn {
    font-size: 3.2vw;
  }
  button.view_more_shop {
    width: 65vw;
    font-size: 3.8vw;
    margin: 10vw auto;
    font-size: 3.6vw;
  }
  #area_filter > p {
    font-size: 4vw;
    margin-bottom: 0.8em;
  }
  #area_filter > .area_btn_outer > .area_btn {
    width: 35vw;
    margin-left: 1.2vw;
    margin-right: 1.2vw;
    margin-bottom: 3.5vw;
    font-size: 3.8vw;
  }
  #area_filter > .area_btn_outer {
    justify-content: center;
  }
  /*======================================

エリアページここから

============================================*/
  .area_title_icon {
    width: 17vw;
    margin-left: 0vw;
    margin-top: -12vw;
  }
  .area-page_arrow {
    border-left-color: #34623f;
  }
  .area-page_title {
    width: 45vw;
  }
  #genre_filter {
    display: block;
    width: 90vw;
  }
  #genre_filter > p {
    font-size: 4vw;
    margin-bottom: 0.8em;
  }
  #genre_filter > .area_btn_outer > .area_btn {
    width: 50vw;
    margin-left: 1.2vw;
    margin-right: 1.2vw;
    margin-bottom: 3.5vw;
    font-size: 3.8vw;
  }
  #genre_filter > .area_btn_outer {
    justify-content: center;
    width: 75vw;
    margin: 0 auto;
  }
  #area_detail > section > div > div > div > a > div > div > .category_label_text {
    width: 37vw;
    margin-left: 48vw;
  }
  #area_detail > section > div > div > div > div > div > a > div > div > .category_label_text {
    width: 37vw;
    margin-left: 48vw;
  }
  .area_page_bread {
    padding-top: 0;
  }
  /*======================================

記事ページここから

============================================*/
  .breadcrumb {
    padding-left: 5vw;
  }
  /*みどころ　花見*/
  .midokoro_icon {
    width: 20vw;
    margin-top: -13vw;
  }
  #article_wrap h1 {
    width: 92vw;
    font-size: 5.2vw;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    line-height: 1.2;
  }
	#article_wrap{
		padding-bottom: 9vw;
	}
  .article_date {
    font-size: 3.6vw;
    margin-right: 4vw;
  }
  .article_miniinfo {
    display: block;
    margin-right: 0;
  }
  .article_subject {
    background-color: #442f38;
    border-radius: 5px;
    margin-top: 0.5em!important;
    margin-right: 0em;
    margin-left: 0.5em;
    font-size: 3.4vw;
	  margin-bottom: 0!important;
  }
  .article_subject a {
    padding: 0.5em 1em;
  }
  .article_subject_outer {
    margin-right: 4vw;
    flex-wrap: wrap;
  }
  .article_sns_list {
    font-size: 8.2vw;
    margin-top: 8.15vw;
    margin-right: 5vw;
  }
  .article_sns_list li {
    padding-left: 2.8vw;
    padding-right: 2.8vw;
  }
  /*index*/
  .index_outer {
    width: 96vw;
    margin: 0 auto;
    padding: 3vw 4vw;
    margin-bottom: 8vw;
    margin-top: 8vw;
  }
  .index_title {
    font-size: 5.4vw;
  }
  .index_number {
    width: 10vw;
  }
  .index_item {
    line-height: 3;
    font-size: 4vw;
  }
  .index_text {
    max-width: 70vw;
  }
  /*記事部分*/
  #article_inner {
    width: 82vw;
  }
  .article_text {
    font-size: 4vw;
  }
  #article_inner h2 {
    font-size: 5vw;
  }
  .place_info {
    font-size: 3.4vw;
  }
  /*この記事を書いた人*/
  .writer_inner {
    display: block;
  }
  .writer_img {
    width: 35vw;
    margin: 0 auto;
    border-right: solid 1.5px rgba(68, 47, 56, 0);
    margin-top: 3vw;
  }
  .writer_box {
    margin-top: 10vw;
  }
  .writer_index {
    font-size: 3.4vw;
  }
  .writer_name {
    font-size: 3.8vw;
    border-top: solid 1.5px rgba(68, 47, 56, 0.2);
    padding-top: 0.5em;
  }
  .writer_comment {
    font-size: 3.6vw;
  }
  .event_link_bnr {
    width: 100vw;
    margin: 0 auto;
    margin-bottom: 12vw;
  }
  .other_article_link {
    display: block;
    margin-bottom: 22vw;
  }
  .other_article_link > p {
    margin-bottom: 8vw;
  }
  #article_wrap > section > div > div > .bottom_bnr_title {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 12vw;
  }
  .page_title_outer {
    margin-left: 0;
  }
  .article_list_title {
    margin-left: 0 !important;
  }
  .share_text {
    font-size: 3.2vw;
    line-height: 3;
  }
  /*記事ページ*/
  #__article__ .wave_outer1 {
    margin-top: 10vw;
  }
  #__article__ .genre_topimg {
    display: block;
    width: 100vw;
    margin: 0 auto;
	  padding-top: 6vw;
    padding-bottom: 8vw;

  }
  #article_inner {
    width: 90vw;
  }
  .outline {
    width: 100%;
    margin: 0 auto;
    padding: 3vw 4vw;
    margin-bottom: 8vw;
    margin-top: 8vw;
  }
  .outline__title {
    font-size: 5.4vw;
  }
  .outline__item {
    font-size: 3.6vw;
    line-height: 1.5;
    margin-bottom: 0.5em;
    text-indent: -1em;
    padding-left: 1em;
  }
  #article_inner p {
    font-size: 3.8vw;
    line-height: 1.6;
  }
  #article_inner .wp-caption-text {
    font-size: 3.4vw;
  }
  #article_inner h2 {
    margin-top: 1em;
  }
  /*テーブルs作成のためコメントアウト*/
  /*#article_inner .table-type1 .tr > li {
    font-size: 3.6vw;
  }
  #article_inner .table-type1 .tr > .td {
    font-size: 3.6vw;
  }*/
  #article_inner .writer_index {
    font-size: 3.6vw;
  }
  #article_inner .writer_inner {
    display: block;
  }
  #article_inner .writer_img {
    width: 100%;
  }
  .writer_img {
    width: 35vw;
    margin: 0 auto;
    border-right: solid 1.5px rgba(68, 47, 56, 0);
    margin-top: 3vw;
  }
  #article_inner .writer_img img {
    width: 35vw;
    margin: 0 auto;
    border-right: solid 1.5px rgba(68, 47, 56, 0);
    margin-top: 3vw;
  }
  #article_inner .writer_name {
    font-size: 3.8vw;
  }
  #article_inner .writer_comment {
    font-size: 3.6vw;
  }
  #article_inner .writer_box {
    margin-bottom: 10vw;
  }
  #article_inner .article_subject {
    font-size: 3.4vw;
    line-height: 1em;
  }
  #article_inner .writer_img {
    border-right: none;
  }
  pre {
    font-size: 4.2vw;
  }
  /*タグ検索結果一覧*/
  #tag_page h1 {
    font-size: 4.8vw;
    padding-top: 6vw;
    margin: 0 5vw;
    background-size: 60vw;
  }
  #tag_page > .top_slider > div > .tag_under_dots {
    width: 70vw;
  }
  .tag_h2 {
    margin: 0 5vw;
    background-size: 60vw;
  }
  #bottom_shop_info_outer {
    display: block;
  }
  #article_inner #bottom_shop_info_outer > div > iframe {
    width: 90vw;
    margin: 0 auto;
  }
  /*テーブル作成のため一時的にコメントアウト*/
  /*#article_inner #bottom_shop_info_outer .table-type1 {
    margin-top: 0.5em;
    width: 90vw;
    margin-right: 0;
}*/
  /*404ページ*/
  .not_found_text {
    text-align: left;
    width: 80vw;
    margin: 30vw auto;
    line-height: 1.8;
    background-color: #fefbf2;
    padding: 6vw 12vw;
    border-radius: 15px;
    font-size: 3.6vw;
    margin-bottom: 15vw;
  }
  .shop_list_outer > .not_found_text {
    margin: 2vw auto;
    padding: 6vw 6vw;
    width: 88vw;
    margin-bottom: 24vw !important;
  }
  /*検索結果ページ*/
  #search_page > .top_slider > #area_filter > .area_btn_outer {
    width: 80vw;
  }
  #search_page > .top_slider > #area_filter > #genre_filter > .area_btn_outer {
    width: 80vw;
  }
  #search_page > .top_slider > #area_filter > #genre_filter > .area_btn_outer > .area_btn {
    width: 37vw;
  }
  #search_page > .top_slider > #area_filter > #genre_filter > .area_btn_outer > .area_btn a {
    letter-spacing: -0.2em;
  }
  #search_page > .top_slider > #area_filter > .area_btn_outer > .area_btn {
    width: 37vw;
  }
  #search_page > .top_slider > #area_filter > p {
    margin-bottom: 1em;
    margin-top: 1em;
    margin-left: 1em;
  }
  .search_result {
    margin-left: 5vw;
    font-size: 6.8vw;
    margin-top: 0.2em;
    margin-bottom: 0.7em;
  }
  /*form*/
  /*.form_area*/
  .page_title {
    font-size: 5.2vw !important;
    line-height: 1.3em;
  }
  .form_area {
    width: 82%;
    margin-top: 8%;
    padding: 6% 5%;
    margin-bottom: 15%;
  }
  .form_area dl > dt {
    width: 100%;
    font-size: 3.7vw;
    padding-bottom: 0.8em;
  }
  .form_area dl > dd {
    width: 100%;
    padding-bottom: 1em;
    padding-bottom: 8%;
    font-size: 3.7vw;
  }
  .form_area input[type=text] {
    font-size: 16px;
    padding: 1vw 2.5vw;
    width: 90%;
  }
  .form_area input[type=email] {
    font-size: 16px;
    padding: 1vw 2.5vw;
    width: 90%;
  }
  .form_area input[type=submit] {
    font-size: 3.7vw;
    padding: 2vw 0;
    width: 45%;
  }
  .form_area textarea {
    font-size: 16px;
    width: 90%;
  }
  .form_area input[name=price1], .form_area input[name=price2], .form_area input[name=price3] {
    width: 65%;
  }
  .btn_box {
    width: 100%;
    display: block;
  }
  .form_area input[type=submit] {
    width: 100%;
  }
  .form_title {
    font-size: 4.5vw !important;
    background-size: 60vw !important;
  }
  .formpage_wave .wave_outer1 {
    margin-top: 10vw !important;
  }
  .thanks_area {
    width: 87vw;
    text-align: left;
    font-size: 4vw;
    margin: 15vw auto;
  }
  /*店舗詳細テーブル*/
  .shop_detail_area > .table-type1 {
    width: 100%;
    margin-top: 3%;
    margin-right: 0;
  }
  .table-type1 .tr {
    display: block;
  }
  .table-type1 .tr .th, .table-type1 .tr .td {
    display: block;
    width: 100%;
  }
  .table-type1 .tr .th, .table-type1 .tr .td {
    font-size: 3.4vw;
  }
  .shop_detail_area > .detail_right_column {
    width: 100%;
    margin-top: 5%;
  }
  .table-type1 .sns_info .td p {
    font-size: 10vw !important;
    line-height: 1.2 !important;
    margin: 0 0.25em !important;
  }
  /*pagination*/
  .pagination ul li {
    font-size: 4.2vw;
    margin: 1em;
  }
  /*プライバシーポリシー*/
  .privacy_wrap {
    padding: 8vw 0;
    padding-bottom: 20vw;
    margin-bottom: -10vw;
  }
  .privacy_text_outer {
    width: 88vw;
    padding: 8vw;
  }
  .privacy_text_outer p {
    font-size: 3.6vw;
    line-height: 1.8;
    margin-bottom: 2.5em;
  }
  .privacy_text_outer h2 {
    font-weight: 400;
    font-size: 4.2vw;
    line-height: 1.2;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
  }
  #privacy_outer {
    padding-top: 15vw;
  }
  .event_page_event_name {
    font-size: 4vw !important;
    width: 100%;
  }
  .food_page_bread {
    margin-top: -5vw;
  }
  .food_title_icon {
    width: 24.5vw;
    margin-left: 5vw;
    margin-top: -17vw;
  }
  .takeout_title_icon {
    width: 18vw;
    margin-top: -14vw;
  }
  .takeout_page_title {
    width: 80vw;
  }
  .page_title_pink {
    width: 75vw;
    padding-left: 15vw;
    margin-left: 0;
    margin-top: 10vw;
  }
  .page_title_pink h1 {
    font-size: 4.4vw;
    padding-left: 0;
    line-height: 2.5;
  }
  .page_title_pink_inner {
    font-size: 4.4vw;
    padding-left: 0;
    line-height: 2.5;
  }
  .genre_title_icon {
    width: 20vw;
    margin-left: 0vw;
    margin-top: -20vw;
  }
  .pink_arrow_right {
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    border-left: 18px solid #e79686;
    margin-top: 10vw;
  }
  .page_title_green {
    width: 45vw;
    padding-left: 15vw;
    margin-left: 0;
    margin-top: 10vw;
  }
  .page_title_green h1 {
    font-size: 4.4vw;
    padding-left: 0;
    line-height: 2.5;
  }
  .area_title_icon {
    width: 20vw;
    margin-left: 0vw;
    margin-top: -20vw;
  }
  .green_arrow_right {
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    border-left: 18px solid #34623f;
    margin-top: 10vw;
  }
  .shop_image_shop_name {
     width: auto;
    position: absolute;
    top: 6vw;
    left: 0;
    font-size: 3.8vw;
    font-weight: 500;
    text-shadow: 2px 2px 5px #fff;
    border-radius: 0;
    padding-left: 0.8em;
    padding-right: 0.8em;

	  
  }
	.other_event_wrap{
	flex-wrap: nowrap;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
    margin-top: 6vw !important;
    padding-left: 4vw;
    padding-right: 4vw;
		width: 100%;

	}
	.other_event_box{
		flex: none;
    width: 90% !important;
    margin-right: 1em !important;
	}
	.other_event_title{
		font-size: 4vw;
	}
	.bottom_bnr_title{
		margin-bottom: 8vw!important;
	}
	.other_event_wrap{
		margin-bottom: 12vw;
	}
	.tag_icon{
		font-size: 10vw;
	}
	.navigation_list{
		width: 80vw;
	}
	.list_shop_image_shop_name {
    position: absolute;
    top: 0;
    left: 0;
		font-size: 3.4vw;
}
	.no_other_event {
    
		font-size: 3.4vw;
	}
	#article_wrap .search_area{
		padding-top: 12vw;
	}
	.other_event_bnr {
    margin-bottom: 1vw;
    min-height: 55vw;
}
}