@charset "UTF-8";
html {
  font-size: 16px;
  color: #292929;
}
@media screen and (max-width: 991.9px) {
  html {
    font-size: 16px;
  }
}
@media screen and (max-width:575.9px) {
  html {
    font-size: 16px;
  }
}
html body {
  font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  color: #292929;
  line-height: 1.8;
  letter-spacing: 1px;
  font-family: serif;
  font-weight: bold;
  background-color: #F1E0B4;
  position: relative;
  overflow-x: hidden;
}
html body::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../img/common/wall-img.png);
  background-repeat: repeat;
  z-index: -1;
  background-size: auto;
}
html body main {
  margin: 0 5%;
  padding-bottom: 150px;
  padding-top: 10rem;
  width: 1200px;
  max-width: 90%;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
@media screen and (max-width: 991.9px) {
  html body main {
    padding-bottom: 100px;
    max-width: 90%;
  }
}
@media screen and (max-width:575.9px) {
  html body main {
    margin: 0 20px;
    width: calc(100% - 40px);
    max-width: inherit;
  }
}
html body h1 {
  font-weight: bold;
}
html body h2 {
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (max-width: 991.9px) {
  html body h2 {
    font-size: 1.3rem;
  }
}
@media screen and (max-width:575.9px) {
  html body h2 {
    font-size: 1.1rem;
  }
}
html body h3 {
  font-weight: bold;
}
html body p {
  font-size: 1rem;
  line-height: 2;
}
html body figcaption {
  font-size: 10px;
  line-height: 1rem;
  text-align: right;
  margin-top: 5px;
  opacity: 0.6;
}
@media screen and (max-width: 991.9px) {
  html body figcaption {
    font-size: 8px;
    line-height: 10px;
  }
}
html body a {
  text-decoration: none;
  color: #292929;
}
html body a:hover {
  opacity: 0.8;
  transition: 0.2s;
  color: #292929;
}
html body img {
  width: 100%;
}
html body ul {
  list-style: none;
  padding-left: 0;
}
@media screen and (max-width: 991.9px) {
  html body .pc-only {
    display: none;
  }
}
@media screen and (max-width:575.9px) {
  html body .pc-tablet-only {
    display: none;
  }
}
html body .tab-sp-only {
  display: none;
}
@media screen and (max-width: 991.9px) {
  html body .tab-sp-only {
    display: inherit;
  }
}
html body .sp-only {
  display: none;
}
@media screen and (max-width:575.9px) {
  html body .sp-only {
    display: inherit;
  }
}

.row > * {
  padding-right: 0;
  padding-left: 0;
}

.float-btn__outer {
  position: fixed;
  bottom: 0px;
  z-index: 10;
  right: 0;
  padding-right: 5%;
  padding-bottom: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
@media screen and (max-width:575.9px) {
  .float-btn__outer {
    padding-bottom: 15px;
  }
}
.float-btn__outer.show {
  opacity: 1;
  visibility: visible;
}
.float-btn__outer .float-btn img {
  width: 330px;
  margin-bottom: 0;
  height: auto;
}
@media screen and (max-width: 991.9px) {
  .float-btn__outer .float-btn img {
    width: 280px;
  }
}
@media screen and (max-width:575.9px) {
  .float-btn__outer .float-btn img {
    width: 200px;
  }
}

.header {
  display: flex;
  justify-content: center;
  margin: auto;
  position: fixed;
  width: 100%;
  background: linear-gradient(to bottom, #958D6F 0%, rgba(149, 141, 111, 0) 80%);
  top: 0;
  padding: 15px 0px 20px 0;
  z-index: 99;
  /*activeクラスが付与されると線が回転して×に*/
}
@media screen and (max-width: 991.9px) {
  .header {
    justify-content: left;
    background: none;
    padding: 18px 25px;
  }
}
@media screen and (max-width:575.9px) {
  .header {
    padding: 12px 25px;
  }
}
.header .header-logo-outer {
  font-size: 12px;
  text-align: center;
  letter-spacing: 2px;
  color: #292929;
  margin-bottom: 0;
  z-index: 99;
}
@media screen and (max-width: 991.9px) {
  .header .header-logo-outer {
    font-size: 10px;
  }
}
.header .header-logo-outer .header-logo {
  width: 130px;
}
@media screen and (max-width: 991.9px) {
  .header .header-logo-outer .header-logo {
    width: 120px;
  }
}
.header .openbtn {
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  border-radius: 50%;
  position: absolute;
  right: 20px;
  top: 30px;
  z-index: 99;
  display: none;
  border: 2px solid #9A8E69;
  /*ボタン内側*/
}
@media screen and (max-width: 991.9px) {
  .header .openbtn {
    display: block;
    top: 13px;
    right: 15px;
  }
}
@media screen and (max-width:575.9px) {
  .header .openbtn {
    top: 5px;
    right: 5px;
  }
}
.header .openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 13px;
  height: 2px;
  border-radius: 1px;
  background: #9A8E69;
  width: 45%;
}
.header .openbtn span:nth-of-type(1) {
  top: 16px;
}
.header .openbtn span:nth-of-type(2) {
  top: 23px;
}
.header .openbtn span:nth-of-type(3) {
  top: 30px;
}
.header span.active {
  background-color: #9A8E69;
}
.header span.active:nth-of-type(1) {
  top: 16px;
  left: 16px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.header span.active:nth-of-type(2) {
  opacity: 0;
}
.header span.active:nth-of-type(3) {
  top: 28px;
  left: 16px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
.header .header-main-nav {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
  justify-content: center;
  max-width: 1070px;
  width: calc(90% - 130px);
}
@media screen and (max-width: 991.9px) {
  .header .header-main-nav {
    display: none;
    max-width: calc(100% - 120px);
  }
}
.header .header-main-nav li {
  display: flex;
  align-items: center;
  margin-right: 20px;
  font-family: serif;
  padding: 0 10px;
  margin: 0 5px;
  font-size: 1.1rem;
}

nav.gnav {
  background: #292929;
  display: none;
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 98;
  top: 0px;
}
nav.gnav .gnav__wrap {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  width: 90%;
  padding: 100px 50px;
  margin: auto;
}
@media screen and (max-width: 991.9px) {
  nav.gnav .gnav__wrap {
    padding: 0;
    flex-direction: column;
  }
}
@media screen and (max-width:575.9px) {
  nav.gnav .gnav__wrap {
    width: 300px;
    padding: 0;
  }
}
nav.gnav .gnav__wrap .gnav__menu {
  -moz-column-count: 2;
       column-count: 2;
  width: 650px;
}
@media screen and (max-width: 991.9px) {
  nav.gnav .gnav__wrap .gnav__menu {
    max-width: 600px;
    width: 100%;
    -moz-column-count: 1;
         column-count: 1;
  }
}
@media screen and (max-width:575.9px) {
  nav.gnav .gnav__wrap .gnav__menu {
    -moz-column-count: 1;
         column-count: 1;
    margin-bottom: 30px;
    width: 100%;
  }
}
nav.gnav .gnav__wrap .gnav__menu .gnav__menu__item {
  margin: 0 0 40px 0;
}
@media screen and (max-width: 991.9px) {
  nav.gnav .gnav__wrap .gnav__menu .gnav__menu__item {
    text-align: center;
    margin: 0 0 30px 0;
  }
}
@media screen and (max-width:575.9px) {
  nav.gnav .gnav__wrap .gnav__menu .gnav__menu__item {
    margin-bottom: 20px;
  }
}
nav.gnav .gnav__wrap .gnav__menu .gnav__menu__item a {
  color: #c2b691;
  font-size: 1.2em;
  text-decoration: none;
  transition: 0.5s;
  font-family: serif;
  position: relative;
  padding-bottom: 5px;
}

.general-section {
  margin-top: 100px;
  position: relative;
  padding: 50px 0;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
.general-section .section-inner {
  width: 100%;
  max-width: 900px;
  margin: auto;
}
@media screen and (max-width: 991.9px) {
  .general-section .section-inner {
    max-width: 650px;
  }
}
@media screen and (max-width: 991.9px) {
  .general-section {
    margin-top: 50px;
  }
}
@media screen and (max-width:575.9px) {
  .general-section {
    margin-top: 50px;
  }
}
.general-section h2.section-title {
  text-align: center;
  text-transform: uppercase;
  font-family: serif;
  letter-spacing: 2px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-bottom: 80px;
  font-size: 1.4rem;
  font-weight: bold;
}
@media screen and (max-width: 991.9px) {
  .general-section h2.section-title {
    margin-bottom: 60px;
  }
}
@media screen and (max-width:575.9px) {
  .general-section h2.section-title {
    margin-bottom: 40px;
    font-size: 1.3rem;
  }
}
.general-section h2.section-title span.section-title-sub {
  display: block;
  font-size: 1rem;
  margin-top: 10px;
  letter-spacing: 1px;
}
.general-section h2.section-title.bubble:before {
  position: absolute;
  content: "";
  width: 200px;
  height: 200px;
  background-color: rgba(234, 234, 234, 0.3);
  border-radius: 50%;
  top: calc(50% - 50px);
  left: calc(50% - 60px);
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media screen and (max-width:575.9px) {
  .general-section h2.section-title.bubble:before {
    width: 120px;
    height: 120px;
    top: calc(50% - 20px);
    left: calc(50% - 40px);
  }
}
.general-section h2.section-title.bubble:after {
  position: absolute;
  content: "";
  width: 100px;
  height: 100px;
  background-color: rgba(138, 196, 208, 0.1);
  border-radius: 50%;
  top: calc(50% + 10px);
  left: calc(50% + 40px);
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media screen and (max-width:575.9px) {
  .general-section h2.section-title.bubble:after {
    width: 60px;
    height: 60px;
    top: calc(50% + 10px);
    left: calc(50% + 30px);
  }
}
.general-section .row .img-area,
.general-section .row .text-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.general-section .row .img-area {
  margin: auto;
  text-align: center;
}
.general-section .row .img-area img {
  max-width: 250px;
  margin: auto;
}

.red-btn {
  background-image: url("../img/common/button.png");
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 1rem;
  display: block;
  height: 53px;
  width: 300px;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}
.red-btn p {
  color: #F1E0B4;
  line-height: 53px;
  font-size: 1.1rem;
  letter-spacing: 1px;
}
@media screen and (max-width:575.9px) {
  .red-btn p {
    font-size: 1rem;
    letter-spacing: 4px;
  }
}
.red-btn.large {
  height: 60px;
  width: 340px;
}
@media screen and (max-width: 991.9px) {
  .red-btn.large {
    height: 53px;
    width: 300px;
  }
}
.red-btn.large p {
  line-height: 60px;
  font-size: 1.3rem;
  letter-spacing: 4px;
}
@media screen and (max-width: 991.9px) {
  .red-btn.large p {
    line-height: 53px;
    font-size: 1.1rem;
    letter-spacing: 1px;
  }
}
.red-btn:hover {
  opacity: 0.8;
  transition: 0.2s;
}

.pagination {
  padding: 20px 0;
  margin: 20px 0;
  justify-content: center;
}
@media screen and (max-width:575.9px) {
  .pagination {
    padding-top: 0;
    margin-top: 0;
  }
}
.pagination .nav-links {
  display: flex;
}
.pagination a {
  display: inline-block;
  margin: 0 5px;
  padding: 8px 14px 8px 16px;
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  color: #007bff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}
.pagination span,
.pagination a {
  color: #292929;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
}
.pagination .current {
  background-color: #3E83A8;
  color: #ffffff;
}
.pagination a:hover,
.pagination .current {
  background-color: #3E83A8;
  color: #ffffff;
}
.pagination a.prev,
.pagination a.next {
  font-weight: bold;
}

/* 無効なリンクのスタイル */
.pagination .disabled {
  color: #6c757d;
  pointer-events: none;
}

.news-ul {
  max-width: 650px;
  width: 100%;
  margin: auto;
  margin-bottom: 7rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width:575.9px) {
  .news-ul {
    margin-top: 2rem;
    margin-bottom: 4rem;
  }
}
.news-ul .news-li {
  border-bottom: 1px solid #9A8E69;
  transition: 0.2s;
}
.news-ul .news-li:first-child {
  border-top: 1px solid #9A8E69;
}
.news-ul .news-li a {
  display: flex;
  align-items: center;
  padding: 40px 20px;
  transition: 0.2s;
  position: relative;
}
@media screen and (max-width:575.9px) {
  .news-ul .news-li a {
    padding: 30px 0px;
    flex-direction: column;
    align-items: flex-start;
  }
}
.news-ul .news-li a data {
  font-size: 0.9rem;
  margin-right: 40px;
}
@media screen and (max-width:575.9px) {
  .news-ul .news-li a data {
    font-size: 0.8rem;
    width: 100%;
    text-align: left;
    margin-right: 0;
  }
}
.news-ul .news-li a h3 {
  margin-bottom: 0;
  font-size: 1rem;
  padding-right: 50px;
}
@media screen and (max-width: 991.9px) {
  .news-ul .news-li a h3 {
    margin-top: 10px;
  }
}
@media screen and (max-width:575.9px) {
  .news-ul .news-li a h3 {
    margin-top: 10px;
    font-size: 0.9rem;
    width: 100%;
    text-align: left;
    padding-right: 30px;
  }
}
.news-ul .news-li a .arrow {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 1px;
  margin-top: 31.1px;
  border-radius: 9999px;
  background-color: #9a8e69;
  transition: transform 0.3s ease;
  position: absolute;
  right: 0px;
  top: 38px;
}
@media screen and (max-width:575.9px) {
  .news-ul .news-li a .arrow {
    width: 25px;
  }
}
.news-ul .news-li a .arrow:before {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 15px;
  height: 1px;
  border-radius: 9999px;
  background-color: #9a8e69;
  transform: rotate(45deg);
  transform-origin: calc(100% - 0.5px) 50%;
  transition: transform 0.3s ease;
}
@media screen and (max-width:575.9px) {
  .news-ul .news-li a .arrow:before {
    width: 40px;
    width: 10px;
  }
}
.news-ul .news-li a:hover .arrow {
  transform: translateX(7px);
}
.news-ul .news-li:hover {
  opacity: 0.7;
}
.news-ul .news-li:hover.li-arrow:after {
  right: 15px;
}

body.single-news .side-category__outer {
  display: none;
}

.post-section {
  padding-bottom: 0;
}
.post-section .post-contents {
  margin-bottom: 10rem;
  margin-top: 5rem;
}
@media screen and (max-width:575.9px) {
  .post-section .post-contents {
    margin-bottom: 7rem;
    margin-top: 3rem;
  }
}
.post-section .post-contents h2 {
  font-size: 1.4rem;
  background-color: #EFEFEF;
  padding: 15px 15px 15px 25px;
  margin-bottom: 1.5rem;
  margin-top: 3rem;
  line-height: 33px;
  border-left: 2px solid #043355;
}
@media screen and (max-width:575.9px) {
  .post-section .post-contents h2 {
    font-size: 1.2rem;
    line-height: 28px;
    padding: 10px 10px 10px 15px;
  }
}
.post-section .post-contents h3 {
  font-size: 1.2rem;
  position: relative;
  padding-left: 35px;
  margin-bottom: 1rem;
  margin-top: 3rem;
}
.post-section .post-contents h3:before {
  content: "";
  background: #8AC4D0;
  width: 25px;
  height: 25px;
  position: absolute;
  border-radius: 50%;
  left: 0;
}
.post-section .post-contents h4 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 1rem;
  margin-top: 2rem;
}
.post-section .post-contents p {
  font-size: 1rem;
  margin-bottom: 1rem;
}
.post-section .post-contents ul,
.post-section .post-contents ol {
  background-color: #E8F4F6;
  border: dashed 2px #3E83A8;
  padding: 1.5rem 1.5rem 1.5rem 3rem;
  list-style: initial;
  margin-bottom: 2rem;
}
.post-section .post-contents ul li,
.post-section .post-contents ol li {
  margin-bottom: 10px;
  text-align: left;
  font-size: 1rem;
}
.post-section .post-contents ul li:last-child,
.post-section .post-contents ol li:last-child {
  margin-bottom: 0;
}
.post-section .post-contents ol {
  list-style: decimal;
}
.post-section .post-contents .point {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 1rem;
  margin-top: 2rem;
}
@media screen and (max-width:575.9px) {
  .post-section .post-contents .point {
    font-size: 1rem;
  }
}
.post-section .post-contents .point i {
  margin-right: 10px;
  color: #3E83A8;
  font-size: 1.3rem;
}
@media screen and (max-width:575.9px) {
  .post-section .post-contents .point i {
    font-size: 1.3rem;
    margin-right: 7px;
  }
}
.post-section .post-contents a {
  text-decoration: underline;
}
.post-section .post-contents a:hover {
  text-decoration: none;
}
.post-section .post-contents figure {
  margin: 1rem 0 3rem 0;
}

footer {
  font-size: 0.9rem;
  z-index: 0;
  width: 95%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1200px;
}
footer .breadcrumb {
  max-width: 1200px;
  margin: auto;
  padding: 10px 40px;
}
@media screen and (max-width:575.9px) {
  footer .breadcrumb {
    padding: 10px 10px 10px 10px;
  }
}
footer .footer-inner {
  margin: auto;
  padding: 100px 20px 100px 20px;
  border-top: 1px solid #9A8E69;
}
@media screen and (max-width:575.9px) {
  footer .footer-inner {
    padding: 75px 0px 100px 0px;
  }
}
footer .footer-inner .footer-logo {
  max-width: 180px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width:575.9px) {
  footer .footer-inner .footer-logo {
    max-width: 140px;
  }
}
footer .footer-inner .footer-icon {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
footer .footer-inner .footer-icon .icon__outer {
  border-radius: 50%;
}
footer .footer-inner .footer-icon figure {
  background: #F9F3E1;
  border-radius: 50%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  margin: 0 10px;
}
@media screen and (max-width:575.9px) {
  footer .footer-inner .footer-icon figure {
    margin: 0 5px;
  }
}
footer .footer-inner .footer-icon figure img {
  width: 22px;
  height: 22px;
}
footer .footer-inner .footer-ul {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  margin-bottom: 6rem;
}
@media screen and (max-width:575.9px) {
  footer .footer-inner .footer-ul {
    flex-direction: column;
    text-align: center;
    margin-bottom: 3rem;
  }
}
footer .footer-inner .footer-ul .footer-li {
  margin: 0 10px;
}
@media screen and (max-width:575.9px) {
  footer .footer-inner .footer-ul .footer-li {
    margin: 5px 10px;
  }
}
footer .footer-inner .sample-text {
  text-align: center;
  font-size: 0.9rem;
  font-family: sans-serif;
  font-weight: normal;
  opacity: 0.8;
}
@media screen and (max-width:575.9px) {
  footer .footer-inner .sample-text {
    line-height: 1.5;
    font-size: 0.8rem;
  }
}
footer .footer-inner .sample-text.ja {
  margin-bottom: 0;
}
@media screen and (max-width:575.9px) {
  footer .footer-inner .sample-text.en {
    margin-top: 1rem;
  }
}

iframe.wp-embedded-content {
  width: 100%;
  height: 178px;
  transition: 0.1s;
  box-shadow: 0 0 5px lightgray;
}
@media screen and (max-width: 767px) {
  iframe.wp-embedded-content {
    height: 98px;
  }
}
iframe.wp-embedded-content:hover {
  opacity: 0.8;
  text-decoration: none;
}

/* フェードイン用のクラス */
body.fade-in {
  opacity: 0;
  animation: fadeIn 0.5s ease-in forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}/*# sourceMappingURL=base-layout.css.map */