@charset "UTF-8";
/* =====================================
 * 変数設定
 * ================================== */
/* =====================================
 * カラー変数
 * ================================== */
/*

$c-〇〇〇-darker:標準カラーよりやや暗め;
$c-〇〇〇-dark:標準カラーより少し暗め;
$c-〇〇〇:標準カラー;
$c-〇〇〇-lighter:標準カラーより少し薄め;
$c-〇〇〇-light:標準カラーよりやや薄め;

↓

$c-blk-darker:#000;
$c-blk-dark:#111;
$c-blk:#333;
$c-blk-lighter:#555;
$c-blk-light:#777;

*/
/* =====================================
 * メディアクエリ
 * ================================== */
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html,
body,
div,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  word-wrap: break-word;
}

html {
  scroll-behavior: smooth;
}

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

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  word-break: break-all;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

img {
  max-width: 100%;
  /*最大横幅制御*/
  height: auto;
  /*縦長比維持*/
  vertical-align: bottom;
  /*画像下部の謎の余白をなくす*/
  line-height: 1;
  /*ブラウザによって有効と無効な場合がありますが、一応入れておく*/
  border: 0;
  /*ブラウザによって有効と無効な場合がありますが、一応入れておく*/
}

/* レスポンシブ表示 */
@media only screen and (min-width: 768px) {
  .pc-none {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .sp-none {
    display: none !important;
  }
}
/* aリンク PCでクリック非表示 */
@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/* =====================================
 * ベース設定
 * ================================== */
html {
  overflow-y: scroll;
  font-size: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  html {
    font-size: 87.5%;
  }
}

body {
  position: relative;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
  line-height: 1.75;
  text-align: left;
  color: #333;
  font-weight: normal;
  font-size: 1rem;
  font-family: "Open Sans", "Helvetica Neue", "Helvetica", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  min-width: calc(1200px + 2rem);
  width: 100%;
}
body.is-loaded * {
  -webkit-transition: none !important;
  transition: none !important;
}
@media (max-width: 767px) {
  body {
    min-width: auto;
    overflow-x: hidden;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

a:not([class]) {
  color: inherit;
  text-decoration: underline;
}
@media (min-width: 768px) {
  a:not([class]):hover {
    text-decoration: none;
  }
}
a:not([class])[href^="#"], a:not([class])[data-type=URL] {
  color: #0055A2;
}

ul[class],
ol[class] {
  list-style: none;
}

strong,
span {
  font-size: 100%;
}

strong {
  font-weight: bold;
}

iframe {
  display: block;
  max-width: 100%;
}

cite {
  font-style: normal;
}

input,
textarea,
select {
  border-radius: 0;
  outline: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  padding: 0;
  margin: 0;
  max-width: 100%;
}

textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=tel],
input[type=email],
input[type=number],
select,
input[type=text],
textarea {
  display: block;
}
input[type=tel]:not([size]),
input[type=email]:not([size]),
input[type=number]:not([size]),
select:not([size]),
input[type=text]:not([size]),
textarea:not([size]) {
  width: 100%;
}

input[type=submit],
button {
  line-height: inherit;
  border-radius: 0;
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  margin: 0;
  font-size: inherit;
  font-family: inherit;
  color: inherit;
}
@media (min-width: 768px) {
  input[type=submit]:hover,
  button:hover {
    cursor: pointer;
  }
}

label {
  cursor: pointer;
}

::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #D7D7D7;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #D7D7D7;
}

::-moz-placeholder {
  /* Others */
  color: #D7D7D7;
}

::-ms-input-placeholder {
  /* Others */
  color: #D7D7D7;
}

::placeholder {
  /* Others */
  color: #D7D7D7;
}

::-moz-selection {
  background: #0055A2;
  color: #fff;
}

::selection {
  background: #0055A2;
  color: #fff;
}

::-moz-selection {
  background: #0055A2;
  color: #fff;
}

/* スクロールの幅の設定 */
html::-webkit-scrollbar {
  width: 0.625rem;
  height: 0.625rem;
}

/* スクロールの背景の設定 */
html::-webkit-scrollbar-track {
  border-radius: 0.25rem;
  -webkit-box-shadow: 0 0 0.25rem #D7D7D7 inset;
          box-shadow: 0 0 0.25rem #D7D7D7 inset;
}

/* スクロールのつまみ部分の設定 */
html::-webkit-scrollbar-thumb {
  border-radius: 0.25rem;
  background: #333;
}

.l-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  /*固定ヘッダーの時にこちらのクラスを付ける*/
}
.l-header[class] a {
  color: inherit;
  text-decoration: none;
}
@media (max-width: 767px) {
  .l-header[class] a {
    color: #fff;
  }
}
.l-header.js-fixed-header {
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100%;
}
.l-header.is-active {
  background-color: #fff;
  z-index: 100000;
}
.l-header__inner {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 768px) {
  .l-header__inner {
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
    padding-right: calc(240px + 1rem);
    padding-left: 4rem;
  }
}
@media (max-width: 767px) {
  .l-header__inner {
    height: 56px;
  }
}
.l-header__logo-img {
  display: block;
}
.l-header__logo-img img {
  max-width: 168px;
}
@media (max-width: 767px) {
  .l-header__logo-img img {
    width: 80px;
  }
}
.l-header__logo-text {
  letter-spacing: 0.12em;
  font-size: 9px;
}
.l-header__logo-text + * {
  margin-top: 0.125rem;
}
@media (max-width: 767px) {
  .l-header__logo-text {
    display: none;
  }
}
.l-header__link-contact {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-ordinal-group: 11;
  -webkit-order: 10;
      -ms-flex-order: 10;
          order: 10;
}
.l-header__link-contact + * {
  margin-top: 0.75rem;
}
@media (max-width: 767px) {
  .l-header__link-contact {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-header__link-contact > * + * {
  margin-left: 2rem;
}
@media (max-width: 767px) {
  .l-header__link-contact > * + * {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .l-header__link, .l-header__btn {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .l-header__link {
    -webkit-box-ordinal-group: 21;
    -webkit-order: 20;
        -ms-flex-order: 20;
            order: 20;
    margin-top: 1rem;
  }
}
@media (max-width: 767px) {
  .l-header__link li {
    text-align: center;
  }
}
.l-header__link li a[target=_blank] {
  background-repeat: no-repeat;
  background-size: auto auto;
  background-position: right center;
  background-image: url(../img/ico_blank.svg);
  padding-right: 1.25rem;
}
@media (max-width: 767px) {
  .l-header__link li a[target=_blank] {
    background-image: url(../img/ico_blank_wht.svg);
  }
}
@media (min-width: 768px) {
  .l-header__btn {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
  }
}
@media (max-width: 767px) {
  .l-header__btn {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
        -ms-flex-order: 10;
            order: 10;
    margin-top: 1rem;
  }
}
.l-header__menu {
  margin-left: auto;
}
@media (max-width: 767px) {
  .l-header__menu {
    display: none;
    background-color: #fff;
    position: absolute;
    z-index: 99999;
    top: 0;
    left: 0;
    width: 100vw;
    padding: 0 1rem 2rem;
    margin-top: 56px;
    height: calc(100vh - 56px);
    height: calc(100dvh - 56px);
    overflow-y: auto;
  }
}
.l-header__menu.is-active {
  background-color: #0055A2;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .l-header__menu-inner {
    padding-top: 1.5rem;
  }
}
.l-header__gnav {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .l-header__gnav {
    display: block;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
}
.l-header__menu-list, .l-header__link-list, .l-header__btn-list {
  line-height: 1.5;
  list-style: none;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.l-header__menu-list {
  margin-left: auto;
}
@media (max-width: 767px) {
  .l-header__menu-list {
    display: block;
  }
}
.l-header__menu-list li + li {
  margin-left: 1.5rem;
}
@media (max-width: 767px) {
  .l-header__menu-list li + li {
    margin: 0;
  }
}
.l-header__menu-list .submenu-wrap {
  border-radius: 1.5rem;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: relative;
}
@media (min-width: 768px) {
  .l-header__menu-list .submenu-wrap {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    position: absolute;
    z-index: 10;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin-top: 3rem;
  }
  .l-header__menu-list .submenu-wrap ul {
    position: relative;
    border-radius: 1.5rem;
    z-index: 10;
    background-color: #F0F8FB;
    padding: 2.5rem 5rem;
  }
}
@media (max-width: 767px) {
  .l-header__menu-list .submenu-wrap {
    padding-bottom: 0.75rem;
  }
}
.l-header__menu-list .submenu-wrap:hover {
  opacity: 1;
  visibility: inherit;
  pointer-events: auto;
}
.l-header__menu-list .submenu-wrap::before {
  content: "";
  background-color: #F0F8FB;
  pointer-events: none;
  display: block;
  width: 3rem;
  height: 3rem;
  -webkit-transform: rotate(45deg) translateY(1rem) translateX(-50%);
          transform: rotate(45deg) translateY(1rem) translateX(-50%);
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
}
@media (max-width: 767px) {
  .l-header__menu-list .submenu-wrap::before {
    display: none;
  }
}
.l-header__menu-list .submenu-title {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  border-right: 1px solid #D7D7D7;
  font-weight: bold;
  font-size: 1.125rem;
  padding-right: 3.5rem;
}
@media (max-width: 767px) {
  .l-header__menu-list > li > a {
    background-repeat: no-repeat;
    background-size: 1.125rem auto;
    background-position: right center;
    background-image: url(../img/ico_arr_right_wht.svg);
  }
}
.l-header__menu-list > li ul li + li {
  margin-top: 0.5rem;
}
.l-header__menu-list > li ul li {
  margin-left: 0;
  border: none;
}
.l-header__menu-list > li ul li a {
  background-repeat: no-repeat;
  background-size: auto auto;
  background-position: left center;
  font-size: 0.875rem;
  white-space: nowrap;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  padding-left: 1.25rem;
}
@media (min-width: 768px) {
  .l-header__menu-list > li ul li a {
    background-image: url(../img/ico_arr_right_pri.svg);
  }
}
@media (max-width: 767px) {
  .l-header__menu-list > li ul li a::after {
    display: block;
    background-color: #fff !important;
    width: 0.5rem !important;
    height: 1px !important;
    right: auto !important;
    bottom: 50% !important;
    left: 0 !important;
    -webkit-transform: none !important;
            transform: none !important;
  }
}
.l-header__menu-list > li:has(ul) > a {
  position: relative;
  background-repeat: no-repeat;
  background-size: auto auto;
  background-position: right center;
  background-image: url(../img/ico_arr_down.svg);
  padding-right: 1.25rem;
}
.l-header__menu-list > li:has(ul) > a::before {
  content: "";
  display: block;
  height: 300%;
  width: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  .l-header__menu-list > li:has(ul) > a::before {
    display: none;
  }
}
@media (min-width: 768px) {
  .l-header__menu-list > li:has(ul) > a:hover + * {
    opacity: 1;
    visibility: inherit;
    pointer-events: auto;
  }
}
@media (max-width: 767px) {
  .l-header__menu-list > li:has(ul) > a {
    background: none;
  }
}
.l-header__menu-list > li > a {
  font-weight: bold;
}
.l-header__menu-list li {
  position: relative;
}
@media (max-width: 767px) {
  .l-header__menu-list li {
    border-bottom: 1px solid #fff;
  }
}
.l-header__menu-list li a[target=_blank] {
  background-repeat: no-repeat;
  background-size: auto auto;
  background-position: right center;
  background-image: url(../img/ico_blank.svg);
  padding-right: 1.25rem;
}
@media (max-width: 767px) {
  .l-header__menu-list li a[target=_blank] {
    background-image: url(../img/ico_blank_wht.svg);
  }
}
.l-header__menu-list li a {
  position: relative;
}
@media (max-width: 767px) {
  .l-header__menu-list li a {
    display: block;
    padding: 1rem 0;
  }
}
.l-header__menu-list li a::after {
  content: "";
  display: block;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: absolute;
  background-color: #0055A2;
  right: 0;
  bottom: 0;
  width: 0;
  height: 2px;
}
@media (min-width: 768px) {
  .l-header__menu-list li a::after {
    margin-bottom: -0.25rem;
  }
}
@media (max-width: 767px) {
  .l-header__menu-list li a::after {
    background-color: #D7D7D7;
    height: 1px;
    width: 100%;
    display: none;
  }
}
.l-header__menu-list li a[class]::after {
  left: 0;
  right: auto;
  width: 100%;
}
@media (max-width: 767px) {
  .l-header__menu-list li a[class]::after {
    background-color: #0055A2;
    height: 2px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media (min-width: 768px) {
  .l-header__menu-list li a:hover {
    text-decoration: none;
  }
  .l-header__menu-list li a:hover::after {
    left: 0;
    right: auto;
    width: 100%;
  }
}
.l-header__link-list {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.l-header__link-list li + li {
  margin-left: 1.5rem;
}
.l-header__link-list li a {
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .l-header__link-list li a:hover {
    text-decoration: underline;
  }
}
@media (max-width: 767px) {
  .l-header__link-list li a {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .l-header__link-list {
    -webkit-box-pack: start;
    -webkit-justify-content: start;
        -ms-flex-pack: start;
            justify-content: start;
    gap: 1.25rem;
  }
  .l-header__link-list li + li {
    margin-left: 0;
  }
  .l-header__link-list li a {
    display: block;
    font-size: 0.75rem;
    padding: 0.5rem 0;
  }
}
@media (max-width: 767px) {
  .l-header__btn-list {
    display: block;
    margin: 0;
  }
}
.l-header__btn-list li {
  display: block;
}
@media (min-width: 768px) {
  .l-header__btn-list li {
    text-align: center;
    line-height: 2;
    border-bottom-left-radius: 3rem;
    background: -webkit-gradient(linear, left top, left bottom, from(#4992BF), to(#90CCD0));
    background: -webkit-linear-gradient(top, #4992BF, #90CCD0);
    background: linear-gradient(to bottom, #4992BF, #90CCD0);
    padding: 1.875rem 2rem 1.625rem;
  }
}
@media (max-width: 767px) {
  .l-header__btn-list li {
    background-color: #fff;
    padding: 0.75rem 1.125rem;
  }
}
.l-header__btn-list li a {
  font-weight: bold;
}
.l-header__btn-list li a:hover {
  text-decoration: none;
}
@media (max-width: 767px) {
  .l-header__btn-list li a {
    color: #0055A2 !important;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    font-size: 1.125rem;
  }
}
.l-header__btn-list li a::after {
  content: "";
  display: none;
  background-repeat: no-repeat;
  background-size: auto auto;
  background-position: left center;
  width: 1rem;
  height: 1rem;
  -webkit-transform: translateY(0.125rem);
          transform: translateY(0.125rem);
  margin-left: 0.25rem;
}
@media (max-width: 767px) {
  .l-header__btn-list li a::after {
    width: 1.25rem;
    height: 1.25rem;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    margin-left: 0;
    margin-right: 0.5rem;
  }
}
@media (min-width: 768px) {
  .l-header__btn-list li.-contact {
    max-width: 240px;
  }
}
.l-header__btn-list li.-contact a::after {
  display: inline-block;
  background-image: url(../img/ico_mail_wht.svg);
}
@media (max-width: 767px) {
  .l-header__btn-list li.-contact a::after {
    background-image: url(../img/ico_mail_pri.svg);
  }
}
.l-header__btn-list li + li {
  margin-left: 1rem;
}
@media (max-width: 767px) {
  .l-header__btn-list li + li {
    margin: 1rem 0 0 0;
  }
}
.l-header__btn-list[class] li a {
  color: #fff;
}
@media (max-width: 767px) {
  .l-header__contact {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
}
.l-header__contact-tel[class] {
  line-height: 1.5;
  font-weight: bold;
}
.l-header__contact-tel[class] a {
  background-repeat: no-repeat;
  background-size: auto auto;
  background-position: left center;
  background-image: url(../img/ico_tel_pri.svg);
  color: #0055A2;
  font-size: 1.75rem;
  padding-left: 1.75rem;
}
@media (max-width: 767px) {
  .l-header__contact-tel[class] a {
    background-image: url(../img/ico_tel_wht.svg);
    font-size: 2rem;
    color: #fff;
  }
}
@media (max-width: 767px) {
  .l-header__contact-tel[class] {
    font-size: 2rem;
  }
}
.l-header__contact-time {
  line-height: 1.5;
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .l-header__contact-time {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .l-header__contact-time {
    font-size: 1rem;
    color: #fff;
  }
}
.l-header__trigger {
  display: table;
  width: 56px;
  height: 56px;
  margin-right: -1.25rem;
}
.l-header__trigger-btn {
  background: -webkit-gradient(linear, left top, left bottom, from(#4992BF), to(#90CCD0));
  background: -webkit-linear-gradient(top, #4992BF, #90CCD0);
  background: linear-gradient(to bottom, #4992BF, #90CCD0);
  border-bottom-left-radius: 1.25rem;
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 100%;
}
.l-header__trigger-btn::after {
  content: attr(data-menu-text);
  display: block;
  width: 100%;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.625rem;
  text-align: center;
  padding-top: 12px;
}
.l-header__trigger-btn > * {
  display: block;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  line-height: 1;
  position: relative;
  transition: all 0.2s ease-in-out;
  background-color: #fff;
  font-size: 0;
  color: transparent;
  width: 20px;
  height: 2px;
  margin-left: 18px;
  margin-top: 12px;
}
.l-header__trigger-btn > *::before, .l-header__trigger-btn > *::after {
  content: "";
  display: block;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  background-color: #fff;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.l-header__trigger-btn > *::before {
  margin-top: -8px;
}
.l-header__trigger-btn > *::after {
  margin-top: 8px;
}
.l-header__trigger-btn.is-active > *::before {
  -webkit-transform: translate(-50%, 8px) rotate(-45deg);
          transform: translate(-50%, 8px) rotate(-45deg);
}
.l-header__trigger-btn.is-active > * {
  background-color: transparent;
}
.l-header__trigger-btn.is-active > *::after {
  -webkit-transform: translate(-50%, -8px) rotate(45deg);
          transform: translate(-50%, -8px) rotate(45deg);
}
.l-header__tel {
  margin-left: auto;
}
.l-header__tel a {
  display: block;
  width: 56px;
  height: 56px;
  background-repeat: no-repeat;
  background-size: 50% auto;
  background-position: center center;
  background-image: url(../img/ico_tel_pri.svg);
  color: transparent;
  font-size: 0;
}

body[data-page-type=form] .l-header {
  position: relative !important;
}
body[data-page-type=form] .l-header__tel, body[data-page-type=form] .l-header__logo-text, body[data-page-type=form] .l-header__trigger, body[data-page-type=form] .l-header__menu {
  display: none;
}
body[data-page-type=form] .l-header__inner {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-right: 0;
}
@media (min-width: 768px) {
  body[data-page-type=form] .l-header__inner {
    padding-top: 2.5rem;
  }
}

.l-footer {
  border-top-right-radius: 200px;
  background-color: #0055A2;
  padding-top: 8rem;
  padding-bottom: 8rem;
}
@media (max-width: 767px) {
  .l-footer {
    border-top-right-radius: 60px;
    padding-top: 3rem;
    padding-bottom: 2rem;
  }
}
.l-footer[class] a {
  color: #fff;
  text-decoration: none;
}
.l-footer[class] a:hover {
  text-decoration: underline;
}
.l-footer__cv {
  background-color: #6B6A6A;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 768px) {
  .l-footer__site-inner {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.l-footer__logo a {
  display: block;
  max-width: 156px;
}
.l-footer__logo a + * {
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .l-footer__logo a {
    max-width: 80px;
    display: block;
  }
}
.l-footer__logo-text {
  color: #fff;
  font-size: 0.75rem;
}
.l-footer__address {
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .l-footer__sitemap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.l-footer__sitemap-list {
  min-width: 240px;
}
.l-footer__sitemap-list > li > a {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  width: 100%;
  border-bottom: 1px solid #fff;
  font-weight: bold;
  font-size: 1rem;
  background-repeat: no-repeat;
  background-size: auto auto;
  background-position: right 0.5rem;
  background-image: url(../img/ico_arr_right_wht.svg);
  padding-bottom: 1.5rem;
  padding-right: 1.25rem;
}
.l-footer__sitemap-list > li > a:hover {
  opacity: 0.64;
  cursor: pointer;
  text-decoration: none !important;
}
.l-footer__sitemap-list > li > a[target=_blank] {
  background-size: auto auto;
  background-image: url(../img/ico_blank_wht.svg);
}
.l-footer__sitemap-list ul {
  margin-top: 1.25rem;
}
.l-footer__sitemap-list ul li + li {
  margin-top: 0.75rem;
}
.l-footer__sitemap-list ul li a {
  position: relative;
  padding-left: 1rem;
}
.l-footer__sitemap-list ul li a::before {
  content: "";
  display: block;
  background-color: #fff;
  width: 0.5rem;
  height: 1px;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
}
.l-footer__sitemap-list > li li > a {
  font-size: 0.875rem;
}
.l-footer__sitemap-list > li + li {
  margin-top: 1.5rem;
}
.l-footer__sitemap-list + * {
  margin-left: 3rem;
}
.l-footer__sitemap-list ul:not(:has(> li)) {
  display: none;
}
.l-footer__info-inner {
  border-top: 1px solid #fff;
  padding-top: 1rem;
  margin-top: 8rem;
}
@media (min-width: 768px) {
  .l-footer__info-inner {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 767px) {
  .l-footer__info-inner {
    margin-top: 3rem;
  }
}
@media (max-width: 767px) {
  .l-footer__link + * {
    margin-top: 1rem;
  }
}
.l-footer__link-list {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.l-footer__link-list li a {
  font-size: 0.875rem;
}
.l-footer__link-list li + li {
  margin-left: 1.5rem;
}
.l-footer__copyright {
  color: #fff;
  font-weight: bold;
}
@media (max-width: 767px) {
  .l-footer__copyright {
    font-size: 0.75rem;
    text-align: center;
  }
}

body[data-page-type=form] .l-footer {
  border-radius: 0;
  padding-top: 0;
  padding-bottom: 0;
}
body[data-page-type=form] .l-footer__info-inner {
  border: none;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
body[data-page-type=form] .l-footer__site, body[data-page-type=form] .l-footer__link, body[data-page-type=form] .l-footer__sitemap, body[data-page-type=form] .l-footer__cv {
  display: none;
}
body[data-page-type=form] .l-footer__info-inner, body[data-page-type=form] .l-footer__site-inner {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
body[data-page-type=form] .l-footer__address, body[data-page-type=form] .l-footer__logo {
  text-align: center;
}
body[data-page-type=form] .l-footer__copyright {
  margin-top: 0;
}

.l-footer__link-list {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-footer__link-list[class] li.-privacy a {
  overflow: hidden;
  display: block;
  font-size: 0;
  color: transparent;
  background-image: url(../img/ico_privacy.png);
  background-size: 100% auto;
  width: 4rem;
  height: 4rem;
}
@media (max-width: 767px) {
  .l-footer__link-list[class] li.-privacy a {
    display: none;
  }
}

/* =====================================
 * コンテンツ幅
 * ================================== */
.l-container {
  max-width: calc(1200px + 2rem);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
.l-container.-sm {
  max-width: calc(960px + 2rem);
}
.l-container.-xs {
  max-width: calc(800px + 2rem);
}
.l-container.-lg {
  max-width: 100%;
}
@media (max-width: 767px) {
  .l-container {
    max-width: 100%;
  }
  .l-container, .l-container.-lg, .l-container.-sm, .l-container.-xs {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .l-container .l-container {
    padding-left: 0;
    padding-right: 0;
  }
}

.l-main + * {
  margin-top: 8rem;
}
@media (max-width: 767px) {
  .l-main + * {
    margin-top: 6rem;
  }
}
@media (min-width: 768px) {
  .l-main__inner.-col2 {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 768px) {
  .l-main__inner.-col2 .l-main__content {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -webkit-flex-basis: calc(100% - 260px);
        -ms-flex-preferred-size: calc(100% - 260px);
            flex-basis: calc(100% - 260px);
    max-width: calc(100% - 260px);
    padding-right: 3rem;
  }
}
@media (min-width: 768px) {
  .l-main__sidebar {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -webkit-flex-basis: 260px;
        -ms-flex-preferred-size: 260px;
            flex-basis: 260px;
    max-width: 260px;
  }
}
@media (max-width: 767px) {
  .l-main__sidebar {
    margin-top: 4rem;
  }
}

body[data-page-slug=park] .l-main {
  padding-top: 120px;
}
@media (max-width: 767px) {
  body[data-page-slug=park] .l-main {
    padding-top: 4rem;
  }
}

body[data-page-slug=park_blog] {
  padding-top: 124px;
}
@media (max-width: 767px) {
  body[data-page-slug=park_blog] {
    padding-top: 56px;
  }
}

/* =====================================
 * extend用のclassをここに集約
 * ================================== */
.c-hover, .p-coin-parking-search__tag-list li > *, .p-park-content__sidebar-bnr-item, .c-pagetop__btn, .c-sidebar__bnr-item > *, .l-header__logo > *, .l-header__btn-list li, .l-header__btn-list li a, .l-footer__logo > * {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 768px) {
  .c-hover:hover, .p-coin-parking-search__tag-list li > :hover, .p-park-content__sidebar-bnr-item:hover, .c-pagetop__btn:hover, .c-sidebar__bnr-item > :hover, .l-header__logo > :hover, .l-header__btn-list li:hover, .l-header__btn-list li a:hover, .l-footer__logo > :hover {
    cursor: pointer;
    text-decoration: none !important;
    opacity: 0.84;
  }
}

.c-img, .p-guide-payment__img, .p-use-img__img {
  aspect-ratio: 16/9;
}
.c-img img, .p-guide-payment__img img, .p-use-img__img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}

.c-no-img, .p-post-card__img {
  position: relative;
}
.c-no-img::before, .p-post-card__img::before {
  content: "";
  display: block;
  background-color: #f1f1f1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -20;
  pointer-events: none;
}
.c-no-img::after, .p-post-card__img::after {
  content: "NO IMAGE";
  display: block;
  font-weight: bold;
  font-size: 1.5rem;
  text-align: center;
  position: absolute;
  z-index: -10;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0.24;
}

.c-all-link, .p-blog-list__item, .p-coin-parking-list__item, .p-guide-list__item, .p-post-card__item, .p-post-list__item, .l-header__btn-list li {
  position: relative;
}
.c-all-link a::before, .p-blog-list__item a::before, .p-coin-parking-list__item a::before, .p-guide-list__item a::before, .p-post-card__item a::before, .p-post-list__item a::before, .l-header__btn-list li a::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.c-shadow, .p-coin-parking-list__item, .p-guide-list__item, .p-post-detail__item:hover .p-column-list__img, .l-header__menu-list .submenu-wrap, .l-header__menu-list .submenu-wrap::before {
  -webkit-box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.04);
          box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.04);
}

/* =====================================
 * スマホでメニューを展開状態になった時に、その下にマスクを敷く
 * ================================== */
@media (max-width: 767px) {
  .c-mask {
    display: none;
    background-color: rgba(0, 0, 0, 0.64);
    position: absolute;
    z-index: 9999;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin-top: 64px;
  }
}

.c-sidebar__section + .c-sidebar__section {
  margin-top: 3rem;
}
.c-sidebar__title {
  font-weight: bold;
}
.c-sidebar__title + * {
  margin-top: 1rem;
}
.c-sidebar__bnr-item + .c-sidebar__bnr-item {
  margin-top: 1rem;
}

.c-cat01__list li > * {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  border-bottom: 1px solid #D7D7D7;
  display: block;
  background-position: right center;
  background-position-x: calc(100% - 1rem);
  background-repeat: no-repeat;
  background-image: url(../img/ico_arr_right_pri.svg);
  background-size: 0.45em auto;
  padding: 1rem 1.5rem 1rem 1rem;
}
.c-cat01__list li > *, .c-cat01__list li > *:hover {
  text-decoration: none;
}
@media (min-width: 768px) {
  .c-cat01__list li > *:hover {
    background-color: #f1f1f1;
  }
}
.c-cat01__list li:first-child > * {
  border-top: 1px solid #D7D7D7;
}

.c-cat02__list {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: -0.5rem 0 0 -0.5rem;
}
.c-cat02__list li {
  margin: 0.5rem 0 0 0.5rem;
}
.c-cat02__list li > * {
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  border: 1px solid #D7D7D7;
  display: block;
  font-size: 0.875rem;
  padding: 0.25rem 0.75rem 0.125rem;
}
@media (min-width: 768px) {
  .c-cat02__list li > *:hover {
    background-color: #f1f1f1;
  }
}
@media (max-width: 767px) {
  .c-cat02__list li > * {
    font-size: 0.75rem;
  }
}
.c-cat02__list li a,
.c-cat02__list li a:hover {
  color: inherit;
  text-decoration: none;
}

.c-tag01__list {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: -1rem 0 0 -1rem;
}
.c-tag01__list li {
  margin: 1rem 0 0 1rem;
}
.c-tag01__list li > * {
  text-decoration: none;
  display: inline-block;
  background-color: #f1f1f1;
  padding: 0.25rem 0.5rem;
}

.c-pager__list {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.c-pager__item[class] > * {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  font-weight: bold;
  height: 2rem;
  width: 2rem;
  padding-top: 0.125rem;
  text-decoration: none;
}
.c-pager__item[class] > *:hover {
  text-decoration: none;
}
@media (min-width: 768px) {
  .c-pager__item[class] > *:hover {
    border-color: #0055A2;
    background-color: #0055A2;
    color: #fff;
  }
}
.c-pager__item[class] span {
  border-color: #0055A2;
  background-color: #0055A2;
  color: #fff;
}
.c-pager__item[class].-skip span {
  background: none;
  border: none;
  color: inherit;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
.c-pager__item[class].-prev > *, .c-pager__item[class].-next > * {
  background-size: 1.375rem auto;
  background-repeat: no-repeat;
  background-position: center center;
}
.c-pager__item[class].-prev > * {
  background-image: url(../img/ico_arr_left_pri.svg);
}
.c-pager__item[class].-prev > *:hover {
  background-image: url(../img/ico_arr_left_wht.svg);
}
.c-pager__item[class].-next > * {
  background-image: url(../img/ico_arr_right_pri.svg);
}
.c-pager__item[class].-next > *:hover {
  background-image: url(../img/ico_arr_right_wht.svg);
}
.c-pager__item + .c-pager__item {
  margin-left: 1.25rem;
}
@media (max-width: 767px) {
  .c-pager__item + .c-pager__item {
    margin-left: 1rem;
  }
}

/* =====================================
 * 見出し
 * ================================== */
[class*=c-headline] {
  line-height: 1.5;
}

.c-headline01 {
  border-bottom: 2px solid #90CCD0;
  background: -webkit-gradient(linear, left top, left bottom, from(#4992BF), to(#90CCD0));
  background: -webkit-linear-gradient(top, #4992BF, #90CCD0);
  background: linear-gradient(to bottom, #4992BF, #90CCD0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  font-size: 1.5rem;
  padding-bottom: 0.75rem;
}
.c-headline01 + * {
  margin-top: 3.5rem;
}
@media (max-width: 767px) {
  .c-headline01 + * {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .c-headline01 {
    font-size: 0.75rem;
  }
}
.c-headline01 span {
  font-size: 3.5rem;
  margin-right: 1.5rem;
}
@media (max-width: 767px) {
  .c-headline01 span {
    font-size: 2rem;
    margin-right: 0.625rem;
  }
}

.toc_transparent {
  background-color: #f1f1f1;
  padding: 3rem 4rem;
}
@media (max-width: 767px) {
  .toc_transparent {
    padding: 1.5rem;
  }
}
.toc_title {
  font-weight: bold;
  font-size: 1.25rem;
}
.toc_title + * {
  margin-top: 1.5rem;
}
.toc_list[class] {
  counter-reset: item;
}
.toc_list[class] > li {
  font-size: 1rem;
}
.toc_list[class] > li::before {
  counter-increment: item;
  content: counter(item) ". ";
  display: inline-block;
  font-size: 1rem;
  margin-right: 1rem;
  color: #0055A2;
  font-weight: bold;
}
@media (max-width: 767px) {
  .toc_list[class] > li::before {
    font-size: 1rem;
  }
}
.toc_list[class] > li li + li {
  margin-top: 0.5rem;
}
.toc_list[class] li {
  list-style: none;
}
.toc_list[class] li a {
  color: #6B6A6A;
}
.toc_list[class] li ul {
  margin-top: 1rem;
  list-style: none;
  counter-reset: item;
  font-size: 0.875rem;
}
.toc_list[class] li li::before {
  color: #0055A2;
  counter-increment: item;
  content: counters(item, "-") ". ";
  display: inline-block;
  font-size: 0.875rem;
  margin-right: 1rem;
  font-weight: bold;
}
.toc_list[class] li + li {
  margin-top: 0.5rem;
}

#toc_container {
  background-color: #E6F6F3;
  padding: 2.5rem;
}
@media (max-width: 767px) {
  #toc_container {
    padding: 1.5rem;
  }
}

.c-link01[class] {
  text-align: right;
}
* + .c-link01[class] {
  margin-top: 3.5rem;
}
@media (max-width: 767px) {
  * + .c-link01[class] {
    margin-top: 1.5rem;
  }
}
.c-link01[class].-left {
  text-align: left;
}
.c-link01[class] > * {
  color: #0055A2;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.875rem;
  background-repeat: no-repeat;
  background-size: auto auto;
  background-position: right center;
  background-image: url(../img/ico_arr_circle_pri.svg);
  padding-right: 1.75rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
@media (max-width: 767px) {
  .c-link01[class] > * {
    background-size: 1.125rem auto;
    font-size: 0.875rem;
  }
}

* + .c-link01.-left {
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .c-link02__list[class] {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 0.5rem 0;
  }
}
.c-link02__list[class] li {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
@media (min-width: 768px) {
  .c-link02__list[class] li {
    -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
            flex-basis: 25%;
    max-width: 25%;
  }
}
.c-link02__list[class] li a {
  display: block;
  text-align: center;
  color: #333;
  font-weight: bold;
  text-decoration: none;
  background-repeat: no-repeat;
  background-size: 0.75em auto;
  background-position: right center;
  background-position-x: calc(100% - 1rem);
  background-image: url(../img/ico_arr_down_pri.svg);
  padding: 0.875rem 2.25rem;
}
@media (min-width: 768px) {
  .c-link02__list[class] li a {
    border-left: 1px solid #D7D7D7;
  }
}
@media (max-width: 767px) {
  .c-link02__list[class] li a {
    border-top: 1px solid #D7D7D7;
  }
}
@media (min-width: 768px) {
  .c-link02__list[class] li a:hover {
    background-color: #f1f1f1;
  }
}
@media (max-width: 767px) {
  .c-link02__list[class] li + .c-link02__list[class] li {
    margin-top: 1.25rem;
  }
}
@media (min-width: 768px) {
  .c-link02__list[class] li:last-child a {
    border-right: 1px solid #D7D7D7;
  }
}
@media (max-width: 767px) {
  .c-link02__list[class] li:last-child a {
    border-bottom: 1px solid #D7D7D7;
  }
}

/* =====================================
 * ボタン基準
 * ================================== */
.c-btn[class] {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .c-btn[class] {
    max-width: 400px;
  }
}
.c-btn[class].-lg {
  max-width: 100%;
}
.c-btn[class][class] > * {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: relative;
  display: block;
  text-decoration: none;
  border: 1px solid #0055A2;
  line-height: 1.5;
  color: #0055A2;
  text-align: center;
  font-weight: bold;
  font-size: 1.125rem;
  padding: 2.125rem 3rem;
}
@media (max-width: 767px) {
  .c-btn[class][class] > * {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.c-btn[class][class] > *::after {
  content: "";
  display: block;
  background-position: right center;
  background-repeat: no-repeat;
  background-image: url(../img/ico_btn_right_pri.svg);
  background-size: 100%;
  width: 0.875rem;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  margin-right: 1.75rem;
}
@media (max-width: 767px) {
  .c-btn[class][class] > *::after {
    margin-right: 1.125rem;
  }
}
@media (min-width: 768px) {
  .c-btn[class][class] > *:hover {
    background-color: #0055A2;
    color: #fff;
  }
}
@media (min-width: 768px) {
  .c-btn[class][class] > *:hover::after {
    background-image: url(../img/ico_btn_right_wht.svg);
  }
}
.c-btn[class].-submit > * {
  padding: 0;
}
.c-btn[class].-submit > * input[type=submit] {
  width: 100%;
  padding: 2.125rem 3rem;
}
@media (max-width: 767px) {
  .c-btn[class].-submit > * input[type=submit] {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

body .c-btn[class] a {
  color: #fff;
}

.c-btn-text a {
  color: #0055A2;
  position: relative;
  display: inline-block;
  padding: 0 0 0 1.625em;
}
.c-btn-text a:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 100%;
  background-position: center 0.375em;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-image: url("../img/ico_arr_right_pri.svg");
  margin-left: 0.25em;
}
.c-btn-text a[target*=_blank]:before {
  width: 1em;
  background-position: center 0.375em;
  background-image: url("../img/ico_blank.svg");
  margin-left: 0;
}
.c-btn-text a[href*=".pdf"]:before,
.c-btn-text a[download]:before {
  width: 0.875em;
  background-image: url("../img/ico_pdf.svg");
  margin-left: 0;
}

/* =====================================
 * 横並び
 * ================================== */
.c-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.c-flex.-max2 {
  margin-left: -2rem;
}
@media (max-width: 767px) {
  .c-flex.-max2 {
    display: block;
    margin-left: 0;
  }
}
.c-flex.-max2 .c-flex__item {
  -webkit-flex-basis: calc(50% - 2rem);
      -ms-flex-preferred-size: calc(50% - 2rem);
          flex-basis: calc(50% - 2rem);
  max-width: calc(50% - 2rem);
  margin-left: 2rem;
}
.c-flex.-max2 .c-flex__item:nth-of-type(2) ~ * {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .c-flex.-max2 .c-flex__item, .c-flex.-max2 .c-flex__item:nth-of-type(2) ~ * {
    margin-top: 1.5rem;
  }
}
.c-flex.-max3 {
  margin-left: -2rem;
}
@media (max-width: 767px) {
  .c-flex.-max3 {
    display: block;
    margin-left: 0;
  }
}
.c-flex.-max3 .c-flex__item {
  -webkit-flex-basis: calc(33.3333333333% - 2rem);
      -ms-flex-preferred-size: calc(33.3333333333% - 2rem);
          flex-basis: calc(33.3333333333% - 2rem);
  max-width: calc(33.3333333333% - 2rem);
  margin-left: 2rem;
}
.c-flex.-max3 .c-flex__item:nth-of-type(3) ~ * {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .c-flex.-max3 .c-flex__item, .c-flex.-max3 .c-flex__item:nth-of-type(3) ~ * {
    margin-top: 1.5rem;
  }
}
.c-flex.-max4 {
  margin-left: -2rem;
}
@media (max-width: 767px) {
  .c-flex.-max4 {
    margin-left: -1.5rem;
  }
}
.c-flex.-max4 .c-flex__item[class] {
  -webkit-flex-basis: calc(25% - 2rem);
      -ms-flex-preferred-size: calc(25% - 2rem);
          flex-basis: calc(25% - 2rem);
  max-width: calc(25% - 2rem);
  margin-left: 2rem;
}
@media (max-width: 767px) {
  .c-flex.-max4 .c-flex__item[class] {
    margin-left: 1.5rem;
  }
}
.c-flex.-max4 .c-flex__item[class]:nth-of-type(4) ~ * {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .c-flex.-max4 .c-flex__item[class], .c-flex.-max4 .c-flex__item[class]:nth-of-type(4) ~ * {
    margin-top: 1.5rem;
  }
}
@media (max-width: 767px) {
  .c-flex.-max4 .c-flex__item[class] {
    -webkit-flex-basis: calc(50% - 1.5rem);
        -ms-flex-preferred-size: calc(50% - 1.5rem);
            flex-basis: calc(50% - 1.5rem);
    max-width: calc(50% - 1.5rem);
  }
}
@media (max-width: 767px) {
  .c-flex.-max4 .c-flex__item[class]:nth-of-type(1), .c-flex.-max4 .c-flex__item[class]:nth-of-type(2) {
    margin-top: 0;
  }
}
.c-flex[class] .c-flex__item {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
@media (max-width: 767px) {
  .c-flex[class] .c-flex__item {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    max-width: 100%;
    margin-left: 0;
  }
  .c-flex[class] .c-flex__item:first-child {
    margin-top: 0;
  }
  .c-flex[class] .c-flex__item img {
    display: block;
    margin: 0 auto;
  }
}

/* =====================================
 * 画像とテキスト配置
 * ================================== */
.c-img-center {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.c-img-center .c-img-center__img {
  display: block;
  text-align: center;
}

.c-img-caption, .wp-block-image .alignleft figcaption,
.wp-block-image .alignright figcaption,
.wp-block-image .aligncenter figcaption {
  text-align: center;
  font-size: 0.875rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .c-img-caption + *, .wp-block-image .alignleft figcaption + *,
  .wp-block-image .alignright figcaption + *,
  .wp-block-image .aligncenter figcaption + * {
    margin-top: 1.5rem;
  }
}

.c-imgbox::after {
  content: "";
  display: block;
  clear: both;
}
.c-imgbox + * {
  margin-top: 3rem;
}
.c-imgbox .c-imgbox__right {
  float: right;
  margin: 0 0 1.5rem 2.5rem;
}
.c-imgbox .c-imgbox__left {
  float: left;
  margin: 0 2.5rem 1.5rem 0;
}
@media (max-width: 767px) {
  .c-imgbox .c-imgbox__right,
  .c-imgbox .c-imgbox__left {
    text-align: center;
    float: none;
    margin: 0;
  }
  .c-imgbox .c-imgbox__right + *,
  .c-imgbox .c-imgbox__left + * {
    margin-top: 1.5rem;
  }
}

/* =====================================
 * 表組み
 * ================================== */
.c-table {
  border-right: 1px solid #D7D7D7;
  border-bottom: 1px solid #D7D7D7;
  width: 100%;
}
* + .c-table {
  margin-top: 3rem;
}
.c-table th,
.c-table td {
  background-clip: padding-box;
  border-top: 1px solid #D7D7D7;
  border-left: 1px solid #D7D7D7;
}
.c-table th {
  width: 240px;
  font-weight: bold;
  background: #E6F6F3;
}
.c-table td {
  background-color: #fff;
}
.c-table th,
.c-table td {
  padding: 0.875rem 1.5rem;
}
@media (max-width: 767px) {
  .c-table th,
  .c-table td {
    display: block;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .c-table.-wide th {
    width: 32%;
  }
}
@media (max-width: 767px) {
  .c-table.-wide th,
  .c-table.-wide td {
    display: table-cell;
  }
}
.c-table.-side th,
.c-table.-side td {
  width: auto;
}
@media (max-width: 767px) {
  .c-table.-side th,
  .c-table.-side td {
    width: auto;
  }
}
@media (max-width: 767px) {
  .c-table.-scroll {
    position: relative;
    display: block;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }
  .c-table.-scroll::after {
    content: "スクロールできます";
    text-align: center;
    font-size: 0.75rem;
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: 2rem auto;
    background-position: center 1rem;
    background-image: url(../img/ico_scroll.svg);
    -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.24);
            box-shadow: 0 0 1rem rgba(0, 0, 0, 0.24);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    padding: 4rem 1.25rem 0.5rem;
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(150%, -50%);
            transform: translate(150%, -50%);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
  }
}
@media (max-width: 767px) {
  .c-table.-scroll tbody {
    min-width: 640px;
  }
}
@media (max-width: 767px) {
  .c-table.-scroll th,
  .c-table.-scroll td {
    display: table-cell;
    width: auto;
  }
}
@media (max-width: 767px) {
  .c-table.-scroll.-scroll.is-show::after {
    -webkit-animation: table_scroll_show 3s ease 0.4s 1 alternate forwards running;
            animation: table_scroll_show 3s ease 0.4s 1 alternate forwards running;
  }
}

@-webkit-keyframes table_scroll_show {
  0% {
    visibility: inherit;
    opacity: 1;
    -webkit-transform: translate(150%, -50%);
            transform: translate(150%, -50%);
  }
  40% {
    visibility: inherit;
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  41% {
    visibility: inherit;
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  100% {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

@keyframes table_scroll_show {
  0% {
    visibility: inherit;
    opacity: 1;
    -webkit-transform: translate(150%, -50%);
            transform: translate(150%, -50%);
  }
  40% {
    visibility: inherit;
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  41% {
    visibility: inherit;
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  100% {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
/* =====================================
 * ページトップへ戻る
 * ================================== */
.c-pagetop {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: fixed;
  z-index: 1;
  bottom: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.c-pagetop.is-active {
  opacity: 1;
  visibility: inherit;
  pointer-events: auto;
}
.c-pagetop__btn {
  background-color: #0055A2;
  background-repeat: no-repeat;
  background-size: 0.875rem auto;
  background-position: center center;
  background-image: url(../img/ico_arr_up_wht.svg);
  font-size: 0;
  height: 3.5rem;
  width: 3.5rem;
}

/* =====================================
 * パンくずリスト
 * ================================== */
.c-breadcrumb {
  position: relative;
  z-index: 5;
  margin-top: -3.5rem;
}
@media (max-width: 767px) {
  .c-breadcrumb {
    margin-top: -2.5rem;
  }
}
.c-breadcrumb + * {
  margin-top: 10.5rem;
}
@media (max-width: 767px) {
  .c-breadcrumb + * {
    margin-top: 4.5rem;
  }
}
.c-breadcrumb__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media (max-width: 767px) {
  .c-breadcrumb__list {
    overflow-x: auto;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    white-space: nowrap;
  }
}
.c-breadcrumb__list li {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: #0055A2;
  list-style-type: none;
  line-height: 1.5;
  font-size: 0.75rem;
}
.c-breadcrumb__list li a {
  color: #6B6A6A;
}
.c-breadcrumb__list li + li:before {
  content: "";
  display: inline-block;
  background-color: #0055A2;
  width: 0.5rem;
  height: 1px;
  margin: 0 0.5rem;
}

body[data-page-type=form] .c-breadcrumb {
  display: none;
}
body[data-page-type=form] .c-breadcrumb + * {
  margin-top: 8rem;
}
@media (max-width: 767px) {
  body[data-page-type=form] .c-breadcrumb + * {
    margin-top: 3rem;
  }
}

body[data-page-slug=park_blog][data-page-type=detail] .c-breadcrumb {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  body[data-page-slug=park_blog][data-page-type=detail] .c-breadcrumb {
    margin-top: 1rem;
  }
}

/* =====================================
 * ページタイトル
 * ================================== */
.c-pagetitle {
  position: relative;
  overflow: hidden;
  background-color: #f1f1f1;
  padding-top: 16rem;
  padding-bottom: 11.5rem;
}
@media (max-width: 767px) {
  .c-pagetitle {
    padding-top: 6rem;
    padding-bottom: 5rem;
  }
}
.c-pagetitle::after {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center center;
  background-image: url(../img/img_pagetitle.png);
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 794px;
  height: 830px;
  margin: -1.5rem -6.5rem;
}
@media (max-width: 767px) {
  .c-pagetitle::after {
    width: 100vw;
    height: 100vw;
    margin: -1rem -7rem 0 0;
  }
}
.c-pagetitle__subtitle, .c-pagetitle__title {
  line-height: 1.5;
  position: relative;
  z-index: 10;
}
.c-pagetitle__subtitle {
  text-transform: capitalize;
  font-weight: bold;
  color: #0055A2;
  font-size: 1.25rem;
}
@media (max-width: 767px) {
  .c-pagetitle__subtitle {
    font-size: 1.125rem;
  }
}
.c-pagetitle__subtitle + * {
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .c-pagetitle__subtitle + * {
    margin-top: 0.5rem;
  }
}
.c-pagetitle__title {
  font-weight: bold;
  color: #0055A2;
  font-size: 3rem;
}
@media (max-width: 767px) {
  .c-pagetitle__title {
    font-size: 2.375rem;
  }
}
.c-pagetitle__title + * {
  margin-top: 1rem;
}
.c-pagetitle__desc {
  font-size: 0.875rem;
}

body[data-page-type=form] .c-pagetitle {
  background: none;
  padding-top: 10rem;
  padding-bottom: 0;
}
@media (max-width: 767px) {
  body[data-page-type=form] .c-pagetitle {
    padding-top: 2rem;
  }
}
body[data-page-type=form] .c-pagetitle::after {
  display: none;
}
body[data-page-type=form] .c-pagetitle__subtitle, body[data-page-type=form] .c-pagetitle__title {
  text-align: center;
}

.c-modal {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}
.c-modal.is-active {
  opacity: 1;
  visibility: inherit;
  pointer-events: auto;
}
.c-modal__mask {
  background-color: rgba(0, 0, 0, 0.64);
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  margin-top: -10vh;
}
.c-modal__wrap {
  position: relative;
  z-index: 10;
}
.c-modal__inner {
  overflow: hidden;
  position: relative;
  z-index: 10;
  border-radius: 2rem;
  background-color: #fff;
  padding: 5rem;
  height: 80vh;
  margin-top: 10vh;
}
@media (max-width: 767px) {
  .c-modal__inner {
    border-radius: 1.5rem;
    padding: 4rem 1.5rem 2.5rem 1.5rem;
  }
}
.c-modal__back {
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  margin: 2.25rem 0 0 2.5rem;
}
@media (max-width: 767px) {
  .c-modal__back {
    margin-top: 1.25rem;
    margin-left: 1.25rem;
  }
}
.c-modal__back.is-hidden {
  display: none;
}
.c-modal__back > * {
  line-height: 1.5;
  color: #6B6A6A;
  border-bottom: 1px solid #6B6A6A;
  font-size: 0.75rem;
  background-repeat: no-repeat;
  background-size: auto auto;
  background-position: left center;
  background-image: url(../img/ico_modal_back.svg);
  padding-left: 1.25rem;
}
.c-modal__close {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  margin: 2.5rem 2.5rem 0 0;
}
@media (max-width: 767px) {
  .c-modal__close {
    margin-top: 1.25rem;
    margin-right: 1.25rem;
  }
}
.c-modal__close > * {
  color: transparent;
  font-size: 0;
  background-repeat: no-repeat;
  background-size: auto auto;
  background-position: left center;
  background-image: url(../img/ico_modal_close.svg);
  width: 2rem;
  height: 2rem;
}
@media (max-width: 767px) {
  .c-modal__close > * {
    background-size: 100% auto;
  }
}

.c-area-info__group-title {
  font-weight: bold;
  font-size: 1.125rem;
  padding-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .c-area-info__group-title {
    padding-bottom: 0.5rem;
  }
}
@media (min-width: 768px) {
  .c-area-info__group-list {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: -3.5rem 0 0 -3.5rem;
  }
}
@media (min-width: 768px) {
  .c-area-info__group-item {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -webkit-flex-basis: calc(33.3333333333% - 3.5rem);
        -ms-flex-preferred-size: calc(33.3333333333% - 3.5rem);
            flex-basis: calc(33.3333333333% - 3.5rem);
    max-width: calc(33.3333333333% - 3.5rem);
    margin: 3.5rem 0 0 3.5rem;
  }
}
@media (max-width: 767px) {
  .c-area-info__group-item + .c-area-info__group-item {
    margin-top: 1.25rem;
  }
}
.c-area-info__area-list {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: -1.25rem 0 0 -1.25rem;
}
@media (max-width: 767px) {
  .c-area-info__area-list {
    margin: -0.5rem 0 0 -1rem;
  }
}
.c-area-info__area-item {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -webkit-flex-basis: calc(33.3333333333% - 1.5rem);
      -ms-flex-preferred-size: calc(33.3333333333% - 1.5rem);
          flex-basis: calc(33.3333333333% - 1.5rem);
  max-width: calc(33.3333333333% - 1.5rem);
  margin: 1.25rem 0 0 1.25rem;
}
@media (max-width: 767px) {
  .c-area-info__area-item {
    margin: 0.5rem 0 0 1rem;
  }
}
.c-area-info__input {
  display: none;
}
.c-area-info__sub-label[class] > *, .c-area-info__text {
  text-decoration: none;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: auto auto;
  background-position: left center;
  background-image: url(../img/ico_arr_right_pri.svg);
  padding-left: 1.25rem;
}
.c-area-info__sub-list-wrap {
  display: none;
  background-color: #fff;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  padding: 5rem;
}
@media (max-width: 767px) {
  .c-area-info__sub-list-wrap {
    padding: 4rem 1.5rem 2.5rem 1.5rem;
  }
}
.c-area-info__area-title:has(input:checked) + * {
  display: block;
}
.c-area-info__sub-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media (min-width: 768px) {
  .c-area-info__sub-list {
    margin: -1.25rem 0 0 -1.25rem;
  }
}
@media (max-width: 767px) {
  .c-area-info__sub-list {
    margin: -0.5rem 0 0 -1rem;
  }
}
.c-area-info__sub-item {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -webkit-flex-basis: calc(11.1111111111% - 1.5rem);
      -ms-flex-preferred-size: calc(11.1111111111% - 1.5rem);
          flex-basis: calc(11.1111111111% - 1.5rem);
  max-width: calc(11.1111111111% - 1.5rem);
  margin: 1.25rem 0 0 1.25rem;
}
@media (max-width: 767px) {
  .c-area-info__sub-item {
    -webkit-flex-basis: calc(33.3333333333% - 1.5rem);
        -ms-flex-preferred-size: calc(33.3333333333% - 1.5rem);
            flex-basis: calc(33.3333333333% - 1.5rem);
    max-width: calc(33.3333333333% - 1.5rem);
    margin: 0.5rem 0 0 1rem;
  }
}

/* =====================================
 * 下層ページ　テキスト周り
 * ================================== */
.has-small-font-size[class] {
  font-size: 75%;
}

.has-normal-font-size[class] {
  font-size: inherit;
}

.has-medium-font-size[class] {
  font-size: 125%;
}

.has-large-font-size[class] {
  font-size: 200%;
}

.has-huge-font-size[class] {
  font-size: 300%;
}

.has-text-align-left {
  text-align: left;
}

.has-text-align-center {
  text-align: center;
}

.has-text-align-right {
  text-align: right;
}

.wp-block-image {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
* + .wp-block-image {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .wp-block-image {
    margin-top: 1.5rem;
  }
}
.wp-block-image .alignleft,
.wp-block-image .alignright {
  display: inline-block;
}
.wp-block-image .alignleft figcaption,
.wp-block-image .alignright figcaption,
.wp-block-image .aligncenter figcaption {
  text-align: center;
}
@media (max-width: 767px) {
  .wp-block-image .alignleft,
  .wp-block-image .alignright,
  .wp-block-image .aligncenter {
    margin-left: auto;
    margin-right: auto;
  }
}
.wp-block-image .alignright {
  margin-left: auto;
}
.wp-block-image .aligncenter {
  margin-left: auto;
  margin-right: auto;
}

.wp-block-quote {
  position: relative;
  background-color: #f1f1f1;
  padding: 4rem;
}
@media (max-width: 767px) {
  .wp-block-quote {
    padding: 3.5rem 1.5rem;
  }
}
.wp-block-quote::before, .wp-block-quote::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: left center;
  position: absolute;
  z-index: 1;
}
.wp-block-quote::before {
  background-image: url(../img/ico_quote_mark01.svg);
  top: 0;
  left: 0;
  margin: 1.5rem 0 0 1.5rem;
}
@media (max-width: 767px) {
  .wp-block-quote::before {
    margin-top: 1rem;
  }
}
.wp-block-quote::after {
  background-image: url(../img/ico_quote_mark02.svg);
  bottom: 0;
  right: 0;
  margin: 0 1.5rem 1.5rem 0;
}
@media (max-width: 767px) {
  .wp-block-quote::after {
    margin-bottom: 1rem;
  }
}
.wp-block-quote cite {
  font-size: 0.75rem;
}
.wp-block-quote cite::before {
  content: "出典：";
  display: inline-block;
}
.wp-block-quote cite a {
  display: inline-block;
  color: #0055A2;
  text-decoration: underline;
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .wp-block-quote cite a:hover {
    text-decoration: none;
  }
}

.wp-block-file {
  text-align: center;
  border: 1px solid #D7D7D7;
  padding: 2rem;
}
@media (max-width: 767px) {
  .wp-block-file {
    padding: 1.5rem;
  }
}
.wp-block-file::before {
  content: "下記よりPDFをダウンロードいただけます。";
  display: block;
  text-align: center;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .wp-block-file::before {
    font-size: 0.875rem;
    padding-bottom: 0.5rem;
  }
}
.wp-block-file object {
  display: none;
}
.wp-block-file a:not([download]) {
  display: none;
}
.wp-block-file a[download] {
  font-weight: bold;
  color: inherit;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 0.44em auto;
  background-position: left 40%;
  background-size: 1em auto;
  background-image: url("../img/ico_pdf.svg");
  padding-left: 1.875rem;
}
@media (min-width: 768px) {
  .wp-block-file a[download]:hover {
    text-decoration: none;
  }
}

.wp-block-embed:not([class*=is-type-wp-embed]) .wp-block-embed__wrapper {
  aspect-ratio: 16/9;
}
.wp-block-embed:not([class*=is-type-wp-embed]) .wp-block-embed__wrapper iframe {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.c-content > * + * {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .c-content > * + * {
    margin-top: 1.5rem;
  }
}

* + .c-section {
  margin-top: 8rem;
}
@media (max-width: 767px) {
  * + .c-section {
    margin-top: 5rem;
  }
}
* + .c-section.-lg {
  margin-top: 9rem;
}
@media (max-width: 767px) {
  * + .c-section.-lg {
    margin-top: 6rem;
  }
}
* + .c-section.-sm {
  margin-top: 4rem;
}
@media (max-width: 767px) {
  * + .c-section.-sm {
    margin-top: 3rem;
  }
}
* + .c-section.-md {
  margin-top: 5rem;
}
@media (max-width: 767px) {
  * + .c-section.-md {
    margin-top: 4rem;
  }
}

/* ================================== */
h4[class*=has-text-align],
h4[class*=font-size],
h3[class*=has-text-align],
h3[class*=font-size],
h2[class*=has-text-align],
h2[class*=font-size],
h2:not([class]),
h3:not([class]),
h4:not([class]) {
  font-weight: bold;
  line-height: 1.5;
}

/* ================================== */
h2[class*=has-text-align],
h2[class*=font-size],
h2:not([class]) {
  font-size: 1.75rem;
}
@media (min-width: 768px) {
  h2[class*=has-text-align],
  h2[class*=font-size],
  h2:not([class]) {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 767px) {
  h2[class*=has-text-align],
  h2[class*=font-size],
  h2:not([class]) {
    border-bottom: 1px solid #D7D7D7;
    padding-bottom: 1.25rem;
  }
}
h2[class*=has-text-align]::after,
h2[class*=font-size]::after,
h2:not([class])::after {
  content: "";
  display: block;
  background-color: #D7D7D7;
  height: 1px;
  -webkit-flex-shrink: 1;
      -ms-flex-negative: 1;
          flex-shrink: 1;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media (min-width: 768px) {
  h2[class*=has-text-align]::after,
  h2[class*=font-size]::after,
  h2:not([class])::after {
    margin-left: 1.5rem;
  }
}
@media (max-width: 767px) {
  h2[class*=has-text-align]::after,
  h2[class*=font-size]::after,
  h2:not([class])::after {
    display: none;
  }
}
h2[class*=has-text-align] + *,
h2[class*=font-size] + *,
h2:not([class]) + * {
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  h2[class*=has-text-align] + *,
  h2[class*=font-size] + *,
  h2:not([class]) + * {
    margin-top: 2rem;
  }
}

* + h2[class*=has-text-align],
* + h2[class*=font-size],
* + h2:not([class]) {
  margin-top: 8rem;
}
@media (max-width: 767px) {
  * + h2[class*=has-text-align],
  * + h2[class*=font-size],
  * + h2:not([class]) {
    margin-top: 5rem;
  }
}

/* ================================== */
h3[class*=has-text-align],
h3[class*=font-size],
h3:not([class]) {
  position: relative;
  color: #0055A2;
  font-size: 1.25rem;
  padding-left: 1.5rem;
}
h3[class*=has-text-align]::before,
h3[class*=font-size]::before,
h3:not([class])::before {
  content: "";
  display: block;
  border-radius: 50%;
  background-color: #0055A2;
  width: 1rem;
  height: 1rem;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  margin-top: 0.375rem;
}
h3[class*=has-text-align] + *,
h3[class*=font-size] + *,
h3:not([class]) + * {
  margin-top: 1rem;
}

* + h3[class*=has-text-align],
* + h3[class*=font-size],
* + h3:not([class]) {
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  * + h3[class*=has-text-align],
  * + h3[class*=font-size],
  * + h3:not([class]) {
    margin-top: 1.5rem;
  }
}

/* ================================== */
h4[class*=has-text-align],
h4[class*=font-size],
h4:not([class]) {
  font-size: 1.125rem;
}
h4[class*=has-text-align] + *,
h4[class*=font-size] + *,
h4:not([class]) + * {
  margin-top: 1rem;
}

* + h4[class*=has-text-align],
* + h4[class*=font-size],
* + h4:not([class]) {
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  * + h4[class*=has-text-align],
  * + h4[class*=font-size],
  * + h4:not([class]) {
    margin-top: 1.5rem;
  }
}

/* ================================== */
ol[class*=font-size] {
  list-style: decimal;
}

ul[class*=font-size] {
  list-style: inherit;
}

ol:not([class]),
ul:not([class]),
ol[class*=font-size],
ul[class*=font-size] {
  padding: 0 0 0 1.375rem;
}
ol:not([class]) li + li,
ul:not([class]) li + li,
ol[class*=font-size] li + li,
ul[class*=font-size] li + li {
  margin-top: 0.125rem;
}

* + ol:not([class]),
* + ul:not([class]),
* + ol[class*=font-size],
* + ul[class*=font-size] {
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  * + ol:not([class]),
  * + ul:not([class]),
  * + ol[class*=font-size],
  * + ul[class*=font-size] {
    margin-top: 1.5rem;
  }
}

body[data-page-slug=park_blog][data-page-type=detail] .c-content h2[class*=has-text-align],
body[data-page-slug=park_blog][data-page-type=detail] .c-content h2[class*=font-size],
body[data-page-slug=park_blog][data-page-type=detail] .c-content h2:not([class]) {
  position: relative;
  display: block;
  color: #0055A2;
  font-size: 2rem;
  padding-bottom: 1.5rem;
}
body[data-page-slug=park_blog][data-page-type=detail] .c-content h2[class*=has-text-align]::after,
body[data-page-slug=park_blog][data-page-type=detail] .c-content h2[class*=font-size]::after,
body[data-page-slug=park_blog][data-page-type=detail] .c-content h2:not([class])::after {
  display: none;
}
body[data-page-slug=park_blog][data-page-type=detail] .c-content h2[class*=has-text-align]::before,
body[data-page-slug=park_blog][data-page-type=detail] .c-content h2[class*=font-size]::before,
body[data-page-slug=park_blog][data-page-type=detail] .c-content h2:not([class])::before {
  content: "";
  display: block;
  background-color: #0055A2;
  width: 2.5rem;
  height: 2px;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
}
body[data-page-slug=park_blog][data-page-type=detail] .c-content * + h2[class*=has-text-align],
body[data-page-slug=park_blog][data-page-type=detail] .c-content * + h2[class*=font-size],
body[data-page-slug=park_blog][data-page-type=detail] .c-content * + h2:not([class]) {
  margin-top: 5rem;
}
@media (max-width: 767px) {
  body[data-page-slug=park_blog][data-page-type=detail] .c-content * + h2[class*=has-text-align],
  body[data-page-slug=park_blog][data-page-type=detail] .c-content * + h2[class*=font-size],
  body[data-page-slug=park_blog][data-page-type=detail] .c-content * + h2:not([class]) {
    margin-top: 3rem;
  }
}
body[data-page-slug=park_blog][data-page-type=detail] .c-content h3[class*=has-text-align],
body[data-page-slug=park_blog][data-page-type=detail] .c-content h3[class*=font-size],
body[data-page-slug=park_blog][data-page-type=detail] .c-content h3:not([class]) {
  position: relative;
  font-weight: bold;
  color: #0055A2;
  font-size: 1.5rem;
}
body[data-page-slug=park_blog][data-page-type=detail] .c-content h3[class*=has-text-align]::before,
body[data-page-slug=park_blog][data-page-type=detail] .c-content h3[class*=font-size]::before,
body[data-page-slug=park_blog][data-page-type=detail] .c-content h3:not([class])::before {
  display: none;
}
body[data-page-slug=park_blog][data-page-type=detail] .c-content h3[class*=has-text-align]::after,
body[data-page-slug=park_blog][data-page-type=detail] .c-content h3[class*=font-size]::after,
body[data-page-slug=park_blog][data-page-type=detail] .c-content h3:not([class])::after {
  content: "";
  display: block;
  background-color: #0055A2;
  width: 4px;
  height: calc(100% - 0.25rem);
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  margin-top: 0.125rem;
}
body[data-page-slug=park_blog][data-page-type=detail] .c-content * + h3[class*=has-text-align],
body[data-page-slug=park_blog][data-page-type=detail] .c-content * + h3[class*=font-size],
body[data-page-slug=park_blog][data-page-type=detail] .c-content * + h3:not([class]) {
  margin-top: 3.5rem;
}
@media (max-width: 767px) {
  body[data-page-slug=park_blog][data-page-type=detail] .c-content * + h3[class*=has-text-align],
  body[data-page-slug=park_blog][data-page-type=detail] .c-content * + h3[class*=font-size],
  body[data-page-slug=park_blog][data-page-type=detail] .c-content * + h3:not([class]) {
    margin-top: 2.5rem;
  }
}
body[data-page-slug=park_blog][data-page-type=detail] .c-content h4[class*=has-text-align],
body[data-page-slug=park_blog][data-page-type=detail] .c-content h4[class*=font-size],
body[data-page-slug=park_blog][data-page-type=detail] .c-content h4:not([class]) {
  color: #0055A2;
  font-weight: bold;
  font-size: 1.25rem;
}
body[data-page-slug=park_blog][data-page-type=detail] .c-content h4[class*=has-text-align] + *,
body[data-page-slug=park_blog][data-page-type=detail] .c-content h4[class*=font-size] + *,
body[data-page-slug=park_blog][data-page-type=detail] .c-content h4:not([class]) + * {
  margin-top: 1rem;
}
body[data-page-slug=park_blog][data-page-type=detail] .c-content * + h4[class*=has-text-align],
body[data-page-slug=park_blog][data-page-type=detail] .c-content * + h4[class*=font-size],
body[data-page-slug=park_blog][data-page-type=detail] .c-content * + h4:not([class]) {
  margin-top: 3.5rem;
}
@media (max-width: 767px) {
  body[data-page-slug=park_blog][data-page-type=detail] .c-content * + h4[class*=has-text-align],
  body[data-page-slug=park_blog][data-page-type=detail] .c-content * + h4[class*=font-size],
  body[data-page-slug=park_blog][data-page-type=detail] .c-content * + h4:not([class]) {
    margin-top: 2.5rem;
  }
}
body[data-page-slug=park_blog][data-page-type=detail] .c-content ol:not([class]) li::marker,
body[data-page-slug=park_blog][data-page-type=detail] .c-content ul:not([class]) li::marker,
body[data-page-slug=park_blog][data-page-type=detail] .c-content ol[class*=font-size] li::marker,
body[data-page-slug=park_blog][data-page-type=detail] .c-content ul[class*=font-size] li::marker {
  color: #0055A2;
  font-weight: bold;
}

@media (min-width: 768px) {
  .u-hidden-pc {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .u-hidden-sp {
    display: none !important;
  }
}
.p-park-circle {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.p-park-circle__item {
  width: 500px;
  height: 500px;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  margin-left: -250px;
}
@media (max-width: 767px) {
  .p-park-circle__item {
    width: 250px;
    height: 250px;
    margin-left: -125px;
  }
}
.p-park-circle__item::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: left center;
  background-image: url(../img/img_park_circle_gry.png);
}
.p-park-circle__item.-no01 {
  margin-top: 5.5rem;
}
@media (max-width: 767px) {
  .p-park-circle__item.-no01 {
    margin-top: 2rem;
  }
}
.p-park-circle__item.-no02 {
  margin-top: 31.5rem;
}
@media (max-width: 767px) {
  .p-park-circle__item.-no02 {
    margin-top: 36rem;
  }
}
.p-park-circle__item.-no03 {
  margin-top: 81rem;
}
@media (max-width: 767px) {
  .p-park-circle__item.-no03 {
    margin-top: 108rem;
  }
}
.p-park-circle__item.-no04 {
  margin-top: 128rem;
}
@media (max-width: 767px) {
  .p-park-circle__item.-no04 {
    margin-top: 145rem;
  }
}
.p-park-circle__item.-right {
  left: auto;
  right: 0;
  margin-left: 0;
  margin-right: -250px;
}
@media (max-width: 767px) {
  .p-park-circle__item.-right {
    margin-right: -125px;
  }
}
.p-park-circle__item.-gra::before {
  background-image: url(../img/img_park_circle_gra.png);
}

* + .p-park-content {
  margin-top: 8rem;
}
@media (max-width: 767px) {
  * + .p-park-content {
    margin-top: 3rem;
  }
}
@media (min-width: 768px) {
  .p-park-content__inner {
    gap: 5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 767px) {
  .p-park-content__inner > * + * {
    margin-top: 2rem;
  }
}
@media (min-width: 768px) {
  .p-park-content__main {
    -webkit-flex-shrink: 1;
        -ms-flex-negative: 1;
            flex-shrink: 1;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
@media (min-width: 768px) {
  .p-park-content__sidebar {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -webkit-flex-basis: 300px;
        -ms-flex-preferred-size: 300px;
            flex-basis: 300px;
    max-width: 300px;
  }
}
.p-park-content__section + .p-park-content__section {
  margin-top: 8rem;
}
@media (max-width: 767px) {
  .p-park-content__section + .p-park-content__section {
    margin-top: 3rem;
  }
}
.p-park-content__sidebar-title {
  line-height: 1.625;
  font-weight: bold;
  font-size: 1.25rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.p-park-content__sidebar-title + * {
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .p-park-content__sidebar-title + * {
    margin-top: 1rem;
  }
}
.p-park-content__sidebar-title::before {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: left center;
  background-image: url(../img/ico_book_wht.svg);
  margin-right: 1rem;
}
@media (max-width: 767px) {
  .p-park-content__sidebar-title::before {
    width: 1.75rem;
    height: 1.75rem;
    background-image: url(../img/ico_book_pri.svg);
    -webkit-transform: translateY(-0.125rem);
            transform: translateY(-0.125rem);
  }
}
@media (min-width: 768px) {
  .p-park-content__sidebar-title {
    border-top-right-radius: 3rem;
    background: -webkit-gradient(linear, left top, left bottom, from(#4992BF), to(#90CCD0));
    background: -webkit-linear-gradient(top, #4992BF, #90CCD0);
    background: linear-gradient(to bottom, #4992BF, #90CCD0);
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: #fff;
    padding: 1.875rem 2rem 1.625rem;
  }
}
@media (max-width: 767px) {
  .p-park-content__sidebar-title {
    background: -webkit-gradient(linear, left top, left bottom, from(#4992BF), to(#90CCD0));
    background: -webkit-linear-gradient(top, #4992BF, #90CCD0);
    background: linear-gradient(to bottom, #4992BF, #90CCD0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.125rem;
    background-color: #fff;
  }
}
@media (max-width: 767px) {
  .p-park-content__sidebar-bnr-list {
    overflow-x: auto;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 768px) {
  .p-park-content__sidebar-bnr-item + .p-park-content__sidebar-bnr-item {
    margin-top: 1.5rem;
  }
}
@media (max-width: 767px) {
  .p-park-content__sidebar-bnr-item + .p-park-content__sidebar-bnr-item {
    margin-left: 1.5rem;
  }
}
@media (max-width: 767px) {
  .p-park-content__sidebar-bnr-item {
    min-width: 62.5vw;
  }
}
.p-park-content__sidebar-bnr-img {
  aspect-ratio: 300/200;
}
.p-park-content__sidebar-bnr-img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
@media (max-width: 767px) {
  .p-park-content__bnr {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }
}
.p-park-content .p-guide-list__item:nth-child(4),
.p-park-content .p-guide-list__item:nth-child(5) {
  display: none;
}

.p-park-mv {
  padding-top: 2.5rem;
  margin-top: 0;
}
@media (max-width: 767px) {
  .p-park-mv {
    padding-top: 2rem;
  }
}
.p-park-mv + * {
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .p-park-mv + * {
    margin-top: 2rem;
  }
}
@media (min-width: 768px) {
  .p-park-mv__inner {
    text-align: center;
  }
}

@media (min-width: 768px) {
  .p-park__list {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: -2.5rem 0 0 -2.5rem;
  }
}
.p-park__item {
  background: #E6F6F3;
  border-radius: 1.5rem;
  padding: 2.5rem 5rem;
}
@media (max-width: 767px) {
  .p-park__item {
    padding: 1.5rem 1.25rem;
  }
}
@media (min-width: 768px) {
  .p-park__item {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -webkit-flex-basis: 460px;
        -ms-flex-preferred-size: 460px;
            flex-basis: 460px;
    max-width: 460px;
    margin: 2.5rem 0 0 2.5rem;
  }
}
@media (max-width: 767px) {
  .p-park__item + .p-park__item {
    margin-top: 1.25rem;
  }
}
.p-park__title {
  text-align: center;
}
.p-park__title + * {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .p-park__title + * {
    margin-top: 0.875rem;
  }
}
.p-park__title-text {
  display: inline-block;
  background-repeat: no-repeat;
  background-size: auto auto;
  background-position: left center;
  background-image: url(../img/ico_search.svg);
  font-weight: bold;
  font-size: 2rem;
  padding-left: 2.5rem;
}
@media (max-width: 767px) {
  .p-park__title-text {
    background-size: 1.5rem auto;
    font-size: 1.125rem;
    padding-left: 2rem;
  }
}
.p-park__title-text span {
  font-size: 1.25rem;
}
@media (max-width: 767px) {
  .p-park__title-text span {
    font-size: 0.875rem;
  }
}
.p-park__keyword + * {
  margin-top: 0.75rem;
}
.p-park__keyword input {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  text-align: center;
  padding: 0.875rem 1rem 0.75rem;
}
.p-park__desc {
  color: #6B6A6A;
  font-size: 0.75rem;
}
.p-park__desc + * {
  margin-top: 1.25rem;
}
@media (max-width: 767px) {
  .p-park__desc + * {
    margin-top: 0.875rem;
  }
}
.p-park__btn > * {
  border-radius: 3rem;
  display: block;
  width: 100%;
  background-color: #0055A2;
  color: #fff;
  font-weight: bold;
  font-size: 1.25rem;
  padding: 0.5rem 1rem;
}
@media (max-width: 767px) {
  .p-park__btn > * {
    font-size: 1rem;
    padding: 0.875rem 1rem;
  }
}
.p-park__area {
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: auto auto;
  background-position: right center;
  background-position-x: calc(100% - 1.5rem);
  background-image: url(../img/ico_add_gry.svg);
  text-align: center;
  font-weight: bold;
  color: #6B6A6A;
  padding: 1.375rem 1.25rem 1.5rem;
}
@media (max-width: 767px) {
  .p-park__area {
    padding: 0.875rem 1rem 0.75rem;
  }
}
.p-park__area + * {
  margin-top: 1.25rem;
}

/* =====================================
* contact form 7 デフォルトcss
* ================================== */
.wpcf7 .screen-reader-response {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  word-wrap: normal !important;
}

.wpcf7 form .wpcf7-response-output {
  margin: 2em 0.5em 1em;
  padding: 0.2em 1em;
  border: 2px solid #00a0d2;
  /* Blue */
}

.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output {
  display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #46b450;
  /* Green */
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
  border-color: #dc3232;
  /* Red */
}

.wpcf7 form.spam .wpcf7-response-output {
  border-color: #f56e28;
  /* Orange */
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #ffb900;
  /* Yellow */
}

.wpcf7-form-control-wrap {
  position: relative;
}

.wpcf7-not-valid-tip {
  color: #dc3232;
  /* Red */
  font-size: 1em;
  font-weight: normal;
  display: block;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
  position: relative;
  top: -2ex;
  left: 1em;
  z-index: 100;
  border: 1px solid #dc3232;
  background: #fff;
  padding: 0.2em 0.8em;
  width: 24em;
}

.wpcf7-list-item {
  display: inline-block;
  margin: 0;
}

.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
  content: " ";
}

.wpcf7-spinner {
  visibility: hidden;
  display: inline-block;
  background-color: #23282d;
  /* Dark Gray 800 */
  opacity: 0.75;
  border: none;
  border-radius: 100%;
  padding: 0;
  position: relative;
  width: auto;
  height: auto;
  margin: auto;
}

form.submitting .wpcf7-spinner {
  visibility: visible;
}

.wpcf7-spinner::before {
  content: "";
  position: absolute;
  background-color: #fbfbfc;
  /* Light Gray 100 */
  top: 4px;
  left: 4px;
  width: 6px;
  height: 6px;
  border: none;
  border-radius: 100%;
  -webkit-transform-origin: 8px 8px;
          transform-origin: 8px 8px;
  -webkit-animation-name: spin;
          animation-name: spin;
  -webkit-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@media (prefers-reduced-motion: reduce) {
  .wpcf7-spinner::before {
    -webkit-animation-name: blink;
            animation-name: blink;
    -webkit-animation-duration: 2000ms;
            animation-duration: 2000ms;
  }
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes blink {
  from {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes blink {
  from {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.wpcf7 [inert] {
  opacity: 0.5;
}

.wpcf7 input[type=file] {
  cursor: pointer;
}

.wpcf7 input[type=file]:disabled {
  cursor: default;
}

.wpcf7 .wpcf7-submit:disabled {
  cursor: not-allowed;
}

.wpcf7 input[type=url],
.wpcf7 input[type=email],
.wpcf7 input[type=tel] {
  direction: ltr;
}

.wpcf7-reflection > output {
  display: list-item;
  list-style: none;
}

.wpcf7-reflection > output[hidden] {
  display: none;
}

.wpcf7-list-item-label a:not([class]) {
  color: #0055A2;
}

/* =====================================
 * フォームのオリジナル設定はここから
 * ================================== */
.p-form__inner + * {
  margin-top: 2rem;
}
.p-form__inner dt {
  font-weight: bold;
}
.p-form__inner dt + * {
  margin-top: 0.5rem;
}
.p-form__inner dd + * {
  margin-top: 2rem;
}
.p-form__inner dd + .p-form__req-note {
  margin-top: 0.5rem;
}
.p-form__inner dd > * + * {
  margin-top: 0.5rem;
}
.p-form__inner dd > p:not([class]) {
  font-size: 0.875rem;
}
.p-form__req {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .p-form__req {
    padding-right: 0;
  }
}
.p-form__req:after {
  content: "必須";
  display: inline-block;
  background-color: #00A73C;
  color: #fff;
  font-weight: normal;
  font-size: 0.75rem;
  padding: 0 0.5rem;
  margin-left: 1rem;
  line-height: 1.5;
}
.p-form__item + .p-form__item {
  margin-top: 1rem;
}
.p-form__item-headline {
  font-size: 0.85rem;
  font-weight: bold;
}
.p-form__item-headline + * {
  margin-top: 1rem;
}
.p-form__item-headline + * {
  margin-left: 0;
}
.p-form__error-list li[data-error-name=住所] + li[data-error-name=住所] {
  display: none !important;
}
.p-form__error-message {
  background-color: #ffe5e5;
  display: none;
  margin: 0 0 2rem;
  padding: 1.5rem;
}
.p-form__error-message.is-show {
  display: block;
}
.p-form__error-headline {
  color: #B70000;
  font-weight: bold;
  font-size: 1.375rem;
}
.p-form__error-list[class] {
  list-style: disc;
  margin: 1rem 0 0 1.5rem;
  padding: 0;
}
.p-form__error-list li {
  color: #B70000;
  font-size: 1.125rem;
}
.p-form .is-error[class] {
  border: 1px solid #B70000;
  background-color: #ffe5e5;
}
.p-form__error,
.p-form .wpcf7-not-valid-tip[class],
.p-form .error[class] {
  display: block;
  color: #B70000;
  font-size: 0.875rem;
  margin: 0.75rem 0 0;
}
.p-form input[type=email],
.p-form input[type=tel],
.p-form input[type=number],
.p-form input[type=text],
.p-form textarea,
.p-form select {
  border-radius: 0;
  background-color: #fff;
  border: 1px solid #D7D7D7;
  padding: 1.5rem;
  border-radius: 0.5rem;
}
.p-form input[type=email],
.p-form input[type=tel],
.p-form input[type=number],
.p-form input[type=text],
.p-form textarea {
  -webkit-appearance: none;
}
.p-form input[type=number] {
  max-width: 150px;
  -webkit-appearance: none;
}
.p-form input[type=number]::-webkit-outer-spin-button,
.p-form input[type=number]::-webkit-inner-spin-button,
.p-form input[type=number] {
  -webkit-appearance: none;
}
.p-form select {
  padding-right: 2.5rem;
  background-repeat: no-repeat;
  background-size: 0.75em auto;
  background-position: right center;
  background-position-x: calc(100% - 1rem);
  background-image: url(../img/ico_arr_down_pri.svg);
}
@media (max-width: 767px) {
  .p-form select {
    width: 100%;
  }
}
.p-form input[type=checkbox],
.p-form input[type=radio] {
  vertical-align: middle;
  padding: 0;
  width: 1.25em;
  height: 1.25em;
  opacity: 0.4;
}
.p-form input[type=checkbox] + *,
.p-form input[type=radio] + * {
  vertical-align: middle;
}
.p-form input[type=checkbox]:checked,
.p-form input[type=radio]:checked {
  opacity: 1;
}
.p-form textarea {
  display: block;
}
.p-form textarea:focus,
.p-form select:focus,
.p-form input:focus {
  border-color: #0055A2;
}
.p-form input[type=checkbox],
.p-form input[type=submit] {
  padding: 0;
}
.p-form input[type=checkbox], .p-form input[type=checkbox]:focus,
.p-form input[type=submit],
.p-form input[type=submit]:focus {
  border: none;
}
.p-form input[type=radio],
.p-form input[type=checkbox] {
  margin-right: 0.375rem;
}
@media (max-width: 767px) {
  .p-form input[type=radio],
  .p-form input[type=checkbox] {
    margin-right: 0.5rem;
  }
}
.p-form button[type=submit] {
  width: 100%;
}
.p-form .wpcf7-response-output[class] {
  display: none !important;
}
.p-form .wpcf7-list-item.first {
  margin-left: 0;
}
@media (max-width: 767px) {
  .p-form .wpcf7-list-item {
    display: block;
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .p-form .wpcf7-list-item + .wpcf7-list-item {
    margin-top: 0.5rem;
  }
}
.p-form .wpcf7-not-valid-tip {
  display: block;
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: #B70000;
}
.p-form__date {
  background-color: #fff;
  border: 1px solid #D7D7D7;
  padding: 1.5rem;
  border-radius: 0.5rem;
  width: 178px;
  height: 72px;
}
@media (max-width: 767px) {
  .p-form__date {
    width: 100%;
    height: 64px;
  }
}
@media (min-width: 768px) {
  .p-form__box {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 0.5rem;
  }
}
.p-form__box .wpcf7-not-valid-tip {
  display: none !important;
}
@media (max-width: 767px) {
  .p-form__box-item + .p-form__box-item {
    margin-top: 0.5rem;
  }
}
@media (max-width: 767px) {
  .p-form__box-item select,
  .p-form__box-item textarea,
  .p-form__box-item input {
    width: 100%;
  }
}
.p-form__error {
  display: none;
}
.p-form__box:has(.wpcf7-not-valid-tip) ~ .p-form__error {
  display: block;
}

html.is-safari .p-form input[type=checkbox],
html.is-safari .p-form input[type=radio] {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
  opacity: 0.8;
}

.wpcf7-form-control.wpcf7-radio,
.wpcf7-form-control.wpcf7-checkbox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}

input[name="form-privacy[]"] a:not([class]) {
  color: #0055A2;
}

.p-form-headline-desc {
  text-align: center;
}
.p-form-headline-desc + * {
  margin-top: 5rem;
}
@media (max-width: 767px) {
  .p-form-headline-desc + * {
    margin-top: 3rem;
  }
}

.p-form__req-note {
  font-size: 0.875rem;
  line-height: 1.5;
}
.p-form__req-note + * {
  margin-top: 2rem;
}

.p-contact-thanks {
  background-color: #E6F6F3;
  padding: 5rem;
}
@media (max-width: 767px) {
  .p-contact-thanks {
    padding: 3rem 2rem;
  }
}
.p-contact-thanks__title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  line-height: 150%;
}
@media (max-width: 767px) {
  .p-contact-thanks__title {
    font-size: 1.75rem;
  }
}
.p-contact-thanks__title + * {
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .p-contact-thanks__title + * {
    margin-top: 1rem;
  }
}
.p-contact-thanks__desc {
  text-align: center;
}
.p-contact-thanks__desc + * {
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .p-contact-thanks__desc + * {
    margin-top: 1rem;
  }
}

.p-sitemap {
  background-color: #f1f1f1;
  padding: 3rem 4rem;
}
@media (max-width: 767px) {
  .p-sitemap {
    padding: 1.5rem;
  }
}
.p-sitemap ul {
  list-style: none;
}
.p-sitemap ul li + li {
  margin-top: 0.5rem;
}
.p-sitemap__list[class] + .p-sitemap__list[class] {
  margin-top: 2rem;
}
.p-sitemap__list[class] > li + li {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .p-sitemap__list[class] > li + li {
    margin-top: 1rem;
  }
}
.p-sitemap__list[class] > li > a {
  font-weight: bold;
  font-size: 1.25rem;
}
.p-sitemap__list[class] ul {
  padding: 0 0 0 1.5rem;
  margin-top: 0.5rem;
}
.p-sitemap__list[class] ul:not(:has(> li)) {
  display: none;
}
@media (max-width: 767px) {
  .p-sitemap__list[class] ul {
    padding: 0 0 0 2rem;
  }
}

.p-post-list__list {
  border-top: 1px solid #D7D7D7;
  border-bottom: 1px solid #D7D7D7;
}
.p-post-list__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2rem 1rem;
}
@media (max-width: 767px) {
  .p-post-list__item {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.p-post-list__item + .p-post-list__item {
  border-top: 1px solid #D7D7D7;
}
.p-post-list__time {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -webkit-flex-basis: 7rem;
      -ms-flex-preferred-size: 7rem;
          flex-basis: 7rem;
  max-width: 7rem;
}
@media (max-width: 767px) {
  .p-post-list__time {
    -webkit-flex-basis: 6rem;
        -ms-flex-preferred-size: 6rem;
            flex-basis: 6rem;
    max-width: 6rem;
  }
}
.p-post-list__cat {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -webkit-flex-basis: 7rem;
      -ms-flex-preferred-size: 7rem;
          flex-basis: 7rem;
  max-width: 7rem;
}
@media (max-width: 767px) {
  .p-post-list__cat {
    -webkit-flex-basis: calc(100% - 6rem);
        -ms-flex-preferred-size: calc(100% - 6rem);
            flex-basis: calc(100% - 6rem);
    max-width: calc(100% - 6rem);
  }
}
.p-post-list__title {
  -webkit-flex-shrink: 1;
      -ms-flex-negative: 1;
          flex-shrink: 1;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media (max-width: 767px) {
  * + .p-post-list__title {
    margin-top: 0.5rem;
  }
}
.p-post-list__title > * {
  display: block;
}
.p-post-list__title a {
  background-repeat: no-repeat;
  background-size: auto auto;
  background-position: right center;
  background-image: url(../img/ico_arr_right_pri.svg);
  padding-right: 1rem;
}
.p-post-list__title a,
.p-post-list__title a:hover {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}
@media (min-width: 768px) {
  .p-post-list__title a:hover {
    color: #0055A2;
  }
}

@media (min-width: 768px) {
  .p-post-card__list {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: -3rem 0 0 -3rem;
  }
}
@media (min-width: 768px) {
  .p-post-card__item {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -webkit-flex-basis: calc(33.3333333333% - 3rem);
        -ms-flex-preferred-size: calc(33.3333333333% - 3rem);
            flex-basis: calc(33.3333333333% - 3rem);
    max-width: calc(33.3333333333% - 3rem);
    margin: 3rem 0 0 3rem;
  }
}
@media (max-width: 767px) {
  .p-post-card__item + .p-post-card__item {
    margin-top: 1.25rem;
  }
}
.p-post-card__img {
  aspect-ratio: 16/9;
}
.p-post-card__img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.p-post-card__img + * {
  margin-top: 1rem;
}
.p-post-card__meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-post-card__meta > * + * {
  margin-left: 1rem;
}
.p-post-card__meta + * {
  margin-top: 1rem;
}
.p-post-card__title {
  font-weight: bold;
  font-size: 1.25rem;
}
.p-post-card__title a,
.p-post-card__title a:hover {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}
@media (min-width: 768px) {
  .p-post-card__title a:hover {
    color: #0055A2;
  }
}

* + #toc_container {
  margin-top: 5rem;
}
@media (max-width: 767px) {
  * + #toc_container {
    margin-top: 2.5rem;
  }
}

@media (min-width: 768px) {
  .p-post-detail__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 1.5rem;
  }
}
@media (min-width: 768px) {
  .p-post-detail__list > * {
    -webkit-flex-basis: calc(25% - 1.125rem);
        -ms-flex-preferred-size: calc(25% - 1.125rem);
            flex-basis: calc(25% - 1.125rem);
    max-width: calc(25% - 1.125rem);
  }
}
.p-post-detail__title {
  font-weight: bold;
  line-height: 150%;
  font-size: 2rem;
  color: #445777;
}
.p-post-detail__title a {
  text-decoration: none;
}
.p-post-detail__title a::before {
  content: "";
  display: block;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
}
.p-post-detail__title + * {
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .p-post-detail__title + * {
    margin-top: 1.5rem;
  }
}
.p-post-detail__img {
  min-height: 174px;
}
.p-post-detail__img figure {
  width: 100%;
}
.p-post-detail__img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 282/174;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-post-detail__img + * {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .p-post-detail__img + * {
    margin-top: 1rem;
  }
}
.p-post-detail__img + .p-post-detail__desc {
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .p-post-detail__img + .p-post-detail__desc {
    margin-top: 1.5rem;
  }
}
.p-post-detail__time {
  font-size: 0.75rem;
  line-height: 150%;
  margin-top: 0.25rem;
}
.p-post-detail__item {
  position: relative;
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .p-post-detail__item + .p-post-detail__item {
    margin-top: 2rem;
  }
}
.p-post-detail__item:after {
  content: "";
  display: block;
  background-position: right center;
  background-repeat: no-repeat;
  background-image: url(../img/ico_arr_right_pri.svg);
  background-size: 100%;
  width: 0.75rem;
  height: 0.75rem;
  position: absolute;
  bottom: 0;
  right: 0;
}
.p-post-detail__meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  min-height: 26px;
}
.p-post-detail__meta ul:not([class]) {
  padding: 0;
  margin-top: 0;
}
.p-post-detail__meta ul:not([class]) li {
  background-color: #0055A2;
  color: #fff;
  font-weight: bold;
  font-size: 0.75rem;
  display: inline-block;
  padding: 0.2rem 0.45rem;
}
.p-post-detail__meta .p-column-list__time {
  font-size: 0.875rem;
  font-weight: bold;
  margin-top: 0.1rem;
}
.p-post-detail__meta + * {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .p-post-detail__meta + * {
    margin-top: 1rem;
  }
}

.p-post-link__list {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
}
@media (max-width: 767px) {
  .p-post-link__list {
    gap: 1.5rem;
  }
}
.p-post-link__item {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background-repeat: no-repeat;
  background-size: 1.75rem auto;
}
.p-post-link__item a {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  color: #333;
  text-decoration: none;
}
@media (min-width: 768px) {
  .p-post-link__item a:hover {
    font-weight: bold;
    color: #0055A2;
  }
}
.p-post-link__item.-line {
  background-color: #D7D7D7;
  width: 1px;
  height: 1.25rem;
}
.p-post-link__item.-prev {
  background-image: url(../img/ico_arr_left_pri.svg);
  background-position: left center;
  padding-left: 4rem;
}
@media (max-width: 767px) {
  .p-post-link__item.-prev {
    padding-left: 3rem;
  }
}
.p-post-link__item.-next {
  background-image: url(../img/ico_arr_right_pri.svg);
  background-position: right center;
  padding-right: 4rem;
}
@media (max-width: 767px) {
  .p-post-link__item.-next {
    padding-right: 3rem;
  }
}

.p-faq-list__list {
  border-top: 1px solid #D7D7D7;
  border-bottom: 1px solid #D7D7D7;
}
.p-faq-list__item + .p-faq-list__item {
  border-top: 1px solid #D7D7D7;
  padding-top: 3rem;
}
.p-faq-list__q, .p-faq-list__a {
  position: relative;
  padding: 0 0 1.5rem 3rem;
}
.p-faq-list__q::before, .p-faq-list__a::before {
  line-height: 1;
  display: inline-block;
  font-weight: bold;
  font-size: 2rem;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
.p-faq-list__q::before {
  content: "Q";
  color: #0055A2;
}
.p-faq-list__q-title {
  font-weight: bold;
  font-size: 1.25rem;
}
.p-faq-list.-accordion .p-faq-list__q {
  padding-right: 2rem;
}
.p-faq-list.-accordion .p-faq-list__q:hover {
  cursor: pointer;
}
.p-faq-list.-accordion .p-faq-list__q::after {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  content: "";
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  border-left: 2px solid #0055A2;
  border-bottom: 2px solid #0055A2;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  margin-right: 0.25rem;
  margin-top: 1.875rem;
}
.p-faq-list.-accordion .p-faq-list__q.is-active::after {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  margin-top: 2.25rem;
}
.p-faq-list__a::before {
  content: "A";
  color: #D7D7D7;
}
.p-faq-list__a > * + ol, .p-faq-list__a > * + ul, .p-faq-list__a > * + * {
  margin-top: 1rem;
}
.p-faq-list__a a {
  color: #0055A2;
  text-decoration: none;
  font-weight: bold;
  background-repeat: no-repeat;
  background-size: auto auto;
  background-position: right center;
  background-image: url(../img/ico_arr_circle_pri.svg);
  padding-right: 1.75rem;
}
@media (max-width: 767px) {
  .p-faq-list__a a {
    background-size: 1.125rem auto;
    font-size: 0.875rem;
  }
}
.p-faq-list.-accordion .p-faq-list__a {
  display: none;
}
.p-faq-list.-accordion .p-faq-list__a.is-show {
  display: block;
}

@media (min-width: 768px) {
  .p-guide-list__list {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: -2.5rem 0 0 -2.5rem;
  }
}
.p-guide-list__item {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  border-radius: 1.5rem;
  background-color: #fff;
  padding: 2.5rem;
  padding-bottom: 5.375rem;
}
@media (min-width: 768px) {
  .p-guide-list__item {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -webkit-flex-basis: calc(50% - 2.5rem);
        -ms-flex-preferred-size: calc(50% - 2.5rem);
            flex-basis: calc(50% - 2.5rem);
    max-width: calc(50% - 2.5rem);
    margin: 2.5rem 0 0 2.5rem;
  }
}
@media (max-width: 767px) {
  .p-guide-list__item {
    border-radius: 1rem;
    padding: 1.25rem;
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .p-guide-list__item + .p-guide-list__item {
    margin-top: 1.25rem;
  }
}
.p-guide-list__item.is-current {
  opacity: 0.4;
}
.p-guide-list__item.is-current:hover {
  pointer-events: none !important;
}
.p-guide-list__item:nth-child(4), .p-guide-list__item:nth-child(5) {
  display: none;
}
.p-guide-list__item:has(a) {
  position: relative;
}
.p-guide-list__item:has(a)::after {
  content: "";
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: left center;
  background-image: url(../img/ico_arr_circle_pri.svg);
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
  margin: 0 2.5rem 2.5rem 0;
}
@media (max-width: 767px) {
  .p-guide-list__item:has(a)::after {
    margin: 0 1.25rem 1.25rem 0;
  }
}
@media (min-width: 768px) {
  .p-guide-list__item:has(a):hover {
    -webkit-box-shadow: none;
            box-shadow: none;
    background-color: rgba(230, 246, 243, 0.2);
  }
}
@media (min-width: 768px) {
  .p-guide-list__item:has(a):hover::after {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
}
.p-guide-list__title-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.p-guide-list__title-wrap + * {
  margin-top: 1.25rem;
}
@media (max-width: 767px) {
  .p-guide-list__title-wrap + * {
    margin-top: 0.75rem;
  }
}
.p-guide-list__ico {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -webkit-flex-basis: 2rem;
      -ms-flex-preferred-size: 2rem;
          flex-basis: 2rem;
  max-width: 2rem;
}
@media (max-width: 767px) {
  .p-guide-list__ico {
    -webkit-flex-basis: 1.5rem;
        -ms-flex-preferred-size: 1.5rem;
            flex-basis: 1.5rem;
    max-width: 1.5rem;
  }
}
.p-guide-list__ico + * {
  margin-left: 0.5rem;
}
.p-guide-list__title {
  -webkit-flex-shrink: 1;
      -ms-flex-negative: 1;
          flex-shrink: 1;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  color: #0055A2;
  font-weight: bold;
  font-size: 1.5rem;
}
.p-guide-list__title > * {
  color: inherit;
}
@media (min-width: 768px) {
  .p-guide-list__title {
    margin-top: -0.25rem;
  }
}
@media (max-width: 767px) {
  .p-guide-list__title {
    font-size: 1.125rem;
  }
}
.p-guide-list__title a {
  text-decoration: none;
}

.p-guide-gry-list {
  background-color: #f1f1f1;
  padding: 1.5rem;
  padding-left: 3rem;
}
@media (max-width: 767px) {
  .p-guide-gry-list {
    padding: 1.25rem;
    padding-left: 2.5rem;
  }
}
.p-guide-gry-list li {
  color: #6B6A6A;
  list-style-type: disc;
}

* + .p-guide-gry-list {
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  * + .p-guide-gry-list {
    margin-top: 2rem;
  }
}

.p-use-img__flex {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
@media (max-width: 767px) {
  .p-use-img__flex {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
}
.p-use-img__img {
  width: 100%;
  aspect-ratio: 460/260;
}
@media (min-width: 768px) {
  .p-use-img__img {
    max-width: 460px;
  }
}
.p-use-img__img + .p-use-img__img {
  position: relative;
}
.p-use-img__img + .p-use-img__img::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -24px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 12px solid #0055A2;
}
@media (max-width: 767px) {
  .p-use-img__img + .p-use-img__img::before {
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid #0055A2;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: -18px;
  }
}

.p-guide-number__number a {
  font-weight: bold;
  color: #0055A2;
  position: relative;
  font-size: 1.75rem;
  padding-left: 1.75rem;
  text-decoration: none;
}
@media (max-width: 767px) {
  .p-guide-number__number a {
    font-size: 1.5rem;
    padding-left: 1.5rem;
  }
}
.p-guide-number__number a::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 1.25rem;
  height: 1.25rem;
  min-width: 1.25rem;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(/assets/img/ico_phone_pri.svg);
}
.p-guide-number__number a + * {
  margin-top: 1rem;
}

* + .p-guide-number__number {
  margin-top: 0;
}

.p-guide-payment__flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .p-guide-payment__flex {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 1rem;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.p-guide-payment__flex.-col3 {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 1rem 1.5rem;
  max-width: 618px;
}
@media (max-width: 767px) {
  .p-guide-payment__flex.-col3 {
    gap: 1rem;
  }
}
.p-guide-payment__flex.-col3 .p-guide-payment__img {
  aspect-ratio: 190/60;
  max-width: 190px;
}
@media (max-width: 767px) {
  .p-guide-payment__flex.-col3 .p-guide-payment__img {
    max-width: calc(50% - 0.5rem);
  }
}
.p-guide-payment__img {
  width: 100%;
  aspect-ratio: 105/60;
  max-width: 105px;
}

.p-news-list__item {
  border-bottom: 1px solid #D7D7D7;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 1.5rem;
  position: relative;
}
@media (max-width: 767px) {
  .p-news-list__item {
    padding-bottom: 1rem;
  }
}
.p-news-list__item:has(a) {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 768px) {
  .p-news-list__item:has(a):hover {
    cursor: pointer;
    text-decoration: none !important;
    opacity: 0.64;
  }
}
.p-news-list__item + .p-news-list__item {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .p-news-list__item + .p-news-list__item {
    margin-top: 1rem;
  }
}
.p-news-list__meta {
  margin-top: calc(0.125rem + 1px);
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .p-news-list__meta {
    padding-right: 0.875rem;
  }
}
.p-news-list__time {
  color: #0055A2;
  font-weight: bold;
  font-size: 0.875rem;
}
@media (max-width: 767px) {
  .p-news-list__time {
    font-size: 0.75rem;
  }
}
@media (max-width: 767px) {
  .p-news-list__title {
    font-size: 0.875rem;
  }
}
.p-news-list__title a {
  text-decoration: none;
}
.p-news-list__title a::before {
  content: "";
  display: block;
  top: 0;
  left: 0;
  left: 0;
  bottom: 0;
  position: absolute;
}

@media (min-width: 768px) {
  .p-coin-parking-list__list {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: -2.5rem 0 0 -2.5rem;
  }
}
.p-coin-parking-list__item {
  position: relative;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  border-radius: 1.5rem;
  background-color: #fff;
  padding: 2.5rem;
  padding-bottom: 5.375rem;
}
@media (max-width: 767px) {
  .p-coin-parking-list__item {
    border-radius: 1rem;
    padding: 1.25rem;
    padding-bottom: 3.5rem;
  }
}
@media (min-width: 768px) {
  .p-coin-parking-list__item {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -webkit-flex-basis: calc(50% - 2.5rem);
        -ms-flex-preferred-size: calc(50% - 2.5rem);
            flex-basis: calc(50% - 2.5rem);
    max-width: calc(50% - 2.5rem);
    margin: 2.5rem 0 0 2.5rem;
  }
}
@media (max-width: 767px) {
  .p-coin-parking-list__item + .p-coin-parking-list__item {
    margin-top: 1.25rem;
  }
}
.p-coin-parking-list__item::after {
  content: "";
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: left center;
  background-image: url(../img/ico_arr_circle_pri.svg);
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
  margin: 0 2.5rem 2.5rem 0;
}
@media (max-width: 767px) {
  .p-coin-parking-list__item::after {
    margin: 0 1.25rem 1.125rem 0;
  }
}
@media (min-width: 768px) {
  .p-coin-parking-list__item:hover {
    -webkit-box-shadow: none;
            box-shadow: none;
    background-color: rgba(230, 246, 243, 0.2);
  }
}
@media (min-width: 768px) {
  .p-coin-parking-list__item:hover::after {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
}
.p-coin-parking-list__address {
  color: #6B6A6A;
}
@media (max-width: 767px) {
  .p-coin-parking-list__address {
    font-size: 0.875rem;
  }
}
.p-coin-parking-list__title {
  color: #0055A2;
  font-weight: bold;
  font-size: 1.5rem;
}
.p-coin-parking-list__title + * {
  margin-top: 1.25rem;
}
@media (max-width: 767px) {
  .p-coin-parking-list__title + * {
    margin-top: 0.25rem;
  }
}
.p-coin-parking-list__title a {
  text-decoration: none;
}
.p-coin-parking-list__count + * {
  margin-top: 1.25rem;
}
@media (max-width: 767px) {
  .p-coin-parking-list__count + * {
    margin-top: 1rem;
  }
}
.p-coin-parking-list__map {
  background-color: #D7D7D7;
  aspect-ratio: 500/224;
}
.p-coin-parking-list__map > * {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}

.p-coin-parking-search {
  border: 1px solid #D7D7D7;
  border-radius: 1.5rem;
  padding: 2.5rem 3.5rem;
  display: none;
}
@media (min-width: 768px) {
  .p-coin-parking-search {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (min-width: 768px) {
  .p-coin-parking-search:has(.p-coin-parking-search__tag-list li) {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 767px) {
  .p-coin-parking-search:has(.p-coin-parking-search__tag-list li) {
    display: block;
  }
}
@media (max-width: 767px) {
  .p-coin-parking-search {
    padding: 1.75rem 1.25rem;
  }
}
.p-coin-parking-search__title {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  background-repeat: no-repeat;
  background-size: auto auto;
  background-position: left center;
  background-image: url(../img/ico_search.svg);
  font-weight: bold;
  font-size: 1.25rem;
  padding-left: 2.5rem;
  padding-right: 3.5rem;
}
@media (max-width: 767px) {
  .p-coin-parking-search__title {
    background-position-y: 20%;
    background-size: 1.5rem auto;
    font-size: 1.125rem;
    padding-left: 2rem;
    padding-bottom: 1rem;
    padding-right: 0;
  }
}
@media (min-width: 768px) {
  .p-coin-parking-search__tag {
    -webkit-flex-shrink: 1;
        -ms-flex-negative: 1;
            flex-shrink: 1;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    border-left: 1px solid #D7D7D7;
    padding-left: 3.5rem;
  }
}
@media (max-width: 767px) {
  .p-coin-parking-search__tag {
    border-top: 1px solid #D7D7D7;
    padding-top: 1.5rem;
  }
}
.p-coin-parking-search__tag-list {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
@media (max-width: 767px) {
  .p-coin-parking-search__tag-list {
    gap: 0.5rem;
  }
}
.p-coin-parking-search__tag-list li > * {
  display: inline-block;
  text-decoration: none;
  background-color: #0055A2;
  color: #fff;
  font-size: 0.875rem;
  padding: 0.125rem 0.625rem;
}
.p-coin-parking-search__tag-list.-border li > * {
  background: none;
  border: 1px solid #0055A2;
  color: #0055A2;
  font-weight: bold;
  padding: 0.375rem 1.5rem 0.25rem;
}
@media (max-width: 767px) {
  .p-coin-parking-search__tag-list.-border li > * {
    padding: 0.125rem 0.625rem;
  }
}
.p-coin-parking-search__tag-list.-border li > *:hover {
  opacity: 1 !important;
  background-color: #0055A2;
  color: #fff;
}
.p-coin-parking-search__tag-list.-border li > *.is-current {
  background-color: #0055A2;
  color: #fff;
}

.p-coin-parking-detail__address {
  color: #6B6A6A;
}
.p-coin-parking-detail__address + * {
  margin-top: 0.5rem;
}
.p-coin-parking-detail__title-wrap + * {
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .p-coin-parking-detail__title-wrap + * {
    margin-top: 1.5rem;
  }
}
@media (min-width: 768px) {
  .p-coin-parking-detail__title-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.p-coin-parking-detail__title {
  color: #0055A2;
  font-weight: bold;
  font-size: 1.75rem;
}
@media (min-width: 768px) {
  .p-coin-parking-detail__title {
    -webkit-flex-shrink: 1;
        -ms-flex-negative: 1;
            flex-shrink: 1;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
@media (min-width: 768px) {
  .p-coin-parking-detail__ico {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
}
@media (max-width: 767px) {
  * + .p-coin-parking-detail__ico {
    margin-top: 0.25rem;
  }
}
.p-coin-parking-detail__ico-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.p-coin-parking-detail__ico-list li + li {
  margin-left: 0.5rem;
}
.p-coin-parking-detail__ico-list li {
  font-size: 0;
  color: transparent;
  width: 2.5rem;
  height: 2.5rem;
}
@media (max-width: 767px) {
  .p-coin-parking-detail__ico-list li {
    width: 2rem;
    height: 2rem;
  }
}
.p-coin-parking-detail__ico-list li::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: left center;
}
.p-coin-parking-detail__ico-list li.-car::before {
  background-image: url(../img/ico_car.svg);
}
.p-coin-parking-detail__ico-list li.-bicyclee::before {
  background-image: url(../img/ico_bicyclee.svg);
}
.p-coin-parking-detail__ico-list li.-motorcycle::before {
  background-image: url(../img/ico_motorcycle.svg);
}
.p-coin-parking-detail__ico-list li.-disable {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  opacity: 0.4;
}
.p-coin-parking-detail__map {
  aspect-ratio: 960/400;
}
@media (max-width: 767px) {
  .p-coin-parking-detail__map {
    aspect-ratio: 12/9;
  }
}
.p-coin-parking-detail__map > * {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
* + .p-coin-parking-detail__info {
  margin-top: 8rem;
}
@media (max-width: 767px) {
  * + .p-coin-parking-detail__info {
    margin-top: 3rem;
  }
}
.p-coin-parking-detail__info-title {
  font-weight: bold;
  font-size: 1.25rem;
}
.p-coin-parking-detail__info-title + * {
  margin-top: 1.5rem;
}
.p-coin-parking-detail__info-table[class] table {
  border: none;
}
.p-coin-parking-detail__info-table[class] table th {
  background: none;
  text-align: center;
  border-color: #0055A2;
  color: #0055A2;
}
@media (min-width: 768px) {
  .p-coin-parking-detail__info-table[class] table th {
    max-width: 200px;
  }
}
.p-coin-parking-detail__info-table[class] table th,
.p-coin-parking-detail__info-table[class] table td {
  border-left: none;
  border-right: none;
  vertical-align: middle;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
@media (max-width: 767px) {
  .p-coin-parking-detail__info-table[class] table th,
  .p-coin-parking-detail__info-table[class] table td {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
.p-coin-parking-detail__info-table[class] table tr:last-child th {
  border-bottom: 1px solid #0055A2;
}
.p-coin-parking-detail__info-table[class] table tr:last-child td {
  border-bottom: 1px solid #D7D7D7;
}

@media (min-width: 768px) {
  .p-blog-list__list {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: -3.5rem 0 0 -3rem;
  }
}
.p-blog-list__item {
  padding-bottom: 1rem;
}
@media (min-width: 768px) {
  .p-blog-list__item {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -webkit-flex-basis: calc(33.3333333333% - 3rem);
        -ms-flex-preferred-size: calc(33.3333333333% - 3rem);
            flex-basis: calc(33.3333333333% - 3rem);
    max-width: calc(33.3333333333% - 3rem);
    margin: 3.5rem 0 0 3rem;
  }
}
@media (max-width: 767px) {
  .p-blog-list__item + .p-blog-list__item {
    margin-top: 1.25rem;
  }
}
.p-blog-list__item::after {
  content: "";
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: left center;
  background-image: url(../img/ico_arr_circle_pri.svg);
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
}
@media (min-width: 768px) {
  .p-blog-list__item:hover::after {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
}
.p-blog-list__img {
  aspect-ratio: 300/200;
}
.p-blog-list__img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.p-blog-list__img + * {
  margin-top: 1rem;
}
.p-blog-list__meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-blog-list__meta + * {
  margin-top: 0.5rem;
}
.p-blog-list__cat + * {
  margin-left: 1rem;
}
.p-blog-list__cat-list li > * {
  text-decoration: none;
  display: inline-block;
  background-color: #0055A2;
  color: #fff;
  font-weight: bold;
  font-size: 0.75rem;
  padding: 0.375rem 0.5rem 0.25rem;
}
.p-blog-list__time {
  color: #6B6A6A;
  font-weight: bold;
  font-size: 0.875rem;
}
.p-blog-list__title a {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}

.p-home-section + .p-home-section {
  margin-top: 7.5rem;
}
@media (max-width: 767px) {
  .p-home-section + .p-home-section {
    margin-top: 5rem;
  }
}
.p-home-section__header + * {
  margin-top: 2rem;
}
.p-home-section__body + * {
  margin-top: 4rem;
}