@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

p {
  margin: 1em 0;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

strong {
  font-weight: bold;
}

html {
  overflow-y: scroll;
  scroll-padding-top: 72px;
}

img {
  vertical-align: top;
  max-width: 100%;
}

small {
  font-size: 90%;
}

ol {
  padding-left: 1.2em;
}

*:focus {
  outline-color: #323232;
}

.wrapper {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 32px;
}
@media screen and (max-width: 1100px) {
  .wrapper {
    padding: 0 16px;
  }
}
@media screen and (max-width: 768px) {
  .wrapper {
    padding: 0 8px;
  }
}

.word_wrap {
  display: inline-block;
  font-weight: inherit;
}

.txt_mr {
  display: inline-block;
  margin-right: 2em;
}

.al_r {
  text-align: right;
}

.hide {
  position: relative;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.hide span {
  position: absolute;
  left: -1px;
  top: -1px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.btn-link {
  display: inline-block;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  line-height: 1.5;
  margin: 0;
  padding: 0.5em 2em 0.5em;
  border-radius: 8px;
  background: #0F68B2;
  color: #FFF;
  text-decoration: none;
  transition: inherit;
}
.btn-link span {
  font-weight: bold;
}
.btn-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 120%;
  height: 100%;
  background: #FFF;
  transform: skewX(-25deg);
}
.btn-link:hover {
  opacity: 1;
}
.btn-link:hover span {
  position: relative;
  z-index: 1;
  color: #0F68B2;
}
.btn-link:hover::before {
  animation: skewanime 0.5s forwards;
}
@media screen and (max-width: 768px) {
  .btn-link {
    padding: 0.5em 3.3em 0.5em 2.5em;
    font-size: 62.5%;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .btn-link {
    font-size: 71.4285714286%;
  }
}

.btnLinkSecondary {
  display: inline-block;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  margin: 0;
  padding: 0.82em 3.19em 0.74em;
  background: #FFF;
  color: #0F68B2;
  text-decoration: none;
  transition: inherit;
}
.btnLinkSecondary span {
  font-weight: bold;
}
.btnLinkSecondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 120%;
  height: 100%;
  background: #0F68B2;
  transform: skewX(-25deg);
}
.btnLinkSecondary:hover {
  opacity: 1;
  border: 1px #FFF solid;
  padding: calc(0.82em - 1px) calc(3.19em - 1px) calc(0.74em - 1px);
}
.btnLinkSecondary:hover span {
  position: relative;
  z-index: 1;
  color: #FFF;
}
.btnLinkSecondary:hover::before {
  animation: skewanime 0.5s forwards;
}
@media screen and (max-width: 768px) {
  .btnLinkSecondary {
    padding: 0.5em 3.3em 0.5em 2.5em;
    font-size: 62.5%;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .btnLinkSecondary {
    font-size: 71.4285714286%;
  }
}

.link-arrow {
  position: relative;
  padding-right: 2em;
  color: inherit;
  text-decoration: none;
}
.link-arrow svg {
  position: absolute;
  top: 0.4em;
  right: 0.5em;
  width: 0.875em;
  height: 0.75em;
  background-size: cover;
  transition: all 0.2s ease-in 0s;
}
.link-arrow svg path {
  fill: #564240;
}
.link-arrow:hover svg {
  right: 0;
}

.whiteLink {
  display: inline-block;
  position: relative;
  z-index: 1;
  align-items: center;
  overflow: hidden;
  padding: 0.875em 1.5em;
  background: #FFF;
  border-radius: 999em;
  color: #0F68B2;
  text-decoration: none;
  transition: all 0.2s ease-in 0s;
}
.whiteLink::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  width: 0;
  height: 0;
  margin: auto;
  border-radius: 999em;
  background: #0F68B2;
  transition: all 0.2s ease-in 0s;
}
.whiteLink:hover {
  background: #0F68B2;
  outline: 1px solid #FFF;
  color: #FFF;
  opacity: 1;
}
.whiteLink:hover::before {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1100px) {
  .whiteLink {
    padding: 0.5em 1em;
  }
}

.btnWide {
  display: block;
  position: relative;
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  padding: 0.875em 1.5em;
  background: linear-gradient(#0F68B2 0%, #455e9f 47.28%, #0F68B2 100%);
  border: none;
  font: inherit;
  color: #FFF;
  transition: all 0.2s ease-in 0s;
  text-align: center;
  cursor: pointer;
}
.btnWide__inner {
  font-weight: bold;
}

.hoverShine {
  overflow: hidden;
}
.hoverShine::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}
.hoverShine:hover::before {
  animation: shine 0.7s;
}

@keyframes skewanime {
  100% {
    left: -10%;
  }
}
.page-title {
  position: relative;
  margin: 0 0 24px;
  padding: 4vw 0 4vw;
  font-family: "Noto Serif JP", serif;
}
.page-title__title {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column-reverse;
  overflow: hidden;
  font-size: 200%;
  letter-spacing: 0.1em;
  color: #564240;
}
.page-title__title__inner {
  width: 100%;
}
.page-title__title__text--main {
  display: inline-block;
  position: relative;
  font-weight: bold;
}
.page-title__title__text--sub {
  display: block;
  width: 100%;
  margin: 0 0 0.4em;
  font-size: 90%;
}
.page-title__title__text::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 1px);
  left: calc(100% + 0.5em);
  width: 40vw;
  height: 2px;
  background: #564240;
}
.page-title__category {
  font-size: 90%;
}
.page-title__category__term {
  display: inline-block;
  margin: 1em;
}
.page-title__category__term a {
  display: inline-block;
  padding: 0 0.5em;
  background: #564240;
  color: #FFF;
  text-decoration: none;
}
.page-title__img {
  position: absolute;
  right: -2.5vw;
  top: 0%;
  width: 20vw;
  height: 20vw;
  overflow: hidden;
  border-radius: 50%;
  z-index: -1;
  line-height: 1;
  opacity: 0.5;
}
.page-title__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.single .page-title, .page-title.tax {
  margin: 0;
  padding: 3vw 0;
}

.breadcrumb__list {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumb__list li {
  display: inline-block;
}
.breadcrumb__list li + li::before {
  content: "»";
}
body.single .breadcrumb, .breadcrumb.tax {
  border: 1px #323232 solid;
  border-right: none;
  border-left: none;
}

.cards-list {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.cards-list__item {
  width: 30%;
  overflow: hidden;
  margin: 16px 0;
  border-radius: 8px;
}
.cards-list__link {
  display: block;
  box-sizing: border-box;
  height: 100%;
  padding-bottom: 3%;
  background: #ebe2d9;
  color: inherit;
  text-decoration: none;
}
.cards-list__link__inner {
  display: inline-block;
  box-sizing: border-box;
  padding: 0 3%;
}
.cards-list__link__inner--img {
  display: block;
  position: relative;
  overflow: hidden;
  margin-bottom: 0.5em;
  padding: 45.925% 0 0;
}
.cards-list__link__inner--img img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}
.cards-list__link__inner--date {
  position: relative;
}
.cards-list__link__inner--date::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: -40%;
  width: 40%;
  height: 1px;
  background: #564240;
  transform: translateY(-50%);
}
.cards-list__link__inner--category {
  float: right;
  display: inline-block;
  position: relative;
  z-index: 5;
  line-height: 1.5;
  margin: 0.3em 3% 0;
  padding: 0 0.2em;
  background: #564240;
  color: #FFF;
  font-size: 90%;
}
.cards-list__link__inner--title {
  display: block;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .cards-list__item {
    width: 48%;
  }
}
@media screen and (max-width: 480px) {
  .cards-list__item {
    width: 100%;
  }
  .cards-list__link__inner--title {
    display: block;
  }
}

.thumb_nail {
  margin: 4vw auto;
  padding: 0 16px;
  text-align: center;
}
.thumb_nail img {
  max-width: 720px;
}

.news-list {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  padding: 24px 20px;
}
.news-list__item {
  display: block;
}
.news-list__item__link {
  display: inline-block;
  box-sizing: border-box;
  width: 100%;
  line-height: 1.5;
  padding: 1em;
  color: inherit;
  text-decoration: none;
}
.news-list__item__inner {
  display: inline-block;
}
.news-list__item__inner--date {
  padding: 0em 0.5em;
  margin-right: 1em;
  border-radius: 2px;
  background: #AAA;
  color: #FFF;
  font-weight: 500;
  font-size: 90%;
}
.news-list__item__inner--ttl {
  margin-bottom: 24px;
}
.news-list__item + .news-list__item {
  border-top: 1px #ebe2d9 solid;
}
@media screen and (max-width: 480px) {
  .news-list {
    padding: 16px 8px;
  }
  .news-list__item--ttl {
    margin-bottom: 16px;
  }
}

.formWrap__form__inner__inputWrap {
  margin: 56px 0 0;
  width: 47%;
}
.formWrap__form__inner.formWrap__form__inner--inquiryDetails .formWrap__form__inner__inputWrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.formWrap__form__inner.formWrap__form__inner--inquiryDetails .formWrap__form__inner__inputWrap label {
  display: block;
  padding: 0.5em;
  font-weight: 500;
}
.formWrap__form__inner.formWrap__form__inner--inquiryDetails .formWrap__form__inner__inputWrap select {
  width: 47%;
  background: none;
  border: none;
}
.formWrap__form__inner.formWrap__form__inner--inquiryDetails .formWrap__form__inner__inputWrap select:focus {
  outline-color: #323232;
}
.formWrap__form__inner.formWrap__form__inner--inquiryDetails .formWrap__form__inner__inputWrap--txtarea {
  display: block;
}
.formWrap__form__inner.formWrap__form__inner--inquiryDetails .formWrap__form__inner__inputWrap--txtarea label {
  width: 100%;
}
.formWrap__form__inner--personalInfo__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.formWrap__form__inner--submit {
  margin: 48px 0 0;
  text-align: center;
}
.formWrap__form__inner--submit .btnWide[disabled] {
  background: #999;
  border: #CCC;
  cursor: default;
}
.formWrap__form__inner--submit .btnWide[disabled]:hover::before {
  display: none;
}
.formWrap__form textarea,
.formWrap__form input[type=text],
.formWrap__form input[type=tel] {
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding: 0.5em;
  border: none;
  border-radius: 4px;
  border-bottom: 2px #564240 solid;
  font: inherit;
}
.formWrap__form textarea:focus,
.formWrap__form input[type=text]:focus,
.formWrap__form input[type=tel]:focus {
  outline-color: #323232;
}
.formWrap__form textarea {
  height: 8em;
}
@media screen and (max-width: 480px) {
  .formWrap__form__inner__inputWrap {
    margin-top: 24px;
    width: 100%;
  }
  .formWrap__form__inner--submit {
    margin-top: 24px;
  }
}

.privacyPolicyCheck {
  margin-top: 48px;
  text-align: center;
}
.privacyPolicyCheck * {
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  .privacyPolicyCheck {
    margin-top: 24px;
  }
}

#cover {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 20000;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}

.modal {
  height: 1px;
  overflow: hidden;
}
.modal.active {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 30000;
  box-sizing: border-box;
  width: calc(100% - 32px);
  max-width: 900px;
  height: auto;
  max-height: 90%;
  padding: 8px 0 0;
  background: #FFF;
  transform: translate(-50%, -50%);
  border: 2px #CCC solid;
  border-radius: 16px;
}
.modal__inner--ttl {
  padding: 0 16px;
  font-size: 110%;
}
.modal__inner--body {
  box-sizing: border-box;
  height: calc(100% - 1.2em);
  padding: 16px;
  overflow-y: auto;
}
.modal__inner--close {
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 40px;
  overflow: hidden;
  border: none;
  border-radius: 2px;
  background: #888;
}
.modal__inner--close::before, .modal__inner--close::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 4px;
  background: #FFF;
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal__inner--close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.modal__inner--close span {
  position: absolute;
  display: block;
  top: -1px;
  left: -1px;
  overflow: hidden;
  height: 1px;
  width: 1px;
}
.modal--img.active {
  width: auto;
}
.modal--img.active .modal__inner--body {
  height: calc(90vh - 1.2em);
  overflow: hidden;
  text-align: center;
}
.modal--img.active .modal__inner--body img {
  max-height: 100%;
  border: 1px #999 solid;
}
@media screen and (max-width: 768px) {
  .modal--img.active {
    width: 95%;
  }
}

.serviceAreaMap {
  box-sizing: border-box;
  max-width: 706px;
  margin: 0 auto;
}
.serviceAreaMap__innerWrap {
  position: relative;
  overflow: hidden;
  padding-top: 83%;
  background: url("../img/japan_map.png") center center no-repeat;
  background-size: contain;
}
.serviceAreaMap__innerWrap__area, .serviceAreaMap__innerWrap__prefecture {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.two-column {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8vw;
}
.two-column__main {
  width: calc(100% - 276px);
}
.two-column__side {
  width: 260px;
}
.two-column__side .wp-block-heading {
  padding: 0 0.5em;
  background: #564240;
  color: #FFF;
  text-align: center;
}
* + .two-column__side .wp-block-heading {
  margin-top: 1.5em;
}
@media screen and (max-width: 768px) {
  .two-column {
    display: block;
  }
  .two-column__main {
    width: 100%;
  }
  .two-column__main .postArea {
    margin-bottom: 0;
  }
  .two-column__side {
    width: 100%;
    margin-top: 64px;
  }
}

.sidemenu-list {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.sidemenu-list__item {
  width: 100%;
  margin: 4px 0;
  border-bottom: 1px #0F68B2 solid;
  background: #FFF;
}
.sidemenu-list__item__inner {
  display: flex;
  position: relative;
  justify-content: start;
  box-sizing: border-box;
  height: 100%;
  line-height: 1.25;
  padding: 8px 8px;
  text-decoration: none;
}
.sidemenu-list__item__inner__col {
  display: flex;
  align-items: center;
}
.sidemenu-list__item__inner__col--icon {
  width: 56px;
  margin-right: 4px;
  overflow: hidden;
}
.sidemenu-list__item__inner__col--icon img {
  width: 100%;
  height: 100%;
  min-height: 48px;
  object-fit: cover;
}
.sidemenu-list__item__inner__col--txt {
  width: calc(100% - 80px);
  color: #0F68B2;
  font-weight: 500;
  font-size: 90%;
}
.sidemenu-list__item__inner__col--arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 4px;
  width: 12px;
  height: 12px;
  margin: auto;
  transition: all 0.2s ease-in 0s;
}
.sidemenu-list__item__inner__col--arrow path {
  fill: #564240;
}
.sidemenu-list__item__inner:hover .caseList__list__inner__col--arrow {
  right: 0;
}
@media screen and (max-width: 1100px) {
  .sidemenu-list__list {
    width: 30%;
  }
}
@media screen and (max-width: 768px) {
  .sidemenu-list__item {
    width: 48%;
    margin: 10px 0;
  }
}
@media screen and (max-width: 480px) {
  .sidemenu-list__item {
    width: 100%;
    margin: 10px 0;
  }
  .sidemenu-list__item__inner {
    justify-content: start;
  }
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: #ebe2d9;
  transition: 0.5s ease-out 1s;
}
.overlay__img {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  width: 200px;
  animation-name: fadeInAnime;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  opacity: 0;
  transform: translate(-50%, -50%);
}
.overlay--hide {
  top: -100%;
}
.overlay--hide .overlay__logo,
.overlay--hide .overlay__title,
.overlay--hide .overlay__titleInner {
  transform: translate(0, 0);
}
@media screen and (max-width: 1100px) {
  .overlay__inner {
    width: 100%;
    font-size: 150%;
  }
  .overlay__logo {
    width: 8em;
  }
}
@media screen and (max-width: 480px) {
  .overlay__inner {
    display: block;
    text-align: center;
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.map-wrap {
  position: relative;
  height: 0;
  overflow: hidden;
  padding-top: 90.4838709677%;
}
.map-wrap iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: none;
}
@media screen and (max-width: 768px) {
  .map-wrap {
    padding-top: 46.1538461538%;
  }
}

table.noborder {
  line-height: 1.5;
  border: none;
  font-family: "Noto Serif JP", serif;
  font-size: 100%;
}
table.noborder th, table.noborder td {
  padding: 0.2em;
  border: none;
  text-align: left;
}
table.noborder th {
  min-width: 5em;
  padding-right: 1em;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  table.noborder {
    font-size: 114.2857142857%;
  }
}

.parts_contact {
  margin: 92px 0 0;
  text-align: center;
}
.parts_contact .inner {
  display: inline-block;
  text-align: left;
}
.parts_contact .inner strong {
  font-size: 150%;
}
@media screen and (max-width: 768px) {
  .parts_contact .inner strong {
    font-size: 171.4285714286%;
  }
}
@media screen and (max-width: 768px) {
  .parts_contact {
    margin-top: 41px;
  }
  .parts_contact .inner {
    display: block;
    text-align: center;
  }
  .parts_contact .inner strong {
    font-size: 87.5%;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .parts_contact .inner strong {
    font-size: 100%;
  }
}

.step {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
}
.step li {
  width: 24.3980738363%;
  line-height: 1.3;
  font-size: 106.25%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .step li {
    font-size: 121.4285714286%;
  }
}
.step li .img_wrap {
  margin: 0 0 30px;
  text-align: center;
}
.step li + li {
  position: relative;
}
.step li + li::before {
  content: "";
  display: block;
  position: absolute;
  top: 33%;
  left: calc((17% + 51px) * -1);
  width: 51px;
  height: 37px;
  background: url("/img/icon_arrow_step.png") left top no-repeat;
}
@media screen and (max-width: 1100px) {
  .step li + li::before {
    top: 23%;
    left: calc((13% + 51px) * -1);
  }
}
@media screen and (max-width: 768px) {
  .step {
    display: block;
  }
  .step li {
    display: flex;
    width: 100%;
    align-items: center;
    font-size: 87.5%;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .step li {
    font-size: 100%;
  }
}
@media screen and (max-width: 768px) {
  .step li .img_wrap {
    width: 40%;
    margin: 0 16px 0 0;
  }
  .step li .inner_text {
    flex: 1;
  }
  .step li + li {
    margin: 46px 0 0;
  }
  .step li + li::before {
    top: -40px;
    left: 0;
    right: 0;
    width: 24.95px;
    height: 18.71px;
    margin: auto;
    background-size: contain;
    transform: rotate(90deg);
  }
}

.bgScroll {
  position: relative;
  padding-top: 60%;
  overflow: hidden;
}
.bgScroll img {
  position: absolute;
  width: 100%;
  left: 0;
  top: -28%;
  transition: all 8s linear 0s;
}

.bgScrollV {
  position: relative;
  padding-top: 101%;
  overflow: hidden;
}
.bgScrollV img {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0%;
}

.scroll.slideUp {
  opacity: 0;
  transform: translate(0, 24px);
  transition: all 0.4s ease-out 0s;
}
.scroll.slideUp.slide2 {
  transition: all 0.4s ease-out 0.3s;
}
.scroll.slideUp.slide3 {
  transition: all 0.4s ease-out 0.6s;
}
.scroll.slideUp.slide4 {
  transition: all 0.4s ease-out 0.9s;
}
.scroll.slideUp.slide5 {
  transition: all 0.4s ease-out 1.2s;
}
.scroll.slideUp[data-flg=true] {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 936px) {
  .scroll.slideUp {
    transition: all 0.4s ease-out 0s !important;
  }
}

.scroll.slideL {
  opacity: 0;
  transform: translate(20vw, 0);
  transition: all 0.4s ease-out 0s;
}
.scroll.slideL[data-flg=true] {
  opacity: 1;
  transform: translate(0, 0);
}

.scroll.slideR {
  opacity: 0;
  transform: translate(-20vw, 0);
  transition: all 0.4s ease-out 0s;
}
.scroll.slideR[data-flg=true] {
  opacity: 1;
  transform: translate(0, 0);
}

.scroll.slideInLeft {
  position: relative;
}
.scroll.slideInLeft .inner {
  display: inline-block;
  z-index: 1;
  overflow: hidden;
}
.scroll.slideInLeft .inner img {
  transform: scale(1.4, 1.4);
  transition: all 0.4s ease-out 0s;
}
.scroll.slideInLeft::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  background: #FFF;
  transition: all 0.4s ease-out 0s;
}
.scroll.slideInLeft[data-flg=true] .inner img {
  transform: scale(1, 1);
}
.scroll.slideInLeft[data-flg=true]::after {
  width: 0;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}
.floating {
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  margin: 0;
  padding-top: 4px;
  overflow: hidden;
  background: #564240;
}
.floating a {
  width: calc(33% - 13.3px);
  text-align: center;
}
.floating a.mail {
  background: #51ADEE;
}
.floating a.phone {
  background: #9a6964;
}
.floating a.line {
  background: #19BC03;
}
.floating a + a {
  margin-left: 4px;
}
@media screen and (max-width: 768px) {
  .floating {
    display: flex;
  }
}

.pagetop {
  right: 10px;
  z-index: 10000;
  display: block;
  width: 47px;
  height: 45px;
  margin: 0;
}
.pagetop a {
  display: block;
  height: 45px;
  transition: all 0.1s ease-in-out;
}
.pagetop a:hover {
  transform: translate(0, -5px);
}
@media screen and (max-width: 768px) {
  .pagetop {
    right: 0px;
    bottom: 0 !important;
    z-index: 99999;
    width: 36px;
    height: 33px;
  }
}

.modalTrigger--img {
  display: inline-block;
  position: relative;
  margin: 0.5em;
}
.modalTrigger--img img {
  display: block;
  border: 1px #999 solid;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.6);
}
.modalTrigger--img::after {
  content: "";
  display: block;
  display: block;
  position: absolute;
  right: 0.2em;
  top: 0.2em;
  width: 2em;
  height: 2em;
  background: url(../img/icon_glass.svg) left top no-repeat;
  background-size: 100% auto;
  opacity: 0.4;
}

.rt-reading-time {
  display: block;
  margin: 1em;
  padding-block: 0.5em;
  border: 2px #22B27F dashed;
  text-align: center;
  line-height: 1;
}
.rt-reading-time * {
  font-weight: bold;
}
.rt-reading-time .rt-prefix {
  display: inline-block;
  padding-left: 1.5em;
}
.rt-reading-time .rt-prefix::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-inline-end: 0.5em;
  vertical-align: top;
  background: url("../img/icon_time.svg");
  background-size: cover;
  transform: translateY(-0.1em);
}

.thumbnail {
  max-width: 720px;
  margin: 0 auto 2em;
  height: 360px;
  overflow: hidden;
}
.thumbnail__img {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
}

.postArea {
  margin-bottom: 64px;
}
.postArea em {
  font-style: italic;
}
.postArea h1 {
  margin: 3.5em 0 2em;
  font-size: 225%;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .postArea h1 {
    font-size: 257.1428571429%;
  }
}
.postArea h2 {
  line-height: 1.4;
  margin: 3em 0 2em;
  padding: 0.5em;
  border: 1px #ebe2d9 solid;
  border-right: none;
  border-left: none;
  font-weight: 500;
  font-size: 187.5%;
  font-family: "Noto Serif JP", serif;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .postArea h2 {
    font-size: 214.2857142857%;
  }
}
.postArea h3 {
  position: relative;
  margin: 2em 0 1em;
  padding-left: 0.6em;
  font-size: 150%;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .postArea h3 {
    font-size: 171.4285714286%;
  }
}
.postArea h3::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  margin: auto;
  background: #ebe2d9;
  border-radius: 2px;
}
.postArea h4 {
  margin: 1.5em 0 1em;
  font-size: 125%;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .postArea h4 {
    font-size: 142.8571428571%;
  }
}
.postArea h5 {
  margin: 1.5em 0 1em;
  font-size: 112.5%;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .postArea h5 {
    font-size: 128.5714285714%;
  }
}
.postArea h6 {
  margin: 1.5em 0 1em;
  font-size: 100%;
  font-weight: 500;
}
.postArea p {
  line-height: 1.8;
}
.postArea ul, .postArea ol {
  padding-left: 1.8em;
}
.postArea blockquote {
  display: block;
  -webkit-margin-before: 1em;
  -webkit-margin-after: 1em;
  -webkit-margin-start: 40px;
  -webkit-margin-end: 40px;
}
.postArea img {
  height: auto;
  max-width: 100%;
}
.postArea b {
  font-weight: bold;
}
.postArea table {
  max-width: 980px;
  margin: 2em auto;
  border-collapse: collapse;
  line-height: 1.5;
}
.postArea table tr {
  border: 1px #323232 solid;
  border-right: none;
  border-left: none;
}
.postArea table tr th {
  position: relative;
  height: auto !important;
  padding: 1em 0.5em;
  border: none;
  width: auto;
  vertical-align: middle;
}
.postArea table tr th::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 1px;
  height: calc(100% - 16px);
  margin: auto;
  background: #323232;
}
.postArea table tr td {
  width: auto;
  height: auto !important;
  padding: 1em 0.5em;
  border: none;
}
.postArea .text-b {
  font-weight: bold;
}
.postArea .aligncenter {
  display: block;
  margin: 0 auto;
}
.postArea .alignright {
  float: right;
  margin: 0 0 10px 20px;
}
.postArea .alignleft {
  float: left;
  margin: 0 20px 10px 0;
}
.postArea .wp-caption {
  border: 1px solid #ddd;
  text-align: left;
  background-color: #f3f3f3;
  padding: 5px;
  border-radius: 3px;
}
.postArea .wp-caption img {
  margin: 0;
  padding: 0;
  border: 0 none;
}
.postArea .wp-caption p.wp-caption-text {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}
.postArea .is-style-clear {
  overflow: hidden;
}
.postArea .has-text-align-center {
  text-align: center;
}
.postArea .has-text-align-right {
  text-align: right;
}
.postArea .toc {
  box-sizing: border-box;
  max-width: 640px;
  margin: 2em auto;
  padding: 1em;
  border: 1px #564240 solid;
  border-radius: 16px;
  background: #f2ece4;
}
.postArea .toc__title {
  margin: 0;
  padding: 0;
  border: none;
  font-size: 150%;
}
@media screen and (max-width: 768px) {
  .postArea .toc__title {
    font-size: 171.4285714286%;
  }
}
.postArea .toc__title::after {
  display: none;
}
.postArea .toc__outer {
  margin: 0 0 1em;
  color: #0F68B2;
}
.postArea .toc__outer > li {
  margin-top: 1em;
}
.postArea .toc__inner {
  margin: 0 0 1em;
}
.postArea .toc__inner > li {
  margin-top: 0.5em;
}
.postArea .sec-qa {
  margin: 2em auto;
}
.postArea .sec-qa dt {
  margin-top: 3em;
  font-size: 110%;
  border-bottom: 1px #564240 solid;
}
.postArea .sec-qa dt .show_hide {
  display: inline-block;
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
}
.postArea .sec-qa dt .q {
  margin-right: 0.2em;
  color: #564240;
  font-weight: bold;
  font-size: 130%;
  font-family: "Noto Serif JP", serif;
}
.postArea .sec-qa dd {
  padding: 0.5em;
  padding-left: 2.5em;
  background: #F1F1F1;
  text-indent: -1.9em;
}
.postArea .sec-qa dd .icon {
  margin-right: 0.2em;
  color: #564240;
  font-weight: bold;
  font-size: 130%;
  font-family: "Noto Serif JP", serif;
}

.pagenation {
  margin: 40px auto 0;
}
.pagenation__list {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  max-width: 800px;
  line-height: 1;
  margin: 0 auto;
}
.pagenation__list__item {
  margin: 0 0.5em;
}
.pagenation__list__item__link {
  display: inline-block;
  box-sizing: border-box;
  width: 1.5em;
  height: 1.5em;
  margin: 0 1%;
  padding: 0.2em 0.5em;
  color: inherit;
}
.pagenation__list__item__link--current {
  color: #FFF;
  border-radius: 50%;
  background: #564240;
}
.pagenation__list__item__link.prev, .pagenation__list__item__link.next {
  width: auto;
}

.wp-block-search {
  position: relative;
  overflow: hidden;
  line-height: 1;
}
.wp-block-search__label {
  position: absolute;
  left: -1px;
  top: -1px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.wp-block-search__inside-wrapper {
  display: flex;
  padding: 1em 0;
}
.wp-block-search__input {
  display: block;
  box-sizing: border-box;
  width: calc(100% - 4.5em);
  padding: 0.5em;
  border: none;
  border-radius: 4px;
  border: 1px #564240 solid;
  font: inherit;
}
.wp-block-search__input:focus {
  outline-color: #323232;
}
.wp-block-search__button {
  display: inline-block;
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
  display: block;
  box-sizing: border-box;
  width: 4em;
  margin-left: 0.5em;
  padding: 0;
  border-radius: 4px;
  background: linear-gradient(#0F68B2 0%, #455e9f 47.28%, #0F68B2 100%);
  color: #FFF;
  letter-spacing: 0.1em;
}

.wp-calendar-table {
  width: 100%;
  vertical-align: middle;
  text-align: center;
}
.wp-calendar-table a {
  display: block;
  width: 80%;
  margin: auto;
  background: linear-gradient(#0F68B2 0%, #455e9f 47.28%, #0F68B2 100%);
  color: #FFF;
  text-decoration: none;
}

html.menu_open_body {
  overflow: hidden;
}

body {
  position: relative;
  line-height: 2em;
  min-width: 320px;
  overflow: hidden;
  background: #FFF;
  color: #323232;
  font-family: "Sawarabi Gothic", "Yu Gothic", "Meiryo", sans-serif;
  background: #FFF;
}
@media screen and (max-width: 768px) {
  body {
    min-width: 320px;
  }
}

a {
  color: #0F68B2;
  text-decoration: underline;
  transition: all 0.2s ease-in 0s;
}
a:hover {
  opacity: 0.8;
}

.header {
  transition: all 0.2s ease-in 0s;
}
.header-contents {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  height: calc(100vh - (40px + 3.5em));
  min-height: 640px;
  padding: 0 5vw;
  overflow: hidden;
  text-align: center;
}
.header-contents__inner {
  line-height: 1.5;
  font-size: 180%;
}
.header-contents__inner--catch {
  position: relative;
  z-index: 5;
  font-family: "Noto Serif JP", serif;
  color: #FFF;
}
.header-contents__inner--catch p {
  margin-bottom: 0;
}
.header-contents__inner--catch p.large {
  font-size: 175%;
}
.header-contents__inner--video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.header-contents::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  background-image: radial-gradient(#111 30%, transparent 31%), radial-gradient(#111 30%, transparent 31%);
  background-size: 4px 4px;
  background-position: 0 0, 2px 2px;
}
@media screen and (max-width: 1100px) {
  .header-contents {
    height: 80vh;
  }
}
.header__site-name {
  position: relative;
  z-index: 5;
}
.header__menu .global-nav {
  width: 100%;
  transition: all 0.1s ease-in 0s;
}
.header__menu .global-nav__open-btn {
  display: none;
}
.header__menu .global-nav__list {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  padding-bottom: 40px;
  background: url("../img/line_pt1.png") left bottom repeat-x;
  background-size: auto 40px;
  transition: all 0.1s ease-in 0s;
}
.header__menu .global-nav__list__item {
  line-height: 1.5;
  font-size: 130%;
}
.header__menu .global-nav__list__item a {
  display: block;
  padding: 0.5em 0;
  color: #323232;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  text-decoration: none;
}
.header__menu .global-nav__list__item--search {
  display: none;
}
@media screen and (max-width: 1100px) {
  .header-contents {
    font-size: 1.6vw;
  }
  .header__site-name {
    width: 25vw;
    max-width: 200px;
    margin: 0 auto;
  }
  .header__menu .global-nav__open-btn {
    display: inline-block;
    border: none;
    background: none;
    font: inherit;
    cursor: pointer;
    position: fixed;
    top: 24px;
    right: 10px;
    z-index: 110;
    width: 30px;
    height: 30px;
    overflow: hidden;
    transition: all 0.2s ease-in 0s;
  }
  .header__menu .global-nav__open-btn::before {
    content: "";
    display: block;
    position: absolute;
    top: 4px;
    right: 0;
    width: 100%;
    height: 4px;
    border-radius: 9999px;
    background: #564240;
    transition: all 1s ease 0s;
  }
  .header__menu .global-nav__open-btn span {
    position: absolute;
    top: calc(50% - 2px);
    right: 0;
    width: 100%;
    height: 4px;
    border-radius: 9999px;
    background: #564240;
    transition: all 1s ease 0s;
  }
  .header__menu .global-nav__open-btn::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 4px;
    right: 0;
    width: 100%;
    height: 4px;
    border-radius: 9999px;
    background: #564240;
    transition: all 1s ease 0s;
  }
  .header__menu .global-nav__list {
    display: block;
    position: fixed;
    top: 0;
    z-index: 105;
    left: 100%;
    width: 80%;
    height: 100%;
    margin: 0;
    background: #564240;
    text-align: left;
    transition: all 0.7s ease-in 0s;
  }
  .header__menu .global-nav__list__item {
    display: block !important;
    margin: 0 0 0 10% !important;
    transition: all 1s ease 0s;
    opacity: 0;
    transform: translateX(60%);
    text-align: left;
  }
  .header__menu .global-nav__list__item a {
    color: #FFF;
    display: none;
    padding-left: 8px;
    background: none;
    text-align: left;
  }
  .header__menu .global-nav__list__item a:hover {
    padding-left: 16px;
  }
  .header__menu .global-nav__list__item + li {
    margin-top: 24px !important;
  }
  .header__menu .global-nav__list__item--search {
    position: absolute;
    left: 0;
    bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .header__menu {
    padding-top: 0;
  }
  .header__menu__contact {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
  }
  .header__menu__contact__col {
    box-sizing: border-box;
    width: 50%;
    margin: 0;
    padding: 0 !important;
  }
  .header__menu__contact__col a {
    justify-content: center;
    box-sizing: border-box;
    height: 100%;
    padding: 0.5em;
    border-radius: 0;
    text-align: center;
  }
  .header__menu__contact__col a small {
    display: inline-block;
  }
  .header__menu__contact__col + p {
    margin-left: 1px;
  }
}
@media screen and (max-width: 480px) {
  .header-contents {
    font-size: 2.5vw;
  }
  .header-contents__inner p:not(.large) {
    line-height: 2;
  }
  .header__menu__contact__col a {
    padding: 0.5em;
  }
}
.header-search {
  position: relative;
  overflow: hidden;
  line-height: 1.5;
  padding-right: 1em;
  font-size: 1rem;
}
.header-search__label {
  display: block;
  position: absolute;
  width: 1px;
  height: 1px;
  left: -1px;
  top: -1px;
  overflow: hidden;
}
.header-search__wrapper {
  display: flex;
  padding: 1em 0;
}
.header-search__input {
  display: block;
  box-sizing: border-box;
  width: calc(100% - 4.5em);
  padding: 0.5em;
  border: none;
  border-radius: 4px;
  border: 1px #564240 solid;
  font: inherit;
}
.header-search__input:focus {
  outline-color: #323232;
}
.header-search__button {
  display: inline-block;
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
  display: block;
  box-sizing: border-box;
  width: 4em;
  margin-left: 0.5em;
  padding: 0;
  border-radius: 4px;
  background: linear-gradient(#0F68B2 0%, #455e9f 47.28%, #0F68B2 100%);
  color: #FFF;
  letter-spacing: 0.1em;
}
body.sub .header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background: #FFF;
}
body.sub .header__site-name #siteName a {
  display: flex;
  align-items: center;
  max-width: 28em;
  font-family: "Noto Serif JP", serif;
  color: #564240;
  text-decoration: none;
}
body.sub .header__site-name #siteName a img {
  height: 5em;
  margin-right: 16px;
}
body.sub .header__site-name #siteName a .cafe {
  font-weight: bold;
  font-size: 200%;
}
body.sub .header__site-name #siteName a .family {
  font-weight: bold;
  font-size: 150%;
}
body.sub .header__site-name #siteName a:hover {
  opacity: 1;
}
@media screen and (max-width: 1100px) {
  body.sub .header__wrapper {
    border-bottom: 1px #564240 solid;
  }
  body.sub .header__site-name {
    width: auto;
    max-width: none;
  }
  body.sub .header__site-name #siteName {
    line-height: 1.5;
    font-size: 2vw;
  }
}
@media screen and (max-width: 1100px) {
  body.sub .header__site-name #siteName {
    line-height: 1.3;
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 768px) {
  body.sub .header__site-name #siteName {
    line-height: 1.2;
    font-size: 2vw;
  }
}
@media screen and (max-width: 480px) {
  body.sub .header__site-name #siteName {
    line-height: 1.2;
    font-size: 2.5vw;
  }
}

html.menu-open body {
  overflow: hidden;
}
html.menu-open .header-contents, html.menu-open .header__site-name {
  -ms-filter: blur(4px);
  filter: blur(4px);
}
html.menu-open .header__menu__contact, html.menu-open .header__menu__privacy {
  -ms-filter: blur(4px);
  filter: blur(4px);
}
html.menu-open .header__menu .global-nav__open-btn#menuOpen::before {
  transform: rotate(225deg);
  top: 35%;
  width: 100%;
  background: #FFF !important;
}
html.menu-open .header__menu .global-nav__open-btn#menuOpen span {
  transform: rotate(180deg);
  opacity: 0;
  background: #FFF !important;
}
html.menu-open .header__menu .global-nav__open-btn#menuOpen::after {
  transform: rotate(-225deg);
  top: 35%;
  width: 100%;
  background: #FFF !important;
}
html.menu-open .header__menu .global-nav__list {
  left: 20%;
  box-sizing: border-box;
  padding-top: 60px;
}
html.menu-open .header__menu .global-nav__list__item {
  opacity: 1;
  transform: translateX(0);
}
html.menu-open .header__menu .global-nav__list__item a {
  display: inline-block;
  color: #FFF;
}
@media screen and (min-width: 1101px) {
  html.menu-open .header-contents, html.menu-open .header__site-name {
    -ms-filter: blur(0);
    filter: blur(0);
  }
  html.menu-open .header__menu .global-nav__list {
    padding: 0 0 40px;
  }
  html.menu-open .header__menu .global-nav__list__item a {
    color: #323232;
  }
}
html.menu-open main,
html.menu-open footer {
  -ms-filter: blur(4px);
  filter: blur(4px);
}
@media screen and (min-width: 1101px) {
  html.menu-open main,
  html.menu-open footer {
    -ms-filter: blur(0);
    filter: blur(0);
  }
}

body.top .header__menu .global-nav__open-btn::before,
body.top .header__menu .global-nav__open-btn span, body.top .header__menu .global-nav__open-btn::after {
  background: #FFF;
}

body.sub {
  padding-top: calc(10em + 40px);
}
@media screen and (max-width: 1100px) {
  body.sub {
    padding-top: 10.5vw;
  }
}
@media screen and (max-width: 768px) {
  body.sub {
    padding-top: 14.5vw;
  }
}
@media screen and (max-width: 480px) {
  body.sub {
    padding-top: 17.5vw;
  }
}

body.js_scroll {
  padding-top: calc(40px + 3.5em);
}
@media screen and (max-width: 1100px) {
  body.js_scroll {
    padding-top: 0;
  }
}
body.js_scroll .header__menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
  width: 100%;
  background: #FFF;
}
@media screen and (max-width: 1100px) {
  body.js_scroll .header__menu {
    position: static;
    background: none;
  }
  body.js_scroll .header .global-nav__open-btn#menuOpen {
    top: 12px;
  }
  body.js_scroll .header .global-nav__open-btn#menuOpen::before,
  body.js_scroll .header .global-nav__open-btn#menuOpen span, body.js_scroll .header .global-nav__open-btn#menuOpen::after {
    background: #564240;
  }
}

.services-menu {
  padding: 8vw 0;
  background: #ebe2d9;
}
.services-menu__title {
  margin: 0 0 6vw;
}
.services-menu__title__inner--txt {
  font-family: "Noto Serif JP", serif;
  font-size: 250%;
  text-align: center;
}
.services-menu__list {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.services-menu__list__item {
  width: 23%;
  line-height: 2;
  overflow: hidden;
  margin: 16px 0;
  border-radius: 16px;
}
@media screen and (max-width: 936px) {
  .services-menu__list__item {
    width: 31%;
  }
}
@media screen and (max-width: 768px) {
  .services-menu__list__item {
    width: 48%;
  }
}
.services-menu-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.services-menu-link__inner--title {
  padding: 0.5em 0;
  background: #FFF;
  font-weight: bold;
  text-align: center;
}
.services-menu-link__inner--title__head {
  display: inline-block;
  position: relative;
  line-height: 1.5;
  padding-right: 2em;
  font-size: 120%;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
}
.services-menu-link__inner--title__head svg {
  position: absolute;
  top: 0.4em;
  right: 0.5em;
  width: 0.875em;
  height: 0.75em;
  background-size: cover;
  transition: all 0.2s ease-in 0s;
}
.services-menu-link__inner--title__head svg path {
  fill: #564240;
}
.services-menu-link__inner--img {
  position: relative;
  overflow: hidden;
  padding-top: 65.925%;
}
.services-menu-link__inner--img img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  transition: all 0.2s ease-in 0s;
}
.services-menu-link:hover {
  opacity: 1;
}
.services-menu-link:hover .services-menu-link__inner--title__head svg {
  right: 0.1em;
}
.services-menu-link:hover .services-menu-link__inner--img img {
  transform: translate(-50%, -50%) scale(1.05, 1.05);
}

.childIndex {
  padding: 4vw 0;
  background: #ebe2d9;
}
.childIndex__list {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 0 auto;
}
.childIndex__list__item {
  width: 23%;
  line-height: 2;
  overflow: hidden;
  margin: 16px 0;
  border-radius: 16px;
}
@media screen and (max-width: 936px) {
  .childIndex__list__item {
    width: 31%;
  }
}
@media screen and (max-width: 768px) {
  .childIndex__list__item {
    width: 48%;
  }
}
.childIndex-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.childIndex-link__inner--title {
  padding: 0.5em 0;
  background: #FFF;
  font-weight: bold;
  text-align: center;
}
.childIndex-link__inner--title__head {
  display: inline-block;
  position: relative;
  line-height: 1.5;
  padding-right: 2em;
  font-size: 120%;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
}
.childIndex-link__inner--title__head svg {
  position: absolute;
  top: 0.4em;
  right: 0.5em;
  width: 0.875em;
  height: 0.75em;
  background-size: cover;
  transition: all 0.2s ease-in 0s;
}
.childIndex-link__inner--title__head svg path {
  fill: #564240;
}
.childIndex-link__inner--img {
  position: relative;
  overflow: hidden;
  padding-top: 65.925%;
}
.childIndex-link__inner--img img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  transition: all 0.2s ease-in 0s;
}
.childIndex-link:hover {
  opacity: 1;
}
.childIndex-link:hover .childIndex-link__inner--title__head svg {
  right: 0.1em;
}
.childIndex-link:hover .childIndex-link__inner--img img {
  transform: translate(-50%, -50%) scale(1.05, 1.05);
}

.top-sec {
  padding: 8vw 0 calc(8vw + 40px);
  background: url(../img/line_pt1.png) left bottom repeat-x;
  background-size: auto 40px;
}
.top-sec__inner--head {
  display: flex;
  align-items: center;
  margin: 0 0 3vw;
}
.top-sec__title {
  width: 100%;
  font-family: "Noto Serif JP", serif;
  font-size: 250%;
}
.top-sec__head-link {
  width: 100%;
  text-align: right;
}
.top-sec__head-link a {
  display: inline-block;
}
.top-sec--guide {
  padding-bottom: 8vw;
  background: none;
}
.top-sec--news {
  padding-bottom: calc(2vw + 40px);
}
.top-sec--news__wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.top-sec--news .top-sec__inner--head {
  display: block;
  width: 40%;
}
.top-sec--news .top-sec__inner--body {
  width: 60%;
}
.top-sec--news .top-sec__inner--img {
  width: 100%;
  margin-top: 2vw;
  text-align: right;
}
.top-sec--news .top-sec__inner--img img {
  width: 40%;
  max-width: 440px;
}
.top-sec--news .top-sec__title {
  line-height: 1.5;
}
.top-sec--news .top-sec__title small {
  font-size: 80%;
}
.top-sec--news .top-sec__head-link {
  text-align: left;
}
@media screen and (max-width: 480px) {
  .top-sec--news__wrapper {
    display: block;
  }
  .top-sec--news .top-sec__inner--head {
    display: flex;
    width: 100%;
  }
  .top-sec--news .top-sec__inner--body {
    width: 100%;
  }
  .top-sec--news .top-sec__inner--img img {
    width: 60%;
  }
  .top-sec--news .top-sec__head-link {
    text-align: right;
  }
}
.top-sec--cafe-menu {
  position: relative;
  z-index: 1;
  background-color: #f2ece4;
}
.top-sec--cafe-menu .top-sec__title {
  width: auto;
  margin-right: 2vw;
}
.top-sec--cafe-menu .top-sec__head-txt {
  max-width: 30em;
}
.top-sec--cafe-menu .top-sec__inner--body {
  display: flex;
  justify-content: center;
}
.top-sec--cafe-menu .panel {
  width: 30%;
  margin: 16px;
  padding: 8px;
  border-radius: 2em;
  background: #FFF;
}
.top-sec--cafe-menu .panel__inner {
  box-sizing: border-box;
  height: 100%;
  padding: 1em;
  border: 8px #ebe2d9 solid;
  border-radius: 2em;
}
.top-sec--cafe-menu .panel__inner__title {
  font-family: "Noto Serif JP", serif;
  font-size: 150%;
  text-align: center;
}
.top-sec--cafe-menu__img__item {
  display: inline-block;
  position: absolute;
  z-index: -1;
  max-width: 21vw;
}
.top-sec--cafe-menu__img__item--01 {
  top: 0;
  right: 4vw;
}
.top-sec--cafe-menu__img__item--02 {
  left: 0;
  top: 50%;
}
.top-sec--cafe-menu__img__item--03 {
  right: 0;
  bottom: 5vw;
}
@media screen and (max-width: 768px) {
  .top-sec--cafe-menu .top-sec__inner--head {
    display: block;
  }
  .top-sec--cafe-menu .panel {
    width: 45%;
  }
  .top-sec--cafe-menu__img {
    display: flex;
    justify-content: space-around;
    margin-top: 7vw;
    text-align: center;
  }
  .top-sec--cafe-menu__img__item {
    position: static;
    width: 30vw !important;
    max-width: none;
  }
  .top-sec--cafe-menu__img__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .top-sec--cafe-menu__img__item--02 img {
    transform: translateY(5vw);
  }
}
@media screen and (max-width: 480px) {
  .top-sec--cafe-menu .top-sec__inner--body {
    flex-wrap: wrap;
  }
  .top-sec--cafe-menu .panel {
    width: 95%;
  }
}

.bg-line {
  padding: 8vw 0 calc(8vw + 40px);
  background: url(../img/line_pt1.png) left bottom repeat-x, url(../img/line_pt1.png) left top repeat-x;
  background-color: #f2ece4;
  background-size: auto 40px;
}
.bg-line__innerWrap__inner {
  width: 100%;
}
.bg-line__innerWrap__inner--ttl {
  margin-bottom: 4vw;
  font-family: "Noto Serif JP", serif;
  font-size: 250%;
  text-align: center;
}
.bg-line__innerWrap__inner--head-txt {
  text-align: center;
}

.search-result__outer {
  padding: 1em;
}
.search-result__outer + .search-result__outer {
  border-top: 1px #ebe2d9 solid;
}
.search-result__inner {
  display: inline-block;
  line-height: 1.5;
}
.search-result__inner a {
  color: inherit;
}
@media screen and (max-width: 768px) {
  .search-result__inner--ttl {
    display: block;
  }
}
.search-result__inner--date {
  padding: 0em 0.5em;
  margin: 0 1em;
  border-radius: 2px;
  background: #AAA;
  color: #FFF;
  font-weight: 500;
  font-size: 90%;
}
.search-result__inner--type__text {
  padding: 0em 0.5em;
  border-radius: 2px;
  background: #564240;
  color: #FFF;
  font-weight: 500;
  font-size: 90%;
}

.footer-outer {
  padding: 0 0 calc(2vw + 40px);
  background: #f2ece4 url(../img/line_pt1.png) left bottom repeat-x;
  background-size: auto 40px;
}
@media screen and (max-width: 480px) {
  .footer-outer {
    padding-bottom: 40px;
  }
}
.footer-inner-wrapper {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 3vw 0;
}
.footer-inner--logo {
  width: 100%;
  margin: 0 0 3vw;
  text-align: center;
}
.footer-inner--logo__logo a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #564240;
  font-size: 200%;
  font-family: "Noto Serif JP", serif;
  text-decoration: none;
}
.footer-inner--logo__logo a .logo {
  height: 3em;
  margin-right: 16px;
}
.footer-inner--logo__logo a:hover {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .footer-inner--logo {
    text-align: left;
  }
}
@media screen and (max-width: 480px) {
  .footer-inner--logo__logo a {
    font-size: 150%;
  }
}
.footer-inner--map {
  width: 40%;
}
.footer-inner--info {
  width: 30em;
}
.footer-inner__contact-list {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-flow: column;
  justify-content: space-around;
  height: 100%;
}
.footer-inner__contact-list__item__link {
  display: flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
  font-size: 150%;
  line-height: 1.5;
}
.footer-inner__contact-list__item__icon {
  height: 3em;
  margin-right: 16px;
}
.footer-inner__contact-list__item__text {
  width: 8em;
}
.footer-inner__contact-list__item__qr {
  width: 80px;
}
@media screen and (max-width: 768px) {
  .footer-inner--map {
    width: 100%;
  }
  .footer-inner--info {
    width: 100%;
  }
  .footer-inner__contact-list {
    display: block;
  }
  .footer-inner__contact-list__item {
    margin-top: 7vw;
  }
}
.footer-nav {
  padding: 1em 0;
}
.footer-nav__list {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-around;
}
.footer-nav__list--sub {
  justify-content: end;
}
.footer-nav .global-nav__list__item {
  padding: 0 1em;
}
.footer-nav .global-nav__list__item a {
  color: inherit;
  text-decoration: none;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
}
@media screen and (max-width: 480px) {
  .footer-nav {
    padding-bottom: 0;
  }
  .footer-nav__list {
    display: block;
  }
  .footer-nav .global-nav__list__item {
    padding: 0;
    border-top: 1px #564240 solid;
  }
  .footer-nav .global-nav__list__item a {
    display: block;
    padding: 1em;
  }
}

.footer-copyright {
  font-size: 87.5%;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer-copyright {
    font-size: 100%;
  }
}
.footer-copyright p {
  margin: 0;
  padding: 0.5em;
}
.footer-copyright__link a {
  color: inherit;
  text-decoration: none;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .footer-copyright {
    padding-bottom: 5em;
  }
}
@media screen and (max-width: 480px) {
  .footer-copyright {
    padding-bottom: 6em;
  }
  .footer-copyright p {
    width: 100%;
  }
}

footer,
main {
  transition: all 1s ease 0s;
}
footer p,
main p {
  line-height: 1.5;
}
@media screen and (max-width: 1100px) {
  footer,
  main {
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  footer,
  main {
    font-size: 2.1333333333vw;
  }
  footer p,
  main p {
    font-size: 100%;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  footer p,
  main p {
    font-size: 114.2857142857%;
  }
}
@media screen and (max-width: 480px) {
  footer,
  main {
    font-size: 2.9333333333vw;
  }
}

@media screen and (min-width: 769px) {
  .mq_show {
    display: none;
  }
  #menu_open {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .mq_hide {
    display: none;
  }
  .mq_show {
    display: block;
    position: static;
    width: auto;
    height: auto;
  }
  span.mq_show {
    display: inline;
  }
}
.contact-list {
  display: flex;
  list-style: none;
  padding: 0;
  justify-content: space-between;
}

/*# sourceMappingURL=style.css.map */
