@charset "UTF-8";
/* ===================================

  @mixin name で設定
  @include name で呼び出し

====================================== */
/*
Theme Name: PAOWAOレンタカー
Theme URL: テーマのサイトのURI
Description: PAOWAOレンタカーWordPressテーマ
Author: PAOWAOレンタカー
Version: 1.0.0
License: PAOWAOレンタカー
License URI: テーマのライセンスのURI
*/
/* --- reset.css --- */
/* === 使わないセレクタは消去する --- */
/* --- reset.css --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

main {
  display: block;
}

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

body figure {
  margin: 0;
  padding: 0;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  color: inherit;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* --- reset.cssここまで --- */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*:focus-visible {
  outline: 2px solid #ff9800;
  outline-offset: 2px;
}

html {
  overflow-x: hidden;
}

body {
  max-width: 100%;
  color: #333;
  font-family: "Noto Sans JP", system-ui;
  font-size: 16px;
  line-height: 1;
  word-break: break-all;
  line-break: strict;
}

@media screen and (max-width: 1199px) {
  body {
    font-size: 14px;
  }
}
@media screen and (max-width: 758px) {
  body {
    font-size: 12px;
  }
}
ul {
  list-style: none;
}

a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.container {
  margin: 0 auto;
  max-width: 100%;
}

a {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 1199px) {
  a:hover {
    opacity: 1;
  }
}
a[href*="tel:"] {
  pointer-events: none;
}

@media screen and (max-width: 758px) {
  a[href*="tel:"] {
    pointer-events: auto;
  }
}
button,
input[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: 0;
  cursor: pointer;
}

::-webkit-file-upload-button {
  touch-action: manipulation;
  -webkit-user-select: none;
          user-select: none;
}

.btn,
::file-selector-button {
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

/* ===================================

- main
- section-title
- link-btn
- 下層メインビジュアル(l-mv)
- パンくず
- ページネーション

====================================== */
/* ---------------------------------
  main
----------------------------------- */
body:not(.home) .main {
  padding: 40px 0 120px;
}
body:not(.home) .main .contents {
  padding-top: 30px;
}

@media screen and (max-width: 1199px) {
  body:not(.home) .main {
    padding: 30px 0 100px;
  }
  body:not(.home) .main .contents {
    padding-top: 10px;
  }
}
@media screen and (max-width: 758px) {
  body:not(.home) .main {
    padding: 25px 0 80px;
  }
  body:not(.home) .main .contents {
    padding-top: 0;
  }
}
/* ---------------------------------
  section-title
----------------------------------- */
.section-title {
  text-align: center;
}
.section-title .title {
  position: relative;
  padding-bottom: 26px;
  font-size: 30px;
  font-weight: 700;
}
.section-title .title::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background-color: #ff9800;
}

@media screen and (max-width: 1199px) {
  .section-title {
    text-align: center;
  }
  .section-title .title {
    padding-bottom: 20px;
    font-size: 26px;
  }
  .section-title .title::after {
    width: 30px;
    height: 3px;
  }
}
@media screen and (max-width: 758px) {
  .section-title {
    text-align: center;
  }
  .section-title .title {
    font-size: 21px;
  }
}
/* ---------------------------------
  link-btn
----------------------------------- */
.link-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 360px;
  height: 55px;
  background-color: #ff9800;
  background-image: url(img/ico/ico-arrow-right-wh.svg);
  background-repeat: no-repeat;
  background-size: 6px 9px;
  background-position: center right 20px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  border-radius: 9999px;
  margin: 0 auto;
}

@media screen and (max-width: 1199px) {
  .link-btn {
    width: 280px;
    height: 40px;
    background-size: 5px 8px;
    background-position: center right 15px;
    font-size: 15px;
  }
}
@media screen and (max-width: 758px) {
  .link-btn {
    font-size: 12px;
  }
}
/* ---------------------------------
  下層メインビジュアル(l-mv)
----------------------------------- */
.l-mv {
  margin-top: 150px;
}
.l-mv__inner {
  width: 1120px;
  max-width: 100%;
  margin: 0 auto;
}
.l-mv__head {
  padding: 6px 0;
}
.l-mv__body {
  padding: 22px 0;
  background-color: #f2f2f2;
  word-break: break-all;
}
.l-mv__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

@media screen and (max-width: 1199px) {
  .l-mv {
    margin-top: 60px;
  }
  .l-mv__inner {
    width: 100%;
    padding: 0 30px;
  }
  .l-mv__head {
    padding: 4px 0;
  }
  .l-mv__title {
    font-size: 22px;
  }
}
@media screen and (max-width: 758px) {
  .l-mv__inner {
    padding: 0 15px;
  }
  .l-mv__head {
    padding: 3px 0;
  }
  .l-mv__title {
    font-size: 20px;
  }
}
/* ---------------------------------
  パンくず
----------------------------------- */
.breadcrumb-wrap .breadcrumb {
  word-break: break-all;
  font-size: 14px;
  line-height: 1.5;
  color: #666666;
}

@media screen and (max-width: 1199px) {
  .breadcrumb-wrap .breadcrumb {
    font-size: 12px;
  }
}
@media screen and (max-width: 758px) {
  .breadcrumb-wrap .breadcrumb {
    font-size: 11px;
  }
}
/* ---------------------------------
  ページネーション
----------------------------------- */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.pagination-wrap {
  margin-top: 80px;
}
.pagination-wrap .pagination .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagination-wrap .pagination .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 20px;
  border: 1px solid #ccc;
}
.pagination-wrap .pagination .page-numbers + .page-numbers {
  margin-left: 10px;
}
.pagination-wrap .pagination .page-numbers.current, .pagination-wrap .pagination .page-numbers:hover {
  color: #fff;
  background-color: #ff9800;
  border: 1px solid #ff9800;
  opacity: 1;
}

@media screen and (max-width: 1199px) {
  .pagination-wrap {
    margin-top: 50px;
  }
  .pagination-wrap .pagination .page-numbers {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
  .pagination-wrap .pagination .page-numbers + .page-numbers {
    margin-left: 5px;
  }
  .pagination-wrap .pagination .page-numbers:hover {
    color: #333;
    background-color: #fff;
    border: 1px solid #ccc;
  }
}
@media screen and (max-width: 758px) {
  .pagination-wrap {
    margin-top: 30px;
  }
  .pagination-wrap .pagination .page-numbers {
    width: 35px;
    height: 35px;
    font-size: 13px;
  }
}
/* ===================================


- ヘッダー
- グローバルナビ
- スマホメニュー


====================================== */
/* ===================================

  ヘッダー

====================================== */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 90px;
  background-color: #fff;
  z-index: 100;
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 1120px;
  height: 100%;
  margin: 0 auto;
}
.header-logo {
  width: 201px;
}
.header-logo__link, .header-logo__img {
  display: block;
  width: 100%;
}
.header__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-nav .nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-nav .menu-item + .menu-item {
  margin-left: 25px;
}
.header-nav .menu-item a {
  font-size: 14px;
  font-weight: 700;
}
.header__btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 40px;
  padding-left: 20px;
  width: 200px;
  height: 45px;
  background-color: #5d9c00;
  background-image: url(img/ico/ico-arrow-right-wh.svg);
  background-repeat: no-repeat;
  background-size: 5px 9px;
  background-position: center right 18px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  border-radius: 9999px;
}
.header__btn span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__btn span::before {
  content: "";
  width: 15px;
  height: 16px;
  margin-right: 10px;
  background-image: url(img/ico/ico-date.svg);
  background-repeat: no-repeat;
  background-size: 15px 16px;
  background-position: center center;
}
.header .menu-btn {
  display: none;
}

@media screen and (max-width: 1199px) {
  .header {
    height: 60px;
  }
  .header__inner {
    width: 100%;
    padding-left: 30px;
    margin: 0;
  }
  .header-logo {
    width: 128px;
  }
  .header__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header-nav {
    display: none;
  }
  .header__btn {
    display: none;
  }
  .header .menu-btn {
    display: block;
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
         appearance: none;
    z-index: 10;
    width: 60px;
    height: 60px;
    border: none;
    background-color: #ff9800;
    overflow: hidden;
    outline: none;
  }
  .header .menu-btn span:not(:nth-child(4)) {
    position: absolute;
    top: 25px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    display: block;
    width: 20px;
    height: 2px;
    background-color: #fff;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .header .menu-btn span:not(:nth-child(4)):first-child {
    top: 18px;
  }
  .header .menu-btn span:not(:nth-child(4)):nth-child(3) {
    top: 32px;
  }
  .header .menu-btn span:nth-child(4) {
    position: absolute;
    top: 40px;
    left: 50%;
    width: 100%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    font-size: 10px;
    color: #fff;
  }
  .header .menu-btn.active span:first-of-type {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    top: 25px;
    left: 20px;
  }
  .header .menu-btn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .header .menu-btn.active span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    left: 20px;
    top: 25px;
  }
}
@media screen and (max-width: 758px) {
  .header__inner {
    padding-left: 15px;
  }
}
/* ===================================

  グローバルナビ

====================================== */
.global-nav {
  position: relative;
  position: fixed;
  top: 90px;
  width: 100%;
  height: 60px;
  background-color: #ff9800;
  z-index: 100;
}
.global-nav__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 1120px;
  height: 100%;
  margin: 0 auto;
}
.global-nav .g-nav {
  width: 100%;
}
.global-nav .g-nav .nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.global-nav .g-nav .menu-item {
  width: 20%;
  border-right: 1px solid #fff;
}
.global-nav .g-nav .menu-item:last-child {
  border-right: none;
}
.global-nav .g-nav .menu-item a {
  text-align: center;
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

@media screen and (max-width: 1199px) {
  .global-nav {
    display: none;
  }
}
/* ===================================

  スマホメニュー

====================================== */
.dnav {
  display: none;
}

@media screen and (max-width: 1199px) {
  .dnav {
    display: block;
    position: fixed;
    top: 60px;
    right: -100%;
    width: 100%;
    max-width: 360px;
    height: 100vh;
    background-color: #fff;
    opacity: 0;
    z-index: -100;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .dnav.show {
    opacity: 1;
    right: 0;
    z-index: 99;
  }
  .dnav__inner {
    padding: 40px 40px 250px;
    height: 100%;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    overscroll-behavior-y: none;
  }
  .dnav__inner::-webkit-scrollbar {
    display: none;
  }
  .dnav__link {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 45px;
    background-color: #5d9c00;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    border-radius: 9999px;
  }
  .dnav__link span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .dnav__link span::before {
    position: relative;
    top: 1px;
    content: "";
    width: 14px;
    height: 15px;
    margin-right: 10px;
    background-image: url(img/ico/ico-date.svg);
    background-repeat: no-repeat;
    background-size: 14px 15px;
    background-position: center center;
  }
  .dnav__body {
    margin-top: 35px;
  }
  .dnav .d-nav .menu-item {
    background-image: url(img/ico/ico-arrow-right-bk.svg);
    background-repeat: no-repeat;
    background-size: 6px 10px;
    background-position: center right 10px;
    border-bottom: 1px solid #ccc;
  }
  .dnav .d-nav .menu-item a {
    display: block;
    width: 100%;
    padding: 16px 0;
    font-size: 14px;
    font-weight: 700;
  }
}
@media screen and (max-width: 758px) {
  .dnav {
    max-width: 100%;
  }
}
/* ===================================


- ポップアップナビ
- トップへ戻るボタン
- フッター


====================================== */
/* ===================================

  ポップアップナビ

====================================== */
.popup {
  display: none;
}

@media screen and (max-width: 1199px) {
  .popup {
    display: block;
    width: 100%;
    position: fixed;
    bottom: -100%;
    opacity: 0;
    z-index: -50;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .popup.show {
    bottom: 0;
    opacity: 1;
    z-index: 50;
  }
  .popup__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 60px;
    background-color: #5d9c00;
  }
  .popup__img {
    width: 16px;
  }
  .popup__txt {
    margin-left: 16px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
  }
}
/* ===================================

  トップへ戻るボタン

====================================== */
.pagetop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  right: 40px;
  bottom: 50px;
  width: 50px;
  height: 50px;
  background-color: #fff;
  border: 1px solid #ff9800;
  border-radius: 50%;
  z-index: 10;
  cursor: pointer;
}
.pagetop__img {
  display: block;
  width: 10px;
}

@media screen and (max-width: 1199px) {
  .pagetop {
    right: 30px;
    bottom: 80px;
    width: 38px;
    height: 38px;
  }
  .pagetop__img {
    width: 8px;
  }
}
@media screen and (max-width: 758px) {
  .pagetop {
    right: 20px;
  }
}
/* ===================================

  フッター

====================================== */
.footer__container {
  width: 1120px;
  max-width: 100%;
  margin: 0 auto;
  margin: 0 auto;
}
.footer__head {
  padding: 16px 0;
  background-color: #ff9800;
}
.footer-logo {
  width: 375px;
}
.footer-logo__link, .footer-logo__img {
  display: block;
  width: 100%;
}
.footer__body {
  padding: 40px 0;
  background-color: #f2f2f2;
}
.footer-nav .nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer-nav .menu-item {
  width: 25%;
}
.footer-nav .menu-item:nth-child(n+5) {
  margin-top: 20px;
}
.footer-nav .menu-item a {
  font-size: 14px;
}
.footer__bottom {
  padding: 38px 0 50px;
}
.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer__link {
  padding: 1px 15px;
  font-size: 14px;
  color: #808080;
}
.footer__link + .footer__link {
  border-left: 1px solid #ccc;
}
.footer .copyright {
  margin-top: 30px;
}
.footer .copyright__txt {
  font-size: 12px;
  color: #808080;
  text-align: center;
}

@media screen and (max-width: 1199px) {
  .footer__container {
    width: 100%;
    padding: 0 30px;
  }
  .footer__head {
    padding: 13px 0;
  }
  .footer-logo {
    width: 247px;
  }
  .footer__body {
    display: none;
  }
  .footer__bottom {
    padding: 30px 0 100px;
  }
  .footer__link {
    padding: 0 12px;
    font-size: 12px;
  }
  .footer .copyright {
    margin-top: 43px;
  }
  .footer .copyright__txt {
    font-size: 11px;
  }
}
@media screen and (max-width: 758px) {
  .footer__container {
    padding: 0 15px;
  }
  .footer__links {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer__link {
    width: 50%;
    display: block;
    padding: 0;
  }
  .footer__link + .footer__link {
    margin-top: 0;
    border: none;
  }
  .footer__link:nth-child(n+3) {
    margin-top: 13px;
  }
  .footer .copyright__txt {
    font-size: 10px;
    font-weight: 300;
  }
}
/* ===================================

  メインビジュアル

====================================== */
.home .mv {
  position: relative;
  width: 100%;
  margin-top: 150px;
}
.home .mv__inner {
  width: 100%;
}
.home .mv__inner.sp {
  display: none;
}
.home .mv .swiper-slide__link {
  display: block;
  width: 100%;
}
.home .mv .swiper-pagination {
  bottom: -30px;
}
.home .mv .swiper-pagination-bullet {
  width: 60px;
  height: 8px;
  background-color: #e6e6e6;
  border-radius: 0;
  opacity: 1;
}
.home .mv .swiper-pagination-bullet-active {
  background-color: #ff9800;
}
.home .mv .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.home .mv .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}

@media screen and (max-width: 1199px) {
  .home .mv {
    margin-top: 60px;
  }
  .home .mv .swiper-pagination {
    bottom: -20px;
  }
  .home .mv .swiper-pagination-bullet {
    width: 45px;
    height: 6px;
  }
  .home .mv .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .home .mv .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px;
  }
}
@media screen and (max-width: 758px) {
  .home .mv__inner.pc {
    display: none;
  }
  .home .mv__inner.sp {
    display: block;
  }
  .home .mv .swiper {
    width: 100%;
  }
  .home .mv .swiper-slide {
    width: 100%;
  }
  .home .mv .swiper-slide__img {
    display: block;
    width: 100%;
  }
  .home .mv .sp-swiper-pagination {
    text-align: center;
    position: absolute;
    bottom: 20px;
    z-index: 10;
  }
}
/* ===================================

  main

====================================== */
.home .main {
  padding-top: 110px;
}

@media screen and (max-width: 1199px) {
  .home .main {
    padding-top: 60px;
  }
}
@media screen and (max-width: 758px) {
  .home .main {
    padding-top: 40px;
  }
}
/* ===================================

  ボディタイプから探す

====================================== */
.home .bodytype {
  padding-bottom: 70px;
}
.home .bodytype .container {
  width: 1120px;
  max-width: 100%;
  margin: 0 auto;
}
.home .bodytype__contents {
  margin-top: 40px;
}
.home .bodytype .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.home .bodytype .item {
  word-break: break-all;
  width: calc((100% - 90px) / 4);
}
.home .bodytype .item__link {
  display: block;
  width: 100%;
}
.home .bodytype .item + .item {
  margin-left: 30px;
}
.home .bodytype .item:nth-child(4n+1) {
  margin-left: 0;
}
.home .bodytype .item:nth-child(n+5) {
  margin-top: 30px;
}
.home .bodytype .item__title {
  position: relative;
  padding: 8px 5px;
  background-color: #ff9800;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.5;
}
.home .bodytype .item__title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 7px 0 7px;
  border-color: #ff9800 transparent transparent transparent;
}
.home .bodytype .item__img {
  display: block;
  width: 100%;
}
.home .bodytype .item__foot {
  padding: 16px 0 14px;
  border-bottom: 2px solid #ccc;
}
.home .bodytype .item__price {
  font-size: 16px;
  text-align: center;
  line-height: 1.5;
}
.home .bodytype .item__price span {
  font-size: 20px;
  margin-left: 6px;
}

@media screen and (max-width: 1199px) {
  .home .bodytype {
    padding-bottom: 50px;
  }
  .home .bodytype .container {
    width: 100%;
    padding: 0 30px;
  }
  .home .bodytype__contents {
    margin-top: 30px;
  }
  .home .bodytype .items {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .home .bodytype .items::after {
    content: "";
    display: block;
    width: calc((100% - 40px) / 3);
  }
  .home .bodytype .item {
    width: calc((100% - 40px) / 3);
  }
  .home .bodytype .item + .item {
    margin-left: 0;
  }
  .home .bodytype .item:nth-child(n+4) {
    margin-top: 25px;
  }
  .home .bodytype .item__title {
    padding: 8px 3px;
    font-size: 18px;
  }
  .home .bodytype .item__title::after {
    bottom: -9px;
    border-width: 9px 6px 0 6px;
  }
  .home .bodytype .item__foot {
    padding: 20px 0;
  }
  .home .bodytype .item__price {
    font-size: 15px;
  }
  .home .bodytype .item__price span {
    font-size: 18px;
    margin-left: 5px;
  }
}
@media screen and (max-width: 758px) {
  .home .bodytype {
    padding-bottom: 38px;
  }
  .home .bodytype .container {
    padding: 0 15px;
  }
  .home .bodytype .items {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .home .bodytype .items::after {
    width: calc((100% - 20px) / 2);
  }
  .home .bodytype .item {
    width: calc((100% - 20px) / 2);
  }
  .home .bodytype .item:nth-child(n+3) {
    margin-top: 18px;
  }
  .home .bodytype .item__title {
    padding: 2px;
    font-size: 14px;
  }
  .home .bodytype .item__foot {
    padding: 8px 0;
  }
  .home .bodytype .item__price {
    font-size: 10px;
  }
  .home .bodytype .item__price span {
    font-size: 12px;
    margin-left: 3px;
  }
}
/* ===================================

  お得なプラン

====================================== */
.home .plan {
  padding: 70px 0 55px;
  background-color: #f2f2f2;
}
.home .plan .container {
  width: 1120px;
  max-width: 100%;
  margin: 0 auto;
}
.home .plan__contents {
  margin-top: 40px;
}
.home .plan .entries {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.home .plan .entry {
  width: calc((100% - 90px) / 4);
}
.home .plan .entry + .entry {
  margin-left: 30px;
}
.home .plan .entry__link {
  display: block;
}
.home .plan .entry__thumb {
  width: 100%;
  overflow: hidden;
}
.home .plan .entry__thumb-img {
  width: 100%;
  padding-top: 75%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.home .plan .entry__link:hover {
  opacity: 0.6;
}
.home .plan .entry__link:hover .entry__thumb-img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.home .plan .entry__body {
  word-break: break-all;
  padding-top: 12px;
}
.home .plan .entry__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
.home .plan .link-btn {
  margin-top: 56px;
}

@media screen and (max-width: 1199px) {
  .home .plan {
    padding: 60px 0 40px;
  }
  .home .plan .container {
    width: 100%;
    padding: 0 30px;
  }
  .home .plan__contents {
    margin-top: 30px;
  }
  .home .plan .entries {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .home .plan .entry {
    width: calc((100% - 30px) / 4);
  }
  .home .plan .entry + .entry {
    margin-left: 0;
  }
  .home .plan .entry__link:hover {
    opacity: 1;
  }
  .home .plan .entry__link:hover .entry__thumb-img {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
  .home .plan .entry__body {
    padding-top: 8px;
  }
  .home .plan .entry__title {
    font-size: 15px;
  }
  .home .plan .link-btn {
    margin-top: 40px;
  }
}
@media screen and (max-width: 758px) {
  .home .plan {
    padding: 40px 0;
  }
  .home .plan .container {
    padding: 0 15px;
  }
  .home .plan .entries {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .home .plan .entry {
    width: calc((100% - 20px) / 2);
  }
  .home .plan .entry:nth-child(n+3) {
    margin-top: 15px;
  }
  .home .plan .entry__body {
    padding-top: 5px;
  }
  .home .plan .entry__title {
    font-size: 12px;
  }
  .home .plan .link-btn {
    margin-top: 35px;
  }
}
/* ===================================

  新着情報

====================================== */
.home .news {
  padding: 70px 0;
}
.home .news .container {
  width: 1120px;
  max-width: 100%;
  margin: 0 auto;
}
.home .news__contents {
  margin-top: 16px;
}
.home .news .entry {
  width: 100%;
  border-bottom: 1px solid #ccc;
}
.home .news .entry__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 25px 0;
}
.home .news .entry__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 260px;
          flex: 0 0 260px;
  width: 260px;
}
.home .news .entry__date {
  font-size: 16px;
}
.home .news .entry__cates {
  margin-left: 36px;
}
.home .news .entry__cate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100px;
  height: 30px;
  background-color: #ff9800;
  border-radius: 9999px;
  color: #fff;
}
.home .news .entry__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.home .news .entry__body .newbadge {
  color: #ff161f;
  margin-right: 35px;
}
.home .news .entry__title {
  font-weight: 400;
}
.home .news .link-btn {
  margin-top: 40px;
}

@media screen and (max-width: 1199px) {
  .home .news {
    padding: 50px 0;
  }
  .home .news .container {
    width: 100%;
    padding: 0 30px;
  }
  .home .news__contents {
    margin-top: 15px;
  }
  .home .news .entry__link {
    padding: 20px 0;
  }
  .home .news .entry__head {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 180px;
            flex: 0 0 180px;
    width: 180px;
  }
  .home .news .entry__date {
    font-size: 13px;
  }
  .home .news .entry__cates {
    margin-left: 15px;
  }
  .home .news .entry__cate {
    width: 75px;
    height: 22px;
    font-size: 13px;
  }
  .home .news .entry__body .newbadge {
    margin-right: 16px;
  }
  .home .news .link-btn {
    margin-top: 35px;
  }
}
@media screen and (max-width: 758px) {
  .home .news {
    padding: 40px 0;
  }
  .home .news .container {
    padding: 0 15px;
  }
  .home .news .entry__link {
    display: block;
    padding: 15px 0;
  }
  .home .news .entry__head {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
  }
  .home .news .entry__date {
    font-size: 12px;
  }
  .home .news .entry__cate {
    font-size: 12px;
  }
  .home .news .entry__body {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 12px;
  }
  .home .news .entry__body .newbadge {
    margin-right: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40px;
            flex: 0 0 40px;
    line-height: 1.75;
  }
  .home .news .entry__title {
    line-height: 1.75;
  }
  .home .news .link-btn {
    margin-top: 30px;
  }
}
/* ===================================

  バナー

====================================== */
.home .banners {
  padding-bottom: 72px;
}
.home .banners .container {
  width: 1120px;
  max-width: 100%;
  margin: 0 auto;
}
.home .banners__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.home .banners .banner {
  width: calc((100% - 60px) / 3);
}
.home .banners .banner + .banner {
  margin-left: 30px;
}
.home .banners .banner__link, .home .banners .banner__img {
  display: block;
  width: 100%;
}

@media screen and (max-width: 1199px) {
  .home .banners {
    padding-bottom: 50px;
  }
  .home .banners .container {
    width: 100%;
    padding: 0 30px;
  }
  .home .banners .banner {
    width: calc((100% - 30px) / 3);
  }
  .home .banners .banner + .banner {
    margin-left: 15px;
  }
}
@media screen and (max-width: 758px) {
  .home .banners {
    padding-bottom: 40px;
  }
  .home .banners .container {
    padding: 0 15px;
  }
  .home .banners__inner {
    display: block;
  }
  .home .banners .banner {
    width: 100%;
  }
  .home .banners .banner + .banner {
    margin-top: 16px;
    margin-left: 0;
  }
}
/* ===================================

  トップページフッターの上マージンを削除

====================================== */
.home .footer {
  margin-top: 0;
}

/* ===================================

  汎用詳細ページ

====================================== */
.page-template-default .main .page__container {
  width: 720px;
  margin: 0 auto;
  padding-top: 25px;
}
.page-template-default .main .entry {
  word-break: break-all;
}
.page-template-default .main .entry__head {
  position: relative;
  padding-bottom: 16px;
}
.page-template-default .main .entry__head::before, .page-template-default .main .entry__head::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  height: 2px;
}
.page-template-default .main .entry__head::before {
  width: 100%;
  background-color: #ccc;
}
.page-template-default .main .entry__head::after {
  width: 40px;
  background-color: #ff9800;
  z-index: 1;
}
.page-template-default .main .entry__title {
  font-size: 32px;
  line-height: 1.5;
}
.page-template-default .main .entry__thumb {
  margin-top: 35px;
}
.page-template-default .main .entry__thumb img {
  display: block;
  width: 100%;
}
.page-template-default .main .entry__body {
  word-break: break-all;
  padding-top: 80px;
}
.page-template-default .main .entry__body > *:first-child {
  margin-top: 0 !important;
}
.page-template-default .main .entry__body .wp-block-columns {
  margin-top: 2em;
}
.page-template-default .main .entry__body .wp-block-column > *:first-child {
  margin-top: 0;
}
.page-template-default .main .entry__body h2,
.page-template-default .main .entry__body h3,
.page-template-default .main .entry__body h4,
.page-template-default .main .entry__body h5,
.page-template-default .main .entry__body h6 {
  font-weight: 700;
  line-height: 1.5;
  font-family: "Noto Sans JP", system-ui;
}
.page-template-default .main .entry__body h2 {
  margin-top: 60px;
  padding-left: 15px;
  border-left: 3px solid #ff9800;
  font-size: 30px;
}
.page-template-default .main .entry__body h3 {
  margin-top: 50px;
  font-size: 26px;
}
.page-template-default .main .entry__body h4 {
  margin-top: 50px;
  font-size: 24px;
}
.page-template-default .main .entry__body h5 {
  margin-top: 50px;
  font-size: 20px;
}
.page-template-default .main .entry__body h6 {
  margin-top: 50px;
  font-size: 18px;
}
.page-template-default .main .entry__body p {
  margin-top: 30px;
  line-height: 2;
}
.page-template-default .main .entry__body p + p {
  margin-top: 1.25rem;
}
.page-template-default .main .entry__body .wp-block-image {
  margin-top: 40px;
}
.page-template-default .main .entry__body .wp-block-image img {
  margin: 0;
}
.page-template-default .main .entry__body .wp-block-image::after {
  content: "";
  display: block;
  clear: both;
}
.page-template-default .main .entry__body .aligncenter {
  margin: 40px auto 0;
}
.page-template-default .main .entry__body .alignright {
  margin-left: auto;
}
.page-template-default .main .entry__body .wp-caption {
  max-width: 100%;
}
.page-template-default .main .entry__body .wp-caption-text {
  margin-top: 3px;
}
.page-template-default .main .entry__body pre {
  overflow-x: auto;
}
.page-template-default .main .entry__body table {
  margin-top: 40px;
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e6e6e6;
}
.page-template-default .main .entry__body table th {
  display: table-cell;
  vertical-align: middle;
  background-color: #ddd;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  height: 65px;
  border: 1px solid #e6e6e6;
  color: #000;
  font-weight: 400;
}
.page-template-default .main .entry__body table th a {
  color: inherit;
}
.page-template-default .main .entry__body table td {
  display: table-cell;
  vertical-align: middle;
  height: 65px;
  border: 1px solid #e6e6e6;
  text-align: center;
}
.page-template-default .main .entry__body table td a {
  color: inherit;
}
.page-template-default .main .entry__body > ol, .page-template-default .main .entry__body > ul {
  margin-top: 40px;
}
.page-template-default .main .entry__body ol,
.page-template-default .main .entry__body ul {
  margin-top: 40px;
}
.page-template-default .main .entry__body ol li,
.page-template-default .main .entry__body ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  line-height: 1.5;
}
.page-template-default .main .entry__body ol li + li,
.page-template-default .main .entry__body ul li + li {
  margin-top: 0.75em;
}
.page-template-default .main .entry__body ul li::before {
  content: "";
  position: relative;
  top: 5px;
  margin-right: 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 15px;
          flex: 0 0 15px;
  width: 15px;
  height: 15px;
  background-color: #ff9800;
  border-radius: 50%;
}
.page-template-default .main .entry__body ol {
  counter-reset: num;
  list-style-type: none;
}
.page-template-default .main .entry__body ol li {
  line-height: 1.5;
}
.page-template-default .main .entry__body ol li::before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  content: counter(num);
  counter-increment: num;
  position: relative;
  top: 0px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  margin-right: 10px;
  padding-left: 1px;
  padding-bottom: 0;
  -ms-flex: 0 0 25px;
      flex: 0 0 25px;
  width: 25px;
  height: 25px;
  background-color: #ff9800;
  color: #fff;
  font-family: "Noto Sans JP", system-ui;
  font-weight: 500;
  font-size: 14px;
  border-radius: 50%;
}
.page-template-default .main .entry__body a {
  position: relative;
  color: #1a0dab;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.page-template-default .main .entry__body .wp-block-buttons {
  margin-top: 40px;
}
.page-template-default .main .entry__body .wp-block-buttons .wp-block-button a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 320px;
  height: 55px;
  font-size: 16px;
  font-weight: 700;
  background-color: #ff9800 !important;
  background-image: url(img/ico/ico-link-btn.png);
  background-repeat: no-repeat;
  background-size: 25px 25px;
  background-position: center right 25px;
}
.page-template-default .main .entry__body details {
  margin-top: 2em;
}
.page-template-default .main .entry__body .wp-calendar-table caption {
  margin-bottom: 0.5em;
  font-size: 1.2em;
}
.page-template-default .main .entry__body blockquote {
  position: relative;
  width: 100%;
  margin: 40px 0;
  background-color: #fff;
  padding: 43px 35px;
  border: 1px solid #ccc;
  border-left: 3px solid #ff9800;
}
.page-template-default .main .entry__body blockquote p {
  margin-top: 0;
}
.page-template-default .main .entry__body blockquote p + p {
  margin-top: 1em;
}
.page-template-default .main .entry__body blockquote cite {
  display: block;
  margin-top: 40px;
  font-size: 14px;
  font-style: normal;
}
.page-template-default .main .entry__body blockquote a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #ff9800;
}
.page-template-default .main .entry__body blockquote a:hover {
  opacity: 0.6;
}
.page-template-default .main .entry__body .wp-block-liquid-speech-balloon {
  margin-top: 40px;
}
.page-template-default .main .entry__body hr.wp-block-separator {
  margin: 40px auto;
  width: 30%;
  height: 2px;
  border-bottom: 2px solid #ff9800;
  border-top: none;
}
.page-template-default .main .entry__body hr.wp-block-separator.is-style-wide {
  width: 100%;
  border-bottom: 2px dashed #ff9800;
}
.page-template-default .main .entry__body .liquid-speech-balloon-text p {
  margin-top: 0;
}
.page-template-default .main .entry__body iframe {
  margin-top: 40px;
  max-width: 100%;
  width: 100%;
}
.page-template-default .main .entry__body figure.wp-block-embed-youtube {
  margin-top: 40px;
}
.page-template-default .main .entry__body figure.wp-block-embed-youtube .wp-block-embed__wrapper {
  position: relative;
  margin-bottom: 0;
  padding-top: 56.25%;
  width: 100%;
}
.page-template-default .main .entry__body figure.wp-block-embed-youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}
.page-template-default .main .entry__body .toc-mokuji-content {
  margin-top: 40px;
}
.page-template-default .main .entry__body .wp-block-columns.is-layout-flex {
  gap: 60px;
}

@media screen and (max-width: 1199px) {
  .page-template-default .main .page__container {
    width: 100%;
    padding: 25px 30px 0;
  }
  .page-template-default .main .entry__head {
    padding-bottom: 18px;
  }
  .page-template-default .main .entry__head::after {
    width: 35px;
  }
  .page-template-default .main .entry__title {
    font-size: 26px;
  }
  .page-template-default .main .entry__thumb {
    margin-top: 25px;
  }
  .page-template-default .main .entry__body {
    padding-top: 40px;
  }
  .page-template-default .main .entry__body .toc-mokuji-content {
    margin-top: 30px;
  }
  .page-template-default .main .entry__body h2 {
    margin-top: 40px;
    font-size: 22px;
    padding-left: 12px;
  }
  .page-template-default .main .entry__body h3 {
    margin-top: 40px;
    font-size: 20px;
  }
  .page-template-default .main .entry__body h4 {
    margin-top: 35px;
    font-size: 18px;
  }
  .page-template-default .main .entry__body h5 {
    margin-top: 35px;
    font-size: 16px;
  }
  .page-template-default .main .entry__body h6 {
    margin-top: 35px;
    font-size: 14px;
  }
  .page-template-default .main .entry__body p {
    margin-top: 1em;
  }
  .page-template-default .main .entry__body p + p {
    margin-top: 1rem;
  }
  .page-template-default .main .entry__body .wp-block-image {
    margin-top: 35px;
  }
  .page-template-default .main .entry__body .aligncenter {
    margin: 35px auto 0;
  }
  .page-template-default .main .entry__body .wp-caption-text {
    margin-top: 2px;
  }
  .page-template-default .main .entry__body table {
    margin-top: 35px;
  }
  .page-template-default .main .entry__body table th {
    font-size: 16px;
    height: 58px;
  }
  .page-template-default .main .entry__body table td {
    height: 58px;
  }
  .page-template-default .main .entry__body > ol, .page-template-default .main .entry__body > ul {
    margin-top: 35px;
  }
  .page-template-default .main .entry__body ul li::before {
    top: 4px;
    margin-right: 12px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 14px;
            flex: 0 0 14px;
    width: 14px;
    height: 14px;
  }
  .page-template-default .main .entry__body ol li::before {
    top: 0;
    margin-right: 8px;
    padding-left: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20px;
            flex: 0 0 20px;
    width: 20px;
    height: 20px;
    font-size: 12px;
  }
  .page-template-default .main .entry__body .wp-block-buttons {
    margin-top: 35px;
  }
  .page-template-default .main .entry__body .wp-block-buttons .wp-block-button a {
    max-width: 100%;
    background-size: 30px 30px;
    background-position: center right 15px;
    font-size: 15px;
  }
  .page-template-default .main .entry__body blockquote {
    margin-top: 35px;
    padding: 35px 30px;
  }
  .page-template-default .main .entry__body blockquote cite {
    margin-top: 35px;
    font-size: 12px;
  }
  .page-template-default .main .entry__body .wp-block-liquid-speech-balloon {
    margin-top: 35px;
  }
  .page-template-default .main .entry__body hr.wp-block-separator {
    margin: 35px auto;
    width: 30%;
    height: 2px;
  }
  .page-template-default .main .entry__body iframe {
    margin-top: 35px;
  }
  .page-template-default .main .entry__body figure.wp-block-embed-youtube {
    margin-top: 35px;
  }
  .page-template-default .main .entry__body .wp-block-columns.is-layout-flex {
    margin-top: 35px;
    gap: 1.5em;
  }
}
@media screen and (max-width: 758px) {
  .page-template-default .main .page__container {
    padding: 20px 15px 0;
  }
  .page-template-default .main .entry__head {
    padding-bottom: 15px;
  }
  .page-template-default .main .entry__head::after {
    width: 30px;
  }
  .page-template-default .main .entry__title {
    font-size: 20px;
  }
  .page-template-default .main .entry__thumb {
    margin-top: 15px;
  }
  .page-template-default .main .entry__body {
    padding-top: 30px;
  }
  .page-template-default .main .entry__body .toc-mokuji-content {
    margin-top: 25px;
  }
  .page-template-default .main .entry__body h2 {
    margin-top: 30px;
    font-size: 18px;
    padding-left: 10px;
  }
  .page-template-default .main .entry__body h3 {
    margin-top: 30px;
    font-size: 16px;
  }
  .page-template-default .main .entry__body h4 {
    margin-top: 25px;
    font-size: 14px;
  }
  .page-template-default .main .entry__body h5 {
    margin-top: 25px;
    font-size: 13px;
  }
  .page-template-default .main .entry__body h6 {
    margin-top: 25px;
    font-size: 12px;
  }
  .page-template-default .main .entry__body p {
    margin-top: 25px;
    line-height: 2;
  }
  .page-template-default .main .entry__body p + p {
    margin-top: 1.25rem;
  }
  .page-template-default .main .entry__body .wp-block-image {
    margin-top: 25px;
  }
  .page-template-default .main .entry__body .aligncenter {
    margin: 25px auto 0;
  }
  .page-template-default .main .entry__body table {
    margin-top: 25px;
  }
  .page-template-default .main .entry__body table th {
    font-size: 13px;
    height: 45px;
  }
  .page-template-default .main .entry__body table td {
    height: 45px;
  }
  .page-template-default .main .entry__body > ol, .page-template-default .main .entry__body > ul {
    margin-top: 25px;
  }
  .page-template-default .main .entry__body ul li::before {
    top: 2px;
    margin-right: 10px;
  }
  .page-template-default .main .entry__body ol li::before {
    top: -1px;
    margin-right: 8px;
    padding-bottom: 1px;
    font-size: 10px;
  }
  .page-template-default .main .entry__body blockquote {
    margin-top: 25px;
    padding: 30px 20px;
  }
  .page-template-default .main .entry__body .wp-block-buttons {
    margin-top: 25px;
  }
  .page-template-default .main .entry__body .wp-block-buttons .wp-block-button {
    margin: 0 auto;
    min-width: 100%;
    max-width: 100%;
    width: 100%;
  }
  .page-template-default .main .entry__body .wp-block-buttons .wp-block-button a {
    min-width: 100%;
    width: 100%;
    font-size: 14px;
  }
  .page-template-default .main .entry__body .wp-block-liquid-speech-balloon {
    margin-top: 25px;
  }
  .page-template-default .main .entry__body hr.wp-block-separator {
    margin: 25px auto;
    height: 2px;
  }
  .page-template-default .main .entry__body iframe {
    margin-top: 25px;
  }
  .page-template-default .main .entry__body figure.wp-block-embed-youtube {
    margin-top: 25px;
  }
  .page-template-default .main .entry__body .wp-block-columns.is-layout-flex {
    margin-top: 30px;
    gap: 1em;
  }
}
/* ===================================

  ボディタイプから探す

====================================== */
.page-bodytype .container {
  width: 1120px;
  max-width: 100%;
  margin: 0 auto;
}
.page-bodytype .main .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.page-bodytype .main .item {
  word-break: break-all;
  width: calc((100% - 90px) / 4);
}
.page-bodytype .main .item__link {
  display: block;
  width: 100%;
}
.page-bodytype .main .item + .item {
  margin-left: 30px;
}
.page-bodytype .main .item:nth-child(4n+1) {
  margin-left: 0;
}
.page-bodytype .main .item:nth-child(n+5) {
  margin-top: 30px;
}
.page-bodytype .main .item__title {
  position: relative;
  padding: 8px 5px;
  background-color: #ff9800;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.5;
}
.page-bodytype .main .item__title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 7px 0 7px;
  border-color: #ff9800 transparent transparent transparent;
}
.page-bodytype .main .item__img {
  display: block;
  width: 100%;
}
.page-bodytype .main .item__foot {
  padding: 16px 0 14px;
  border-bottom: 2px solid #ccc;
}
.page-bodytype .main .item__price {
  font-size: 16px;
  text-align: center;
  line-height: 1.5;
}
.page-bodytype .main .item__price span {
  font-size: 20px;
  margin-left: 6px;
}

@media screen and (max-width: 1199px) {
  .page-bodytype .container {
    width: 100%;
    padding: 0 30px;
  }
  .page-bodytype .main .items {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .page-bodytype .main .items::after {
    content: "";
    display: block;
    width: calc((100% - 40px) / 3);
  }
  .page-bodytype .main .item {
    width: calc((100% - 40px) / 3);
  }
  .page-bodytype .main .item + .item {
    margin-left: 0;
  }
  .page-bodytype .main .item:nth-child(n+4) {
    margin-top: 25px;
  }
  .page-bodytype .main .item__title {
    padding: 8px 3px;
    font-size: 18px;
  }
  .page-bodytype .main .item__title::after {
    bottom: -9px;
    border-width: 9px 6px 0 6px;
  }
  .page-bodytype .main .item__foot {
    padding: 20px 0;
  }
  .page-bodytype .main .item__price {
    font-size: 15px;
  }
  .page-bodytype .main .item__price span {
    font-size: 18px;
    margin-left: 5px;
  }
}
@media screen and (max-width: 758px) {
  .page-bodytype .container {
    padding: 0 15px;
  }
  .page-bodytype .main .items {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .page-bodytype .main .items::after {
    width: calc((100% - 20px) / 2);
  }
  .page-bodytype .main .item {
    width: calc((100% - 20px) / 2);
  }
  .page-bodytype .main .item:nth-child(n+3) {
    margin-top: 18px;
  }
  .page-bodytype .main .item__title {
    padding: 2px;
    font-size: 14px;
  }
  .page-bodytype .main .item__foot {
    padding: 8px 0;
  }
  .page-bodytype .main .item__price {
    font-size: 10px;
  }
  .page-bodytype .main .item__price span {
    font-size: 12px;
    margin-left: 3px;
  }
}
/* ---------------------------------
  ページ共通
----------------------------------- */
body.page .main {
  padding-bottom: 100px;
}
body.page .main .contents {
  padding-top: 0;
}

@media screen and (max-width: 1199px) {
  body.page .main {
    padding-bottom: 65px;
  }
}
@media screen and (max-width: 758px) {
  body.page .main {
    padding-bottom: 45px;
  }
}
.page .page__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 60px;
  background-color: #333;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

@media screen and (max-width: 1199px) {
  .page .page__title {
    height: 50px;
    font-size: 20px;
  }
}
@media screen and (max-width: 758px) {
  .page .page__title {
    padding: 10px 15px;
    height: auto;
    line-height: 1.5;
    font-size: 17px;
  }
}
.item-desc .container {
  width: 720px;
}
.item-desc__txt {
  line-height: 2;
}

@media screen and (max-width: 1199px) {
  .item-desc .container {
    width: 100%;
    padding: 0 30px;
  }
}
@media screen and (max-width: 758px) {
  .item-desc .container {
    padding: 0 15px;
  }
}
.page .page__items .item {
  padding: 0 30px 35px;
  border-bottom: 1px solid #ccc;
}
.page .page__items .item + .item {
  padding-top: 40px;
}
.page .page__items .item:last-child {
  border-bottom: none;
}
.page .page__items .item__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page .page__items .item__title .num {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30px;
  height: 30px;
  background-color: #ff9800;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  border-radius: 50%;
}
.page .page__items .item__title .circle {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 7px solid #ff9800;
}
.page .page__items .item__title .title {
  margin-left: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
.page .page__items .item__body {
  padding-top: 17px;
}
.page .page__items .item__txt {
  line-height: 2;
}
.page .page__items .item__txt a {
  color: #29abe2;
  text-decoration: underline;
}
.page .page__items .item__txt span {
  display: block;
  font-size: 14px;
}
.page .page__items .item__txt + .item__txt {
  margin-top: 2em;
}
.page .page__items .item__txt.text-red {
  color: #f00;
}
.page .page__items .item__img {
  display: block;
  margin: 47px auto 0;
}
.page .page__items .item__img.small {
  width: 285px;
}
.page .page__items .item__img.large {
  width: 577px;
}
.page .page__items .item__notice {
  margin-top: 38px;
  font-size: 14px;
  line-height: 2;
}
.page .page__items .item__notice > a {
  color: #3fa9f5;
  text-decoration: underline;
}
.page .page__items .item-pdf {
  margin-top: 50px;
  padding: 20px 20px 16px;
  background-color: rgba(255, 152, 0, 0.15);
}
.page .page__items .item-pdf__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page .page__items .item-pdf__img {
  width: 36px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 36px;
          flex: 0 0 36px;
}
.page .page__items .item-pdf__title {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-left: 10px;
  font-weight: 700;
  text-decoration: underline;
}
.page .page__items .item-pdf__body {
  margin-top: 11px;
}
.page .page__items .item-pdf__txt {
  line-height: 1.5;
}
.page .page__items .item-table {
  margin-top: 32px;
}
.page .page__items .item-table dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.page .page__items .item-table dl + dl {
  margin-top: -1px;
}
.page .page__items .item-table dt,
.page .page__items .item-table dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  height: 70px;
  border: 1px solid #ccc;
}
.page .page__items .item-table dt {
  font-weight: 700;
  background-color: #f2f2f2;
}
.page .page__items .item-table dd {
  margin-left: -1px;
}
.page .page__items .item-table__txt {
  font-size: 14px;
  margin-top: 35px;
}
.page .page__items .item-box {
  margin-top: 30px;
  padding: 0 10px;
}
.page .page__items .item-box__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 27px 50px;
  background-color: #f2f2f2;
}
.page .page__items .item__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: calc((100% - 60px) / 2);
  height: 45px;
  background-color: #5d9c00;
  background-image: url(img/ico/ico-arrow-right-wh.svg);
  background-repeat: no-repeat;
  background-size: 5px 10px;
  background-position: center right 15px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  border-radius: 9999px;
}
.page .page__items .item__link.tel {
  background-color: #666666;
}
.page .page__items .item__ullists {
  margin-top: 24px;
}
.page .page__items .item__ullists li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  line-height: 1.5;
}
.page .page__items .item__ullists li::before {
  content: "";
  display: block;
  position: relative;
  top: 0.55em;
  margin-right: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 8px;
          flex: 0 0 8px;
  width: 8px;
  height: 8px;
  background-color: #ff9800;
  border-radius: 50%;
}
.page .page__items .item__ullists li + li {
  margin-top: 10px;
}
.page .page__items .item__ftb {
  margin-top: 35px;
}
.page .page__items .item__ftb table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  line-height: 1.5;
}
.page .page__items .item__ftb table th,
.page .page__items .item__ftb table td {
  border: 1px solid #ccc;
  vertical-align: middle;
  text-align: center;
}
.page .page__items .item__ftb table th {
  padding: 0 15px;
  height: 40px;
  background-color: #f2f2f2;
  font-weight: 700;
}
.page .page__items .item__ftb table td {
  padding: 0 15px;
  height: 70px;
}
.page .page__items .item__ftb table td span {
  display: block;
  font-size: 14px;
}
.page .page__items .item__checktitle {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-weight: 400;
  line-height: 2;
}
.page .page__items .item__checktitle::before {
  content: "";
  position: relative;
  top: 0.75em;
  margin-right: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 15px;
          flex: 0 0 15px;
  width: 15px;
  height: 10px;
  background-image: url(img/ico/ico-check-red.svg);
  background-repeat: no-repeat;
  background-size: 15px 10px;
  background-position: center center;
}
.page .page__items .ht-item dl {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.page .page__items .ht-item dl + dl {
  margin-top: 60px;
}
.page .page__items .ht-item dl + dl::before {
  content: "";
  display: block;
  position: absolute;
  top: -45px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background-image: url(img/ico/ico-plus-lg.svg);
  background-repeat: no-repeat;
  background-size: 30px 30px;
  background-position: center center;
}
.page .page__items .ht-item dt,
.page .page__items .ht-item dd {
  line-height: 2;
  border: 1px solid #ccc;
}
.page .page__items .ht-item dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 220px;
          flex: 0 0 220px;
  width: 220px;
  padding: 0 20px;
  background-color: #f2f2f2;
  font-weight: 700;
}
.page .page__items .ht-item dd {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 20px 30px;
  margin-left: -1px;
}
.page .page__items .ht-item dd > span {
  display: block;
  font-size: 14px;
  color: #f00;
}

@media screen and (max-width: 1199px) {
  .page .page__items .item {
    padding: 0 30px 25px;
  }
  .page .page__items .item + .item {
    padding-top: 30px;
  }
  .page .page__items .item__title .num {
    width: 24px;
    height: 24px;
    font-size: 18px;
  }
  .page .page__items .item__title .circle {
    width: 24px;
    height: 24px;
    border-width: 5px;
  }
  .page .page__items .item__title .title {
    margin-left: 8px;
    font-size: 18px;
  }
  .page .page__items .item__body {
    padding-top: 15px;
  }
  .page .page__items .item__img {
    margin: 35px auto 0;
  }
  .page .page__items .item__img.small {
    width: 250px;
  }
  .page .page__items .item__img.large {
    width: 500px;
  }
  .page .page__items .item__notice {
    margin-top: 30px;
    font-size: 12px;
  }
  .page .page__items .item-pdf {
    margin-top: 30px;
    padding: 15px 15px 12px;
  }
  .page .page__items .item-pdf__img {
    width: 30px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30px;
            flex: 0 0 30px;
  }
  .page .page__items .item-pdf__title {
    padding-left: 8px;
  }
  .page .page__items .item-pdf__body {
    margin-top: 10px;
  }
  .page .page__items .item-table {
    margin-top: 30px;
  }
  .page .page__items .item-table dt,
  .page .page__items .item-table dd {
    height: 55px;
  }
  .page .page__items .item-table__txt {
    font-size: 12px;
    margin-top: 24px;
  }
  .page .page__items .item-box {
    margin-top: 25px;
    padding: 0 8px;
  }
  .page .page__items .item-box__inner {
    padding: 22px 30px;
  }
  .page .page__items .item__link {
    width: calc((100% - 30px) / 2);
    height: 40px;
    background-size: 4px 8px;
    background-position: center right 12px;
    font-size: 14px;
  }
  .page .page__items .item__ullists {
    margin-top: 20px;
  }
  .page .page__items .item__ullists li::before {
    top: 0.6em;
    margin-right: 8px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 6px;
            flex: 0 0 6px;
    width: 6px;
    height: 6px;
  }
  .page .page__items .item__ullists li + li {
    margin-top: 0.5em;
  }
  .page .page__items .item__ftb {
    margin-top: 30px;
  }
  .page .page__items .item__ftb table th {
    padding: 0 12px;
    height: 35px;
  }
  .page .page__items .item__ftb table td {
    padding: 0 12px;
    height: 60px;
  }
  .page .page__items .item__ftb table td span {
    font-size: 12px;
  }
  .page .page__items .item__checktitle::before {
    top: 0.7em;
    margin-right: 8px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 12px;
            flex: 0 0 12px;
    width: 12px;
    height: 8px;
    background-size: 12px 8px;
  }
  .page .page__items .ht-item dl + dl {
    margin-top: 50px;
  }
  .page .page__items .ht-item dl + dl::before {
    top: -37px;
    width: 25px;
    height: 25px;
    background-size: 25px 25px;
  }
  .page .page__items .ht-item dt {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 200px;
            flex: 0 0 200px;
    width: 200px;
    padding: 0 15px;
  }
  .page .page__items .ht-item dd {
    padding: 15px 20px;
  }
  .page .page__items .ht-item dd > span {
    font-size: 12px;
  }
}
@media screen and (max-width: 758px) {
  .page .page__items .item {
    padding: 0 15px 22px;
  }
  .page .page__items .item + .item {
    padding-top: 28px;
  }
  .page .page__items .item__title .num {
    font-size: 15px;
  }
  .page .page__items .item__title .title {
    font-size: 15px;
  }
  .page .page__items .item__body {
    padding-top: 12px;
  }
  .page .page__items .item__img {
    margin: 22px auto 0;
  }
  .page .page__items .item__img.small {
    width: 75%;
  }
  .page .page__items .item__img.large {
    width: 100%;
  }
  .page .page__items .item__notice {
    margin-top: 22px;
    font-size: 11px;
  }
  .page .page__items .item-pdf {
    margin-top: 22px;
  }
  .page .page__items .item-pdf__img {
    width: 24px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 24px;
            flex: 0 0 24px;
  }
  .page .page__items .item-table {
    margin-top: 22px;
  }
  .page .page__items .item-table dt,
  .page .page__items .item-table dd {
    height: 50px;
  }
  .page .page__items .item-table__txt {
    font-size: 11px;
    margin-top: 18px;
  }
  .page .page__items .item-box {
    margin-top: 22px;
    padding: 0;
  }
  .page .page__items .item-box__inner {
    display: block;
    padding: 20px;
  }
  .page .page__items .item__link {
    width: 100%;
    font-size: 12px;
  }
  .page .page__items .item__link + .item__link {
    margin-top: 12px;
  }
  .page .page__items .item__ullists {
    margin-top: 15px;
  }
  .page .page__items .item__ullists li::before {
    margin-right: 6px;
  }
  .page .page__items .item__ftb {
    margin-top: 22px;
  }
  .page .page__items .item__ftb table th {
    padding: 0 10px;
    height: 30px;
  }
  .page .page__items .item__ftb table td {
    padding: 0 10px;
    height: 50px;
  }
  .page .page__items .item__ftb table td span {
    font-size: 10px;
  }
  .page .page__items .item__checktitle::before {
    margin-right: 6px;
  }
  .page .page__items .ht-item dl {
    display: block;
  }
  .page .page__items .ht-item dt {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
    padding: 10px 15px;
    font-size: 13px;
  }
  .page .page__items .ht-item dd {
    padding: 15px 15px;
    margin-left: 0;
    margin-top: -1px;
  }
  .page .page__items .ht-item dd > span {
    font-size: 11px;
  }
}
/* ===================================

  ご利用ガイド

====================================== */
/* ---------------------------------
  レンタカーなら〜
----------------------------------- */
.page-guide .detail .container {
  width: 720px;
}
.page-guide .detail__txt {
  text-align: center;
  line-height: 2;
}
.page-guide .detail__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 32px;
}
.page-guide .detail__items .item {
  width: calc((100% - 72px) / 5);
}
.page-guide .detail__items .item__title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 35px;
  background-color: #ff9800;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  border-radius: 9999px;
  z-index: 1;
}
.page-guide .detail__items .item__title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 7px 0 7px;
  border-color: #ff9800 transparent transparent transparent;
}
.page-guide .detail__items .item__body {
  padding-top: 20px;
}
.page-guide .detail__items .item__img {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 50%;
}

@media screen and (max-width: 1199px) {
  .page-guide .detail .container {
    width: 100%;
    padding: 0 30px;
  }
  .page-guide .detail__items {
    margin-top: 22px;
  }
  .page-guide .detail__items .item {
    width: calc((100% - 80px) / 5);
  }
  .page-guide .detail__items .item__title {
    height: 32px;
    font-size: 16px;
  }
  .page-guide .detail__items .item__title::after {
    bottom: -8px;
    border-width: 8px 6px 0 6px;
  }
  .page-guide .detail__items .item__body {
    padding-top: 16px;
  }
}
@media screen and (max-width: 758px) {
  .page-guide .detail .container {
    padding: 0 15px;
  }
  .page-guide .detail__items {
    margin-top: 22px;
    padding: 0 20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .page-guide .detail__items .item {
    width: calc((100% - 20px) / 2);
  }
  .page-guide .detail__items .item:nth-child(n+3) {
    margin-top: 25px;
  }
  .page-guide .detail__items .item__title {
    height: 30px;
    font-size: 14px;
  }
  .page-guide .detail__items .item__body {
    padding-top: 15px;
  }
}
/* ---------------------------------
  ご利用の流れ
----------------------------------- */
.page-guide .flow {
  margin-top: 56px;
}
.page-guide .flow .container {
  width: 720px;
}
.page-guide .flow__contents {
  margin-top: 30px;
}
.page-guide .flow .item__link {
  width: 360px;
  height: 55px;
  margin: 35px auto 0;
}
.page-guide .flow .item-tel {
  width: 240px;
}
.page-guide .flow .item-tel__txt {
  font-weight: 700;
  text-align: center;
}
.page-guide .flow .item-tel__num {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 8px;
  width: 100%;
  height: 45px;
  background-color: #666666;
  background-image: url(img/ico/ico-arrow-right-wh.svg);
  background-repeat: no-repeat;
  background-size: 5px 10px;
  background-position: center right 15px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  border-radius: 9999px;
  z-index: 1;
}

@media screen and (max-width: 1199px) {
  .page-guide .flow {
    margin-top: 40px;
  }
  .page-guide .flow .container {
    width: 100%;
    padding: 0 30px;
  }
  .page-guide .flow__contents {
    margin-top: 25px;
  }
  .page-guide .flow .item__link {
    width: 320px;
    height: 50px;
    margin: 30px auto 0;
  }
  .page-guide .flow .item-tel {
    width: calc((100% - 50px) / 2);
  }
  .page-guide .flow .item-tel__txt {
    font-weight: 700;
    text-align: center;
  }
  .page-guide .flow .item-tel__num {
    margin-top: 6px;
    height: 40px;
    background-size: 4px 8px;
    background-position: center right 12px;
    font-size: 14px;
  }
}
@media screen and (max-width: 758px) {
  .page-guide .flow {
    margin-top: 30px;
  }
  .page-guide .flow .container {
    padding: 0 15px;
  }
  .page-guide .flow__contents {
    margin-top: 22px;
  }
  .page-guide .flow .item__link {
    width: 100%;
    height: 40px;
    margin-top: 25px;
  }
  .page-guide .flow .item-tel {
    width: 100%;
  }
  .page-guide .flow .item-tel + .item-tel {
    margin-top: 20px;
  }
  .page-guide .flow .item-tel__num {
    font-size: 12px;
  }
}
/* ---------------------------------
  ご契約時にご用意いただくもの
----------------------------------- */
.page-guide .prepare {
  margin-top: 45px;
}
.page-guide .prepare .container {
  width: 720px;
}
.page-guide .prepare__contents {
  margin-top: 30px;
}

@media screen and (max-width: 1199px) {
  .page-guide .prepare {
    margin-top: 30px;
  }
  .page-guide .prepare .container {
    width: 100%;
    padding: 0 30px;
  }
  .page-guide .prepare__contents {
    margin-top: 25px;
  }
}
@media screen and (max-width: 758px) {
  .page-guide .prepare {
    margin-top: 25px;
  }
  .page-guide .prepare .container {
    padding: 0 15px;
  }
  .page-guide .prepare__contents {
    margin-top: 22px;
  }
}
/* ---------------------------------
  ご契約時にご用意いただくもの
----------------------------------- */
.page-guide .payment {
  margin-top: 45px;
}
.page-guide .payment .container {
  width: 720px;
}
.page-guide .payment__contents {
  margin-top: 30px;
}

@media screen and (max-width: 1199px) {
  .page-guide .payment {
    margin-top: 30px;
  }
  .page-guide .payment .container {
    width: 100%;
    padding: 0 30px;
  }
  .page-guide .payment__contents {
    margin-top: 25px;
  }
}
@media screen and (max-width: 758px) {
  .page-guide .payment {
    margin-top: 25px;
  }
  .page-guide .payment .container {
    padding: 0 15px;
  }
  .page-guide .payment__contents {
    margin-top: 22px;
  }
}
/* ===================================

  料金について

====================================== */
/* ---------------------------------
  料金の計算方法
----------------------------------- */
.page-price .calc {
  margin-top: 35px;
}
.page-price .calc .container {
  width: 720px;
}
.page-price .calc__contents {
  margin-top: 30px;
  padding: 0 30px;
}

@media screen and (max-width: 1199px) {
  .page-price .calc {
    margin-top: 30px;
  }
  .page-price .calc .container {
    width: 100%;
    padding: 0 30px;
  }
  .page-price .calc__contents {
    margin-top: 25px;
    padding: 0 25px;
  }
}
@media screen and (max-width: 758px) {
  .page-price .calc {
    margin-top: 25px;
  }
  .page-price .calc .container {
    padding: 0 15px;
  }
  .page-price .calc__contents {
    margin-top: 22px;
    padding: 0 15px;
  }
}
/* ---------------------------------
  オプション料金
----------------------------------- */
.page-price .opt-price {
  margin-top: 80px;
}
.page-price .opt-price .container {
  width: 720px;
}
.page-price .opt-price__contents {
  margin-top: 30px;
  padding: 0 30px;
}
.page-price .opt-price .ht-item dl + dl {
  margin-top: -1px;
}
.page-price .opt-price .ht-item dl + dl::before {
  display: none;
}

@media screen and (max-width: 1199px) {
  .page-price .opt-price {
    margin-top: 60px;
  }
  .page-price .opt-price .container {
    width: 100%;
    padding: 0 30px;
  }
  .page-price .opt-price__contents {
    margin-top: 25px;
    padding: 0 25px;
  }
}
@media screen and (max-width: 758px) {
  .page-price .opt-price {
    margin-top: 50px;
  }
  .page-price .opt-price .container {
    padding: 0 15px;
  }
  .page-price .opt-price__contents {
    margin-top: 22px;
    padding: 0 15px;
  }
}
/* ---------------------------------
  過不足料金について
----------------------------------- */
.page-price .excess {
  margin-top: 80px;
}
.page-price .excess .container {
  width: 720px;
}
.page-price .excess__contents {
  margin-top: 30px;
}
.page-price .excess .page__items .item {
  border-bottom: none;
}

@media screen and (max-width: 1199px) {
  .page-price .excess {
    margin-top: 60px;
  }
  .page-price .excess .container {
    width: 100%;
    padding: 0 30px;
  }
  .page-price .excess__contents {
    margin-top: 25px;
  }
}
@media screen and (max-width: 758px) {
  .page-price .excess {
    margin-top: 50px;
  }
  .page-price .excess .container {
    padding: 0 15px;
  }
  .page-price .excess__contents {
    margin-top: 22px;
  }
}
/* ===================================

  保険・補償について

====================================== */
/* ---------------------------------
  基本料金に含まれる保険・補償
----------------------------------- */
.page-insurance .basic-insu {
  margin-top: 35px;
}
.page-insurance .basic-insu .container {
  width: 720px;
}
.page-insurance .basic-insu__contents {
  margin-top: 30px;
  padding: 0 30px;
}
.page-insurance .basic-insu .page__items {
  padding: 0;
}
.page-insurance .basic-insu .page__items .item {
  padding: 0;
  border-bottom: none;
}
.page-insurance .basic-insu .page__items .ht-item {
  margin-top: 30px;
}
.page-insurance .basic-insu .page__items .ht-item dl + dl {
  margin-top: -1px;
}
.page-insurance .basic-insu .page__items .ht-item dl + dl::before {
  display: none;
}
.page-insurance .basic-insu .page__items .ht-item dt {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 1199px) {
  .page-insurance .basic-insu {
    margin-top: 30px;
  }
  .page-insurance .basic-insu .container {
    width: 100%;
    padding: 0 30px;
  }
  .page-insurance .basic-insu__contents {
    margin-top: 25px;
    padding: 0 25px;
  }
  .page-insurance .basic-insu .page__items .ht-item {
    margin-top: 30px;
  }
}
@media screen and (max-width: 758px) {
  .page-insurance .basic-insu {
    margin-top: 25px;
  }
  .page-insurance .basic-insu .container {
    padding: 0 15px;
  }
  .page-insurance .basic-insu__contents {
    margin-top: 22px;
    padding: 0 15px;
  }
  .page-insurance .basic-insu .page__items .ht-item {
    margin-top: 22px;
  }
}
/* ---------------------------------
  CDW（事故免責補償制度）の導入
----------------------------------- */
.page-insurance .cdw {
  margin-top: 80px;
}
.page-insurance .cdw .container {
  width: 720px;
}
.page-insurance .cdw__contents {
  margin-top: 30px;
  padding: 0 30px;
}
.page-insurance .cdw .page__items {
  padding: 0;
}
.page-insurance .cdw .page__items .item {
  padding: 0;
  border-bottom: none;
}

@media screen and (max-width: 1199px) {
  .page-insurance .cdw {
    margin-top: 60px;
  }
  .page-insurance .cdw .container {
    width: 100%;
    padding: 0 30px;
  }
  .page-insurance .cdw__contents {
    margin-top: 25px;
    padding: 0 25px;
  }
}
@media screen and (max-width: 758px) {
  .page-insurance .cdw {
    margin-top: 50px;
  }
  .page-insurance .cdw .container {
    padding: 0 15px;
  }
  .page-insurance .cdw__contents {
    margin-top: 22px;
    padding: 0 15px;
  }
}
/* --------------------------------------
  ノン・オペレーションチャージ（NOC）について
----------------------------------------- */
.page-insurance .noc {
  margin-top: 80px;
}
.page-insurance .noc .container {
  width: 720px;
}
.page-insurance .noc__contents {
  margin-top: 30px;
  padding: 0 30px;
}
.page-insurance .noc .page__items {
  padding: 0;
}
.page-insurance .noc .page__items .item {
  padding: 0;
  border-bottom: none;
}
.page-insurance .noc .page__items .item__body {
  padding-top: 0;
}

@media screen and (max-width: 1199px) {
  .page-insurance .noc {
    margin-top: 60px;
  }
  .page-insurance .noc .container {
    width: 100%;
    padding: 0 30px;
  }
  .page-insurance .noc__contents {
    margin-top: 25px;
    padding: 0 25px;
  }
}
@media screen and (max-width: 758px) {
  .page-insurance .noc {
    margin-top: 50px;
  }
  .page-insurance .noc .container {
    padding: 0 15px;
  }
  .page-insurance .noc__contents {
    margin-top: 22px;
    padding: 0 15px;
  }
  .page-insurance .noc .page__items .item__ftb table td {
    height: 65px;
  }
}
/* ---------------------------------
  保険・補償の適用除外
----------------------------------- */
.page-insurance .exclusion {
  margin-top: 80px;
}
.page-insurance .exclusion .container {
  width: 720px;
}
.page-insurance .exclusion__contents {
  margin-top: 30px;
  padding: 0 30px;
}
.page-insurance .exclusion .page__items {
  padding: 0;
}
.page-insurance .exclusion .page__items .item {
  padding: 22px 0;
}
.page-insurance .exclusion .page__items .item:first-child {
  padding-top: 0;
}
.page-insurance .exclusion .page__items .item__ullists {
  margin-top: 16px;
  padding: 0 25px;
}
.page-insurance .exclusion .page__items .item__ullists li::before {
  background-color: #333;
}

@media screen and (max-width: 1199px) {
  .page-insurance .exclusion {
    margin-top: 60px;
  }
  .page-insurance .exclusion .container {
    width: 100%;
    padding: 0 30px;
  }
  .page-insurance .exclusion__contents {
    margin-top: 25px;
    padding: 0 25px;
  }
  .page-insurance .exclusion .page__items {
    padding: 0;
  }
  .page-insurance .exclusion .page__items .item {
    padding: 18px 0;
  }
  .page-insurance .exclusion .page__items .item__ullists {
    margin-top: 12px;
    padding: 0 15px;
  }
}
@media screen and (max-width: 758px) {
  .page-insurance .exclusion {
    margin-top: 50px;
  }
  .page-insurance .exclusion .container {
    padding: 0 15px;
  }
  .page-insurance .exclusion__contents {
    margin-top: 22px;
    padding: 0 15px;
  }
  .page-insurance .exclusion .page__items .item {
    padding: 15px 0;
  }
  .page-insurance .exclusion .page__items .item__ullists {
    margin-top: 10px;
    padding: 0 10px;
  }
}
/* ---------------------------------------
  故意・重過失・法令違反による事故においての措置
----------------------------------------- */
.page-insurance .measures {
  margin-top: 80px;
}
.page-insurance .measures .container {
  width: 720px;
}
.page-insurance .measures__contents {
  margin-top: 30px;
  padding: 0 30px;
}
.page-insurance .measures .page__items {
  padding: 0;
}
.page-insurance .measures .page__items .item {
  padding: 0;
  border-bottom: none;
}
.page-insurance .measures .page__items .item__ullists li::before {
  background-color: #333;
}
.page-insurance .measures .page__items .item + .item {
  margin-top: 40px;
}

@media screen and (max-width: 1199px) {
  .page-insurance .measures {
    margin-top: 60px;
  }
  .page-insurance .measures .container {
    width: 100%;
    padding: 0 30px;
  }
  .page-insurance .measures__contents {
    margin-top: 25px;
    padding: 0 25px;
  }
  .page-insurance .measures .page__items .item + .item {
    margin-top: 30px;
  }
}
@media screen and (max-width: 758px) {
  .page-insurance .measures {
    margin-top: 50px;
  }
  .page-insurance .measures .container {
    padding: 0 15px;
  }
  .page-insurance .measures__contents {
    margin-top: 22px;
    padding: 0 15px;
  }
  .page-insurance .measures .page__items .item + .item {
    margin-top: 22px;
  }
}
/* ===================================

  車種・料金 カテゴリページ

====================================== */
.tax-bodytype .main .container {
  width: 1120px;
  max-width: 100%;
  margin: 0 auto;
}
.tax-bodytype .pricelist__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 50px;
  background-color: #ff9800;
}
.tax-bodytype .pricelist__title h2 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}
.tax-bodytype .pricelist__contents {
  padding: 20px 40px 0;
}
.tax-bodytype .pricelist__contents table {
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}
.tax-bodytype .pricelist__contents tr {
  padding: 0 20px;
  border-bottom: 1px solid #ccc;
}
.tax-bodytype .pricelist__contents th,
.tax-bodytype .pricelist__contents td {
  vertical-align: middle;
  height: 100%;
}
.tax-bodytype .pricelist__contents thead th,
.tax-bodytype .pricelist__contents thead td {
  height: 45px;
}
.tax-bodytype .pricelist__contents tbody th,
.tax-bodytype .pricelist__contents tbody td {
  height: 85px;
}
.tax-bodytype .pricelist__contents tbody td {
  font-size: 20px;
}
.tax-bodytype .pricelist__contents tbody td span {
  margin-top: 10px;
  display: block;
  font-size: 12px;
  font-weight: 400;
}
.tax-bodytype .pricelist__txt {
  margin-top: 30px;
}
.tax-bodytype .main .contents {
  margin-top: 80px;
}
.tax-bodytype .main .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.tax-bodytype .main .items::after {
  content: "";
  display: block;
  width: calc((100% - 60px) / 3);
}
.tax-bodytype .main .item {
  padding: 20px 20px 0;
  border: 1px solid #ccc;
  width: calc((100% - 60px) / 3);
}
.tax-bodytype .main .item:nth-child(n+4) {
  margin-top: 30px;
}
.tax-bodytype .main .item__thumb {
  width: 100%;
  overflow: hidden;
}
.tax-bodytype .main .item__thumb-img {
  width: 100%;
  padding-top: 66.7%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.tax-bodytype .main .item__contents {
  word-break: break-all;
  margin-top: 10px;
}
.tax-bodytype .main .item__maker {
  font-size: 14px;
}
.tax-bodytype .main .item__name {
  margin-top: 2px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #003a6b;
}
.tax-bodytype .main .item__opts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 12px;
}
.tax-bodytype .main .item__opt {
  position: relative;
  margin: 0 5px 5px 0;
  padding: 5px 7px;
  background-color: #009245;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  border-radius: 4px;
}
.tax-bodytype .main .item__opt.car-etc {
  background-color: #2e3192;
}
.tax-bodytype .main .item__opt.car-babyseat, .tax-bodytype .main .item__opt.car-juniorseat, .tax-bodytype .main .item__opt.car-childseat {
  background-color: #fc3888;
}
.tax-bodytype .main .item__opt.car-studless {
  background-color: #3fa9f5;
}
.tax-bodytype .main .item__opt.car-drareco {
  background-color: #ff9800;
}
.tax-bodytype .main .item__body {
  min-height: 64px;
  margin-top: 6px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
}
.tax-bodytype .main .item__foot {
  padding: 8px 0 16px;
}
.tax-bodytype .main .item__txt {
  line-height: 2;
}

@media screen and (max-width: 1199px) {
  .tax-bodytype .main .container {
    width: 100%;
    padding: 0 30px;
  }
  .tax-bodytype .pricelist__title {
    height: 40px;
  }
  .tax-bodytype .pricelist__title h2 {
    font-size: 18px;
  }
  .tax-bodytype .pricelist__contents {
    padding: 15px 15px 0;
  }
  .tax-bodytype .pricelist__contents table {
    font-size: 14px;
  }
  .tax-bodytype .pricelist__contents tr {
    padding: 0 15px;
  }
  .tax-bodytype .pricelist__contents thead th,
  .tax-bodytype .pricelist__contents thead td {
    height: 40px;
  }
  .tax-bodytype .pricelist__contents tbody th,
  .tax-bodytype .pricelist__contents tbody td {
    height: 70px;
  }
  .tax-bodytype .pricelist__contents tbody td {
    font-size: 18px;
  }
  .tax-bodytype .pricelist__contents tbody td span {
    margin-top: 8px;
    font-size: 11px;
  }
  .tax-bodytype .pricelist__txt {
    margin-top: 20px;
  }
  .tax-bodytype .main .contents {
    margin-top: 40px;
  }
  .tax-bodytype .main .items::after {
    width: calc((100% - 30px) / 3);
  }
  .tax-bodytype .main .item {
    width: calc((100% - 30px) / 3);
    padding: 15px 15px 0;
  }
  .tax-bodytype .main .item:nth-child(n+4) {
    margin-top: 15px;
  }
  .tax-bodytype .main .item__contents {
    margin-top: 8px;
  }
  .tax-bodytype .main .item__maker {
    font-size: 12px;
  }
  .tax-bodytype .main .item__name {
    font-size: 18px;
  }
  .tax-bodytype .main .item__opts {
    margin-top: 10px;
  }
  .tax-bodytype .main .item__opt {
    margin: 0 4px 4px 0;
    padding: 4px 6px;
    font-size: 12px;
  }
  .tax-bodytype .main .item__body {
    min-height: auto;
    margin-top: 5px;
    padding-bottom: 8px;
  }
  .tax-bodytype .main .item__foot {
    padding: 6px 0 10px;
  }
}
@media screen and (max-width: 758px) {
  .tax-bodytype .main .container {
    padding: 0 15px;
  }
  .tax-bodytype .pricelist__title h2 {
    font-size: 16px;
  }
  .tax-bodytype .pricelist__contents {
    padding: 10px 0 0;
  }
  .tax-bodytype .pricelist__contents table {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 13px;
    table-layout: auto;
  }
  .tax-bodytype .pricelist__contents tr {
    display: inline-block;
    width: 100%;
    padding: 0;
    border-bottom: none;
  }
  .tax-bodytype .pricelist__contents th,
  .tax-bodytype .pricelist__contents td {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-bottom: 1px solid #ccc;
  }
  .tax-bodytype .pricelist__contents th {
    font-size: 14px;
  }
  .tax-bodytype .pricelist__contents td {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 14px;
  }
  .tax-bodytype .pricelist__contents thead {
    width: 40%;
  }
  .tax-bodytype .pricelist__contents thead th {
    height: 50px;
  }
  .tax-bodytype .pricelist__contents thead td {
    height: 68px;
  }
  .tax-bodytype .pricelist__contents tbody {
    width: 60%;
  }
  .tax-bodytype .pricelist__contents tbody tr {
    width: 100%;
  }
  .tax-bodytype .pricelist__contents tbody th,
  .tax-bodytype .pricelist__contents tbody td {
    width: 100%;
  }
  .tax-bodytype .pricelist__contents tbody th {
    height: 50px;
  }
  .tax-bodytype .pricelist__contents tbody td {
    font-size: 18px;
    height: 68px;
  }
  .tax-bodytype .main .items {
    display: block;
  }
  .tax-bodytype .main .items::after {
    display: none;
  }
  .tax-bodytype .main .item {
    width: 100%;
  }
  .tax-bodytype .main .item:nth-child(n+2) {
    margin-top: 15px;
  }
}
/* ===================================

  お知らせ一覧

====================================== */
.blog .main .container {
  width: 1120px;
  max-width: 100%;
  margin: 0 auto;
}
.blog .main .entry {
  width: 100%;
  border-bottom: 1px solid #ccc;
}
.blog .main .entry__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 25px 0;
}
.blog .main .entry__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 260px;
          flex: 0 0 260px;
  width: 260px;
}
.blog .main .entry__date {
  font-size: 16px;
}
.blog .main .entry__cates {
  margin-left: 36px;
}
.blog .main .entry__cate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100px;
  height: 30px;
  background-color: #ff9800;
  border-radius: 9999px;
  color: #fff;
}
.blog .main .entry__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.blog .main .entry__body .newbadge {
  color: #ff161f;
  margin-right: 35px;
}
.blog .main .entry__title {
  font-weight: 400;
}

@media screen and (max-width: 1199px) {
  .blog .main .container {
    width: 100%;
    padding: 0 30px;
  }
  .blog .main .entry__link {
    padding: 20px 0;
  }
  .blog .main .entry__head {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 180px;
            flex: 0 0 180px;
    width: 180px;
  }
  .blog .main .entry__date {
    font-size: 13px;
  }
  .blog .main .entry__cates {
    margin-left: 15px;
  }
  .blog .main .entry__cate {
    width: 75px;
    height: 22px;
    font-size: 13px;
  }
  .blog .main .entry__body .newbadge {
    margin-right: 16px;
  }
}
@media screen and (max-width: 758px) {
  .blog .main .container {
    padding: 0 15px;
  }
  .blog .main .entry__link {
    display: block;
    padding: 15px 0;
  }
  .blog .main .entry__head {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
  }
  .blog .main .entry__date {
    font-size: 12px;
  }
  .blog .main .entry__cate {
    font-size: 12px;
  }
  .blog .main .entry__body {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 12px;
  }
  .blog .main .entry__body .newbadge {
    margin-right: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40px;
            flex: 0 0 40px;
    line-height: 1.75;
  }
  .blog .main .entry__title {
    line-height: 1.75;
  }
}
/* ===================================

  お得なプラン一覧

====================================== */
.post-type-archive-plan .main .container {
  width: 1120px;
  max-width: 100%;
  margin: 0 auto;
}
.post-type-archive-plan .main .entries {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.post-type-archive-plan .main .entry {
  width: calc((100% - 90px) / 4);
}
.post-type-archive-plan .main .entry + .entry {
  margin-left: 30px;
}
.post-type-archive-plan .main .entry:nth-child(4n+1) {
  margin-left: 0;
}
.post-type-archive-plan .main .entry:nth-child(n+5) {
  margin-top: 30px;
}
.post-type-archive-plan .main .entry__link {
  display: block;
}
.post-type-archive-plan .main .entry__thumb {
  width: 100%;
  overflow: hidden;
}
.post-type-archive-plan .main .entry__thumb-img {
  width: 100%;
  padding-top: 75%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.post-type-archive-plan .main .entry__link:hover {
  opacity: 0.6;
}
.post-type-archive-plan .main .entry__link:hover .entry__thumb-img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.post-type-archive-plan .main .entry__body {
  word-break: break-all;
  padding-top: 12px;
}
.post-type-archive-plan .main .entry__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (max-width: 1199px) {
  .post-type-archive-plan .main .container {
    width: 100%;
    padding: 0 30px;
  }
  .post-type-archive-plan .main .entry {
    width: calc((100% - 30px) / 4);
  }
  .post-type-archive-plan .main .entry + .entry {
    margin-left: 10px;
  }
  .post-type-archive-plan .main .entry:nth-child(4n+1) {
    margin-left: 0;
  }
  .post-type-archive-plan .main .entry:nth-child(n+5) {
    margin-top: 25px;
  }
  .post-type-archive-plan .main .entry__link:hover {
    opacity: 1;
  }
  .post-type-archive-plan .main .entry__link:hover .entry__thumb-img {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
  .post-type-archive-plan .main .entry__body {
    padding-top: 8px;
  }
  .post-type-archive-plan .main .entry__title {
    font-size: 15px;
  }
}
@media screen and (max-width: 758px) {
  .post-type-archive-plan .main .container {
    padding: 0 15px;
  }
  .post-type-archive-plan .main .entries {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .post-type-archive-plan .main .entry {
    width: calc((100% - 20px) / 2);
  }
  .post-type-archive-plan .main .entry + .entry {
    margin-left: 0;
  }
  .post-type-archive-plan .main .entry:nth-child(n+3) {
    margin-top: 15px;
  }
  .post-type-archive-plan .main .entry__body {
    padding-top: 5px;
  }
  .post-type-archive-plan .main .entry__title {
    font-size: 12px;
  }
}
/* ===================================

  よくある質問

====================================== */
body.post-type-archive-faq .main .contents {
  padding-top: 0;
}

.post-type-archive-faq .main .faq__contents {
  margin-top: 30px;
}
.post-type-archive-faq .main .faq__contents + .faq__contents {
  margin-top: 4em;
}
.post-type-archive-faq .main .faq__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 60px;
  background-color: #333;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}
.post-type-archive-faq .main .contents .items {
  margin-top: 35px;
  padding: 0 30px;
}
.post-type-archive-faq .main .contents .item {
  padding: 23px 20px;
  border: 1px solid #ccc;
}
.post-type-archive-faq .main .contents .item + .item {
  margin-top: -1px;
}
.post-type-archive-faq .main .contents .item__q, .post-type-archive-faq .main .contents .item__a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.post-type-archive-faq .main .contents .item__q {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.post-type-archive-faq .main .contents .item__a {
  margin-top: 20px;
}
.post-type-archive-faq .main .contents .item__head {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 35px;
          flex: 0 0 35px;
  width: 35px;
}
.post-type-archive-faq .main .contents .item__ico {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 3px;
  width: 25px;
  height: 25px;
  font-size: 16px;
  color: #fff;
  border-radius: 50%;
  background-color: #ff9800;
}
.post-type-archive-faq .main .contents .item__ico.answer {
  background-color: #333;
}
.post-type-archive-faq .main .contents .item__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  word-break: break-all;
  line-height: 1.75;
}
.post-type-archive-faq .main .contents .item__q .item__body {
  padding-right: 15px;
}
.post-type-archive-faq .main .contents .item__a .item__body {
  padding-right: 30px;
}
.post-type-archive-faq .main .contents .item__title {
  margin-top: -0.15em;
  font-weight: 700;
}
.post-type-archive-faq .main .contents .item__btn {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 15px;
          flex: 0 0 15px;
  width: 15px;
  height: 15px;
  margin-top: 0.32em;
  background-image: url(img/ico/ico-plus.svg);
  background-repeat: no-repeat;
  background-size: 15px 15px;
  background-position: center center;
}
.post-type-archive-faq .main .contents .item__btn.active {
  background-image: url(img/ico/ico-minus.svg);
}
.post-type-archive-faq .main .contents .item__txt {
  margin-top: -0.15em;
}
.post-type-archive-faq .main .contents .item__txt a {
  color: #3fa9f5;
  text-decoration: underline;
}

@media screen and (max-width: 1199px) {
  .post-type-archive-faq .main .faq__contents {
    margin-top: 25px;
  }
  .post-type-archive-faq .main .faq__contents + .faq__contents {
    margin-top: 3em;
  }
  .post-type-archive-faq .main .faq__title {
    height: 50px;
    font-size: 20px;
  }
  .post-type-archive-faq .main .contents .items {
    margin-top: 20px;
    padding: 0 20px;
  }
  .post-type-archive-faq .main .contents .item {
    padding: 20px 20px;
  }
  .post-type-archive-faq .main .contents .item__a {
    margin-top: 1em;
  }
  .post-type-archive-faq .main .contents .item__head {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30px;
            flex: 0 0 30px;
    width: 30px;
  }
  .post-type-archive-faq .main .contents .item__ico {
    padding-bottom: 2px;
    width: 22px;
    height: 22px;
    font-size: 14px;
  }
  .post-type-archive-faq .main .contents .item__q .item__body {
    padding-right: 12px;
  }
  .post-type-archive-faq .main .contents .item__a .item__body {
    padding-right: 25px;
  }
  .post-type-archive-faq .main .contents .item__title {
    margin-top: -0.1em;
  }
  .post-type-archive-faq .main .contents .item__btn {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 14px;
            flex: 0 0 14px;
    width: 14px;
    height: 14px;
    margin-top: 0.35em;
    background-size: 14px 14px;
  }
  .post-type-archive-faq .main .contents .item__txt {
    margin-top: -0.1em;
  }
}
@media screen and (max-width: 758px) {
  .post-type-archive-faq .main .faq__contents {
    margin-top: 22px;
  }
  .post-type-archive-faq .main .faq__contents + .faq__contents {
    margin-top: 2.5em;
  }
  .post-type-archive-faq .main .faq__title {
    padding: 10px 15px;
    height: auto;
    line-height: 1.5;
    font-size: 17px;
  }
  .post-type-archive-faq .main .contents .items {
    margin-top: 15px;
    padding: 0 10px;
  }
  .post-type-archive-faq .main .contents .item {
    padding: 15px 12px;
  }
  .post-type-archive-faq .main .contents .item__head {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 28px;
            flex: 0 0 28px;
    width: 28px;
  }
  .post-type-archive-faq .main .contents .item__ico {
    padding-bottom: 1px;
    width: 20px;
    height: 20px;
    font-size: 13px;
  }
  .post-type-archive-faq .main .contents .item__q .item__body {
    padding-right: 13px;
  }
  .post-type-archive-faq .main .contents .item__a .item__body {
    padding-right: 28px;
  }
  .post-type-archive-faq .main .contents .item__title {
    margin-top: -0.075em;
  }
  .post-type-archive-faq .main .contents .item__btn {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 15px;
            flex: 0 0 15px;
    width: 15px;
    height: 15px;
    margin-top: 0.2em;
    background-size: 15px 15px;
  }
  .post-type-archive-faq .main .contents .item__txt {
    margin-top: -0.075em;
  }
}
/* ===================================

  汎用詳細ページ

====================================== */
.single .main .single__container {
  width: 720px;
  margin: 0 auto;
  padding-top: 25px;
}
.single .main .entry {
  word-break: break-all;
}
.single .main .entry__head {
  position: relative;
  padding-bottom: 16px;
}
.single .main .entry__head::before, .single .main .entry__head::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  height: 2px;
}
.single .main .entry__head::before {
  width: 100%;
  background-color: #ccc;
}
.single .main .entry__head::after {
  width: 40px;
  background-color: #ff9800;
  z-index: 1;
}
.single .main .entry__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single .main .entry__cates {
  margin-left: 35px;
}
.single .main .entry__cate {
  position: relative;
  display: inline-block;
  padding: 7px 17px;
  background-color: #ff9800;
  border-radius: 9999px;
  color: #fff;
}
.single .main .entry__title {
  margin-top: 22px;
  font-size: 32px;
  line-height: 1.5;
}
.single .main .entry__thumb {
  margin-top: 35px;
}
.single .main .entry__thumb img {
  display: block;
  width: 100%;
}
.single .main .entry__body {
  word-break: break-all;
  padding-top: 80px;
}
.single .main .entry__body > *:first-child {
  margin-top: 0 !important;
}
.single .main .entry__body .wp-block-columns {
  margin-top: 2em;
}
.single .main .entry__body .wp-block-column > *:first-child {
  margin-top: 0;
}
.single .main .entry__body h2,
.single .main .entry__body h3,
.single .main .entry__body h4,
.single .main .entry__body h5,
.single .main .entry__body h6 {
  font-weight: 700;
  line-height: 1.5;
  font-family: "Noto Sans JP", system-ui;
}
.single .main .entry__body h2 {
  margin-top: 60px;
  padding-left: 15px;
  border-left: 3px solid #ff9800;
  font-size: 30px;
}
.single .main .entry__body h3 {
  margin-top: 50px;
  font-size: 26px;
}
.single .main .entry__body h4 {
  margin-top: 50px;
  font-size: 24px;
}
.single .main .entry__body h5 {
  margin-top: 50px;
  font-size: 20px;
}
.single .main .entry__body h6 {
  margin-top: 50px;
  font-size: 18px;
}
.single .main .entry__body p {
  margin-top: 30px;
  line-height: 2;
}
.single .main .entry__body p + p {
  margin-top: 1.25rem;
}
.single .main .entry__body .wp-block-image {
  margin-top: 40px;
}
.single .main .entry__body .wp-block-image img {
  margin: 0;
}
.single .main .entry__body .wp-block-image::after {
  content: "";
  display: block;
  clear: both;
}
.single .main .entry__body .aligncenter {
  margin: 40px auto 0;
}
.single .main .entry__body .alignright {
  margin-left: auto;
}
.single .main .entry__body .wp-caption {
  max-width: 100%;
}
.single .main .entry__body .wp-caption-text {
  margin-top: 3px;
}
.single .main .entry__body pre {
  overflow-x: auto;
}
.single .main .entry__body table {
  margin-top: 40px;
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e6e6e6;
}
.single .main .entry__body table th {
  display: table-cell;
  vertical-align: middle;
  background-color: #ddd;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  height: 65px;
  border: 1px solid #e6e6e6;
  color: #000;
  font-weight: 400;
}
.single .main .entry__body table th a {
  color: inherit;
}
.single .main .entry__body table td {
  display: table-cell;
  vertical-align: middle;
  height: 65px;
  border: 1px solid #e6e6e6;
  text-align: center;
}
.single .main .entry__body table td a {
  color: inherit;
}
.single .main .entry__body > ol, .single .main .entry__body > ul {
  margin-top: 40px;
}
.single .main .entry__body ol,
.single .main .entry__body ul {
  margin-top: 40px;
}
.single .main .entry__body ol li,
.single .main .entry__body ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  line-height: 1.5;
}
.single .main .entry__body ol li + li,
.single .main .entry__body ul li + li {
  margin-top: 0.75em;
}
.single .main .entry__body ul li::before {
  content: "";
  position: relative;
  top: 5px;
  margin-right: 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 15px;
          flex: 0 0 15px;
  width: 15px;
  height: 15px;
  background-color: #ff9800;
  border-radius: 50%;
}
.single .main .entry__body ol {
  counter-reset: num;
  list-style-type: none;
}
.single .main .entry__body ol li {
  line-height: 1.5;
}
.single .main .entry__body ol li::before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  content: counter(num);
  counter-increment: num;
  position: relative;
  top: 0px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  margin-right: 10px;
  padding-left: 1px;
  padding-bottom: 0;
  -ms-flex: 0 0 25px;
      flex: 0 0 25px;
  width: 25px;
  height: 25px;
  background-color: #ff9800;
  color: #fff;
  font-family: "Noto Sans JP", system-ui;
  font-weight: 500;
  font-size: 14px;
  border-radius: 50%;
}
.single .main .entry__body a {
  position: relative;
  color: #1a0dab;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.single .main .entry__body .wp-block-buttons {
  margin-top: 40px;
}
.single .main .entry__body .wp-block-buttons .wp-block-button a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 320px;
  height: 55px;
  font-size: 16px;
  font-weight: 700;
  background-color: #ff9800 !important;
  background-image: url(img/ico/ico-link-btn.png);
  background-repeat: no-repeat;
  background-size: 25px 25px;
  background-position: center right 25px;
}
.single .main .entry__body details {
  margin-top: 2em;
}
.single .main .entry__body .wp-calendar-table caption {
  margin-bottom: 0.5em;
  font-size: 1.2em;
}
.single .main .entry__body blockquote {
  position: relative;
  width: 100%;
  margin: 40px 0;
  background-color: #fff;
  padding: 43px 35px;
  border: 1px solid #ccc;
  border-left: 3px solid #ff9800;
}
.single .main .entry__body blockquote p {
  margin-top: 0;
}
.single .main .entry__body blockquote p + p {
  margin-top: 1em;
}
.single .main .entry__body blockquote cite {
  display: block;
  margin-top: 40px;
  font-size: 14px;
  font-style: normal;
}
.single .main .entry__body blockquote a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #ff9800;
}
.single .main .entry__body blockquote a:hover {
  opacity: 0.6;
}
.single .main .entry__body .wp-block-liquid-speech-balloon {
  margin-top: 40px;
}
.single .main .entry__body hr.wp-block-separator {
  margin: 40px auto;
  width: 30%;
  height: 2px;
  border-bottom: 2px solid #ff9800;
  border-top: none;
}
.single .main .entry__body hr.wp-block-separator.is-style-wide {
  width: 100%;
  border-bottom: 2px dashed #ff9800;
}
.single .main .entry__body .liquid-speech-balloon-text p {
  margin-top: 0;
}
.single .main .entry__body iframe {
  margin-top: 40px;
  max-width: 100%;
  width: 100%;
}
.single .main .entry__body figure.wp-block-embed-youtube {
  margin-top: 40px;
}
.single .main .entry__body figure.wp-block-embed-youtube .wp-block-embed__wrapper {
  position: relative;
  margin-bottom: 0;
  padding-top: 56.25%;
  width: 100%;
}
.single .main .entry__body figure.wp-block-embed-youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}
.single .main .entry__body .toc-mokuji-content {
  margin-top: 40px;
}
.single .main .entry__body .wp-block-columns.is-layout-flex {
  gap: 60px;
}

@media screen and (max-width: 1199px) {
  .single .main .single__container {
    width: 100%;
    padding: 25px 30px 0;
  }
  .single .main .entry__head {
    padding-bottom: 18px;
  }
  .single .main .entry__head::after {
    width: 35px;
  }
  .single .main .entry__cates {
    margin-left: 25px;
  }
  .single .main .entry__cate {
    padding: 6px 15px;
  }
  .single .main .entry__title {
    margin-top: 15px;
    font-size: 26px;
  }
  .single .main .entry__thumb {
    margin-top: 25px;
  }
  .single .main .entry__body {
    padding-top: 40px;
  }
  .single .main .entry__body .toc-mokuji-content {
    margin-top: 30px;
  }
  .single .main .entry__body h2 {
    margin-top: 40px;
    font-size: 22px;
    padding-left: 12px;
  }
  .single .main .entry__body h3 {
    margin-top: 40px;
    font-size: 20px;
  }
  .single .main .entry__body h4 {
    margin-top: 35px;
    font-size: 18px;
  }
  .single .main .entry__body h5 {
    margin-top: 35px;
    font-size: 16px;
  }
  .single .main .entry__body h6 {
    margin-top: 35px;
    font-size: 14px;
  }
  .single .main .entry__body p {
    margin-top: 1em;
  }
  .single .main .entry__body p + p {
    margin-top: 1rem;
  }
  .single .main .entry__body .wp-block-image {
    margin-top: 35px;
  }
  .single .main .entry__body .aligncenter {
    margin: 35px auto 0;
  }
  .single .main .entry__body .wp-caption-text {
    margin-top: 2px;
  }
  .single .main .entry__body table {
    margin-top: 35px;
  }
  .single .main .entry__body table th {
    font-size: 16px;
    height: 58px;
  }
  .single .main .entry__body table td {
    height: 58px;
  }
  .single .main .entry__body > ol, .single .main .entry__body > ul {
    margin-top: 35px;
  }
  .single .main .entry__body ul li::before {
    top: 4px;
    margin-right: 12px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 14px;
            flex: 0 0 14px;
    width: 14px;
    height: 14px;
  }
  .single .main .entry__body ol li::before {
    top: 0;
    margin-right: 8px;
    padding-left: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20px;
            flex: 0 0 20px;
    width: 20px;
    height: 20px;
    font-size: 12px;
  }
  .single .main .entry__body .wp-block-buttons {
    margin-top: 35px;
  }
  .single .main .entry__body .wp-block-buttons .wp-block-button a {
    max-width: 100%;
    background-size: 30px 30px;
    background-position: center right 15px;
    font-size: 15px;
  }
  .single .main .entry__body blockquote {
    margin-top: 35px;
    padding: 35px 30px;
  }
  .single .main .entry__body blockquote cite {
    margin-top: 35px;
    font-size: 12px;
  }
  .single .main .entry__body .wp-block-liquid-speech-balloon {
    margin-top: 35px;
  }
  .single .main .entry__body hr.wp-block-separator {
    margin: 35px auto;
    width: 30%;
    height: 2px;
  }
  .single .main .entry__body iframe {
    margin-top: 35px;
  }
  .single .main .entry__body figure.wp-block-embed-youtube {
    margin-top: 35px;
  }
  .single .main .entry__body .wp-block-columns.is-layout-flex {
    margin-top: 35px;
    gap: 1.5em;
  }
}
@media screen and (max-width: 758px) {
  .single .main .single__container {
    padding: 20px 15px 0;
  }
  .single .main .entry__head {
    padding-bottom: 15px;
  }
  .single .main .entry__head::after {
    width: 30px;
  }
  .single .main .entry__cates {
    margin-left: 20px;
  }
  .single .main .entry__cate {
    padding: 5px 12px;
  }
  .single .main .entry__title {
    margin-top: 12px;
    font-size: 20px;
  }
  .single .main .entry__thumb {
    margin-top: 15px;
  }
  .single .main .entry__body {
    padding-top: 30px;
  }
  .single .main .entry__body .toc-mokuji-content {
    margin-top: 25px;
  }
  .single .main .entry__body h2 {
    margin-top: 30px;
    font-size: 18px;
    padding-left: 10px;
  }
  .single .main .entry__body h3 {
    margin-top: 30px;
    font-size: 16px;
  }
  .single .main .entry__body h4 {
    margin-top: 25px;
    font-size: 14px;
  }
  .single .main .entry__body h5 {
    margin-top: 25px;
    font-size: 13px;
  }
  .single .main .entry__body h6 {
    margin-top: 25px;
    font-size: 12px;
  }
  .single .main .entry__body p {
    margin-top: 25px;
    line-height: 2;
  }
  .single .main .entry__body p + p {
    margin-top: 1.25rem;
  }
  .single .main .entry__body .wp-block-image {
    margin-top: 25px;
  }
  .single .main .entry__body .aligncenter {
    margin: 25px auto 0;
  }
  .single .main .entry__body table {
    margin-top: 25px;
  }
  .single .main .entry__body table th {
    font-size: 13px;
    height: 45px;
  }
  .single .main .entry__body table td {
    height: 45px;
  }
  .single .main .entry__body > ol, .single .main .entry__body > ul {
    margin-top: 25px;
  }
  .single .main .entry__body ul li::before {
    top: 2px;
    margin-right: 10px;
  }
  .single .main .entry__body ol li::before {
    top: -1px;
    margin-right: 8px;
    padding-bottom: 1px;
    font-size: 10px;
  }
  .single .main .entry__body blockquote {
    margin-top: 25px;
    padding: 30px 20px;
  }
  .single .main .entry__body .wp-block-buttons {
    margin-top: 25px;
  }
  .single .main .entry__body .wp-block-buttons .wp-block-button {
    margin: 0 auto;
    min-width: 100%;
    max-width: 100%;
    width: 100%;
  }
  .single .main .entry__body .wp-block-buttons .wp-block-button a {
    min-width: 100%;
    width: 100%;
    font-size: 14px;
  }
  .single .main .entry__body .wp-block-liquid-speech-balloon {
    margin-top: 25px;
  }
  .single .main .entry__body hr.wp-block-separator {
    margin: 25px auto;
    height: 2px;
  }
  .single .main .entry__body iframe {
    margin-top: 25px;
  }
  .single .main .entry__body figure.wp-block-embed-youtube {
    margin-top: 25px;
  }
  .single .main .entry__body .wp-block-columns.is-layout-flex {
    margin-top: 30px;
    gap: 1em;
  }
}
/* ===================================

  404ページ

====================================== */
.error404 .main .container {
  width: 1120px;
  max-width: 100%;
  margin: 0 auto;
}
.error404__contents {
  padding-top: 2em;
}
.error404__title {
  font-size: 32px;
  line-height: 1.5;
  text-align: center;
}
.error404__txt {
  margin-top: 50px;
  line-height: 2;
  text-align: center;
}
.error404__link {
  margin-top: 80px;
}

@media screen and (max-width: 1199px) {
  .error404 .main .container {
    width: 100%;
    padding: 0 30px;
  }
  .error404__title {
    font-size: 24px;
    text-align: left;
  }
  .error404__txt {
    margin-top: 60px;
    text-align: left;
  }
  .error404__link {
    margin: 60px 0 0;
  }
}
@media screen and (max-width: 758px) {
  .error404 .main .container {
    padding: 0 15px;
  }
  .error404__title {
    font-size: 20px;
    text-align: center;
  }
  .error404__txt {
    margin-top: 30px;
  }
  .error404__link {
    margin: 50px auto 0;
  }
}