@charset "UTF-8";
/* フォントフェースの定義 */
@font-face {
  font-family: "M PLUS 1p";
  src: url("../fonts/MPLUS1p-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "M PLUS 1p";
  src: url("../fonts/MPLUS1p-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "M PLUS 1p";
  src: url("../fonts/MPLUS1p-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "M PLUS 1p";
  src: url("../fonts/MPLUS1p-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "M PLUS 1p";
  src: url("../fonts/MPLUS1p-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "M PLUS 1p";
  src: url("../fonts/MPLUS1p-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "M PLUS 1p";
  src: url("../fonts/MPLUS1p-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
/* 全体へのフォント適用 */
body,
body * {
  font-family: "M PLUS 1p", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  /* デフォルトのウェイト */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#site-header {
  z-index: 99999;
}

ul, li {
  list-style: none;
  margin: 0;
}

.d-flex {
  display: flex;
}

.d-inline-block {
  display: inline-block;
}

.justify-content-center {
  justify-content: space-center;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-around {
  justify-content: space-around;
}

.aligin-itemes-center {
  align-items: center;
}

.aligin-itemes-stretch {
  align-items: stretch;
}

.under-line_120 {
  position: relative;
}
.under-line_120::after {
  position: absolute;
  content: "";
  width: 140%;
  left: 50%;
  bottom: -10%;
  border-bottom: 2px solid grey;
  transform: translateX(-50%);
  transition: width 1.5s ease;
}

.text-start {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-end {
  text-align: right;
}

.text-color-green {
  color: #0f0;
}

.text-color-blue {
  color: #00f;
}

.text-small {
  font-size: 0.8em;
}

.fw-bold {
  font-weight: bolder;
}

.fa-solid.fa-square-check, .fa-solid.fa-droplet {
  margin-right: 0.5em;
}

br.sp {
  display: none;
}
@media (max-width: 782px) {
  br.sp {
    display: block;
  }
}

/*************************************************************************************************************************/
.progress_hover {
  position: relative;
  overflow: hidden;
  color: #222;
  background-color: transparent;
}
.progress_hover span {
  position: relative;
  z-index: 1;
}
.progress_hover::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background-color: #ff0;
  z-index: 0;
  transition: width 0.5s ease;
}
.progress_hover:hover::before {
  width: 100%;
}

/*************************************************************************************************************************/
section {
  padding: 2rem 0;
}
@media (max-width: 782px) {
  section {
    padding: 1rem 0;
  }
}

.btn_contact_link {
  background-color: lime !important;
  border: 1px solid grey !important;
}
.btn_contact_link span {
  padding: 2em 7em;
}
.btn_contact_link:hover {
  background-color: rgba(0, 255, 0, 0.2) !important;
}

body {
  text-align: center;
}

header {
  position: fixed !important;
  top: 0;
  width: 100%;
  background: rgb(255, 255, 255) !important;
  z-index: 999;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}
header > .header-inner {
  justify-content: inherit !important;
  padding: 1.5rem 0;
}
header > .header-inner .header-titles-wrapper .header-titles {
  display: flex;
  align-items: center;
}
header > .header-inner .header-titles-wrapper .header-titles .site-title {
  margin-left: 1rem;
  margin-top: 0;
  font-size: 3rem;
}
header > .header-inner .header-titles-wrapper .toggle-text {
  display: none;
}
@media (max-width: 782px) {
  header > .header-inner .header-titles-wrapper {
    padding-left: 0;
    justify-content: start;
  }
}

footer#site-footer .footer-wrap {
  width: 1400px;
  margin: 2em auto 1em;
}
footer#site-footer .footer-wrap .footer-wrap_right {
  width: 1400px;
}
footer#site-footer .footer-wrap .footer-wrap_right .footer-wrap_right-top ul.shop-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer#site-footer .footer-wrap .footer-wrap_right .footer-wrap_right-top ul.shop-list li.shop-list_item {
  width: 30%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
footer#site-footer .footer-wrap .footer-wrap_right .footer-wrap_right-top ul.shop-list li.shop-list_item .shop-list_title {
  text-align: center;
}
footer#site-footer .footer-wrap .footer-wrap_right .footer-wrap_right-top ul.shop-list li.shop-list_item .shop-list_title a {
  font-size: 1.5em;
  color: #222;
}
footer#site-footer .footer-wrap .footer-wrap_right .footer-wrap_right-top ul.shop-list li.shop-list_item > div:nth-child(3) {
  margin: 1rem 0 3rem;
}
footer#site-footer .footer-wrap .footer-wrap_right .footer-wrap_right-top ul.shop-list li.shop-list_item .shop_detail {
  position: relative;
  transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
}
footer#site-footer .footer-wrap .footer-wrap_right .footer-wrap_right-top ul.shop-list li.shop-list_item .shop_detail a {
  color: white;
  padding: 1rem 3rem;
  border: 1px solid #222;
  font-size: 1.75rem;
  display: block;
}
footer#site-footer .footer-wrap .footer-wrap_right .footer-wrap_right-top ul.shop-list li.shop-list_item .shop_detail a svg {
  display: inline-block;
  position: relative;
  top: -0.05em;
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 1rem;
  fill: #222;
  -webkit-transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
}
footer#site-footer .footer-wrap .footer-wrap_right .footer-wrap_right-top ul.shop-list li.shop-list_item .shop_detail a:hover svg {
  transform: translate(7rem, 0);
}
footer#site-footer .footer-wrap .footer-wrap_right .footer-wrap_right-center,
footer#site-footer .footer-wrap .footer-wrap_right .footer-wrap_right-bottom {
  margin-top: 3em;
}
footer#site-footer .footer-wrap .footer-wrap_right .footer-wrap_right-center .footer-menu-wrapper,
footer#site-footer .footer-wrap .footer-wrap_right .footer-wrap_right-bottom .footer-menu-wrapper {
  display: block;
}
footer#site-footer .footer-wrap .footer-wrap_right .footer-wrap_right-center .footer-menu-wrapper ul.footer-menu,
footer#site-footer .footer-wrap .footer-wrap_right .footer-wrap_right-bottom .footer-menu-wrapper ul.footer-menu {
  display: block;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer#site-footer .footer-wrap .footer-wrap_right .footer-wrap_right-center .footer-menu-wrapper ul.footer-menu li,
footer#site-footer .footer-wrap .footer-wrap_right .footer-wrap_right-bottom .footer-menu-wrapper ul.footer-menu li {
  margin: 1rem;
}
footer#site-footer .footer-wrap .footer-wrap_right .footer-wrap_right-center .footer-menu-wrapper ul.footer-menu li a,
footer#site-footer .footer-wrap .footer-wrap_right .footer-wrap_right-bottom .footer-menu-wrapper ul.footer-menu li a {
  font-weight: normal;
  font-size: 1.75rem;
}
footer#site-footer .footer-wrap .footer-wrap_right .footer-wrap_right-center li {
  width: 23%;
}
@media (max-width: 782px) {
  footer#site-footer .footer-wrap > div {
    width: 100% !important;
  }
  footer#site-footer .footer-wrap .footer-wrap_right {
    padding: 0 1.5rem;
  }
  footer#site-footer .footer-wrap .footer-wrap_right .footer-wrap_right-top li.shop-list_item > div:nth-child(2),
  footer#site-footer .footer-wrap .footer-wrap_right .footer-wrap_right-top li.shop-list_item > div:nth-child(3) {
    display: none;
  }
  footer#site-footer .footer-wrap .footer-wrap_right .footer-wrap_right-top li.shop-list_item .shop_detail {
    margin-top: 1em;
  }
  footer#site-footer .footer-wrap .footer-wrap_right .footer-wrap_right-top li.shop-list_item .shop_detail a {
    font-size: 1.5rem !important;
    padding: 1rem !important;
  }
  footer#site-footer .footer-wrap .footer-wrap_right .footer-wrap_right-top li.shop-list_item .shop_detail a svg {
    margin-left: 0 !important;
  }
  footer#site-footer .footer-wrap .footer-wrap_right .footer-wrap_right-top li.shop-list_item .shop_detail a:hover svg {
    transform: translate(6.5rem, 0) !important;
  }
  footer#site-footer .footer-wrap .footer-wrap_right .footer-wrap_right-center {
    margin-top: 1em;
  }
  footer#site-footer .footer-wrap .footer-wrap_right .footer-wrap_right-center .footer-menu-wrapper .footer-menu .menu-item {
    width: calc(50% - 2rem);
  }
  footer#site-footer .footer-wrap .footer-wrap_right .footer-wrap_right-bottom {
    margin-top: 1em;
    padding-top: 1em;
    border-top: 1px solid lightgrey;
  }
}

footer#site-footer {
  background-color: rgba(255, 255, 0, 0.5);
  color: #222;
  padding: 2rem 0;
}
@media (max-width: 782px) {
  footer#site-footer {
    margin-bottom: 0;
  }
  footer#site-footer .section-inner {
    display: none;
  }
}
footer#site-footer .footer-wrap {
  width: 1400px;
  margin: 2em auto 1em;
}
footer#site-footer .footer-wrap .footer-wrap_top {
  width: 960px;
  margin: 0 auto;
}
footer#site-footer .footer-wrap .footer-wrap_top .top_items {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
footer#site-footer .footer-wrap .footer-wrap_top .top_items .top_item {
  width: 20%;
}
footer#site-footer .footer-wrap .footer-wrap_top .top_items .top_item:not(:last-child) {
  padding-right: 2rem;
}
footer#site-footer .footer-wrap .footer-wrap_top .top_items .top_item .top_item_header {
  width: 100%;
  border-bottom: 1px solid grey;
  margin-bottom: 0.75rem;
  font-size: large;
}
footer#site-footer .footer-wrap .footer-wrap_top .top_items .top_item .top_item_header > div {
  font-size: small;
}
footer#site-footer .footer-wrap .footer-wrap_top .top_items .top_item .top_item_children {
  list-style: none;
  padding-left: 0;
  font-size: small;
}
footer#site-footer .footer-wrap .footer-wrap_top .top_items .top_item .top_item_children li {
  line-height: 2;
  text-align: left;
}
footer#site-footer .footer-wrap .footer-wrap_bottom {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 3rem;
}
footer#site-footer .footer-wrap .footer-wrap_bottom .footer-titles {
  display: flex;
  align-items: center;
  margin-bottom: 2em;
}
footer#site-footer .footer-wrap .footer-wrap_bottom .footer-titles .site-title {
  margin-left: 1rem;
  margin-top: 0;
  font-size: 3rem;
}
footer#site-footer .footer-wrap .footer-wrap_bottom .toggle-text {
  display: none;
}
@media (max-width: 782px) {
  footer#site-footer .footer-wrap .footer-wrap_bottom {
    padding-left: 0;
    justify-content: start;
  }
}
@media (max-width: 782px) {
  footer#site-footer .footer-wrap > div {
    width: 100% !important;
  }
  footer#site-footer .footer-wrap .footer-wrap_top .top_items {
    padding: 0 3rem;
    justify-content: space-between;
  }
  footer#site-footer .footer-wrap .footer-wrap_top .top_items .top_item {
    width: 40%;
    margin-bottom: 2rem;
    position: relative;
  }
  footer#site-footer .footer-wrap .footer-wrap_top .top_items .top_item:not(:last-child) {
    padding-right: 0;
  }
  footer#site-footer .footer-wrap .footer-wrap_top .top_items .top_item:nth-child(odd) {
    padding-right: 2rem;
  }
  footer#site-footer .footer-wrap .footer-wrap_top .top_items .top_item .top_item_children {
    position: absolute;
    top: 40%;
    left: 2em;
    border: 1px solid grey;
    display: none;
    background: #fff;
    z-index: 999;
    padding: 0.5em 1em;
    width: 100%;
  }
  footer#site-footer .footer-wrap .footer-wrap_top .top_items .top_item:hover .top_item_children {
    display: block;
  }
  footer#site-footer .footer-wrap .footer-wrap_bottom {
    order: 2;
    margin-top: 1em;
    flex-wrap: wrap;
    justify-content: center;
  }
  footer#site-footer .footer-wrap .footer-wrap_bottom .footer-titles {
    width: 100%;
    justify-content: center;
    margin-bottom: 1em;
  }
  footer#site-footer .footer-wrap .footer-wrap_bottom .footer-credits {
    text-align: center;
  }
  footer#site-footer .footer-wrap .footer-wrap_bottom .footer-credits p {
    display: initial;
  }
}
footer#site-footer .footer-copyright {
  display: flex;
  align-items: center;
}
footer#site-footer .footer-copyright img {
  padding-left: 2rem;
}
@media (max-width: 782px) {
  footer#site-footer .footer-wrap {
    width: 100%;
  }
}

.footer-wrap a {
  color: #222 !important;
}

.fixed-sp-spy {
  position: fixed;
  bottom: 10%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  z-index: 999;
  font-size: 0.9em;
}
.fixed-sp-spy nav {
  border: 1px solid grey;
}
.fixed-sp-spy nav a {
  display: block;
  padding: 1rem 0.5rem;
}
.fixed-sp-spy nav a:nth-child(odd) {
  background: rgba(0, 255, 0, 0.3);
}
.fixed-sp-spy nav a:nth-child(even) {
  background: rgba(255, 255, 0, 0.3);
}

.fixed-recruit-banner {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  padding: 2rem 1rem;
  background: rgba(0, 255, 0, 0.7);
  z-index: 999;
}
.fixed-recruit-banner .banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.fixed-recruit-banner .banner-content a {
  color: #222;
  display: inline-block;
  text-align: center;
}
.fixed-recruit-banner .banner-content a .banner-text {
  white-space: pre-line;
  text-align: center;
  margin-bottom: 2rem;
  writing-mode: vertical-rl;
  /* 縦書き（右から左） */
  text-orientation: upright;
  /* 文字の向きを正しく */
}
.fixed-recruit-banner .banner-content a img {
  width: 32px;
  height: 32px;
  margin-bottom: 5px;
}
@media (max-width: 782px) {
  .fixed-recruit-banner {
    right: 0;
    left: initial;
    padding: 2rem 0.5rem;
  }
}

#news-wrap .content-block_inner {
  max-width: 920px;
}

#info-wrap .content-block_inner {
  max-width: 960px;
}

#greeting-wrap {
  padding-right: 0;
  padding-left: 0;
}
#greeting-wrap .content-block {
  margin: 4em auto;
}
#greeting-wrap .content-block .block-child * {
  text-align: left;
}
#greeting-wrap .content-block .section-header_main.crayon span {
  position: relative;
  padding: 0.5em 2em;
  box-shadow: 0px -10px 10px -5px rgba(247, 198, 104, 0.7) inset, 0px 10px 5px -3px #f7c668;
  font-weight: bold;
}
@media (max-width: 782px) {
  #greeting-wrap .content-block .section-header_main.crayon span {
    position: initial;
    padding: 0.5em 0em;
    text-align: center;
  }
}
#greeting-wrap .content-block .section-header_main.crayon span .person_img {
  position: absolute;
  height: 200%;
  bottom: 0;
}
@media (max-width: 782px) {
  #greeting-wrap .content-block .section-header_main.crayon span .person_img {
    right: -2em;
    height: 125%;
  }
}
#greeting-wrap .content-block .section-header_main.crayon span .person_img_1,
#greeting-wrap .content-block .section-header_main.crayon span .person_img_2 {
  right: -1em;
}
#greeting-wrap .content-block .section-header_main.crayon span .person_img_3 {
  left: -1em;
}
@media (max-width: 782px) {
  #greeting-wrap .content-block .section-header_main.crayon {
    position: relative;
  }
}
#greeting-wrap .content-block .greeting-signature {
  margin: 5rem auto 3rem;
  width: 30%;
}
@media (max-width: 782px) {
  #greeting-wrap .content-block .greeting-signature {
    width: 75%;
  }
}
#greeting-wrap .content-block:first-child .greeting-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 10em;
}
#greeting-wrap .content-block:first-child .greeting-container .greeting-image {
  width: 45%;
}
#greeting-wrap .content-block:first-child .greeting-container .greeting-image img {
  display: block;
  width: 60%;
  height: auto;
  margin: 0 auto;
}
@media (max-width: 782px) {
  #greeting-wrap .content-block:first-child .greeting-container .greeting-image {
    width: 100%;
  }
}
#greeting-wrap .content-block:first-child .greeting-container .greeting-text {
  margin: 2rem auto;
  line-height: 2;
  width: 50%;
}
@media (max-width: 782px) {
  #greeting-wrap .content-block:first-child .greeting-container .greeting-text {
    width: 100%;
  }
}
#greeting-wrap .content-block:first-child .greeting-container .greeting-mission > div {
  padding: 0.5em 0;
  font-size: 1.2em;
}
#greeting-wrap .content-block:first-child .greeting-gun {
  font-size: 1.75em;
}
@media (max-width: 782px) {
  #greeting-wrap .content-block:first-child .greeting-gun {
    font-size: 1.25em;
  }
}
#greeting-wrap .content-block:first-child .greeting-gun span {
  border-bottom: 3px double grey;
}
#greeting-wrap .greeting-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}
#greeting-wrap .greeting-container .greeting-image {
  width: 50%;
}
#greeting-wrap .greeting-container .greeting-image img {
  display: block;
  width: 100%;
  height: auto;
}
#greeting-wrap .greeting-container .greeting-text {
  margin: 2rem auto;
  line-height: 2;
  width: 100%;
}
#greeting-wrap .greeting-container .greeting-mission > div {
  padding: 0.5em 0;
  font-size: 1.2em;
}
#greeting-wrap .greeting-gun {
  font-size: 1.75em;
}
@media (max-width: 782px) {
  #greeting-wrap .greeting-gun {
    font-size: 1.25em;
  }
}
#greeting-wrap .greeting-gun span {
  border-bottom: 3px double grey;
}

.swiper {
  position: absolute !important;
  width: 100%;
  top: 0;
  left: 0;
}
@media (max-width: 782px) {
  .swiper {
    margin-top: 8rem;
  }
}
.swiper .swiper-slide {
  position: relative;
}
.swiper .swiper-slide > div span {
  position: absolute;
  display: inline-block;
  width: 80%;
  left: calc(10% - 2rem);
  bottom: calc(50% - 1em);
  font-size: 3vw;
  color: #ff0;
  z-index: 999;
  text-shadow: 5px 5px 5px rgba(0, 255, 0, 0.7);
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  background-color: rgba(192, 192, 192, 0.9);
  padding: 1rem 2rem;
  border-radius: 3em;
}
@media (max-width: 782px) {
  .swiper .swiper-slide > div span {
    font-size: 4vw;
    bottom: calc(50% - 2em);
  }
}
.swiper .swiper-slide.swiper-slide-active span {
  opacity: 1;
  /* アクティブ時に不透明にする */
}

#shops_wrap {
  padding-right: 0;
  padding-left: 0;
}

.content-block {
  margin: 0 auto;
}
.content-block .banner {
  margin: 1.25rem auto;
  padding-top: 5rem;
  width: 960px;
}
.content-block .banner .banner_item {
  width: 100%;
  box-shadow: 0 3px 12px rgba(34, 34, 34, 0.16);
}
.content-block .banner .banner_item .banner_link {
  overflow: hidden;
  display: flex;
  flex-direction: initial;
}
.content-block .banner .banner_item .banner_link > div {
  width: 50%;
}
.content-block .banner .banner_item .banner_link .banner_name {
  padding: 1.2rem 0;
  display: flex;
  background-color: rgba(255, 255, 0, 0.5);
  color: #fff;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.content-block .banner .banner_item .banner_link .banner_name span {
  color: #222;
}
.content-block .banner .banner_item .banner_link .banner_name span a {
  color: #222;
}
.content-block .banner .banner_item .banner_link .banner_name > span:first-child {
  font-size: 2em;
}
.content-block .banner .banner_item .banner_link .banner_name > span:last-child {
  margin-top: 1rem;
  font-size: 1.25em;
}
.content-block .banner .banner_item .banner_link .banner_image {
  width: 50%;
  height: 140px;
}
@media (max-width: 782px) {
  .content-block .banner {
    width: 100%;
  }
  .content-block .banner .banner_item .banner_link {
    flex-wrap: wrap;
  }
  .content-block .banner .banner_item .banner_link > div {
    width: 100%;
  }
  .content-block .banner .banner_item .banner_link .banner_name > span:first-child {
    font-size: 1.25em;
  }
  .content-block .banner .banner_item .banner_link .banner_name > span:last-child {
    font-size: 1em;
  }
  .content-block .banner .banner_item .banner_link .banner_image {
    width: 100%;
    height: inherit;
  }
}
.content-block .content-block_inner {
  margin: 2em auto;
  width: 100%;
  max-width: 960px;
}
.content-block .content-block_inner .section-header > * {
  text-align: center;
  line-height: 1.5;
}
.content-block .content-block_inner .section-header .section-header_main {
  font-weight: 600;
}
.content-block .content-block_inner .section-header .section-header_sub {
  margin-top: 1em;
}
.content-block .content-block_inner .section-body {
  margin-top: 1.5em;
}
.content-block .content-block_inner .section-body * {
  box-sizing: border-box;
}
.content-block .content-block_inner .section-body .shop-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  box-shadow: 0 5px 15px rgba(34, 34, 34, 0.2);
  border-radius: 5px;
}
.content-block .content-block_inner .section-body .shop-list .shop-list_item {
  width: 33%;
  padding: 0 1rem;
  position: relative;
  /* display: flex;
  flex-wrap: wrap; */
  margin-bottom: 2rem;
}
@media (max-width: 782px) {
  .content-block .content-block_inner .section-body .shop-list .shop-list_item {
    width: 100%;
    padding-bottom: 1em;
    margin-bottom: 1rem;
  }
}
.content-block .content-block_inner .section-body .shop-list .shop-list_item:nth-child(even) {
  border: 1px solid grey;
  border-top: none;
  border-bottom: none;
}
@media (max-width: 782px) {
  .content-block .content-block_inner .section-body .shop-list .shop-list_item:nth-child(even) {
    border: 1px solid grey;
    border-left: none;
    border-right: none;
  }
}
.content-block .content-block_inner .section-body .shop-list .shop-list_item .shop-list_recruit {
  position: absolute;
  left: 1.5rem;
  top: 2.5rem;
}
.content-block .content-block_inner .section-body .shop-list .shop-list_item .shop-list_recruit a {
  font-size: 1.3rem;
  padding: 0.5rem 1rem;
  margin-right: 1rem;
  color: #222;
  background-color: rgba(0, 255, 0, 0.8);
}
.content-block .content-block_inner .section-body .shop-list .shop-list_item .shop-list_recruit a:hover {
  background-color: rgba(0, 255, 0, 0.5);
}
.content-block .content-block_inner .section-body .shop-list .shop-list_item .shop-list_text {
  padding: 2rem 2rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
}
.content-block .content-block_inner .section-body .shop-list .shop-list_item .shop-list_text > div {
  margin-bottom: 1rem;
  width: 100%;
}
.content-block .content-block_inner .section-body .shop-list .shop-list_item .shop-list_text h5 {
  margin-top: 1rem;
}
.content-block .content-block_inner .section-body .shop-list .shop-list_item .shop-list_text .shop-list_image {
  overflow: hidden;
  width: 100%;
}
.content-block .content-block_inner .section-body .shop-list .shop-list_item .shop-list_text .shop-list_image img {
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  width: 100%;
  max-height: 165px;
  object-fit: none;
}
.content-block .content-block_inner .section-body .shop-list .shop-list_item .shop-list_text .shop-list_image:hover img {
  transform: scale(1.1);
}
.content-block .content-block_inner .section-body .shop-list .shop-list_item .shop-list_text .shop-list-text_address {
  min-height: 5em;
}
.content-block .content-block_inner .section-body .shop-list .shop-list_item .shop-list_text .shop-list-recruit > h6 {
  margin: 1rem auto;
}
.content-block .content-block_inner .section-body .shop-list .shop-list_item .shop-list_text .shop-list-recruit .shop-list-recruit_item > div {
  padding-left: 1em;
  line-height: 2;
}
.content-block .content-block_inner .section-body .shop-list .shop-list_item .shop-list_text .shop-list-text_table table {
  margin: 0;
}
.content-block .content-block_inner .section-body .shop-list .shop-list_item .shop-list_text .shop-list-text_table table th,
.content-block .content-block_inner .section-body .shop-list .shop-list_item .shop-list_text .shop-list-text_table table td {
  text-align: center;
  border: 1px solid #222;
}
.content-block .content-block_inner .section-body .shop-list .shop-list_item .shop-list_text .shop-list-text_table table thead th {
  color: #222;
  background-color: rgba(255, 255, 0, 0.5);
}
.content-block .content-block_inner .section-body .shop-list .shop-list_item .shop-list_text .shop-list-text_table table tbody .sales_head {
  display: flex;
  justify-content: space-between;
}
.content-block .content-block_inner .section-body .shop-list .shop-list_item .shop-list_text .shop_detail {
  width: 100%;
}
.content-block .content-block_inner .section-body .shop-list .shop-list_item .shop-list_text .shop_detail li.detail_1 > div {
  display: flex;
  align-items: stretch;
  text-align: center;
}
.content-block .content-block_inner .section-body .shop-list .shop-list_item .shop-list_text .shop_detail li.detail_1 > div > div:first-child {
  color: #222;
  background-color: rgba(255, 255, 0, 0.5);
  width: 30%;
  border: 1px solid #222;
  display: flex;
  justify-content: center;
  align-items: center;
}
.content-block .content-block_inner .section-body .shop-list .shop-list_item .shop-list_text .shop_detail li.detail_1 > div > div:last-child {
  width: 70%;
  border: 1px solid #222;
  border-left: none;
}
.content-block .content-block_inner .section-body .shop-list .shop-list_item .shop-list_text .shop_detail li.detail_2 {
  width: 100%;
  display: inline-block;
  border: 1px solid #222;
}
.content-block .content-block_inner .section-body .shop-list .shop-list_item .shop-list_text .shop_detail li.detail_2 a {
  color: #222;
  background-color: rgba(255, 255, 0, 0.5);
}
.content-block .content-block_inner .section-body .shop-list .shop-list_item .shop-list_text .shop_detail li.detail_2 .hover-effect:hover svg {
  transform: translate(3em, 0);
}
.content-block .content-block_inner .section-body .shop-list .shop-list_item .shop-list_text .shop_detail li a {
  width: 100%;
  padding: 0.75rem 3rem;
  display: inline-block;
}
.content-block .content-block_inner .section-body .shop-list .shop-list_item .shop-list_text .shop_detail li a svg {
  display: inline-block;
  position: relative;
  top: -0.05em;
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 1rem;
  fill: #222;
  -webkit-transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
}
.content-block .content-block_inner .section-body .shop-list .shop-list_item .shop-list_text .shop_detail li a:hover svg {
  transform: translate(15em, 0);
}
@media (max-width: 782px) {
  .content-block .content-block_inner .section-body .shop-list .shop-list_item .shop-list_image {
    width: 100%;
  }
  .content-block .content-block_inner .section-body .shop-list .shop-list_item .shop-list_text {
    width: 100%;
    padding: 1rem;
  }
  .content-block .content-block_inner .section-body .shop-list .shop-list_item .shop-list_text .shop-list-text_table {
    margin: 1.5rem 0;
  }
  .content-block .content-block_inner .section-body .shop-list .shop-list_item:nth-child(even) .shop-list_image {
    order: initial;
  }
}
.content-block .content-block_inner .section-body .shop-list .shop-list_page {
  position: relative;
  /*  display: flex;
   flex-wrap: wrap; */
  margin-bottom: 5rem;
  /* box-shadow: 0 5px 15px rgba($color_2,.2); */
}
.content-block .content-block_inner .section-body .shop-list .shop-list_page .shop-list_image {
  overflow: hidden;
  width: 100%;
}
.content-block .content-block_inner .section-body .shop-list .shop-list_page .shop-list_image img {
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  width: 100%;
}
.content-block .content-block_inner .section-body .shop-list .shop-list_page .shop-list_image:hover img {
  transform: scale(1.1);
}
.content-block .content-block_inner .section-body .shop-list .shop-list_page .shop-list_recruit {
  position: absolute;
  left: 1.5rem;
  top: 2.5rem;
}
.content-block .content-block_inner .section-body .shop-list .shop-list_page .shop-list_recruit a {
  font-size: 1.3rem;
  padding: 0.5rem 1rem;
  margin-right: 1rem;
  color: #222;
  background-color: rgba(0, 255, 0, 0.8);
}
.content-block .content-block_inner .section-body .shop-list .shop-list_page .shop-list_recruit a:hover {
  background-color: rgba(0, 255, 0, 0.5);
}
.content-block .content-block_inner .section-body .shop-list .shop-list_page .shop-greeting-area {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.content-block .content-block_inner .section-body .shop-list .shop-list_page .shop-greeting-area .shop-manager-image {
  width: 35%;
}
.content-block .content-block_inner .section-body .shop-list .shop-list_page .shop-greeting-area .shop-manager-image img {
  display: block;
  width: 100%;
  height: auto;
}
.content-block .content-block_inner .section-body .shop-list .shop-list_page .shop-greeting-area .shop-greeting-text {
  width: 100%;
}
.content-block .content-block_inner .section-body .shop-list .shop-list_page .shop-greeting-area .shop-greeting-text .shop-greeting-title {
  margin-top: 1rem;
  font-size: 1.1em;
  font-weight: bold;
}
.content-block .content-block_inner .section-body .shop-list .shop-list_page .shop-greeting-area .shop-greeting-text .shop-greeting-content {
  margin-top: 1rem;
}
.content-block .content-block_inner .section-body .shop-list .shop-list_page .map-container {
  margin-top: 2.5rem;
  margin-left: auto;
  margin-right: auto;
}
.content-block .content-block_inner .section-body .shop-list .shop-list_page .shop-list_text {
  margin-top: 2.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.content-block .content-block_inner .section-body .shop-list .shop-list_page .shop-list_text h4 {
  margin-top: 1rem;
}
.content-block .content-block_inner .section-body .shop-list .shop-list_page .shop-list_text .shop-list-text_table table {
  margin: 0;
}
.content-block .content-block_inner .section-body .shop-list .shop-list_page .shop-list_text .shop-list-text_table table th,
.content-block .content-block_inner .section-body .shop-list .shop-list_page .shop-list_text .shop-list-text_table table td {
  text-align: center;
  border: 1px solid #222;
}
.content-block .content-block_inner .section-body .shop-list .shop-list_page .shop-list_text .shop-list-text_table table thead th {
  color: #222;
  background-color: rgba(255, 255, 0, 0.5);
}
.content-block .content-block_inner .section-body .shop-list .shop-list_page .shop-list_text .shop-list-text_table table tbody td {
  padding: 1em;
}
.content-block .content-block_inner .section-body .shop-list .shop-list_page .shop-list_text .shop-list-text_table table tbody .sales_head {
  display: flex;
  justify-content: space-between;
}
.content-block .content-block_inner .section-body .shop-list .shop-list_page .shop-list_text .shop_detail li.detail_1 > div {
  display: flex;
  align-items: stretch;
  text-align: center;
}
.content-block .content-block_inner .section-body .shop-list .shop-list_page .shop-list_text .shop_detail li.detail_1 > div > div {
  padding: 1em;
}
.content-block .content-block_inner .section-body .shop-list .shop-list_page .shop-list_text .shop_detail li.detail_1 > div > div:first-child {
  color: #222;
  background-color: rgba(255, 255, 0, 0.5);
  width: 30%;
  border: 1px solid #222;
  display: flex;
  justify-content: center;
  align-items: center;
}
.content-block .content-block_inner .section-body .shop-list .shop-list_page .shop-list_text .shop_detail li.detail_1 > div > div:last-child {
  width: 70%;
  border: 1px solid #222;
  border-left: none;
  text-align: left;
}
.content-block .content-block_inner .section-body .shop-list .shop-list_page .shop-list_text .shop_detail li.detail_2 {
  border: 1px solid #222;
}
.content-block .content-block_inner .section-body .shop-list .shop-list_page .shop-list_text .shop_detail li.detail_2 a {
  color: #222;
  background-color: rgba(255, 255, 0, 0.5);
}
.content-block .content-block_inner .section-body .shop-list .shop-list_page .shop-list_text .shop_detail li a {
  width: 100%;
  display: inline-block;
}
.content-block .content-block_inner .section-body .shop-list .shop-list_page .shop-list_text .shop_detail li a svg {
  display: inline-block;
  position: relative;
  top: -0.05em;
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 1rem;
  fill: #222;
  -webkit-transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
}
.content-block .content-block_inner .section-body .shop-list .shop-list_page .shop-list_text .shop_detail li a:hover svg {
  transform: translate(15em, 0);
}
.content-block .content-block_inner .section-body .news-list {
  border: 1px solid #222;
  border-left: none;
  border-right: none;
  padding: 1em 0;
  margin-bottom: 0;
}
.content-block .content-block_inner .section-body .news-list .news-list_item {
  display: flex;
  margin: 0.75em 0;
}
.content-block .content-block_inner .section-body .news-list .news-list_item > * {
  box-sizing: border-box;
}
.content-block .content-block_inner .section-body .news-list .news-list_item .news-list_date {
  width: 13%;
  max-width: 6.5em;
  padding-right: 10px;
}
.content-block .content-block_inner .section-body .news-list .news-list_item .news-list_category {
  width: 17%;
  padding-right: 1em;
}
.content-block .content-block_inner .section-body .news-list .news-list_item .news-list_title {
  width: 70%;
  flex: 1 1 auto;
  text-align: left;
}
@media (max-width: 782px) {
  .content-block .content-block_inner .section-body .news-list .news-list_item {
    flex-wrap: wrap;
    margin-bottom: 1.25em;
  }
  .content-block .content-block_inner .section-body .news-list .news-list_item > .news-list_date {
    min-width: 50%;
    font-size: 1.5rem;
  }
  .content-block .content-block_inner .section-body .news-list .news-list_item > .news-list_category {
    min-width: 50%;
    font-size: 1.25rem;
  }
  .content-block .content-block_inner .section-body .news-list .news-list_item > .news-list_title {
    width: 100%;
  }
  .content-block .content-block_inner .section-body .news-list .news-list_item a {
    text-decoration: none;
  }
}
.content-block .content-block_inner .section-body .effort-container {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.content-block .content-block_inner .section-body .effort-container .effort-container_item {
  margin: 1rem auto 0;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.16);
  border-radius: 5px;
}
.content-block .content-block_inner .section-body .effort-container .effort-container_item:nth-child(odd) .effort-container_item_text .effort-item_pupup {
  left: 40px;
}
.content-block .content-block_inner .section-body .effort-container .effort-container_item:nth-child(even) .effort-container_item_text .effort-item_pupup {
  right: 40px;
}
.content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-container_item_link {
  width: 100%;
  word-break: break-all;
  display: flex;
  text-decoration: none;
}
.content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-container_item_link > div {
  width: 50%;
}
@media (max-width: 782px) {
  .content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-container_item_link {
    flex-wrap: wrap;
  }
  .content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-container_item_link > div {
    width: 100%;
  }
  .content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-container_item_link .effort-container_item_text .effort-item_pupup {
    top: -130px !important;
    left: calc(50% - 45px) !important;
  }
}
.content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-container_item_link .effort-container_item_img {
  overflow: hidden;
}
.content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-container_item_link .effort-container_item_img img {
  -webkit-transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
}
.content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-container_item_link .effort-container_item_text {
  position: relative;
  padding: 3rem;
  padding: 3rem 7rem;
}
.content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-container_item_link .effort-container_item_text .effort-item_pupup {
  position: absolute;
  width: 120px;
  height: 120px;
  top: calc(50% - 60px);
  left: -60px;
  background-color: rgba(0, 255, 0, 0.7);
  color: #222;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.2em;
  line-height: 1.5;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.5);
}
.content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-container_item_link .effort-container_item_text h3 {
  font-size: 1.5em;
  margin: 0;
}
.content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-container_item_link .effort-container_item_text .effort-item_detail {
  text-align: left;
  margin-top: 2rem;
}
.content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-container_item_link .effort-container_item_text .effort-item_button {
  margin-top: 1em;
  border: 1px solid #ddd;
  padding: 0.75em 1.2em;
  overflow: hidden;
  position: relative;
}
.content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-container_item_link .effort-container_item_text .effort-item_button .link-arrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-container_item_link .effort-container_item_text .effort-item_button::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  content: "";
}
.content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-container_item_link .effort-container_item_text .effort-item_button:hover::before {
  background-color: rgba(255, 255, 0, 0.5);
  width: 100%;
  -webkit-transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
}
@media (max-width: 782px) {
  .content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-container_item_link .effort-container_item_text {
    padding: 1.5rem;
  }
  .content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-container_item_link .effort-container_item_text .effort-item_pupup {
    width: 90px;
    height: 90px;
    top: -80px;
    font-size: 1em;
    left: 30px;
  }
  .content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-container_item_link .effort-container_item_text h3 {
    font-size: 1.25em;
    margin: 2rem 0 1rem;
  }
  .content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-container_item_link .effort-container_item_text .effort-item_detail {
    font-size: 0.8em;
  }
  .content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-container_item_link .effort-container_item_text .effort-item_button .link-arrow > span {
    font-size: 1.5rem;
  }
}
.content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-container_item_link:hover img {
  transform: scale(1.1);
}
.content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-container_item_link:first-child {
  border-bottom: 1px solid gray;
}
.content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-container_item_link:last-child .effort-container_item_img {
  order: 2;
}
@media (max-width: 782px) {
  .content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-container_item_link:last-child .effort-container_item_img {
    order: 1;
  }
}
.content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-container_item_link:last-child .effort-container_item_text {
  order: 1;
}
@media (max-width: 782px) {
  .content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-container_item_link:last-child .effort-container_item_text {
    order: 2;
  }
}
.content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-container_item_link:last-child .effort-container_item_text .effort-item_pupup {
  top: calc(50% - 60px);
  left: initial;
  right: -60px;
  z-index: 999;
}
.content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-facility {
  padding: 2rem;
}
.content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-facility .effort-facility_title {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  padding: 3rem 0 1rem;
  margin-bottom: 4rem;
}
.content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-facility .effort-facility_title span {
  position: relative;
}
.content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-facility .effort-facility_title span::after {
  position: absolute;
  content: "";
  height: 1px;
  width: 6em;
  border-bottom: 5px double #444;
  bottom: 0;
  left: -1em;
}
@media (max-width: 782px) {
  .content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-facility .effort-facility_title {
    padding-top: 2rem;
    margin-bottom: 3rem;
  }
}
.content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-facility .effort-facility_items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-facility .effort-facility_items .effort-facility_item {
  width: 48%;
  display: flex;
  flex-direction: column;
}
.content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-facility .effort-facility_items .effort-facility_item .effort-facility_item_title {
  font-size: 2.5rem;
  text-align: center;
  background-color: rgba(255, 255, 0, 0.4);
  box-shadow: 0px -0.5em 0.25em -5em rgba(255, 255, 0, 0.7) inset, 0px 10px 5px -3px #ff0;
}
.content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-facility .effort-facility_items .effort-facility_item a img {
  width: 50%;
  height: auto;
  margin: 0 auto;
  min-height: 315px;
  object-fit: contain;
}
@media (max-width: 782px) {
  .content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-facility .effort-facility_items .effort-facility_item a img {
    min-height: initial;
  }
}
.content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-facility .effort-facility_items .effort-facility_item .detail_wrap {
  display: flex;
  padding: 2.5rem 1rem 1em;
  align-items: center;
}
.content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-facility .effort-facility_items .effort-facility_item .detail_wrap > img {
  width: 15%;
  object-fit: contain;
}
.content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-facility .effort-facility_items .effort-facility_item .detail_wrap > div {
  width: 85%;
  padding-left: 1em;
  text-align: center;
  min-height: 6em;
}
@media (max-width: 782px) {
  .content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-facility .effort-facility_items .effort-facility_item .detail_wrap > div {
    font-size: 0.8em;
  }
}
.content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-facility .effort-facility_items .effort-facility_item .effort-facility_item_detail {
  margin: 1rem 0;
}
.content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-facility .effort-facility_items .effort-facility_item .effort-facility_item_detail .balloon {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  position: relative;
  padding: 20px;
  background-color: rgba(255, 255, 0, 0.3);
  border-radius: 10px;
  box-shadow: 6px 6px 0px 0px rgba(255, 255, 0, 0.7);
}
.content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-facility .effort-facility_items .effort-facility_item .effort-facility_item_detail .balloon::before {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: 27px;
  bottom: -18px;
  border-top: 15px solid rgba(255, 255, 0, 0.7);
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
}
.content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-facility .effort-facility_items .effort-facility_item .effort-facility_item_detail .balloon::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: 20px;
  bottom: -15px;
  border-top: 15px solid rgba(255, 255, 0, 0.3);
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
}
.content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-facility .effort-facility_items .effort-facility_item .effort-facility_item_detail .detail {
  font-size: 1.75rem;
  margin-top: 3rem;
}
.content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-facility .effort-facility_items .effort-facility_item .effort-facility_item_detail .movie {
  margin-top: 1.5rem;
  font-size: 0.8em;
}
.content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-facility .effort-facility_items .effort-facility_item .effort-facility_item_maker {
  margin-top: 1.5rem;
  margin-bottom: 3.5rem;
  border: 1px solid #222;
  text-align: center;
}
.content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-facility .effort-facility_items .effort-facility_item .effort-facility_item_maker a {
  display: block;
  padding: 1rem;
}
@media (max-width: 782px) {
  .content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-facility .effort-facility_items .effort-facility_item {
    width: 100%;
    padding-bottom: 3rem;
    border-bottom: 1xp solid #666;
    margin-bottom: 3rem;
  }
}
.content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-facility .effort-facility_items .effort-facility_item .vp-a {
  position: relative;
}
.content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-facility .effort-facility_items .effort-facility_item .vp-a::after {
  position: absolute;
  content: "";
  background-image: url("/wp-content/themes/TjOrigin/assets/images/common/btn-play.svg");
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-facility .voice-container {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid grey;
}
.content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-facility .voice-container .voice-container-header {
  text-align: center;
  font-size: 1.5em;
  text-decoration: underline;
}
.content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-facility .voice-container .voice-container_items {
  margin: 2.5rem auto 0;
}
.content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-facility .voice-container .voice-container_items > .container_items_wrap {
  width: 80%;
  margin: 0 auto;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.16);
}
@media (max-width: 782px) {
  .content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-facility .voice-container .voice-container_items > .container_items_wrap {
    width: 100%;
  }
}
.content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-facility .voice-container .voice-container_items > .container_items_wrap > div {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-facility .voice-container .voice-container_items > .container_items_wrap > div .voice-container_item {
  width: 50%;
  padding: 1rem 2rem;
}
@media (max-width: 782px) {
  .content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-facility .voice-container .voice-container_items > .container_items_wrap > div .voice-container_item {
    width: 100%;
  }
  .content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-facility .voice-container .voice-container_items > .container_items_wrap > div .voice-container_item:first-child {
    margin-bottom: 3rem;
  }
}
.content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-facility .voice-container .voice-container_items > .container_items_wrap > div .voice-container_item .person {
  text-align: center;
  border-bottom: 1px solid grey;
  padding: 1rem 0.5rem 1.5rem;
  margin: 1rem 0.5rem 1.5rem;
}
.content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-facility .voice-container .voice-container_items > .container_items_wrap > div .voice-container_item .person img {
  width: 75%;
  margin: 0 auto 1rem;
}
.content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-facility .voice-container .voice-container_items > .container_items_wrap > div .voice-container_item .comment {
  line-height: 2;
  font-size: 0.8em;
}
.content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-facility .voice-container .voice-container_items > .container_items_wrap .voice-container_comment {
  border-top: 1px solid grey;
  padding-top: 1rem;
  width: 85%;
  margin: 2rem auto 0;
  padding: 1rem 2rem 2rem;
}
@media (max-width: 782px) {
  .content-block .content-block_inner .section-body .effort-container .effort-container_item .effort-facility .voice-container .voice-container_items > .container_items_wrap .voice-container_comment {
    width: 100%;
  }
}
.content-block .content-block_inner .section-body .info-container {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.content-block .content-block_inner .section-body .info-container .info-container_item {
  position: relative;
  width: calc(50% - 2.5rem);
  margin: 2.5rem 1.25rem 0;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.16);
  border-radius: 5px;
}
.content-block .content-block_inner .section-body .info-container .info-container_item:nth-child(odd) .info-container_item_text .info-item_pupup {
  left: 40px;
}
.content-block .content-block_inner .section-body .info-container .info-container_item:nth-child(even) .info-container_item_text .info-item_pupup {
  right: 40px;
}
.content-block .content-block_inner .section-body .info-container .info-container_item .info-container_item_link {
  width: 100%;
  word-break: break-all;
}
.content-block .content-block_inner .section-body .info-container .info-container_item .info-container_item_link .info-container_item_img {
  overflow: hidden;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.content-block .content-block_inner .section-body .info-container .info-container_item .info-container_item_link .info-container_item_img img {
  -webkit-transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
}
.content-block .content-block_inner .section-body .info-container .info-container_item .info-container_item_link .info-container_item_text {
  padding: 3rem;
}
.content-block .content-block_inner .section-body .info-container .info-container_item .info-container_item_link .info-container_item_text .info-item_pupup {
  position: absolute;
  width: 120px;
  height: 120px;
  top: 60px;
  background: rgba(0, 255, 0, 0.7);
  color: #222;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.2em;
  line-height: 1.5;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.5);
}
.content-block .content-block_inner .section-body .info-container .info-container_item .info-container_item_link .info-container_item_text h3 {
  font-size: 1.5em;
}
.content-block .content-block_inner .section-body .info-container .info-container_item .info-container_item_link .info-container_item_text .info-item_button {
  margin-top: 1em;
  border: 1px solid #ddd;
  padding: 0.75em 1.2em;
  overflow: hidden;
  position: relative;
}
.content-block .content-block_inner .section-body .info-container .info-container_item .info-container_item_link .info-container_item_text .info-item_button .link-arrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.content-block .content-block_inner .section-body .info-container .info-container_item .info-container_item_link .info-container_item_text .info-item_button::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  content: "";
}
.content-block .content-block_inner .section-body .info-container .info-container_item .info-container_item_link .info-container_item_text .info-item_button:hover::before {
  background-color: rgba(255, 255, 0, 0.5);
  width: 100%;
  -webkit-transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
}
@media (max-width: 782px) {
  .content-block .content-block_inner .section-body .info-container .info-container_item .info-container_item_link .info-container_item_text {
    padding: 1.5rem;
  }
  .content-block .content-block_inner .section-body .info-container .info-container_item .info-container_item_link .info-container_item_text .info-item_pupup {
    width: 90px;
    height: 90px;
    top: 80px;
    font-size: 1em;
    left: 30px;
  }
  .content-block .content-block_inner .section-body .info-container .info-container_item .info-container_item_link .info-container_item_text h3 {
    font-size: 1.25em;
    margin: 2rem 0 1rem;
  }
  .content-block .content-block_inner .section-body .info-container .info-container_item .info-container_item_link .info-container_item_text .info-item_detail {
    font-size: 0.8em;
  }
  .content-block .content-block_inner .section-body .info-container .info-container_item .info-container_item_link .info-container_item_text .info-item_button .link-arrow > span {
    font-size: 1.5rem;
  }
}
.content-block .content-block_inner .section-body .info-container .info-container_item .info-container_item_link:hover img {
  transform: scale(1.1);
}
.content-block .content-block_inner .section-body .section-footer {
  margin-top: 1rem;
}
.content-block .content-block_inner .section-body .section-footer .section-footer_item {
  text-align: end;
}
.content-block .content-block_inner .section-body .section-footer .section-footer_item a.link-arrow svg {
  display: inline-block;
  position: relative;
  top: -0.05em;
  width: 5px;
  height: 10px;
  margin-left: 7px;
  fill: #222;
  -webkit-transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
}
.content-block .content-block_inner .section-body .section-footer .section-footer_item a.link-arrow:hover svg {
  transform: translate(4px, 0);
}
@media (max-width: 782px) {
  .content-block .content-block_inner .info-container .info-container_item {
    width: calc(100% - 1rem) !important;
  }
}
.content-block svg {
  display: inline-block;
  position: relative;
  top: -0.05em;
  width: 0.75em;
  height: 0.75em;
  margin-left: 0.25em;
  fill: #666;
  -webkit-transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
}
.content-block:hover svg {
  transform: translate(4px, 0);
}
@media (max-width: 782px) {
  .content-block {
    padding: 0 1.2em;
  }
  .content-block .content-block_inner .section-header .section-header_main {
    position: relative;
    font-size: 2.5rem;
  }
  .content-block .content-block_inner .section-header .section-header_main::before {
    position: absolute;
    content: "";
    width: 30%;
    border-bottom: 1px solid #222;
    bottom: 0;
    left: 35%;
  }
  .content-block .content-block_inner .section-header .section-header_sub {
    font-size: 1.5rem;
  }
  .content-block .content-block_inner .section-body {
    margin-top: 1.5rem;
  }
  .content-block .content-block_inner .section-body .shop-sales_note {
    font-size: 1.5rem;
  }
}

.singular .entry-header {
  padding: 8rem 0 4rem;
}

.visitors {
  text-align: center;
  margin: 2rem auto;
}
.visitors a {
  display: inline-block;
  color: black;
  font-size: 1.5em;
  padding: 1em 3em;
  border: 1px solid grey;
  background-color: rgba(255, 255, 0, 0.2);
}
.visitors a:hover {
  background-color: rgba(255, 255, 0, 0.7);
}

#site-content {
  padding-top: 5em;
}
#site-content .content-block_inner .section-body {
  padding: 2em;
}

#shops_wrap .content-block {
  padding-right: 0;
  padding-left: 0;
}
@media (max-width: 782px) {
  #shops_wrap .content-block {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
#shops_wrap .content-block .content-block_inner {
  padding-bottom: 0;
  max-width: inherit;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  max-width: 1200px;
}
@media print, screen and (min-width: 48em) {
  #shops_wrap .content-block .content-block_inner {
    margin-right: auto;
    margin-left: auto;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
#shops_wrap .content-block .content-block_inner .section-header .section-header_main {
  font-feature-settings: "palt";
  /* font-family: YuMincho, 游明朝体, YuMincho, 游明朝, "Yu Minc ho", "Times New Roman", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro W3", "Noto Serif JP", HGS明朝B, "ＭＳ Ｐ明朝", serif, Meiryo, "Sawarabi Mincho", メイリオ, "ＭＳ Ｐゴシック", sans-serif; */
  font-weight: 600;
  text-align: center;
}
#shops_wrap .content-block .content-block_inner .section-header .section-header_sub {
  text-align: center;
}
#shops_wrap .content-block .content-block_inner .c-section-4 {
  position: relative;
}
@media print, screen and (min-width: 48em) {
  #shops_wrap .content-block .content-block_inner .c-section-4 .c-section-4 {
    margin-top: 36px;
  }
}
#shops_wrap .content-block .content-block_inner .c-section-4 .p-picture-section {
  margin-bottom: 3.5rem;
}
#shops_wrap .content-block .content-block_inner .c-section-4 .p-picture-section.-reverse {
  max-width: 1400px;
  margin: 40px auto 0;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.16);
}
#shops_wrap .content-block .content-block_inner .c-section-4 .p-picture-section.-reverse:first-child {
  margin-top: 0;
}
@media print, screen and (min-width: 61.25em) {
  #shops_wrap .content-block .content-block_inner .c-section-4 .p-picture-section.-reverse .p-picture-section {
    min-height: 540px;
    margin-top: 60px;
  }
}
#shops_wrap .content-block .content-block_inner .c-section-4 .p-picture-section.-reverse .p-picture-section__inner {
  display: flex;
}
#shops_wrap .content-block .content-block_inner .c-section-4 .p-picture-section.-reverse .p-picture-section__inner .p-picture-section__link-layer {
  display: block;
  width: 55%;
}
#shops_wrap .content-block .content-block_inner .c-section-4 .p-picture-section.-reverse .p-picture-section__inner .p-picture-section__link-layer a {
  color: #222;
  -webkit-transition: color ease 0.1s;
  transition: color ease 0.1s;
  text-decoration: none;
  cursor: pointer;
}
@media print, screen and (min-width: 48em) {
  #shops_wrap .content-block .content-block_inner .c-section-4 .p-picture-section.-reverse .p-picture-section__inner .p-picture-section__link-layer a {
    word-break: break-all;
  }
}
#shops_wrap .content-block .content-block_inner .c-section-4 .p-picture-section.-reverse .p-picture-section__inner .p-picture-section__link-layer .p-picture-section__img {
  height: 628px;
  vertical-align: middle;
}
@media print, screen and (min-width: 61.25em) {
  #shops_wrap .content-block .content-block_inner .c-section-4 .p-picture-section.-reverse .p-picture-section__inner .p-picture-section__link-layer .p-picture-section__img .p-picture-section__img {
    overflow: hidden;
  }
}
#shops_wrap .content-block .content-block_inner .c-section-4 .p-picture-section.-reverse .p-picture-section__inner .p-picture-section__text {
  box-sizing: border-box;
  width: 45%;
  padding: 1.2rem 3rem 2rem;
  box-sizing: border-box;
  -webkit-transition: color cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s;
  transition: color cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s;
}
@media print, screen and (min-width: 80em) {
  #shops_wrap .content-block .content-block_inner .c-section-4 .p-picture-section.-reverse .p-picture-section__inner .p-picture-section__text .p-picture-section__text {
    padding-right: 10.7%;
    padding-left: 17.8%;
  }
}
@media print, screen and (min-width: 61.25em) {
  #shops_wrap .content-block .content-block_inner .c-section-4 .p-picture-section.-reverse .p-picture-section__inner .p-picture-section__text .p-picture-section__text {
    padding: 2.5rem 3rem 2rem;
  }
}
#shops_wrap .content-block .content-block_inner .c-section-4 .p-picture-section.-reverse .p-picture-section__inner .p-picture-section__text .p-picture-section__text-inner {
  width: 100%;
}
#shops_wrap .content-block .content-block_inner .c-section-4 .p-picture-section.-reverse .p-picture-section__inner .p-picture-section__text .p-picture-section__text-inner .p-picture-section__main {
  font-weight: 600;
  margin-top: 3rem;
}
@media print, screen and (min-width: 48em) {
  #shops_wrap .content-block .content-block_inner .c-section-4 .p-picture-section.-reverse .p-picture-section__inner .p-picture-section__text .p-picture-section__text-inner .p-picture-section__main .p-picture-section__main {
    margin-bottom: 20px;
    font-size: 32px;
    font-size: 2rem;
  }
}
#shops_wrap .content-block .content-block_inner .c-section-4 .p-picture-section.-reverse .p-picture-section__inner .p-picture-section__text .p-picture-section__text-inner .p-picture-section__desc {
  margin-top: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 16px;
}
@media print, screen and (min-width: 61.25em) {
  #shops_wrap .content-block .content-block_inner .c-section-4 .p-picture-section.-reverse .p-picture-section__inner .p-picture-section__text .p-picture-section__text-inner .p-picture-section__desc .p-picture-section__desc {
    margin-top: 32px;
  }
}
@media print, screen and (min-width: 48em) {
  #shops_wrap .content-block .content-block_inner .c-section-4 .p-picture-section.-reverse .p-picture-section__inner .p-picture-section__text .p-picture-section__text-inner .p-picture-section__desc .c-sentence,
  #shops_wrap .content-block .content-block_inner .c-section-4 .p-picture-section.-reverse .p-picture-section__inner .p-picture-section__text .p-picture-section__text-inner .p-picture-section__desc .p-faq__inner > p,
  #shops_wrap .content-block .content-block_inner .c-section-4 .p-picture-section.-reverse .p-picture-section__inner .p-picture-section__text .p-picture-section__text-inner .p-picture-section__desc .p-border-box > p,
  #shops_wrap .content-block .content-block_inner .c-section-4 .p-picture-section.-reverse .p-picture-section__inner .p-picture-section__text .p-picture-section__text-inner .p-picture-section__desc .p-editable-area > p,
  #shops_wrap .content-block .content-block_inner .c-section-4 .p-picture-section.-reverse .p-picture-section__inner .p-picture-section__text .p-picture-section__text-inner .p-picture-section__desc .p-editable-area.-table_col2 table p {
    margin-top: 16px;
  }
  #shops_wrap .content-block .content-block_inner .c-section-4 .p-picture-section.-reverse .p-picture-section__inner .p-picture-section__text .p-picture-section__text-inner .p-picture-section__desc.c-sentence,
  #shops_wrap .content-block .content-block_inner .c-section-4 .p-picture-section.-reverse .p-picture-section__inner .p-picture-section__text .p-picture-section__text-inner .p-picture-section__desc .p-faq__inner > p,
  #shops_wrap .content-block .content-block_inner .c-section-4 .p-picture-section.-reverse .p-picture-section__inner .p-picture-section__text .p-picture-section__text-inner .p-picture-section__desc .p-border-box > p,
  #shops_wrap .content-block .content-block_inner .c-section-4 .p-picture-section.-reverse .p-picture-section__inner .p-picture-section__text .p-picture-section__text-inner .p-picture-section__desc .p-editable-area > p,
  #shops_wrap .content-block .content-block_inner .c-section-4 .p-picture-section.-reverse .p-picture-section__inner .p-picture-section__text .p-picture-section__text-inner .p-picture-section__desc .p-editable-area.-table_col2 table p {
    text-align: justify;
    text-justify: inter-ideograph;
    line-height: 2;
  }
}
#shops_wrap .content-block .content-block_inner .c-section-4 .p-picture-section.-reverse .p-picture-section__inner .p-picture-section__text .p-picture-section__text-inner .p-picture-section__store {
  display: block;
  margin-top: 16px;
}
#shops_wrap .content-block .content-block_inner .c-section-4 .p-picture-section.-reverse .p-picture-section__inner .p-picture-section__text .p-picture-section__text-inner .p-picture-section__store ol,
#shops_wrap .content-block .content-block_inner .c-section-4 .p-picture-section.-reverse .p-picture-section__inner .p-picture-section__text .p-picture-section__text-inner .p-picture-section__store ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media print, screen and (min-width: 61.25em) {
  #shops_wrap .content-block .content-block_inner .c-section-4 .p-picture-section.-reverse .p-picture-section__inner .p-picture-section__text .p-picture-section__text-inner .p-picture-section__store .p-picture-section__store {
    margin-top: 32px;
  }
}
#shops_wrap .content-block .content-block_inner .c-section-4 .p-picture-section.-reverse .p-picture-section__inner .p-picture-section__text .p-picture-section__text-inner .p-picture-section__button {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  margin-top: 16px;
  z-index: 20;
}
@media print, screen and (min-width: 61.25em) {
  #shops_wrap .content-block .content-block_inner .c-section-4 .p-picture-section.-reverse .p-picture-section__inner .p-picture-section__text .p-picture-section__text-inner .p-picture-section__button .p-picture-section__button {
    margin-top: 34px;
  }
}
#shops_wrap .content-block .content-block_inner .c-section-4 .p-picture-section.-reverse .p-picture-section__inner .p-picture-section__text .p-picture-section__text-inner .p-picture-section__button .p-reserve-button-1 {
  box-sizing: border-box;
  display: flex;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin: 0;
}
#shops_wrap .content-block .content-block_inner .c-section-4 .p-picture-section.-reverse .p-picture-section__inner .p-picture-section__text .p-picture-section__text-inner .p-picture-section__button .p-reserve-button-1 ol,
#shops_wrap .content-block .content-block_inner .c-section-4 .p-picture-section.-reverse .p-picture-section__inner .p-picture-section__text .p-picture-section__text-inner .p-picture-section__button .p-reserve-button-1 ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#shops_wrap .content-block .content-block_inner .c-section-4 .p-picture-section.-reverse .p-picture-section__inner .p-picture-section__text .p-picture-section__text-inner .p-picture-section__button .p-reserve-button-1 .p-reserve-button-1__item {
  margin: 0;
}
#shops_wrap .content-block .content-block_inner .c-section-4 .p-picture-section.-reverse .p-picture-section__inner .p-picture-section__text .p-picture-section__text-inner .p-picture-section__button .p-reserve-button-1 .p-reserve-button-1__item.-tel {
  color: #222;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
  font-weight: bold;
  border: 1px solid #ddd;
  border-right: none;
  width: 56%;
  padding: 0.75rem 1.25rem;
}
@media print, screen and (min-width: 48em) {
  #shops_wrap .content-block .content-block_inner .c-section-4 .p-picture-section.-reverse .p-picture-section__inner .p-picture-section__text .p-picture-section__text-inner .p-picture-section__button .p-reserve-button-1 .p-reserve-button-1__item.-tel .p-reserve-button-1__item.-tel {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  #shops_wrap .content-block .content-block_inner .c-section-4 .p-picture-section.-reverse .p-picture-section__inner .p-picture-section__text .p-picture-section__text-inner .p-picture-section__button .p-reserve-button-1 .p-reserve-button-1__item.-tel .p-reserve-button-1__item {
    font-family: YakuHanJP, "Yu Gothic", 游ゴシック, YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, arial;
  }
}
#shops_wrap .content-block .content-block_inner .c-section-4 .p-picture-section.-reverse .p-picture-section__inner .p-picture-section__text .p-picture-section__text-inner .p-picture-section__button .p-reserve-button-1 .p-reserve-button-1__item.-web {
  width: 24%;
  color: #222;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
  font-weight: bold;
  border: 1px solid #ddd;
  padding: 0.75rem 1.25rem;
}
@media print, screen and (min-width: 48em) {
  #shops_wrap .content-block .content-block_inner .c-section-4 .p-picture-section.-reverse .p-picture-section__inner .p-picture-section__text .p-picture-section__text-inner .p-picture-section__button .p-reserve-button-1 .p-reserve-button-1__item.-web .p-reserve-button-1__item {
    font-family: YakuHanJP, "Yu Gothic", 游ゴシック, YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, arial;
  }
}
#shops_wrap .content-block .content-block_inner .c-section-4 .p-picture-section.-reverse .p-picture-section__inner .p-picture-section__text .p-picture-section__text-inner .p-picture-section__button .p-reserve-button-2 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  width: 80%;
  color: #222;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
  font-weight: bold;
}
#shops_wrap .content-block .content-block_inner .c-section-4 .p-picture-section.-reverse .p-picture-section__inner .p-picture-section__text .p-picture-section__text-inner .p-picture-section__button .p-reserve-button-2 a {
  display: inline-block;
  background: #222;
  color: #ddd;
  width: 100%;
  padding: 1rem 1.75rem;
}
@media print, screen and (min-width: 48em) {
  #shops_wrap .content-block .content-block_inner .c-section-4 .p-picture-section.-reverse .p-picture-section__inner .p-picture-section__text .p-picture-section__text-inner .p-picture-section__button .p-reserve-button-2 .p-reserve-button-2 {
    font-family: YakuHanJP, "Yu Gothic", 游ゴシック, YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, arial;
  }
}

.recruit-list {
  padding: 0 !important;
}

.recruit-list_item {
  margin: 0 !important;
  border-bottom: 1px solid;
}
.recruit-list_item a {
  display: block;
  width: 100%;
  padding: 3rem 0;
  font-size: 2rem;
}

.initiatives-wrap {
  max-width: 920px !important;
  width: 920px;
  font-family: "HinaMincho";
}
.initiatives-wrap .flex_box {
  display: flex;
}
.initiatives-wrap .content-block {
  background-color: #ffffff;
  margin-inline: 0 auto;
  margin-bottom: 8rem;
}
.initiatives-wrap .content-block .section-header {
  text-align: center;
  padding: 20px;
  background-color: #f0f0f0;
}
.initiatives-wrap .content-block .section-body {
  padding-bottom: 5rem;
}
.initiatives-wrap .content-block .section-body #toc-container {
  box-sizing: border-box;
  border-style: solid;
  border-width: 1px;
  border-color: #ddd;
  padding-top: 26px;
  padding-bottom: 19px;
  padding-right: 30px;
  padding-left: 30px;
}
.initiatives-wrap .content-block .section-body #toc-container .toc-title {
  font-size: 1.5rem;
  font-weight: bold;
}
.initiatives-wrap .content-block .section-body #toc-container nav .toc-list {
  font-size: 1.5rem;
}
.initiatives-wrap .content-block .section-body .content-area .area {
  padding-inline: 4rem;
  overflow: auto;
}
@media (max-width: 782px) {
  .initiatives-wrap .content-block .section-body .content-area .area {
    padding-inline: initial;
  }
}
.initiatives-wrap .content-block .section-body .content-area .area h3 {
  font-family: "HinaMincho";
  margin-top: 60px;
  margin-bottom: 0px;
  font-size: 3rem;
  font-weight: bold;
}
.initiatives-wrap .content-block .section-body .content-area .area p {
  font-family: "HinaMincho";
  margin-top: 16px;
  margin-bottom: 0px;
  font-size: 1.75rem;
  line-height: 2;
}
.initiatives-wrap .content-block .section-body .content-area .area .description {
  font-family: "HinaMincho";
}
.initiatives-wrap .content-block .section-body .content-area .area .description-1 {
  margin-top: 16px;
  margin-bottom: 0px;
  font-size: 1.75rem;
  line-height: 2;
}
.initiatives-wrap .content-block .section-body .content-area .area .description-2 {
  margin-top: 10px;
  margin-bottom: 0px;
  font-size: 1.75rem;
  line-height: 2;
}
.initiatives-wrap .content-block .section-body .content-area .area table {
  margin-top: 10px;
  margin-bottom: 10px;
  border: none;
}
.initiatives-wrap .content-block .section-body .content-area .area td {
  font-family: "HinaMincho";
  font-size: 1.75rem;
  line-height: 2;
  border: none;
}
.initiatives-wrap .content-block .section-body .content-area .area img {
  margin-top: 10px;
  margin-bottom: 10px;
}
.initiatives-wrap .content-block .section-body .content-area .area-2 table img {
  display: inline;
}
.initiatives-wrap .content-block .section-body .content-area .area-2 td {
  text-align: center;
}
.initiatives-wrap .content-block .section-body .content-area .area-2 .img-comment {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.initiatives-wrap .content-block .section-body .content-area .area-3 .img-comment {
  width: 90%;
  max-width: 100%;
  height: auto;
}
.initiatives-wrap .content-block .section-body .content-area .area-3 .img-yajirushi {
  width: 50%;
  max-width: 100%;
  height: auto;
}
.initiatives-wrap .content-block .section-body .content-area .area-5 table {
  margin-top: 10px;
  margin-bottom: 0px;
}
.initiatives-wrap .content-block .section-body .content-area .area-5 td {
  font-family: "HinaMincho";
  font-size: 1.75rem;
  border: 1px solid #ccc;
}
.initiatives-wrap .content-block .section-body .content-area .area-community .img-news {
  width: 60%;
  max-width: 100%;
  height: auto;
}
.initiatives-wrap .content-block .section-body .content-area .area-information .table-holiday {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  border: 1px solid #cccccc;
}
.initiatives-wrap .content-block .section-body .content-area .area-information .table-holiday th,
.initiatives-wrap .content-block .section-body .content-area .area-information .table-holiday td {
  font-family: "HinaMincho";
  line-height: 1.5;
  padding: 5px;
  border: 1px solid #cccccc;
}
.initiatives-wrap .content-block .section-body .content-area .area-information .table-holiday th {
  background-color: #CEF6CE;
  width: 30%;
}
.initiatives-wrap .content-block .section-body .img-double {
  display: flex;
  width: 100%;
}
.initiatives-wrap .content-block .section-body .img-double__item {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.initiatives-wrap .content-block .section-body .img-double img {
  width: 90%;
  max-width: 100%;
  height: auto;
}

#home-healthcare {
  font-family: "HinaMincho";
}
#home-healthcare .home-healthcare__link {
  margin-top: 30px;
  margin-bottom: 0px;
}
#home-healthcare .home-healthcare__link span {
  color: #0000ff;
  font-size: 1.75rem;
}
#home-healthcare .home-healthcare__link a {
  color: #0000ff;
  font-size: 2rem;
}
#home-healthcare .step {
  font-family: "HinaMincho";
  margin-top: 30px;
  margin-bottom: 0px;
  font-size: 1.75rem;
  font-weight: bold;
}
#home-healthcare .step-description {
  font-family: "HinaMincho";
  margin-top: 10px;
  margin-bottom: 0px;
  font-size: 1.75rem;
  line-height: 2;
}
#home-healthcare img {
  object-fit: contain;
  margin-top: 1.75rem;
}

#community {
  font-family: "HinaMincho";
}
#community .img-double {
  display: flex;
  width: 100%;
}
#community .img-double__item {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#community .img-double img {
  width: 90%;
  max-width: 100%;
  height: auto;
}

#information {
  font-family: "HinaMincho";
}
#information ul {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 1.75rem;
  line-height: 2;
  padding-left: 20px;
}
@media (max-width: 782px) {
  .post-143 .regist_d01 > div {
    overflow: scroll;
  }
  .post-143 .regist_d01 > div table {
    min-width: 960px;
  }
}
article.type-shop h1.entry-title,
article.type-shop h2.entry-title {
  margin: 0;
  text-align: center;
}

article.type-shop .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) {
  max-width: initial;
  width: 100%;
}
@media (max-width: 782px) {
  article.type-shop .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) {
    margin: 0;
    width: 100%;
  }
}

article.type-shop .entry-header {
  padding: 1rem 0;
}

#post-429 {
  /*薬局Q&A*/
}
#post-429 .entry-header .entry-title span {
  position: relative;
}
#post-429 .entry-header .entry-title span .person_img_nq1 {
  position: absolute;
  left: -3em;
  bottom: 0;
  height: 250%;
}
#post-429 #graph1 {
  position: relative;
}
#post-429 #graph1 .person_img_n2r {
  position: absolute;
  left: -6em;
  bottom: 4em;
  height: 50%;
  z-index: 1;
}
#post-429 #graph2 {
  position: relative;
}
#post-429 #graph2 .person_img_n2 {
  position: absolute;
  right: -6em;
  bottom: 4em;
  height: 50%;
  z-index: 1;
}

#post-429 .entry-content > section,
#post-465 .entry-content > section,
#post-438 .entry-content > section,
#post-479 .entry-content > section,
#post-453 .entry-content > section {
  width: 100% !important;
  max-width: 100% !important;
}/*# sourceMappingURL=custom.css.map */