@charset "UTF-8";
/*
 * foundation
 */
*,
*:before,
*:after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
  line-height: 1.8;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  display: block;
  height: auto;
  border: none;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:focus:not(:focus-visible) {
  outline: 0; /* キーボード操作"以外"でフォーカスされた際はoutlineを消す */
}

html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 62.5%;
}

body {
  width: 100%;
  margin: 0;
  color: #000;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 400;
  min-width: 1200px;
}

a {
  text-decoration: underline;
  color: inherit;
}

@media screen and (min-width: 1025px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/* 好みで使用してください
p, dl, dt, dd, ul, li{
    line-height: 1.5;
    font-feature-settings : "palt";
    text-align:justify; 
    text-justify: inter-ideograph;
}
*/
ul li,
ol li {
  line-height: 1.8;
  font-size: 16px;
}

.sp {
  display: none !important;
}

p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8;
}

.fadein {
  opacity: 0;
  transform: translate(0, 100px);
  transition: all 1s;
}

.fadein.active {
  opacity: 1;
  transform: translate(0, 0);
}

div.fix-side {
  position: fixed;
  width: 70px;
  height: 260px;
  right: -300px;
  top: calc(50vh - 130px);
  background-color: #7d7d7d;
  z-index: 99999;
}
div.fix-side a {
  display: block;
  width: 65px;
  height: 250px;
  margin: 5px 0 5px 5px;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-lr;
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  font-size: 2rem;
  transition: 0.3s;
}
div.fix-side a img {
  margin-top: 10px;
}
div.fix-side a:hover {
  background-color: #646464;
}

.fix-side {
  position: fixed;
  width: 70px;
  height: 260px;
  right: 0;
  top: calc(50vh - 130px);
  background-color: #ba892f;
  z-index: 99999;
}
.fix-side a {
  display: block;
  width: 65px;
  height: 250px;
  margin: 5px 0 5px 5px;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-lr;
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  font-size: 2rem;
  transition: 0.3s;
}
.fix-side img {
  margin-top: 10px;
}
.fix-side:hover {
  background-color: #997128;
}

@media screen and (max-width: 767px) {
  body {
    min-width: 100%;
  }
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  img {
    max-width: 100%;
    height: auto;
  }
}
/*
 * layout
 */
/* header -------------------------------------- */
header {
  position: fixed;
  width: 100%;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  top: 0;
}
header h1 {
  margin-top: 10px;
  margin-left: 50px;
}
header h1 img {
  transition: 0.3s;
}
@media screen and (max-width: 1300px) {
  header h1 {
    margin-left: 20px;
  }
}
header .hdr-contact-area {
  height: 100px;
  position: fixed;
  right: 40px;
  top: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border-radius: 60px;
  padding: 0 3.64vw;
  transition: 0.3s;
  z-index: 8000;
}
header .hdr-contact-area nav.pc {
  margin-right: 15px;
  transition: 0.3s;
}
header .hdr-contact-area nav.pc ul {
  display: flex;
}
header .hdr-contact-area nav.pc ul > li {
  list-style-type: none;
  margin-right: 2vw;
  margin-left: 0;
  position: relative;
}
header .hdr-contact-area nav.pc ul > li::before {
  background: #7d7d7d;
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
header .hdr-contact-area nav.pc ul > li:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
header .hdr-contact-area nav.pc ul > li:hover {
  border-color: #7d7d7d;
}
header .hdr-contact-area nav.pc ul > li a {
  text-decoration: none;
}
header .hdr-contact-area nav.pc ul > li.has-sub {
  position: relative;
}
header .hdr-contact-area nav.pc ul > li .sub {
  display: none;
  position: absolute;
  left: -44px;
  top: 2em;
  width: 164px;
  z-index: 3;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px 0 10px;
}
header .hdr-contact-area nav.pc ul > li .sub li {
  border-bottom: none !important;
}
header .hdr-contact-area nav.pc ul > li .sub li::before {
  content: none;
}
header .hdr-contact-area nav.pc ul > li .sub > li > a {
  display: block;
  font-size: 15px;
  line-height: 2;
  padding-left: 20px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}
header .hdr-contact-area nav.pc ul > li .sub > li > a span {
  font-size: 26px;
  line-height: 1;
  color: #f73c31;
}
header .hdr-contact-area nav.pc ul > li .sub > li:nth-last-of-type(1) > a span {
  color: #69a661;
}
header .hdr-contact-area nav.pc ul > li .sub > li > a:hover {
  color: #BF7939;
  opacity: 1;
}
header .hdr-contact-area p.hdr-contact.lora {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  color: #7d7d7d;
  font-size: 2vw;
  margin-right: 5vw;
}
header .hdr-contact-area p.hdr-contact.lora img {
  margin-right: 10px;
}
@media screen and (max-width: 1270px) {
  header .hdr-contact-area {
    min-width: 360px;
    justify-content: center;
  }
  header .hdr-contact-area nav {
    display: none;
  }
}
header.hide {
  background-color: transparent;
}
header.hide h1 img {
  width: 124px;
  height: auto;
}
header.hide .hdr-contact-area {
  right: 10px;
  top: 0;
}
header.hide .hdr-contact-area nav {
  display: none;
}
header.hide .hdr-contact-area .hdr-contact a {
  font-size: 24px;
  font-size: 2.4rem;
}

@media screen and (max-width: 767px) {
  header {
    position: fixed;
    width: 100%;
    height: 80px;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 100;
    transition: 0.3s;
  }
  header h1 {
    margin-top: 10px;
    margin-left: 16px;
  }
  header h1 img {
    width: 46%;
    height: auto;
  }
}
@media screen and (max-width: 767px) and (max-width: 1300px) {
  header h1 {
    margin-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  header.hide {
    background-color: #fff;
  }
}
/* footer -------------------------------------- */
footer {
  border-top: 1px solid #d3cbc6;
  padding: 90px 0 0;
}
footer div.inner {
  width: 1200px;
  margin: 0 auto 80px;
  display: flex;
  justify-content: space-between;
}
footer div.inner div.ftr-data {
  border-right: 1px solid #d3cbc6;
}
footer div.inner div.ftr-data div.ftr-logo {
  width: 410px;
}
footer div.inner div.ftr-data p.addr {
  margin-top: 15px;
}
footer div.inner div.ftr-data p.tel.lora {
  font-size: 30px;
  font-size: 3rem;
  color: #7d7d7d;
}
footer div.inner div.ftr-data p.tel.lora img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}
footer div.inner div.ftr-data .outlink {
  margin-top: 50px;
}
footer div.inner div.ftr-data .outlink p.blank {
  margin-top: 25px;
}
footer div.inner div.ftr-data .outlink p.blank a {
  text-decoration: none;
}
footer div.inner div.ftr-data .outlink p.blank a:hover {
  color: #7d7d7d;
}
footer div.inner div.ftr-data .outlink p.blank a img {
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
}
footer div.inner div.ftr-link {
  width: 710px;
}
footer div.inner div.ftr-link nav {
  display: flex;
}
footer div.inner div.ftr-link nav ul {
  margin-right: 80px;
}
footer div.inner div.ftr-link nav ul li {
  margin-bottom: 20px;
  margin-left: 0;
  list-style-type: none;
}
footer div.inner div.ftr-link nav ul li::before {
  content: "●";
  font-size: 8px;
  color: #d3cbc6;
  line-height: 1.3;
  margin-right: 5px;
}
footer div.inner div.ftr-link nav ul li a {
  text-decoration: none;
}
footer div.inner div.ftr-link nav ul li a:hover {
  color: #7d7d7d;
}
footer div.inner div.ftr-link div.bnr {
  margin-top: 75px;
}
footer div.inner div.ftr-link div.bnr a {
  display: flex;
  align-items: center;
  width: 486px;
  height: 100px;
  background-color: #d4d4d4;
  border-radius: 50px;
  padding-left: 36px;
  text-decoration: none;
  font-size: 16px;
  font-size: 1.6rem;
}
footer div.inner div.ftr-link div.bnr a:hover {
  opacity: 0.7;
  color: #7d7d7d;
}
footer div.inner div.ftr-link div.bnr a::before {
  content: "●";
  font-size: 8px;
  color: #d3cbc6;
  line-height: 1.3;
  margin-right: 5px;
}
footer div.copyright {
  padding: 30px 0;
  text-align: center;
  border-top: 1px solid #d3cbc6;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  footer div.inner {
    width: 100%;
  }
  footer div.inner div.ftr-data div.ftr-logo {
    width: 80%;
  }
  footer .f-link {
    width: 100%;
    background: #452309;
    padding-top: 17px;
    height: 45px;
    color: #fff;
  }
  footer .copyright {
    padding: 5px 0;
    text-align: center;
    font-size: 10px;
    font-size: 1rem;
    display: block;
  }
}
/*
 * object
 */
/*下層パンくず*/
ol.breadcrumbs {
  width: 1000px;
  margin: 40px auto 0;
  padding: 14px 0 0;
  display: flex;
  flex-wrap: wrap;
}
ol.breadcrumbs li {
  list-style: none;
}
ol.breadcrumbs li::before {
  content: none;
  margin-left: 0;
}
ol.breadcrumbs li::after {
  content: ">";
  font-size: 10px;
  padding: 0 5px;
}
ol.breadcrumbs li a {
  font-size: 14px;
  font-size: 1.4rem;
  color: #111;
}
ol.breadcrumbs li span {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: normal;
}
ol.breadcrumbs li:nth-last-of-type(1)::after {
  content: none;
}

@media screen and (max-width: 767px) {
  /*下層パンくず*/
  ol.breadcrumbs {
    width: 92%;
    margin: 0 auto;
    padding: 14px 0 0;
    display: flex;
    flex-wrap: wrap;
  }
  ol.breadcrumbs li {
    list-style: none;
  }
  ol.breadcrumbs li::before {
    content: none;
    margin-left: 0;
  }
  ol.breadcrumbs li::after {
    content: ">";
    font-size: 10px;
    padding: 0 5px;
  }
  ol.breadcrumbs li a {
    font-size: 14px;
    font-size: 1.4rem;
    color: #111;
  }
  ol.breadcrumbs li span {
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: normal;
  }
  ol.breadcrumbs li:nth-last-of-type(1)::after {
    content: none;
  }
}
/*ハンバーガー */
/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn {
  position: fixed;
  width: 85px;
  height: 85px;
  cursor: pointer;
  background: #7d7d7d;
  border-radius: 43px;
  z-index: 99999;
  right: 58px;
  top: 7px;
  transition: 0.3s;
  border: none;
  padding: 0;
}
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  /*アニメーションの設定*/
  position: absolute;
  left: 20px;
  height: 1px;
  background-color: #fff;
}
.openbtn span:nth-of-type(1) {
  top: 30px;
  width: 50%;
}
.openbtn span:nth-of-type(2) {
  top: 40px;
  width: 30%;
}
.openbtn span.menu {
  padding-top: 10px;
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
  color: #fff;
  line-height: 1;
  background-color: transparent;
}
.openbtn:hover {
  background-color: #646464;
}
.openbtn.hide {
  right: 28px;
  top: 7px;
}

/*activeクラスが付与されると線が回転して×に*/
.openbtn.active span:nth-of-type(1) {
  top: 30px;
  left: 28px;
  transform: translateY(6px) rotate(-45deg);
  width: 35%;
}
.openbtn.active span:nth-of-type(2) {
  top: 42px;
  left: 28px;
  transform: translateY(-6px) rotate(45deg);
  width: 35%;
}

.mm-menu {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #fbfbfb;
  z-index: 9000;
  top: 0;
  right: -200%;
  transition: 0.8s;
  opacity: 0.2;
  overflow: auto;
}

.mm-menu.active {
  top: 0;
  right: 0;
  opacity: 1;
}

.mm-page {
  position: relative;
  z-index: 8000;
}

@media screen and (max-width: 767px) {
  /*ハンバーガー */
  /*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
  .openbtn {
    position: fixed;
    /*ボタン内側の基点となるためrelativeを指定*/
    width: 60px;
    height: 60px;
    cursor: pointer;
    background: #7d7d7d;
    border-radius: 43px;
    z-index: 99999;
    right: 15px;
    top: 10px;
    transition: 0.3s;
    border: none;
  }
  .openbtn.hide {
    right: 10px;
    top: 10px;
  }
  .sp-tel {
    position: fixed;
    z-index: 99999;
    top: 10px;
    right: 85px;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    background-color: #fff;
    line-height: 1;
    color: #7d7d7d;
  }
  .sp-tel img {
    margin: 14px auto 0;
  }
  .sp-tel span {
    position: absolute;
    bottom: 9px;
    left: 20px;
    font-size: 11px;
    font-size: 1.1rem;
  }
  /*ボタン内側*/
  .openbtn span {
    display: inline-block;
    transition: all 0.4s;
    /*アニメーションの設定*/
    position: absolute;
    left: 16px;
    height: 1px;
    background-color: #fff;
  }
  .openbtn span:nth-of-type(1) {
    top: 20px;
    width: 50%;
  }
  .openbtn span:nth-of-type(2) {
    top: 28px;
    width: 30%;
  }
  /*activeクラスが付与されると線が回転して×に*/
  .openbtn.active span:nth-of-type(1) {
    top: 20px;
    left: 19px;
    transform: translateY(6px) rotate(-45deg);
    width: 35%;
  }
  .openbtn.active span:nth-of-type(2) {
    top: 32px;
    left: 19px;
    transform: translateY(-6px) rotate(45deg);
    width: 35%;
  }
  .openbtn span.menu {
    padding-top: 6px;
    font-size: 10px;
    font-size: 1rem;
    color: #fff;
    background-color: transparent;
  }
  .mm-menu {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #fbfbfb;
    z-index: 9000;
    right: -200%;
    transition: 0.8s;
    opacity: 0.2;
    overflow-y: scroll;
    padding: 90px 0 40px;
    top: 0;
  }
  .mm-menu.active {
    right: 0;
    opacity: 1;
  }
  .mm-page {
    position: relative;
    z-index: 8000;
  }
}
.sp-menu-link {
  width: 100%;
  height: 100%;
  display: flex;
  visibility: hidden;
  align-items: flex-start;
  padding-top: 200px;
  justify-content: center;
  min-width: 1200px;
  overflow: auto;
}
.sp-menu-link .inner {
  width: 1080px;
  margin: 0 auto 80px;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.sp-menu-link .inner .sp-menu-data {
  border-right: 1px solid #d3cbc6;
}
.sp-menu-link .inner .sp-menu-data .sp-menu-logo {
  width: 380px;
}
.sp-menu-link .inner .sp-menu-data p.addr {
  margin-top: 15px;
}
.sp-menu-link .inner .sp-menu-data p.tel.lora {
  font-size: 30px;
  font-size: 3rem;
  color: #7d7d7d;
}
.sp-menu-link .inner .sp-menu-data p.tel.lora img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}
.sp-menu-link .inner .sp-menu-data .outlink {
  margin-top: 50px;
}
.sp-menu-link .inner .sp-menu-data .outlink p.blank {
  margin-top: 25px;
}
.sp-menu-link .inner .sp-menu-data .outlink p.blank a {
  text-decoration: none;
}
.sp-menu-link .inner .sp-menu-data .outlink p.blank a:hover {
  color: #7d7d7d;
}
.sp-menu-link .inner .sp-menu-data .outlink p.blank a img {
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
}
.sp-menu-link .inner .sidemenu-link {
  width: 660px;
}
.sp-menu-link .inner .sidemenu-link nav {
  display: flex;
}
.sp-menu-link .inner .sidemenu-link nav ul {
  width: 50%;
}
.sp-menu-link .inner .sidemenu-link nav ul li {
  margin-bottom: 20px;
  margin-left: 0;
  list-style-type: none;
}
.sp-menu-link .inner .sidemenu-link nav ul li::before {
  content: "●";
  font-size: 8px;
  color: #d3cbc6;
  line-height: 1.3;
  margin-right: 5px;
}
.sp-menu-link .inner .sidemenu-link nav ul li a {
  text-decoration: none;
}
.sp-menu-link .inner .sidemenu-link nav ul li a:hover {
  color: #7d7d7d;
}
.sp-menu-link .inner .sidemenu-link .bnr {
  margin-top: 75px;
}
.sp-menu-link .inner .sidemenu-link .bnr a {
  display: flex;
  align-items: center;
  width: 486px;
  height: 100px;
  border-radius: 50px;
  background-color: #aaa;
  padding-left: 36px;
  text-decoration: none;
  font-size: 16px;
  font-size: 1.6rem;
}
.sp-menu-link .inner .sidemenu-link .bnr a:hover {
  opacity: 0.7;
  color: #7d7d7d;
}
.sp-menu-link .inner .sidemenu-link .bnr a::before {
  content: "●";
  font-size: 8px;
  color: #d3cbc6;
  line-height: 1.3;
  margin-right: 5px;
}

@media screen and (max-width: 767px) {
  .sp-menu-link {
    min-width: 100%;
    height: auto;
    padding-top: 0;
  }
  .sp-menu-link .inner {
    display: block;
    width: 90%;
  }
  .sp-menu-link .inner .sp-menu-data {
    border-right: none;
  }
  .sp-menu-link .inner .sp-menu-data .sp-menu-logo {
    width: 100%;
  }
  .sp-menu-link .inner .sp-menu-data .sp-menu-logo img {
    zoom: 0.5;
  }
  .sp-menu-link .inner .sidemenu-link {
    width: 100%;
  }
  .sp-menu-link .inner .sidemenu-link .bnr a {
    margin: 24px 0;
    width: 90%;
    background-color: #666;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    height: 21vw;
    display: flex;
    align-items: center;
    border-radius: 12px;
    font-size: 15px;
    font-size: 1.5rem;
  }
  .sp-menu-link .inner .sidemenu-link .bnr a::before {
    content: "●";
    font-size: 8px;
    color: #d3cbc6;
    line-height: 1.3;
    margin-right: 5px;
  }
}
.c-for-list,
.wp-block-button {
  text-align: center;
  margin: 30px auto 0;
}
.c-for-list a,
.wp-block-button a {
  position: relative;
  display: block;
  width: 300px;
  color: #fff;
  font-size: 20px;
  font-size: 2rem;
  background: #452309;
  padding: 24px 0;
  border-radius: 5px;
  margin: 0 auto;
  text-decoration: none;
  transition: 0.3s;
  font-weight: bold;
}
.c-for-list a::after,
.wp-block-button a::after {
  content: ">";
  right: 10px;
  position: absolute;
  position: absolute;
  top: 50%;
  transition: 0.3s;
  transform: translateY(-50%);
}
.c-for-list a:hover,
.wp-block-button a:hover {
  background: #aaa;
  color: #666;
  font-weight: bold;
}
.c-for-list a:hover::after,
.wp-block-button a:hover::after {
  right: 5px;
}

@media screen and (max-width: 767px) {
  .c-for-list,
  .wp-block-button {
    text-align: center;
    margin: 30px auto 64px;
  }
  .c-for-list a,
  .wp-block-button a {
    position: relative;
    display: block;
    width: 80%;
    color: #fff;
    font-size: 15px;
    font-size: 1.5rem;
    background: #452309;
    padding: 12px 0;
    margin: 0 auto;
  }
  .c-for-list a::after,
  .wp-block-button a::after {
    content: ">";
    right: 10px;
    position: absolute;
  }
  .c-for-list a:hover,
  .wp-block-button a:hover {
    background: #aaa;
    color: #666;
    font-weight: bold;
  }
}
.ftr-fix {
  display: none;
}

.main-image {
  width: 100%;
  height: auto;
}
.main-image img {
  width: 100%;
  height: auto;
}

.top-section .inner {
  width: 1000px;
  margin: 0 auto;
  padding: 40px;
}
.top-section .inner p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8;
  margin-top: 24px;
}
.top-section .h2-wrap {
  margin-top: 40px;
}
.top-section .h2-wrap h2 {
  font-size: 28px;
  font-size: 2.8rem;
  margin: 0 auto;
  border-bottom: 4px solid #a4480a;
  font-weight: bold;
  display: inline-block;
  line-height: 2;
}
.top-section .h2-wrap span {
  color: #a0a0a0;
  font-size: 16px;
  font-size: 1.6rem;
  margin-top: 16px;
  display: block;
  line-height: 1;
}
.top-section h3 {
  font-size: 24px;
  font-size: 2.4rem;
  color: #452309;
  position: relative;
  z-index: 10;
  letter-spacing: 0.2em;
  line-height: 2;
  margin-top: 32px;
}
.top-section h4 {
  font-size: 20px;
  font-size: 2rem;
  margin: 40px auto 0;
}

.section01 {
  width: 100%;
  background-color: #ffdb9e;
}

.section02 {
  width: 100%;
  background-color: #ffd0d4;
}

.top-news {
  width: 100%;
  padding: 60px 0;
  text-align: center;
  background-color: #dbe0e7;
}
.top-news .inner {
  width: 1000px;
  margin: 60px auto 0;
  background: #f8f8f8;
  padding: 50px 100px;
}
.top-news .inner dl {
  border-bottom: 1px solid #d2d2d2;
  display: flex;
  margin-bottom: 15px;
}
.top-news .inner dl dt {
  width: 145px;
  text-align: left;
  padding: 12px;
  color: #333;
  font-size: 16px;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
}
.top-news .inner dl dd {
  width: 855px;
  text-align: left;
  padding: 12px 0;
  color: #333;
  font-weight: bold;
}
.top-news .inner dl dd h3 {
  font-size: 16px;
  font-size: 1.6rem;
  padding: 0;
  letter-spacing: 0;
  margin-top: 0;
  line-height: 1.5;
}
.top-news .inner dl dd h3 a {
  text-decoration: none;
}
.top-news .inner dl dd h3 a:hover {
  color: #69a661;
}

/*固定ページ*/
.u-main {
  width: 100%;
  height: 200px;
  margin: 100px auto 0;
  background-color: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
}
.u-main .h1-wrap {
  text-align: center;
}
.u-main .h1-wrap .en {
  font-size: 20px;
  font-size: 2rem;
  font-family: "Outfit";
  font-weight: bold;
  padding-bottom: 10px;
  line-height: 1;
}
.u-main .h1-wrap h1 {
  font-size: 48px;
  font-size: 4.8rem;
  font-weight: bold;
  line-height: 1.3;
  margin-top: 10px;
}

.u-contents > *:first-child {
  margin-top: 0 !important;
}

.no-mt {
  margin-top: 0 !important;
}

.u-contents {
  width: 1000px;
  margin: 0 auto;
  padding-bottom: 100px;
}
.u-contents h2 + *, .u-contents h3 + *, .u-contents h4 + *, .u-contents h5 + *, .u-contents h6 + * {
  margin-top: 0 !important;
}
.u-contents h2 {
  margin: 40px 0;
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1.5;
  background-color: #000;
  color: #fff;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体";
  padding: 0 10px;
}
.u-contents h3 {
  margin: 40px 0 32px;
  font-size: 30px;
  font-size: 3rem;
  border-bottom: 1px solid #000;
  line-height: 1.5;
}
.u-contents h4 {
  margin: 32px 0 26px;
  font-size: 20px;
  font-size: 2rem;
  border-left: 4px solid #000;
  line-height: 1.5;
  padding: 0 16px;
  margin-bottom: 26px;
}
.u-contents h5 {
  margin: 24px 0 20px;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.5;
}
.u-contents h6 {
  margin: 20px 0 16px;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.5;
}
.u-contents p {
  margin-top: 40px;
  font-size: 16px;
  font-size: 1.6rem;
}
.u-contents dt,
.u-contents dd {
  font-size: 16px;
  font-size: 1.6rem;
}
.u-contents ul {
  margin-top: 40px;
}
.u-contents ul li {
  list-style-type: none;
  display: flex;
  align-items: center;
}
.u-contents ul li:before {
  content: "⚫︎";
  font-size: 10px;
  color: #111;
  margin-right: 5px;
}
.u-contents ol {
  list-style-type: none;
  counter-reset: count 0;
  margin-top: 40px;
}
.u-contents ol li {
  display: flex;
}
.u-contents ol li a {
  text-decoration: none;
}
.u-contents ol li a:hover {
  color: #111;
}
.u-contents ol li:before {
  content: counter(count) ". ";
  counter-increment: count 1;
  color: #111;
  padding-left: 3px;
  margin-right: 5px;
  font-weight: bold;
}
.u-contents .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table,
.u-contents table {
  margin-top: 40px;
  border-collapse: collapse;
  border: 1px solid #000;
}
.u-contents .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr,
.u-contents table tr {
  border-bottom: 1px solid #000;
}
.u-contents .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th,
.u-contents .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td,
.u-contents table tr th,
.u-contents table tr td {
  line-height: 1.3;
  font-size: 16px;
  font-size: 1.6rem;
  padding: 15px 30px;
  text-align: left;
  border-color: #000;
}
.u-contents .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table thead th,
.u-contents table thead th {
  background-color: #F2F2F2;
  border-right: 1px solid #000;
}
.u-contents .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tbody th,
.u-contents table tbody th {
  background-color: #F2F2F2;
  border-right: 1px solid #000;
}
.u-contents .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tbody td,
.u-contents table tbody td {
  border-right: 1px solid #000;
}
.u-contents blockquote {
  margin-top: 40px;
  line-height: 1.8;
  font-size: 16px;
  font-size: 1.6rem;
  padding: 40px;
  background-color: #F2F2F2;
  position: relative;
}
.u-contents blockquote cite {
  display: block;
  text-align: right;
  margin-top: 20px;
  font-size: 12px;
  font-size: 1.2rem;
}
.u-contents blockquote::before {
  content: url(../img/page/icon-blockquote.svg);
  position: absolute;
  top: -10px;
  left: -10px;
}
.u-contents .wp-block-image {
  margin-top: 40px;
}
.u-contents .wp-block-image img {
  max-width: 100%;
  height: auto;
}
.u-contents .wp-block-image figcaption {
  font-size: 12px;
  font-size: 1.2rem;
  margin-top: 16px;
}
.u-contents .wp-block-buttons {
  margin-top: 40px;
}
.u-contents .wp-block-column > :first-child,
.u-contents .wp-block-group__inner-container > :first-child,
.u-contents .wp-block-media-text__content > :first-child,
.u-contents blockquote.wp-block-quote > :first-child {
  margin-top: 0 !important;
}
.u-contents .wp-block-column > :last-child,
.u-contents .wp-block-group__inner-container > :last-child,
.u-contents .wp-block-media-text__content > :last-child,
.u-contents blockquote.wp-block-quote > :last-child {
  margin-bottom: 0 !important;
}

/* 記事詳細ページ */
.single-main {
  text-align: center;
  padding-top: 80px;
  margin-top: 100px;
}
.single-main h1 {
  width: 1000px;
  margin: 0 auto;
  font-size: 48px;
  font-size: 4.8rem;
  border-bottom: 6px solid #000;
  text-align: left;
  line-height: 1.3;
}

.cat-area {
  width: 1000px;
  margin: 40px auto 0;
  display: flex;
  align-items: center;
}
.cat-area p.date {
  font-size: 16px;
  font-size: 1.6rem;
  margin-right: 26px;
}
.cat-area .cat {
  display: flex;
  align-items: center;
}
.cat-area .cat a {
  display: inline-block;
  padding: 5px 10px;
  font-size: 12px;
  font-size: 1.2rem;
  background-color: #000;
  border: 1px solid #000;
  color: #fff;
  line-height: 1;
  text-decoration: none;
  margin-right: 10px;
  border-radius: 15px;
  font-weight: bold;
  transition: 0.3s;
}
.cat-area .cat a:hover {
  background-color: #fff;
  color: #000;
}

#page_top {
  position: fixed;
  bottom: -200px;
  right: 24px;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  background: rgba(191, 127, 63, 0.8);
}

#page_top a {
  display: flex;
  width: 100px;
  height: 100px;
  font-size: 16px;
  color: #fff;
  align-items: center;
  justify-content: center;
}

/* ページネーション */
main .wp-pagenavi {
  margin: 80px auto 0;
  text-align: center;
}
main .wp-pagenavi span,
main .wp-pagenavi a {
  padding: 15px 19px;
  font-size: 16px;
  font-size: 1.6rem;
}
main .wp-pagenavi span.current, main .wp-pagenavi span:hover,
main .wp-pagenavi a.current,
main .wp-pagenavi a:hover {
  background-color: #333;
  color: #fff;
}

.next-prev {
  margin: 100px auto 0;
}
.next-prev .prev {
  float: left;
  width: 50%;
}
.next-prev .prev a {
  max-width: 46%;
  display: inline-block;
  background-color: #111;
  padding: 2% 2% 1.5% 2em;
  border-radius: 10px;
  text-indent: -0.8em;
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  max-width: 100%;
  transition: 0.3s;
}
.next-prev .prev a:hover {
  background-color: #aaa;
}
.next-prev .next {
  float: right;
  width: 50%;
  text-align: right;
}
.next-prev .next a {
  display: inline-block;
  max-width: 46%;
  background-color: #111;
  padding: 2%;
  border-radius: 10px;
  text-align: right;
  padding: 2% 1.5em 2% 2%;
  border-radius: 10px;
  text-indent: 1em;
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  max-width: 100%;
  transition: 0.3s;
}
.next-prev .next a:hover {
  background-color: #aaa;
}
.next-prev::after {
  content: "";
  display: block;
  clear: both;
  font-size: 0;
  line-height: 0;
}

@media screen and (max-width: 767px) {
  /* sp-nav */
  .ftr-link {
    margin-left: 10vw;
  }
  .ftr-link div.first {
    margin-bottom: 20px;
  }
  .ftr-link div.first ul {
    padding-left: 4%;
  }
  .ftr-link div.first ul li {
    margin-bottom: 16px;
    margin-left: 0;
    list-style-type: none;
  }
  .ftr-link div.first ul li::before {
    content: "●";
    font-size: 8px;
    color: #111;
    line-height: 1.3;
    margin-right: 5px;
  }
  .ftr-link div.first ul li a {
    text-decoration: none;
    font-size: 15px;
    font-size: 1.5rem;
  }
  .ftr-link div.first ul li a:hover {
    color: #7d7d7d;
  }
  .ftr-link div.second {
    margin-bottom: 20px;
  }
  .ftr-link div.second ul {
    padding-left: 4%;
  }
  .ftr-link div.second ul li {
    margin-bottom: 16px;
    margin-left: 0;
    list-style-type: none;
  }
  .ftr-link div.second ul li::before {
    content: "●";
    font-size: 8px;
    color: #f73c31;
    line-height: 1.3;
    margin-right: 5px;
  }
  .ftr-link div.second ul li a {
    text-decoration: none;
    font-size: 15px;
    font-size: 1.5rem;
  }
  .ftr-link div.second ul li a:hover {
    color: #7d7d7d;
  }
  .ftr-link .bnr {
    margin: 24px 0;
    width: 90%;
    background-color: #666;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    height: 21vw;
    display: flex;
    align-items: center;
    border-radius: 12px;
    font-size: 15px;
    font-size: 1.5rem;
  }
  .ftr-link .bnr a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-left: 30px;
  }
  .ftr-link .bnr a::before {
    content: "●";
    font-size: 8px;
    color: #111;
    line-height: 1.3;
    margin-right: 5px;
  }
  .ftr-data {
    width: 100%;
    margin: 40px auto;
    border-top: 1px solid #111;
    padding: 30px 5%;
  }
  .ftr-data .ftr-logo {
    width: 70%;
    margin: 0 auto;
  }
  .ftr-data .addr {
    margin-top: 30px;
    text-align: center;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .ftr-data .tel {
    text-align: center;
    color: #7d7d7d;
    font-size: 24px;
    font-size: 2.4rem;
    margin-top: 28px;
  }
  .ftr-data .tel img {
    display: inline-block;
    vertical-align: middle;
  }
  .ftr-data .outlink {
    margin-top: 45px;
  }
  .ftr-data .outlink p {
    text-align: center;
    font-size: 15px;
    font-size: 1.5rem;
    margin-top: 25px;
  }
  .ftr-data .outlink p img {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
  }
  .fadein {
    opacity: 0;
    transform: translate(0, 100px);
    transition: all 1s;
  }
  .fadein.active {
    opacity: 1;
    transform: translate(0, 0);
  }
  #wrapper {
    background: #fff;
  }
  .main-image {
    width: 100%;
    height: auto;
  }
  .main-image img {
    width: 100%;
    height: auto;
  }
  .top-section .inner {
    width: 90%;
    margin: 0 auto;
    padding: 8% 4%;
  }
  .top-section h2 {
    font-size: 30px;
    font-size: 3rem;
    color: #452309;
    position: relative;
    z-index: 10;
    letter-spacing: 0.2em;
    line-height: 2;
  }
  .top-section .h3-wrap h3 {
    font-size: 26px;
    font-size: 2.6rem;
    text-align: center;
    margin: 0 auto;
    text-align: center;
    border-bottom: 4px solid #452309;
    font-weight: bold;
    display: inline-block;
    text-align: center;
    padding-bottom: 10px;
    line-height: 2;
  }
  .top-section .h3-wrap span {
    color: #a0a0a0;
    font-size: 16px;
    font-size: 1.6rem;
    margin-top: 16px;
    display: block;
    line-height: 1;
  }
  .section01 {
    width: 100%;
    background-color: #ffdb9e;
  }
  .section02 {
    width: 100%;
    background-color: #ffd0d4;
  }
  .top-news {
    margin-top: 54px;
    width: 100%;
    margin-top: 0;
    text-align: center;
  }
  .top-news .inner {
    margin: 40px auto;
    background: #f8f8f8;
    padding: 4% 15px;
  }
  .top-news .inner article dl {
    border-bottom: 1px solid #d2d2d2;
    margin-bottom: 15px;
    padding: 0 2%;
    display: block;
  }
  .top-news .inner article dl dt {
    width: 100%;
    text-align: left;
    padding: 12px 0 0;
    color: #333;
    font-size: 15px;
    font-size: 1.5rem;
  }
  .top-news .inner article dl dd {
    width: 100%;
    text-align: left;
    padding: 5px 0 12px;
    color: #333;
    font-weight: bold;
    font-size: 15px;
    font-size: 1.5rem;
  }
  .top-news .inner article dl dd a h3 {
    font-size: 22px;
    font-size: 2.2rem;
    text-align: center;
    margin: 0 auto 30px;
    text-align: center;
    font-weight: bold;
    display: inline-block;
    text-align: center;
    padding-bottom: 5px;
    line-height: 1;
  }
  .top-news .inner article dl dd a h3 span {
    color: #a0a0a0;
    font-size: 10px;
    font-size: 1rem;
  }
  .top-news .inner article dl dd a:hover {
    color: #452309;
  }
  .top-news .inner article:nth-last-of-type(3) dl {
    border-bottom: none;
  }
  /*固定ページ*/
  .u-main {
    width: 100%;
    height: 200px;
    margin: 80px auto 0;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .u-main .h1-wrap {
    text-align: center;
  }
  .u-main .h1-wrap .en {
    font-size: 20px;
    font-size: 2rem;
    font-family: "Outfit";
    font-weight: bold;
    padding-bottom: 10px;
    line-height: 1;
  }
  .u-main .h1-wrap h1 {
    font-size: 30px;
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.3;
    margin-top: 10px;
  }
  .u-contents {
    width: 92%;
    margin: 0 auto;
    padding-bottom: 100px;
  }
  .u-contents h2 {
    margin-top: 40px;
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1.5;
    background-color: #000;
    color: #fff;
    font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体";
    padding: 0 10px;
  }
  .u-contents h3 {
    margin-top: 40px;
    font-size: 20px;
    font-size: 2rem;
    border-bottom: 1px solid #000;
    line-height: 1.5;
  }
  .u-contents h4 {
    margin-top: 40px;
    font-size: 20px;
    font-size: 2rem;
    border-left: 4px solid #000;
    line-height: 1.5;
    padding: 0 16px;
  }
  .u-contents h5 {
    margin-top: 40px;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.5;
  }
  .u-contents p {
    margin-top: 240px;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .u-contents ul {
    margin-top: 40px;
  }
  .u-contents ol {
    list-style-type: none;
    counter-reset: count 0;
    margin-top: 40px;
  }
  .u-contents ol li a {
    text-decoration: none;
  }
  .u-contents ol li a:hover {
    color: #111;
  }
  .u-contents ol li:before {
    content: counter(count) ". ";
    counter-increment: count 1;
    color: #111;
    padding-left: 3px;
    margin-right: 5px;
    font-weight: bold;
  }
  .u-contents .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table.has-fixed-layout {
    width: -moz-max-content !important;
    width: max-content !important;
  }
  .u-contents .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table,
  .u-contents table {
    margin-top: 40px;
    border-collapse: collapse;
    border: 1px solid #000;
  }
  .u-contents .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr,
  .u-contents table tr {
    border-bottom: 1px solid #000;
  }
  .u-contents .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th,
  .u-contents .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td,
  .u-contents table tr th,
  .u-contents table tr td {
    line-height: 1.3;
    font-size: 16px;
    font-size: 1.6rem;
    padding: 15px 30px;
    text-align: left;
    border-color: #000;
  }
  .u-contents .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table thead th,
  .u-contents table thead th {
    background-color: #F2F2F2;
    border-right: 1px solid #000;
  }
  .u-contents .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tbody th,
  .u-contents table tbody th {
    background-color: #F2F2F2;
    border-right: 1px solid #000;
  }
  .u-contents .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tbody td,
  .u-contents table tbody td {
    border-right: 1px solid #000;
  }
  .u-contents blockquote {
    width: 90%;
    margin: 40px auto 0;
    line-height: 1.8;
    font-size: 14px;
    font-size: 1.4rem;
    padding: 20px;
    background-color: #F2F2F2;
    position: relative;
  }
  .u-contents blockquote cite {
    display: block;
    text-align: right;
    margin-top: 20px;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .u-contents blockquote::before {
    content: url(../img/page/icon-blockquote.svg);
    position: absolute;
    top: -10px;
    left: -10px;
  }
  .u-contents .wp-block-image {
    margin-top: 40px;
  }
  .u-contents .wp-block-image img {
    max-width: 100%;
    height: auto;
  }
  .u-contents .wp-block-image figcaption {
    font-size: 12px;
    font-size: 1.2rem;
    margin-top: 16px;
  }
  .u-contents .wp-block-buttons {
    margin-top: 40px;
  }
  .u-contents iframe {
    max-width: 100%;
    aspect-ratio: 16/9;
  }
  /* 記事詳細ページ */
  .single-main {
    text-align: center;
    padding-top: 40px;
    text-align: left;
    padding: 40px 4% 0;
  }
  .single-main h1 {
    width: 100%;
    margin: 0 auto;
    font-size: 30px;
    font-size: 3rem;
    border-bottom: none;
    text-align: left;
    line-height: 1.5;
  }
  .cat-area {
    width: 92%;
    margin: 10px auto 0;
    display: block;
  }
  .cat-area p.date {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1;
  }
  .cat-area .cat {
    display: flex;
    align-items: center;
    margin-top: 26px;
  }
  .cat-area .cat a {
    display: inline-block;
    padding: 5px 10px;
    font-size: 12px;
    font-size: 1.2rem;
    background-color: #000;
    border: 1px solid #000;
    color: #fff;
    line-height: 1;
    text-decoration: none;
    margin-right: 10px;
    border-radius: 15px;
    font-weight: bold;
    transition: 0.3s;
  }
  .cat-area .cat a:hover {
    background-color: #fff;
    color: #000;
  }
  /* お問い合わせ */
  /* ページネーション */
  main .wp-pagenavi {
    margin: 80px auto 0;
    text-align: center;
  }
  main .wp-pagenavi span,
  main .wp-pagenavi a {
    padding: 15px 19px;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1;
  }
  main .wp-pagenavi span.current, main .wp-pagenavi span:hover,
  main .wp-pagenavi a.current,
  main .wp-pagenavi a:hover {
    background-color: #333;
    color: #fff;
  }
  main .wp-pagenavi span.extend,
  main .wp-pagenavi a.extend {
    display: none;
  }
  main .wp-pagenavi span.pages, main .wp-pagenavi span.first, main .wp-pagenavi span.last,
  main .wp-pagenavi a.pages,
  main .wp-pagenavi a.first,
  main .wp-pagenavi a.last {
    font-size: 13px;
    font-size: 1.3rem;
    padding: 15px 10px;
  }
  main .wp-pagenavi span.pages:hover,
  main .wp-pagenavi a.pages:hover {
    border: 1px solid #BFBFBF;
    background-color: transparent;
    color: #333;
  }
  .next-prev {
    margin: 80px auto 0;
  }
  .next-prev .prev {
    float: left;
    max-width: 44%;
  }
  .next-prev .prev a {
    display: inline-block;
    background-color: #111;
    padding: 2% 2% 1.5% 2em;
    border-radius: 10px;
    text-indent: -0.8em;
    color: #fff;
    font-size: 13px;
    max-width: 100%;
  }
  .next-prev .next {
    float: right;
    max-width: 44%;
  }
  .next-prev .next a {
    display: inline-block;
    background-color: #111;
    padding: 2%;
    border-radius: 10px;
    text-align: right;
    padding: 2% 1.5em 2% 2%;
    border-radius: 10px;
    text-indent: 1em;
    color: #fff;
    font-size: 13px;
    max-width: 100%;
  }
  .next-prev::after {
    content: "";
    display: block;
    clear: both;
    font-size: 0;
    line-height: 0;
  }
  .ftr-fix {
    width: 100%;
    position: sticky;
    bottom: -200px;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
  }
  .ftr-fix a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    background-color: #7d7d7d;
    width: 50%;
    font-size: 18px;
    font-size: 1.8rem;
    color: #fff;
  }
  .ftr-fix a:nth-of-type(1) {
    border-right: 1px solid #fff;
  }
  .ftr-fix a img {
    width: 15px;
    height: auto;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
  }
}
@media screen and (max-width: 374px) {
  header h1 img {
    width: 30%;
  }
  .top-section h2 {
    font-size: 9vw;
    line-height: 1.5;
  }
  .top-section h3 {
    font-size: 8vw;
    line-height: 1.5;
  }
  .top-section h4 {
    font-size: 7vw;
    line-height: 1.5;
  }
}
/* 郵便番号に出る「ハイフンなしで」を非表示 */
#autozip {
  display: none !important;
}