@charset "UTF-8";
/*!
  12 COLUMN : RESPONSIVE GRID SYSTEM
  DEVELOPER : DENIS LEBLANC
  URL : http://responsive.gs
  VERSION : 3.0
  LICENSE : GPL & MIT
*/
.container {
  max-width: 800px;
  margin: 0 auto;
}

.row {
  padding-bottom: 0;
}

.col {
  display: block;
  width: 100%;
}

@media (min-width: 768px) {
  .span_1 {
    width: 8.3333333333%;
  }

  .span_2 {
    width: 16.6666666667%;
  }

  .span_3 {
    width: 25%;
  }

  .span_4 {
    width: 33.3333333333%;
  }

  .span_5 {
    width: 41.6666666667%;
  }

  .span_6 {
    width: 50%;
  }

  .span_7 {
    width: 58.3333333333%;
  }

  .span_8 {
    width: 66.6666666667%;
  }

  .span_9 {
    width: 75%;
  }

  .span_10 {
    width: 83.3333333333%;
  }

  .span_11 {
    width: 91.6666666667%;
  }

  .span_12 {
    width: 100%;
  }

  .gutters > .row {
    -moz-column-gap: 2%;
         column-gap: 2%;
    row-gap: 20px;
  }
  .gutters > .row > .span_1 {
    width: 6.5%;
  }
  .gutters > .row > .span_2 {
    width: 15%;
  }
  .gutters > .row > .span_3 {
    width: 23.5%;
  }
  .gutters > .row > .span_4 {
    width: 32%;
  }
  .gutters > .row > .span_5 {
    width: 40.5%;
  }
  .gutters > .row > .span_6 {
    width: 49%;
  }
  .gutters > .row > .span_7 {
    width: 57.5%;
  }
  .gutters > .row > .span_8 {
    width: 66%;
  }
  .gutters > .row > .span_9 {
    width: 74.5%;
  }
  .gutters > .row > .span_10 {
    width: 83%;
  }
  .gutters > .row > .span_11 {
    width: 91.5%;
  }
  .gutters > .row > .span_12 {
    width: 100%;
  }
}
/*!
 12 COLUMN : RESPONSIVE GRID SYSTEM Fix Ver. 1.2.1
*/
.container {
  padding: 0 1%;
}

.container img {
  max-width: 100%;
  height: auto;
}

* + .container {
  margin-top: 2em;
}

.row:not(:last-child) {
  margin-bottom: 4%;
}

.col:not(:last-child) {
  margin-bottom: 3%;
}

@media (min-width: 768px) {
  .container {
    max-width: 1000px;
    margin: auto;
    padding: 0 10px;
  }

  * + .container {
    margin-top: 40px;
  }

  .row {
    display: flex;
    flex-wrap: wrap;
  }

  .row.reverse {
    flex-flow: row-reverse;
  }

  .col:not(:last-child) {
    margin-bottom: 0;
  }

  /*.reverse > .col:last-child, :not(.reverse) > .col:first-child {*/
  /*  margin-left: 0*/
  /*}*/
  .col.offset_1 {
    margin-left: 8.3333333333% !important;
  }

  .col.offset_2 {
    margin-left: 16.6666666667% !important;
  }

  .col.offset_3 {
    margin-left: 25% !important;
  }

  .col.offset_4 {
    margin-left: 33.3333333333% !important;
  }

  .col.offset_5 {
    margin-left: 41.6666666667% !important;
  }

  .col.offset_6 {
    margin-left: 50% !important;
  }

  .col.offset_7 {
    margin-left: 58.3333333333% !important;
  }

  .col.offset_8 {
    margin-left: 66.6666666667% !important;
  }

  .col.offset_9 {
    margin-left: 75% !important;
  }

  .col.offset_10 {
    margin-left: 83.3333333333% !important;
  }

  .col.offset_11 {
    margin-left: 91.6666666667% !important;
  }

  .col.offset_12 {
    margin-left: 100% !important;
  }
}
@media (min-width: 1024px) {
  .container {
    padding: 0;
  }
}
@media (min-width: 768px) {
  .d-flex {
    display: flex;
  }

  .flex-wrap {
    flex-wrap: wrap;
  }

  .flex-nowrap {
    flex-wrap: nowrap;
  }

  .reverse {
    flex-direction: row-reverse;
  }

  .align-items-start {
    align-items: flex-start;
  }

  .align-items-center {
    align-items: center;
  }

  .align-items-end {
    align-items: flex-end;
  }

  .justify-content-start {
    justify-content: flex-start;
  }

  .justify-content-center {
    justify-content: center;
  }

  .justify-content-between {
    justify-content: space-between;
  }

  .justify-content-end {
    justify-content: flex-end;
  }
}
* {
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
html.scrollPrevent {
  overflow: hidden;
  height: 100%;
}

body {
  background: #fff;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  font-size: 1.5rem;
  line-height: 1.5;
  color: #000000;
  height: auto !important;
  overflow: hidden;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  body {
    font-size: 1.5rem;
  }
}

.l-main {
  overflow: hidden;
}

figure {
  margin: 0;
  text-align: center;
}
figure img {
  max-width: 100%;
  height: auto;
}
figure figcaption {
  margin-top: 0.5em;
  text-align: left;
}

picture {
  margin: 0;
  text-align: center;
}
picture img {
  max-width: unset;
  height: auto;
}

a {
  color: #172e10;
  transition: all 0.3s;
}
a:hover {
  color: #172e10;
  text-decoration: none;
}
.highlight a {
  color: #000000;
}
.highlight a:hover {
  color: #172e10;
}

a:not([class]) img, a.swipebox img {
  transition: all 0.3s;
}
a:not([class]):hover img, a.swipebox:hover img {
  opacity: 0.8;
}

img {
  vertical-align: middle;
}
img.circle {
  border-radius: 50%;
}

p {
  margin: 0.5em 0 1em;
}
p:first-child {
  margin-top: 0;
}
p:last-child {
  margin-bottom: 0;
}

ol,
ul {
  margin: 0 0 1em;
  padding: 0 0 0 2.5em;
  line-height: 1.6;
}
ol:last-child,
ul:last-child {
  margin-bottom: 0;
}
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0.5em 0;
  padding-left: 2em;
}
ol ol:last-child,
ol ul:last-child,
ul ol:last-child,
ul ul:last-child {
  margin-bottom: 0.5em;
}

ul.list-unstyled {
  padding-left: 0;
  list-style: none;
}
ul.list-unstyled ol,
ul.list-unstyled ul {
  padding-left: 2em;
}

ul.list-inline {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-left: -7px;
  font-size: 0rem;
  margin-bottom: 15px;
}
ul.list-inline > li {
  display: inline;
  padding-left: 7px;
  padding-right: 7px;
  white-space: nowrap;
  font-size: 1.5rem;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

.l-main .c-contents_wrapper {
  max-width: 100%;
  padding: 0;
}
.l-main section {
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .l-main section {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .l-main section:last-child {
    margin-bottom: 80px;
  }
}

@media (min-width: 768px) {
  p {
    margin: 0.5em 0 1em;
  }
}
@media (max-width: 900px) {
  .gutters .span_3.l-columnSub,
.gutters .span_9.l-columnMain {
    float: none;
    width: 100%;
    margin-left: 0;
  }
}
@media (min-width: 600px) and (max-width: 900px) {
  .gutters .span_3.l-columnSub .c-sidebar {
    letter-spacing: -0.4em;
  }
  .gutters .span_3.l-columnSub .c-sidebar .widget_wrap {
    letter-spacing: normal;
    display: inline-block;
    vertical-align: top;
    width: 49%;
    margin-left: 2%;
  }
  .gutters .span_3.l-columnSub .c-sidebar .widget_wrap:nth-child(2n+1) {
    margin-left: 0;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 1000px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .container {
    max-width: 100%;
  }
}
.article_button {
  margin-top: 5%;
}

@media (min-width: 768px) {
  .p-articleDetail:not(.reverse) .col.span_12 + .span_4,
.p-articleList:not(.reverse) .col.span_12 + .span_4 {
    margin-left: 0;
  }
}
.c-sidebar {
  visibility: hidden;
}
.c-sidebar > .widget_wrap {
  visibility: visible;
}
.c-sidebar ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 6%;
}
.c-sidebar ul a {
  color: #000000;
  text-decoration: none;
  display: block;
  padding: 0.5em;
  border-bottom: rgba(23, 46, 16, 0.1) solid 1px;
}
.c-sidebar ul a:hover {
  color: #172e10;
  background: rgba(23, 46, 16, 0.05);
}

.gutters .col.span_12 + .span_12 {
  margin-left: 0;
}

.map_wide #map_canvas,
.map_wide iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.map_wide img {
  max-width: none;
}

.slick-track {
  margin: 0 auto;
}

.col dl p {
  line-height: 1.4;
  margin: 0;
}
.col p {
  line-height: 1.8;
}

.container {
  padding: 0 20px;
}
@media (min-width: 1020px) {
  .container {
    padding: 0;
  }
}

.u-highlight {
  background: rgba(23, 46, 16, 0.1);
  color: #000000;
}
.u-highlight.round {
  border-radius: 10px;
}

section.u-highlight, p.u-highlight, .col.u-highlight {
  padding: 4%;
}

.js-header_break_point {
  display: none;
  z-index: 1000;
}

.l-columnMain .col p + *:not(p), .l-columnMain .col table + *:not(p) {
  margin-top: 40px;
}

.l-header {
  background: rgba(0, 0, 0, 0.3);
  color: #000000;
  font-size: 15px;
  transition: 0.3s;
}
@media (max-width: 999px) {
  .l-header.high {
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.2);
  }
}
@media (min-width: 1000px) {
  .l-header.high {
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.2);
    background: rgba(0, 0, 0, 0.5);
    transition: 0.3s;
  }
}
@media (max-width: 999px) {
  .l-header {
    background: rgba(0, 0, 0, 0.3);
    position: fixed;
    z-index: 999;
    width: 100%;
  }
}
@media (min-width: 1000px) {
  .l-header {
    background: transparent;
    position: fixed;
    z-index: 999;
    width: 100%;
  }
}
.l-header .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0;
  height: 100px;
  max-width: 100%;
}
@media (max-width: 999px) {
  .l-header .container {
    height: 60px;
  }
}
.l-header__top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 98%;
  margin: 0 auto !important;
}
.l-header__logo {
  width: 196px;
  height: 37px;
  margin: 0 0 0 2%;
}
@media (min-width: 1000px) {
  .l-header__logo {
    margin-left: 1%;
  }
}
@media (min-width: 768px) and (max-width: 999px) {
  .l-header__logo {
    width: 150px;
    height: auto;
  }
}
@media (max-width: 767px) {
  .l-header__logo {
    width: 150px;
    height: auto;
  }
}
.l-header__logo a {
  display: block;
  height: auto;
  line-height: 0;
}
.l-header__logo a img {
  max-width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .l-header.low {
    position: absolute;
  }
}

.globalNav {
  width: auto;
  list-style-position: inherit;
}
@media (max-width: 999px) {
  .globalNav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 56;
    transition: all 0.3s;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    overflow-x: hidden;
    overflow-y: scroll;
  }
}
.globalNav > ul {
  list-style: none;
  padding: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 999px) {
  .globalNav > ul {
    display: block;
    background: rgba(23, 46, 16, 0.9);
    width: 80vw;
    max-width: 400px;
    transform: translateX(100%);
    transition: all 0.3s;
    height: 100%;
    overflow: auto;
  }
}
@media (max-width: 999px) {
  .globalNav > ul li {
    border-bottom: #b3b3b3 solid 1px;
  }
  .globalNav > ul li:first-child {
    border-top: #b3b3b3 solid 1px;
  }
}
.globalNav > ul li a {
  color: #fff;
  text-decoration: none;
  padding: 0 1em;
  transition: all 0.3s;
}
@media (min-width: 1000px) {
  .globalNav > ul li a {
    letter-spacing: 0.15em;
  }
}
@media (max-width: 999px) {
  .globalNav > ul li a {
    display: block;
    padding: 1em;
    color: #fff;
    position: relative;
  }
  .globalNav > ul li a:after {
    content: "";
    width: 8px;
    height: 8px;
    border: 0;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 1em;
    margin-top: -4px;
  }
}
.globalNav > ul li a:hover {
  opacity: 0.8;
}
.globalNav > ul li:first-child a:before {
  content: none;
}
@media (max-width: 999px) {
  .globalNav.is-open {
    opacity: 1;
    visibility: visible;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
  }
}
@media (max-width: 999px) {
  .globalNav.is-open > ul {
    transform: translateX(0);
  }
}

/**ハンバーガーメニュー**/
#headerToggle {
  display: none;
}

@media (max-width: 999px) {
  #headerToggle {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 20px;
    z-index: 99;
    cursor: pointer;
    width: 30px;
    height: 25px;
    transition: all 0.3s;
  }
  #headerToggle span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #fff;
    transition: all 0.4s;
  }
  #headerToggle span:nth-of-type(1) {
    top: 0;
  }
  #headerToggle span:nth-of-type(2) {
    top: 11px;
  }
  #headerToggle span:nth-of-type(3) {
    bottom: 0;
  }
  #headerToggle.active span {
    background-color: white;
  }
  #headerToggle.active span:nth-of-type(1) {
    transform: translateY(11px) rotate(-45deg);
  }
  #headerToggle.active span:nth-of-type(2) {
    left: 50%;
    opacity: 0;
  }
  #headerToggle.active span:nth-of-type(3) {
    transform: translateY(-11px) rotate(45deg);
  }
}
.hdr_info_wrapper {
  display: none;
}
@media (min-width: 1000px) {
  .hdr_info_wrapper {
    display: block;
    position: absolute;
    top: 15px;
    right: 0;
  }
}
.hdr_info_wrapper .hdr_info {
  display: flex;
  align-items: center;
  margin-right: 10px;
}
.hdr_info_wrapper .hdr_info_group {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.hdr_info_wrapper .hdr_info_group li {
  margin-left: 10px;
}
.hdr_info_wrapper .hdr_info_group .c-button, .hdr_info_wrapper .hdr_info_group .p-inquiry .form_button, .p-inquiry .hdr_info_wrapper .hdr_info_group .form_button, .hdr_info_wrapper .hdr_info_group .p-inquiry .wpcf7-submit, .p-inquiry .hdr_info_wrapper .hdr_info_group .wpcf7-submit {
  min-width: 220px;
  font-size: 1.4rem;
}

.sp_hdr_info_wrapper {
  display: none;
}
@media (max-width: 999px) {
  .sp_hdr_info_wrapper {
    display: block;
    position: absolute;
    top: 15px;
    right: 70px;
  }
}
.sp_hdr_info_wrapper .sp_hdr_info_group {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.sp_hdr_info_wrapper .sp_hdr_info_group li {
  margin-left: 10px;
}
.sp_hdr_info_wrapper .sp_hdr_info_group li.hdr_icon_tel a {
  color: #fff;
}
.sp_hdr_info_wrapper .sp_hdr_info_group li.hdr_icon_tel i {
  font-size: 3.2rem;
}
.sp_hdr_info_wrapper .sp_hdr_info_group li.hdr_icon_mail a {
  color: #fff;
}
.sp_hdr_info_wrapper .sp_hdr_info_group li.hdr_icon_mail i {
  font-size: 3.2rem;
}

.l-footer {
  position: relative;
  font-size: 15px;
}
.l-footer .fNav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.l-footer .fNav ul li + li {
  border-top: 1px solid rgba(23, 46, 16, 0.3);
}
.l-footer .fNav ul li a {
  display: block;
  padding: 1em 15px;
  text-decoration: none;
}
.l-footer .fNav ul li.menu-item-has-children ul {
  display: block !important;
}
.l-footer .copy_right {
  font-size: 1.3rem;
}

@media (max-width: 767px) {
  .l-footer ul {
    border-top: 1px solid rgba(23, 46, 16, 0.3);
  }
  .l-footer ul li > ul {
    border-top: 1px solid rgba(23, 46, 16, 0.3);
  }
  .l-footer ul li.menu-item-has-children ul {
    display: block !important;
    height: auto !important;
  }
  .l-footer ul li.menu-item-has-children ul a {
    font-size: 90%;
    padding-left: 1.5em;
  }
  .l-footer ul li.menu-item-has-children ul ul a {
    padding-left: 2.5em;
  }
  .l-footer .col {
    margin-bottom: 0 !important;
  }
}
@media (min-width: 768px) {
  .l-footer .fNav {
    margin-bottom: 5%;
  }
  .l-footer .fNav ul {
    width: 100%;
    text-align: left;
    border-bottom: none;
  }
  .l-footer .fNav ul li {
    border: none !important;
  }
  .l-footer .fNav ul li a {
    padding: 0.2em 1em 0.2em 1em !important;
    text-decoration: none;
    position: relative;
  }
  .l-footer .fNav ul li a:before {
    content: "";
    width: 6px;
    height: 6px;
    border: 0;
    border-top: solid 2px #172e10;
    border-right: solid 2px #172e10;
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -5px;
  }
  .l-footer .fNav ul li > ul {
    padding-left: 0.2em;
  }
  .l-footer .fNav ul li > ul a {
    font-size: 90%;
  }
  .l-footer .fNav ul li > ul a:before {
    width: 5px;
    height: 5px;
    border: none;
    background: #172e10;
    border-radius: 50%;
    margin-top: -2px;
  }
  .l-footer .fNav ul li > ul .sub-menu {
    padding-left: 1em;
  }
  .l-footer .fNav ul li > ul .sub-menu a:before {
    width: 5px;
    height: 2px;
    border: none;
    background: #172e10;
    border-radius: 0;
    transform: rotate(0);
  }
}
.copy_right {
  background: #172e10;
  color: white;
  font-size: 1.3rem;
  margin: 0;
  padding: 38px 0;
}
@media (min-width: 1025px) {
  .copy_right {
    letter-spacing: 0.15em;
  }
}
@media (max-width: 767px) {
  .copy_right {
    padding: 1em 0;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .l-footer nav ul li.tablet-break:after {
    content: "\a";
    white-space: pre;
  }
  .l-footer nav ul li.tablet-break + li:before {
    display: none;
  }
}
.l-footer a {
  color: #000000;
}
.l-footer a:hover {
  color: #000000;
}
@media (min-width: 768px) {
  .l-footer .container .row nav ul {
    display: inline-block;
  }
  .l-footer .container .row nav a {
    display: inline-block;
    padding: 0.3em;
  }
}

.main_visual {
  position: relative;
  margin-bottom: 0;
  margin-top: 60px;
}
@media (max-width: 999px) {
  .main_visual {
    margin-top: 0;
  }
}
@media (min-width: 1000px) {
  .main_visual {
    margin-top: 0;
  }
}
.main_visual .main_visual_slick, .main_visual .slick-track {
  margin: 0;
  padding: 0;
  list-style: none;
  height: 100% !important;
}
.main_visual .slick-track {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}
.main_visual .slick-list {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 100%;
}
.main_visual .main_visual_slick {
  position: relative;
  margin: 0 auto;
}
.main_visual .main_visual_slick .slick-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  overflow: hidden;
}
.main_visual .main_visual_slick .slick-slide picture, .main_visual .main_visual_slick .slick-slide img {
  position: absolute;
  left: -300%;
  right: -300%;
  margin: auto;
  top: 0;
  width: auto;
  height: 100%;
}
.main_visual .main_visual_copy {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  z-index: 53;
}
.main_visual .main_visual_copy > li {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.main_visual .main_visual_copy > li img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 13.6%;
  max-width: 136px;
  max-height: 551px;
  z-index: 52;
  left: auto;
}
@media (max-width: 767px) {
  .main_visual .main_visual_copy > li img {
    width: 18%;
  }
}
@media (max-width: 1024px) {
  .main_visual .main_visual_copy > li img {
    right: 2%;
  }
}
.main_visual .main_visual_slick {
  padding-top: 90% !important;
}

@media (min-width: 1000px) {
  .main_visual .main_visual_slick {
    padding-top: 0 !important;
    height: 900px !important;
  }
}
@media (min-width: 1920px) {
  .main_visual .main_visual_slick {
    padding-top: 46.875% !important;
  }
}
@media (max-width: 767px) {
  .main_visual .main_visual_slick {
    padding-top: 114.6666666667% !important;
  }
}
.slick-dots {
  z-index: 55 !important;
  bottom: -50px;
}
.slick-dots li button {
  margin: 0 auto;
  background: #ccc;
}
.slick-dots li.slick-active button {
  background: #172e10;
}

.main_visual .main_visual_swiper .swiper-slide {
  position: relative;
}
.main_visual .main_visual_swiper .swiper-slide a {
  color: white;
}
.main_visual .main_visual_swiper .swiper-slide .u-ofi {
  padding-top: 700px;
}
.main_visual .main_visual_swiper .swiper-slide .text_wrapper {
  position: absolute;
  width: 100%;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  padding: 1em;
}
.main_visual .main_visual_swiper .swiper-slide .text_wrapper h3 {
  color: white;
  padding: 0;
  margin: 0 0 0.5em;
}
.main_visual .main_visual_swiper .swiper-slide .text_wrapper h3:after {
  content: none;
}
.main_visual .swiper-button-prev, .main_visual .swiper-button-next {
  background: #172e10;
  color: white;
  width: 60px;
  height: 60px;
}
@media (max-width: 767px) {
  .main_visual .swiper-button-prev, .main_visual .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}
.main_visual .swiper-button-prev:after, .main_visual .swiper-button-next:after {
  font-size: 16px;
}
@media (max-width: 767px) {
  .main_visual .swiper-button-prev:after, .main_visual .swiper-button-next:after {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .main_visual .swiper-button-prev {
    left: 0;
  }
}
@media (max-width: 767px) {
  .main_visual .swiper-button-next {
    right: 0;
  }
}
.main_visual .swiper-pagination {
  position: static;
  margin: 1em 0;
}
.main_visual .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #172e10;
  margin: 0 5px;
  outline-color: transparent;
}

.c-h1 {
  text-align: center;
  font-size: 3.6rem;
  font-weight: normal;
  padding: 100px 5%;
  color: #fff;
  background: url("../../../../../wp-content/uploads/common_h1.jpg") no-repeat center/cover;
  margin: 0 0 40px;
}
@media (min-width: 1000px) {
  .c-h1 {
    margin-top: 0;
    padding: 320px 5%;
    letter-spacing: 0.35em;
  }
}
@media (max-width: 767px) {
  .c-h1 {
    margin-bottom: 10px;
  }
}
.c-h1 span {
  display: block;
  font-size: 1.6rem;
  padding-top: 0.5em;
  color: white;
  font-style: italic;
}
.c-h1 a {
  text-decoration: none;
}
.c-h1 a:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .c-h1 {
    font-size: 2.4rem;
  }
  .c-h1 span {
    font-size: 1.4rem;
  }
}
.c-h2 {
  display: block;
  margin: 0 auto 1em;
  position: relative;
  text-align: center;
  border: 0;
  font-weight: 400;
  padding: 0 0 0.5em;
  font-size: 3rem;
  color: #000000;
}
.c-h2 a {
  text-decoration: none;
  color: #000000;
}
.c-h2 a:hover {
  text-decoration: underline;
  color: #000000;
}
.c-h2 span {
  display: block;
  font-size: 1.4rem;
  padding-top: 1em;
}
.c-h2:after {
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  width: 60px;
  right: 0;
  left: 0;
  bottom: 0;
  top: auto;
  margin: auto;
  background: #172e10;
}
.c-h2.vertical_type {
  display: table;
}
@media (min-width: 1025px) {
  .c-h2.vertical_type {
    font-size: 3.2rem;
  }
}
@media (min-width: 768px) {
  .c-h2.vertical_type {
    -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
    padding: 0;
    letter-spacing: 0.35em;
    line-height: 1.4;
  }
  .c-h2.vertical_type:after {
    width: 0px;
    height: 97%;
    left: auto;
    top: 0;
    bottom: auto;
  }
}
@media (max-width: 767px) {
  .c-h2.vertical_type:after {
    width: 100%;
    height: 1px;
  }
}
.c-h2.under_type {
  background: url("../../../../../wp-content/uploads/history_h2.jpg") no-repeat center/cover;
  padding: 100px 0;
}
@media (max-width: 767px) {
  .c-h2.under_type {
    padding: 30px 0;
  }
}
@media (min-width: 1025px) {
  .c-h2.under_type {
    padding: 150px 0;
  }
}
.c-h2.under_type:after {
  display: none;
}
.c-h2.under_type .ttl {
  font-size: 2.4rem;
  color: #fff;
  padding: 0;
  width: 160px;
  height: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  border: solid 1px #fff;
}
@media (min-width: 1025px) {
  .c-h2.under_type .ttl {
    font-size: 2.8rem;
    letter-spacing: 0.1em;
  }
}
.c-h2.under_type .ttl:after {
  display: none;
}
.c-h2.under_type.typeB {
  background: url("../../../../../wp-content/uploads/tea-room_h2_2.jpg") no-repeat center/cover;
}
.c-h2.under_type.type_alcove {
  background: url("../../../../../wp-content/uploads/alcove_h2.jpg") no-repeat center/cover;
}
.c-h2.under_type.type_event01 {
  background: url("../../../../../wp-content/uploads/event_h2_1.jpg") no-repeat center/cover;
}
.c-h2.under_type.type_event02 {
  background: url("../../../../../wp-content/uploads/event_h2_2.jpg") no-repeat center/cover;
}
.c-h2.under_type.type_event03 {
  background: url("../../../../../wp-content/uploads/event_h2_3.jpg") no-repeat center/cover;
}
.c-h2.under_type.type_event04 {
  background: url("../../../../../wp-content/uploads/event_h2_4.jpg") no-repeat center/cover;
}

@media (max-width: 767px) {
  .c-h2 {
    font-size: 2.4rem;
  }
  .c-h2:after {
    width: 20px;
  }
}
.c-h3 {
  margin: 0 0 1em;
  padding-bottom: 0.5em;
  color: #000000;
  font-size: 2.4rem;
  position: relative;
}
.c-h3 a {
  text-decoration: none;
}
.c-h3 a:hover {
  text-decoration: underline;
}
.c-h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(23, 46, 16, 0.2);
}

@media (max-width: 767px) {
  .c-h3 {
    font-size: 2rem;
  }
}
.c-h4 {
  margin: 0 0 1em;
  padding-left: 1em;
  font-size: 1.8rem;
  position: relative;
  color: #000000;
  font-weight: bold;
}
.c-h4 a {
  text-decoration: none;
}
.c-h4 a:hover {
  text-decoration: underline;
}
.c-h4:after {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  display: block;
  width: 5px;
  height: 1em;
  margin: auto;
  background: #172e10;
}

@media (max-width: 767px) {
  .c-h4 {
    font-size: 1.4rem;
  }
}
.widget_wrap .widget_header {
  font-size: 1.6rem;
  color: #000000;
  padding: 0.5em 0 0.5em 0.5em;
  border-bottom: #172e10 solid 2px;
  font-weight: bold;
}
.widget_wrap .widget_header a {
  text-decoration: none;
}
.widget_wrap .widget_header a:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .widget_wrap .widget_header {
    font-size: 1.4rem;
  }
}
.p-bread {
  overflow: hidden;
  font-size: 1.2rem;
  margin: 0 auto 60px;
  width: 100%;
  max-width: 1000px;
  padding: 0 20px;
}
@media (max-width: 767px) {
  .p-bread {
    margin: 0 auto 40px;
  }
}
@media (min-width: 1020px) {
  .p-bread {
    padding: 0;
  }
}
.p-bread ul {
  padding: 1em 0;
  margin: 0 auto;
  float: none;
}
.p-bread ul li {
  list-style: none;
  position: relative;
  float: left;
  padding-right: 2em;
  margin-right: 1.5em;
}
.p-bread ul li a {
  text-decoration: none;
  color: #172e10;
}
.p-bread ul li a:hover {
  color: #172e10;
  text-decoration: none;
}
.p-bread ul li:after {
  content: ">";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.p-bread ul li:last-child {
  padding-right: 0;
  margin-right: 0;
}
.p-bread ul li:last-child:after {
  content: none;
}

.c-button, .p-inquiry .form_button, .p-inquiry .wpcf7-submit {
  display: inline-block;
  max-width: 235px;
  width: 100%;
  margin: 0;
  padding: 1em 1em;
  border-top: #172e10 solid 1px;
  border-bottom: #172e10 solid 1px;
  border-radius: 0px;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: 0.3s;
  font-size: 1.6rem;
  cursor: pointer;
  /*
  * ボタン矢印
  */
}
.c-button:hover, .p-inquiry .form_button:hover, .p-inquiry .wpcf7-submit:hover {
  border-color: #152a0f;
  opacity: 0.7;
}
.c-button.arrow, .p-inquiry .arrow.form_button, .p-inquiry .arrow.wpcf7-submit {
  position: relative;
  font-size: 1.6rem;
}
.c-button.arrow:after, .p-inquiry .arrow.form_button:after, .p-inquiry .arrow.wpcf7-submit:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 49%;
  right: 5%;
  margin: auto;
  width: 20px;
  height: 5px;
  border-bottom: 1px solid white;
  border-right: 1px solid white;
  transform: skew(45deg);
  transition: 0.2s;
}
.c-button.arrow:hover, .p-inquiry .arrow.form_button:hover, .p-inquiry .arrow.wpcf7-submit:hover {
  border: 1px solid #172e10;
}
.c-button.arrow:hover:after, .p-inquiry .arrow.form_button:hover:after, .p-inquiry .arrow.wpcf7-submit:hover:after {
  right: 4%;
}
.u-highlight .c-button, .u-highlight .p-inquiry .form_button, .p-inquiry .u-highlight .form_button, .u-highlight .p-inquiry .wpcf7-submit, .p-inquiry .u-highlight .wpcf7-submit {
  color: white;
}
.u-highlight .c-button:hover, .u-highlight .p-inquiry .form_button:hover, .p-inquiry .u-highlight .form_button:hover, .u-highlight .p-inquiry .wpcf7-submit:hover, .p-inquiry .u-highlight .wpcf7-submit:hover {
  color: white;
}
.c-button.inverse, .p-inquiry .inverse.form_button, .p-inquiry .inverse.wpcf7-submit {
  background: none;
  border-color: #172e10;
  color: #172e10;
}
.c-button.inverse:after, .p-inquiry .inverse.form_button:after, .p-inquiry .inverse.wpcf7-submit:after {
  border-color: #172e10;
}
.c-button.inverse:hover, .p-inquiry .inverse.form_button:hover, .p-inquiry .inverse.wpcf7-submit:hover {
  background: #172e10;
  color: #fff;
}
.c-button.inverse:hover:after, .p-inquiry .inverse.form_button:hover:after, .p-inquiry .inverse.wpcf7-submit:hover:after {
  border-color: #fff;
}
.c-button.block, .p-inquiry .block.form_button, .p-inquiry .block.wpcf7-submit {
  display: block;
  min-width: 100%;
}
.c-button.small, .p-inquiry .small.form_button, .p-inquiry .small.wpcf7-submit {
  padding: 0.6em 1em;
  max-width: unset;
  width: auto;
}
.c-button.small.arrow, .p-inquiry .small.arrow.form_button, .p-inquiry .small.arrow.wpcf7-submit {
  padding-right: 2.5em;
}
.c-button + .c-button, .p-inquiry .form_button + .c-button, .p-inquiry .wpcf7-submit + .c-button, .p-inquiry .c-button + .form_button, .p-inquiry .form_button + .form_button, .p-inquiry .wpcf7-submit + .form_button, .p-inquiry .c-button + .wpcf7-submit, .p-inquiry .form_button + .wpcf7-submit, .p-inquiry .wpcf7-submit + .wpcf7-submit {
  margin-left: 0.5em;
}
@media (max-width: 767px) {
  .c-button + .c-button, .p-inquiry .form_button + .c-button, .p-inquiry .wpcf7-submit + .c-button, .p-inquiry .c-button + .form_button, .p-inquiry .form_button + .form_button, .p-inquiry .wpcf7-submit + .form_button, .p-inquiry .c-button + .wpcf7-submit, .p-inquiry .form_button + .wpcf7-submit, .p-inquiry .wpcf7-submit + .wpcf7-submit {
    margin-left: 0;
    margin-top: 1em;
  }
}
.c-button.vertical_type, .p-inquiry .vertical_type.form_button, .p-inquiry .vertical_type.wpcf7-submit, .c-button.under_vertical_type, .p-inquiry .under_vertical_type.form_button, .p-inquiry .under_vertical_type.wpcf7-submit {
  background: transparent;
}
@media (max-width: 767px) {
  .c-button.vertical_type, .p-inquiry .vertical_type.form_button, .p-inquiry .vertical_type.wpcf7-submit, .c-button.under_vertical_type, .p-inquiry .under_vertical_type.form_button, .p-inquiry .under_vertical_type.wpcf7-submit {
    border-color: #fff;
  }
}
@media (min-width: 768px) {
  .c-button.vertical_type, .p-inquiry .vertical_type.form_button, .p-inquiry .vertical_type.wpcf7-submit, .c-button.under_vertical_type, .p-inquiry .under_vertical_type.form_button, .p-inquiry .under_vertical_type.wpcf7-submit {
    -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
    max-width: none;
    width: auto;
    border-top: 0;
    border-bottom: 0;
    border-color: #fff;
    border-left: solid 1px #fff;
    border-right: solid 1px #fff;
  }
}
@media (min-width: 1025px) {
  .c-button.vertical_type, .p-inquiry .vertical_type.form_button, .p-inquiry .vertical_type.wpcf7-submit, .c-button.under_vertical_type, .p-inquiry .under_vertical_type.form_button, .p-inquiry .under_vertical_type.wpcf7-submit {
    letter-spacing: 0.2em;
  }
}
.c-button.vertical_type:hover, .p-inquiry .vertical_type.form_button:hover, .p-inquiry .vertical_type.wpcf7-submit:hover, .c-button.under_vertical_type:hover, .p-inquiry .under_vertical_type.form_button:hover, .p-inquiry .under_vertical_type.wpcf7-submit:hover {
  opacity: 0.7;
}
.c-button.under_vertical_type, .p-inquiry .under_vertical_type.form_button, .p-inquiry .under_vertical_type.wpcf7-submit {
  color: #000000;
}
@media (max-width: 767px) {
  .c-button.under_vertical_type, .p-inquiry .under_vertical_type.form_button, .p-inquiry .under_vertical_type.wpcf7-submit {
    border-top: solid 1px #000000;
    border-bottom: solid 1px #000000;
  }
}
@media (min-width: 768px) {
  .c-button.under_vertical_type, .p-inquiry .under_vertical_type.form_button, .p-inquiry .under_vertical_type.wpcf7-submit {
    border-left: solid 1px #000000;
    border-right: solid 1px #000000;
  }
}

/* お問い合わせフォーム */
.p-inquiry .c-table__default {
  border: none;
}
.p-inquiry .c-table__default tr:not(:last-of-type) {
  border-bottom: 1px solid #cccccc;
}
.p-inquiry .c-table__default th {
  background: none;
  border: none;
  text-align: left;
  padding: 1.4em 50px 1.2em 0.5em;
  vertical-align: top;
  font-weight: bold;
  position: relative;
}
@media (max-width: 767px) {
  .p-inquiry .c-table__default th {
    padding: 1em 0 0;
  }
}
.p-inquiry .c-table__default th .u-required {
  display: inline-block;
  background: #d43f3a;
  color: white;
  padding: 4px 10px;
  border-radius: 3px;
  font-size: 1.2rem;
  margin-left: 0.5em;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .p-inquiry .c-table__default th .u-required {
    position: absolute;
    top: 1.6em;
    right: 0;
  }
}
.p-inquiry .c-table__default td {
  background: none;
  border: none;
  padding: 1.2em 0.5em;
}
@media (max-width: 767px) {
  .p-inquiry .c-table__default td {
    padding: 0.5em 0 1em;
  }
}
.p-inquiry .input_wrap {
  display: block;
  margin: 0;
  padding: 0 0.2em;
}
@media (max-width: 767px) {
  .p-inquiry .input_wrap {
    margin: 0;
  }
}
.p-inquiry .input_wrap input, .p-inquiry .input_wrap textarea {
  margin: 0;
}
.p-inquiry .input_wrap:last-child {
  margin-right: auto;
}
.p-inquiry__text--2col {
  display: flex;
}
.p-inquiry__text--2col .input_wrap {
  flex-basis: 50%;
}
.p-inquiry input[type=text],
.p-inquiry input[type=url],
.p-inquiry input[type=email],
.p-inquiry input[type=tel],
.p-inquiry input[type=date],
.p-inquiry input[type=number],
.p-inquiry select,
.p-inquiry textarea {
  width: 100%;
  max-width: 100%;
  padding: 7px 2%;
  color: #000000;
  font-size: 1.6rem;
  margin: 0 0.2em;
  border: 1px solid #cccccc;
  background: #fafafa;
  border-radius: 3px;
  -webkit-appearance: none;
}
@media (max-width: 767px) {
  .p-inquiry input[type=text],
.p-inquiry input[type=url],
.p-inquiry input[type=email],
.p-inquiry input[type=tel],
.p-inquiry input[type=date],
.p-inquiry input[type=number],
.p-inquiry select,
.p-inquiry textarea {
    margin: 0.2em 0;
  }
}
.p-inquiry input[type=number] {
  width: 65px;
  text-align: center;
}
.p-inquiry input.p-postal-code {
  width: 200px;
}
.p-inquiry input.p-region {
  width: 100px;
}
.p-inquiry input.p-locality {
  width: 150px;
}
.p-inquiry input.p-street-address {
  width: 100%;
}
.p-inquiry input.p-extended-address {
  width: 100%;
}
.p-inquiry .mwform-tel-field {
  display: flex;
  justify-content: space-between;
}
.p-inquiry .submit {
  margin: 1em 0;
  text-align: center;
}
.p-inquiry .form_button, .p-inquiry .wpcf7-submit {
  background: #172e10;
  color: white;
  border-color: #172e10;
}
.p-inquiry .form_button.form_back, .p-inquiry .wpcf7-submit.form_back {
  background: #ccc;
  border-color: #ccc;
  color: #666;
}
.p-inquiry .form_button.form_back:hover, .p-inquiry .wpcf7-submit.form_back:hover {
  background: #bfbfbf;
  border-color: #bfbfbf;
  color: #666;
}
.p-inquiry .form_button.form_send, .p-inquiry .wpcf7-submit.form_send {
  background: #040803;
  border-color: #040803;
  color: #fff;
}
.p-inquiry .form_button.form_send:hover, .p-inquiry .wpcf7-submit.form_send:hover {
  background: black;
  border-color: black;
  color: #fff;
}
.p-inquiry label {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.form_button_wrap {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .form_button_wrap {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }
}
.form_button_wrap button {
  margin: 0.5em !important;
}

.privacy_wrap {
  margin-top: 5%;
  border: #ccc solid 1px;
  padding: 1em;
  height: 400px;
  overflow-y: scroll;
}

.mw_wp_form_confirm .input-show {
  display: none !important;
}

.mw_wp_form_input .input-hide {
  display: none !important;
}

.mw_wp_form .error {
  color: #d43f3a !important;
}

.u-required_txt {
  display: inline-block;
  background: #d43f3a;
  color: white;
  padding: 4px 10px 1px;
  border-radius: 3px;
  font-size: 1.2rem;
  margin-left: 0.5em;
  margin-right: 0.5em;
  flex-shrink: 0;
}

header .globalNav > ul > li.menu-item-has-children > a {
  position: relative;
}
header .globalNav > ul > li.menu-item-has-children > a:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 1em;
  bottom: 0;
  margin: auto;
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(0, -50%) rotate(135deg);
  transition: 0.2s;
}
header .globalNav > ul > li.menu-item-has-children.menu_under_open > a:after {
  transform: translate(0, 0) rotate(-45deg);
}
header .globalNav > ul > li > .sub-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: none;
}
@media (max-width: 999px) {
  header .globalNav > ul > li > .sub-menu {
    width: 100%;
    display: none;
  }
}
header .globalNav > ul > li > .sub-menu > li {
  border-bottom: 1px solid #b3b3b3;
}
header .globalNav > ul > li > .sub-menu > li:last-child {
  border-bottom: none;
}
header .globalNav > ul > li > .sub-menu > li > a {
  background: rgba(42, 84, 29, 0.9);
  padding-left: 2em;
  position: relative;
}
header .globalNav > ul > li > .sub-menu > li.menu-item-has-children {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
header .globalNav > ul > li > .sub-menu > li.menu-item-has-children > a {
  position: relative;
  width: 100%;
}
@media (min-width: 1000px) {
  header .globalNav > ul > li > .sub-menu > li.menu-item-has-children > a:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 1em;
    bottom: 0;
    margin: auto;
    width: 7px;
    height: 7px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
    transition: 0.2s;
  }
}
@media (max-width: 999px) {
  header .globalNav > ul > li > .sub-menu > li.menu-item-has-children > a:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 1em;
    bottom: 0;
    margin: auto;
    width: 7px;
    height: 7px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translate(0, -50%) rotate(135deg);
    transition: 0.2s;
  }
}
@media (max-width: 999px) {
  header .globalNav > ul > li > .sub-menu > li.menu-item-has-children.menu_under_open > a:after {
    transform: translate(0, 0) rotate(-45deg);
  }
}
header .globalNav > ul > li > .sub-menu > li.menu-item-has-children > .sub-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: none;
}
@media (min-width: 1000px) {
  header .globalNav > ul > li > .sub-menu > li.menu-item-has-children > .sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 200px;
  }
}
@media (max-width: 999px) {
  header .globalNav > ul > li > .sub-menu > li.menu-item-has-children > .sub-menu {
    width: 100%;
    display: none;
  }
}
header .globalNav > ul > li > .sub-menu > li.menu-item-has-children > .sub-menu li:not(:last-child) {
  border-bottom: #fff solid 1px;
}
@media (max-width: 999px) {
  header .globalNav > ul > li > .sub-menu > li.menu-item-has-children > .sub-menu li:not(:last-child) {
    border-bottom: #b3b3b3 solid 1px;
  }
}
header .globalNav > ul > li > .sub-menu > li.menu-item-has-children > .sub-menu li:last-child {
  border-bottom: none;
}
header .globalNav > ul > li > .sub-menu > li.menu-item-has-children > .sub-menu li a {
  background: rgba(51, 103, 36, 0.9);
}
@media (max-width: 999px) {
  header .globalNav > ul > li > .sub-menu > li.menu-item-has-children > .sub-menu li a {
    padding-left: 2.5em;
  }
}
header .globalNav > ul > li > .sub-menu > li.menu-item-has-children:hover > .sub-menu, header .globalNav > ul > li > .sub-menu > li.menu-item-has-children.menu_under_open > .sub-menu {
  display: none;
}

@media (min-width: 1000px) {
  header .globalNav > ul > li.menu-item-has-children {
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  header .globalNav > ul > li.menu-item-has-children > a {
    padding-right: 2em;
    position: relative;
  }
  header .globalNav > ul > li.menu-item-has-children > a:after {
    border-color: #fff;
    width: 6px;
    height: 6px;
  }
  header .globalNav > ul > li.menu-item-has-children > a:after {
    transform: translate(0, -50%) rotate(135deg);
  }
  header .globalNav > ul > li.menu-item-has-children > a.menu_under_open:after {
    transform: translate(0) rotate(-45deg);
  }
  header .globalNav > ul > li.menu-item-has-children > .sub-menu {
    position: absolute;
    right: 0;
    margin: auto;
    top: 100%;
    min-width: 200px;
    letter-spacing: -0.4em;
    z-index: 999;
  }
  header .globalNav > ul > li.menu-item-has-children > .sub-menu > li {
    letter-spacing: normal;
    display: block;
    vertical-align: middle;
    width: 100%;
    text-align: center;
    border-bottom: 0;
    padding: 0;
  }
  header .globalNav > ul > li.menu-item-has-children > .sub-menu > li:not(:last-child) {
    border-bottom: white solid 1px;
  }
  header .globalNav > ul > li.menu-item-has-children > .sub-menu > li a {
    display: block;
    background: rgba(23, 46, 16, 0.9);
    padding: 0.5em;
    color: #fff;
  }
  header .globalNav > ul > li.menu-item-has-children > .sub-menu > li a:before {
    content: none;
  }
}
.modaal-close:focus:after, .modaal-close:focus:before, .modaal-close:hover:after, .modaal-close:hover:before {
  background: #172e10;
}

.movie {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-top: 56.25%;
}
.movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.movie.ar16to9 {
  padding-top: 56.25%;
}
.movie.ar4to3 {
  padding-top: 75%;
}

@media (max-width: 767px) {
  .p-news .c-heading {
    display: flex;
    justify-content: space-between;
  }
  .p-news .c-heading h2 {
    text-align: left;
    margin: 0 0 1em;
  }
  .p-news .c-heading h2:after {
    right: auto;
  }
}
.p-news dl {
  margin: 0;
  overflow-y: auto;
  max-height: 300px;
}
.p-news dl dt {
  margin: 0.5em 0 0;
  padding: 0 1em;
  font-weight: normal;
}
.p-news dl dd {
  margin: 0.5em 0;
  padding: 0 1em 0.5em;
  border-bottom: #ccc solid 1px;
  position: relative;
}
.p-news dl dd a {
  text-decoration: none;
}
.p-news dl dd a:hover {
  text-decoration: underline;
}
.p-news dl .badge_category {
  display: inline-block;
  background: #172e10;
  color: white;
  padding: 0.2em 1em;
  margin-left: 1em;
  font-size: 1.4rem;
}

@media (min-width: 768px) {
  .p-news > div {
    display: flex;
    width: 100%;
    margin: 0 auto;
  }
  .p-news > div .c-heading {
    width: 32.5%;
  }
  .p-news h2 {
    margin: 0;
    padding: 0;
  }
  .p-news h2:after {
    display: none;
  }
  .p-news .c-content {
    overflow: hidden;
    width: 76.5%;
    padding-left: 2%;
  }
  .p-news dl {
    overflow-y: auto;
    max-height: 200px;
  }
  .p-news dl dt {
    margin: 0;
    padding: 1em 0 0.5em 0;
  }
  .p-news dl dd {
    margin: 0;
    padding: 0.5em 0 1em 0;
  }
}
.c-pageTop {
  position: fixed;
  bottom: 20px;
  right: 5%;
  z-index: 98;
}
.c-pageTop a {
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  display: inline-block;
  position: relative;
  width: 50px;
  height: 50px;
  background: url("../../../../../wp-content/uploads/pagetop.png") no-repeat center/cover;
}
@media (min-width: 768px) {
  .c-pageTop a {
    width: 109px;
    height: 110px;
  }
}

footer.high .c-pageTop {
  position: absolute;
  bottom: auto;
  right: 5%;
  top: 0;
  margin: 0;
  transform: translateY(-50%);
}

.p-qa__question {
  font-size: 1.6rem;
  border: none;
  position: relative;
  margin: 0 0 0;
  padding: 1em 50px 1em 1em;
  background-color: rgba(23, 46, 16, 0.1);
  font-weight: normal;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.p-qa__question.is-open:after {
  transform: rotate(180deg);
}
.p-qa__question:not(:first-child) {
  margin-top: 1em !important;
}
.p-qa__answer {
  padding: 1em 0 0 1em;
}
.p-qa.js-qa_active .p-qa__question {
  cursor: pointer;
}
.p-qa.js-qa_active .p-qa__question:hover {
  opacity: 0.8;
}
.p-qa.js-qa_active .p-qa__question:after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 1em;
  left: auto;
  top: 50%;
  bottom: auto;
  margin-top: -12px;
  background: url(../../../../../wp-content/uploads/arrow_down.svg) center center no-repeat;
  background-size: 24px;
  transition: 0.5s;
  border: none;
}
.p-qa.js-qa_active .p-qa__answer {
  display: none;
}

.u-highlight .p-qa__question {
  background: rgba(32, 65, 23, 0.1);
}
.u-highlight .p-qa__question:hover {
  background: rgba(27, 54, 19, 0.1);
}
.u-highlight .p-qa__question.is-open:hover {
  background: rgba(32, 65, 23, 0.1);
}

.shopinfo figure, .shopinfo picture {
  max-width: 80%;
  margin: 0 auto;
}
.shopinfo address {
  text-align: center;
  font-size: 2rem;
  font-style: normal;
}
.shopinfo dl {
  margin: 2em 0;
  line-height: 1.4;
}
.shopinfo dl:first-child {
  margin-top: 0;
}
.shopinfo dl dt {
  margin: 0 0 0.2em 0;
  font-weight: normal;
}
.shopinfo dl dt:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 3px;
  margin-right: 0.3em;
  vertical-align: middle;
  background: #172e10;
}
.shopinfo dl dd {
  margin: 0 0 0.5em 1em;
  padding: 0;
}

.c-mapContainer {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 70%;
}
.c-mapContainer iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-mapContainer + p {
  margin-top: 2em;
}

.map_wide {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 70%;
}
.map_wide iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

body.scroll .googlemap {
  pointer-events: none;
}

@media (min-width: 768px) {
  .shopinfo figure, .shopinfo picture {
    max-width: 100%;
  }
  .shopinfo address {
    margin-bottom: 15px;
    text-align: left;
    font-size: 2.6rem;
    line-height: 1;
  }
  .shopinfo dl.dl-horizontal {
    margin: 10px 0;
  }
  .shopinfo dl.dl-horizontal dd {
    margin-bottom: 0.3em;
  }
  .shopinfo .span12 .c-mapContainer {
    padding-top: 50%;
  }

  .c-mapWide {
    padding-top: 420px;
  }
}
.p-sitemap {
  border-top: rgba(0, 0, 0, 0.3) solid 1px;
}
.p-sitemap ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-sitemap ul li a {
  display: block;
  text-decoration: none;
  position: relative;
  padding: 0.6em 1em 0.6em 1.5em;
  border-bottom: rgba(0, 0, 0, 0.3) solid 1px;
  font-size: 1.8rem;
}
.p-sitemap ul li a:before {
  content: "";
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #000000;
  border-right: solid 2px #000000;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0.5em;
  margin: auto;
}
.p-sitemap ul li a:hover {
  background: rgba(23, 46, 16, 0.1);
}
.p-sitemap ul.children {
  margin: 0;
}
.p-sitemap ul.children li a {
  padding-left: 3em;
  font-size: 1.4rem;
}
.p-sitemap ul.children li a:before {
  left: 2em;
}

.sns_icons {
  display: table;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0rem;
  margin: auto;
}
.sns_icons > li {
  display: inline;
  padding-left: 0;
  padding-right: 0;
  white-space: nowrap;
  font-size: 1.5rem;
}
.sns_icons li {
  display: inline-block;
}
.sns_icons li:not(:last-child) {
  margin-right: 10px;
}
.sns_icons a {
  display: block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  width: 34px;
  height: 34px;
  background-repeat: no-repeat;
  background-size: contain;
}
.sns_icons a.icon_facebook {
  background-image: url(../../../../../wp-content/uploads/icon_facebook.png);
}
.sns_icons a.icon_twitter {
  background-image: url(../../../../../wp-content/uploads/icon_twitter.png);
}
.sns_icons a.icon_line {
  background-image: url(../../../../../wp-content/uploads/icon_line.png);
}
.sns_icons a.icon_google {
  background-image: url(../../../../../wp-content/uploads/icon_google.png);
}
.sns_icons a.icon_instagram {
  background-image: url(../../../../../wp-content/uploads/icon_instagram.png);
}

footer .sns_icons {
  margin-top: 1.5em;
}

@media (min-width: 768px) {
  .sns_icons {
    margin: 0;
  }
  .sns_icons.center {
    margin: auto;
  }
  .sns_icons li:not(:last-child) {
    margin-right: 20px;
  }
  .sns_icons a {
    width: 68px;
    height: 68px;
  }

  footer .sns_icons {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .sp_image_cols {
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 2%;
         column-gap: 2%;
    row-gap: 20px;
  }
  .sp_image_cols.sp_col2 .col {
    width: 49%;
  }
  .sp_image_cols.sp_col3 {
    display: flex;
    flex-wrap: wrap;
  }
  .sp_image_cols.sp_col3 .col {
    width: 33.3333333333%;
    padding: 0 1%;
  }
}
table {
  margin: 0 auto;
}
table td,
table th {
  padding: 0.7em 1em;
}
@media (max-width: 767px) {
  table td,
table th {
    padding: 0.7em 0.3em;
  }
}
table th {
  text-align: center;
  font-weight: normal;
}

.c-table__default {
  width: 100%;
  table-layout: fixed;
}
.c-table__default thead th, .c-table__default thead td {
  background: rgba(23, 46, 16, 0.15);
}
.c-table__default td,
.c-table__default th {
  border: 1px solid #ccc;
}
.c-table__default th {
  background: rgba(204, 204, 204, 0.2);
  color: #000000;
}
.c-table__default td {
  background: transparent;
}
.c-table__default.table-mini td,
.c-table__default.table-mini th {
  padding: 0.5em 1em;
}
@media (max-width: 767px) {
  .c-table__default.table-mini td,
.c-table__default.table-mini th {
    padding: 0.5em 0.3em;
  }
}

.c-table__menu {
  width: 100%;
}
.c-table__menu caption {
  margin-bottom: 0.5em;
  text-align: center;
  font-size: 2rem;
}
.c-table__menu td,
.c-table__menu th {
  padding: 0.7em 1em;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 767px) {
  .c-table__menu td,
.c-table__menu th {
    padding: 0.7em 0.3em;
  }
}
.c-table__menu tbody th {
  text-align: left;
}
.c-table__menu td:last-child {
  text-align: right;
  white-space: nowrap;
}

.c-table__schedule {
  width: 100%;
}
.c-table__schedule caption {
  margin-bottom: 0.5em;
  text-align: center;
  font-size: 2rem;
}
.c-table__schedule td,
.c-table__schedule th {
  border: 1px solid #ccc;
  padding: 0.7em 1em;
  text-align: center;
}
@media (max-width: 767px) {
  .c-table__schedule td,
.c-table__schedule th {
    padding: 0.7em 0.3em;
  }
}
.c-table__schedule thead th {
  background: rgba(204, 204, 204, 0.2);
}
.c-table__schedule tbody th {
  background: rgba(204, 204, 204, 0.2);
}
.c-table__schedule td {
  background: transparent;
}

@media (max-width: 767px) {
  .responsiveStack {
    display: block;
  }
  .responsiveStack thead {
    display: none;
  }
  .responsiveStack tbody,
.responsiveStack td,
.responsiveStack th,
.responsiveStack tr {
    display: block;
  }
  .responsiveStack td,
.responsiveStack th {
    width: 100% !important;
  }
  .responsiveStack tr:not(:last-child) td,
.responsiveStack tr:not(:last-child) th {
    border-bottom: 0;
  }
  .responsiveStack tr:last-child :not(:last-child) {
    border-bottom: 0;
  }
}
@media (max-width: 767px) {
  .js-responsiveScroll__container {
    display: block;
    width: 100%;
    min-height: 0.01%;
    overflow-x: scroll;
  }
  .js-responsiveScroll__container .js-responsiveScroll__inner {
    width: 798px;
    padding: 0 15px 15px;
  }
  .js-responsiveScroll__container table {
    width: 768px;
    margin: 0;
  }
}
table.c-table__default.typeA tr td,
table.c-table__default.typeA tr th {
  border: 0;
}
table.c-table__default.typeA tr:nth-child(odd) th {
  background: #172e10;
}
table.c-table__default.typeA tr:nth-child(odd) td {
  background: rgba(23, 46, 16, 0.1);
}
table.c-table__default.typeA tr:nth-child(even) th {
  background: #2a541d;
}
table.c-table__default.typeA tr:nth-child(even) td {
  background: rgba(42, 84, 29, 0.1);
}
table.c-table__default.typeB {
  border-spacing: 0;
  overflow: hidden;
}
table.c-table__default.typeB tbody td,
table.c-table__default.typeB tbody th {
  background: transparent;
  color: #000000;
  border: 0;
  border-bottom: 1px solid rgba(204, 204, 204, 0.1);
}
table.c-table__default.typeB tbody tr {
  position: relative;
}
table.c-table__default.typeB tbody th {
  color: #172e10;
}
table.c-table__default.typeC th {
  background: rgba(204, 204, 204, 0.2);
  color: #000000;
}
table.c-table__default.typeC td,
table.c-table__default.typeC th {
  border: 0;
}
table.c-table__default.typeC td:not(:last-child),
table.c-table__default.typeC th:not(:last-child) {
  border-bottom: 2px #fff solid;
}
table.c-table__default.typeC tr {
  position: relative;
}
table.c-table__default.typeC td {
  transform: translateX(2px);
}

.u-highlight table.c-table__default.typeC td,
.u-highlight table.c-table__default.typeC th {
  border: 0;
}
.u-highlight table.c-table__default.typeC td:not(:last-child),
.u-highlight table.c-table__default.typeC th:not(:last-child) {
  border-bottom: 2px rgba(23, 46, 16, 0.1) solid;
}

.p-articleList {
  padding: 0.5em;
  border-top: rgba(23, 46, 16, 0.2) solid 1px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-articleList {
    padding: 1em;
  }
}
.p-articleList .span_12 {
  margin: 2% 0;
}
.p-articleList:last-of-type {
  border-bottom: rgba(23, 46, 16, 0.2) solid 1px;
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .p-articleList:last-of-type {
    margin-bottom: 40px;
  }
}
.p-articleList .c-postHeader__time:before {
  content: "\f073";
  font-family: "Font Awesome 5 Free";
  margin-right: 0.5em;
}
.p-articleList .c-postHeader__categoryBadge {
  background: #172e10;
  color: white;
  font-size: 1.4rem;
  margin-left: 1em;
  display: inline-block;
}
.p-articleList .c-postHeader__categoryBadge a {
  display: block;
  padding: 0.2em 1em;
  color: white;
  text-decoration: none;
}
.p-articleList .c-h2 {
  text-align: left;
  margin: 0 0 0.5em !important;
  padding: 0;
  font-size: 2.4rem;
}
@media (max-width: 767px) {
  .p-articleList .c-h2 {
    font-size: 1.9rem;
  }
}
.p-articleList .c-h2:after {
  content: none;
}
.p-articleList .c-h2 a:hover {
  text-decoration: none;
  color: #172e10;
}

.m-pagenation {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .m-pagenation {
    margin-bottom: 50px;
  }
}
.m-pagenation .m-pagenation__prev {
  margin-right: 0.5em;
}
.m-pagenation .m-pagenation__prev a {
  display: block;
  text-decoration: none;
  padding: 0.3em 1em;
  border: #ccc solid 1px;
}
.m-pagenation .m-pagenation__prev a:hover {
  background: rgba(23, 46, 16, 0.1);
  border-color: rgba(23, 46, 16, 0.1);
}
.m-pagenation .m-pagenation__next {
  margin-left: 0.5em;
}
.m-pagenation .m-pagenation__next a {
  display: block;
  text-decoration: none;
  padding: 0.3em 1em;
  border: #ccc solid 1px;
}
.m-pagenation .m-pagenation__next a:hover {
  background: rgba(23, 46, 16, 0.1);
  border-color: rgba(23, 46, 16, 0.1);
}
.m-pagenation .m-pagenation__body {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}
.m-pagenation .m-pagenation__body li {
  display: inline-block;
  margin: 0 5px;
}
.m-pagenation .m-pagenation__body li a {
  text-decoration: none;
  display: block;
  padding: 0.3em 1em;
  border: #ccc solid 1px;
}
.m-pagenation .m-pagenation__body li a:hover {
  background: rgba(23, 46, 16, 0.1);
  border-color: rgba(23, 46, 16, 0.1);
}
.m-pagenation .m-pagenation__body li.current {
  background: #172e10;
  color: white;
  border: #172e10 solid 1px;
  padding: 0.3em 1em;
}

.wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .wp-pagenavi {
    margin-bottom: 50px;
  }
}
.wp-pagenavi a, .wp-pagenavi span {
  display: inline-block;
  margin: 0 5px;
  text-decoration: none;
  padding: 0.3em 1em;
  border: #ccc solid 1px;
  color: #172e10;
}
.wp-pagenavi a.current, .wp-pagenavi span.current {
  background: #172e10;
  color: white;
  border: #172e10 solid 1px;
  padding: 0.3em 1em;
}
.wp-pagenavi a:hover {
  background: rgba(23, 46, 16, 0.1);
  border-color: rgba(23, 46, 16, 0.1);
}

.article_single01 .article_single01_02 {
  margin-top: 10px;
}
.article_single01 .article_single01_02 img {
  opacity: 1;
  transition: opacity 0.3s;
}
.article_single01 .article_single01_02 img:hover {
  cursor: pointer;
  opacity: 0.7;
}
.article_single01 .ofi {
  background: rgba(23, 46, 16, 0.1);
}
.article_single01 .more {
  display: block;
  text-align: center;
}
.article_single02 .article_single02_01 img {
  opacity: 1;
  transition: opacity 0.3s;
}
.article_single02 .article_single02_01 img:hover {
  cursor: pointer;
  opacity: 0.7;
}
.article_single02 .ofi {
  background: rgba(23, 46, 16, 0.1);
}
.article_single02 .more {
  display: block;
  text-align: center;
}
@media (min-width: 768px) {
  .article_single03 .article_single03_02 .span_6 {
    width: 45%;
    margin-left: 10%;
  }
  .article_single03 .article_single03_02 .span_6:first-child {
    margin-left: 0;
  }
}
@media (min-width: 768px) {
  .article_single03 .article_single03_02 .span_12 {
    margin-left: 0;
    margin-top: 20px;
  }
}
.article_single03 .article_single03_02 img {
  opacity: 1;
  transition: opacity 0.3s;
}
.article_single03 .article_single03_02 img:hover {
  cursor: pointer;
  opacity: 0.7;
}
.article_single03 .case_arrow {
  position: relative;
}
@media (max-width: 767px) {
  .article_single03 .case_arrow {
    margin-bottom: 10%;
  }
}
.article_single03 .case_arrow:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 108%;
  margin: auto;
  width: 35px;
  height: 35px;
  border-top: 3px solid #172e10;
  border-right: 3px solid #172e10;
  transform: translate(0, -50%) rotate(45deg);
  transform-origin: left top;
  transition: 0.2s;
}
@media (max-width: 767px) {
  .article_single03 .case_arrow:after {
    left: 0;
    right: 0;
    top: 105%;
    width: 20px;
    height: 20px;
    transform: translate(0, -50%) rotate(135deg);
    transform-origin: center;
  }
}
.article_single03 .ofi {
  background: rgba(23, 46, 16, 0.1);
}
.article_single03 .more {
  display: block;
  text-align: center;
}
.article_single04 ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.article_single04 .article_single04_01_img1 .ofi {
  padding-top: 75%;
}
.article_single04 .article_single04_01_img2 .ofi {
  padding-top: 15%;
}
.article_single04 .article_single04_01_img3 .ofi {
  padding-top: 10.8%;
}
.article_single04 .article_single04_01_img4 .ofi {
  padding-top: 8.4%;
}
.article_single04 .article_single04_01_img5 .ofi {
  padding-top: 6.9%;
}
.article_single04 .article_single04_01_img6 .ofi {
  padding-top: 5.8%;
}
.article_single04 .article_single04_01_nav {
  margin-top: 15px;
}
.article_single04 .article_single04_01_nav .ofi {
  padding-top: 11.1%;
}
.article_single04 .article_single04_01_nav .slick-track {
  width: 100% !important;
  transform: none !important;
  left: 0 !important;
}
.article_single04 .article_single04_01_nav li {
  margin-left: 0.8%;
  width: 16% !important;
}
.article_single04 .article_single04_01_nav li:nth-child(1) {
  margin-left: 0;
}
.article_single04.article_container .article_single04_01_img1 .ofi {
  padding-top: 74.5%;
}
.article_single04.article_container .article_single04_01_img2 .ofi {
  padding-top: 18.7%;
}
.article_single04.article_container .article_single04_01_img3 .ofi {
  padding-top: 14.9%;
}
.article_single04.article_container .article_single04_01_img4 .ofi {
  padding-top: 12.5%;
}
.article_single04.article_container .article_single04_01_img5 .ofi {
  padding-top: 10.7%;
}
.article_single04.article_container .article_single04_01_img6 .ofi {
  padding-top: 9.4%;
}
.article_single04.article_container .article_single04_01_nav {
  margin-top: 15px;
}
.article_single04.article_container .article_single04_01_nav .ofi {
  padding-top: 12%;
}
.article_single04.article_container .article_single04_01_nav .slick-track {
  width: 100% !important;
  transform: none !important;
  left: 0 !important;
}
.article_single04.article_container .article_single04_01_nav li {
  margin-left: 0.8%;
  width: 16% !important;
}
.article_single04.article_container .article_single04_01_nav li:nth-child(1) {
  margin-left: 0;
}
.article_single04 .article_single04_02 {
  margin-top: 10px;
}
.article_single04 .article_single04_02 img {
  opacity: 1;
  transition: opacity 0.3s;
}
.article_single04 .article_single04_02 img:hover {
  cursor: pointer;
  opacity: 0.7;
}
.article_single04 .slick-next,
.article_single04 .slick-prev {
  z-index: 1;
}
.article_single04 .slick-next:before,
.article_single04 .slick-prev:before {
  content: none;
}
.article_single04 .slick-next:after,
.article_single04 .slick-prev:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  margin: auto;
  width: 35px;
  height: 35px;
  border-top: 3px solid #172e10;
  transition: 0.2s;
  z-index: 1;
}
.article_single04 .slick-prev {
  left: 0;
}
.article_single04 .slick-prev:after {
  left: 0;
  border-left: 3px solid #172e10;
  transform: translate(0, -50%) rotate(-45deg);
  transform-origin: right top;
}
.article_single04 .slick-next {
  right: 0;
}
.article_single04 .slick-next:after {
  right: 0;
  border-right: 3px solid #172e10;
  transform: translate(0, -50%) rotate(45deg);
  transform-origin: left top;
}
.article_single04 .ofi {
  background: rgba(23, 46, 16, 0.1);
  height: auto !important;
}
.article_single04 .more {
  display: block;
  text-align: center;
}
@media (min-width: 768px) {
  .article_list_case02 .article_list_case02_01 {
    width: 67%;
  }
  .article_list_case02 .article_list_case02_02 {
    width: 31%;
  }
  .article_list_case02.article_single01 .article_single01_02 {
    margin-top: 0;
  }
}

.article_container .article_single01_02 {
  margin-top: 10px;
}
.article_container .article_single01_02 img {
  opacity: 1;
  transition: opacity 0.3s;
}
.article_container .article_single01_02 img:hover {
  cursor: pointer;
  opacity: 0.7;
}

.p-articleDetail {
  margin-bottom: 4%;
  font-size: 1.5rem;
}
.p-articleDetail .c-h2 {
  text-align: left;
  margin: 0 0 1em;
  padding: 0 0 0.5em !important;
  font-size: 2.4rem;
  border-bottom: #172e10 solid 2px;
}
@media (max-width: 767px) {
  .p-articleDetail .c-h2 {
    font-size: 1.9rem;
  }
}
.p-articleDetail .c-h2:after {
  content: none;
}
.p-articleDetail .c-h2 a:hover {
  text-decoration: none;
  color: #172e10;
}
.p-articleDetail .span_12 {
  margin: 2% 0;
}
.p-articleDetail .c-postHeader__time:before {
  content: "\f073";
  font-family: "Font Awesome 5 Free";
  margin-right: 0.5em;
}
.p-articleDetail .c-postHeader__categoryBadge {
  background: #172e10;
  color: white;
  font-size: 1.4rem;
  margin-left: 1em;
  display: inline-block;
}
.p-articleDetail .c-postHeader__categoryBadge a {
  display: block;
  padding: 0.2em 1em;
  color: white;
  text-decoration: none;
}

.pager {
  overflow: hidden;
  margin-bottom: 5%;
}
.pager .pager_prev {
  float: left;
}
.pager .pager_prev a {
  display: block;
  position: relative;
  padding-left: 20px;
  text-decoration: none;
}
.pager .pager_prev a:after {
  content: "";
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 2px #172e10;
  border-left: solid 2px #172e10;
  transform: rotate(-45deg);
  position: absolute;
  top: 50%;
  left: 4px;
  margin-top: -6px;
}
.pager .pager_prev a:hover {
  opacity: 0.8;
}
.pager .pager_next {
  float: right;
}
.pager .pager_next a {
  display: block;
  position: relative;
  padding-right: 20px;
  text-decoration: none;
}
.pager .pager_next a:after {
  content: "";
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 2px #172e10;
  border-right: solid 2px #172e10;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 4px;
  margin-top: -6px;
}
.pager .pager_next a:hover {
  opacity: 0.8;
}

.u-ofi {
  display: block;
  position: relative;
  overflow: hidden;
  padding-top: 75%;
}
.u-ofi.cover img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.u-ofi > img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}

.u-text-center {
  text-align: center;
}

.u-text-left {
  text-align: left;
}

.u-text-right {
  text-align: right;
}

.u-lead {
  color: #172e10;
  font-size: 2rem;
}

.u-text-xxlarge {
  font-size: 2.4rem;
}

.u-text-xlarge {
  font-size: 2rem;
}

.u-text-large {
  font-size: 1.6rem;
}

.u-text-small {
  font-size: 1.2rem;
}

.u-text-xsmall {
  font-size: 1rem;
}

.u-text-white {
  color: #fff !important;
}

.u-text-black {
  color: #000 !important;
}

.u-text-red {
  color: #f00 !important;
}

.u-text-primary {
  color: #172e10 !important;
}

@media (max-width: 767px) {
  .u-sp-hide, .u-pc-only, .u-tablet-only {
    display: none !important;
  }

  .u-sp-text-center {
    text-align: center;
  }

  .u-sp-text-left {
    text-align: left;
  }

  .u-sp-text-right {
    text-align: right;
  }
}
@media (min-width: 768px) {
  .u-lead {
    font-size: 2.8rem;
  }

  .u-text-xxlarge {
    font-size: 3.6rem;
  }

  .u-text-xlarge {
    font-size: 2.8rem;
  }

  .u-text-large {
    font-size: 2rem;
  }

  .u-text-small {
    font-size: 1.2rem;
  }

  .u-text-xsmall {
    font-size: 1rem;
  }

  .u-pc-hide, .u-sp-only {
    display: none !important;
  }

  .u-pc-text-center {
    text-align: center;
  }

  .u-pc-text-left {
    text-align: left;
  }

  .u-pc-text-right {
    text-align: right;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .u-tablet-hide {
    display: none !important;
  }
}
@media (min-width: 1024px) {
  .u-tablet-only {
    display: none !important;
  }
}
@media (max-width: 999px) {
  .u-sp-hide02, .u-pc-only02, .u-tablet-only02 {
    display: none !important;
  }
}
@media (min-width: 1000px) {
  .u-pc-hide02, .u-sp-only02 {
    display: none !important;
  }
}
.u-arial {
  font-family: "Arial", arial !important;
}

.u-arial_n {
  font-family: "Arial Narrow", arial !important;
}

.js-tel a {
  color: currentColor;
  text-decoration: none;
}
@media (min-width: 768px) {
  .js-tel a {
    pointer-events: none;
  }
}

.u-fs12 {
  font-size: 12px;
}

@media (max-width: 767px) {
  .u-sp-fs12 {
    font-size: 12px !important;
  }
}
.u-fs13 {
  font-size: 13px;
}

@media (max-width: 767px) {
  .u-sp-fs13 {
    font-size: 13px !important;
  }
}
.u-fs14 {
  font-size: 14px;
}

@media (max-width: 767px) {
  .u-sp-fs14 {
    font-size: 14px !important;
  }
}
.u-fs15 {
  font-size: 15px;
}

@media (max-width: 767px) {
  .u-sp-fs15 {
    font-size: 15px !important;
  }
}
.u-fs16 {
  font-size: 16px;
}

@media (max-width: 767px) {
  .u-sp-fs16 {
    font-size: 16px !important;
  }
}
.u-fs17 {
  font-size: 17px;
}

@media (max-width: 767px) {
  .u-sp-fs17 {
    font-size: 17px !important;
  }
}
.u-fs18 {
  font-size: 18px;
}

@media (max-width: 767px) {
  .u-sp-fs18 {
    font-size: 18px !important;
  }
}
.u-fs19 {
  font-size: 19px;
}

@media (max-width: 767px) {
  .u-sp-fs19 {
    font-size: 19px !important;
  }
}
.u-fs20 {
  font-size: 20px;
}

@media (max-width: 767px) {
  .u-sp-fs20 {
    font-size: 20px !important;
  }
}
.u-fs21 {
  font-size: 21px;
}

@media (max-width: 767px) {
  .u-sp-fs21 {
    font-size: 21px !important;
  }
}
.u-fs22 {
  font-size: 22px;
}

@media (max-width: 767px) {
  .u-sp-fs22 {
    font-size: 22px !important;
  }
}
.u-fs23 {
  font-size: 23px;
}

@media (max-width: 767px) {
  .u-sp-fs23 {
    font-size: 23px !important;
  }
}
.u-fs24 {
  font-size: 24px;
}

@media (max-width: 767px) {
  .u-sp-fs24 {
    font-size: 24px !important;
  }
}
.u-fs25 {
  font-size: 25px;
}

@media (max-width: 767px) {
  .u-sp-fs25 {
    font-size: 25px !important;
  }
}
.u-fs26 {
  font-size: 26px;
}

@media (max-width: 767px) {
  .u-sp-fs26 {
    font-size: 26px !important;
  }
}
.u-fs27 {
  font-size: 27px;
}

@media (max-width: 767px) {
  .u-sp-fs27 {
    font-size: 27px !important;
  }
}
.u-fs28 {
  font-size: 28px;
}

@media (max-width: 767px) {
  .u-sp-fs28 {
    font-size: 28px !important;
  }
}
.u-fs29 {
  font-size: 29px;
}

@media (max-width: 767px) {
  .u-sp-fs29 {
    font-size: 29px !important;
  }
}
.u-fs30 {
  font-size: 30px;
}

@media (max-width: 767px) {
  .u-sp-fs30 {
    font-size: 30px !important;
  }
}
.u-fs31 {
  font-size: 31px;
}

@media (max-width: 767px) {
  .u-sp-fs31 {
    font-size: 31px !important;
  }
}
.u-fs32 {
  font-size: 32px;
}

@media (max-width: 767px) {
  .u-sp-fs32 {
    font-size: 32px !important;
  }
}
.u-fs33 {
  font-size: 33px;
}

@media (max-width: 767px) {
  .u-sp-fs33 {
    font-size: 33px !important;
  }
}
.u-fs34 {
  font-size: 34px;
}

@media (max-width: 767px) {
  .u-sp-fs34 {
    font-size: 34px !important;
  }
}
.u-fs35 {
  font-size: 35px;
}

@media (max-width: 767px) {
  .u-sp-fs35 {
    font-size: 35px !important;
  }
}
.u-fs36 {
  font-size: 36px;
}

@media (max-width: 767px) {
  .u-sp-fs36 {
    font-size: 36px !important;
  }
}
.u-fs37 {
  font-size: 37px;
}

@media (max-width: 767px) {
  .u-sp-fs37 {
    font-size: 37px !important;
  }
}
.u-fs38 {
  font-size: 38px;
}

@media (max-width: 767px) {
  .u-sp-fs38 {
    font-size: 38px !important;
  }
}
.u-fs39 {
  font-size: 39px;
}

@media (max-width: 767px) {
  .u-sp-fs39 {
    font-size: 39px !important;
  }
}
.u-fs40 {
  font-size: 40px;
}

@media (max-width: 767px) {
  .u-sp-fs40 {
    font-size: 40px !important;
  }
}
.u-mt0 {
  margin-top: 0 !important;
}

.u-mb0 {
  margin-bottom: 0 !important;
}

.u-m-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.u-mt-1 {
  margin-top: 1em;
}

.u-mt-2 {
  margin-top: 2em;
}

.u-mt-3 {
  margin-top: 3em;
}

.u-mt-4 {
  margin-top: 4em;
}

.u-mt-5 {
  margin-top: 5em;
}

.u-mb-1 {
  margin-bottom: 1em;
}

.u-mb-2 {
  margin-bottom: 2em;
}

.u-mb-3 {
  margin-bottom: 3em;
}

.u-mb-4 {
  margin-bottom: 4em;
}

.u-mb-5 {
  margin-bottom: 5em;
}

.inverse .c-h2,
.inverse .c-h3,
.inverse .c-h4,
.inverse p {
  color: #fff;
}
.inverse .c-h2:after {
  background: #fff;
}
.inverse .c-h2 small,
.inverse .c-h2 span {
  color: #fff;
}

.image_right {
  margin-bottom: 1em;
}
@media (min-width: 768px) {
  .image_right {
    display: inline-block;
    float: right;
    margin-left: 1em;
  }
}

.dsp-home-only {
  display: none;
}

.u-dsp-under-only {
  display: block;
}

.home .u-dsp-home-only {
  display: block;
}
.home .u-dsp-under-only {
  display: none;
}

.u-targetOffset {
  scroll-margin-top: 100px;
}
@media (max-width: 999px) {
  .u-targetOffset {
    scroll-margin-top: 60px;
  }
}

.icon-tel:before {
  content: "\f879";
  font-family: "Font Awesome 5 Free";
  margin-right: 5px;
}

.js-fadeUp {
  visibility: hidden;
}

@media (min-width: 768px) {
  .c-txt_box {
    padding-top: 70px;
    -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
    letter-spacing: 0.2em;
  }
  .c-txt_box p {
    line-height: 3.2;
  }
}

.p-top__history {
  padding: 50px 0;
  background: url("../../../../../wp-content/uploads/bg_img001.jpg") no-repeat center/cover;
}
@media (min-width: 1025px) {
  .p-top__history {
    padding: 150px 0;
  }
}
.p-top__history .c-h2:after {
  display: none;
}
.p-top__history .c-h2 span {
  font-size: inherit;
  position: relative;
  display: table;
  padding: 0 0 10px 0;
}
@media (min-width: 768px) {
  .p-top__history .c-h2 span {
    padding: 0 18px 0 0;
  }
}
.p-top__history .c-h2 span:after {
  content: "";
  display: block;
  position: absolute;
  margin: auto;
  background: #172e10;
}
@media (min-width: 768px) {
  .p-top__history .c-h2 span:after {
    width: 1px;
    height: 97%;
    right: 0;
    top: 0;
    bottom: auto;
  }
}
@media (max-width: 767px) {
  .p-top__history .c-h2 span:after {
    width: 100%;
    height: 1px;
    bottom: 0;
    top: auto;
    left: 0;
    right: 0;
  }
}
@media (min-width: 768px) {
  .p-top__history .box {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    margin: auto;
    min-height: 385px;
  }
  .p-top__history .vertical_type {
    margin: 0;
  }
  .p-top__history .c-txt_box {
    padding-right: 85px;
    height: 380px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .p-top__history .c-txt_box {
    padding-right: 50px;
  }
}
.p-top__introduction, .p-top__introduction02 {
  position: relative;
}
.p-top__introduction .c-button, .p-top__introduction .p-inquiry .form_button, .p-inquiry .p-top__introduction .form_button, .p-top__introduction .p-inquiry .wpcf7-submit, .p-inquiry .p-top__introduction .wpcf7-submit, .p-top__introduction02 .c-button, .p-top__introduction02 .p-inquiry .form_button, .p-inquiry .p-top__introduction02 .form_button, .p-top__introduction02 .p-inquiry .wpcf7-submit, .p-inquiry .p-top__introduction02 .wpcf7-submit {
  color: #fff;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .p-top__introduction .c-h2, .p-top__introduction02 .c-h2 {
    margin-right: 15px;
  }
}
@media (max-width: 767px) {
  .p-top__introduction .c-box, .p-top__introduction02 .c-box {
    background: url("../../../../../wp-content/uploads/bg_img002.jpg") no-repeat center/cover;
    padding: 2em 1em;
    color: #fff;
  }
  .p-top__introduction .c-box .c-h2, .p-top__introduction02 .c-box .c-h2 {
    color: #fff;
  }
  .p-top__introduction .c-box .c-h2:after, .p-top__introduction02 .c-box .c-h2:after {
    background: #fff;
  }
}
@media (min-width: 768px) {
  .p-top__introduction .c-garden, .p-top__introduction02 .c-garden {
    z-index: 1;
    position: relative;
    background: url("../../../../../wp-content/uploads/hover_bnr_img001.jpg") no-repeat center/cover;
    min-height: 695px;
    z-index: 2;
    overflow: hidden;
    transition: all 600ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms;
  }
  .p-top__introduction .c-garden .c-left_bx, .p-top__introduction02 .c-garden .c-left_bx {
    position: absolute;
    width: 50%;
    min-height: 695px;
    left: 0;
    z-index: 500;
    background: url("../../../../../wp-content/uploads/bnr_img001.jpg") no-repeat center/cover;
    opacity: 1;
    transition: translate3d(0px, 0px, 0px) !important;
  }
  .p-top__introduction .c-garden .c-right_bx, .p-top__introduction02 .c-garden .c-right_bx {
    background: url("../../../../../wp-content/uploads/bg_img002.jpg") no-repeat center/cover;
    width: 50%;
    position: absolute;
    right: 0;
    min-height: 695px;
    opacity: 1;
    transition: all 400ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms;
  }
  .p-top__introduction .c-garden .c-right_bx:before, .p-top__introduction02 .c-garden .c-right_bx:before {
    content: "";
    background: rgba(255, 255, 255, 0.5);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    transform: translateX(0);
    transition: all 0.4s;
    opacity: 0;
  }
  .p-top__introduction .c-garden .c-box, .p-top__introduction02 .c-garden .c-box {
    width: 50%;
    position: absolute;
    right: 0;
    min-height: 695px;
    display: flex;
  }
  .p-top__introduction .c-garden .btn, .p-top__introduction02 .c-garden .btn {
    position: absolute;
    right: 65%;
    top: 20%;
  }
  .p-top__introduction .c-garden:hover, .p-top__introduction02 .c-garden:hover {
    overflow: hidden;
  }
  .p-top__introduction .c-garden:hover .c-left_bx, .p-top__introduction02 .c-garden:hover .c-left_bx {
    opacity: 0;
  }
  .p-top__introduction .c-garden:hover .c-right_bx, .p-top__introduction02 .c-garden:hover .c-right_bx {
    transition: all 400ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms;
    opacity: 0;
  }
  .p-top__introduction .c-garden:hover .c-right_bx:before, .p-top__introduction02 .c-garden:hover .c-right_bx:before {
    transform: translateX(100%);
    opacity: 1;
  }
  .p-top__introduction .c-btn, .p-top__introduction02 .c-btn {
    margin: 0;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .p-top__introduction .c-h2.vertical_type, .p-top__introduction02 .c-h2.vertical_type {
    position: absolute;
    right: 0;
    color: #fff;
  }
  .p-top__introduction .c-h2.vertical_type:after, .p-top__introduction02 .c-h2.vertical_type:after {
    background: #fff;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .p-top__introduction .c-child_box, .p-top__introduction02 .c-child_box {
    color: #fff;
    display: table;
    margin: auto auto auto 15%;
    position: relative;
    padding: 0 100px;
    width: 365px;
  }
}
@media (min-width: 768px) and (min-width: 768px) and (max-width: 1200px) {
  .p-top__introduction .c-child_box, .p-top__introduction02 .c-child_box {
    margin: auto auto auto 7%;
    padding: 0 50px;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .p-top__introduction .c-child_box .c-txt_box, .p-top__introduction02 .c-child_box .c-txt_box {
    line-height: 2.6;
    padding-bottom: 50px;
    height: 520px;
  }
}
@media (min-width: 768px) and (min-width: 768px) and (max-width: 1540px) {
  .p-top__introduction .c-child_box .c-txt_box, .p-top__introduction02 .c-child_box .c-txt_box {
    height: 580px;
  }
}
.p-top__saijiki {
  background: url("../../../../../wp-content/uploads/bg_img003.jpg") no-repeat center/cover;
  padding: 150px 0;
}
@media (max-width: 767px) {
  .p-top__saijiki {
    padding: 60px 0;
  }
}
@media (min-width: 1025px) {
  .p-top__saijiki {
    padding: 200px 0;
  }
}
.p-top__saijiki .vertical_type {
  padding: 0;
  color: #fff;
  margin: auto;
}
@media (min-width: 768px) {
  .p-top__saijiki .vertical_type {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.p-top__saijiki .vertical_type:after {
  display: none;
}
.p-top__saijiki_contents {
  background: url("../../../../../wp-content/uploads/bg_img004.jpg") no-repeat center/cover;
  padding: 35px 0 60px;
}
@media (min-width: 1025px) {
  .p-top__saijiki_contents {
    padding: 35px 0 140px;
  }
}
@media (min-width: 768px) {
  .p-top__saijiki_contents .col {
    display: flex;
    justify-content: center;
  }
}
@media (min-width: 768px) {
  .p-top__saijiki_contents .c-txt_box {
    margin: auto;
    line-height: 3.2;
    padding: 0;
  }
  .p-top__saijiki_contents .c-txt_box p:not(.c-btn) {
    margin: 0;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .p-top__saijiki_contents .c-txt_box p:not(.c-btn) {
    line-height: 2;
  }
}
@media (max-width: 767px) {
  .p-top__saijiki_contents .c-btn {
    margin-top: 2em;
  }
}
@media (min-width: 768px) {
  .p-top__saijiki_contents .c-btn {
    text-align: right;
    margin: auto 25px 0 auto;
  }
}
@media (min-width: 1025px) {
  .p-top__saijiki_contents .c-btn {
    margin: auto 45px 0 auto;
  }
}
.p-top__saijiki_contents .vertical_type {
  border-color: #000000;
  color: #000000;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .p-top__introduction02 .c-h2 {
    margin-right: 0;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .p-top__introduction02 .c-btn {
    margin-left: 15px;
  }
}
@media (max-width: 767px) {
  .p-top__introduction02 .c-box {
    background: url("../../../../../wp-content/uploads/bg_img002.jpg") no-repeat center/cover;
    padding: 2em 1em;
    color: #fff;
  }
  .p-top__introduction02 .c-box .c-h2 {
    color: #fff;
  }
  .p-top__introduction02 .c-box .c-h2:after {
    background: #fff;
  }
}
@media (min-width: 768px) {
  .p-top__introduction02 .c-garden {
    background: url("../../../../../wp-content/uploads/hover_bnr_img002.jpg") no-repeat center/cover;
  }
  .p-top__introduction02 .c-garden .c-left_bx {
    left: 0;
    background: url("../../../../../wp-content/uploads/bg_img002.jpg") no-repeat center/cover;
    z-index: 0;
  }
  .p-top__introduction02 .c-garden .c-right_bx {
    background: url("../../../../../wp-content/uploads/bnr_img002.jpg") no-repeat center/cover;
    right: 0;
    z-index: 1;
  }
  .p-top__introduction02 .c-garden .c-box {
    left: 0;
    z-index: 10;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .p-top__introduction02 .c-child_box {
    margin: auto 15% auto auto;
    height: 408px;
  }
}
@media (min-width: 768px) and (min-width: 768px) and (max-width: 1024px) {
  .p-top__introduction02 .c-child_box {
    margin: auto 7% auto auto;
  }
}
.p-top__news {
  padding: 50px 0;
  background: url("../../../../../wp-content/uploads/bg_img005.jpg") no-repeat center/cover;
}
@media (min-width: 1025px) {
  .p-top__news {
    padding: 148px 0;
  }
}
.p-top__news .c-h2 {
  color: #fff;
  margin-bottom: 25px;
}
@media (min-width: 1025px) {
  .p-top__news .c-h2 {
    letter-spacing: 0.2em;
  }
}
.p-top__news .c-button, .p-top__news .p-inquiry .form_button, .p-inquiry .p-top__news .form_button, .p-top__news .p-inquiry .wpcf7-submit, .p-inquiry .p-top__news .wpcf7-submit {
  background: transparent;
  display: table;
  margin: auto;
  border-color: #778372;
  border-left: 0;
  border-right: 0;
  width: 140px;
  padding: 1em 0;
  color: #fff;
}
@media (min-width: 1025px) {
  .p-top__news .c-button, .p-top__news .p-inquiry .form_button, .p-inquiry .p-top__news .form_button, .p-top__news .p-inquiry .wpcf7-submit, .p-inquiry .p-top__news .wpcf7-submit {
    letter-spacing: 0.2em;
  }
}
@media (min-width: 768px) {
  .p-top__news .p-news > div {
    align-items: center;
  }
}
@media (max-width: 767px) {
  .p-top__news .p-news .c-heading h2 {
    margin-top: 15px;
  }
}
.p-top__news .c-content dl dt, .p-top__news .c-content dl dd {
  color: #fff;
}
.p-top__news .c-content dl dd a {
  color: #fff;
}
@media (min-width: 1025px) {
  .p-top__news .c-content dl {
    display: flex;
    flex-wrap: wrap;
  }
  .p-top__news .c-content dl dt, .p-top__news .c-content dl dd {
    border-bottom: solid 1px #778372;
    padding: 21px 0;
  }
  .p-top__news .c-content dl dt {
    width: 130px;
    text-align: center;
  }
  .p-top__news .c-content dl dd {
    width: calc(100% - 130px);
  }
}
.p-top__address {
  padding: 50px 0;
  background: url("../../../../../wp-content/uploads/bg_img006.jpg") no-repeat center/cover;
}
@media (min-width: 1025px) {
  .p-top__address {
    padding: 150px 0 85px;
  }
}
@media (min-width: 768px) {
  .p-top__address .vertical_type {
    margin: auto auto 35px 0;
    padding: 0 0 0 10px;
  }
  .p-top__address .vertical_type:after {
    right: auto;
    left: 0;
  }
}
.p-top__address figure {
  margin-bottom: 1em;
}
@media (min-width: 768px) {
  .p-top__address figure {
    text-align: left;
    margin-bottom: 30px;
  }
}
.p-top__address .table_address {
  width: 100%;
  margin-bottom: 1em;
}
@media (max-width: 767px) {
  .p-top__address .table_address {
    margin: auto;
    width: 0 auto 2em;
  }
}
@media (min-width: 1025px) {
  .p-top__address .table_address {
    letter-spacing: 0.2em;
    margin-bottom: 25px;
  }
}
.p-top__address .table_address tbody th {
  width: 100px;
  padding-left: 20px;
  text-align: left;
  position: relative;
}
@media (min-width: 1025px) {
  .p-top__address .table_address tbody th {
    width: 110px;
  }
}
.p-top__address .table_address tbody th:before {
  content: "";
  width: 7px;
  height: 7px;
  background: #27411e;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 5px;
  left: 0;
  margin: auto;
}
@media (min-width: 1025px) {
  .p-top__address .gutters > .row > .img_box {
    width: 62.5%;
  }
  .p-top__address .gutters > .row > .txt_box {
    width: 35.5%;
  }
}

.p-top__map .c-mapContainer {
  padding-top: 100%;
}

@media (min-width: 768px) {
  .p-top__map .c-mapContainer {
    padding-top: 430px;
  }
}
body.history .c-h1 {
  background: url("../../../../../wp-content/uploads/history_h1.jpg") no-repeat center/cover;
}
body.tea-room .c-h1 {
  background: url("../../../../../wp-content/uploads/tea-room_h1.jpg") no-repeat center/cover;
}
body.event .c-h1 {
  background: url("../../../../../wp-content/uploads/event_h1.jpg") no-repeat center/cover;
}

@media (min-width: 768px) {
  .btn-position-left-bottom {
    text-align: right;
  }
  .btn-position-left-bottom a {
    margin-right: 30px;
  }
}

.c-under_text_box {
  margin: auto;
}
@media (min-width: 768px) {
  .c-under_text_box {
    -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
    line-height: 2.6;
    position: relative;
  }
}
@media (min-width: 768px) {
  .c-under_text_box p {
    margin-bottom: 0;
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
}
@media (min-width: 1025px) {
  .c-under_text_box p {
    letter-spacing: 0.2em;
    line-height: 2.6;
  }
}
@media (min-width: 768px) {
  .c-under_text_box .vertical_type {
    margin: 0 auto;
  }
}

.p-history .under_type2 {
  background: url("../../../../../wp-content/uploads/history_h2_02.jpg") no-repeat center/cover;
}

.p-tea-room_contents {
  padding: 50px 0;
}
@media (min-width: 1025px) {
  .p-tea-room_contents {
    padding: 120px 0;
  }
}
.p-tea-room_contents.typeA {
  background: url("../../../../../wp-content/uploads/tea-room_bg_img001.jpg") no-repeat center/cover;
}
.p-tea-room_contents.typeB {
  background: url("../../../../../wp-content/uploads/tea-room_bg_img002.jpg") no-repeat center/cover;
}
.p-tea-room_contents.typeC {
  background: url("../../../../../wp-content/uploads/tea-room_bg_img003.jpg") no-repeat center/cover;
}
.p-tea-room_contents.typeD {
  background: url("../../../../../wp-content/uploads/tea-room_bg_img004.jpg") no-repeat center/cover;
}
.p-tea-room_contents.typeE {
  background: url("../../../../../wp-content/uploads/tea-room_bg_img005.jpg") no-repeat center/cover;
}
.p-tea-room_contents.typeF {
  background: url("../../../../../wp-content/uploads/event_bg_img001.jpg") no-repeat center/cover;
}
.p-tea-room_contents.typeG {
  background: url("../../../../../wp-content/uploads/tea-room_bg_img007.jpg") no-repeat center/cover;
}
.p-tea-room_contents.typeH {
  background: url("../../../../../wp-content/uploads/tea-room_bg_img008.jpg") no-repeat center/cover;
}
.p-tea-room_contents.typeI {
  background: url("../../../../../wp-content/uploads/tea-room_bg_img009.jpg") no-repeat center/cover;
}

.p-tea-room_contents.typeJ {
  background: url("../../../../../wp-content/uploads/tea-room_bg_img006.jpg") no-repeat center/cover;
}

.p-tea-room_slider_contents .under_type {
  background: url("../../../../../wp-content/uploads/tea-room_h2.jpg") no-repeat center/cover;
}
.p-tea-room_slider_contents .under_type .ttl {
  position: relative;
  z-index: 1;
}

.under_slider {
  margin-top: -200px;
}
@media (max-width: 767px) {
  .under_slider {
    margin-top: -100px;
  }
}
@media (min-width: 1025px) {
  .under_slider {
    margin-top: -250px;
  }
}
.under_slider ul {
  padding: 0;
  list-style: none;
}
.under_slider .slick-prev,
.under_slider .slick-next {
  width: 28px;
  height: 28px;
}
.under_slider .slick-prev:before,
.under_slider .slick-next:before {
  font-family: inherit;
  content: "";
  width: 28px;
  height: 28px;
  display: block;
}
.under_slider .slick-next {
  right: 10px;
  bottom: 10px;
  top: auto;
}
.under_slider .slick-next:before {
  background: url("../../../../../wp-content/uploads/slider_arrow_right.jpg") no-repeat center/cover;
}
.under_slider .slick-prev {
  left: auto;
  right: 40px;
  bottom: 10px;
  top: auto;
  z-index: 1;
}
.under_slider .slick-prev:before {
  background: url("../../../../../wp-content/uploads/slider_arrow_left.jpg") no-repeat center/cover;
}

.alcove .p-bread nav ul li:nth-child(2) {
  display: none;
}
.alcove .slick-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.alcove .slick-slider .slick-track {
  display: flex;
}
.alcove .slick-slider .slick-track .slick-slide {
  height: auto;
}

/* お問い合わせフォーム */
.inquiry .form_wrap {
  margin: 0;
  padding: 4%;
  border: rgb(23 150 40 / .1) solid 5px;
  border-radius: 10px;
}

.inquiry .form_wrap .p-country-name {
  display: none;
}

.inquiry .table-default {
  border: none;
}

.inquiry .table-default tr:not(:last-of-type) {
  border-bottom: 1px solid #cccccc;
}

.inquiry .table-default th {
  background: none;
  border: none;
  text-align: left;
  padding: 1.4em 50px 1.2em .5em;
  vertical-align: top;
  font-weight: bold;
  position: relative;
}

@media (max-width: 767px) {
  .inquiry .table-default th {
    padding: 1em 0 0;
    display: block;
  }
}

.inquiry .table-default th .required {
  display: inline-block;
  background: #d43f3a;
  color: white;
  padding: 4px 10px;
  border-radius: 3px;
  font-size: 1.2rem;
  margin-left: .5em;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .inquiry .table-default th .required {
    position: absolute;
    top: 1.6em;
    right: 0;
  }
}

.inquiry .table-default td {
  background: none;
  border: none;
  padding: 1.2em .5em;
}

@media (max-width: 767px) {
  .inquiry .table-default td {
    padding: .5em 0 1em;
    display: block;
  }
}

.inquiry .input_wrap {
  display: block;
  margin: 0;
  padding: 0 .2em;
}

@media (max-width: 767px) {
  .inquiry .input_wrap {
    margin: 0;
  }
}

.inquiry .input_wrap input, .inquiry .input_wrap textarea {
  margin: 0;
}

.inquiry .input_wrap:last-child {
  margin-right: auto;
}

.inquiry .text-2col {
  display: flex;
}

.inquiry .text-2col .input_wrap {
  flex-basis: 50%;
}

.inquiry input[type="text"],
.inquiry input[type="url"],
.inquiry input[type="email"],
.inquiry input[type="tel"],
.inquiry input[type="date"],
.inquiry input[type="number"],
.inquiry select,
.inquiry textarea {
  width: 100%;
  max-width: 100%;
  padding: 7px 2%;
  color: #333;
  font-size: 1.6rem;
  margin: 0 .2em;
  border: 1px solid #cccccc;
  background: #fafafa;
  border-radius: 3px;
  -webkit-appearance: none;
}

@media (max-width: 767px) {
  .inquiry input[type="text"],
  .inquiry input[type="url"],
  .inquiry input[type="email"],
  .inquiry input[type="tel"],
  .inquiry input[type="date"],
  .inquiry input[type="number"],
  .inquiry select,
  .inquiry textarea {
    margin: .2em 0;
  }
}

.inquiry input[type="number"] {
  width: 65px;
  text-align: center;
}

.inquiry input.p-postal-code {
  width: 200px;
}

.inquiry input.p-region {
  width: 100px;
}

.inquiry input.p-locality {
  width: 150px;
}

.inquiry input.p-street-address {
  width: 100%;
}

.inquiry input.p-extended-address {
  width: 100%;
}

.inquiry .mwform-tel-field {
  display: flex;
  justify-content: space-between;
}

.inquiry .submit {
  margin: 1em 0;
  text-align: center;
}

.inquiry .form_button, .inquiry .wpcf7-submit {
  background: #175396;
  color: white;
  border-color: #175396;
}

.inquiry .form_button.form_back, .inquiry .wpcf7-submit.form_back {
  background: #ccc;
  border-color: #ccc;
  color: #666;
}

.inquiry .form_button.form_back:hover, .inquiry .wpcf7-submit.form_back:hover {
  background: #bfbfbf;
  border-color: #bfbfbf;
  color: #666;
}

.inquiry .form_button.form_send, .inquiry .wpcf7-submit.form_send {
  background: #172e10;
  border-color: #172e10;
  color: #fff;
}

.inquiry .form_button.form_send:hover, .inquiry .wpcf7-submit.form_send:hover {
  background: #172e10;
  border-color: #172e10;
  color: #fff;
}

@media (min-width: 768px) {
  .inquiry input[type="text"],
  .inquiry input[type="url"],
  .inquiry input[type="email"],
  .inquiry input[type="tel"],
  .inquiry input[type="date"],
  .inquiry input[type="text"],
  .inquiry select {
    margin: 0 .2em;
  }
  .inquiry input[type="number"] {
    width: 65px;
  }
  .inquiry input.p-postal-code {
    width: 200px;
  }
  .inquiry input.p-region {
    width: 100px;
  }
  .inquiry input.p-locality {
    width: 150px;
  }
  .inquiry input.p-street-address {
    width: 100%;
  }
  .inquiry input.p-extended-address {
    width: 100%;
  }
  .inquiry textarea {
    width: 100%;
  }
  .inquiry .input_wrap {
    display: block;
    margin: 0 .2em;
  }
  .inquiry .input_wrap input, .inquiry .input_wrap textarea {
    margin: 0;
  }
  .inquiry .input_wrap:last-child {
    margin-right: auto;
  }
  .inquiry .submit {
    margin: 60px 0 0;
  }
}

.form_button_wrap {
  display: flex;
  justify-content: center;
  position: relative;
}

@media (max-width: 767px) {
  .form_button_wrap {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }
}

.form_button_wrap button {
  margin: .5em !important;
}

.wpcf7-spinner {
  margin: 1em 24px !important;
}

.privacy_wrap {
  margin-top: 5%;
  border: #ccc solid 1px;
  padding: 1em;
  height: 400px;
  overflow-y: scroll;
}

.button, .inquiry .form_button, #wpcf7cpcnf .wpcf7cp-btns button {
  display: inline-block;
  max-width: 280px;
  width: 100%;
  margin: 0;
  padding: 1em 1em;
  border: #172e10 solid 1px;
  border-radius: 0px;
  line-height: 1;
  background: #172e10;
  color: white;
  text-align: center;
  text-decoration: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: .3s;
  font-size: 1.6rem;
  cursor: pointer;
}

@media (min-width: 768px) {
    rt {
        letter-spacing: 0.5rem;
    }
}
