@charset "utf-8";
@media (min-width: 741px) {
  body {
    background: url(../img/header-bg.jpg) no-repeat;
    background-size: 100%;
    width: 100%;
  }
}
/* ------------------------
  ヘッダー
------------------------ */
.header-inner {
  display: flex;
  align-items: center;
  padding: 10px 0;
}
.logo {
  max-width: 160px;
}
.logo-img {
  display: block;
}
.navi-list__item {
  font-size: 0.875rem;
  margin-right: 1em;
}
.navi-list__link {
  color: #242424;
}

/* 検索 */
#header-search {
  display: none;
}

/* ハンバーガーメニュー */
.sp-menu {
  background: #F1641E;
  border-radius: 4px;
  padding: 5px;
  margin-left: auto;
  z-index: 100;
}
.toggle-btn {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  transition: all .5s;
  cursor: pointer;
  z-index: 3;
}
.toggle-btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background-color: #fff;
  transition: all .5s;
}
.toggle-btn span:nth-child(1) {
  top: 3px;
}
.toggle-btn span:nth-child(2) {
  top: 9px;
}
.toggle-btn span:nth-child(3) {
  bottom: 3px;
}

@media (max-width: 740px) {
  #header {
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 1px 5px #c9f5d2;
    z-index: 10;
  }
  .navi {
    position: fixed;
    top: 0;
    right: 0;
    background: #fff;
    width: 80%;
    height: 100vh;
    z-index: 100;
    transform: translateX(100%);
    transition: all .5s;
  }
  .active .navi {
    transform: translateX(0);
  }
  .search-btn {
    display: none;
  }
  .navi-list {
    padding: 20vw 0 0 40px;
  }
  .navi-list__item {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1em;
    display: flex;
    align-items: center;
  }
  .navi-list__item::before {
    content: "";
    display: inline-block;
    background: #3CAA51;
    min-width: 6px;
    width: 6px;
    height: 6px;
    border-radius: 10px;
    margin-right: .5em;
  }
  .navi-bottom {
    width: 100%;
    background: #F5F5F5;
    padding: 40px 20px 20px 40px;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .navi-bottom__item {
    margin-bottom: 1em;
    font-size: 1.1rem;
  }
  .navi-bottom__link {
    text-decoration: underline;
  }
  .active .layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #0006;
    z-index: 2;
  }
  .active .sp-menu {
    position: fixed;
    top: 10px;
    right: 10px;
  }
  .active .toggle-btn span:nth-child(2) {
    display: none;
  }
  .active .toggle-btn span:nth-child(1) {
    -webkit-transform: rotate(-40deg);
    -moz-transform: rotate(-40deg);
    -ms-transform: rotate(-40deg);
    -o-transform: rotate(-40deg);
    transform: rotate(-40deg);
    top: 10px;
  }
  .active .toggle-btn span:nth-child(3) {
    -webkit-transform: rotate(40deg);
    -moz-transform: rotate(40deg);
    -ms-transform: rotate(40deg);
    -o-transform: rotate(40deg);
    transform: rotate(40deg);
    bottom: 8px;
  }
}
@media (min-width: 741px) {
  #header.scroll-header {
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 1px 5px #00000040;
    z-index: 1;
  }
  .header-inner {
    align-items: flex-end;
  }
  .navi {
    display: flex;
    margin-left: auto;
    align-items: center;
  }
  .navi-list {
    display: flex;
  }
  .navi-bottom,
  .sp-menu {
    display: none;
  }
  /* 検索 */
  #header-search.visible {
    display: block;
    width: 580px;
    position: absolute;
    right: 0;
    z-index: 10;
  }
  #header-search.visible .main-search__innder {
    box-shadow: 0 0 6px #0000003d;
  }
}

/* ------------------------
  メイン検索エリア
------------------------ */
.main-visual {
  background: url(../img/main-visual.jpg) no-repeat;
  background-size: cover;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 180px;
}
.main-visual__logo {
  max-width: 260px;
  margin: 1.6em auto auto auto;
}
.main-search__innder {
  background: #fff;
  padding: 15px;
  border-radius: 12px;
}
.search-form {
  display: none;
}
.search-form .primary-btn {
  max-width: 280px;
  width: 100%;
  margin: 10px auto 0 auto;
}
/* アイコン */
.search-icon::before {
  content: "";
  display: inline-block;
  background: url(../img/loupe.svg) no-repeat;
  background-size: contain;
  background-position: center;
  min-width: 20px;
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
.pin-icon::before {
  content: "";
  display: inline-block;
  background: url(../img/pin-icon.svg) no-repeat;
  background-size: contain;
  background-position: center;
  min-width: 16px;
  width: 16px;
  height: 16px;
  margin-right: 5px;
}
.car-icon::before {
  content: "";
  display: inline-block;
  background: url(../img/car-icon.svg) no-repeat;
  background-size: contain;
  background-position: center;
  min-width: 16px;
  width: 16px;
  height: 16px;
  margin-right: 5px;
  vertical-align: middle;
}
.tag-icon::before {
  content: "";
  display: inline-block;
  background: url(../img/tag-icon.svg) no-repeat;
  background-size: contain;
  background-position: center;
  min-width: 16px;
  width: 16px;
  height: 16px;
  margin-right: 5px;
  vertical-align: middle;
}
.people-icon::before {
  content: "";
  display: inline-block;
  background: url(../img/people-icon.svg) no-repeat;
  background-size: contain;
  background-position: center;
  min-width: 16px;
  width: 16px;
  height: 16px;
  margin-right: 5px;
  vertical-align: middle;
}
.cross-icon {
  display: inline-block;
  vertical-align: bottom;
  position: relative;
  width: 14px;
  height: 14px;
}
.cross-icon::before, .cross-icon::after{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  transform: rotate(45deg);
  transform-origin:0% 50%;
  position: absolute;
  top: 0;
  left: 14%;
}
.cross-icon::after{
  transform: rotate(-45deg);
  transform-origin:100% 50%;
  left: auto;
  right: 14%;
}
.triangle-icon::before {
  content: "";
  display: inline-block;
  background: url(../img/triangle-arrow.svg) no-repeat;
  background-size: contain;
  background-position: center;
  color: #fff;
  width: 12px;
  height: 12px;
  vertical-align: middle;
  margin-left: .4em;
}
.card-icon::before {
  content: "";
  display: inline-block;
  background: url(../img/card-icon.svg) no-repeat;
  background-size: contain;
  background-position: center;
  min-width: 12px;
  width: 12px;
  height: 14px;
  margin-right: 5px;
  vertical-align: text-top;
}
.navi-icon::before {
  content: "";
  display: inline-block;
  background: url(../img/navi-icon.svg) no-repeat;
  background-size: contain;
  background-position: center;
  min-width: 10px;
  width: 10px;
  height: 10px;
  vertical-align: middle;
}
.tv-icon::before {
  content: "";
  display: inline-block;
  background: url(../img/tv-icon.svg) no-repeat;
  background-size: contain;
  background-position: center;
  min-width: 12px;
  width: 12px;
  height: 10px;
  margin-right: 5px;
  vertical-align: middle;
}
.outlet-icon::before {
  content: "";
  display: inline-block;
  background: url(../img/outlet-icon.svg) no-repeat;
  background-size: contain;
  background-position: center;
  min-width: 10px;
  width: 10px;
  height: 10px;
  margin-right: 2px;
  vertical-align: middle;
}
.filter-number {
  display: flex;
  justify-content: space-between;
  padding: 10px 0 0 0;
}
.input-number {
  appearance: none;
  border: 0;
  outline: none;
  background: #EFEFF4;
  border-radius: 10px;
  padding: 12px 10px;
  margin: 0 5px;
  width: 100px;
  font-size: 16px;
}
.search-list__checkbox .checkbox-item + li + li + li {
  display: none;
}
.all-tag.search-list__checkbox .checkbox-item + li + li + li {
  display: inline-block;
}
@media (min-width: 768px) {
  .main {
    margin: 0;
  }
  .main-box {
    display: flex;
  }
  .main-visual__logo {
    margin: 3em auto auto auto;
  }
  .main-visual {
    width: 40%;
    background-position: top center;
  }
  .main-search {
    width: 60%;
    background: #C4EDCC;
    padding: 12px;
    box-shadow: 1px 1px 4px #00000038;
  }
  .main-contents .main-search {
      width: auto;
      background: transparent;
      padding: 0;
  }
  .main-search__title {
    font-weight: 600;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
  }
  .search-form {
    display: block;
  }
  .search-list {
    display: flex;
    justify-content: space-between;
    padding: 15px 0 0 0;
  }
  .search-list__item {
    width: 30%;
  }
  .search-list__item:last-of-type {
    width: 38%;
  }
  .search-list__title {
    font-weight: 600;
    padding: 0 0 .5em 0;
  }
  .checkbox-item {
    display: inline-block;
    margin-left: .5em;
  }
  .more-text {
    font-size: 0.75rem;
    display: block;
    text-align: right;
    margin: .5em 0 0 0;
  }
  .more-text__link {
    text-decoration: underline;
  }
  .filter-number {
    flex-direction: column;
    padding: 0 0 0 5px;
  }
  .filter-number__item {
    padding: 0 0 5px 0;
  }
  .input-number {
    padding: 8px 10px;
  }
}

/* ------------------------
  メイン検索エリア SP
------------------------ */
@media (max-width: 767px) {
  .main-box {
    margin: 0 -10px;
  }
  .main-search {
    padding: 5px;
    margin: -30px 10px 0 10px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 0 4px #00000042;
  }
  .main-search__innder {
    padding: 10px 5px;
  }
  .main-search__title {
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
  }
  .main-search__title::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 6px 0 6px;
    border-color: #f1641e transparent transparent transparent;
    margin-left: auto;
  }
  .main-search__title.active::after {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .search-list__title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 20px 0 0 0;
  }
  .area-heading {
    color: #AAAAAA;
    font-weight: 600;
    margin: 10px 0 5px 0;
  }
  .area-list {
    white-space: nowrap;
    overflow-x: scroll;
    margin-right: -10px;
    padding-bottom: 1px;
  }
  .area-list__item {
    border: solid 1px #F1641E;
    border-radius: 20px;
    display: inline-block;
    font-size: 1.2rem;
    padding: .4em 1em;
    margin-right: 5px;
    line-height: 1;
  }
  .search-list__checkbox {
    padding: 10px 0 0 0;
  }
  .checkbox-item {
    display: inline-block;
    margin: 0 .5em .5em 0;
  }
  .search-form__sp__btn {
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    background: #C4EDCC;
    padding: 20px 0;
    border-radius: 20px 20px 0 0;
    z-index: 1;
  }
  .search-form__sp__btn .primary-btn {
    width: 80%;
    margin: 0 auto;
    font-size: 1.4rem;
  }
}
@media (min-width: 769px) {
  .search-form__sp {
    display: none !important;
  }
}


/* ------------------------
  TOP メイン
------------------------ */
.contents {
  padding: 10px 0 0 0;
}
.widget-title,
.section-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0;
  padding-bottom: 15px;
  padding-top: 15px;
}
.widget-title::before,
.section-title::before {
  content: "";
  display: inline-block;
  background: #3CAA51;
  width: 15px;
  height: 6px;
  border-radius: 2px;
  vertical-align: middle;
  margin-right: .5em;
}
.section {
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .widget-title,
  .section-title {
    font-size: 1.2rem;
  }
}

/* ステップ */
.scroll {
  overflow: hidden;
  margin-right: -10px;
}
.scroll-list {
  overflow-x: scroll;
  white-space: nowrap;
}
.step-list__item {
  display: inline-block;
  white-space: normal;
  width: 148px;
  margin-right: 10px;
}
.step-number {
  color: #3CAA51;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.step-box {
  background: #E9F8EC;
  border-radius: 12px;
  padding: 15px;
}
.step-img {
  display: block;
  margin: 0 auto;
  width: 80px;
  height: 96px;
  object-fit: contain;
  font-family: 'object-fit: contain;';
  object-position: center;
  font-family: 'object-position: center;';
}
.step-text {
  margin: 15px 0 0;
  font-size: 1rem;
}
@media (min-width: 769px) {
  .scroll {
    margin: 0;
  }
  .step-list {
    display: flex;
    justify-content: space-between;
  }
  .step-list__item {
    width: 19%;
    background: #C4EDCC;
    border-radius: 12px;
    padding: 15px;
    margin-right: 0;
  }
  .step-box {
    border-radius: 12px;
    background: none;
    padding: 0;
  }
  .step-number {
    color: #fff;
  }
  .step-text {
    font-size: .8rem;
  }
}

/* ランキング */
.ranking-list__item {
  display: inline-block;
  width: 182px;
  margin-right: 10px;
  white-space: normal;
  vertical-align: top;
}
.ranking-list__link {
  color: #242424;
}
.ranking-list__img {
  position: relative;
}
.ranking-list__img .wp-post-image {
  width: 100%;
  height: 106px;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}
.ranking-list__img .prefectures-tag {
  position: absolute;
  left: 0;
  bottom: 0;
}
.ranking-list__img .option-tag {
  position: absolute;
  right: 0;
  bottom: 0;
}
.more-text {
  display: block;
  text-align: right;
  padding: 10px 0;
}
.ranking .more-text {
  padding-right: 10px;
}
@media (min-width: 768px) {
  .ranking-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .ranking-list::before {
    content: "";
    display: inline-block;
    width: 24%;
    order: 3;
  }
  .ranking-list::after {
    content: "";
    display: inline-block;
    width: 24%;
    order: 4;
  }
  .ranking-list__item {
    width: 24%;
    margin-right: 0;
  }
  .ranking .more-text {
    padding-right: 10px;
  }
  .ranking-list__link:hover {
    display: block;
  }
}

/* お客様の声 */
.voice .voice-box {
  padding-bottom: 40px;
}
.voice-title {
  font-size: 1.2rem;
  margin: 0 0 10px 0;
}
.review {
  padding: 10px 0 0 0;
}
.user {
  background: #f1f1f1;
  border-radius: 50px;
  min-width: 40px;
  width: 40px;
  height: 40px;
}
.user .img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  font-family: 'object-fit: contain;';
}
.comment {
  padding-left: 10px;
}
.user-name {
  font-size: 1.2rem;
}
.user-name .star {
  font-size: 1.0rem;
}
.user-comment_title {
  margin: 5px 0;
  font-weight: 600;
}
.user-comment {
  margin: 5px 0 0 0;
  font-size: 1.2rem;
}
.star {
  padding-left: 10px;
  color: #FFCC00;
}
.review-link {
  color: #333;
}
.empty-review {
  padding-bottom: 40px;
}
/* レビュー投稿 */
#add_comment_rating_wrap {
  display: flex !important;
  align-items: center;
}
#add_comment_rating_wrap label {
  margin-right: 10px;
}
#add_post_rating {
  position: relative !important;
  order: 9;
  margin-left: 10px;
}
.star-on-png:before {
  color: #FFCC00;
}
.star-off-png:before {
  color: #ccc;
}
.comment-label,
label[for="pixrating_title"],
label[for="comment"] {
  font-weight: 600;
  display: block;
  padding: 0 0 5px 0;
  margin: 0;
}
label[for="add_post_rating"] {
  font-weight: 600;
}
.comment-form-sex {
  padding-top: 1rem;
}
#add_comment_rating_wrap {
  padding-bottom: 1rem;
}
.comment-notes .required,
.comment-label .required {
  color: #ea4949;
}
.sex-radio__item {
  display: inline-block;
  margin-right: 10px;
}
.comment-form-cookies-consent {
  display: flex;
  align-items: baseline;
}
#wp-comment-cookies-consent {
  margin-right: .5em;
}
#reviewreplayarea input[type="submit"] {
  -webkit-appearance: none;
  appearance: none;
  background: #fff;
  border-radius: 6px;
  display: block;
  padding: .5em 1em;
  cursor: pointer;
  border: solid 1px #f1631f;
  color: #f1631f;
  margin-left: auto;
}
@media (min-width: 769px) {
  .voice-title {
    font-size: 1.0rem;
  }
  .user-name,
  .user-comment {
    font-size: .9rem;
  }
  #reviewreplayarea input[type="submit"]:hover {
    opacity: .8;
  }
}

/* 最新記事／最新コラム */
.article-box {
  padding: 10px 0;
  border-bottom: solid 1px #EFEFF4;
}
.article-box__link {
  display: block;
}
.article-title {
  color: #000;
  font-size: 1.2rem;
  margin: 0 0 .5em 0;
}
.article-date {
  font-size: 1rem;
  color: #666666;
}

@media (min-width: 769px) {
  .primary {
    display: flex;
    justify-content: space-between;
  }
  .home .article,
  .home .voice {
    width: 48%;
  }
  .article-title {
    font-size: 1rem;
  }
  .article-date {
    font-size: .8rem;
  }
}

/* 関連情報・特集 */
.related {
  padding-bottom: 20px;
}
.related-banner {
  display: flex;
  justify-content:space-between ;
  flex-wrap: wrap;
}
.related-banner__list {
  width: 49%;
  text-align: center;
  padding-bottom: 15px;
}
@media (min-width: 768px) {
  .related-banner::before {
    content: "";
    display: inline-block;
    width: 24%;
    order: 4;
  }
  .related-banner::after {
    content: "";
    display: inline-block;
    width: 24%;
    order: 3;
  }
  .related-banner__list {
    width: 24%;
  }
}

/* ------------------------
  サイドメニュー
------------------------ */
.left-contents .widget {
  padding-bottom: 15px;
}
.widget-title {
  display: block;
}
/* .left-menu {
  padding-bottom: 15px;
} */
.widget .menu li {
  display: flex;
  align-items: flex-start;
  font-size: 1.2rem;
  margin-bottom: 15px;
}
.widget .menu li a {
  color: #000;
  font-weight: 600;
}
.widget .menu li::before {
  content: "";
  display: inline-block;
  min-width: 6px;
  width: 6px;
  height: 6px;
  background: #C4EDCC;
  border-radius: 30px;
  vertical-align: middle;
  margin: .6em 1em 0 0;
}
@media (min-width: 769px) {
  .widget .menu li {
    font-size: 1.0rem;
  }
}

/* ------------------------
  フッター
------------------------ */
#footer {
  /* border-bottom: solid 30px #05773A; */
}
#footer::before {
  content: "";
  display: block;
  background: url(../img/bottom-bg.svg) no-repeat;
  background-position: left -10px bottom -20px;
  background-size: cover;
  width: 100%;
  height: 100px;
}
.footer-inner {
  background: #8BB780;
  padding: 40px 0 0;
}
.footer-menu {
  background: #fff;
  border-radius: 6px;
  padding: 1em 0;
}
.footer-menu__list {
  margin: 1em 15px;
}
.footer-menu__link {
  text-decoration: underline;
}
@media (min-width: 769px) {
  #footer::before {
    background-position: left bottom -20px;
    background-size: cover;
    width: 100%;
    height: 120px;
  }
  .footer-menu {
    display: flex;
    justify-content: center;
  }
  .footer-menu__list {
    margin: .5em 20px;
  }
}
.copyright-wrap {
    text-align: center;
    background: #057739;
    color: white;
    padding: 1em;
    margin-top: 2em;
}

/* 検索条件 */
.search-keyword {
  /* padding-top: 60px; */
}
.link-list__title {
  color: #AAAAAA;
  font-weight: 600;
  display: block;
  margin-bottom: .5em;
}
.link-item {
  background: #F1641E;
  color: #fff;
  display: inline-block;
  border-radius: 20px;
  padding: .4em 1em;
  margin: 0 5px 6px 0;
}
.link-item .cross-icon {
  margin-left: .5em;
}
@media (min-width: 769px) {
  .search-keyword {
    padding-top: 0;
  }
  .link-list__title {
    font-size: .8rem;
  }
  .link-item {
    font-size: .8rem;
  }
}

/* ------------------------
  結果一覧
------------------------ */
.result-list__item {
  cursor: pointer;
}
.result-list__img {
  position: relative;
}
.result-list__img .wp-post-image {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  border-radius: 12px;
}
.result-list__img .prefectures-tag {
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 1rem;
}
.result-list__img .option-tag {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 1rem;
}
.result-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.result-list__item {
  position: relative;
  width: 48%;
  padding-bottom: 10px;
}
.result-detail {
  display: none;
  background: #fff;
  border-radius: 12px;
  padding: 15px 10px 5px 10px;
  box-shadow: 0 1px 4px #00000040;
  position: absolute;
  bottom: -30px;
  left: 0;
  z-index: 1;
  width: 100%;
}
.result-list__item.visible .result-detail {
  display: block;
}
.result-list__item.visible .result-list__img .wp-post-image {
  border: solid 3px #F1641E;
  border-radius: 12px;
}
.line {
  border: 0;
  width: 100vw;
  height: 1px;
  background: #E4F2E7;
  margin: 0 -10px 20px -10px;
}
.detail-item:first-of-type {
  border-bottom: dashed 1px #C4EDCC;
  padding-bottom: 4px;
  margin-bottom: 4px;
}
.detail-label {
  font-size: .9rem;
  color: #05773A;
  font-weight: 600;
  display: inline-block;
  margin-right: 5px;
}
.detail-box {
  display: inline-block;
  color: #666666;
  font-size: .9rem;
}
.detail-box .facility-list__item {
  font-size: .9rem;
  margin: 0 .5em .2em 0;
}
.detail-box .facility-list__item .icon {
  font-size: .9rem;
  margin: 0 .5em .2em 0;
}
.option-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.option-list__item {
  margin: 5px 5px 0 0;
}
.option-price {
  margin-left: auto;
}
.result-detail .btn {
  border-radius: 50px;
  text-align: center;
  padding: 5px 1em;
  margin: 10px 0;
}
@media (min-width: 769px) {
  .result-list__item {
    width: 24%;
  }
  .result-list::after {
    content: "";
    display: inline-block;
    width: 24%;
    order: 3;
  }
  .result-list::before {
    content: "";
    display: inline-block;
    width: 24%;
    order: 4;
  }
  .detail-item {
    font-size: .8rem;
  }
  .result-list__item:hover .result-list__img .img {
    border: solid 3px #F1641E;
    border-radius: 12px;
  }
  .result-list__img .prefectures-tag {
    font-size: .8rem;
  }
  .result-list__img .option-tag {
    font-size: .8rem;
  }
  .detail-label,
  .detail-box,
  .detail-box .facility-list__item {
    font-size: .7rem;
  }
}

/* ------------------------
  詳細ページ
------------------------ */
.page-main {
  padding: 60px 0 0 0;
}
.primary-link {
  text-decoration: underline;
}
.sp-breadcrumb {
    display: inline-block;
}
.page-tag {
  display: inline-block;
  float: right;
}
.page-tag__link {
  background: #3CAA51;
  color: #fff;
  font-weight: 600;
  padding: .3em 1em;
  border-radius: 4px;
}
.page-heading {
  /* max-width: 640px; */
  padding-bottom: 15px;
}
.product-name {
  margin: 0;
  padding: 0 0 6px 0;
  font-size: 1.6rem;
}
.page-heading__foot {
  display: flex;
  justify-content: space-between;
  padding: 0 0 10px 0;
}
.page-heading__foot .primary-link {
  font-weight: 600;
}
@media (min-width: 641px) {
  /* .page-tag {
    margin-right: calc(750px - 640px);
  } */
}
@media (min-width: 769px) {
  .sp-breadcrumb {
    display: none;
  }
  .page-main {
    padding: 0;
  }
  .product-name {
    font-size: 1.4rem;
  }
  .page-tag__link {
    font-size: .8rem;
  }
}


.product-photo__thumbnail .gallery-link {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.product-photo__thumbnail .gallery-link__label {
  position: absolute;
  background: #00000073;
  width: 100%;
  color: #fff;
  z-index: 1;
  text-align: center;
  border-radius: 0 0 12px 12px;
  padding: 4px 0;
  font-weight: 600;
}
/* メイン写真 */
@media (max-width: 768px) {
  .product-photo__main {
    padding-bottom: 5px;
  }
  .product-photo__main .img {
    width: 100%;
    height: 210px;
  }
  .product-photo__thumbnail {
    white-space: nowrap;
    overflow-x: scroll;
    margin-right: -10px;
  }
  .product-photo__thumbnail .thumbnail {
    display: inline-block;
    margin-right: 5px;
  }
  .product-photo__thumbnail .thumbnail .img {
    width: 100px;
    height: 100px;
  }
}
@media (min-width: 769px) {
  .product-photo {
    display: flex;
  }
  .product-photo__main {
    flex: 1;
  }
  .product-photo__main .img {
    width: 100%;
    height: 256px;
  }
  .product-photo__thumbnail {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 40%;
    padding-left: 10px;
    height: 256px;
    overflow-y: hidden;
  }
  .product-photo__thumbnail .thumbnail {
    width: 48%;
    height: 123px;
    margin-bottom: 10px;
    cursor: pointer;
  }
  .product-photo__thumbnail .thumbnail:hover {
    opacity: .8;
  }
  .product-photo__thumbnail .thumbnail .img {
    height: 123px;
    display: block;
  }
}

/* 予約ボタンエリア */
.rent-box {
  font-size: 1.2rem;
  text-align: center;
  padding: 10px 0 20px 0;
}
.rent-box .pickup-return{
    text-align: left;
    background: #eee;
    padding: 0.5rem;
    padding-left: 2em;
    font-size: 0.85em;
    margin-bottom: 1em;
}
.price-box {
  padding: 0 0 10px 0;
}
.rent-label {
  margin-right: 2em;
}
.rent-price {
  font-size: 1.6rem;
  margin: 0 .2em 0 1em;
}
.rent-btn .primary-btn {
  width: 80%;
  margin: 0 auto;
  font-size: 1.4rem;
}
.capacity-item {
  display: flex;
  justify-content: center;
  padding: 5px 0 10px 0;
  font-size: 1rem;
}
.capacity-label {
  margin-right: 1em;
  font-weight: 300;
}
.capacity-num {
  margin: 0 .4em;
}
.season-price p {
  text-align: left;
  font-size: 1rem;
}
@media (min-width: 769px) {
  .capacity-item {
    font-size: .8rem;
  }
  .rent-box {
    font-size: .9rem;
  }
  .rent-price {
    font-size: 1.2rem;
  }
  .rent-btn .primary-btn {
    padding: .4em 1em;
    font-size: 1.2rem;
    width: 90%;
  }
  .season-price p {
    text-align: left;
    font-size: .8rem;
  }
}

/* 商品詳細メイン */
.product-contents {
  padding: 10px 0 0 0;
}
.section-text p {
  margin: 0 0 1em 0;
  line-height: 1.6;
}
.section-text ul li {
  text-indent: -.7em;
  margin: 0 0 8px .6em;
}
.section-text ul li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 10px;
  background: #C4EDCC;
  vertical-align: text-top;
  margin-top: 6px;
  margin-right: 5px;
}
.section-text table {
  max-width: 100%;
  margin-bottom: 10px;
}
.section-text table th {
  background: #ebffef;
}
.section-text table th,
.section-text table td {
  padding: 5px 10px;
  border: solid 1px #c4edcc;
}
/* .spec-content table,
.spec-content table tbody,
.spec-content table tr,
.spec-content table td {
    display: block;
    width: 100%;
} */
/* .spec-content tr td:first-child, */
.spec-title {
  font-weight: 600;
  color: #AAAAAA;
  font-size: 1rem;
}
/* .spec-content tr td:nth-child(n+2), */
.spec-about {
  margin: 5px 0 10px 0;
}
.facility-list__item {
  display: inline-block;
  margin: 0 .5em .5em 0;
  line-height: 1em;
}
.facility-list__item .icon {
  width: 1em;
  vertical-align: middle;
}
.option-list__item {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: .5em 0;
}
.total-star {
  padding: 0 0 1em 0;
  font-size: 1.2rem;
}
#voice .voice-box .star {
  display: block;
  padding: 0;
  font-size: .6rem;
}
.star.rating-5::before {
  content: "★★★★★";
  display: inline-block;
}
.star.rating-4::before {
  content: "★★★★";
  display: inline-block;
}
.star.rating-3::before {
  content: "★★★";
  display: inline-block;
}
.star.rating-2::before {
  content: "★★";
  display: inline-block;
}
.star.rating-1::before {
  content: "★";
  display: inline-block;
}
@media (min-width: 769px) {
  .product-contents {
    display: flex;
    flex-wrap: wrap;
  }
  .content-l {
    width: 60%;
    border-right: dashed 1px #D8D8D8;
    padding-right: 10px;
  }
  .content-r {
    width: 40%;
    padding-left: 10px;
  }
  .spec-title {
    font-size: .8rem;
  }
  .total-star {
    font-size: 1rem;
  }
}

/* 内覧写真 */
/* #more-photo {
  display: none;
  position: fixed;
  top: 50px;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 1;
  padding: 20px 0 10vh 0;
  overflow-y: scroll;
} */
/* .open #more-photo {
  display: block;
} */
#more-photo .product-name {
  font-size: 1.2rem;
  font-weight: 600;
}
.photo-title {
  font-size: 1.8rem;
}
.photo-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.photo-list__item {
  width: 48%;
  padding-bottom: 1.5em;
}
.photo-list__item .img {
  width: 100%;
  height: 140px;
}
.photo-list__caption {
  padding-top: 5px;
}
@media (min-width: 769px) {
  /* .open .layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #0006;
    z-index: 2;
  }
  #more-photo {
    width: 90%;
    height: auto;
    margin: 0 auto;
    right: 0;
    box-shadow: 0 0 6px #0000005e;
    padding: 20px 0;
    z-index: 10;
  } */
  .photo-list::after {
    content: "";
    display: inline-block;
    width: 24%;
    order: 3;
  }
  .photo-list::before {
    content: "";
    display: inline-block;
    width: 24%;
    order: 4;
  }
  .photo-list__item {
    width: 24%;
  }
  .photo-list__caption {
    font-size: .8rem;
  }
}

/* ------------------------
  予約　入力画面
------------------------ */
.step-nav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
.step-nav__item {
  display: flex;
  align-items: center;
  color: #AAAAAA;
}
.step-nav__item.current {
  color: #000;
}
.step-nav__item:not(:last-of-type) {
  flex: 1;
}
.step-nav__item:not(:last-of-type)::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  height: 1px;
  background: #EEEEEE;
  margin-left: .5em;
  flex: 1;
  margin: 0 1em;
}
.reserve-box {
  padding: 15px 0;
}
.rental-price {
  text-align: right;
}
.reserve-title {
  color: #AAAAAA;
  font-weight: 600;
  padding-bottom: .5em;
}
.reserve-content {
  padding-bottom: 15px;
  font-size: 1.1rem;
}
.option-list__item .checkbox-label {
  display: flex;
  width: 100%;
}
.inputform {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.inputform .col {
  max-width: 48%;
  width: 48%;
  padding: 0;
}
#add-area .unit {
  position: relative;
}
#add-area .unit:not(:last-of-type) {
  padding-bottom: 15px;
}
#add-btn {
  color: #F1641E;
  text-decoration: underline;
  cursor: pointer;
}
#add-area .unit:first-of-type .delete-btn {
  display: none;
}
#add-area .unit:not(:first-of-type) .delete-btn {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #06773a;
  width: 24px;
  height: 24px;
  border-radius: 100px;
  text-align: center;
  cursor: pointer;
  line-height: 1.5;
}
.total-price {
  display: flex;
  align-items: baseline;
}
.total-price__fixed {
  background: #C4EDCC;
  border-radius: 12px;
  font-weight: 600;
  padding: 20px 1em;
  margin: 20px 0 0 0;
  box-shadow: 0 0 4px gainsboro;
}
.total-price .price {
  font-size: 1.2rem;
  margin: 0 .2em 0 auto;
}
.total-price .rental-date {
  margin: 0 1em;
}
.return-date {
  display: flex;
  justify-content: space-between;
}
.return-date .reserve-content {
  width: 48%;
}
.total-price__confirm {
  padding: 20px 0 20px 0;
}
.total-price__confirm .rental-day {
  font-size: 1.2rem;
  display: block;
  text-align: right;
}
.disabled.btn {
  width: 80%;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  background: #a2a2a2;
  padding: 10px 0;
  margin: 0 auto;
}
.disabled.btn:hover {
  /* background: #a2a2a2; */
}
.reserve-inputform .primary-btn {
  width: 80%;
  font-size: 1.4rem;
  padding: 10px 0;
  margin: 0 auto;
}
.back-link {
  padding: 20px 0;
}
.back-link .primary-btn {
  text-align: center;
  max-width: 280px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .total-price {
    font-size: 1.2rem;
  }
  .total-price__fixed {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    border-radius: 12px 12px 0 0;
    z-index: 1;
    box-shadow: none;
  }
  .total-price .price {
    font-size: 1.6rem;
  }
  .back-link .primary-btn {
    font-size: 1.4rem;
  }
}
@media (min-width: 769px) {
  .step-nav {
    width: 40%;
    margin: 20px auto;
    font-size: .8rem;
  }
  .reserve-title {
    font-size: .8rem;
  }
  .reserve-content {
    font-size: .9rem;
  }
  .reserve-content .checkbox:not(:checked) + .checkbox-label,
  .reserve-content .checkbox:checked + .checkbox-label {
    font-size: .9rem;
  }
  .reserve-box  {
    display: flex;
  }
  .reserve-check {
    width: 36%;
    padding-right: 25px;
  }
  .reserve-inputform {
    flex: 1;
    background: #fff;
    padding: 30px 40px;
    box-shadow: 0 0 4px gainsboro;
  }
  .total-price__confirm .rental-day {
    font-size: .8rem;
  }
  .reserve-box .disabled.btn {
    width: 60%;
    margin: 0 0 0 auto;
    font-size: 1rem;
  }
  .reserve-inputform .primary-btn {
    width: 60%;
    margin: 0 0 0 auto;
    font-size: 1rem;
  }
  .comp-text {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ------------------------
  コラム一覧
------------------------ */
@media (max-width: 768px) {
  .column-result.section {
    padding: 0;
  }
}

/* ------------------------
  コラム メイン
------------------------ */
.article-photo {
  padding: 0 0 15px 0;
  text-align: center;
  /* max-width: 640px; */
}
.article-photo img {
  margin: 0 auto;
}
#toc_container {
  display: inline-block;
  border: solid 1px #AAAAAA;
  padding: .5em 1em;
  margin: 0 0 15px 0;
}
.article-text p.toc_title {
  margin: 0;
}
.toc_list {
  margin: 20px 0;
}
.article-text ul.toc_list li,
.article-text ul.toc_list li > a {
  margin-bottom: .5em;
  margin-left: 0;
  display: block;
}
.article-text ul.toc_list li > ul {
  margin-left: 1em;
}
.article-text {
  padding-bottom: 20px;
}
.single-post .article-text {
  /* max-width: 640px; */
}
.article-text p {
  line-height: 1.6;
  margin: 0 0 1.5em 0;
}
.article-text h2 {
  font-size: 1.2rem;
  margin-bottom: 0;
  padding-bottom: 15px;
}
.article-text h2::before {
  content: "";
  display: inline-block;
  background: #3CAA51;
  width: 15px;
  height: 6px;
  border-radius: 2px;
  vertical-align: middle;
  margin-right: .5em;
}
.article-text h3,
.article-text h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}
.article-text h3::before {
  content: "";
  display: inline-block;
  background: #3CAA51;
  width: 4px;
  height: 16px;
  border-radius: 2px;
  margin-right: 5px;
  vertical-align: text-bottom;
}
.article-text figure {
  max-width: 100%;
}
.article-text img {
  border-radius: 12px;
  display: block;
  margin: 0 auto;
}
/* .article-text img.aligncenter {
  margin: 0 auto;
}
.article-text img.alignright {
  margin: 0 0 0 auto;
} */
.article-text table {
  width: 100% !important;
  border-collapse: initial;
}
.single-post .article-text table {
  border: solid 4px #c4edcc;
  margin-bottom: 1.5em;
}
.single-post .article-text table tr:not(:last-of-type) {
  border-bottom: solid 2px #c4edcc;
}
.single-post .article-text tr td:not(:last-of-type) {
  border-right: solid 2px #c4edcc;
}
.article-text th,.article-text td {
    padding: 6px;
}
.article-text ul li {
  margin-bottom: 1em;
  margin-left: 1.5em;
  list-style: outside;
}
.article-text ol {
  padding: 0;
}
.article-text ol li {
  margin-bottom: 1em;
  margin-left: 1.5em;
}
.article-text ul li ul,
.article-text ol li ul {
  margin-top: 1em;
}
blockquote {
  position: relative;
  background: #FAFAFA;
  border-radius: 12px;
  padding: 2.5em 1em .5em 1em;
  margin: 20px 0;
}
blockquote::before{
    position:absolute;
    top: -10px;
    left: 10px;
    content:'';
    background: url(../img/blockquote-icon.svg) no-repeat;
    background-size: contain;
    width: 40px;
    height: 40px;
}
@media (min-width: 769px) {
  .article-text h2 {
    font-size: 1.0rem;
  }
  .article-text h3,
  .article-text h4 {
    font-size: 1.0rem;
  }
}

/* ------------------------
  レンタカー会社
------------------------ */
.enterprise-logo {
  text-align: center;
  padding: 15px 0;
}
.company-list .result-list__img .wp-post-image {
  object-fit: contain;
  font-family: 'object-fit: contain;';
  height: 80px;
}
.company-list .result-list__link {
  display: block;
}
.company-list .result-list__item.visible .result-list__img .wp-post-image {
  border: 0;
  border-radius: 12px;
}

/* ------------------------
  固定ページ
------------------------ */
.section-page_detail {
  padding-top: 20px;
  display: block;
}

/* ------------------------
  お問い合わせ
------------------------ */
.wpcf7-submit {
  -webkit-appearance: none;
  appearance: none;
  border: 0;
  background: #ccc;
  border-radius: 6px;
  display: block;
  padding: .5em 1em;
  cursor: pointer;
  background: #F1641E;
  color: #fff;
  font-weight: 600;
  max-width: 280px;
  width: 100%;
  margin: 0 auto;
}
.wpcf7-submit:hover {
  opacity: .8;
}
.wpcf7 {
  padding: 40px 0 0 0;
  margin: 0 auto;
  max-width: 600px;
}
.form-label {
  font-weight: 600;
  display: block;
  margin: 0 0 5px 0;
}
.wpcf7 .form-input {
  padding-bottom: 20px;
}
.form-label.hissu::after {
  content: "(必須)";
  display: inline-block;
  color: #ff0000;
  font-weight: 300;
  font-size: .8rem;
  margin-left: .5em;
}
.wpcf7-not-valid {
  background: #ffe8e8;
}
@media(min-width: 600px) {
  input[name="your-name"] {
    max-width: 300px;
  }
  input[name="your-email"] {
    max-width: 400px;
  }
}
