@charset "UTF-8";
/************************************************************************
* reset
************************************************************************/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  -webkit-print-color-adjust: exact;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-underline-offset: 0.2em;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  color: #000;
  font-family: "ヒラギノ角ゴシック", "游ゴシック体", "游ゴシック", "Yu Gothic", "YuGothic", "Hiragino Sans", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "メイリオ", "Meiryo", "MS Pゴシック", "MS PGothic", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-break: strict;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  word-break: normal;
  overflow-wrap: anywhere;
}

article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  vertical-align: baseline;
  margin: 0;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: 100%;
}

a {
  display: inline-block;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus-visible {
  opacity: 0.7;
}

img,
svg {
  display: inline-block;
  vertical-align: top;
  border: none;
  width: 100%;
  max-width: 100%;
  height: auto;
}

video {
  width: 100%;
  height: auto;
}

code,
kbd,
pre,
samp {
  font-size: inherit;
}

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

address {
  font-style: italic;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  margin: 0;
  border: none;
  background: transparent;
  padding: 0;
  font: inherit;
}

abbr,
acronym {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

cite {
  font-style: italic;
}

code,
kbd {
  background-color: #f5f5f5;
  padding: 0.25em 0.5em;
}

em {
  font-style: italic;
  font-weight: 700;
}

pre {
  display: block;
  background-color: #f5f5f5;
  padding: 1em 2em;
}

sub {
  vertical-align: sub;
  font-size: smaller;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

var {
  background-color: #f5f5f5;
  padding: 0.25em 0.5em;
  font-style: italic;
}

/************************************************************************
* end reset
************************************************************************/
.js-fadeIn {
  visibility: hidden;
  opacity: 0;
}

.js-fadeInUp {
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  visibility: hidden;
  opacity: 0;
}

.js-fadeInLeft {
  -webkit-transform: translateX(-30px);
  transform: translateX(-30px);
  visibility: hidden;
  opacity: 0;
}

.js-fadeInRight {
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  visibility: hidden;
  opacity: 0;
}

@-webkit-keyframes fadeInLeft {
  from {
    -webkit-transform: translate3d(-2%, 0, 0);
    transform: translate3d(-2%, 0, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInLeft {
  from {
    -webkit-transform: translate3d(-2%, 0, 0);
    transform: translate3d(-2%, 0, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInRight {
  from {
    -webkit-transform: translate3d(2%, 0, 0);
    transform: translate3d(2%, 0, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInRight {
  from {
    -webkit-transform: translate3d(2%, 0, 0);
    transform: translate3d(2%, 0, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {
  from {
    -webkit-transform: translate3d(0, 2%, 0);
    transform: translate3d(0, 2%, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    -webkit-transform: translate3d(0, 2%, 0);
    transform: translate3d(0, 2%, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeInLeft,
.fadeInRight,
.fadeInUp,
.fadeIn,
.fadeOut {
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.fadeInLeft {
  -webkit-animation-name: fadeinleft;
  animation-name: fadeInLeft;
}

.fadeInRight {
  -webkit-animation-name: fadeinright;
  animation-name: fadeInRight;
}

.fadeInUp {
  -webkit-animation-name: fadeinup;
  animation-name: fadeInUp;
}

.fadeIn {
  -webkit-animation-name: fadein;
  animation-name: fadeIn;
}

.fadeOut {
  opacity: 1;
  -webkit-animation-name: fadeout;
  animation-name: fadeOut;
}

[data-target] {
  cursor: pointer;
}

html {
  font-size: 16px;
}

button {
  color: #000;
}

/************************************************************************
* layout
************************************************************************/
body {
  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;
  min-height: 100vh;
  min-height: 100dvh;
}

main {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

footer {
  margin-top: auto;
}

/************************************************************************
* base
************************************************************************/
a[target=_blank]:not([class]) {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

a[target=_blank]:not([class])::after {
  display: inline-block;
  -webkit-mask-image: url("../img/common/icon-outerLink.svg");
  mask-image: url("../img/common/icon-outerLink.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  margin-left: 0.7647058824em;
  background-color: currentColor;
  width: 0.8529411765em;
  height: 0.7647058824em;
  font-weight: 900;
  content: "";
}

table {
  margin-right: auto;
  margin-left: auto;
  border-collapse: collapse;
  border-spacing: 0;
  width: auto;
  min-width: 100%;
  table-layout: fixed;
}

th,
td {
  border: 1px solid;
}

address {
  font-style: normal;
}

details .icon {
  aspect-ratio: 1;
  display: block;
  position: relative;
  width: 24px;
  width: 1.5rem;
}

details .icon::before,
details .icon::after {
  inset: 0;
  position: absolute;
  margin: auto;
  background-color: #000;
  width: 13px;
  width: 0.8125rem;
  height: 1px;
  content: "";
}

details .icon::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

details[open] > summary .icon::after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

details.is-closing[open] > summary .icon::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

summary {
  /* display: list-item;以外を指定してデフォルトの三角形アイコンを消します */
  display: block;
  cursor: pointer;
}

summary::-webkit-details-marker {
  /* Safariで表示されるデフォルトの三角形アイコンを消します */
  display: none;
}

/************************************************************************
* end base
************************************************************************/
/************************************************************************
* form
************************************************************************/
form {
  margin: 0;
  padding: 0;
}

form button[type=submit],
form input[type=submit],
form input[type=button] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  width: auto;
}

form button[type=submit]:hover,
form button[type=submit]:focus-visible,
form input[type=submit]:hover,
form input[type=submit]:focus-visible,
form input[type=button]:hover,
form input[type=button]:focus-visible {
  outline: none;
}

form button[type=submit]:disabled,
form input[type=submit]:disabled,
form input[type=button]:disabled {
  cursor: default;
  border-color: transparent;
  background-color: #b2b2b2;
  pointer-events: none;
  color: #fff;
}

form button[type=submit] ::-moz-focus-inner,
form input[type=submit] ::-moz-focus-inner,
form input[type=button] ::-moz-focus-inner {
  border: none;
  padding: 0;
}

label {
  cursor: pointer;
}

input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #707070;
  border-radius: 0;
  background-image: none;
  padding: 8px;
  padding: 0.5rem;
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

textarea {
  resize: vertical;
}

textarea:hover,
textarea:focus-visible {
  outline: none;
}

textarea:focus-visible {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #707070;
}

textarea ::-moz-focus-inner {
  border: none;
  padding: 0;
}

input:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #707070;
}

input[type=radio] {
  position: absolute;
  opacity: 0;
  margin: 0;
  padding: 0;
  width: auto;
  line-height: 1.5;
}

input[type=radio] + span {
  display: inline-block;
  position: relative;
  cursor: pointer;
  margin: 0;
  padding: 0 0 0 1.875em;
  line-height: 1.5;
}

input[type=radio] + span::before {
  display: block;
  position: absolute;
  top: 0.5lh;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 1px solid #707070;
  border-radius: 50%;
  background: #fff;
  width: 1.625em;
  height: 1.625em;
  content: "";
}

input[type=radio] + span::after {
  display: block;
  position: absolute;
  top: 0.5lh;
  left: 0.5em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
  border-radius: 50%;
  background: #707070;
  width: 0.625em;
  height: 0.625em;
  content: "";
}

input[type=radio]:focus-visible + span::before {
  outline: -webkit-focus-ring-color auto 5px;
}

input[type=radio]:checked + span::after {
  opacity: 1;
}

input[type=checkbox] {
  position: absolute;
  vertical-align: middle;
  opacity: 0;
  margin: 0;
  padding: 0;
  width: auto;
  line-height: 1.5;
}

input[type=checkbox] + span {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  padding-left: 1.875em;
  line-height: 1.5;
}

input[type=checkbox] + span::before {
  display: inline-block;
  position: absolute;
  top: 0.5lh;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 1px solid #707070;
  width: 1.625em;
  height: 1.625em;
  content: "";
}

input[type=checkbox] + span::after {
  display: inline-block;
  position: absolute;
  top: 0.5lh;
  left: 0;
  -webkit-transform: translateY(-70%) translateX(0.5em) rotate(45deg);
  transform: translateY(-70%) translateX(0.5em) rotate(45deg);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
  border-right: 0.25em solid #fff;
  border-bottom: 0.25em solid #fff;
  width: 0.8125em;
  height: 1.625em;
  content: "";
}

input[type=checkbox]:focus-visible + span::before {
  outline: -webkit-focus-ring-color auto 5px;
}

input[type=checkbox]:checked:focus-visible + span::before {
  outline: none;
}

input[type=checkbox]:checked + span::after {
  opacity: 1;
}

input[type=number],
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: textfield;
  margin: 0;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #707070;
  border-radius: 0;
  padding: 0.4em 2.4em 0.4em 0.8em;
  color: inherit;
  font-family: inherit;
  font-size: 16px;
  font-size: 1rem;
}

select::-ms-expand {
  display: none;
}

select:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #707070;
}

select:focus-visible {
  outline: initial;
}

select:invalid {
  color: #b2b2b2;
}

select:not(:disabled) {
  cursor: pointer;
}

:root {
  /* ウィンドウサイズ */
  --vw: 100vw;
  --vh: 100vh;
  /* 三角形 */
  --clip-triangle-top: polygon(50% 0, 100% 100%, 0 100%);
  --clip-triangle-bottom: polygon(0 0, 100% 0, 50% 100%);
  --clip-triangle-right: polygon(0 0, 100% 50%, 0 100%);
  --clip-triangle-left: polygon(0 50%, 100% 0, 100% 100%);
  --clip-triangle-lower-left: polygon(0 0, 100% 100%, 0 100%);
  --clip-triangle-upper-left: polygon(0 0, 100% 0, 0 100%);
  --clip-triangle-lower-right: polygon(100% 0, 100% 100%, 0 100%);
  --clip-triangle-upper-right: polygon(0 0, 100% 0, 100% 100%);
  /**
     * svgをbackgroundで使う
     * 色：#ffffff -> %23ffffff
     */
  --icon-btn-arrow: url('data:image/svg+xml;utf8,<svg width="37" height="6" viewBox="0 0 37 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 5H36L26.2703 1" stroke="%230C4A6E"/></svg>');
  /* ヘッダー高さ */
  --header-height: 38px;
}

/************************************************************************
* overwrite mfp
************************************************************************/
.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  background-color: #afa688;
}

.mfp-bg.mfp-ready {
  opacity: 0.8;
}

.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.mfp-wrap .mfp-arrow {
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-wrap.mfp-ready .mfp-arrow {
  opacity: 1;
}

.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.mfp-wrap.mfp-removing .mfp-arrow {
  opacity: 0;
}

/************************************************************************
* overwrite mfp end
************************************************************************/
/************************************************************************
* MW WP Form Over write
************************************************************************/
.mwform-radio-field,
.mwform-checkbox-field {
  display: inline-block;
}

.mw_wp_form_preview .c-select::after {
  content: none;
}

.mw_wp_form_preview .p-hasPlaceholder__text {
  display: none;
}

/************************************************************************
* swiper
************************************************************************/
.swiper-button-prev,
.swiper-button-next {
  aspect-ratio: 1;
  z-index: 1;
  cursor: pointer;
  background: transparent no-repeat center center/contain;
  width: 30px;
  width: 1.875rem;
}

.swiper-button-prev {
  rotate: 180deg;
  background-image: url("../img/common/icon-slider-arrow.svg");
}

.swiper-button-next {
  background-image: url("../img/common/icon-slider-arrow.svg");
}

.swiper-pagination {
  font-size: 0;
}

.swiper-pagination-bullet {
  display: inline-block;
  cursor: pointer;
  border-radius: 50%;
  background-color: #d5d5d5;
  width: 5px;
  height: 5px;
}

.swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-left: 5px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #fff;
}

/* rtl ******************************************************************/
.swiper[dir=rtl] .swiper-button-prev {
  background-image: url("../img/common/icon-chevron-right.svg");
}

.swiper[dir=rtl] .swiper-button-next {
  background-image: url("../img/common/icon-chevron-left.svg");
}

.swiper[dir=rtl] .swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-right: 5px;
  margin-left: 0;
}

/************************************************************************
* swiper end
************************************************************************/
.wpcf7-spinner {
  display: none;
}

/************************************************************************
* Table of Contents Plus
************************************************************************/
#toc_container {
  padding: 30px 20px;
  padding: 1.875rem 1.25rem;
  width: 100% !important;
}

#toc_container .toc_number {
  margin-right: 0.5em;
  color: #fff;
  font-weight: 700;
}

#toc_container .toc_list li {
  color: #000;
}

#toc_container .toc_list li::before {
  display: none;
  color: #fff;
}

#toc_container .toc_list li + li {
  margin-top: 0.5em;
}

#toc_container .toc_list a {
  color: #000;
}

.l-container {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  max-width: 500px;
  max-width: 31.25rem;
}

.l-container.l-container--full {
  margin-left: calc((100% - 100vw) / 2);
  width: 100vw;
  max-width: none;
}

.l-header {
  position: -webkit-sticky;
  position: sticky;
  top: -110%;
  left: 0;
  z-index: 20;
  -webkit-transition: top 0.3s ease 0s;
  transition: top 0.3s ease 0s;
  width: 100%;
}

.l-header.is-fixed {
  top: 0;
  -webkit-box-shadow: 0 3px 6px rgba(117, 117, 117, 0.16);
  box-shadow: 0 3px 6px rgba(117, 117, 117, 0.16);
}

/************************************************************************
* 基本形
************************************************************************/
.c-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  -webkit-transition: 0.3s ease 0s;
  transition: 0.3s ease 0s;
  -webkit-transition-property: -webkit-box-shadow, -webkit-transform;
  transition-property: -webkit-box-shadow, -webkit-transform;
  transition-property: box-shadow, transform;
  transition-property: box-shadow, transform, -webkit-box-shadow, -webkit-transform;
  margin: 0;
  -webkit-box-shadow: 0 5.88px 0 #581f14;
  box-shadow: 0 5.88px 0 #581f14;
  border-radius: 100vh;
  background-color: #a52226;
  background-image: none;
  padding: 20px 60px 20px 60px;
  padding: 1.25rem 3.75rem 1.25rem 3.75rem;
  min-width: 300px;
  min-width: 18.75rem;
  color: #fff;
  font: inherit;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.037037037;
  text-align: center;
  text-decoration: none;
}

.c-btn:hover,
.c-btn:focus-visible {
  opacity: 1;
  outline: none;
}

/************************************************************************
* modifier
************************************************************************/
.c-btn.c-btn--shine {
  position: relative;
  overflow: hidden;
}

.c-btn.c-btn--shine::before {
  /*絶対配置でキラッと光るの位置を決める*/
  position: absolute;
  top: 0;
  left: -75%;
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.8)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 100%);
  /*キラッと光る形状*/
  width: 50%;
  height: 100%;
  content: "";
}

.c-btn.c-btn--shine:hover,
.c-btn.c-btn--shine:focus-visible {
  opacity: 1;
  border-color: #a52226;
  background-color: #a52226;
  color: #fff;
}

.c-btn.c-btn--shine:hover::before,
.c-btn.c-btn--shine:focus-visible::before {
  -webkit-animation: shine 0.7s;
  animation: shine 0.7s;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
.c-btn--arrowRight {
  position: relative;
}

.c-btn--arrowRight::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  right: 1.25rem;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
  border-right: 3.52px solid #fff;
  border-bottom: 3.52px solid #fff;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  content: "";
}

.c-btn--yellow {
  background-color: yellow;
  color: #222;
}

.c-btn--yellow:hover,
.c-btn--yellow:focus {
  border-color: yellow;
  color: #222;
}

/************************************************************************
* バリエーション:角丸ボタン
************************************************************************/
.c-roundedBtn {
  display: inline-block;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  border: 2px solid transparent;
  border-radius: 10px;
  border-bottom-color: rgb(229.5, 229.5, 229.5);
  background-color: #fff;
  padding: 15px 10px;
  width: 236px;
  max-width: 100%;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
}

.c-roundedBtn:hover,
.c-roundedBtn:focus {
  border-color: currentColor;
  background-color: #fff;
  color: #fff;
}

/************************************************************************
* バリエーション：アイコン付き小ボタン
************************************************************************/
.c-beforeIconBtn {
  display: inline-block;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid currentColor;
  padding: 0.2em 0.3em;
  color: #fff;
  text-decoration: none;
}

.c-beforeIconBtn:hover,
.c-beforeIconBtn:focus {
  background-color: #fff;
  color: #fff;
}

.c-beforeIconBtn::before {
  display: inline-block;
  margin-right: 0.5em;
  font: var(--fa-font-solid);
  font-weight: 900;
}

.c-beforeIconBtn--download::before {
  content: "\f019";
}

.c-sectionHead {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
}

.c-sectionHead__orange {
  color: #f0843b;
}

.c-sectionHead__green {
  color: rgb(0, 100, 91);
}

.c-sectionTitle {
  padding: 20px 0 44px;
  padding: 1.25rem 0 2.75rem;
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

.c-sectionTitle span {
  display: block;
  position: relative;
}

.c-sectionTitle span::before {
  display: block;
  position: absolute;
  bottom: -20px;
  bottom: -1.25rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-image: url(../../assets/img/area/iconBook.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
  width: 80px;
  width: 5rem;
  height: 6px;
  height: 0.375rem;
  content: "";
}

.c-sectionTitle.c-sectionTitle--orange {
  background-color: #f0843b;
}

.c-sectionTitle.c-sectionTitle--green {
  background-color: rgb(0, 100, 91);
}

.c-sectionTitle.c-sectionTitle--red {
  background-color: #a52226;
}

.c-sectionTitle.c-sectionTitle--gold {
  background-color: #c49b29;
}

.c-sectionTitle.c-sectionTitle--black {
  padding-top: 0;
  color: #000;
}

.c-sectionTitle.c-sectionTitle--black span::before {
  background-image: url(../../assets/img/area/book_brown.png);
}

.c-totop {
  display: block;
  position: fixed;
  right: 20px;
  right: 1.25rem;
  bottom: 20px;
  bottom: 12rem;
  visibility: hidden;
  opacity: 0;
  z-index: 30;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background-color: #fff;
  width: 50px;
  width: 3.125rem;
  height: 50px;
  height: 3.125rem;
}
@media screen and (min-width: 768px) {
  .c-totop {
    bottom: 8.5rem;
  }
}

.c-totop::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -20%) rotate(-45deg);
  transform: translate(-50%, -20%) rotate(-45deg);
  border-top: 3px solid rgb(0, 100, 91);
  border-right: 3px solid rgb(0, 100, 91);
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  content: "";
}

.c-totop.is-active {
  visibility: visible;
  opacity: 0.7;
}

.c-totop.is-active:hover,
.c-totop.is-active:focus {
  opacity: 1;
}

.p-area {
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}

.p-area__list {
  gap: 32px;
  gap: 2rem;
  display: grid;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-search__title {
  border-radius: 0.75rem 0 0.75rem 0;
  background-color: #c49b29;
  padding: 5px 25px;
  padding: 0.3125rem 1.5625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
}

.p-search__list {
  gap: 12px;
  gap: 0.75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 20px;
  margin-top: 1.25rem;
  padding: 0 20px 24px 20px;
  padding: 0 1.25rem 1.5rem 1.25rem;
}

.p-search__item::after {
  margin-left: 12px;
  margin-left: 0.75rem;
  color: #ccc;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
  content: "/";
}

.p-search__item a {
  color: #000;
  text-decoration: underline;
}

.p-search__no-links {
  margin-top: 20px;
  margin-top: 1.25rem;
  padding: 0 20px 24px 20px;
  padding: 0 1.25rem 1.5rem 1.25rem;
}

.p-point {
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}
.p-point p,
.p-point ul li {
  margin-top: 16px;
  margin-top: 1rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-point p,
  .p-point ul li {
    font-size: 16px;
  }
}
.p-point ul li::before {
  content: "・";
}

.p-point__text {
  margin-top: 2.5rem;
}

.p-point__list {
  gap: 32px;
  gap: 2rem;
  display: grid;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-point-box {
  border: 1px solid #f0843b;
  border-radius: 0.75rem;
}

.p-point-box__title {
  border-radius: 0.75rem 0 0.75rem 0;
  background-color: #f0843b;
  padding: 5px 25px;
  padding: 0.3125rem 1.5625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  text-wrap: unset;
}
@media screen and (min-width: 768px) {
  .p-point-box__title {
    font-size: 24px;
  }
}

.p-point-box__list {
  gap: 12px;
  gap: 0.75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 20px;
  margin-top: 1.25rem;
  padding: 0 20px 24px 20px;
  padding: 0 1.25rem 1.5rem 1.25rem;
}

.p-select {
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}
.p-select p,
.p-select ul li {
  margin-top: 16px;
  margin-top: 1rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-select p,
  .p-select ul li {
    font-size: 16px;
  }
}
.p-select ul li::before {
  content: "・";
}

.p-select__text {
  margin-top: 2.5rem;
}

.p-select__list {
  gap: 32px;
  gap: 2rem;
  display: grid;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-select-box {
  border: 1px solid rgb(0, 100, 91);
  border-radius: 0.75rem;
}

.p-select-box__title {
  border-radius: 0.75rem 0 0.75rem 0;
  background-color: rgb(0, 100, 91);
  padding: 5px 25px;
  padding: 0.3125rem 1.5625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  text-wrap: unset;
}
@media screen and (min-width: 768px) {
  .p-select-box__title {
    font-size: 24px;
  }
}

.p-select-box__list {
  gap: 12px;
  gap: 0.75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 20px;
  margin-top: 1.25rem;
  padding: 0 20px 24px 20px;
  padding: 0 1.25rem 1.5rem 1.25rem;
}

.p-local p,
.p-local ul li {
  margin-top: 16px;
  margin-top: 1rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-local p,
  .p-local ul li {
    font-size: 16px;
  }
}
.p-local ul li::before {
  content: "・";
}

.p-local__text {
  margin-top: 2.5rem;
}

.p-404 {
  padding: 80px 0;
  padding: 5rem 0;
  text-align: center;
}

.p-404__title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
}

.p-404__text {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-404__foot {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-archive__main {
  padding: 100px 0;
  padding: 6.25rem 0;
}

.p-archive__title {
  color: rgb(0, 100, 91);
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
}

.p-archive__breadcrumb {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-archive__wrap {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-archive__footer {
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: center;
}

.p-article {
  padding: 80px 0 100px;
  padding: 5rem 0 6.25rem;
}

.p-article__meta {
  gap: 20px;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-article__category {
  display: grid;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 100vh;
  background-color: rgb(0, 100, 91);
  padding: 3px 10px;
  padding: 0.1875rem 0.625rem;
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
}

.p-article__title {
  margin-top: 5px;
  margin-top: 0.3125rem;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
}

.p-article__img {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-article__body {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-article__body h2 {
  margin-top: 64px;
  margin-top: 4rem;
  border-bottom: 2px solid rgb(0, 100, 91);
  border-bottom: 0.125rem solid rgb(0, 100, 91);
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5;
}

.p-article__body h3 {
  margin-top: 64px;
  margin-top: 4rem;
  border-top: 1px solid rgb(0, 100, 91);
  border-bottom: 1px solid rgb(0, 100, 91);
  padding: 20px 0;
  padding: 1.25rem 0;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5;
}

.p-article__body h4 {
  margin-top: 48px;
  margin-top: 3rem;
  background-color: #f3f5f5;
  padding: 16px;
  padding: 1rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

.p-article__body h5 {
  margin-top: 40px;
  margin-top: 2.5rem;
  border-left: 4px solid rgb(0, 100, 91);
  border-left: 0.25rem solid rgb(0, 100, 91);
  padding: 4px 0 4px 16px;
  padding: 0.25rem 0 0.25rem 1rem;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.p-article__body h6 {
  margin-top: 32px;
  margin-top: 2rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
}

.p-article__body p {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

.p-article__body p a {
  color: rgb(0, 100, 91);
  -webkit-text-decoration: underline rgb(0, 100, 91);
  text-decoration: underline rgb(0, 100, 91);
}

.p-article__body p a[target=_blank]::after {
  display: inline-block;
  margin-right: 10px;
  margin-right: 0.625rem;
  margin-bottom: -3px;
  margin-bottom: -0.1875rem;
  margin-left: 5px;
  margin-left: 0.3125rem;
  background-image: url(./../images/common/link.svg);
  background-size: contain;
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  content: "";
}

.p-article__body ul {
  margin-top: 32px;
  margin-top: 2rem;
}

.p-article__body ul li {
  padding-left: 22px;
  padding-left: 1.375rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  text-indent: -18px;
  text-indent: -1.125rem;
}

.p-article__body ul li:not(:first-of-type),
.p-article__body ol li:not(:first-of-type) {
  margin-top: 16px;
  margin-top: 1rem;
}

.p-article__body ul li::before {
  display: inline-block;
  position: relative;
  top: -3px;
  top: -0.1875rem;
  margin-right: 10px;
  margin-right: 0.625rem;
  border-radius: 50%;
  background-color: rgb(0, 100, 91);
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  content: "";
}

.p-article__body ol {
  counter-reset: number;
  margin-top: 32px;
  margin-top: 2rem;
}

.p-article__body ol li {
  padding-left: 28px;
  padding-left: 1.75rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  text-indent: -12px;
  text-indent: -0.75rem;
}

.p-article__body ol li::before {
  display: inline-block;
  counter-increment: number;
  margin-right: 10px;
  margin-right: 0.625rem;
  color: rgb(0, 100, 91);
  line-height: 1;
  content: counter(number) ".";
}

.p-article__body figure {
  margin-top: 32px;
  margin-top: 2rem;
  width: 100%;
}

.p-article__body figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-article__footer {
  gap: 20px;
  gap: 1.25rem;
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-banner {
  position: relative;
  z-index: 2;
  -webkit-box-shadow: 0 2px 15px rgba(77, 70, 58, 0.2);
  box-shadow: 0 2px 15px rgba(77, 70, 58, 0.2);
  border-radius: 1rem;
  background-image: url(../../assets/img/area/news_bg.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px 20px;
  padding: 2.5rem 1.25rem;
}

.p-banner::before {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  border-radius: 1rem;
  background-color: rgba(204, 204, 204, 0.8);
  width: 100%;
  height: 100%;
  content: "";
}

.p-banner__title {
  margin-inline: auto;
  display: grid;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
}

.p-banner__title span {
  position: relative;
  z-index: 2;
  padding: 5px 0;
  padding: 0.3125rem 0;
}

.p-banner__title::before {
  display: block;
  position: absolute;
  z-index: 2;
  background-image: url(../../assets/img/area/ribon02_sp.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  content: "";
}

.p-banner__list {
  gap: 20px;
  gap: 1.25rem;
  display: grid;
  position: relative;
  z-index: 2;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-banner__item {
  border-radius: 0.75rem;
  background-color: #fff;
  padding: 20px 10px;
  padding: 1.25rem 0.625rem;
}

.p-banner__itemTitle {
  color: #f0843b;
  font-size: 18px;
  font-size: 1.125rem;
  font-size: min(18px, 4vw);
  font-size: min(1.125rem, 4vw);
  font-weight: 600;
  text-align: center;
}

.p-banner__itemContents {
  gap: 16px;
  gap: 1rem;
  display: grid;
  position: relative;
  grid-template-columns: 1.71fr 2.33fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 3;
  margin-top: 16px;
  margin-top: 1rem;
}

.p-banner__img {
  aspect-ratio: 171/113;
  border-radius: 0.75rem;
  width: 100%;
  overflow: clip;
}

.p-banner__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-banner__message {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
}

.p-drawer {
  z-index: 40;
  margin-left: auto;
}

.p-drawer__icon {
  display: inline-block;
  position: relative;
  z-index: 41;
  cursor: pointer;
  padding: 19px 17.5px;
  padding: 1.1875rem 1.09375rem;
  font-size: 0;
  line-height: 1;
  text-align: center;
}

.p-drawer__icon::after {
  display: none;
  margin-top: 4px;
  min-width: 5em;
  color: #000;
  font-size: 8px;
  font-size: 0.5rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  content: "MENU";
}

.p-drawer__icon.is-opened::after {
  content: "CLOSE";
}

.p-drawer__bars {
  display: inline-block;
  vertical-align: bottom;
  width: 25px;
}

.p-drawer__bar {
  display: block;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  margin-top: 5px;
  background: #000;
  width: 100%;
  height: 3px;
}

.p-drawer__bar:first-child {
  margin-top: 0;
}

.is-opened .p-drawer__bar:nth-child(2) {
  background: transparent;
}

.is-opened .p-drawer__bar:first-child {
  -webkit-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
  width: 100%;
}

.is-opened .p-drawer__bar:last-child {
  -webkit-transform: translateY(-8px) rotate(-45deg);
  transform: translateY(-8px) rotate(-45deg);
  width: 100%;
}

.p-drawer__bg {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.p-drawer__bg.is-opened {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.25);
  width: 100vw;
  height: 100vh;
}

.p-drawer__content {
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  -webkit-transform: translateX(105%);
  transform: translateX(105%);
  z-index: 40;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
  background: #fff;
  padding-top: var(--header-height, 38px);
  padding-bottom: var(--header-height, 38px);
  width: 100%;
  height: calc(var(--vh, 100dvh) - 38px);
  overflow: auto;
  color: #000;
  text-align: center;
}

.p-drawer__content.is-opened {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-box-shadow: 6px 0 25px rgba(0, 0, 0, 0.16);
  box-shadow: 6px 0 25px rgba(0, 0, 0, 0.16);
}

.p-drawer__content--left {
  right: auto;
  left: 0;
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);
}

.p-drawer__content--top {
  top: 0;
  bottom: auto;
  -webkit-transform: translateY(-105%);
  transform: translateY(-105%);
  width: 100%;
  max-width: 100%;
}

.p-drawer__content--cover {
  width: 100%;
  max-width: 100%;
}

.p-drawer__inner {
  padding-right: 20px;
  padding-left: 20px;
  width: 100%;
}

.p-drawer__navItem + .p-drawer__navItem {
  margin-top: 0.5em;
}

.p-drawer__navLink {
  display: block;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

.p-faq {
  background-image: url(../../assets/img/area/faq_bg.png);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 32.1875rem;
}

.p-faq__list {
  margin-top: 40px;
  margin-top: 2.5rem;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}

.p-faqList__item {
  -webkit-box-shadow: 0 2px 10px rgba(8, 50, 29, 0.1);
  box-shadow: 0 2px 10px rgba(8, 50, 29, 0.1);
  border-radius: 0.625rem;
  overflow: clip;
}

.p-faqList__item + .p-faqList__item {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-faqList__item-question {
  position: relative;
  cursor: pointer;
  background-color: rgb(0, 100, 91);
  padding: 16px 46px 16px 46px;
  padding: 1rem 2.875rem 1rem 2.875rem;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
}

.p-faqList__item-question::before,
.p-faqList__item-question::after {
  position: absolute;
  top: 26px;
  top: 1.625rem;
  right: 20px;
  right: 1.25rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: #fff;
  width: 18px;
  width: 1.125rem;
  height: 3px;
  height: 0.1875rem;
  content: "";
}

.p-faqList__item-question::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.p-faqList__item-question.is-open::after {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.p-faqList__item-question,
.p-faqList__item-answer {
  position: relative;
}

.p-faqList__item-question span,
.p-faqList__item-answer span {
  display: grid;
  position: absolute;
  left: 10px;
  left: 0.625rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid rgb(0, 100, 91);
  border-radius: 50%;
  background-color: #fff;
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  color: rgb(0, 100, 91);
  font-size: 16px;
  font-size: 1rem;
}

.p-faqList__item-question span {
  top: 16px;
  top: 1rem;
}

.p-faqList__item-answer {
  display: none;
  padding: 15px 30px 15px 60px;
  padding: 0.9375rem 1.875rem 0.9375rem 3.75rem;
  padding: 16px 46px 16px 46px;
  padding: 1rem 2.875rem 1rem 2.875rem;
  font-size: 16px;
  font-size: 1rem;
}

.p-flow {
  background-image: url(../../assets/img/area/flow_bg.jpg);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 80px;
  padding-bottom: 5rem;
}

.p-flow__introduction {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-flow__list {
  gap: 40px;
  gap: 2.5rem;
  display: grid;
  margin: 40px 0 0 auto;
  margin: 2.5rem 0 0 auto;
  width: 90%;
}

.p-flow__item {
  gap: 32px;
  gap: 2rem;
  display: grid;
  position: relative;
  -webkit-box-shadow: 0 2px 10px rgba(56, 30, 24, 0.15);
  box-shadow: 0 2px 10px rgba(56, 30, 24, 0.15);
  border-radius: 0.75rem;
  background-color: #fff;
  padding: 40px 24px 40px 50px;
  padding: 2.5rem 1.5rem 2.5rem 3.125rem;
}

.p-flow__number {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: -20px;
  top: -1.25rem;
  left: -40px;
  left: -2.5rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgb(0, 100, 91);
  width: 80px;
  width: 5rem;
  height: 80px;
  height: 5rem;
  color: #fff;
  font-family: "Roboto", serif;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.p-flow__step {
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  line-height: 1;
}

.p-flow__figure {
  font-size: 32px;
  font-size: 2rem;
  line-height: 1;
}

.p-flow__head {
  color: rgb(0, 100, 91);
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
}

.p-flow__message {
  margin-top: 16px;
  margin-top: 1rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
}

.p-flow__img {
  border-radius: 0.5rem;
  overflow: clip;
}

.p-flow__img img {
  width: 100%;
  height: 100%;
}

.p-footer {
  background-image: url(../../assets/img/area/footer_bg.jpg);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 140px;
  padding-top: 8.75rem;
  padding-bottom: 9.8125rem;
  color: #fff;
}

.p-footer__logo {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
}

.p-footer__logo img,
.p-footer__logo svg {
  width: 200px;
  width: 12.5rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-footer__title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
}

.p-footer__address {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
}

.p-footer__copy {
  margin-top: 60px;
  margin-top: 3.75rem;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 300;
}

.p-fv {
  position: relative;
}

.p-fv__inner {
  position: relative;
  height: inherit;
  min-height: inherit;
}

.p-fv__titleWrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 100%;
  color: #fff;
  text-align: center;
}

.p-fv__mainTitle {
  color: rgb(0, 100, 91);
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}

.p-fv__mainTitle span {
  display: inline-block;
}

.p-fv__mainTitleMin {
  margin-top: 30px;
  margin-top: 1.875rem;
  font-size: 48px;
  font-size: 3rem;
  text-transform: uppercase;
}

.p-fv__mainTitleCube {
  background-color: rgb(0, 100, 91);
  padding: 12px;
  padding: 0.75rem;
  color: #fff;
  font-size: 55px;
  font-size: 3.4375rem;
  font-size: min(55px, 12vw);
  font-size: min(3.4375rem, 12vw);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}

.p-fv__mainTitleCube.p-fv__mainTitleCube--left {
  margin-right: 7.4px;
  margin-right: 0.4625rem;
  margin-left: 7.4px;
  margin-left: 0.4625rem;
}

.p-fv__subTitle {
  margin-top: 5px;
  margin-top: 0.3125rem;
  color: rgb(0, 100, 91);
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
}

.p-fv__img,
.p-fv__img img {
  height: inherit;
  min-height: inherit;
  text-align: center;
}

.p-fv__img img {
  margin-inline: auto;
  width: 100%;
  max-width: 1440px;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-fv__frame {
  margin-inline: auto;
  margin-top: 24px;
  margin-top: 1.5rem;
  width: 80%;
  max-width: 660px;
  max-width: 41.25rem;
}

.p-fv__btn {
  position: absolute;
  bottom: -40px;
  bottom: -7.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .p-fv__btn {
    bottom: -6.5rem;
  }
}

.p-genre {
  background-color: #f5f5f5;
}

.p-genre__cards {
  gap: 26px;
  gap: 1.625rem;
  display: grid;
  padding: 40px 0 60px;
  padding: 2.5rem 0 3.75rem;
}

.p-genreCard {
  position: relative;
  -webkit-box-shadow: 0 2px 10px rgba(56, 30, 24, 0.15);
  box-shadow: 0 2px 10px rgba(56, 30, 24, 0.15);
  border-radius: 0.5rem;
  padding: 20px 14px 40px;
  padding: 1.25rem 0.875rem 2.5rem;
  background-color: #fff;
}

.p-genreCard::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border: 1px solid #efeee9;
  border-radius: 0.5rem;
  width: 98%;
  height: 99%;
  content: "";
}

.p-genreCard__img {
  aspect-ratio: 132/155;
  margin-inline: auto;
  width: 48.8%;
}

.p-genreCard__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-genreCard__title {
  margin-top: 16px;
  margin-top: 1rem;
  color: rgb(0, 100, 91);
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
}

.p-genreCard__text {
  margin-top: 8px;
  margin-top: 0.5rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
}

.p-header {
  background-color: rgb(0, 100, 91);
  padding-top: 20px;
  padding-top: 1.25rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  height: 38px;
}

.p-header__inner {
  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-header__logo {
  height: 90%;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
}

.p-header__logo a {
  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;
  height: 100%;
}

.p-header__logo img,
.p-header__logo svg {
  width: auto;
  height: inherit;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-header__nav {
  display: none;
}

.p-information {
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}

.p-information__container {
  overflow-x: auto;
}

.p-information__introduction {
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: center;
}

.p-information__list {
  -webkit-overflow-scrolling: touch;
  margin-top: 20px;
  margin-top: 1.25rem;
  overflow-x: auto;
}

.p-informationList {
  -webkit-box-shadow: 0 2px 10px rgba(56, 30, 24, 0.15);
  box-shadow: 0 2px 10px rgba(56, 30, 24, 0.15);
  border-radius: 1rem;
  border-collapse: collapse;
  min-width: 1000px;
  min-width: 62.5rem;
}

.p-informationList__header {
  border: none;
}

.p-informationList__heading,
.p-informationList__row,
.p-informationList__data {
  border: none;
}

.p-informationList__heading {
  background-color: #f0843b;
  padding: 10px;
  padding: 0.625rem;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
}

.p-informationList__heading.p-informationList__heading--left {
  border-radius: 1.25rem 0 0 0;
}

.p-informationList__heading.p-informationList__heading--right {
  border-radius: 0 1.25rem 0 0;
}

.p-informationList__data {
  border-bottom: 1px solid #f5f5f5;
  padding: 21px 16px;
  padding: 1.3125rem 1rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 300;
}

.p-informationList__data.p-informationList__data--reference {
  text-align: right;
}

.p-informationList__link {
  color: #0693E3;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.p-informationList__link:hover {
  color: #0056b3;
  text-decoration: underline;
}

.p-informationList__heading:nth-child(1),
.p-informationList__data:nth-child(1) {
  width: 25%;
}

.p-informationList__heading:nth-child(2),
.p-informationList__data:nth-child(2) {
  width: 20.83%;
}

.p-informationList__heading:nth-child(3),
.p-informationList__data:nth-child(3) {
  width: 20.83%;
}

.p-informationList__heading:nth-child(4),
.p-informationList__data:nth-child(4) {
  width: 16.67%;
}

.p-informationList__heading:nth-child(5),
.p-informationList__data:nth-child(5) {
  width: 16.67%;
}

.p-news {
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}

.p-news__list {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-news__banner {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-newsList__item {
  border-bottom: 1px solid #ccc;
  padding-right: 20px;
  padding-right: 1.25rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  padding-left: 20px;
  padding-left: 1.25rem;
}

.p-newsList__item:not(:first-child) {
  padding-top: 40px;
  padding-top: 2.5rem;
}

.p-newsList__date {
  color: #777;
  font-family: "Roboto", serif;
  font-size: 16px;
  font-size: 1rem;
}

.p-newsList__category {
  margin-left: 12px;
  margin-left: 0.75rem;
  border: 1px solid #76602f;
  padding: 4px 8px;
  padding: 0.25rem 0.5rem;
  color: #76602f;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 300;
}

.p-newsList__title {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 任意の行数を指定 */
  display: -webkit-box;
  margin-top: 12px;
  margin-top: 0.75rem;
  overflow: hidden;
  color: #f0843b;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
}

.p-newsList__text {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 任意の行数を指定 */
  display: -webkit-box;
  margin-top: 12px;
  margin-top: 0.75rem;
  overflow: hidden;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
}

.p-newsList__tags {
  margin-left: 10px;
}

.p-newsList__tag {
  display: inline-block;
  padding: 2px 6px;
  margin-right: 4px;
  background: #f0f0f0;
  border-radius: 3px;
  font-size: 12px;
  color: #666;
}

.p-results {
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}

.p-results__container {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-results__list {
  display: grid;
  gap: 30px;
  gap: 1.875rem;
}

.p-results__item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.p-results__item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.p-results__link {
  display: block;
  padding: 20px;
  padding: 1.25rem;
  text-decoration: none;
  color: inherit;
}

.p-results__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  gap: 0.625rem;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
}

.p-results__date {
  color: #777;
  font-family: "Roboto", serif;
  font-size: 14px;
  font-size: 0.875rem;
}

.p-results__tag {
  border: 1px solid #00645b;
  padding: 2px 8px;
  padding: 0.125rem 0.5rem;
  color: #00645b;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 300;
  border-radius: 12px;
}

.p-results__title {
  color: #333;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  overflow: hidden;
}

.p-results__excerpt {
  color: #666;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  overflow: hidden;
}

.p-results__more {
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: center;
}

.p-results__more-link {
  display: inline-block;
  padding: 12px 24px;
  padding: 0.75rem 1.5rem;
  background-color: #00645b;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.p-results__more-link:hover {
  background-color: #004d47;
}

.p-reason__cards {
  gap: 40px;
  gap: 2.5rem;
  margin-inline: auto;
  display: grid;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 60px 0;
  padding: 3.75rem 0;
  max-width: 300px;
  max-width: 18.75rem;
}

.p-reasonCard {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-shadow: 0 2px 15px rgba(60, 63, 45, 0.15);
  box-shadow: 0 2px 15px rgba(60, 63, 45, 0.15);
  border-radius: 0.75rem;
  background-color: #fcfbe8;
  padding: 20px;
  padding: 1.25rem;
}

.p-reasonCard__number {
  position: absolute;
  top: 0;
  left: 10px;
  left: 0.625rem;
  background-image: url(../../assets/img/area/ribon.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 9px 11px 19px;
  padding: 0.5625rem 0.6875rem 1.1875rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-family: "Roboto", serif;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.p-reasonCard__img {
  aspect-ratio: 268/163;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 0.5rem;
  width: 100%;
  height: 163px;
  height: 10.1875rem;
  overflow: clip;
}

.p-reasonCard__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-reasonCard__title {
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 16px;
  margin-top: 1rem;
  color: #76602f;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
}

.p-reasonCard__message {
  margin-top: 16px;
  margin-top: 1rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
}

.p-section__breadcrumb {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-top {
  background-color: #fcfbe8;
  padding: 60px 0 40px;
  padding: 7.75rem 0 2.5rem;
}

.p-top__box {
  gap: 18px;
  gap: 1.125rem;
  display: grid;
  position: relative;
  background-image: url(../../assets/img/area/frame_sp.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 20px 20px 64px 20px;
  padding: 1.25rem 1.25rem 4rem 1.25rem;
}

.p-top__box::after {
  display: block;
  position: absolute;
  right: -10px;
  right: -0.625rem;
  bottom: -21px;
  bottom: -1.3125rem;
  background-image: url(../../assets/img/area/book.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
  width: 140px;
  width: 8.75rem;
  height: 80px;
  height: 5rem;
  content: "";
}

.p-top__img {
  margin-inline: auto;
  width: 80%;
}

.p-top__title {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 600;
  text-align: center;
}

.p-top__head {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 300;
}

.p-top__message {
  margin-top: 20px;
  margin-top: 1.25rem;
  letter-spacing: 0.13em;
  line-height: 1.6;
}

.p-voice__list {
  padding: 40px 0 80px;
  padding: 2.5rem 0 5rem;
}

.p-voice__item {
  gap: 30px;
  gap: 1.875rem;
  display: grid;
}

.p-voice__item:not(:first-child) {
  border-top: 1px solid #ccc;
  padding-top: 32px;
  padding-top: 2rem;
}

.p-voice__item:not(:last-child) {
  padding-bottom: 32px;
  padding-bottom: 2rem;
}

.p-voice__img {
  margin-inline: auto;
  width: re(200);
}

.p-voice__grid {
  gap: 16px;
  gap: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-voice__meta {
  gap: 12px;
  gap: 0.75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.p-voice__category {
  border: 1px solid rgb(0, 100, 91);
  border-radius: 0.25rem;
  padding: 0 5px;
  padding: 0 0.3125rem;
  color: rgb(0, 100, 91);
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
}

.p-voice__message {
  position: relative;
  margin-top: 16px;
  margin-top: 1rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
}

.p-voice__message::before {
  display: block;
  position: absolute;
  top: 10px;
  top: 0.625rem;
  left: 0;
  z-index: -1;
  background-color: #fbede1;
  width: 189px;
  width: 11.8125rem;
  height: 10px;
  height: 0.625rem;
  content: "";
}

.p-way {
  background-color: #f5f5f5;
}

.p-way__list {
  gap: 40px;
  gap: 2.5rem;
  display: grid;
  padding: 80px 0 80px;
  padding: 5rem 0 5rem;
}

.p-way__item {
  position: relative;
  -webkit-box-shadow: 0 2px 10px rgba(56, 30, 24, 0.15);
  box-shadow: 0 2px 10px rgba(56, 30, 24, 0.15);
  border-radius: 0.5rem;
  background-color: #fff;
  padding: 40px 24px;
  padding: 2.5rem 1.5rem;
}

.p-way__number {
  position: absolute;
  top: -34.5px;
  top: -2.15625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 100%;
  background-color: #a52226;
  width: 69px;
  width: 4.3125rem;
  height: 69px;
  height: 4.3125rem;
  color: #fff;
  font-family: "Roboto", serif;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
}

.p-way__img {
  margin-inline: auto;
  width: 168px;
  width: 10.5rem;
}

.p-way__topic {
  margin-top: 16px;
  margin-top: 1rem;
  color: #a52226;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}

.p-way__text {
  margin-top: 9px;
  margin-top: 0.5625rem;
  font-size: 16px;
  font-size: 1rem;
}

.p-word {
  -webkit-transform: translateY(6.25rem);
  transform: translateY(6.25rem);
  margin-top: -20px;
  margin-top: -1.25rem;
}

.p-word__contents {
  -webkit-box-shadow: 0 2px 15px rgba(77, 70, 58, 0.2);
  box-shadow: 0 2px 15px rgba(77, 70, 58, 0.2);
  border-radius: 1rem;
  background-color: #fffef5;
  padding: 40px 20px;
  padding: 2.5rem 1.25rem;
}

.p-word__box {
  gap: 47px;
  gap: 2.9375rem;
  display: grid;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-word__text {
  gap: 16px;
  gap: 1rem;
  display: grid;
}

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

/************************************************************************
* visible device
************************************************************************/
.u-onlyPc {
  display: none;
}

.u-onlyTab {
  display: none;
}

.u-onlySp {
  display: none;
}

.u-inlineBlock {
  display: inline-block !important;
}

.u-block {
  display: block !important;
}

.u-inline {
  display: inline !important;
}

@media screen and (min-width: 768px) {
  html {
    font-size: 1.3333333333vw;
  }
  :root {
    --header-height: 38px;
  }
  .swiper-button-prev,
  .swiper-button-next {
    width: 40px;
    width: 2.5rem;
  }
  #toc_container {
    padding: 30px 60px;
    padding: 1.875rem 3.75rem;
  }
  .l-container {
    padding-right: 30px;
    padding-left: 30px;
    max-width: 1260px;
  }
  .l-container.l-container--narrow {
    max-width: 1056px;
  }
  .l-container.l-container--narrow-xs {
    max-width: 960px;
  }
  .l-container.l-container--wide {
    max-width: 1500px;
  }
  .c-btn:hover,
  .c-btn:focus-visible {
    -webkit-transform: translateY(0.3125rem);
    transform: translateY(0.3125rem);
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .c-btn {
    padding: 31px 119px;
    padding: 1.9375rem 7.4375rem;
    font-size: 28px;
    font-size: 1.75rem;
  }
  .c-btn--arrowRight::after {
    right: 30px;
    right: 1.875rem;
    width: 20px;
    width: 1.25rem;
    height: 20px;
    height: 1.25rem;
  }
  .c-sectionHead {
    font-size: 20px;
  }
  .c-sectionTitle {
    padding: 34px 0 44px;
    padding: 2.125rem 0 2.75rem;
    font-size: 32px;
  }
  .p-area {
    padding-bottom: 100px;
    padding-bottom: 6.25rem;
  }
  .p-area__list {
    margin-top: 59px;
    margin-top: 3.6875rem;
  }
  .p-search__title {
    font-size: 24px;
  }
  .p-search__list {
    gap: 16px;
    gap: 1rem;
    padding: 0 33px 24px 33px;
    padding: 0 2.0625rem 1.5rem 2.0625rem;
  }
  .p-search__item::after {
    margin-left: 16px;
    margin-left: 1rem;
  }
  .p-search__no-links {
    padding: 0 33px 24px 33px;
    padding: 0 2.0625rem 1.5rem 2.0625rem;
  }
  .p-point__list {
    gap: 16px;
    gap: 1rem;
  }
  .p-404 {
    padding: 180px 0;
    padding: 11.25rem 0;
  }
  .p-404__title {
    font-size: 32px;
  }
  .p-404__text {
    margin-top: 40px;
    margin-top: 2.5rem;
  }
  .p-404__foot {
    margin-top: 40px;
    margin-top: 2.5rem;
  }
  .p-archive__title {
    font-size: 32px;
  }
  .p-article__category {
    font-size: 14px;
  }
  .p-article__title {
    font-size: 32px;
  }
  .p-article__body h2 {
    margin-top: 80px;
    margin-top: 5rem;
    padding-bottom: 30px;
    padding-bottom: 1.875rem;
    font-size: 28px;
    font-size: 1.75rem;
  }
  .p-article__body h3 {
    margin-top: 80px;
    margin-top: 5rem;
    padding: 24px 0;
    padding: 1.5rem 0;
    font-size: 24px;
    font-size: 1.5rem;
  }
  .p-article__body h4 {
    margin-top: 64px;
    margin-top: 4rem;
    font-size: 20px;
    font-size: 1.25rem;
  }
  .p-article__body h5 {
    margin-top: 48px;
    margin-top: 3rem;
    padding: 8px 0 8px 16px;
    padding: 0.5rem 0 0.5rem 1rem;
    font-size: 18px;
    font-size: 1.125rem;
  }
  .p-article__body h6 {
    margin-top: 38px;
    margin-top: 2.375rem;
    font-size: 16px;
    font-size: 1rem;
  }
  .p-article__body p {
    margin-top: 38px;
    margin-top: 2.375rem;
  }
  .p-article__body ul {
    margin-top: 38px;
    margin-top: 2.375rem;
  }
  .p-article__body ol {
    margin-top: 38px;
    margin-top: 2.375rem;
  }
  .p-article__body figure {
    margin-top: 48px;
    margin-top: 3rem;
  }
  .p-banner {
    padding: 40px 100px;
    padding: 2.5rem 6.25rem;
  }
  .p-banner__title span {
    padding: 0 45px;
    padding: 0 2.8125rem;
  }
  .p-banner__title {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 26px;
  }
  .p-banner__title::before {
    background-image: url(../../assets/img/area/ribon02.png);
    height: 58px;
  }
  .p-banner__list {
    gap: 64px;
    gap: 4rem;
    margin-inline: auto;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 38px;
    margin-top: 2.375rem;
    width: 1000px;
    width: 62.5rem;
  }
  .p-banner__item {
    padding: 25px 24px;
    padding: 1.5625rem 1.5rem;
  }
  .p-banner__itemTitle {
    font-size: 20px;
  }
  .p-banner__message {
    font-size: 16px;
  }
  .p-faq__list {
    margin-top: 80px;
    margin-top: 5rem;
    margin-bottom: 80px;
    margin-bottom: 5rem;
  }
  .p-faqList__item-question {
    padding: 20px 60px 20px 84px;
    padding: 1.25rem 3.75rem 1.25rem 5.25rem;
    font-size: 18px;
  }
  .p-faqList__item-question::before,
  .p-faqList__item-question::after {
    top: 30px;
    top: 1.875rem;
    right: 18px;
    right: 1.125rem;
    width: 20px;
    width: 1.25rem;
  }
  .p-faqList__item-question span,
  .p-faqList__item-answer span {
    left: 24px;
    left: 1.5rem;
    width: 36px;
    width: 2.25rem;
    height: 36px;
    height: 2.25rem;
    font-size: 16px;
    font-size: 1rem;
  }
  .p-faqList__item-answer {
    padding: 20px 60px 20px 84px;
    padding: 1.25rem 3.75rem 1.25rem 5.25rem;
    font-size: 18px;
    background-color: #fff;
  }
  .p-flow {
    padding-bottom: 100px;
    padding-bottom: 6.25rem;
  }
  .p-flow__introduction {
    margin-top: 50px;
    margin-top: 3.125rem;
  }
  .p-flow__list {
    gap: 53px;
    gap: 3.3125rem;
    margin: 54px 0 0 auto;
    margin: 3.375rem 0 0 auto;
    width: 94.4%;
  }
  .p-flow__item {
    grid-template-columns: 4fr 3.26fr;
    padding: 24px 24px 24px 68px;
    padding: 1.5rem 1.5rem 1.5rem 4.25rem;
  }
  .p-flow__number {
    top: -20px;
    top: -1.25rem;
    left: -45px;
    left: -2.8125rem;
    width: 100px;
    width: 6.25rem;
    height: 100px;
    height: 6.25rem;
  }
  .p-flow__step {
    font-size: 22px;
  }
  .p-flow__figure {
    font-size: 48px;
  }
  .p-flow__head {
    margin-top: 20px;
    margin-top: 1.25rem;
    font-size: 22px;
  }
  .p-flow__message {
    font-size: 16px;
  }
  .p-footer {
    padding-top: 218px;
    padding-top: 13.625rem;
  }
  .p-footer__logo {
    font-size: 40px;
    font-size: 2.5rem;
  }
  .p-footer__title {
    font-size: 32px;
    font-size: 2rem;
  }
  .p-footer__address {
    margin-top: 50px;
    margin-top: 3.125rem;
    font-size: 16px;
  }
  .p-footer__copy {
    margin-top: 100px;
    margin-top: 6.25rem;
    font-size: 12px;
  }
  .p-fv__titleWrap {
    top: 50%;
    left: calc(50% - min(50vw, 30.375rem));
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: initial;
  }
  .p-fv__mainTitle {
    font-size: 102px;
    font-size: 6.375rem;
  }
  .p-fv__mainTitleMin {
    margin-top: 20px;
    margin-top: 1.25rem;
    font-size: 100px;
    font-size: 6.25rem;
  }
  .p-fv__mainTitleCube {
    padding: 19px;
    padding: 1.1875rem;
    font-size: 102px;
    font-size: 6.375rem;
  }
  .p-fv__subTitle {
    font-size: 32px;
    font-size: 2rem;
  }
  .p-fv__frame {
    width: 100%;
  }
  .p-fv__btn {
    bottom: -56px;
    bottom: -3.5rem;
  }
  .p-genre__cards {
    gap: 26px;
    gap: 1.625rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    padding: 80px 0 100px;
    padding: 5rem 0 6.25rem;
  }
  .p-genreCard__title {
    font-size: 18px;
  }
  .p-genreCard__text {
    font-size: 16px;
  }
  .p-header {
    height: 38px;
  }
  .p-header__logo {
    font-size: 40px;
    font-size: 2.5rem;
  }
  .p-header__nav {
    display: block;
    margin-left: auto;
    padding-left: 20px;
    padding-left: 1.25rem;
  }
  .p-header__nav ul {
    gap: 46px;
    gap: 2.875rem;
    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-header__nav li > a {
    display: block;
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 700;
  }
  .p-header__drawer {
    display: none;
  }
  .p-information {
    padding-bottom: 100px;
    padding-bottom: 6.25rem;
  }
  .p-information__introduction {
    margin-top: 50px;
    margin-top: 3.125rem;
  }
  .p-information__list {
    margin-top: 28px;
    margin-top: 1.75rem;
  }
  .p-informationList {
    min-width: 100%;
  }
  .p-informationList__heading {
    font-size: 16px;
  }
  .p-informationList__data {
    font-size: 14px;
  }
  .p-news {
    padding-bottom: 100px;
    padding-bottom: 6.25rem;
  }
  .p-news__list {
    margin-top: 80px;
    margin-top: 5rem;
  }
  .p-news__banner {
    margin-top: 131px;
    margin-top: 8.1875rem;
  }
  .p-newsList__item:not(:first-child) {
    padding-top: 57px;
    padding-top: 3.5625rem;
  }
  .p-newsList__item {
    padding-right: 48px;
    padding-right: 3rem;
    padding-bottom: 57px;
    padding-bottom: 3.5625rem;
    padding-left: 48px;
    padding-left: 3rem;
  }
  .p-newsList__date {
    font-size: 16px;
  }
  .p-newsList__category {
    font-size: 12px;
  }
  .p-newsList__title {
    -webkit-line-clamp: 1; /* 任意の行数を指定 */
    font-size: 20px;
  }
  .p-newsList__text {
    -webkit-line-clamp: 1; /* 任意の行数を指定 */
    font-size: 16px;
  }
  .p-reason__cards {
    gap: 50px;
    gap: 3.125rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 80px 0;
    margin: 5rem 0;
    max-width: 100%;
  }
  .p-reason__card {
    width: calc((100% - 6.25rem) / 3);
  }
  .p-reasonCard__title {
    font-size: 20px;
  }
  .p-reasonCard__message {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    font-size: 16px;
  }
  .p-reasonCard__content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .p-top {
    padding: 124px 0 100px;
    padding: 7.75rem 0 6.25rem;
  }
  .p-top__box {
    gap: 18px;
    gap: 1.125rem;
    grid-template-columns: 0.7fr 2fr;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-image: url(../../assets/img/area/frame.png);
    padding: 64px 43px 64px 74px;
    padding: 4rem 2.6875rem 4rem 4.625rem;
  }
  .p-top__box::after {
    right: -43px;
    right: -2.6875rem;
    right: max(-43px, 50% - 48vw);
    right: max(-2.6875rem, 50% - 48vw);
    bottom: -61px;
    bottom: -3.8125rem;
    width: 242px;
    width: 15.125rem;
    height: 143px;
    height: 8.9375rem;
  }
  .p-top__img {
    width: 100%;
  }
  .p-top__title {
    font-size: 40px;
  }
  .p-top__head {
    margin-top: 27px;
    margin-top: 1.6875rem;
    font-size: 24px;
  }
  .p-top__message {
    margin-top: 27px;
    margin-top: 1.6875rem;
    font-size: 16px;
  }
  .p-voice__list {
    margin-inline: auto;
    padding: 80px 0 100px;
    padding: 5rem 0 6.25rem;
  }
  .p-voice__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;
  }
  .p-voice__img {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 130px;
  }
  .p-voice__grid {
    max-width: 60%;
  }
  .p-voice__category {
    font-size: 16px;
  }
  .p-voice__message {
    font-size: 16px;
  }
  .p-voice__message::before {
    top: 10px;
    width: 189px;
  }
  .p-way__list {
    grid-template-columns: repeat(3, 1fr);
    padding: 118px 0 100px;
    padding: 7.375rem 0 6.25rem;
  }
  .p-way__number {
    width: 69px;
    width: 4.3125rem;
    height: 69px;
    height: 4.3125rem;
  }
  .p-way__topic {
    font-size: 20px;
  }
  .p-way__text {
    font-size: 16px;
  }
  .p-word {
    -webkit-transform: translateY(7.8125rem);
    transform: translateY(7.8125rem);
    margin-top: -25px;
    margin-top: -1.5625rem;
  }
  .p-word__contents {
    padding: 60px 100px;
    padding: 3.75rem 6.25rem;
  }
  .p-word__box {
    grid-template-columns: 4.53fr 5fr;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .u-onlyTab {
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  .u-onlyPc {
    display: block;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}
.p-search {
  border: 1px solid #c49b29;
  border-radius: 0.75rem;
  padding: 0 !important;
}
.p-search__info {
  margin-bottom: 30px;
}
.p-search__query {
  margin-bottom: 15px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  text-align: center;
  color: #555;
  font-size: 1.1rem;
}
.p-search__count {
  padding: 15px 20px;
  background: #e8f4fd;
  border-radius: 8px;
  color: #007cba;
  font-size: 1rem;
  text-align: center;
}
.p-search__count strong {
  color: #005a87;
  font-weight: bold;
}
.p-search__no-results {
  background: white;
  border-radius: 8px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-top: 40px;
}
.p-search__no-results h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #333;
}
.p-search__no-results p {
  margin-bottom: 15px;
  color: #666;
  line-height: 1.6;
}

.p-searchCard {
  background: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.p-searchCard:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
.p-searchCard__link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.p-searchCard__meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.p-searchCard__date {
  color: #999;
  font-size: 0.9rem;
  font-weight: 500;
}
.p-searchCard__category {
  background: linear-gradient(45deg, #007cba, #005a8a);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}
.p-searchCard__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.p-searchCard__tag {
  background: #f0f0f0;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  color: #666;
  border: 1px solid #e0e0e0;
}
.p-searchCard__title {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #333;
  line-height: 1.4;
  font-weight: 600;
  transition: color 0.3s ease;
}
.p-searchCard__title:hover {
  color: #007cba;
}
.p-searchCard__excerpt {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}
.pagination a, .pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  border: 1px solid #ddd;
  text-decoration: none;
  color: #007cba;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-weight: 500;
}
.pagination a:hover, .pagination span:hover {
  background: #007cba;
  color: white;
  border-color: #007cba;
}
.pagination .current {
  background: #007cba;
  color: white;
  border-color: #007cba;
}
.pagination .dots {
  border: none;
  color: #999;
}
.pagination .dots:hover {
  background: none;
  color: #999;
}

@media screen and (max-width: 767px) {
  .u-onlySp {
    display: block;
  }
  .p-search__container {
    padding: 0 15px;
  }
  .p-searchCard {
    padding: 20px;
  }
  .p-searchCard__title {
    font-size: 1.2rem;
  }
  .pagination {
    gap: 4px;
  }
  .pagination a, .pagination span {
    min-width: 40px;
    height: 40px;
    padding: 0 8px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}


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