@charset "UTF-8";
/* ━━━━━━━━━━━━━━━━━━━━━━━━ */
/* ▼ 夢ふぉと独自スタイル */
/* ━━━━━━━━━━━━━━━━━━━━━━━━ */
#wpadminbar {
  display: none !important;
}

html {
  margin-top: 0 !important;
}

@media screen and (max-width: 1366px) {
  .laptop-hidden {
    display: none;
  }
}

.mobile-visible {
  display: none;
}
@media only screen and (max-width: 767.9px) {
  .mobile-visible {
    display: block;
  }
}

.mobile-hidden {
  display: block;
}
@media only screen and (max-width: 767.9px) {
  .mobile-hidden {
    display: none;
  }
}

.px600-visible {
  display: none;
}
@media only screen and (max-width: 600px) {
  .px600-visible {
    display: block;
  }
}

.small-visible {
  display: none;
}
@media screen and (max-width: 412px) {
  .small-visible {
    display: block;
  }
}

.xsmall-visible {
  display: none;
}
@media only screen and (max-width: 390px) {
  .xsmall-visible {
    display: block;
  }
}

.small-hidden {
  display: block;
}
@media screen and (max-width: 412px) {
  .small-hidden {
    display: none;
  }
}

.small-again-hidden {
  display: none;
}
@media only screen and (max-width: 767.9px) {
  .small-again-hidden {
    display: block;
  }
}
@media screen and (max-width: 412px) {
  .small-again-hidden {
    display: none;
  }
}

.section-title {
  margin-bottom: 4rem;
}
@media only screen and (max-width: 767.9px) {
  .section-title {
    margin-bottom: 3rem;
  }
}

.title-main {
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
}

small.note {
  display: block;
  font-size: 0.875rem;
  text-align: right;
  margin-top: 0.4em;
  opacity: 0.8;
}

/* 個別投稿ページ */
.post-title {
  max-width: 960px;
  font-size: 2.4rem;
  text-align: center;
  line-height: 1.35;
  padding: 0 20px;
  margin: 6rem auto 6rem;
}
@media only screen and (max-width: 767.9px) {
  .post-title {
    font-size: 2rem;
    margin: 4rem auto 2rem;
  }
}
@media screen and (max-width: 412px) {
  .post-title {
    text-align: left;
  }
}

.img {
  max-width: 960px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  padding: 0 20px;
}
@media only screen and (max-width: 767.9px) {
  .img {
    margin-bottom: 0;
  }
}
.img figure {
  margin: 0;
}
.img img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.img .wp-block-image figure {
  margin-bottom: 3rem;
}

.sub-title {
  display: table;
  margin: 0 auto 2rem !important;
}

.description {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
  font-size: 1.8rem;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
@media only screen and (max-width: 767.9px) {
  .description {
    font-size: 1.6rem;
    line-height: 1.4;
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 390px) {
  .description {
    font-size: 1.4rem;
  }
}
.description > * {
  margin: 0 0 1.2em;
}
.description p {
  margin: 0 0 1.2em;
}
.description h2, .description h3, .description h4 {
  line-height: 1.4;
  margin: 2.2em 0 1em;
  font-weight: 700;
}
.description h2 {
  font-size: 2.4rem;
}
@media only screen and (max-width: 767.9px) {
  .description h2 {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 390px) {
  .description h2 {
    font-size: 1.8rem;
  }
}
.description h3 {
  font-size: 2.1rem;
}
@media only screen and (max-width: 767.9px) {
  .description h3 {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 390px) {
  .description h3 {
    font-size: 1.6rem;
  }
}

.search-category-title {
  width: 263px;
  background-color: #FBE975;
  border-radius: 100px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 1.5rem 1rem;
  position: relative;
  z-index: 2;
  margin: auto;
  margin-bottom: -3rem;
}
.search-category-title:after {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  border: 1px dashed #775A34;
  border-radius: 30px;
  z-index: -1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.search-category-title.trigger {
  cursor: pointer;
}
.search-category-title.trigger.active:before {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.search-category-title.trigger:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 1.5rem;
  width: 22px;
  height: 22px;
  background: url(../images/common/arr.svg) center center no-repeat #775A34;
  border-radius: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.search-category-title.blue {
  color: #fff;
  background-color: #77CAFF;
}
.search-category-title.blue:after {
  border-color: #fff;
}
.search-category-title.green {
  color: #fff;
  background-color: #9fc22a;
}
.search-category-title.green:after {
  border-color: #fff;
}

.search-category {
  border: 5px solid #FBE975;
  border-radius: 50px;
  padding: 6rem 4rem 4.5rem;
  background: url(../images/common/bg-repeat.png);
  margin-bottom: 5rem;
}
@media only screen and (max-width: 767.9px) {
  .search-category {
    border-width: 2px;
    border-radius: 20px;
    padding: 5rem 1rem 2rem 2rem;
  }
  .search-category a {
    font-size: 1.5rem;
  }
  .search-category a:hover {
    color: #F2A522;
  }
  .search-category.bgblue a:hover {
    background-color: #77CAFF;
    color: #fff;
  }
  .search-category.bggreen a:hover {
    background-color: #CAEE51;
    color: #fff;
    border-color: #fff;
  }
}
@media screen and (max-width: 1366px) {
  .search-category a:hover {
    color: #F2A522;
  }
  .search-category.bgblue a:hover {
    background-color: #77CAFF;
    color: #fff;
  }
  .search-category.bggreen a:hover {
    background-color: #CAEE51;
    color: #fff;
    border-color: #fff;
  }
}

.search-category-box {
  margin: 0 0 8rem;
}
@media only screen and (max-width: 767.9px) {
  .search-category-box {
    margin: 0 0 5rem;
  }
}

.search-category-ttl {
  width: 263px;
  background-color: #FBE975;
  border-radius: 100px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 1.5rem 1rem;
  position: relative;
  z-index: 2;
  margin: auto;
  margin-bottom: -3rem;
}
.search-category-ttl:after {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  border: 1px dashed #775A34;
  border-radius: 30px;
  z-index: -1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.search-category-ttl.trigger {
  cursor: pointer;
}
.search-category-ttl.trigger.active:before {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.search-category-ttl.trigger:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 1.5rem;
  width: 22px;
  height: 22px;
  background: url(../images/common/arr.svg) center center no-repeat #775A34;
  border-radius: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.search-category-ttl.blue {
  color: #fff;
  background-color: #77CAFF;
}
.search-category-ttl.blue:after {
  border-color: #fff;
}
.search-category-ttl.green {
  color: #fff;
  background-color: #9fc22a;
}
.search-category-ttl.green:after {
  border-color: #fff;
}

.search-category.bgblue {
  background: #E1EFF8;
  border: none;
}
.search-category.bggreen {
  background: #E8F3C2;
  border: none;
}
.search-category li {
  margin-right: 3rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 468px) {
  .search-category li {
    width: 100%;
    text-align: center;
    margin-right: 0;
  }
}
.search-category li:last-child {
  margin-right: 0;
}

.search-category-anchor a {
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding-right: 3rem;
  font-size: 1.8rem;
  font-weight: 500;
}
.search-category-anchor a:after {
  content: "";
  position: absolute;
  top: 12px;
  right: 0;
  margin: auto;
  background: url(../images/common/arr-org.svg) center center no-repeat;
  width: 11px;
  height: 12px;
  background-size: 100%;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media only screen and (max-width: 767.9px) {
  .search-category-anchor a {
    padding-right: 2em;
  }
  .search-category-anchor a:after {
    top: 7px;
  }
}

.search-category-list li {
  margin-right: 2rem;
  margin-bottom: 2rem;
}
.search-category-list a {
  background-color: #fff;
  border-radius: 30px;
  text-align: center;
  padding: 0.5rem 2rem;
  font-size: 1.6rem;
  text-decoration: none;
}
.search-category-list.bdr a {
  border: 1px solid #775A34;
}
@media only screen and (max-width: 767.9px) {
  .search-category-list a {
    font-size: 1.5rem;
  }
  .search-category-list.bdr a {
    border: 1px solid #775A34;
  }
}

.search-category-tags li {
  margin-right: 1rem;
  margin-bottom: 1rem;
}
.search-category-tags a {
  background-color: #FBF7E7;
  border-radius: 30px;
  text-align: center;
  padding: 0.5rem 1.5rem;
  font-size: 1.4rem;
  text-decoration: none;
  position: relative;
  z-index: 1;
  display: block;
}
.search-category-tags a:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border: 1px dashed #775A34;
  border-radius: 30px;
  z-index: -1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media only screen and (max-width: 767.9px) {
  .search-category-tags li {
    margin-right: 0.2rem;
    margin-bottom: 0.5rem;
  }
  .search-category-tags a {
    font-size: 1.2rem;
  }
}

.deco-h2, .deco-h3 {
  padding: 0.4rem 1.2rem;
  background: aliceblue;
  border: 3px solid #8CB3D2;
  border-top: none;
  border-right: none;
  border-radius: 6px;
  -webkit-box-shadow: 0 2px 0 rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 0 rgba(0, 0, 0, 0.06);
}

.deco-h3 {
  background: white;
  border: 1px solid #8CB3D2;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.deco-h4 {
  display: inline-block;
  background: white;
  border-bottom: 3px solid #8CB3D2;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.wp-block-group.deco-bg-orange {
  margin: 2rem 0 !important;
  padding: 3rem 2rem !important;
  border-left: 4px solid #FBE975 !important;
  background-color: #FFF8DC !important;
  border-radius: 6px !important;
}
.wp-block-group.deco-bg-orange h4 {
  margin-top: 0 !important;
}
.wp-block-group.deco-bg-orange p {
  margin: 0;
}

.small {
  color: #f26b6d;
  font-size: 0.85em;
  line-height: 1.6;
  font-weight: 500;
}

.large {
  color: #f26b6d;
  font-size: 1.2em;
  line-height: 1.6;
  font-weight: 800;
}

@media screen and (max-width: 1366px) {
  .laptop-hidden {
    display: none;
  }
}

.mobile-visible {
  display: none;
}
@media only screen and (max-width: 767.9px) {
  .mobile-visible {
    display: block;
  }
}

.small-visible {
  display: none;
}
@media screen and (max-width: 412px) {
  .small-visible {
    display: block;
  }
}

.xsmall-visible {
  display: none;
}
@media only screen and (max-width: 390px) {
  .xsmall-visible {
    display: block;
  }
}

hr {
  border: 0;
  border-top: 1px solid #e5e5e5;
  margin: 3rem 0;
}

.lb-nav a.lb-prev, .lb-nav a.lb-next {
  opacity: 1 !important;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100) !important;
  position: relative;
}

.lb-data .lb-caption {
  font-size: 3rem !important;
}

.lb-data .lb-number {
  display: none !important;
}

.lb-data .lb-close {
  opacity: 1 !important;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100) !important;
}

.page-up {
  z-index: 9998;
}

.sec-contact__inner .container {
  margin-bottom: 0;
}
/*# sourceMappingURL=request.css.map */