@charset "UTF-8";
/* ====================================================
# Common
==================================================== */
body {
  word-wrap: break-word;
  overflow-wrap: break-word;
  color: #573816;
  background-color: #f7f2e7;
  color: #444;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", HelveticaNeue, "Segoe UI", "游ゴシック体", YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", HiraKakuProN-W3, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  line-height: 1.5;
}
/* Windows 用 Medium 指定の游ゴシック */
@font-face {
  font-family: "Yu Gothic M";
  src: local("Yu Gothic Medium");
}
/* font-weight: bold の時は通常どおり Bold 書体を使わせる */
@font-face {
  font-family: "Yu Gothic M";
  src: local("Yu Gothic Bold");
  font-weight: bold;
}
.mincho {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "HG明朝E", serif;
}
*:focus {
  outline: none;
}
.wrapper {
  position: relative;
  min-width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .wrapper {
    padding-top: 60px;
    min-width: 0;
  }
}
.inner {
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 1080px) {
  .inner {
    margin-left: 40px;
    margin-right: 40px;
  }
  .inner .inner {
    margin-left: 0;
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .inner {
    margin-left: 4vw;
    margin-right: 4vw;
  }
}
/* Icon */
.icon {
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
}
.icon + span {
  margin-left: 5px;
}
/* Link */
a {
  color: #6eb92b;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  a {
    transition: color 0.3s ease;
  }
  a:hover {
    color: #6eb92b;
    text-decoration: underline;
  }
}
.textlink {
  color: inherit;
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  .textlink:hover {
    color: #6eb92b;
    text-decoration: underline;
  }
}
.hover {
  opacity: 1;
}
@media (hover: hover) and (pointer: fine) {
  .hover {
    transition: opacity 0.4s ease;
  }
  .hover:hover {
    opacity: 0.7;
  }
}
strong {
  font-weight: bold;
}
img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.hide {
  display: none;
}
.center {
  text-align: center;
}
.txt_red {
  color: #ff0000;
}
/* ====================================================
# Responsive
==================================================== */
.img_ressponsive {
  width: 100%;
}
.pc_only {
  display: block !important;
}
.pc_only.inline {
  display: inline !important;
}
@media screen and (max-width: 767px) {
  .pc_only {
    display: none !important;
  }
  .pc_only.inline {
    display: none !important;
  }
}
.sp_only {
  display: none !important;
}
.sp_only.inline {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp_only {
    display: block !important;
  }
  .sp_only.inline {
    display: inline !important;
  }
}
/* ====================================================
# Header
==================================================== */
.site_header {
  position: relative;
  z-index: 100;
}
.site_header .header_wrapper {
  position: relative;
  z-index: 200;
  background: #361d10;
}
.site_header .header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 980px;
  height: 98px;
  margin: 0 auto;
}
.site_header .logo {
  display: block;
  width: 170px;
  height: 85px;
}
.site_header .logo img {
  width: 100%;
  height: auto;
}
.site_header .global_navi {
  display: flex;
  width: calc(100% - 200px);
}
.site_header .global_navi ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
}
.site_header .global_navi ul li {
  position: relative;
  padding: 0 5px;
}
.site_header .global_navi ul li::before {
  content: "";
  position: absolute;
  display: block;
  width: 1px;
  height: 24px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #82653b;
}
.site_header .global_navi ul li:last-child::after {
  content: "";
  position: absolute;
  display: block;
  width: 1px;
  height: 24px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: #82653b;
}
.site_header .global_navi ul li:last-child::after {
  content: "";
  position: absolute;
  display: block;
  width: 1px;
  height: 24px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: #82653b;
}
.site_header .global_navi ul a {
  display: table;
  color: #f7f2e7;
  background-color: transparent;
  padding: 20px 25px;
  border-radius: 10px;
  text-align: center;
  transition: text-shadow 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .site_header .global_navi ul a:hover {
    color: #fffec4;
    text-decoration: none;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 0 0 10px rgba(255, 255, 255, 0.5);
  }
}
@media screen and (max-width: 767px) {
  .site_header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    /* Toggle Button */
    /* #nav-toggle 切り替えアニメーション */
    /* #topNav スライドアニメーション 展開時の位置 */
  }
  .site_header .header_inner {
    width: 100%;
    height: 60px;
    margin: 0;
  }
  .site_header .logo {
    width: 90px;
    height: 45px;
    margin: 0 4vw;
  }
  .site_header .global_navi {
    display: none;
  }
  .site_header .nav_recruit_sp {
    position: absolute;
    display: flex;
    justify-content: center;
    top: 50%;
    left: 108px;
    right: 48px;
    transform: translateY(-50%);
  }
  .site_header .nav_recruit_sp .btn {
    display: block;
    width: 85px;
    margin: 0 1.6%;
  }
  .site_header .nav_recruit_sp .btn img {
    width: 100%;
    height: auto;
  }
  .site_header .nav-toggle {
    position: absolute;
    display: block;
    top: 24px;
    right: 12px;
    width: 34px;
    height: 26px;
    cursor: pointer;
    z-index: 101;
  }
  .site_header .nav-toggle div {
    position: relative;
  }
  .site_header .nav-toggle span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #f7f2e7;
    left: 0;
    -webkit-transition: 0.35s ease-in-out;
    -moz-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
  }
  .site_header .nav-toggle span:nth-child(1) {
    top: 0;
  }
  .site_header .nav-toggle span:nth-child(2) {
    top: 11px;
  }
  .site_header .nav-toggle span:nth-child(3) {
    top: 22px;
  }
  .site_header .topNav {
    display: none;
  }
  .site_header .topNavBox_sp {
    visibility: hidden;
    position: absolute;
    z-index: 101;
    transform: translateY(-100%);
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    border-top: 1px solid #82653b;
    border-bottom: 1px solid #82653b;
    background: #361d10;
    text-align: center;
    font-size: 1.1rem;
    transition: 0.5s ease-in-out;
  }
  .site_header .topNavBox_sp li {
    float: none;
    position: static;
    border-bottom: 1px solid #82653b;
  }
  .site_header .topNavBox_sp li:last-child {
    border-bottom: none;
  }
  .site_header .topNavBox_sp li a {
    width: 100%;
    display: block;
    color: #f7f2e7;
    padding: 10px 0;
  }
  .site_header.open .nav-toggle span:nth-child(1) {
    top: 11px;
    transform: rotate(315deg);
  }
  .site_header.open .nav-toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  .site_header.open .nav-toggle span:nth-child(3) {
    top: 11px;
    transform: rotate(-315deg);
  }
  .site_header.open .topNavBox_sp {
    visibility: visible;
    transform: translateY(60px);
  }
  .site_header .menu_sp {
    position: absolute;
    display: block;
    width: 100%;
    bottom: 0;
    margin: 0 0 1.5% 0;
    text-align: center;
    color: #f7f2e7;
    font-size: 0.7rem;
  }
}
/* ====================================================
# Breadcrumb
==================================================== */
.breadcrumb {
  background: #fff;
  color: #8A5924;
}
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  padding: 8px 10px;
}
.breadcrumb__item {
  margin-right: 5px;
  font-size: 14px;
  white-space: nowrap;
}
.breadcrumb__item::before {
  content: "> ";
}
.breadcrumb__item:first-child:before {
  content: "";
}
.breadcrumb__item:last-child > span {
  color: #6eb92b;
}
.breadcrumb a {
  color: inherit;
}
@media screen and (max-width: 767px) {
  .breadcrumb__list {
    padding: 5px 0;
  }
  .breadcrumb__item {
    font-size: 11px;
  }
}
/* ====================================================
#  Page Header
==================================================== */
.page_header {
  position: relative;
  height: 200px;
  background: #361d10 url(../images/common/bg_page_header.png) center center no-repeat;
  background-size: cover;
}
@media (min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 2dppx) {
  .page_header {
    background-image: url(../images/common/bg_page_header@2x.png);
  }
}
.page_header:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
}
.page_header .page_title {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  color: #fff;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 36px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .page_header {
    height: 125px;
    background-image: url(../images/common/bg_page_header_sp.png);
  }
  .page_header .page_title {
    font-size: 18px;
  }
}
/* ====================================================
# Contents
==================================================== */
.contents {
  font-family: "Noto Sans JP";
  padding: 50px 0;
}
@media screen and (max-width: 767px) {
  .contents {
    padding: 30px 0;
  }
}
.section {
  margin: 0 0 80px;
}
@media screen and (max-width: 767px) {
  .section {
    margin-bottom: 50px;
  }
}
/* ====================================================
# Components
==================================================== */
/* 見出し2 */
.title02 {
  position: relative;
  margin: 100px auto 30px;
  padding: 12px 150px;
  border-top: 2px solid #8A5924;
  border-bottom: 2px solid #8A5924;
  text-align: center;
  font-size: 28px;
  line-height: 1.2;
  color: #8A5924;
}
.title02::before,
.title02::after {
  content: "";
  position: absolute;
  display: block;
}
.title02::before {
  top: -46px;
  left: -23px;
  width: 175px;
  height: 85px;
  background: url(../images/common/img_title_leaf01.png) no-repeat;
  background-size: contain;
}
.title02::after {
  bottom: -24px;
  right: -27px;
  width: 85px;
  height: 75px;
  background: url(../images/common/img_title_leaf02.png) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .title02 {
    margin: 50px auto 20px;
    padding: 7px 0px;
    font-size: 18px;
  }
  .title02::before {
    top: -27px;
    left: -6px;
    width: 86px;
    height: 42px;
  }
  .title02::after {
    bottom: -18px;
    right: -7px;
    width: 42px;
    height: 38px;
  }
}
/* 見出し3 */
.title03 {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "HG明朝E", serif;
  position: relative;
  margin: 50px 0 20px;
  padding-left: 36px;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.3;
}
.title03::before {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 0;
  width: 26px;
  height: 26px;
  background: url(../images/common/icn_title03.png);
  background-size: contain;
}
.title03:first-child {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .title03 {
    margin: 30px 0 15px;
    padding-left: 18px;
    font-size: 18px;
  }
  .title03::before {
    top: 4px;
    width: 13px;
    height: 13px;
  }
}
/* 見出し4 */
.title04 {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "HG明朝E", serif;
  position: relative;
  margin: 30px 0 20px;
  padding: 0 0 5px 32px;
  border-bottom: 2px solid #573816;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.3;
}
.title04::before {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 0;
  width: 25px;
  height: 25px;
  background: url(../images/common/icn_title04.png);
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .title04 {
    margin: 20px 0 15px;
    padding: 0 0 5px 18px;
    border-bottom-width: 1px;
    font-size: 16px;
  }
  .title04::before {
    top: 3px;
    left: 2px;
    width: 12px;
    height: 12px;
  }
}
/* サムネイル */
.thumbnail {
  position: relative;
  width: 100%;
  padding-top: 63.5%;
  overflow: hidden;
}
.thumbnail img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (hover: hover) and (pointer: fine) {
  a .thumbnail img {
    transition: transform 0.3s ease;
  }
  a:hover .thumbnail img {
    transform: scale(1.1);
  }
}
/* ボタン（角丸） */
a.btn_style:link,
a.btn_style:hover,
a.btn_style:visited {
  color: #fff;
}
.btn_style {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  min-height: 60px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 30px;
  border-radius: 10px;
  background-color: #361d10;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  font-weight: 600;
  line-height: 1.2;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.btn_style::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: 0;
  width: 10px;
  height: 15px;
  margin-right: 12px;
  transform: translateY(-50%);
  background: url(../images/common/img_arrow_btn_r.svg) no-repeat;
  background-size: contain;
  transition: margin 0.3s ease;
}
.btn_style.strong {
  font-size: 24px;
}
@media (hover: hover) and (pointer: fine) {
  .btn_style:hover {
    color: #fff;
    text-decoration: none;
    opacity: 0.7;
  }
  .btn_style:hover::after {
    margin-right: 8px;
  }
}
@media screen and (max-width: 767px) {
  .btn_style {
    min-height: 40px;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
  }
  .btn_style::after {
    margin-right: 5px;
    width: 8px;
    height: 12px;
  }
  .btn_style.strong {
    font-size: 18px;
  }
}
.btn_style.btn_green {
  background-color: #6EB92B;
}
.btn_style.btn_yellow {
  background-color: #FACC15;
}
.btn_style.btn_orange {
  background-color: #FB923C;
}
.btn_style.btn_pink {
  background-color: #F472B6;
}
.btn_style.btn_red {
  background-color: #EF4444;
}
.btn_style.btn_border::before {
  content: "";
  position: absolute;
  display: block;
  top: 3px;
  bottom: 3px;
  left: 3px;
  right: 3px;
  border-radius: 8px;
  border: 1px solid #fff;
  pointer-events: none;
}
.btn_style.btn_multiline {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2px;
}
.btn_style.btn_multiline span {
  display: block;
}
.btn_style.btn_multiline .upper {
  font-size: 16px;
  font-weight: bold;
  font-weight: 600;
}
.btn_style.btn_multiline .lower {
  font-size: 12px;
}
/* ボタン（四角） */
.btn_square {
  position: relative;
  display: table;
  padding: 20px 60px;
  width: auto;
  max-width: 100%;
  min-width: 400px;
  border-radius: 0;
  border-bottom: 4px solid #5a4330;
  background: #f1c600;
  color: #311b0b;
  text-align: center;
  font-size: 24px;
  font-weight: normal;
  line-height: 1.2;
  text-decoration: none;
}
.btn_square::after {
  position: absolute;
  content: '';
  top: 40%;
  right: 20px;
  width: 12px;
  height: 12px;
  border-top: 2px solid #93751e;
  border-right: 2px solid #93751e;
  background: none;
  transform: rotate(45deg);
}
@media (hover: hover) and (pointer: fine) {
  .btn_square {
    transition: opacity 0.3s ease;
  }
  .btn_square::after {
    transition: right 0.3s ease;
  }
  .btn_square:hover {
    color: #311b0b;
    opacity: 0.7;
    text-decoration: none;
  }
  .btn_square:hover::after {
    right: 15px;
  }
}
@media screen and (max-width: 767px) {
  .btn_square {
    min-width: 0;
    padding: 15px 40px;
    font-size: 18px;
  }
  .btn_square::after {
    right: 10px;
    width: 8px;
    height: 8px;
    border-width: 1px 1px 0 0;
  }
}
/* ボタンブロック */
.btn_block {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 40px auto;
  gap: 10px 2%;
  width: auto;
}
.btn_block a {
  width: 49%;
  max-width: 490px;
}
.btn_block .btn_full {
  width: 100%;
  max-width: none;
}
/* 基本情報テーブル「 */
.info_table {
  max-width: 880px;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0;
  border: 0;
}
.info_table tr th,
.info_table tr td {
  border: none;
}
.info_table tr th,
.info_table tr td:first-child {
  width: 24%;
  border-top: 1px solid #f1c600;
  vertical-align: top;
  padding: 2% 3%;
  font-weight: bold;
}
.info_table tr td {
  width: 76%;
  border-top: 1px solid #f1c600;
  padding: 2% 3%;
}
.info_table tr:last-child th,
.info_table tr:last-child td {
  border-bottom: 1px solid #f1c600;
}
@media screen and (max-width: 767px) {
  .info_table {
    width: 94%;
    margin: 0 auto 10%;
  }
  .info_table th {
    padding: 2% 0;
  }
  .info_table td {
    padding: 2% 0 2% 8%;
  }
}
/* 求人リンクボックス */
.extra_link_box {
  position: relative;
  display: block;
  margin: 20px 0;
  padding: 20px;
  border-right: 60px solid #444444;
  background-color: #fff;
  color: inherit;
  text-decoration: none;
  transition: box-shadow 0.3s ease;
}
.extra_link_box:link {
  color: inherit;
}
.extra_link_box::before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: -40px;
  width: 20px;
  height: 30px;
  background: url(../images/common/img_arrow_linkbox.svg) center center no-repeat;
  background-size: contain;
  transform: translateY(-50%);
}
.extra_link_box .box_inr {
  display: flex;
}
.extra_link_box .thumbnail {
  width: 300px;
  padding-top: 200px;
  margin-right: 20px;
}
.extra_link_box .box_detail {
  flex: 1;
}
.extra_link_box .box_detail p {
  color: #444;
  font-size: 15px;
  text-decoration: none;
}
.extra_link_box .box_detail .title {
  position: relative;
  margin-bottom: 10px;
  padding-left: 10px;
  border-left: 5px solid #444;
  font-size: 21px;
  font-weight: bold;
  line-height: 1.5;
}
.extra_link_box .box_detail .title + .text {
  margin-top: 10px;
  padding-top: 10px;
  background: url(../images/common/bg_border_dots.png) left top repeat-x;
  background-size: 4px 1px;
}
@media (hover: hover) and (pointer: fine) {
  .extra_link_box {
    transition: box-shadow 0.3s ease;
  }
  .extra_link_box::before {
    transition: right 0.3s ease;
  }
  .extra_link_box .box_inr {
    transition: opacity 0.3s ease;
  }
  .extra_link_box:hover {
    text-decoration: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  }
  .extra_link_box:hover::before {
    right: -45px;
  }
  .extra_link_box:hover .box_inr {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .extra_link_box {
    padding: 15px;
    border-right-width: 30px;
  }
  .extra_link_box::before {
    right: -22px;
    width: 16px;
    height: 26px;
  }
  .extra_link_box .box_inr {
    display: block;
  }
  .extra_link_box .thumbnail {
    display: none;
  }
  .extra_link_box .box_detail .title {
    padding-left: 8px;
    border-left-width: 4px;
    font-size: 16px;
  }
  .extra_link_box .box_detail p {
    font-size: 12px;
    line-height: 1.4;
  }
}
/*  Accordion */
.accordion_list_block {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  cursor: pointer;
}
.accordion_list_block .article-title {
  display: block;
  margin: 0;
  padding: 0.625em 0.625em 0.625em 2em;
  font-size: 1.4em;
  font-weight: normal;
  color: #8a5924;
  background: #fff;
  cursor: pointer;
  border-bottom: 1px solid #f7f2e7;
  position: relative;
}
.accordion_list_block .article-title::after {
  content: "";
  position: absolute;
  right: 25px;
  top: 38%;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 2px #8a5924;
  border-right: solid 2px #8a5924;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.accordion_list_block .article-title:hover {
  background-color: #e8d0a9;
}
.accordion_list_block .accordion-content {
  display: none;
}
.accordion_list_block .area_ttl {
  padding: 0.4% 4%;
  margin: 0;
  color: #f4e4c2;
  background: #52392c;
}
.accordion_list_block .store_list_child li {
  padding: 1.4% 4%;
  background: #7f5b22;
  color: #f7f2e7;
  border-top: 1px solid #f7f2e7;
  position: relative;
  font-size: 1.4em;
}
.accordion_list_block .store_list_child li::after {
  content: "";
  position: absolute;
  right: 25px;
  top: 38%;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 2px #f7f2e7;
  border-left: solid 2px #f7f2e7;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.accordion_list_block .store_list_child li:last-child {
  border-bottom: 1px solid #f7f2e7;
}
.accordion_list_block .store_list_child li:last-child li::after {
  content: "";
  position: absolute;
  right: 25px;
  top: 38%;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 2px #f7f2e7;
  border-left: solid 2px #f7f2e7;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.accordion_list_block .store_list_child li a {
  color: #fff;
  display: block;
}
/* お近くの店舗
---------------------------------------------------- */
.section_nearby_shops {
  padding: 50px 0;
  background: #fff;
}
.section_nearby_shops .inner {
  display: flex;
}
.section_nearby_shops .title_area {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 410px;
  text-align: center;
  line-height: 1;
  color: #573816;
}
.section_nearby_shops .title_area .title {
  margin: 0 0 10px;
  font-size: 40px;
}
.section_nearby_shops .title_area .lede {
  font-size: 14px;
}
.section_nearby_shops .detail_area {
  flex: 1;
}
.section_nearby_shops .detail_area .nearby_navi__list {
  max-width: 520px;
  border-top: 1px dotted #D0AA6E;
}
.section_nearby_shops .detail_area .nearby_navi__list li {
  text-align: left;
  border-bottom: 1px dotted #D0AA6E;
}
.section_nearby_shops .detail_area .nearby_navi__list li a {
  display: block;
  padding: 15px;
  color: #573816;
  line-height: 1.5;
  text-decoration: none;
  transition: 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .section_nearby_shops .detail_area .nearby_navi__list li a {
    transition: color 0.3s ease;
  }
  .section_nearby_shops .detail_area .nearby_navi__list li a:hover {
    color: #D0AA6E;
  }
}
@media screen and (max-width: 767px) {
  .section_nearby_shops {
    padding: 20px 0;
  }
  .section_nearby_shops .inner {
    display: block;
  }
  .section_nearby_shops .title_area {
    display: block;
    width: auto;
    margin: 0 0 20px;
  }
  .section_nearby_shops .title_area .title {
    font-size: 18px;
  }
  .section_nearby_shops .title_area .lede {
    font-size: 12px;
  }
  .section_nearby_shops .detail_area .nearby_navi__list {
    max-width: none;
  }
}
/* 順序付きブロック
---------------------------------------------------- */
.ordered_block_wrapper {
  max-width: 880px;
  margin: 0 auto;
}
.ordered_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.ordered_title .icon_num {
  width: 60px;
  margin: 0 10px 0 0;
}
.ordered_title .icon_num img {
  width: 100%;
  height: auto;
}
.ordered_title .title {
  flex: 1;
  margin: 8px 0 0;
  font-size: 26px;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .ordered_title .icon_num {
    width: 46px;
    margin-right: 0.5em;
  }
  .ordered_title .title {
    margin-top: 5px;
    font-size: 16px;
  }
}
.feature_box {
  display: flex;
  margin-bottom: 40px;
  background: #573816 url(../images/common/bg_figure_block.png) repeat;
  font-size: 14px;
}
.feature_box .image {
  position: relative;
  width: 436px;
  padding-top: 246px;
}
.feature_box .image img {
  position: absolute;
  top: 0;
  width: 100%;
  height: auto;
}
.feature_box .image .caption {
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  margin: 0;
  padding: 5px;
  background: rgba(0, 0, 0, 0.7);
  color: #f7f2e7;
  text-align: center;
}
.feature_box .detail {
  flex: 1;
  color: #f3eddf;
  padding: 24px 20px;
  line-height: 1.7;
}
.feature_box .detail p {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .feature_box {
    display: block;
  }
  .feature_box .image {
    width: 100%;
    padding-top: 56.4%;
  }
  .feature_box .detail {
    padding: 10px;
    line-height: 1.5;
  }
}
/* ====================================================
# WP Contents
==================================================== */
.wp_content {
  font-size: 16px;
}
.wp_content h2 {
  position: relative;
  margin: 100px auto 30px;
  padding: 12px 150px;
  border-top: 2px solid #8A5924;
  border-bottom: 2px solid #8A5924;
  text-align: center;
  font-size: 28px;
  line-height: 1.2;
  color: #8A5924;
}
.wp_content h2::before,
.wp_content h2::after {
  content: "";
  position: absolute;
  display: block;
}
.wp_content h2::before {
  top: -46px;
  left: -23px;
  width: 175px;
  height: 85px;
  background: url(../images/common/img_title_leaf01.png) no-repeat;
  background-size: contain;
}
.wp_content h2::after {
  bottom: -24px;
  right: -27px;
  width: 85px;
  height: 75px;
  background: url(../images/common/img_title_leaf02.png) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .wp_content h2 {
    margin: 50px auto 20px;
    padding: 7px 0px;
    font-size: 18px;
  }
  .wp_content h2::before {
    top: -27px;
    left: -6px;
    width: 86px;
    height: 42px;
  }
  .wp_content h2::after {
    bottom: -18px;
    right: -7px;
    width: 42px;
    height: 38px;
  }
}
.wp_content h3 {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "HG明朝E", serif;
  position: relative;
  margin: 50px 0 20px;
  padding-left: 36px;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.3;
}
.wp_content h3::before {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 0;
  width: 26px;
  height: 26px;
  background: url(../images/common/icn_title03.png);
  background-size: contain;
}
.wp_content h3:first-child {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .wp_content h3 {
    margin: 30px 0 15px;
    padding-left: 18px;
    font-size: 18px;
  }
  .wp_content h3::before {
    top: 4px;
    width: 13px;
    height: 13px;
  }
}
.wp_content h4 {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "HG明朝E", serif;
  position: relative;
  margin: 30px 0 20px;
  padding: 0 0 5px 32px;
  border-bottom: 2px solid #573816;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.3;
}
.wp_content h4::before {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 0;
  width: 25px;
  height: 25px;
  background: url(../images/common/icn_title04.png);
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .wp_content h4 {
    margin: 20px 0 15px;
    padding: 0 0 5px 18px;
    border-bottom-width: 1px;
    font-size: 16px;
  }
  .wp_content h4::before {
    top: 3px;
    left: 2px;
    width: 12px;
    height: 12px;
  }
}
.wp_content p {
  margin: 0 0 1em;
}
.wp_content hr.wp-block-separator {
  border-color: #573816;
}
.wp_content .wp-block-table table {
  max-width: 880px;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0;
  border: 0;
}
.wp_content .wp-block-table table tr th,
.wp_content .wp-block-table table tr td {
  border: none;
}
.wp_content .wp-block-table table tr th,
.wp_content .wp-block-table table tr td:first-child {
  width: 24%;
  border-top: 1px solid #f1c600;
  vertical-align: top;
  padding: 2% 3%;
  font-weight: bold;
}
.wp_content .wp-block-table table tr td {
  width: 76%;
  border-top: 1px solid #f1c600;
  padding: 2% 3%;
}
.wp_content .wp-block-table table tr:last-child th,
.wp_content .wp-block-table table tr:last-child td {
  border-bottom: 1px solid #f1c600;
}
@media screen and (max-width: 767px) {
  .wp_content .wp-block-table table {
    width: 94%;
    margin: 0 auto 10%;
  }
  .wp_content .wp-block-table table th {
    padding: 2% 0;
  }
  .wp_content .wp-block-table table td {
    padding: 2% 0 2% 8%;
  }
}
.wp_content .wp-block-buttons {
  margin: 30px 0;
}
.wp_content .wp-block-buttons .wp-block-button {
  width: 100%;
}
.wp_content .wp-block-buttons a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  min-height: 60px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 30px;
  border-radius: 10px;
  background-color: #361d10;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  font-weight: 600;
  line-height: 1.2;
  transition: opacity 0.3s ease;
  cursor: pointer;
  width: 50%;
}
.wp_content .wp-block-buttons a::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: 0;
  width: 10px;
  height: 15px;
  margin-right: 12px;
  transform: translateY(-50%);
  background: url(../images/common/img_arrow_btn_r.svg) no-repeat;
  background-size: contain;
  transition: margin 0.3s ease;
}
.wp_content .wp-block-buttons a.strong {
  font-size: 24px;
}
@media (hover: hover) and (pointer: fine) {
  .wp_content .wp-block-buttons a:hover {
    color: #fff;
    text-decoration: none;
    opacity: 0.7;
  }
  .wp_content .wp-block-buttons a:hover::after {
    margin-right: 8px;
  }
}
@media screen and (max-width: 767px) {
  .wp_content .wp-block-buttons a {
    min-height: 40px;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
  }
  .wp_content .wp-block-buttons a::after {
    margin-right: 5px;
    width: 8px;
    height: 12px;
  }
  .wp_content .wp-block-buttons a.strong {
    font-size: 18px;
  }
}
.wp_content .wp-block-buttons a.btn_green {
  background-color: #6EB92B;
}
.wp_content .wp-block-buttons a.btn_yellow {
  background-color: #FACC15;
}
.wp_content .wp-block-buttons a.btn_orange {
  background-color: #FB923C;
}
.wp_content .wp-block-buttons a.btn_pink {
  background-color: #F472B6;
}
.wp_content .wp-block-buttons a.btn_red {
  background-color: #EF4444;
}
.wp_content .wp-block-buttons a.btn_border::before {
  content: "";
  position: absolute;
  display: block;
  top: 3px;
  bottom: 3px;
  left: 3px;
  right: 3px;
  border-radius: 8px;
  border: 1px solid #fff;
  pointer-events: none;
}
.wp_content .wp-block-buttons a.btn_multiline {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2px;
}
.wp_content .wp-block-buttons a.btn_multiline span {
  display: block;
}
.wp_content .wp-block-buttons a.btn_multiline .upper {
  font-size: 16px;
  font-weight: bold;
  font-weight: 600;
}
.wp_content .wp-block-buttons a.btn_multiline .lower {
  font-size: 12px;
}
.wp_content .wp-block-buttons a span {
  font-weight: inherit;
}
.wp_content .wp_btn_block_square {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 30px;
}
.wp_content .wp_btn_block_square a {
  position: relative;
  display: table;
  padding: 20px 60px;
  width: auto;
  max-width: 100%;
  min-width: 400px;
  border-radius: 0;
  border-bottom: 4px solid #5a4330;
  background: #f1c600;
  color: #311b0b;
  text-align: center;
  font-size: 24px;
  font-weight: normal;
  line-height: 1.2;
  text-decoration: none;
}
.wp_content .wp_btn_block_square a::after {
  position: absolute;
  content: '';
  top: 40%;
  right: 20px;
  width: 12px;
  height: 12px;
  border-top: 2px solid #93751e;
  border-right: 2px solid #93751e;
  background: none;
  transform: rotate(45deg);
}
@media (hover: hover) and (pointer: fine) {
  .wp_content .wp_btn_block_square a {
    transition: opacity 0.3s ease;
  }
  .wp_content .wp_btn_block_square a::after {
    transition: right 0.3s ease;
  }
  .wp_content .wp_btn_block_square a:hover {
    color: #311b0b;
    opacity: 0.7;
    text-decoration: none;
  }
  .wp_content .wp_btn_block_square a:hover::after {
    right: 15px;
  }
}
@media screen and (max-width: 767px) {
  .wp_content .wp_btn_block_square a {
    min-width: 0;
    padding: 15px 40px;
    font-size: 18px;
  }
  .wp_content .wp_btn_block_square a::after {
    right: 10px;
    width: 8px;
    height: 8px;
    border-width: 1px 1px 0 0;
  }
}
.wp_content .map_container {
  margin-bottom: 40px;
}
.wp_content .map_container .wp-block-group__inner-container {
  margin: 0 auto;
  max-width: 880px;
  aspect-ratio: 16 / 9;
}
.wp_content .map_container .wp-block-group__inner-container iframe {
  width: 100%;
  height: 100%;
}
.wp_content .wp-block-embed.is-type-video .wp-block-embed__wrapper {
  margin: 0 auto 40px;
  max-width: 880px;
  aspect-ratio: 16 / 9;
}
.wp_content .wp-block-embed.is-type-video .wp-block-embed__wrapper iframe {
  width: 100%;
  height: 100%;
}
.wp_content > *:first-child {
  margin-top: 0 !important;
}
.wp_content > *:last-child {
  margin-bottom: 0 !important;
}
.wp_content.item_detail h2,
.wp_content.item_detail h3,
.wp_content.item_detail h4,
.wp_content.item_detail h5,
.wp_content.item_detail h6 {
  margin: 25px 0 15px;
  padding: 0;
  border: 0;
  color: inherit;
  text-align: left;
  font-size: 12px;
  font-family: inherit;
  font-weight: inherit;
  line-height: 1.2;
}
.wp_content.item_detail h2::before,
.wp_content.item_detail h3::before,
.wp_content.item_detail h4::before,
.wp_content.item_detail h5::before,
.wp_content.item_detail h6::before,
.wp_content.item_detail h2::after,
.wp_content.item_detail h3::after,
.wp_content.item_detail h4::after,
.wp_content.item_detail h5::after,
.wp_content.item_detail h6::after {
  display: none;
}
.wp_content.item_detail h4 {
  padding: 1px 0 1px 6px;
  border-left: 4px solid #361d10;
  font-size: 18px;
  font-weight: bold;
}
.wp_content.item_detail h5 {
  position: relative;
  padding-left: 10px;
  font-size: 17px;
  font-weight: bold;
}
.wp_content.item_detail h5::before {
  content: "";
  display: block;
  position: absolute;
  top: 7px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #361d10;
}
.wp_content.item_detail h6 {
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .wp_content {
    font-size: 14px;
  }
  .wp_content.item_detail h4 {
    padding: 1px 0 1px 4px;
    border-left-width: 3px;
    font-size: 16px;
  }
  .wp_content.item_detail h5 {
    padding-left: 8px;
    font-size: 15px;
  }
  .wp_content.item_detail h5::before {
    top: 6px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
  }
  .wp_content.item_detail h6 {
    font-size: 14px;
  }
}
/* ====================================================
# Footer
==================================================== */
.site_footer {
  padding: 20px 0;
  background-color: #361d10;
  color: #fff;
}
.site_footer .social_link_block {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
}
.site_footer .social_link_block a {
  display: block;
  width: 34px;
  height: 34px;
  margin: 0 10px 10px;
  transition: transform 0.3s ease;
}
.site_footer .social_link_block a img {
  display: block;
  width: 100%;
  height: auto;
}
@media (hover: hover) and (pointer: fine) {
  .site_footer .social_link_block a:hover {
    transform: scale(1.2);
  }
}
.site_footer .navi_block {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 0;
}
.site_footer .navi_block .logo img {
  width: 170px;
  height: 85px;
}
.site_footer .navi_block .footer_nav {
  display: flex;
  flex-wrap: wrap;
  max-width: 740px;
  margin-top: 20px;
  gap: 15px 30px;
}
.site_footer .navi_block .footer_nav a {
  position: relative;
  display: block;
  padding-left: 14px;
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
  text-decoration: none;
}
.site_footer .navi_block .footer_nav a::before {
  content: "";
  position: absolute;
  display: block;
  top: 4px;
  left: 0;
  border: 4px solid transparent;
  border-left: 7px solid #fff;
  border-right-width: 0;
}
@media (hover: hover) and (pointer: fine) {
  .site_footer .navi_block .footer_nav a:hover {
    text-decoration: underline;
  }
}
@media screen and (max-width: 767px) {
  .site_footer .navi_block {
    display: block;
    padding: 15px 0;
  }
  .site_footer .navi_block .logo {
    text-align: center;
  }
  .site_footer .navi_block .logo img {
    width: 140px;
    height: 70px;
  }
  .site_footer .navi_block .footer_nav {
    justify-content: space-between;
    width: 80vw;
    max-width: none;
    margin: 26px auto 0;
    gap: 10px 4%;
  }
  .site_footer .navi_block .footer_nav a {
    min-width: 48%;
  }
}
.site_footer .seo_block {
  margin: 20px 0;
}
.site_footer .seo_block .title {
  margin-bottom: 10px;
  padding-left: 10px;
  border-left: 5px solid #fff;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
}
.site_footer .seo_block .text {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .site_footer .seo_block {
    margin: 10px 0;
  }
  .site_footer .seo_block .title {
    padding-left: 8px;
    border-left-width: 4px;
    font-size: 16px;
  }
  .site_footer .seo_block .text {
    font-size: 12px;
  }
}
.site_footer .copy {
  margin: 20px 0 0;
  text-align: center;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .site_footer .copy {
    font-size: 12px;
  }
}
.footer_reserve {
  height: 110px;
}
.footer_reserve .fixed_block {
  position: fixed;
  z-index: 100;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px 0;
  background-color: rgba(230, 221, 210, 0.8);
}
.footer_reserve .inner {
  max-width: 1080px;
  padding: 0 40px;
}
.footer_reserve + .pagetop {
  bottom: 110px;
}
@media screen and (max-width: 767px) {
  .footer_reserve {
    height: 90px;
  }
  .footer_reserve .fixed_block {
    padding: 12px 0;
  }
  .footer_reserve .inner {
    max-width: none;
    padding: 0;
  }
  .footer_reserve + .pagetop {
    bottom: 90px;
  }
}
.pagetop {
  display: none;
  position: fixed;
  z-index: 50;
  width: 100%;
  bottom: 0;
}
.pagetop a {
  position: absolute;
  display: block;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 60px;
  margin: 10px;
  background: url(../images/common/img_pagetop.png) no-repeat;
  background-size: contain;
  opacity: 0.6;
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .pagetop a:hover {
    opacity: 1;
    transform: scale(1.1);
  }
}
@media screen and (max-width: 767px) {
  .pagetop a {
    width: 40px;
    height: 40px;
    margin: 1.5vw;
  }
}
/* ====================================================
# WP Activation // アカウント登録完了
==================================================== */
.wp-activate-container {
  padding: 100px 0;
  max-width: 600px;
}
.wp-activate-container h2 {
  font-size: 18px;
  font-weight: bold;
}
.wp-activate-container #signup-welcome {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
}
.wp-activate-container span.h3 {
  font-size: inherit;
  font-weight: normal;
}
