@charset "UTF-8";
/* CSS Document */
body {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: 1px;
  overflow-x: hidden;
}

.flex2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .flex2 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

/* 画面外にいる状態 */
.fadein {
  opacity: 0.1;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 500ms;
  transition: all 500ms;
}

/* 画面内に入った状態 */
.fadein.scrollin {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.h3green {
  font-size: 18px;
  color: #71BB70;
  text-align: center;
}

.f-mid {
  font-size: 16px;
}
@media screen and (max-width: 750px) {
  .f-mid {
    font-size: 14px;
  }
}

.top header {
  overflow: hidden;
  height: 95vh;
  background-color: #B9A697;
}
@media screen and (min-width: 951px) {
  .top header {
    height: 100vh;
    padding: 10px 20px 30px 20px;
  }
}
.top header .top-header {
  position: relative;
}
.top header .top-header #tate {
  position: absolute;
  top: 10%;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 70%;
  z-index: 2;
}
@media screen and (max-width: 750px) {
  .top header .top-header #tate {
    top: 10%;
    right: 10%;
    left: 70%;
    margin: auto;
    height: 75%;
  }
}
.top header .h1 {
  padding: 14px;
}
@media screen and (max-width: 750px) {
  .top header .h1 {
    padding: 14px 0 0 14px;
  }
}
.top header .h1 img {
  width: 140px;
}
@media screen and (max-width: 750px) {
  .top header .h1 img {
    width: 100%;
  }
}
.top header .news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 20px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 750px) {
  .top header .news {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    position: absolute;
    bottom: 120px;
    width: 70%;
    z-index: 3;
  }
}
.top header .news h2 {
  font-size: 16px;
  border: 1px solid #fff;
  padding: 4px 20px;
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
}
@media screen and (max-width: 750px) {
  .top header .news h2 {
    font-size: 14px;
    padding: 2px 15px;
  }
}
.top header .news p {
  font-size: 14px;
}
@media screen and (max-width: 750px) {
  .top header .news p {
    font-size: 12px;
  }
}
.top header .news p a {
  color: #fff;
}
.top header .news p a span {
  padding: 0 10px;
}
@media screen and (max-width: 750px) {
  .top header .news p a span {
    display: block;
    font-size: 12px;
  }
}
.top header .news .ichiran {
  color: #fff;
  text-decoration: underline;
}
.top header .news .ichiran:after {
  content: ">>";
}
.top header #neko1 {
  position: absolute;
  right: 3%;
  bottom: -1%;
  width: 40%;
}
@media screen and (max-width: 750px) {
  .top header #neko1 {
    width: 74%;
    bottom: 4%;
  }
}

/* 下矢印 */
.init-bottom:after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 0 0 15px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* floatクリア */
.menu:before,
.menu:after {
  content: " ";
  display: table;
}

.menu:after {
  clear: both;
}

.menu {
  *zoom: 1;
}

.menu > li.menu__single {
  position: relative;
}
.menu > li.menu__single ul {
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  position: absolute;
  top: 30px;
  width: 300%;
  background: #fff;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.menu > li.menu__single ul a {
  color: #8A6C54;
  display: block;
  font-size: 12px;
  border-bottom: 1px solid #8A6C54;
}

li.menu__single:hover ul {
  top: 40px;
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 750px) {
  .sp-image-container {
    height: 65vh !important;
  }
  .sp-mask {
    height: 65vh !important;
  }
}
.add {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
@media screen and (min-width: 951px) {
  .add {
    width: 35%;
  }
}
@media screen and (max-width: 750px) {
  .add {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 20;
    width: 100%;
  }
}

.header-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .header-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.header-wrap .menu {
  position: relative;
  width: 100%;
  height: 50px;
  margin: 0 auto;
}

nav.global {
  padding-top: 20px;
}
nav.global > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
nav.global > ul li a {
  color: #fff;
  padding: 4px 14px;
}

#simple {
  padding-left: 15%;
}
#simple .sp-slides-container {
  max-height: 75vh;
  overflow: hidden;
  border-top-left-radius: 150px;
  border-bottom-left-radius: 150px;
}
@media screen and (max-width: 750px) {
  #simple .sp-slides-container {
    height: 65vh;
    position: relative;
    z-index: 1;
  }
}

section {
  padding: 50px 10px;
}
section h2.h2 {
  font-size: 22px;
  font-weight: bold;
  color: #8A6C54;
  text-align: center;
  display: inline-block;
  padding: 0 20px 25px 20px;
}
@media screen and (max-width: 750px) {
  section h2.h2 {
    font-size: 20px;
  }
}

.midashih2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.midashih2 p {
  display: inline-block;
}

.kiji1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.kiji1 li {
  width: 25%;
  padding: 14px;
  margin-bottom: 40px;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 750px) {
  .kiji1 li {
    width: 50%;
  }
}
.kiji1 li img {
  border-radius: 20px;
  margin-bottom: 5px;
}
.kiji1 li span.cat a {
  display: inline-block;
  color: #71BB70;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 30px;
  font-size: 14px;
  padding: 8px 2px;
  font-family: "Noto Serif JP", serif;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  background-color: #fff;
}
.kiji1 .place a {
  display: inline-block;
  font-size: 12px;
  color: #71BB70;
}
.kiji1 .date {
  font-size: 12px;
  display: inline-block;
  color: #8A6C54;
}
.kiji1 .kijihead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.kiji1 .title {
  font-size: 12px;
  padding-top: 5px;
  display: block;
  color: #8A6C54;
}
.kiji1:after {
  content: "";
  display: block;
  width: 25%; /* .boxに指定したwidthと同じ幅を指定する */
  height: 0;
}

.kiji2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.kiji2 li {
  width: 25%;
  padding: 14px;
  margin-bottom: 40px;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 750px) {
  .kiji2 li {
    width: 50%;
  }
}
.kiji2 li img {
  border-radius: 20px;
  margin-bottom: 10px;
}
.kiji2 li span.cat a {
  display: inline-block;
  color: #EB7C6B;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 30px;
  font-size: 14px;
  padding: 8px 2px;
  font-family: "Noto Serif JP", serif;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  background-color: #fff;
}
.kiji2 .place a {
  display: inline-block;
  font-size: 12px;
  color: #EB7C6B;
}
.kiji2 .date {
  font-size: 12px;
  display: inline-block;
  color: #8A6C54;
}
.kiji2 .kijihead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.kiji2 .title {
  font-size: 12px;
  padding-top: 5px;
  display: block;
  color: #8A6C54;
}
.kiji2:after {
  content: "";
  display: block;
  width: 25%; /* .boxに指定したwidthと同じ幅を指定する */
  height: 0;
}

.btn {
  text-align: center;
  font-size: 20px;
  margin: 0 auto;
  width: 240px;
}
.btn a {
  color: #fff;
}

.btnred {
  background-color: #EB7C6B;
  padding: 2px 20px;
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
}

.btnwhite {
  background-color: #fff;
  padding: 2px 20px;
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
}
.btnwhite a {
  color: #8A6C54;
  font-family: "Noto Serif JP", serif;
}

.back1 {
  background-image: url(../img/back1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 0;
}
.back1 h2 {
  color: #fff !important;
}
.back1 p {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
}

.backbrown {
  background-color: #B9A697;
}
.backbrown h2 {
  color: #FFF;
}
.backbrown p {
  color: #fff;
}

.contactzone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.contactzone li {
  width: 48%;
}
.contactzone li a img {
  width: 100%;
}

/*ドロワーメニュー*/
.icon-hamburger {
  content: url("../img/menu.png");
  width: 50px;
  height: auto;
  position: fixed;
  z-index: 900;
  right: 1%;
  top: 10px;
  background-color: #B9A697;
  border-radius: 10px;
  padding: 2px;
}

.menu-container {
  width: 100%;
  float: right;
  margin: 0;
}
.menu-container > ul a {
  color: #fff;
  font-size: 15px;
  display: block;
  padding: 12px;
  border-bottom: 1px solid #fff;
  text-align: left;
  text-decoration: none;
}
.menu-container > ul a:hover {
  opacity: 0.6;
}

#modal-overlay {
  background-color: #8A6C54;
  display: none;
  height: 120%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 70;
}

@media screen and (max-width: 750px) {
  .menu-container > ul {
    -webkit-transform: translate(-50%, -50%);
    display: none;
    height: auto;
    left: 50%;
    position: fixed;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    z-index: 200;
  }
}
.topartcle {
  position: relative;
}
.topartcle #neko2 {
  position: absolute;
  top: 20%;
  left: 0%;
  width: 8%;
}
.topartcle #neko3 {
  position: absolute;
  top: 15%;
  right: 0%;
  width: 12%;
}

#hinmoku .green {
  width: 48%;
}
@media screen and (max-width: 750px) {
  #hinmoku .green {
    width: 100%;
    margin-bottom: 30px;
  }
}
#hinmoku .green div {
  border: 2px solid #71BB70;
  padding: 20px;
  border-radius: 20px;
  height: 224px;
  overflow-y: scroll;
}
@media screen and (max-width: 750px) {
  #hinmoku .green div {
    height: auto;
  }
}
#hinmoku .green div::-webkit-scrollbar {
  width: 10px;
}
#hinmoku .green div::-webkit-scrollbar-track {
  background-color: none;
}
#hinmoku .green div::-webkit-scrollbar-thumb {
  background-color: #71BB70;
  border-radius: 5px;
}
#hinmoku .green .kind ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#hinmoku .green .kind ul li {
  color: #8A6C54;
  font-size: 13px;
  font-family: "Noto Sans JP", sans-serif;
}
#hinmoku .green .kind ul li:after {
  content: "/";
}
#hinmoku .green dl {
  color: #8A6C54;
  font-size: 13px;
  font-family: "Noto Sans JP", sans-serif;
}
#hinmoku .green dl dt {
  width: 80px;
  float: left;
}
#hinmoku .green dl dd {
  width: 360px;
  text-align: left;
}

.kochiramo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  border: 2px solid #EB7C6B;
  border-radius: 20px;
}
@media screen and (max-width: 750px) {
  .kochiramo {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.kochiramo li {
  padding: 20px;
}
.kochiramo li:not(:last-child) {
  border-right: 2px solid #EB7C6B;
  width: 33.3333333333%;
}
@media screen and (max-width: 750px) {
  .kochiramo li {
    width: 100% !important;
    border-right: none !important;
  }
  .kochiramo li:not(:last-child) {
    border-bottom: 2px solid #EB7C6B;
    width: 33.3333333333%;
  }
}
.kochiramo li p {
  color: #8A6C54;
  font-size: 12px;
  font-family: "Noto Sans JP", sans-serif;
}
.kochiramo li a {
  display: block;
}

footer {
  position: relative;
  background-color: #8A6C54;
  padding-top: 50px;
}
footer .copy {
  color: #fff;
  font-size: 12px;
  text-align: center;
}
footer .footmenu1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
@media screen and (max-width: 750px) {
  footer .footmenu1 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
footer .footmenu1 li a {
  font-size: 14px;
  color: #fff;
  display: block;
  padding: 10px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  footer .footmenu1 li {
    width: 100%;
    display: block;
  }
}
footer .footmenu2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
footer .footmenu2 li a {
  font-size: 12px;
  color: #fff;
  display: block;
  padding: 10px;
}
@media screen and (max-width: 750px) {
  footer .footmenu2 {
    padding-top: 50px;
  }
}
footer #neko4 {
  position: absolute;
  bottom: 10px;
  width: 280px;
  left: 5%;
}
@media screen and (max-width: 750px) {
  footer #neko4 {
    width: 200%;
    bottom: -100px;
  }
}
@media screen and (max-width: 750px) {
  footer {
    padding-bottom: 180px;
    overflow: hidden;
  }
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
/*ーー下層ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.kasou header {
  background-color: #B9A697;
  padding: 10px 20px;
}
.kasou p {
  font-family: "Noto Sans JP", sans-serif;
}

p.lead {
  color: #8A6C54;
  padding: 40px 0;
}

.page-h2 {
  color: #8A6C54;
  text-align: center;
  font-size: 22px;
  margin: 40px 0 30px 0;
}
@media screen and (max-width: 750px) {
  .page-h2 {
    font-size: 20px;
  }
}

.page-top {
  position: relative;
}
.page-top .pagetop-h1 {
  position: absolute;
  background-color: #B9A697;
  color: #fff;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  padding: 8px 30px;
  font-weight: normal;
  top: 20%;
  left: 0;
}

section.top-0 {
  padding-top: 0;
}

/*contact*/
.privacy {
  margin-bottom: 20px;
  border: 1px solid #71BB70;
  height: 150px;
  border-radius: 10px;
  padding: 20px;
  overflow-y: scroll;
}

/*formTable*/
.formTable-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.formTable {
  width: 100%;
}
.formTable th {
  background-color: #B9A697;
  text-align: center;
  color: #fff;
  padding: 10px;
  border-bottom: 10px solid #fff;
}
@media screen and (max-width: 750px) {
  .formTable {
    width: 100%;
  }
}
.formTable th, .formTable td {
  padding-bottom: 30px;
}
@media screen and (max-width: 750px) {
  .formTable th, .formTable td {
    padding-bottom: 10px;
  }
}
.formTable th {
  text-align: left;
  width: 20%;
}
@media screen and (max-width: 750px) {
  .formTable th {
    display: block;
    width: 100%;
  }
}
.formTable td {
  padding: 10px;
}
@media screen and (max-width: 750px) {
  .formTable td {
    display: block;
    width: 100%;
  }
}
.formTable input, .formTable textarea, .formTable select {
  width: 100%;
  padding: 6px;
  border: 1px solid #8A6C54;
  border-radius: 10px;
  line-height: 2em;
}
.formTable span.hissu {
  padding-left: 10px;
  font-size: 12px;
  color: #000;
}

.submit {
  text-align: center;
}
.submit input {
  background-color: #8A6C54;
  apperance: none;
  -webkit-box-shadow: inset 1px 1px 3px #ccc;
          box-shadow: inset 1px 1px 3px #ccc;
  font-size: 1.6rem;
  border: none;
  color: #fff;
  font-family: serif;
  padding: 10px 20px;
  -webkit-box-shadow: -1px 1px 3px #888;
          box-shadow: -1px 1px 3px #888;
}

.mwform-radio-field {
  display: inline-block;
}

.page-template .inner h2 {
  font-size: 24px;
  font-weight: bold;
  color: #8A6C54;
  text-align: center;
  padding: 50px 0 40px;
}
@media screen and (max-width: 750px) {
  .page-template .inner h2 {
    font-size: 16px;
  }
}
.page-template .inner h2.h2 {
  font-size: 22px;
  font-weight: bold;
  color: #8A6C54;
  text-align: center;
  display: inline-block;
  padding: 50px 20px 25px 20px;
}
@media screen and (max-width: 750px) {
  .page-template .inner h2.h2 {
    font-size: 16px;
  }
}
.page-template .inner figure, .page-template .inner p, .page-template .inner div {
  padding: 12px 0;
}
.page-template .inner h3 {
  padding-top: 30px;
  color: #8A6C54;
}

.faq h4 {
  color: #8A6C54;
  margin-top: 30px;
}
.faq h4:first-letter {
  font-size: 1.2em;
  display: inline-block;
  padding-right: 1em;
}
.faq p {
  padding-left: 20px;
}
.faq p:first-letter {
  font-size: 1.2em;
  display: inline-block;
  padding-right: 0.5em;
}

.newsul li {
  line-height: 3em;
  border-bottom: 1px solid #8A6C54;
}
.newsul span.date {
  margin-right: 20px;
}

.blog-header {
  background-color: #B9A697;
  padding: 10px 30px;
  border-radius: 40px;
  color: #fff;
  margin-bottom: 40px;
}
.blog-header .blog_date {
  text-align: right;
}

.blog_div {
  padding: 40px 20px 80px 20px;
}
.blog_div img {
  margin: 20px 0;
}
.blog_div h2 {
  font-size: 22px;
  padding-top: 30px;
}
@media screen and (max-width: 750px) {
  .blog_div h2 {
    font-size: 16px;
    line-height: 1.2em;
  }
}
.blog_div h3 {
  font-size: 18px;
  padding-top: 30px;
}

.single h2.wp-block-heading, .archive h2.wp-block-heading, .page h2.wp-block-heading {
  font-size: 24px;
  font-weight: bold;
  color: #8A6C54;
  text-align: center;
  padding: 50px 0 40px;
}
@media screen and (max-width: 750px) {
  .single h2.wp-block-heading, .archive h2.wp-block-heading, .page h2.wp-block-heading {
    font-size: 16px;
    line-height: 1.2em;
  }
}
.single .inner-mini img, .archive .inner-mini img, .page .inner-mini img {
  margin: 20px 0;
}
.single .inner-mini h3, .archive .inner-mini h3, .page .inner-mini h3 {
  font-size: 18px;
  padding-top: 30px;
}

.blog_btn {
  border-top: 1px solid #B9A697;
  margin-top: 80px;
}
.blog_btn ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.single .back {
  padding-top: 30px;
  display: block;
  font-size: 14px;
  text-align: center;
  color: #8A6C54;
}