@charset "UTF-8";
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");
@import url("https://use.fontawesome.com/releases/v6.7.1/css/all.css");
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
:root {
  --navi_event_type: hover;
  --header_break_point: 1000;
  --main_slide_break_point: 768;
  --main_slide_copy_sync: false;
}

/*!
  12 COLUMN : RESPONSIVE GRID SYSTEM
  DEVELOPER : DENIS LEBLANC
  URL : http://responsive.gs
  VERSION : 3.0
  LICENSE : GPL & MIT
*/
*, *:after, *:before {
  box-sizing: border-box;
}

.container {
  max-width: 100%;
  margin: 0 auto;
}

.row {
  padding-bottom: 0;
}

.col {
  display: block;
  width: 100%;
}

@media (min-width: 768px) {
  .span_1 {
    width: 8.33333333333%;
  }
  .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 .span_1 {
    width: 6.5%;
  }
  .gutters .span_2 {
    width: 15%;
  }
  .gutters .span_3 {
    width: 23.5%;
  }
  .gutters .span_4 {
    width: 32%;
  }
  .gutters .span_5 {
    width: 40.5%;
  }
  .gutters .span_6 {
    width: 49%;
  }
  .gutters .span_7 {
    width: 57.5%;
  }
  .gutters .span_8 {
    width: 66%;
  }
  .gutters .span_9 {
    width: 74.5%;
  }
  .gutters .span_10 {
    width: 83%;
  }
  .gutters .span_11 {
    width: 91.5%;
  }
  .gutters .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: 1200px;
    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;
  }
  .col.offset_1 {
    margin-left: 8.33333333333%;
  }
  .col.offset_2 {
    margin-left: 16.6666666667%;
  }
  .col.offset_3 {
    margin-left: 25%;
  }
  .col.offset_4 {
    margin-left: 33.3333333333%;
  }
  .col.offset_5 {
    margin-left: 41.6666666667%;
  }
  .col.offset_6 {
    margin-left: 50%;
  }
  .col.offset_7 {
    margin-left: 58.3333333333%;
  }
  .col.offset_8 {
    margin-left: 66.6666666667%;
  }
  .col.offset_9 {
    margin-left: 75%;
  }
  .col.offset_10 {
    margin-left: 83.3333333333%;
  }
  .col.offset_11 {
    margin-left: 91.6666666667%;
  }
  .col.offset_12 {
    margin-left: 100%;
  }
}

@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;
  }
}

@media (min-width: 768px) and (min-width: 768px) {
  .row.col_5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }
}

.grid_16 .span_1 {
  width: 6.25%;
}

.grid_16 .span_2 {
  width: 12.5%;
}

.grid_16 .span_3 {
  width: 18.75%;
}

.grid_16 .span_4 {
  width: 25%;
}

.grid_16 .span_5 {
  width: 31.25%;
}

.grid_16 .span_6 {
  width: 37.5%;
}

.grid_16 .span_7 {
  width: 43.75%;
}

.grid_16 .span_8 {
  width: 50%;
}

.grid_16 .span_9 {
  width: 56.25%;
}

.grid_16 .span_10 {
  width: 62.5%;
}

.grid_16 .span_11 {
  width: 68.75%;
}

.grid_16 .span_12 {
  width: 75%;
}

.grid_16 .span_13 {
  width: 81.25%;
}

.grid_16 .span_14 {
  width: 87.5%;
}

.grid_16 .span_15 {
  width: 93.75%;
}

.grid_16 .span_16 {
  width: 100%;
}

.grid_16.gutters .span_1 {
  width: 4.375%;
}

.grid_16.gutters .span_2 {
  width: 10.75%;
}

.grid_16.gutters .span_3 {
  width: 17.125%;
}

.grid_16.gutters .span_4 {
  width: 23.5%;
}

.grid_16.gutters .span_5 {
  width: 29.875%;
}

.grid_16.gutters .span_6 {
  width: 36.25%;
}

.grid_16.gutters .span_7 {
  width: 42.625%;
}

.grid_16.gutters .span_8 {
  width: 49%;
}

.grid_16.gutters .span_9 {
  width: 55.375%;
}

.grid_16.gutters .span_10 {
  width: 61.75%;
}

.grid_16.gutters .span_11 {
  width: 68.125%;
}

.grid_16.gutters .span_12 {
  width: 74.5%;
}

.grid_16.gutters .span_13 {
  width: 80.875%;
}

.grid_16.gutters .span_14 {
  width: 87.25%;
}

.grid_16.gutters .span_15 {
  width: 93.625%;
}

.grid_16.gutters .span_16 {
  width: 100%;
}

* {
  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: -apple-system, BlinkMacSystemFont, Arial, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
  color: #111111;
  height: auto !important;
  overflow: hidden;
  letter-spacing: 0.1em;
}

@media (max-width: 767px) {
  body {
    font-size: 1.8rem;
  }
}

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: #6d3c30;
  transition: all .3s;
  overflow-wrap: anywhere;
}

a:hover {
  color: #6d3c30;
  text-decoration: none;
}

.highlight a {
  color: #111111;
}

.highlight a:hover {
  color: #6d3c30;
}

a:not([class]) img, a.swipebox img {
  transition: all .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;
  overflow-wrap: anywhere;
}

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: 16px;
}

ul.list-inline > li {
  display: inline;
  padding-left: 7px;
  padding-right: 7px;
  white-space: nowrap;
  font-size: 1.6rem;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

main .contents_wrapper {
  max-width: 100%;
  padding: 0;
}

main section {
  margin-bottom: 100px;
}

@media (max-width: 767px) {
  main section {
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  main section:last-child {
    margin-bottom: 80px;
  }
}

@media (min-width: 768px) {
  p {
    margin: 0.5em 0 1em;
  }
}

@media (max-width: 900px) {
  .gutters .span_3.column_sub,
  .gutters .span_9.column_main {
    float: none;
    width: 100%;
    margin-left: 0;
  }
}

@media (min-width: 600px) and (max-width: 900px) {
  .gutters .span_3.column_sub .sidebar {
    letter-spacing: -.40em;
  }
  .gutters .span_3.column_sub .sidebar .widget_wrap {
    letter-spacing: normal;
    display: inline-block;
    vertical-align: top;
    width: 49%;
    margin-left: 2%;
  }
  .gutters .span_3.column_sub .sidebar .widget_wrap:nth-child(2n+1) {
    margin-left: 0;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 1200px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .container {
    max-width: 100%;
  }
}

.article_button {
  margin-top: 5%;
}

@media (min-width: 768px) {
  .article_detail:not(.reverse) .col.span_12 + .span_4,
  .article_list:not(.reverse) .col.span_12 + .span_4 {
    margin-left: 0;
  }
}

.sidebar {
  visibility: hidden;
}

.sidebar > .widget_wrap {
  visibility: visible;
}

.sidebar ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 6%;
}

.sidebar ul a {
  color: #111111;
  text-decoration: none;
  display: block;
  padding: .5em;
  border-bottom: rgba(109, 60, 48, 0.1) solid 1px;
}

.sidebar ul a:hover {
  color: #6d3c30;
  background: rgba(109, 60, 48, 0.05);
}

.sidebar ul.children {
  margin: 0;
}

.sidebar ul.children > li > a {
  padding-left: 1.75em;
  position: relative;
}

.sidebar ul.children > li > a:before {
  content: '';
  width: 6px;
  height: 6px;
  background: #111111;
  border-radius: 50%;
  position: absolute;
  left: 1em;
  top: 50%;
  transform: translateY(-50%);
}

.sidebar ul.children > li > ul {
  margin: 0;
}

.sidebar ul.children > li > ul > li a {
  padding-left: 2.75em;
  position: relative;
}

.sidebar ul.children > li > ul > li a:before {
  content: '';
  width: 8px;
  height: 8px;
  background: none;
  border-radius: 0;
  border-left: solid 2px #111111;
  border-bottom: solid 2px #111111;
  position: absolute;
  left: 1.75em;
  top: 50%;
  transform: translateY(-50%);
}

.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: 2;
}

.container {
  padding: 0 10px;
}

@media (min-width: 1210px) {
  .container {
    padding: 0;
  }
}

.highlight {
  background: #f5f5f5;
  color: #111111;
}

.highlight.round {
  border-radius: 10px;
}

section.highlight, p.highlight, .col.highlight {
  padding: 4%;
}

.column_main .col p + *:not(p), .column_main .col table + *:not(p) {
  margin-top: 40px;
}

.globalHeader {
  background: #fff;
  color: #111111;
  font-size: 16px;
}

@media (max-width: 999px) {
  .globalHeader.high {
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.2);
  }
}

@media (max-width: 999px) {
  .globalHeader {
    background: #fff;
    position: fixed;
    z-index: 999;
    width: 100%;
  }
}

.globalHeader .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0;
  height: 153px;
  max-width: 1400px;
  width: 98%;
}

@media (max-width: 999px) {
  .globalHeader .container {
    height: 70px;
    width: 100%;
  }
}

.globalHeader .globalHeader_top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.globalHeader .header_logo {
  width: 521px;
  height: 108px;
  margin: 0;
}

@media (min-width: 1000px) {
  .globalHeader .header_logo {
    max-width: 38%;
  }
}

@media (min-width: 768px) and (max-width: 999px) {
  .globalHeader .header_logo {
    width: 240px;
    height: auto;
  }
}

@media (max-width: 767px) {
  .globalHeader .header_logo {
    width: 200px;
    height: auto;
  }
}

@media (max-width: 999px) {
  .globalHeader .header_logo {
    margin-left: 2%;
  }
}

.globalHeader .header_logo a {
  display: block;
  height: auto;
  line-height: 0;
}

.globalHeader .header_logo a img {
  max-width: 100%;
  height: auto;
}

.global_nav {
  width: auto;
  list-style-position: inside;
margin-bottom: 15px;
}

@media (max-width: 999px) {
  .global_nav {
margin-bottom: 0;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    height: calc(100dvh - 70px);
    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;
  }
}

.global_nav > ul {
  list-style: none;
  padding: 0;
  width: 98%;
  max-width: 1400px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

@media (min-width: 1000px) {
  .global_nav > ul {
    margin: 0 auto;
    border-left: solid 1px #e4e4e4;
    border-right: solid 1px #e4e4e4;
  }
}

@media (max-width: 999px) {
  .global_nav > ul {
    display: block;
    background: rgba(109, 60, 48, 0.9);
    width: 80vw;
    max-width: 400px;
    transform: translateX(100%);
    transition: all 0.3s;
    height: 100%;
    overflow: auto;
  }
}

@media (min-width: 1000px) {
  .global_nav > ul li {
    flex: auto;
  }
}

@media (max-width: 999px) {
  .global_nav > ul li {
    border-bottom: #b3b3b3 solid 1px;
  }
  .global_nav > ul li:first-child {
    border-top: #b3b3b3 solid 1px;
  }
}

.global_nav > ul li a {
  color: #111111;
  text-decoration: none;
  transition: all 0.3s;
  padding: 0.8em 0.3em;
  font-weight: 600;
}

@media (min-width: 1000px) {
  .global_nav > ul li a {
    position: relative;
    width: 100%;
    text-align: center;
    display: block;
  }
  .global_nav > ul li a:before {
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #e4e4e4;
  }
}

@media (max-width: 999px) {
  .global_nav > ul li a {
    display: block;
    padding: 1em;
    color: #fff;
    position: relative;
  }
  .global_nav > 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;
  }
}

.global_nav > ul li a:hover {
  opacity: 0.8;
}

.global_nav > ul li:first-child a:before {
  content: none;
}

@media (max-width: 999px) {
  .global_nav.open {
    opacity: 1;
    visibility: visible;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
  }
}

@media (max-width: 999px) {
  .global_nav.open > ul {
    transform: translateX(0);
  }
}

/**ハンバーガーメニュー**/
#headerToggle {
  display: none;
}

@media (max-width: 999px) {
  #headerToggle {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 0;
    z-index: 99;
    cursor: pointer;
    width: 70px;
    height: 70px;
    transition: all 0.3s;
    background: #6d3c30;
  }
  #headerToggle span {
    position: absolute;
    left: 0;
    right: 0;
    width: 30px;
    height: 3px;
    background-color: #fff;
    transition: all 0.4s;
    margin: 0 auto;
  }
  #headerToggle span:nth-of-type(1) {
    top: 17px;
  }
  #headerToggle span:nth-of-type(2) {
    top: 11px;
    top: 27px;
  }
  #headerToggle span:nth-of-type(3) {
    bottom: 29px;
  }
  #headerToggle:after {
    content: "MENU";
    position: absolute;
    top: auto;
    bottom: 8px;
    left: -100%;
    right: -100%;
    margin: auto;
    width: 100%;
    font-size: 11px !important;
    letter-spacing: -0.02em;
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-family: "Outfit", sans-serif;
  }
  #headerToggle.active span:nth-of-type(1) {
    transform: translateY(10.5px) rotate(-45deg);
  }
  #headerToggle.active span:nth-of-type(2) {
    left: 50%;
    opacity: 0;
  }
  #headerToggle.active span:nth-of-type(3) {
    transform: translateY(-10.5px) rotate(45deg);
  }
  #headerToggle.active:after {
    content: "CLOSE";
    letter-spacing: -0.1em;
  }
}

@media (min-width: 768px) and (max-width: 999px) {
  .hdr_info_wrapper {
    margin-right: 70px;
    border-right: solid 1px #fff;
  }
}

@media (max-width: 767px) {
  .hdr_info_wrapper {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1;
    left: 0;
  }
}

.hdr_info_wrapper .hdr_info {
  display: flex;
  align-items: center;
}

.hdr_info_wrapper .hdr_info_group {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

@media (max-width: 767px) {
  .hdr_info_wrapper .hdr_info_group {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .hdr_info_wrapper .hdr_info_group li {
    width: 50%;
  }
}

.hdr_info_wrapper .hdr_info_group .hdr_tel {
  background: #efece6;
  color: #6d3c30;
  height: 101px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  font-size: 16px;
text-decoration: none;
}

@media (min-width: 768px) and (max-width: 999px) {
  .hdr_info_wrapper .hdr_info_group .hdr_tel {
    font-size: 14px;
    height: 70px;
  }
}

@media (max-width: 767px) {
  .hdr_info_wrapper .hdr_info_group .hdr_tel {
    padding: 0 5px;
    height: 70px;
    font-size: clamp(8px, 3vw, 12px);
  }
}

.hdr_info_wrapper .hdr_info_group .hdr_tel .icon_tel {
  padding-left: calc(35 / 16 * 1em);
  position: relative;
}

.hdr_info_wrapper .hdr_info_group .hdr_tel .icon_tel:before {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  top: 0;
  bottom: 0;
  right: auto;
  left: 0;
  margin: auto;
  max-width: calc(30 / 16 * 1em);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='30px' height='30px'%3E%3Cpath fill-rule='evenodd' fill='rgb(109, 60, 48)' d='M27.872,14.369 C27.402,11.401 26.030,8.552 23.740,6.262 C21.450,3.971 18.602,2.599 15.633,2.128 L15.851,0.747 C19.099,1.260 22.226,2.767 24.730,5.272 C27.234,7.775 28.742,10.902 29.255,14.151 L27.872,14.369 ZM24.908,14.838 L23.525,15.056 C23.199,12.973 22.237,10.977 20.631,9.371 C19.025,7.765 17.028,6.804 14.946,6.476 L15.163,5.092 C17.525,5.464 19.800,6.560 21.622,8.381 C23.442,10.201 24.538,12.476 24.908,14.838 ZM20.554,15.526 L19.172,15.745 C18.981,14.553 18.430,13.412 17.510,12.492 C16.590,11.572 15.448,11.022 14.257,10.830 L14.477,9.448 C15.948,9.683 17.366,10.369 18.499,11.502 C19.634,12.636 20.320,14.055 20.554,15.526 ZM15.389,21.530 L17.123,20.131 C17.489,19.837 18.020,19.865 18.354,20.197 L21.673,23.517 C22.010,23.856 22.034,24.396 21.727,24.762 L18.229,28.927 C17.949,29.260 17.473,29.352 17.089,29.148 C17.089,29.148 15.946,28.586 15.071,28.067 C12.666,26.639 9.825,24.315 7.756,22.247 C5.688,20.178 3.365,17.335 1.936,14.931 C1.416,14.057 0.857,12.913 0.857,12.913 C0.649,12.529 0.742,12.053 1.076,11.772 L5.240,8.274 C5.607,7.967 6.147,7.991 6.485,8.328 L9.805,11.648 C10.138,11.982 10.166,12.512 9.870,12.879 L8.473,14.613 C8.195,14.956 8.201,15.448 8.485,15.786 C8.485,15.786 9.481,17.265 11.109,18.894 C12.738,20.522 14.216,21.516 14.216,21.516 C14.554,21.802 15.046,21.807 15.389,21.530 Z'/%3E%3C/svg%3E");
}

.hdr_info_wrapper .hdr_info_group .hdr_tel strong {
  font-size: calc(27 / 16 * 1em);
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  line-height: 1;
}

.hdr_info_wrapper .hdr_info_group .hdr_web {
  background: #6d3c30;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 101px;
  width: 101px;
  font-size: 18px;
  position: relative;
}

@media (min-width: 768px) and (max-width: 999px) {
  .hdr_info_wrapper .hdr_info_group .hdr_web {
    height: 70px;
    width: 70px;
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .hdr_info_wrapper .hdr_info_group .hdr_web {
    width: 100%;
    height: 70px;
  }
}

@media (min-width: 1000px) {
  .hdr_info_wrapper .hdr_info_group .hdr_web:after {
    content: "";
    display: block;
    position: absolute;
    width: 6px;
    height: 6px;
    top: auto;
    bottom: 6px;
    right: 6px;
    left: auto;
    margin: auto;
    background: #fff;
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 0);
            clip-path: polygon(0 100%, 100% 100%, 100% 0);
  }
}

.hdr_info_wrapper .hdr_info_group .hdr_web:hover {
  opacity: 0.8;
}

.hdr_info_wrapper .hdr_info_group .hdr_web .icon_web {
  padding-top: calc(25 / 18 * 1em);
  position: relative;
}

@media (max-width: 767px) {
  .hdr_info_wrapper .hdr_info_group .hdr_web .icon_web {
    padding-top: 0;
    padding-left: calc(33 / 18 * 1em);
  }
}

.hdr_info_wrapper .hdr_info_group .hdr_web .icon_web:before {
  content: "";
  display: block;
  position: absolute;
  width: 26px;
  height: 19px;
  top: 0;
  bottom: auto;
  right: 0;
  left: 0;
  margin: auto;
  max-width: calc(26 / 18 * 1em);
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='26px' height='19px'%3E%3Cpath fill-rule='evenodd' fill='rgb(255, 255, 255)' d='M22.217,18.428 L3.540,18.428 C1.898,18.428 0.569,17.110 0.569,15.482 L0.569,5.780 L12.878,13.963 L25.188,5.779 L25.188,15.482 C25.188,17.110 23.859,18.428 22.217,18.428 ZM0.569,2.758 L0.569,1.309 C0.569,0.902 0.902,0.572 1.311,0.572 L24.445,0.572 C24.855,0.572 25.188,0.902 25.188,1.309 L25.188,2.758 L12.878,10.941 L0.569,2.758 Z'/%3E%3C/svg%3E");
}

@media (max-width: 767px) {
  .hdr_info_wrapper .hdr_info_group .hdr_web .icon_web:before {
    left: 0;
    top: 0;
    bottom: 0;
    right: auto;
  }
}

.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 {
  color: white;
}

.sp_hdr_info_wrapper .sp_hdr_info_group li.hdr_icon_tel a {
  color: #6d3c30;
}

.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 {
  color: white;
}

.sp_hdr_info_wrapper .sp_hdr_info_group li.hdr_icon_mail a {
  color: #6d3c30;
}

.sp_hdr_info_wrapper .sp_hdr_info_group li.hdr_icon_mail i {
  font-size: 3.2rem;
}

footer {
  position: relative;
  padding: 100px 0 0;
  font-size: 16px;
}

@media (max-width: 767px) {
  footer {
    padding: 40px  0;
  }
}

footer .fNav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

footer .fNav ul li + li {
  border-top: 1px solid rgba(109, 60, 48, 0.3);
}

footer .fNav ul li a {
  display: block;
  padding: 1em 15px;
  text-decoration: none;
}

footer .fNav ul li.menu-item-has-children ul {
  display: block !important;
}

footer .footer_ttl {
  color: #6d3c30;
  font-weight: bold;
  border-bottom: solid 1px;
}

footer .fNav ul {
  width: 100%;
  text-align: left;
  border-bottom: none;
  display: grid;
  gap: 0 3%;
}

footer .fNav ul li {
  border: none !important;
}

footer .fNav ul li a {
  padding: 0.2em 1em 0.2em 1em !important;
  text-decoration: none;
  position: relative;
}

footer .fNav ul li a:before {
  content: "";
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  position: absolute;
  left: 0;
  width: 5px;
  height: 5px;
  border: none;
  background: #6d3c30;
  border-radius: 50%;
  top: 11px;
  bottom: auto;
}

footer .fNav ul li > ul {
  padding-left: 0.2em;
}

footer .fNav ul li > ul a {
  font-size: 90%;
}

footer .fNav ul li > ul a:before {
  width: 5px;
  height: 5px;
  border: none;
  background: #6d3c30;
  border-radius: 50%;
  margin-top: -2px;
}

footer .fNav ul li > ul .sub-menu {
  padding-left: 1em;
}

footer .fNav ul li > ul .sub-menu a:before {
  width: 5px;
  height: 2px;
  border: none;
  background: #6d3c30;
  border-radius: 0;
  transform: rotate(0);
}

@media (min-width: 768px) {
  footer .fNav.fNa01 ul {
    grid-template-rows: repeat(6, auto);
    grid-auto-flow: column;
  }
}

@media (min-width: 768px) {
  footer .fNav.fNa02 ul {
    grid-template-rows: repeat(7, auto);
    grid-auto-flow: column;
  }
}

.copy_right {
  font-size: 1.4rem;
  margin: 0;
  padding: 100px 0  70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3%;
}

@media (max-width: 767px) {
  .copy_right {
    padding: 2em 0 50px 0;
    flex-direction: column;
    gap: 15px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  footer nav ul li.tablet-break:after {
    content: "\A";
    white-space: pre;
  }
  footer nav ul li.tablet-break + li:before {
    display: none;
  }
}

footer {
  background: url(/wp-content/uploads/footer_bg.jpg) no-repeat center/cover;
  color: #111111;
}

footer a {
  color: #111111;
}

footer a:hover {
  color: #111111;
}

@media (min-width: 768px) {
  footer .container .row nav a {
    display: inline-block;
    padding: 0.3em;
  }
}

.main_visual {
  position: relative;
}

@media (max-width: 999px) {
  .main_visual {
    margin-top: 70px;
  }
}

.main_visual .main_visual_splide {
  position: relative;
  z-index: 50;
  width: 100%;
  height: 37.5%!important;
}

.main_visual .main_visual_splide .splide {
  opacity: 0;
  transition: opacity 0.1s;
  margin: auto;
  width: 100%;
  height: 100%;
}

.main_visual .main_visual_splide .splide.is-initialized {
  opacity: 1;
}

.main_visual .main_visual_splide .splide .splide-wrapper,
.main_visual .main_visual_splide .splide .splide__track {
  height: 100%;
}

.main_visual .main_visual_splide .splide .splide__slide {
  height: 100%;
}

.main_visual .main_visual_splide .splide .splide__slide picture,
.main_visual .main_visual_splide .splide .splide__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.main_visual .main_visual_splide.fadeUp {
  visibility: hidden;
}

.main_visual .main_visual_copy_splide {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  z-index: 51;
  pointer-events: none;
}

@media (max-width: 1200px) {
  .main_visual .main_visual_copy_splide {
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
  }
}

.main_visual .main_visual_copy_splide .splide,
.main_visual .main_visual_copy_splide .splide-wrapper,
.main_visual .main_visual_copy_splide .splide__track {
  height: 100%;
}

.main_visual .main_visual_copy_splide .splide__slide {
  width: 100%;
  height: 100%;
}

.main_visual .main_visual_copy_splide .splide__slide img {
  max-width: 972px;
  max-height: 390px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 50.625vw;
  height: auto;
}

@media (max-width: 767px) {
  .main_visual .main_visual_copy_splide .splide__slide img {
    width: 717px;
    height: 507px;
    max-width: 100%;
    height: auto;
  }
}

.main_visual .main_visual_copy_splide .splide__slide.is-single {
  visibility: visible !important;
}

.main_visual .main_visual_copy_splide.fadeUp {
  visibility: hidden;
}

.main_visual .main_visual_copy_splide.fadeUp .splide__slide {
  visibility: hidden;
}

.main_visual .main_visual_copy_splide .splide__slide.anime_box {
  position: absolute;
  visibility: hidden;
}

.main_visual {
  position: relative;
}

@media (max-width: 999px) {
  .main_visual {
    margin-top: 70px;
  }
}

.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;
  opacity: 0;
  transition: 0.1s;
}

.main_visual .main_visual_slick.slick-initialized {
  opacity: 1;
}

.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;
  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: 50.625vw;
  max-width: 972px;
  max-height: 390px;
  z-index: 52;
}

@media (max-width: 767px) {
  .main_visual .main_visual_copy > li img {
    width: 90%;
  }
}

.main_visual .main_visual_slick {
  padding-top: 37.5%!important;
}

@media (max-width: 768px) {
  .main_visual .main_visual_copy > li img {
    width: 90%;
  }
}

@media (max-width: 767px) {
  .main_visual .main_visual_slick {
    padding-top: 97.4026%!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: #6d3c30;
}

.main_visual .main_visual_swiper {
  opacity: 0;
  transition: 0.1s;
}

.main_visual .main_visual_swiper.swiper-container-initialized {
  opacity: 1;
}

.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 .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: #6d3c30;
  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: #6d3c30;
  margin: 0 5px;
  outline-color: transparent;
}

.h1 {
  text-align: center;
  font-size: 3.6rem;
  font-weight: bold;
  padding: 1.2em 5%;
  color: #fff;
  background: url(/wp-content/uploads/under_title.jpg) no-repeat center/cover;
  margin: 0 0 40px;
  letter-spacing: 0.06em;
}

@media (max-width: 767px) {
  .h1 {
    margin-bottom: 10px;
  }
}

@media (max-width: 999px) {
  .h1 {
    margin-top: 70px;
  }
}

.h1 span {
  display: block;
  font-size: 1.6rem;
  padding-top: 0.5em;
  color: white;
  font-style: italic;
}

.h1 a {
  text-decoration: none;
}

.h1 a:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .h1 {
    font-size: 2.6rem;
  }
  .h1 span {
    font-size: 1.4rem;
  }
}

.h2,
.article_list h2 {
  display: block;
  margin: 0 auto 1em;
  position: relative;
  text-align: center;
  border: 0;
  font-weight: bold;
  padding: 2em 0 0;
  font-size: 3rem;
  color: #111111;
  letter-spacing: 0.06em;
}

.h2 a,
.article_list h2 a {
  text-decoration: none;
  color: #111111;
}

.h2 a:hover,
.article_list h2 a:hover {
  text-decoration: underline;
  color: #111111;
}

.h2 span,
.article_list h2 span {
  display: block;
}

.h2:after,
.article_list h2:after {
  content: "";
  display: block;
  position: absolute;
  width: 60px;
  height: 50px;
  top: 0;
  bottom: auto;
  right: 0;
  left: 0;
  margin: auto;
  max-width: 2em;
  background: url(/wp-content/uploads/icon_ttl.png) no-repeat center top/contain;
}

@media (max-width: 767px) {
  .h2,
  .article_list h2 {
    font-size: 2.4rem;
  }
}

.h3 {
  margin: 0 0 1em;
  padding-bottom: 0.5em;
  padding-left: 20px;
  color: #111111;
  font-size: 2.4rem;
  letter-spacing: 0.06em;
  position: relative;
}

.h3 a {
  text-decoration: none;
}

.h3 a:hover {
  text-decoration: underline;
}

.h3:before {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 21px;
  top: 6px;
  bottom: auto;
  right: auto;
  left: 0;
  margin: auto;
  background: #6d3c30;
}

.h3:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  top: auto;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  background: linear-gradient(90deg, #6d3c30 0%, #6d3c30 70px, #e1e1e1 70px, #e1e1e1 100%);
}

@media (max-width: 767px) {
  .h3 {
    font-size: 2.2rem;
  }
  .h3:before {
    top: 5px;
  }
}

.h4 {
  margin: 0 0 1em;
  padding-left: 1em;
  font-size: 2.2rem;
  position: relative;
  color: #111111;
  font-weight: bold;
}

.h4 a {
  text-decoration: none;
}

.h4 a:hover {
  text-decoration: underline;
}

.h4:after {
  content: "";
  position: absolute;
  bottom: auto;
  top: 7px;
  left: 0;
  display: block;
  width: 4px;
  height: 0.9em;
  margin: auto;
  background: linear-gradient(180deg, #6d3c30 0%, #6d3c30 40%, #bfb49d 40%, #bfb49d 100%);
}

@media (max-width: 767px) {
  .h4 {
    font-size: 2rem;
  }
  .h4:after {
    top: 0;
  }
}

.widget_wrap .widget_header {
  font-size: 1.6rem;
  color: #111111;
  padding: 0.5em 0 0.5em 0.5em;
  border-bottom: #6d3c30 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;
  }
}

.bread {
  overflow: hidden;
  font-size: 1.2rem;
  margin: 0 auto 60px;
  width: 100%;
  max-width: 1200px;
}

@media (max-width: 767px) {
  .bread {
    margin: 0 auto 40px;
  }
}

.bread ul {
  padding: 1em 0;
  margin: 0 auto;
  float: none;
}

.bread ul li {
  list-style: none;
  position: relative;
  float: left;
  padding-right: 2em;
  margin-right: 1.5em;
}

.bread ul li a {
  text-decoration: none;
  color: #6d3c30;
}

.bread ul li a:hover {
  color: #6d3c30;
  text-decoration: none;
}

.bread ul li:after {
  content: '>';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.bread ul li:last-child {
  padding-right: 0;
  margin-right: 0;
}

.bread ul li:last-child:after {
  content: none;
}

.anchorlink {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0;
}

.anchorlink li {
  width: 100%;
}

@media (min-width: 768px) {
  .anchorlink li {
    width: calc((100% - 24px) / 3);
  }
}

@media (min-width: 768px) {
  .anchorlink.col2 li {
    width: calc((100% - 12px) / 2);
  }
}

.button, .inquiry .form_button, #wpcf7cpcnf .wpcf7cp-btns button,
.anchorlink a {
  display: inline-block;
  max-width: 265px;
  width: 100%;
  margin: 0;
  padding: 1em 1em;
  border: #6d3c30 solid 1px;
  border-radius: 0px;
  line-height: 1;
  background: #6d3c30;
  color: white;
  text-align: center;
  text-decoration: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: 0.3s;
  font-size: 1.6rem;
  cursor: pointer;
  /*
* ボタン矢印
*/
}

.button:hover, .inquiry .form_button:hover, #wpcf7cpcnf .wpcf7cp-btns button:hover,
.anchorlink a:hover {
  background: #5b3228;
  color: white;
  border-color: #5b3228;
}

.button.arrow, .inquiry .arrow.form_button, #wpcf7cpcnf .wpcf7cp-btns button.arrow,
.anchorlink a.arrow {
  position: relative;
  font-size: 1.6rem;
}

.button.arrow:after, .inquiry .arrow.form_button:after, #wpcf7cpcnf .wpcf7cp-btns button.arrow:after,
.anchorlink a.arrow:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  top: 0;
  right: 5%;
  margin: auto;
  width: 25px;
  height: 4px;
  transition: 0.2s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='24.5px' height='5.5px'%3E%3Cpath fill-rule='evenodd' stroke='rgb(255, 255, 255)' stroke-width='1px' stroke-linecap='butt' stroke-linejoin='miter' fill='rgb(255, 255, 255)' d='M17.009,1.460 L17.009,3.637 L20.912,3.637 L17.009,1.460 Z'/%3E%3Cpath fill-rule='evenodd' stroke='rgb(255, 255, 255)' stroke-width='1px' stroke-linecap='butt' stroke-linejoin='miter' fill='none' d='M0.594,3.637 L20.912,3.637 L18.009,1.460 '/%3E%3C/svg%3E");
}

.button.arrow:hover, .inquiry .arrow.form_button:hover, #wpcf7cpcnf .wpcf7cp-btns button.arrow:hover,
.anchorlink a.arrow:hover {
  border: 1px solid #6d3c30;
}

.button.arrow:hover:after, .inquiry .arrow.form_button:hover:after, #wpcf7cpcnf .wpcf7cp-btns button.arrow:hover:after,
.anchorlink a.arrow:hover:after {
  right: 4%;
}

.button.arrow.external:after, .inquiry .arrow.external.form_button:after, #wpcf7cpcnf .wpcf7cp-btns button.arrow.external:after,
.anchorlink a.arrow.external:after {
  width: 10px;
  height: 10px;
  border: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='10px' height='10px'%3E%3Cpath fill-rule='evenodd' fill='rgb(255, 255, 255)' d='M9.831,8.762 C9.831,9.057 9.726,9.310 9.516,9.521 C9.305,9.731 9.053,9.837 8.757,9.837 L1.242,9.837 C0.947,9.837 0.694,9.731 0.484,9.521 C0.274,9.310 0.169,9.057 0.169,8.762 L0.169,1.242 C0.169,0.946 0.274,0.693 0.484,0.483 C0.694,0.273 0.947,0.167 1.242,0.167 L4.1000,0.167 L4.1000,1.242 L1.242,1.242 L1.242,8.762 L8.757,8.762 L8.757,5.002 L9.831,5.002 L9.831,8.762 ZM9.831,3.927 L8.757,3.927 L8.757,1.994 L3.765,6.989 L3.014,6.238 L7.993,1.242 L6.073,1.242 L6.073,0.167 L9.831,0.167 L9.831,3.927 Z'/%3E%3C/svg%3E");
}

.highlight .button, .highlight .inquiry .form_button, .inquiry .highlight .form_button, .highlight #wpcf7cpcnf .wpcf7cp-btns button, #wpcf7cpcnf .wpcf7cp-btns .highlight button, .highlight
.anchorlink a {
  color: white;
}

.highlight .button:hover, .highlight .inquiry .form_button:hover, .inquiry .highlight .form_button:hover, .highlight #wpcf7cpcnf .wpcf7cp-btns button:hover, #wpcf7cpcnf .wpcf7cp-btns .highlight button:hover, .highlight
.anchorlink a:hover {
  color: white;
}

.button.inverse, .inquiry .inverse.form_button, #wpcf7cpcnf .wpcf7cp-btns button.inverse,
.anchorlink a.inverse {
  background: none;
  border-color: #6d3c30;
  color: #6d3c30;
}

.button.inverse:after, .inquiry .inverse.form_button:after, #wpcf7cpcnf .wpcf7cp-btns button.inverse:after,
.anchorlink a.inverse:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='24.5px' height='5.5px'%3E%3Cpath fill-rule='evenodd' stroke='rgb(109,60,48)' stroke-width='1px' stroke-linecap='butt' stroke-linejoin='miter' fill='rgb(109,60,48)' d='M17.009,1.460 L17.009,3.637 L20.912,3.637 L17.009,1.460 Z'/%3E%3Cpath fill-rule='evenodd' stroke='rgb(109,60,48)' stroke-width='1px' stroke-linecap='butt' stroke-linejoin='miter' fill='none' d='M0.594,3.637 L20.912,3.637 L18.009,1.460 '/%3E%3C/svg%3E");
}

.button.inverse:hover, .inquiry .inverse.form_button:hover, #wpcf7cpcnf .wpcf7cp-btns button.inverse:hover,
.anchorlink a.inverse:hover {
  background: #6d3c30;
  color: #fff;
}

.button.inverse:hover:after, .inquiry .inverse.form_button:hover:after, #wpcf7cpcnf .wpcf7cp-btns button.inverse:hover:after,
.anchorlink a.inverse:hover:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='24.5px' height='5.5px'%3E%3Cpath fill-rule='evenodd' stroke='rgb(255, 255, 255)' stroke-width='1px' stroke-linecap='butt' stroke-linejoin='miter' fill='rgb(255, 255, 255)' d='M17.009,1.460 L17.009,3.637 L20.912,3.637 L17.009,1.460 Z'/%3E%3Cpath fill-rule='evenodd' stroke='rgb(255, 255, 255)' stroke-width='1px' stroke-linecap='butt' stroke-linejoin='miter' fill='none' d='M0.594,3.637 L20.912,3.637 L18.009,1.460 '/%3E%3C/svg%3E");
}

.button.block, .inquiry .block.form_button, #wpcf7cpcnf .wpcf7cp-btns button.block,
.anchorlink a.block {
  display: block;
  min-width: 100%;
}

.button.small, .inquiry .small.form_button, #wpcf7cpcnf .wpcf7cp-btns button.small,
.anchorlink a.small {
  padding: 0.6em 1em;
  max-width: unset;
  width: auto;
}

.button.small.arrow, .inquiry .small.arrow.form_button, #wpcf7cpcnf .wpcf7cp-btns button.small.arrow,
.anchorlink a.small.arrow {
  padding-right: 2.5em;
}

.button.wide, .inquiry .wide.form_button, #wpcf7cpcnf .wpcf7cp-btns button.wide,
.anchorlink a.wide {
  max-width: 360px;
}

.button + .button, .inquiry .form_button + .button, #wpcf7cpcnf .wpcf7cp-btns button + .button, .inquiry .button + .form_button, .inquiry .form_button + .form_button, #wpcf7cpcnf .wpcf7cp-btns .inquiry button + .form_button, .inquiry #wpcf7cpcnf .wpcf7cp-btns button + .form_button, #wpcf7cpcnf .wpcf7cp-btns .button + button, .inquiry #wpcf7cpcnf .wpcf7cp-btns .form_button + button, #wpcf7cpcnf .wpcf7cp-btns .inquiry .form_button + button, #wpcf7cpcnf .wpcf7cp-btns button + button,
.anchorlink a + .button,
.anchorlink .inquiry a + .form_button,
.inquiry .anchorlink a + .form_button,
.anchorlink #wpcf7cpcnf .wpcf7cp-btns a + button,
#wpcf7cpcnf .wpcf7cp-btns .anchorlink a + button {
  margin-left: 0.5em;
}

@media (max-width: 767px) {
  .button + .button, .inquiry .form_button + .button, #wpcf7cpcnf .wpcf7cp-btns button + .button, .inquiry .button + .form_button, .inquiry .form_button + .form_button, #wpcf7cpcnf .wpcf7cp-btns .inquiry button + .form_button, .inquiry #wpcf7cpcnf .wpcf7cp-btns button + .form_button, #wpcf7cpcnf .wpcf7cp-btns .button + button, .inquiry #wpcf7cpcnf .wpcf7cp-btns .form_button + button, #wpcf7cpcnf .wpcf7cp-btns .inquiry .form_button + button, #wpcf7cpcnf .wpcf7cp-btns button + button,
  .anchorlink a + .button,
  .anchorlink .inquiry a + .form_button,
  .inquiry .anchorlink a + .form_button,
  .anchorlink #wpcf7cpcnf .wpcf7cp-btns a + button,
  #wpcf7cpcnf .wpcf7cp-btns .anchorlink a + button {
    margin-left: 0;
    margin-top: 1em;
  }
}

.anchorlink a {
  position: relative;
  font-size: 1.6rem;
  display: block;
  min-width: 100%;
  padding: 1em calc(3% + 25px);
  line-height: 1.4;
}

.anchorlink a:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 49%;
  right: 3%;
  margin: auto;
  width: 25px;
  height: 4px;
  transition: 0.2s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='24.5px' height='5.5px'%3E%3Cpath fill-rule='evenodd' stroke='rgb(255, 255, 255)' stroke-width='1px' stroke-linecap='butt' stroke-linejoin='miter' fill='rgb(255, 255, 255)' d='M17.009,1.460 L17.009,3.637 L20.912,3.637 L17.009,1.460 Z'/%3E%3Cpath fill-rule='evenodd' stroke='rgb(255, 255, 255)' stroke-width='1px' stroke-linecap='butt' stroke-linejoin='miter' fill='none' d='M0.594,3.637 L20.912,3.637 L18.009,1.460 '/%3E%3C/svg%3E");
}

.anchorlink a:hover {
  border: 1px solid #6d3c30;
}

.anchorlink a:hover:after {
  right: 2%;
}

.p-content_Slide {
  width: 100%;
  overflow: hidden;
}

.p-content_Slide .splide__slide {
  text-decoration: none;
  color: currentColor;
}

/* お問い合わせフォーム */
.inquiry .form_wrap {
  margin: 0;
  padding: 4%;
  border: #f5f5f5 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;
  }
}

.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;
  }
}

.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: #111111;
  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: #6d3c30;
  color: white;
  border-color: #6d3c30;
}

.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: #4a2920;
  border-color: #4a2920;
  color: #fff;
}

.inquiry .form_button.form_send:hover, .inquiry .wpcf7-submit.form_send:hover {
  background: #381f19;
  border-color: #381f19;
  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;
}

.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;
}

.wpcf7cp-form-hide {
  display: none !important;
}

#wpcf7cpcnf {
  position: static !important;
  width: 100% !important;
  max-width: 1200px !important;
  margin: auto !important;
  right: 0;
  z-index: 998 !important;
}

#wpcf7cpcnf table {
  width: 94%;
  height: 94%;
  position: relative;
  margin-top: 3%;
  margin-bottom: 3%;
  margin-left: 3%;
  margin-right: 3%;
  table-layout: fixed;
}

@media (max-width: 1219px) {
  #wpcf7cpcnf table {
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
  }
}

#wpcf7cpcnf table:after {
  content: '';
  width: 106%;
  height: 106%;
  padding: 4%;
  border: rgba(23, 83, 150, 0.1) solid 5px;
  border-radius: 10px;
  position: absolute;
  top: -3%;
  bottom: -3%;
  left: -3%;
  right: -3%;
  pointer-events: none;
}

@media (max-width: 767px) {
  #wpcf7cpcnf table:after {
    top: 0;
    height: 100%;
  }
}

#wpcf7cpcnf table tr:not(:last-of-type) {
  border-bottom: 1px solid #cccccc;
}

#wpcf7cpcnf table th {
  width: 30%;
  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) {
  #wpcf7cpcnf table th {
    display: block;
    width: 100%;
    padding: 1em 0.5em 0;
  }
}

#wpcf7cpcnf table td {
  background: none;
  border: none;
  padding: 1.2em .5em;
}

@media (max-width: 767px) {
  #wpcf7cpcnf table td {
    display: block;
    width: 100%;
  }
}

#wpcf7cpcnf .wpcf7cp-btns {
  margin-top: calc(2em + 3%);
  display: flex;
  justify-content: center;
  position: relative;
}

@media (max-width: 767px) {
  #wpcf7cpcnf .wpcf7cp-btns {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }
}

#wpcf7cpcnf .wpcf7cp-btns button.wpcf7cp-cfm-edit-btn {
  background: #bfbfbf;
  border-color: #bfbfbf;
  color: #666;
}

.wpcf7 .screen-reader-response {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  word-wrap: normal !important;
}

.wpcf7 form .wpcf7-response-output {
  margin: 2em 0.5em 1em;
  padding: 0.2em 1em;
  border: 2px solid #00a0d2;
  /* Blue */
}

.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output {
  display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #46b450;
  /* Green */
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
  border-color: #dc3232;
  /* Red */
}

.wpcf7 form.spam .wpcf7-response-output {
  border-color: #f56e28;
  /* Orange */
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #ffb900;
  /* Yellow */
}

.wpcf7-form-control-wrap {
  position: relative;
}

.wpcf7-not-valid-tip {
  color: #dc3232;
  /* Red */
  font-size: 1em;
  font-weight: normal;
  display: block;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
  position: relative;
  top: -2ex;
  left: 1em;
  z-index: 100;
  border: 1px solid #dc3232;
  background: #fff;
  padding: .2em .8em;
  width: 24em;
}

.wpcf7-list-item {
  display: inline-block;
  margin: 0 0 0 1em;
}

.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
  content: " ";
}

.wpcf7-spinner {
  visibility: hidden;
  display: inline-block;
  background-color: #23282d;
  /* Dark Gray 800 */
  opacity: 0.75;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 100%;
  padding: 0;
  margin: 0 24px;
  position: relative;
}

form.submitting .wpcf7-spinner {
  visibility: visible;
}

.wpcf7-spinner::before {
  content: '';
  position: absolute;
  background-color: #fbfbfc;
  /* Light Gray 100 */
  top: 4px;
  left: 4px;
  width: 6px;
  height: 6px;
  border: none;
  border-radius: 100%;
  transform-origin: 8px 8px;
  animation-name: spin;
  animation-duration: 1000ms;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@media (prefers-reduced-motion: reduce) {
  .wpcf7-spinner::before {
    animation-name: blink;
    animation-duration: 2000ms;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes blink {
  from {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.wpcf7 [inert] {
  opacity: 0.5;
}

.wpcf7 input[type="file"] {
  cursor: pointer;
}

.wpcf7 input[type="file"]:disabled {
  cursor: default;
}

.wpcf7 .wpcf7-submit:disabled {
  cursor: not-allowed;
}

.wpcf7 input[type="url"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
  direction: ltr;
}

.wpcf7-reflection > output {
  display: list-item;
  list-style: none;
}

.wpcf7-reflection > output[hidden] {
  display: none;
}

.p-loopSlide {
  width: 100%;
  overflow: hidden;
}

.p-loopSlide .img-cover img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

header .global_nav > ul > li.menu-item-has-children {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

header .global_nav > ul > li.menu-item-has-children > a {
  position: relative;
}

@media (max-width: 999px) {
  header .global_nav > ul > li.menu-item-has-children > a {
    width: calc(100% - 49px);
  }
}

header .global_nav > ul > li.menu-item-has-children > a:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 1em;
bottom: 3px;
  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 .global_nav > ul > li.menu-item-has-children > a:after {
    content: none;
  }
}

header .global_nav > ul > li.menu-item-has-children.menu_under_open > a:after {
  transform: translate(0, 0) rotate(-45deg);
}

header .global_nav > ul > li > .sub-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 1000px) {
  header .global_nav > ul > li > .sub-menu {
    opacity: 0;
    visibility: hidden;
  }
}

@media (max-width: 999px) {
  header .global_nav > ul > li > .sub-menu {
    width: 100%;
    display: none;
  }
}

header .global_nav > ul > li > .sub-menu > li {
  border-bottom: 1px solid #b3b3b3;
}

header .global_nav > ul > li > .sub-menu > li:last-child {
  border-bottom: none;
}

header .global_nav > ul > li > .sub-menu > li > a {
  background: rgba(144, 79, 64, 0.9);
  padding-left: 2em;
  position: relative;
}

header .global_nav > ul > li > .sub-menu > li.menu-item-has-children {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}

header .global_nav > ul > li > .sub-menu > li.menu-item-has-children > a {
  position: relative;
}

@media (max-width: 999px) {
  header .global_nav > ul > li > .sub-menu > li.menu-item-has-children > a {
    width: calc(100% - 49px);
  }
}

@media (min-width: 1000px) {
  header .global_nav > 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 .global_nav > ul > li > .sub-menu > li.menu-item-has-children > a:after {
    content: none;
  }
}

@media (max-width: 999px) {
  header .global_nav > ul > li > .sub-menu > li.menu-item-has-children.menu_under_open > a:after {
    transform: translate(0, 0) rotate(-45deg);
  }
}

header .global_nav > ul > li > .sub-menu > li.menu-item-has-children > .sub-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 1000px) {
  header .global_nav > ul > li > .sub-menu > li.menu-item-has-children > .sub-menu {
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }
}

@media (max-width: 999px) {
  header .global_nav > ul > li > .sub-menu > li.menu-item-has-children > .sub-menu {
    display: none;
  }
}

@media (min-width: 1000px) {
  header .global_nav > 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 .global_nav > ul > li > .sub-menu > li.menu-item-has-children > .sub-menu {
    width: 100%;
    display: none;
  }
}

header .global_nav > 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 .global_nav > ul > li > .sub-menu > li.menu-item-has-children > .sub-menu li:not(:last-child) {
    border-bottom: #b3b3b3 solid 1px;
  }
}

header .global_nav > ul > li > .sub-menu > li.menu-item-has-children > .sub-menu li:last-child {
  border-bottom: none;
}

header .global_nav > ul > li > .sub-menu > li.menu-item-has-children > .sub-menu li a {
  background: rgba(162, 89, 71, 0.9);
}

@media (max-width: 999px) {
  header .global_nav > ul > li > .sub-menu > li.menu-item-has-children > .sub-menu li a {
    padding-left: 2.5em;
  }
}

@media (min-width: 1000px) {
  header .global_nav > ul > li > .sub-menu > li.menu-item-has-children:hover > .sub-menu, header .global_nav > ul > li > .sub-menu > li.menu-item-has-children.menu_under_open > .sub-menu {
    opacity: 1;
    visibility: visible;
  }
}

.child-menu-button {
  position: relative;
  width: 49px;
  min-height: 49px;
  background: #000;
  border: 0;
  outline: 0;
  border-radius: 0;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

@media (min-width: 1000px) {
  .child-menu-button {
    display: none;
  }
}

.child-menu-button:before, .child-menu-button:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  margin: auto;
  background: #fff;
  transition: 0.2s ease;
}

.child-menu-button:before {
  width: 15px;
  height: 1px;
}

.child-menu-button:after {
  width: 1px;
  height: 15px;
}

.child-menu-button.is-open:before {
  opacity: 0;
  transform: rotate(90deg);
}

.child-menu-button.is-open:after {
  transform: rotate(90deg);
}

.child-menu-button.is-open + .sub-menu {
  opacity: 1 !important;
  visibility: visible !important;
  display: none;
}

@media (min-width: 1000px) {
  header .global_nav > ul > li.menu-item-has-children {
    position: relative;
    cursor: pointer;
  }
  header .global_nav > ul > li.menu-item-has-children > a {
    position: relative;
  }
  header .global_nav > ul > li.menu-item-has-children > a:after {
    border-color: #6d3c30;
    width: 6px;
    height: 6px;
    border-width: 1px;
  }
  header .global_nav > ul > li.menu-item-has-children > a:after {
    transform: translate(0, -50%) rotate(135deg);
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
  }
  header .global_nav > ul > li.menu-item-has-children > a.menu_under_open:after {
    transform: translate(0) rotate(-45deg);
  }
  header .global_nav > ul > li.menu-item-has-children > .sub-menu {
    position: absolute;
    margin: auto;
    top: 100%;
    min-width: 200px;
    letter-spacing: -0.4em;
    z-index: 999;
    left: 50%;
    transform: translateX(-50%);
  }
  header .global_nav > 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 .global_nav > ul > li.menu-item-has-children > .sub-menu > li:not(:last-child) {
    border-bottom: white solid 1px;
  }
  header .global_nav > ul > li.menu-item-has-children > .sub-menu > li a {
    display: block;
    background: rgba(109, 60, 48, 0.9);
    padding: 0.5em;
    color: #fff;
  }
  header .global_nav > ul > li.menu-item-has-children > .sub-menu > li a:before {
    content: none;
  }
  header .global_nav > ul > li.menu-item-has-children > .sub-menu > li:first-child a {
    border-radius: 10px 10px 0 0;
  }
  header .global_nav > ul > li.menu-item-has-children > .sub-menu > li:last-child a {
    border-radius: 0 0 10px 10px;
  }
}

@media (min-width: 1000px) and (max-width: 999px) {
  header .global_nav > ul > li.menu-item-has-children {
    opacity: 1;
    visibility: visible;
  }
}

@media (min-width: 1000px) {
  header .global_nav > ul > li.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
  }
  header .global_nav > ul > li.menu-item-has-children:hover > a:after {
    transform: translate(0) rotate(-45deg);
  }
  header .global_nav > ul > li.menu-item-has-children:hover > ul {
    opacity: 1;
    height: auto;
    visibility: visible;
  }
}

.modaal-close:focus:after, .modaal-close:focus:before, .modaal-close:hover:after, .modaal-close:hover:before {
  background: #6d3c30;
}

.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) {
  .news .heading {
    display: flex;
    justify-content: space-between;
  }
  .news .heading h2 {
    text-align: left;
    margin: 0 0 1em;
  }
  .news .heading h2:after {
    right: auto;
  }
}

.news dl {
  margin: 0;
  overflow-y: auto;
  max-height: 300px;
}

.news dl dt {
  margin: 0.5em 0 0;
  padding: 0 1em;
  font-weight: normal;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 5px 10px;
  color: #808080;
}

.news dl dd {
  margin: 0.5em 0;
  padding: 0 1em 0.5em;
  border-bottom: #ccc solid 1px;
  position: relative;
}

.news dl dd a {
  text-decoration: none;
  color: #111111;
}

.news dl dd a:hover {
  text-decoration: underline;
}

.news dl .badge_category_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.news dl .badge_category {
  display: inline-block;
  background: #6d3c30;
  color: white;
  padding: 0.2em 1em;
  font-size: 1.2rem;
}

@media (min-width: 768px) {
  .news > div {
    display: flex;
    width: 100%;
    margin: 0 auto;
  }
  .news > div .heading {
    width: 23.5%;
  }
  .news h2 {
    margin: 0;
    padding: 0;
  }
  .news h2:after {
    display: none;
  }
  .news .content {
    overflow: hidden;
    width: 76.5%;
    padding-left: 2%;
  }
  .news dl {
    overflow-y: auto;
    max-height: 280px;
  }
  .news dl dt {
    margin: 0;
    padding: 1em 1em 0 1em;
  }
  .news dl dd {
    margin: 0;
    padding: 0.5em 1em 1em 1em;
  }
  .news.typeB dl {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 0 0;
  }
  .news.typeB dt {
    max-width: 200px;
    border-bottom: #ccc solid 1px;
  }
  .news.typeB dd {
    margin: 0;
    padding: 1em 0 1em 0;
  }
  .news.typeB dd a {
    display: block;
    width: 100%;
    position: relative;
    padding-right: 20px;
  }
  .news.typeB dd a:after {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 3px);
    right: 10px;
    margin: auto;
    width: 7px;
    height: 7px;
    border-bottom: 2px solid #6d3c30;
    border-right: 2px solid #6d3c30;
    transform: rotate(-45deg);
    transition: 0.2s;
  }
}

.pagetop {
  position: fixed;
  bottom: 20px;
  right: 5%;
  z-index: 98;
}

@media (max-width: 767px) {
  .pagetop {
    bottom: 80px;
  }
}

.pagetop a {
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  display: inline-block;
  position: relative;
  width: 60px;
  height: 60px;
  padding: 0;
  background: url(/wp-content/uploads/pagetop.png) no-repeat center/contain;
}

@media (min-width: 768px) {
  .pagetop a {
    width: 110px;
    height: 110px;
  }
}

footer.high .pagetop {
  position: absolute;
  bottom: auto;
  right: 5%;
  top: 0;
  margin: 0;
  transform: translateY(-50%);
}

.p-qa .row {
  row-gap: 0;
}

.p-qa .col {
  border-bottom: solid 1px #b0b0b0;
}

.p-qa .question {
  font-size: 2rem;
  border: none;
  position: relative;
  margin: 0 0 1em 0;
  padding: 1.5em 50px 0 50px;
  margin-bottom: 1.5em;
  font-weight: 500;
}

@media (max-width: 767px) {
  .p-qa .question {
    font-size: 1.8rem;
  }
}

.p-qa .question:after {
  content: none;
}

.p-qa .question:before {
  content: "Q";
  font-weight: 500;
  color: #fff;
  background: #6d3c30;
  display: block;
  font-size: 26px;
  position: absolute;
  width: 40px;
  height: 40px;
  top: 0.9em;
  left: 0;
  margin: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

@media (max-width: 767px) {
  .p-qa .question:before {
    font-size: 20px;
    width: 36px;
    height: 36px;
    top: 1.15em;
  }
}

.p-qa .question.open:after {
  transform: rotate(180deg);
}

.p-qa .question:not(:first-child) {
  border-top: solid 1px #b0b0b0;
}

.p-qa .answer {
  padding: 0.5em 0 1.5em 50px;
  position: relative;
}

@media (max-width: 767px) {
  .p-qa .answer {
    padding: 0 0 1.5em 50px;
  }
}

.p-qa .answer:before {
  content: "A";
  font-weight: 500;
  font-size: calc(26 / 16 * 1em);
  color: #6d3c30;
  background: #d8c2bd;
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  top: 0;
  left: 0;
  margin: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

@media (max-width: 767px) {
  .p-qa .answer:before {
    font-size: 20px;
    width: 36px;
    height: 36px;
    top: 0;
  }
}

.p-qa.qa_active .question {
  cursor: pointer;
}

.p-qa.qa_active .question:hover {
  opacity: 0.8;
}

.p-qa.qa_active .question:after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 1em;
  left: auto;
  top: 50%;
  bottom: auto;
  margin-top: -5px;
  background: url(../../../../../wp-content/uploads/arrow_down.svg) center center no-repeat;
  background-size: 24px;
  transition: 0.5s;
  border: none;
}

.p-qa.qa_active .answer {
  display: none;
}

.highlight .qa .question {
  background: rgba(107, 166, 152, 0.1);
}

.highlight .qa .question:hover {
  background: rgba(98, 161, 145, 0.1);
}

.highlight .qa .question.open:hover {
  background: rgba(107, 166, 152, 0.1);
}

.nav_search {
  display: none;
}

.nav_search_box {
  display: none;
}

.p-search .article_list {
  padding: 0;
  border-bottom: #f5f5f5 solid 1px !important;
  border-top: none;
}

.p-search .article_list:first-of-type {
  border-top: #f5f5f5 solid 1px;
}

.p-search .article_list .col {
  margin: 0;
}

.p-search .article_list .search_item {
  display: block;
  text-decoration: none;
  color: currentColor;
  padding: 1em;
}

.p-search .article_list .search_item:hover {
  opacity: 0.8;
  background: rgba(245, 245, 245, 0.03);
}

.p-search .article_list .search_item h2 {
  margin: 0 0 0 !important;
  padding-bottom: 0 !important;
  text-align: left;
}

.p-search .article_list .search_item h2:after {
  content: none;
}

.p-search .article_list .search_item h2 ~ p {
  margin-top: .6em;
}

.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: #6d3c30;
}

.shopinfo dl dd {
  margin: 0 0 0.5em 1em;
  padding: 0;
}

.map_container {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 70%;
}

.map_container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.map_container + 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 .map_container {
    padding-top: 50%;
  }
  .map_wide {
    padding-top: 420px;
  }
}

.p-sitemap {
  border-top: rgba(17, 17, 17, 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: .6em 1em .6em 1.5em;
  border-bottom: rgba(17, 17, 17, 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 #111111;
  border-right: solid 2px #111111;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  left: .5em;
  margin: auto;
}

.p-sitemap ul li a:hover {
  background: #f5f5f5;
}

.p-sitemap ul.children {
  margin: 0;
}

.p-sitemap ul.children li a {
  padding-left: 3em;
  font-size: 1.5rem;
}

.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.6rem;
}

.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;
  }
}

@use "sass:math";
@media (max-width: 767px) {
  .sp_image_cols {
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 10px;
         column-gap: 10px;
    row-gap: 10px;
  }
  .sp_image_cols.sp_col2 .col {
    margin: 0;
    width: calc((100% -  10px )  / 2);
  }
  .sp_image_cols.sp_col3 {
    display: flex;
    flex-wrap: wrap;
  }
  .sp_image_cols.sp_col3 .col {
    width: 33.3333333333%;
    padding: 0 1%;
  }
}

.p-step .row:not(:last-child) {
  position: relative;
  margin-bottom: 40px;
}

.p-step .row:not(:last-child):after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  margin: auto;
  background: #6d3c30;
  height: 20px;
  width: 60px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}

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;
}

.table-default {
  width: 100%;
  table-layout: fixed;
}

.table-default thead th,
.table-default thead td {
  background: #92685e;
  text-align: center;
  color: #fff;
}

.table-default td,
.table-default th {
  border: 1px solid #dddddd;
}

.table-default th {
  background: #f5f5f5;
  color: #111111;
}

.table-default td {
  background: transparent;
}

.table-default.table-mini td,
.table-default.table-mini th {
  padding: 0.5em 1em;
}

@media (max-width: 767px) {
  .table-default.table-mini td,
  .table-default.table-mini th {
    padding: 0.5em 0.3em;
  }
}

.table-menu {
  width: 100%;
  table-layout: fixed;
}

.table-menu thead th,
.table-menu thead td {
  background: #92685e;
  text-align: center;
  color: #fff;
}

.table-menu td,
.table-menu th {
  border: 1px solid #dddddd;
}

.table-menu th {
  background: #f5f5f5;
  color: #111111;
}

.table-menu td {
  background: transparent;
}

.table-menu td:last-child {
  text-align: right;
}

.table-menu.table-mini td,
.table-menu.table-mini th {
  padding: 0.5em 1em;
}

@media (max-width: 767px) {
  .table-menu.table-mini td,
  .table-menu.table-mini th {
    padding: 0.5em 0.3em;
  }
}

.table-schedule {
  width: 100%;
}

.table-schedule caption {
  margin-bottom: 0.5em;
  text-align: center;
  font-size: 2rem;
}

.table-schedule td,
.table-schedule th {
  border-bottom: 1px solid #7e7e7e;
  padding: 0.7em 0.5em;
  text-align: center;
}

@media (max-width: 767px) {
  .table-schedule td,
  .table-schedule th {
    padding: 0.7em 0.3em;
  }
}

.table-schedule thead th {
  background: #92685e;
  color: #fff;
}

.table-schedule tbody th {
  background: transparent;
}

.table-schedule td {
  background: transparent;
}

@media (max-width: 767px) {
  .responsive-stack {
    display: block;
  }
  .responsive-stack thead {
    display: none;
  }
  .responsive-stack tbody,
  .responsive-stack td,
  .responsive-stack th,
  .responsive-stack tr {
    display: block;
  }
  .responsive-stack td,
  .responsive-stack th {
    width: 100% !important;
  }
  .responsive-stack tr:not(:last-child) td,
  .responsive-stack tr:not(:last-child) th {
    border-bottom: 0;
  }
  .responsive-stack tr:last-child :not(:last-child) {
    border-bottom: 0;
  }
}

@media (max-width: 767px) {
  .responsive-scroll-container {
    display: block;
    width: 100%;
    min-height: 0.01%;
    overflow-x: scroll;
  }
  .responsive-scroll-container .responsive-scroll-inner {
    width: 798px;
    padding: 0 15px 15px;
  }
  .responsive-scroll-container table {
    width: 768px;
    margin: 0;
  }
}

.js-scrollable .scroll-hint-icon-wrap {
  margin-top: unset !important;
}

@media (max-width: 767px) {
  .js-scrollable table {
    width: 768px;
  }
}

table.table-default.typeA tr td,
table.table-default.typeA tr th {
  border: 0;
}

table.table-default.typeA tr:nth-child(odd) th {
  background: #6d3c30;
}

table.table-default.typeA tr:nth-child(odd) td {
  background: #f5f5f5;
}

table.table-default.typeA tr:nth-child(even) th {
  background: #904f40;
}

table.table-default.typeA tr:nth-child(even) td {
  background: white;
}

table.table-default.typeB {
  border-spacing: 0;
  overflow: hidden;
}

table.table-default.typeB tbody td,
table.table-default.typeB tbody th {
  background: transparent;
  color: #111111;
  border: 0;
  border-bottom: 1px solid rgba(221, 221, 221, 0.1);
}

table.table-default.typeB tbody tr {
  position: relative;
}

table.table-default.typeB tbody th {
  color: #6d3c30;
}

table.table-default.typeC th {
  background: #f5f5f5;
  color: #111111;
}

table.table-default.typeC td,
table.table-default.typeC th {
  border: 0;
}

table.table-default.typeC td:not(:last-child),
table.table-default.typeC th:not(:last-child) {
  border-bottom: 2px #fff solid;
}

table.table-default.typeC tr {
  position: relative;
}

table.table-default.typeC td {
  transform: translateX(2px);
}

.highlight table.table-default.typeC td,
.highlight table.table-default.typeC th {
  border: 0;
}

.highlight table.table-default.typeC td:not(:last-child),
.highlight table.table-default.typeC th:not(:last-child) {
  border-bottom: 2px #f5f5f5 solid;
}

.article_list {
  padding: .5em;
  border-top: rgba(109, 60, 48, 0.2) solid 1px;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .article_list {
    padding: 1em;
  }
}

.article_list .span_12 {
  margin: 2% 0;
}

.article_list:last-of-type {
  border-bottom: rgba(109, 60, 48, 0.2) solid 1px;
  margin-bottom: 100px;
}

@media (max-width: 767px) {
  .article_list:last-of-type {
    margin-bottom: 40px;
  }
}

.article_list .post_header {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
}

.article_list .post_header .time {
  display: inline-block;
  position: relative;
  padding-left: 20px;
}

.article_list .post_header .time:before {
  display: block;
  position: absolute;
  content: '\f044';
  font-family: 'Font Awesome 5 Free';
  line-height: 10px;
  font-size: 16px;
  width: 16px;
  height: 16px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: currentColor;
}

.article_list .post_header .category_badge {
  background: #6d3c30;
  color: white;
  font-size: 1.4rem;
  display: inline-block;
}

.article_list .post_header .category_badge a {
  display: block;
  padding: .2em 1em;
  color: white;
  text-decoration: none;
}

.article_list h2 {
  text-align: left;
  margin: 0 0 .5em !important;
  padding: 0;
  font-size: 2.4rem;
}

@media (max-width: 767px) {
  .article_list h2 {
    font-size: 1.9rem;
  }
}

.article_list h2:after {
  content: none;
}

.article_list h2 a:hover {
  text-decoration: none;
  color: #6d3c30;
}

.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: .5em;
}

.m-pagenation .m-pagenation__prev a {
  display: block;
  text-decoration: none;
  padding: .3em 1em;
  border: #ccc solid 1px;
}

.m-pagenation .m-pagenation__prev a:hover {
  background: rgba(109, 60, 48, 0.1);
  border-color: rgba(109, 60, 48, 0.1);
}

.m-pagenation .m-pagenation__next {
  margin-left: .5em;
}

.m-pagenation .m-pagenation__next a {
  display: block;
  text-decoration: none;
  padding: .3em 1em;
  border: #ccc solid 1px;
}

.m-pagenation .m-pagenation__next a:hover {
  background: rgba(109, 60, 48, 0.1);
  border-color: rgba(109, 60, 48, 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: .3em 1em;
  border: #ccc solid 1px;
}

.m-pagenation .m-pagenation__body li a:hover {
  background: rgba(109, 60, 48, 0.1);
  border-color: rgba(109, 60, 48, 0.1);
}

.m-pagenation .m-pagenation__body li.current {
  background: #6d3c30;
  color: white;
  border: #6d3c30 solid 1px;
  padding: .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: .3em 1em;
  border: #ccc solid 1px;
  color: #6d3c30;
}

.wp-pagenavi a.current, .wp-pagenavi span.current {
  background: #6d3c30;
  color: white;
  border: #6d3c30 solid 1px;
  padding: .3em 1em;
}

.wp-pagenavi a:hover {
  background: rgba(109, 60, 48, 0.1);
  border-color: rgba(109, 60, 48, 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: #f5f5f5;
}

.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: #f5f5f5;
}

.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 #6d3c30;
  border-right: 3px solid #6d3c30;
  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: #f5f5f5;
}

.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: calc(96% / 6) !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: calc(96% / 6) !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 #6d3c30;
  transition: 0.2s;
  z-index: 1;
}

.article_single04 .slick-prev {
  left: 0;
}

.article_single04 .slick-prev:after {
  left: 0;
  border-left: 3px solid #6d3c30;
  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 #6d3c30;
  transform: translate(0, -50%) rotate(45deg);
  transform-origin: left top;
}

.article_single04 .ofi {
  background: #f5f5f5;
  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;
}

.article_detail {
  margin-bottom: 4%;
  font-size: 1.8rem;
}

.article_detail .post_title {
  text-align: left;
  margin: 40px 0 2em;
  padding: 0 0 .5em !important;
  font-size: 2.4rem;
  border-bottom: #6d3c30 solid 2px;
}

@media (max-width: 767px) {
  .article_detail .post_title {
    font-size: 1.9rem;
  }
}

.article_detail .post_title:after {
  content: none;
}

.article_detail .post_title a:hover {
  text-decoration: none;
  color: #6d3c30;
}

.article_detail .span_12 {
  margin: 2% 0;
}

.article_detail .post_header > div {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
}

.article_detail .post_header > div + div {
  margin-top: 10px;
}

.article_detail .post_header .time {
  display: inline-block;
  position: relative;
  padding-left: 20px;
}

.article_detail .post_header .time:before {
  display: block;
  position: absolute;
  content: '\f044';
  font-family: 'Font Awesome 5 Free';
  line-height: 10px;
  font-size: 16px;
  width: 16px;
  height: 16px;
  left: 0;
  top: 50%;
  transform: translateY(-40%);
  color: currentColor;
}

.article_detail .post_header .updated {
  display: inline-block;
  position: relative;
  padding-left: 20px;
}

.article_detail .post_header .updated:before {
  display: block;
  position: absolute;
  content: '\f2f1';
  font-family: 'Font Awesome 5 Free';
  line-height: 10px;
  font-size: 16px;
  width: 16px;
  height: 16px;
  left: 0;
  top: 50%;
  transform: translateY(-40%);
  color: currentColor;
  font-weight: bold;
}

.article_detail .post_header .category_badge {
  background: #6d3c30;
  color: white;
  font-size: 1.4rem;
  display: inline-block;
}

.article_detail .post_header .category_badge a {
  display: block;
  padding: .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 #6d3c30;
  border-left: solid 2px #6d3c30;
  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 #6d3c30;
  border-right: solid 2px #6d3c30;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 4px;
  margin-top: -6px;
}

.pager .pager_next a:hover {
  opacity: 0.8;
}

.ofi {
  display: block;
  position: relative;
  overflow: hidden;
  padding-top: 75%;
}

.ofi.cover img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.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%;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.lead {
  color: #6d3c30;
  font-size: 2rem;
}

.text-xxlarge {
  font-size: 2.4rem;
}

.text-xlarge {
  font-size: 2rem;
}

.text-large {
  font-size: 1.6rem;
}

.text-small {
  font-size: 1.2rem;
}

.text-xsmall {
  font-size: 1rem;
}

.text-white {
  color: #fff !important;
}

.text-black {
  color: #000 !important;
}

.text-red {
  color: #f00 !important;
}

.text-primary {
  color: #6d3c30 !important;
}

@media (max-width: 767px) {
  .sp-hide,
  .pc-only,
  .tablet-only {
    display: none !important;
  }
  .sp-text-center {
    text-align: center;
  }
  .sp-text-left {
    text-align: left;
  }
  .sp-text-right {
    text-align: right;
  }
}

@media (min-width: 768px) {
  .lead {
    font-size: 2.8rem;
  }
  .text-xxlarge {
    font-size: 3.6rem;
  }
  .text-xlarge {
    font-size: 2.8rem;
  }
  .text-large {
    font-size: 2rem;
  }
  .text-small {
    font-size: 1.2rem;
  }
  .text-xsmall {
    font-size: 1rem;
  }
  .pc-hide,
  .sp-only {
    display: none !important;
  }
  .pc-text-center {
    text-align: center;
  }
  .pc-text-left {
    text-align: left;
  }
  .pc-text-right {
    text-align: right;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .tablet-hide {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .tablet-only {
    display: none !important;
  }
}

@media (max-width: 999px) {
  .sp-hide02,
  .pc-only02,
  .tablet-only02 {
    display: none !important;
  }
}

@media (min-width: 1000px) {
  .pc-hide02,
  .sp-only02 {
    display: none !important;
  }
}

.arial {
  font-family: "Arial", arial !important;
}

.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;
  }
}

.fs12 {
  font-size: 12px;
}

@media (max-width: 767px) {
  .sp-fs12 {
    font-size: 12px !important;
  }
}

.fs13 {
  font-size: 13px;
}

@media (max-width: 767px) {
  .sp-fs13 {
    font-size: 13px !important;
  }
}

.fs14 {
  font-size: 14px;
}

@media (max-width: 767px) {
  .sp-fs14 {
    font-size: 14px !important;
  }
}

.fs15 {
  font-size: 15px;
}

@media (max-width: 767px) {
  .sp-fs15 {
    font-size: 15px !important;
  }
}

.fs16 {
  font-size: 16px;
}

@media (max-width: 767px) {
  .sp-fs16 {
    font-size: 16px !important;
  }
}

.fs17 {
  font-size: 17px;
}

@media (max-width: 767px) {
  .sp-fs17 {
    font-size: 17px !important;
  }
}

.fs18 {
  font-size: 18px;
}

@media (max-width: 767px) {
  .sp-fs18 {
    font-size: 18px !important;
  }
}

.fs19 {
  font-size: 19px;
}

@media (max-width: 767px) {
  .sp-fs19 {
    font-size: 19px !important;
  }
}

.fs20 {
  font-size: 20px;
}

@media (max-width: 767px) {
  .sp-fs20 {
    font-size: 20px !important;
  }
}

.fs21 {
  font-size: 21px;
}

@media (max-width: 767px) {
  .sp-fs21 {
    font-size: 21px !important;
  }
}

.fs22 {
  font-size: 22px;
}

@media (max-width: 767px) {
  .sp-fs22 {
    font-size: 22px !important;
  }
}

.fs23 {
  font-size: 23px;
}

@media (max-width: 767px) {
  .sp-fs23 {
    font-size: 23px !important;
  }
}

.fs24 {
  font-size: 24px;
}

@media (max-width: 767px) {
  .sp-fs24 {
    font-size: 24px !important;
  }
}

.fs25 {
  font-size: 25px;
}

@media (max-width: 767px) {
  .sp-fs25 {
    font-size: 25px !important;
  }
}

.fs26 {
  font-size: 26px;
}

@media (max-width: 767px) {
  .sp-fs26 {
    font-size: 26px !important;
  }
}

.fs27 {
  font-size: 27px;
}

@media (max-width: 767px) {
  .sp-fs27 {
    font-size: 27px !important;
  }
}

.fs28 {
  font-size: 28px;
}

@media (max-width: 767px) {
  .sp-fs28 {
    font-size: 28px !important;
  }
}

.fs29 {
  font-size: 29px;
}

@media (max-width: 767px) {
  .sp-fs29 {
    font-size: 29px !important;
  }
}

.fs30 {
  font-size: 30px;
}

@media (max-width: 767px) {
  .sp-fs30 {
    font-size: 30px !important;
  }
}

.fs31 {
  font-size: 31px;
}

@media (max-width: 767px) {
  .sp-fs31 {
    font-size: 31px !important;
  }
}

.fs32 {
  font-size: 32px;
}

@media (max-width: 767px) {
  .sp-fs32 {
    font-size: 32px !important;
  }
}

.fs33 {
  font-size: 33px;
}

@media (max-width: 767px) {
  .sp-fs33 {
    font-size: 33px !important;
  }
}

.fs34 {
  font-size: 34px;
}

@media (max-width: 767px) {
  .sp-fs34 {
    font-size: 34px !important;
  }
}

.fs35 {
  font-size: 35px;
}

@media (max-width: 767px) {
  .sp-fs35 {
    font-size: 35px !important;
  }
}

.fs36 {
  font-size: 36px;
}

@media (max-width: 767px) {
  .sp-fs36 {
    font-size: 36px !important;
  }
}

.fs37 {
  font-size: 37px;
}

@media (max-width: 767px) {
  .sp-fs37 {
    font-size: 37px !important;
  }
}

.fs38 {
  font-size: 38px;
}

@media (max-width: 767px) {
  .sp-fs38 {
    font-size: 38px !important;
  }
}

.fs39 {
  font-size: 39px;
}

@media (max-width: 767px) {
  .sp-fs39 {
    font-size: 39px !important;
  }
}

.fs40 {
  font-size: 40px;
}

@media (max-width: 767px) {
  .sp-fs40 {
    font-size: 40px !important;
  }
}

.mt0 {
  margin-top: 0 !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.m-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.mt-1 {
  margin-top: 1em;
}

@media (max-width: 767px) {
  .sp-mt-1 {
    margin-top: 1em !important;
  }
}

.mt-2 {
  margin-top: 2em;
}

@media (max-width: 767px) {
  .sp-mt-2 {
    margin-top: 2em !important;
  }
}

.mt-3 {
  margin-top: 3em;
}

@media (max-width: 767px) {
  .sp-mt-3 {
    margin-top: 3em !important;
  }
}

.mt-4 {
  margin-top: 4em;
}

@media (max-width: 767px) {
  .sp-mt-4 {
    margin-top: 4em !important;
  }
}

.mt-5 {
  margin-top: 5em;
}

@media (max-width: 767px) {
  .sp-mt-5 {
    margin-top: 5em !important;
  }
}

.mb-1 {
  margin-bottom: 1em;
}

.mb-2 {
  margin-bottom: 2em;
}

.mb-3 {
  margin-bottom: 3em;
}

.mb-4 {
  margin-bottom: 4em;
}

.mb-5 {
  margin-bottom: 5em;
}

.inverse h2,
.inverse h3,
.inverse h4,
.inverse p {
  color: #fff;
}

.inverse h2:after {
  background: #fff;
}

.inverse h2 small,
.inverse 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;
}

.dsp-under-only {
  display: block;
}

.home .dsp-home-only {
  display: block;
}

.home .dsp-under-only {
  display: none;
}

@media (max-width: 999px) {
  .targetOffset {
    scroll-margin-top: 70px;
  }
}

.icon-tel:before {
  content: '\f879';
  font-family: 'Font Awesome 5 Free';
  margin-right: 5px;
}

/*ローカルメニュー*/
.localMenu {
  list-style: none;
  display: grid;
  padding: 0;
  gap: 5px 2%;
}

.localMenu.column-2 {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 767px) {
  .localMenu.column-2 {
    grid-template-columns: 1fr;
  }
}

.localMenu.column-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 767px) {
  .localMenu.column-3 {
    grid-template-columns: 1fr;
  }
}

.localMenu li a {
  color: #000;
  text-decoration: none;
  position: relative;
  padding: 0 0 0 20px;
  display: inline-block;
}

.localMenu li a:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 10px;
  border-color: transparent transparent transparent #6d3c30;
  position: absolute;
  top: 0.4em;
  left: 0;
}

.localMenu li a:hover {
  color: #6d3c30;
  text-decoration: none;
}

.marker {
    background: -webkit-linear-gradient(transparent 64%,#ffddbc 0%);
    background: linear-gradient(transparent 64%,#ffddbc 0%);
  padding: 0.2em 0;
  color: #111111;
}

.outfit {
  font-family: "Outfit", sans-serif;
}

.blog_link {
  text-decoration: none;
  color: #111111;
}

.blog_link:hover {
  color: #111111;
  opacity: 0.8;
}

.blog_link .blog_thumb {
  display: block;
  position: relative;
  overflow: hidden;
  padding-top: 60%;
}

.blog_link .blog_thumb 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%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100% !important;
  height: 100% !important;
  font-family: "object-fit: cover;";
}

.blog_link .blog_title {
  font-size: 18px;
  margin: 0.5em 0 0.3em 0;
}

.blog_link .blog_date {
  margin: 0;
  color: #808080;
}

body.home .main .container {
  max-width: 1400px;
  padding: 0 10px;
}

@media (min-width: 1410px) {
  body.home .main .container {
    padding: 0;
  }
}

body.home .main .h3 {
  padding-left: 0;
  font-size: 32px;
}

@media (max-width: 767px) {
  body.home .main .h3 {
    font-size: 24px;
  }
}

body.home .main .h3 .en {
  color: #6d3c30;
  font-size: 20px;
  margin-left: 0.5em;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
}

@media (max-width: 767px) {
  body.home .main .h3 .en {
    font-size: 18px;
  }
}

body.home .main .h3:before {
  content: none;
}

.top_ttl {
  text-align: center;
  font-weight: bold;
  font-size: 38px;
  position: relative;
  margin: 0 0 1em;
}

@media (max-width: 767px) {
  .top_ttl {
    font-size: 26px;
  }
}

.top_ttl .en {
  color: #6d3c30;
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  font-weight: 500;
  display: table;
  border-bottom: solid 2px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .top_ttl .en {
    font-size: 18px;
  }
}

.top_ttl .bg_en {
  color: #ecebeb;
  font-size: clamp(60px, 19vw, 210px);
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  line-height: 1;
  margin: 0 auto;
  transform: translateY(-50%);
  z-index: -1;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
}

.sec_info {
  padding: clamp(40px, 7.5vw, 100px) 0;
  background: url(/wp-content/uploads/bg01.jpg) no-repeat center/cover;
}

.sec_info .row:not(:last-child) {
  margin-bottom: 20px;
}

.sec_info .h3:not(:first-child) {
  margin-top: clamp(30px, 5vw, 60px);
}

.sec_feature {
  padding: clamp(40px, 7.5vw, 100px) 0;
  background: url/wp-content/uploads/bg02.jpg) no-repeat center/cover;
  position: relative;
  z-index: 0;
}

.sec_feature .container {
  max-width: 100% !important;
  padding: 0;
}

.sec_feature .feature_ttl {
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: bold;
  margin: 0 0 0.3em;
}

.sec_feature .feature_ttl .num {
  font-family: "Outfit", sans-serif;
  font-size: calc(84 / 34 * 1em);
  font-weight: 500;
  display: block;
  color: #6d3c30;
  line-height: 1;
}

.sec_feature .feature_ttl_sub {
  font-weight: bold;
  font-size: clamp(20px, 2vw, 28px);
  border-bottom: solid 2px #cdcdcd;
  margin: 0 0 0.6em 0;
  padding-bottom: 0.3em;
}

.sec_feature .text_bg {
  background: #fff;
  box-shadow: 0px 0px 21px 0px rgba(30, 28, 26, 0.08);
  padding: 5%;
}

@media (min-width: 768px) {
  .sec_feature .text_bg {
    margin-bottom: -5%;
  }
}

@media (min-width: 768px) {
  .sec_feature .con_img img {
    position: relative;
    z-index: -1;
    max-width: 60.5vw;
    width: 60.5vw;
  }
  .sec_feature .con_text {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-right: clamp(20px, calc(50% - 700px), calc(50% - 700px));
  }
  .sec_feature .row:not(.reverse) .feature_ttl {
    text-align: right;
  }
  .sec_feature .row:not(:last-child) {
    margin-bottom: 110px;
  }
  .sec_feature .row.reverse .con_img img {
    transform: translateX(-11.5vw);
  }
  .sec_feature .row.reverse .con_text {
    padding-right: 0;
    padding-left: clamp(20px, calc(50% - 700px), calc(50% - 700px));
  }
}

@media (max-width: 767px) {
  .sec_feature .con_text {
    padding: 0 10px;
  }
}

.sec_about {
  padding: clamp(40px, 7.5vw, 100px) 0;
  position: relative;
  z-index: 0;
}

.sec_about .concept_contents {
  text-align: center;
  background: url(/wp-content/uploads/bg03-2.png) no-repeat center/cover;
}

@media (min-width: 768px) {
  .sec_about .concept_contents {
    background: url(/wp-content/uploads/bg03-1.jpg) no-repeat center/cover;
  }
}

.sec_about .concept_contents .concept_text {
  width: 100%;
  max-width: 692px;
  margin: 0 auto;
  padding: 50px 0;
}

@media (min-width: 768px) {
  .sec_about .concept_contents .concept_text {
    padding: 50px 0 100px;
    background: url(/wp-content/uploads/bg03-2.png) no-repeat center/cover;
  }
}

.sec_about .concept_contents .concept_ttl {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: bold;
  margin: 0 0 1em;
  padding: 2em 0 0;
  position: relative;
  text-align: center;
  z-index: 0;
}

.sec_about .concept_contents .concept_ttl .bg_en {
  color: #ecebeb;
  font-size: calc(103 / 34 * 1em);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  line-height: 1;
  margin: 0 auto;
  z-index: -1;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
}

.sec_about .concept_contents .concept_list {
  list-style: none;
  display: inline-block;
  padding: 0;
}

.sec_about .concept_contents .concept_list li {
  padding-left: 8.5em;
  font-size: clamp(16px, 1.8vw, 20px);
  position: relative;
  font-weight: bold;
  width: -moz-fit-content;
  width: fit-content;
  padding-top: 2em;
  padding-bottom: 1em;
  z-index: 0;
  text-align: left;
}

@media (max-width: 767px) {
  .sec_about .concept_contents .concept_list li {
    padding-left: 6.5em;
    letter-spacing: 0;
  }
}

.sec_about .concept_contents .concept_list li + li {
  margin-top: 1em;
}

.sec_about .concept_contents .concept_list li:after {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% - 3em);
  height: 1px;
  top: auto;
  bottom: 0;
  right: 0;
  left: auto;
  margin: auto;
  background: #6d3c30;
  z-index: -1;
}

.sec_about .concept_contents .concept_list li .circle {
  width: calc(117 / 20 * 1em);
  height: calc(117 / 20 * 1em);
  border-radius: 50%;
  background-image: linear-gradient(125deg, rgba(146, 104, 94, 0.99608) 0%, #a7837a 68%, #bc9d96 100%);
  font-size: calc(26 / 20 * 1em);
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 767px) {
  .sec_about .concept_contents .concept_list li .circle {
    width: calc(90 / 20 * 1em);
    height: calc(90 / 20 * 1em);
    bottom: -1px;
    top: auto;
  }
}

.sec_about .concept_contents .concept_list li:nth-child(2n) {
  padding-right: 8.5em;
  padding-left: 0;
  text-align: left;
}

@media (max-width: 767px) {
  .sec_about .concept_contents .concept_list li:nth-child(2n) {
    padding-right: 6.5em;
  }
}

.sec_about .concept_contents .concept_list li:nth-child(2n):after {
  left: 0;
  right: auto;
}

.sec_about .concept_contents .concept_list li:nth-child(2n) .circle {
  right: 0;
  left: auto;
}

.sec_about .clinic_contents {
  margin: 60px auto;
}

@media (max-width: 767px) {
  .sec_about .clinic_contents {
    margin: 40px auto;
  }
}

.sec_about .clinic_contents .clinic_logo {
  max-width: 274px;
}

.sec_about .clinic_contents .clinic_table {
  width: 100%;
}

.sec_about .clinic_contents .clinic_table th {
  font-weight: bold;
  width: 100px;
}

.sec_about .clinic_contents .clinic_table th,
.sec_about .clinic_contents .clinic_table td {
  vertical-align: text-top;
  text-align: left;
  border-bottom: solid 1px #d1d1d1;
  padding: 0.8em 0;
}

@media (min-width: 768px) {
  .sec_about .clinic_contents .map_wide {
    padding-top: 680px;
  }
}

.sec_trouble {
  padding: clamp(40px, 7.5vw, 100px) 0;
  background: url(/wp-content/uploads/bg04.jpg) no-repeat center/cover;
}

.sec_trouble .trouble_link {
  text-decoration: none;
  background: #fff;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 10em;
  font-size: clamp(16px, 2.5vw, 26px);
  position: relative;
}

@media (max-width: 767px) {
  .sec_trouble .trouble_link {
    line-height: 1.4;
    height: 12em;
  }
}

.sec_trouble .trouble_link:after {
  content: "";
  display: block;
  position: absolute;
  width: 37px;
  height: 37px;
  top: auto;
  bottom: 0.6em;
  right: 0.6em;
  left: auto;
  margin: auto;
  max-width: calc(37 / 26 * 1em);
  background-position: bottom right;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='38.5px' height='38.5px'%3E%3Cpath fill-rule='evenodd' fill='rgb(109, 60, 48)' d='M18.750,0.250 C28.967,0.250 37.250,8.533 37.250,18.750 C37.250,28.967 28.967,37.250 18.750,37.250 C8.533,37.250 0.250,28.967 0.250,18.750 C0.250,8.533 8.533,0.250 18.750,0.250 Z'/%3E%3Cpath fill-rule='evenodd' stroke='rgb(255, 255, 255)' stroke-width='1px' stroke-linecap='butt' stroke-linejoin='miter' fill='rgb(255, 255, 255)' d='M23.509,16.960 L23.509,19.137 L27.412,19.137 L23.509,16.960 Z'/%3E%3Cpath fill-rule='evenodd' stroke='rgb(255, 255, 255)' stroke-width='1px' stroke-linecap='butt' stroke-linejoin='miter' fill='none' d='M7.094,19.137 L27.412,19.137 L24.509,16.960 '/%3E%3C/svg%3E");
}

@media (max-width: 767px) {
  .sec_trouble .trouble_link:after {
    bottom: 0.3em;
    right: 0.3em;
  }
}

.sec_trouble .trouble_link:hover {
  opacity: 0.7;
}

.sec_trouble .trouble_link .trouble_ttl {
  color: #111111;
  text-align: center;
  font-weight: bold;
  margin: 0;
  font-size: clamp(18px, 2.5vw, 26px);
  height: 3.5em;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .sec_trouble .trouble_link .trouble_ttl {
    height: 4em;
  }
}

.sec_trouble .trouble_link figure {
  max-width: 50%;
}

.sec_greeting {
  padding: clamp(40px, 7.5vw, 100px) 0;
  background: url(/wp-content/uploads/bg05.jpg) no-repeat center/cover;
}

.sec_greeting .greeting_ttl {
  font-size: clamp(20px, 3.3vw, 38px);
  font-weight: bold;
  margin: 0 0 1em;
}

.sec_greeting .greeting_ttl .en {
  font-family: "Outfit", sans-serif;
  display: block;
  font-weight: 400;
  color: #6d3c30;
  font-size: calc(86 / 38 * 1em);
}

.sec_greeting .greeting_ttl_sub {
  color: #6d3c30;
  font-size: clamp(22px, 3.4vw, 40px);
  margin: 0.5em 0;
}

.sec_greeting .greeting_ttl_sub .position {
  font-size: calc(25 / 40 * 1em);
  display: flex;
  align-items: center;
  position: relative;
  gap: 0.5em;
}

.sec_greeting .greeting_ttl_sub .position:after {
  position: static;
  content: "";
  width: auto;
  height: 1px;
  background: #6d3c30;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .sec_greeting .con_text {
    padding-right: 2%;
  }
}

.sec_greeting .bg_wrap {
  background: #fff;
  padding: clamp(20px, 3.5vw, 45px);
  box-shadow: 0px 0px 21px 0px rgba(30, 28, 26, 0.08);
  position: relative;
  z-index: 0;
  margin-top: clamp(30px, 6vw, 80px);
}

.sec_greeting .bg_wrap:before {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  border: solid 1px #d6d6d6;
  z-index: -1;
}

@media (max-width: 767px) {
  .sec_greeting .bg_wrap:before {
    width: calc(100% - 10px);
    height: calc(100% - 10px);
  }
}

@media (min-width: 768px) {
  .sec_greeting .bg_wrap .row .col:first-child {
    position: relative;
  }
  .sec_greeting .bg_wrap .row .col:first-child:after {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    bottom: 0;
    right: -1%;
    left: auto;
    margin: auto;
    background: #d7d7d7;
  }
}

.sec_greeting .choice_ttl1 {
  font-size: clamp(24px, 2.5vw, 34px);
  color: #6d3c30;
  text-align: center;
  letter-spacing: 0.01em;
  font-weight: bold;
  margin: 0 0 0.5em 0;
  line-height: 1;
}

.sec_greeting .choice_ttl2 {
  font-size: clamp(20px, 2.2vw, 26px);
  border-top: solid 1px #6d3c30;
  border-bottom: solid 1px #6d3c30;
  font-weight: bold;
  text-align: center;
  color: #6d3c30;
}

.sec_greeting .choice_ttl3 {
  font-weight: bold;
  font-size: clamp(20px, 2.2vw, 26px);
  margin: 0 0 0.5em;
  padding-left: 1.2em;
  position: relative;
}

.sec_greeting .choice_ttl3:before {
  content: "";
  display: block;
  position: absolute;
  width: 0.8em;
  height: 0.8em;
  top: 0;
  bottom: 0;
  right: auto;
  left: 0;
  margin: auto;
  border-radius: 50%;
  border: solid 3px #6d3c30;
}

.sec_menu {
  padding: clamp(40px, 7.5vw, 100px) 0;
  background: url(/wp-content/uploads/bg06.jpg) no-repeat center/cover;
}

.sec_menu .menu_link {
  display: block;
  text-decoration: none;
  background: #fff;
  color: #111111;
  height: 100%;
  padding: clamp(10px, 2.2vw, 27px) clamp(10px, 2.2vw, 27px) clamp(60px, 7vw, 90px);
  position: relative;
  z-index: 0;
}

@media (max-width: 767px) {
  .sec_menu .menu_link {
    font-size: 14px;
  }
}

.sec_menu .menu_link:hover {
  opacity: 0.8;
}

.sec_menu .menu_link:before {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% - 18px);
  height: calc(100% - 18px);
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  border: solid 1px #bba7a2;
  z-index: -1;
}

@media (max-width: 767px) {
  .sec_menu .menu_link:before {
    width: calc(100% - 9px);
    height: calc(100% - 9px);
  }
}

.sec_menu .menu_link:after {
  content: "";
  display: block;
  position: absolute;
  width: 37px;
  height: 37px;
  top: auto;
  bottom: clamp(15px, 3vw, 37px);
  right: 0;
  left: 0;
  margin: auto;
  background-position: bottom right;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='38.5px' height='38.5px'%3E%3Cpath fill-rule='evenodd' fill='rgb(109, 60, 48)' d='M18.750,0.250 C28.967,0.250 37.250,8.533 37.250,18.750 C37.250,28.967 28.967,37.250 18.750,37.250 C8.533,37.250 0.250,28.967 0.250,18.750 C0.250,8.533 8.533,0.250 18.750,0.250 Z'/%3E%3Cpath fill-rule='evenodd' stroke='rgb(255, 255, 255)' stroke-width='1px' stroke-linecap='butt' stroke-linejoin='miter' fill='rgb(255, 255, 255)' d='M23.509,16.960 L23.509,19.137 L27.412,19.137 L23.509,16.960 Z'/%3E%3Cpath fill-rule='evenodd' stroke='rgb(255, 255, 255)' stroke-width='1px' stroke-linecap='butt' stroke-linejoin='miter' fill='none' d='M7.094,19.137 L27.412,19.137 L24.509,16.960 '/%3E%3C/svg%3E");
}

.sec_menu .menu_ttl {
  text-align: center;
  margin: 0.5em 0;
  color: #6d3c30;
  font-size: clamp(18px, 1.7vw, 24px);
}

.sec_clinic {
  padding: clamp(40px, 7.5vw, 100px) 0;
  background: url(/wp-content/uploads/bg07.jpg) no-repeat center/cover;
  color: #fff;
}

@media (max-width: 767px) {
  .sec_clinic {
    background: url(/wp-content/uploads/sp_bg07.jpg) no-repeat center/cover;
  }
}

.sec_clinic .col {
  max-width: 560px;
}

.sec_clinic .top_ttl1 {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: bold;
  margin: 0 0 1em;
}

.sec_clinic .top_ttl1 .en {
  font-family: "Outfit", sans-serif;
  display: block;
  font-size: 20px;
  font-weight: 400;
}

.sec_clinic .top_ttl2 {
  background: #fff;
  color: #6d3c30;
  display: inline-block;
  padding: 0.2em 0.5em;
  font-size: clamp(20px, 2.6vw, 28px);
  margin: 0.5em 0;
}

.sec_clinic .button, .sec_clinic .inquiry .form_button, .inquiry .sec_clinic .form_button, .sec_clinic #wpcf7cpcnf .wpcf7cp-btns button, #wpcf7cpcnf .wpcf7cp-btns .sec_clinic button {
  background: transparent;
  border: solid 1px #fff;
}

.sec_clinic .button:hover, .sec_clinic .inquiry .form_button:hover, .inquiry .sec_clinic .form_button:hover, .sec_clinic #wpcf7cpcnf .wpcf7cp-btns button:hover, #wpcf7cpcnf .wpcf7cp-btns .sec_clinic button:hover {
  border-color: #ffff;
}

.sec_clinic .marker {
  color: #fff;
background: -webkit-linear-gradient(transparent 64%, #ffddbc91 0%);
    background: linear-gradient(transparent 64%, #ffddbc91 0%);
}

ul.ul_dot {
  list-style: none;
  padding: 0;
}

ul.ul_dot li {
  position: relative;
  padding-left: 12px;
}

ul.ul_dot li:before {
  content: "";
  display: block;
  position: absolute;
  width: 5px;
  height: 5px;
  top: 9px;
  bottom: auto;
  right: auto;
  left: 0;
  margin: auto;
  border-radius: 50%;
  background: #6d3c30;
}

ul.ul_dot.ul_bg {
  padding: 4% 5%;
  background: #f5f5f5;
}

/*# sourceMappingURL=main.css.map */
