@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: .2em;
  background: #fff;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  color: #000;
  font-family: '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 .3s ease 0s;
  transition: opacity .3s ease 0s;
  color: inherit;
  text-decoration: none;
}

a[href='*'] {
  cursor: pointer;
}

a[href='*']:hover, a[href='*']:focus-visible {
  opacity: .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: #F8F8F8;
  padding: .25em .5em;
}

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

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

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

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

var {
  background-color: #F8F8F8;
  padding: .25em .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: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

.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 {
  scrollbar-gutter: stable;
  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;
}

body.fadeIn {
  opacity: 0;
}

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 .3s;
  transition: color .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: .7647058824em;
  background-color: currentColor;
  width: .8529411765em;
  height: .7647058824em;
  font-weight: 900;
  content: '';
}

a:not([class]) {
  color: #03c;
}

a:not([class]):hover {
  text-decoration: underline;
}

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: .8125rem;
  height: 1px;
  content: '';
}

details .icon::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .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: .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: .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: .5lh;
  left: .5em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  border-radius: 50%;
  background: #707070;
  width: .625em;
  height: .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: .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: .5lh;
  left: 0;
  -webkit-transform: translateY(-70%) translateX(.5em) rotate(45deg);
  transform: translateY(-70%) translateX(.5em) rotate(45deg);
  opacity: 0;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  border-right: .25em solid #0C4A6E;
  border-bottom: .25em solid #0C4A6E;
  width: .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: .4em 2.4em .4em .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: 100%;
  --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: 60px;
}

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

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

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

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

.mfp-wrap .mfp-arrow {
  opacity: 0;
  -webkit-transition: opacity .5s;
  transition: opacity .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: #0C4A6E;
}

/* 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: .5em;
  color: #0C4A6E;
  font-weight: 700;
}

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

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

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

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

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

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

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

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

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

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

.l-home-about {
  margin-top: 100px;
  margin-top: 6.25rem;
}

.l-home-service {
  padding-top: 150px;
  padding-top: 9.375rem;
}

.l-home-price {
  margin-top: 200px;
  margin-top: 12.5rem;
}

.l-home-message {
  margin-top: 200px;
  margin-top: 12.5rem;
}

.l-home-news {
  margin-top: 200px;
  margin-top: 12.5rem;
}

.l-home-blog {
  margin-top: 200px;
  margin-top: 12.5rem;
}

/************************************************************************
* 基本形
************************************************************************/
.c-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  -webkit-transition: .3s ease 0s;
  transition: .3s ease 0s;
  -webkit-transition-property: prop;
  transition-property: prop;
  margin: 0;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  border: 1px solid transparent;
  border-radius: 10px;
  background-color: #0C4A6E;
  background-image: none;
  padding: 1em 2em;
  color: #fff;
  font: inherit;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
}

.c-btn:hover, .c-btn:focus-visible {
  outline: none;
  border-color: currentColor;
  background-color: #fff;
  color: #0C4A6E;
}

/************************************************************************
* 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, .8)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .8) 100%);

  /*キラッと光る形状*/
  width: 50%;
  height: 100%;
  content: '';
}

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

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

@-webkit-keyframes shine {

  100% {
    left: 125%;
  }
}

@keyframes shine {

  100% {
    left: 125%;
  }
}

.c-btn--arrowRight {
  position: relative;
  padding-right: 2em;
  padding-left: 1.38em;
}

.c-btn--arrowRight::after {
  position: absolute;
  top: 50%;
  right: .83em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font: var(--fa-font-solid);
  font-weight: 900;
  content: '\f061';
}

.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: .25s;
  transition: .25s;
  border: 2px solid transparent;
  border-radius: 10px;
  border-bottom-color: rgb(6.9836065574, 43.0655737705, 64.0163934426);
  background-color: #0C4A6E;
  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: #0C4A6E;
}

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

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

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

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

.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: .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 .3s linear 0s;
  transition: all .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 .3s ease 0s;
  transition: all .3s ease 0s;
}

.p-drawer__bg.is-opened {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(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 .5s ease 0s;
  transition: -webkit-transform .5s ease 0s;
  transition: transform .5s ease 0s;
  transition: transform .5s ease 0s, -webkit-transform .5s ease 0s;
  background: #fff;
  padding-top: var(--header-height, 60px);
  padding-bottom: var(--header-height, 60px);
  width: 100%;
  max-height: 100dvh;
  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, .16);
  box-shadow: 6px 0 25px rgba(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: .5em;
}

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

.c-footer {
  background-color: #f6f6f6;
}

.c-footer__inner {
  margin-right: auto;
  margin-left: auto;
  padding-top: 100px;
  padding-top: 6.25rem;
  max-width: 1300px;
  max-width: 81.25rem;
}

.c-footer__nav {
  margin-left: 52px;
  margin-left: 3.25rem;
}

.c-footer__nav ul {
  gap: 53px;
  gap: 3.3125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.c-footer__nav li::before {
  color: #073255;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 700;
  content: '｜';
}

.c-footer__nav li a {
  margin-left: 8px;
  margin-left: .5rem;
  color: #073255;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.7647058824;
}

.c-footer__body {
  position: relative;
}

.c-footer__panel {
  gap: 107px;
  gap: 6.6875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 76px;
  margin-top: 4.75rem;
  border-radius: 1.5625rem;
  background-color: #fff;
  padding: 41px 61px;
  padding: 2.5625rem 3.8125rem;
  max-width: 1291px;
  max-width: 80.6875rem;
  min-height: 390px;
  min-height: 24.375rem;
}

.c-footer__panel-inner {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}

.c-footer__brand {
  gap: 24px;
  gap: 1.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.c-footer__brand img,
.c-footer__brand svg {
  display: block;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 103px;
  width: 6.4375rem;
  height: 119px;
  height: 7.4375rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.c-footer__brand-title {
  color: #073255;
  font-size: 47px;
  font-size: 2.9375rem;
  font-weight: 900;
  line-height: 1.2;
}

.c-footer__brand-names {
  margin-top: 3px;
  margin-top: .1875rem;
  color: #073255;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
}

.c-footer__contact-list {
  margin-top: 10px;
  margin-top: .625rem;
  padding-left: 30px;
  padding-left: 1.875rem;
}

.c-footer__contact-item {
  gap: 55px;
  gap: 3.4375rem;
  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;
}

.c-footer__contact-item + .c-footer__contact-item {
  margin-top: 5px;
  margin-top: .3125rem;
}

.c-footer__contact-icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -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: #003b68;
}

.c-footer__contact-icon img,
.c-footer__contact-icon svg {
  display: block;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -o-object-fit: contain;
  object-fit: contain;
}

.c-footer__contact-item .c-footer__contact-icon {
  width: 41px;
  width: 2.5625rem;
  height: 41px;
  height: 2.5625rem;
}

.c-footer__contact-item:nth-child(1) .c-footer__contact-icon img {
  width: 20px;
  width: 1.25rem;
  height: 28px;
  height: 1.75rem;
}

.c-footer__contact-item:nth-child(2) .c-footer__contact-icon img {
  width: 26px;
  width: 1.625rem;
  height: 26px;
  height: 1.625rem;
}

.c-footer__contact-item:nth-child(3) .c-footer__contact-icon img {
  width: 24px;
  width: 1.5rem;
  height: 28px;
  height: 1.75rem;
}

.c-footer__address,
.c-footer__tel,
.c-footer__hours {
  color: #073255;
  font-weight: 700;
}

.c-footer__address {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6666666667;
}

.c-footer__tel {
  font-size: 27px;
  font-size: 1.6875rem;
  line-height: 1.1111111111;
}

.c-footer__hours {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6666666667;
}

.c-footer__tel a {
  color: inherit;
}

.c-footer__map {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0;
}

.c-footer__map iframe {
  display: block;
  width: 390px;
  width: 24.375rem;
  height: 290px;
  height: 18.125rem;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-footer__bottom {
  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: 100px;
  margin-top: 6.25rem;
  margin-right: calc(50% - var(--vw, 100%) / 2);
  margin-left: calc(50% - var(--vw, 100%) / 2);
  background-color: #003b68;
  width: var(--vw, 100%);
  min-height: 62px;
  min-height: 3.875rem;
}

.c-footer__copy {
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.25;
}

.c-header {
  background-color: #036;
  height: 87px;
  height: 5.4375rem;
}

.c-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;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-right: .9375rem;
  padding-left: 15px;
  padding-left: .9375rem;
  max-width: 1465px;
  max-width: 91.5625rem;
  height: 100%;
}

.c-header__logo {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  z-index: 41;
}

.c-header__logo a {
  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;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.c-header__logo img,
.c-header__logo svg {
  aspect-ratio: 172/25;
  display: block;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 172px;
  width: 10.75rem;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.c-header__logo-text {
  color: #fff;
  font-size: 11px;
  font-size: .6875rem;
  font-weight: 900;
  line-height: 2.4545454545;
}

.c-header__nav {
  display: block;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  margin-left: 188px;
  margin-left: 11.75rem;
  min-width: 0;
}

.c-header__nav ul {
  gap: 75px;
  gap: 4.6875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-header__nav li > a {
  display: block;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
}

.c-header__info {
  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;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  margin-left: auto;
  min-width: 0;
}

.c-header__tel {
  color: #fff;
  font-size: 13px;
  font-size: .8125rem;
  font-weight: 500;
  line-height: 3.1538461538;
}

.c-header__tel a {
  color: inherit;
}

.c-header__hours {
  margin-top: -20px;
  margin-top: -1.25rem;
  color: #fff;
  font-size: 13px;
  font-size: .8125rem;
  font-weight: 500;
  line-height: 3.1538461538;
  text-align: right;
}

.c-header__contact {
  gap: 5px;
  gap: .3125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: 27px;
  margin-left: 1.6875rem;
  border-radius: 2.625rem;
  background-color: #f6f6f6;
  padding-right: 16px;
  padding-right: 1rem;
  padding-left: 16px;
  padding-left: 1rem;
  width: 171px;
  width: 10.6875rem;
  height: 37px;
  height: 2.3125rem;
  color: #036;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
}

.c-header__contact img,
.c-header__contact svg {
  display: block;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 31px;
  width: 1.9375rem;
  height: 23px;
  height: 1.4375rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.c-header__drawer {
  display: none;
}

.c-scroll-hint {
  display: none;
  position: absolute;
  visibility: hidden;
  opacity: 0;
  z-index: 2;
  -webkit-transition: opacity .4s ease, visibility .4s ease;
  transition: opacity .4s ease, visibility .4s ease;
  pointer-events: none;
}

.c-scroll-hint.is-visible {
  visibility: visible;
  opacity: 1;
}

.c-scroll-hint.is-dismissed {
  visibility: hidden;
  opacity: 0;
}

.c-scroll-hint__inner {
  gap: 6px;
  gap: .375rem;
  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-shadow: 0 .25rem .75rem rgba(0, 0, 0, .15);
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .15);
  border-radius: 1.25rem;
  background-color: rgba(0, 51, 102, .88);
  padding-top: 8px;
  padding-top: .5rem;
  padding-right: 14px;
  padding-right: .875rem;
  padding-bottom: 8px;
  padding-bottom: .5rem;
  padding-left: 14px;
  padding-left: .875rem;
  color: #fff;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.c-scroll-hint__text {
  display: block;
  line-height: 1;
}

.c-scroll-hint__arrow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -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;
  -webkit-animation: c-scroll-hint-arrow 1.2s ease-in-out infinite;
  animation: c-scroll-hint-arrow 1.2s ease-in-out infinite;
  width: 12px;
  width: .75rem;
  height: 12px;
  height: .75rem;
}

.c-scroll-hint__arrow::before {
  display: block;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: 2px solid #fff;
  border-top: .125rem solid #fff;
  border-right: 2px solid #fff;
  border-right: .125rem solid #fff;
  width: 6px;
  width: .375rem;
  height: 6px;
  height: .375rem;
  content: '';
}

@-webkit-keyframes c-scroll-hint-arrow {

  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -webkit-transform: translateX(.25rem);
    transform: translateX(.25rem);
  }
}

@keyframes c-scroll-hint-arrow {

  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -webkit-transform: translateX(.25rem);
    transform: translateX(.25rem);
  }
}

.c-scroll-indicator {
  display: none;
  position: relative;
  margin-right: auto;
  margin-left: auto;
  width: 322px;
  width: 20.125rem;
  height: 24px;
  height: 1.5rem;
}

.c-scroll-indicator.is-hidden {
  visibility: hidden;
}

.c-scroll-indicator__track {
  position: absolute;
  top: 8px;
  top: .5rem;
  left: 0;
  border-radius: .375rem;
  background-color: #cbcbcb;
  width: 100%;
  height: 11px;
  height: .6875rem;
}

.c-scroll-indicator__thumb {
  position: absolute;
  top: -6px;
  top: -.375rem;
  left: 0;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  will-change: transform;
  border-radius: 50%;
  background-color: #707070;
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
}

.c-section-header {
  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;
}

.c-section-header__label {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.c-section-header__label-sub {
  color: #eb7907;
  font-size: 27px;
  font-size: 1.6875rem;
  font-weight: 400;
  line-height: 1.8518518519;
}

.c-section-header__label-en {
  margin-top: -28px;
  margin-top: -1.75rem;
  color: #eb7907;
  font-size: 46px;
  font-size: 2.875rem;
  font-weight: 700;
  line-height: 2.1304347826;
}

.c-section-header__title {
  color: #012851;
  font-size: 48px;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.625;
}

.c-drawer {
  display: none;
}

.c-drawer__overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  z-index: 40;
  -webkit-transition: opacity .3s ease, visibility .3s ease;
  transition: opacity .3s ease, visibility .3s ease;
  cursor: pointer;
  border: none;
  background-color: rgba(0, 0, 0, .25);
  padding: 0;
  pointer-events: none;
}

.c-drawer__panel {
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  -webkit-transform: translateX(105%);
  transform: translateX(105%);
  z-index: 41;
  -webkit-transition: -webkit-transform .4s ease;
  transition: -webkit-transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #036;
  width: 85%;
  max-width: 320px;
  max-width: 20rem;
  max-height: 100dvh;
  overflow: auto;
}

.c-drawer.is-opened .c-drawer__overlay {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.c-drawer.is-opened .c-drawer__panel {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.c-drawer__close {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 16px;
  top: 1rem;
  right: 16px;
  right: 1rem;
  -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;
  z-index: 1;
  cursor: pointer;
  border: none;
  background-color: transparent;
  padding: 0;
  width: 44px;
  width: 2.75rem;
  height: 44px;
  height: 2.75rem;
}

.c-drawer__close-icon {
  display: block;
  position: relative;
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
}

.c-drawer__close-icon::before,
.c-drawer__close-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: #fff;
  width: 24px;
  width: 1.5rem;
  height: 2px;
  height: .125rem;
  content: '';
}

.c-drawer__close-icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.c-drawer__inner {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-top: 32px;
  padding-top: 2rem;
  padding-right: 25px;
  padding-right: 1.5625rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  padding-left: 25px;
  padding-left: 1.5625rem;
  width: 100%;
}

.c-drawer__logo a {
  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;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.c-drawer__logo img {
  display: block;
  width: 103px;
  width: 6.4375rem;
  height: 15px;
  height: .9375rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.c-drawer__logo-text {
  margin-top: 3px;
  margin-top: .1875rem;
  color: #fff;
  font-size: 8px;
  font-size: .5rem;
  font-weight: 500;
  line-height: 1.5;
}

.c-drawer__nav {
  margin-top: 32px;
  margin-top: 2rem;
}

.c-drawer__nav-list {
  padding: 0;
  list-style: none;
}

.c-drawer__nav-item + .c-drawer__nav-item {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.c-drawer__nav-link {
  display: block;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 2.0952380952;
}

.c-drawer__info {
  margin-top: 32px;
  margin-top: 2rem;
}

.c-drawer__tel {
  color: #fff;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.7142857143;
}

.c-drawer__tel a {
  color: inherit;
}

.c-drawer__hours {
  margin-top: 8px;
  margin-top: .5rem;
  color: #fff;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.7142857143;
}

.c-drawer__contact {
  gap: 8px;
  gap: .5rem;
  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: 32px;
  margin-top: 2rem;
  border-radius: 2.625rem;
  background-color: #f08415;
  width: 100%;
  height: 61px;
  height: 3.8125rem;
  color: #036;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 2.1818181818;
}

.c-drawer__contact img {
  display: block;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 31px;
  width: 1.9375rem;
  height: 23px;
  height: 1.4375rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.c-totop {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  right: 100px;
  right: 6.25rem;
  bottom: 80px;
  bottom: 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;
  visibility: hidden;
  opacity: 0;
  z-index: 30;
  -webkit-transition: opacity .3s ease, visibility .3s ease;
  transition: opacity .3s ease, visibility .3s ease;
  border-radius: 50%;
  background-color: #ef8316;
  width: 75px;
  width: 4.6875rem;
  height: 75px;
  height: 4.6875rem;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.1875;
  text-align: center;
  text-decoration: none;
}

.c-totop__line + .c-totop__line {
  margin-top: 2px;
  margin-top: .125rem;
}

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

.p-article__date + .p-article__date {
  margin-left: 20px;
}

.p-article__label {
  margin-left: 20px;
}

.p-article__title {
  margin-top: 31px;
  font-size: 20px;
  line-height: 1.5;
}

.p-article__eyecatch {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  text-align: center;
}

.p-article__body {
  margin-top: 16px;
  border-top: 1px solid #e7e0db;
  border-bottom: 1px solid #e7e0db;
  padding-top: 30px;
  padding-bottom: 50px;
  font-size: 15px;
  line-height: 2;
}

.p-article__body h1,
.p-article__body h2,
.p-article__body h3,
.p-article__body h4,
.p-article__body h5,
.p-article__body h6 {
  margin-top: 2em;
  margin-bottom: 1em;
  font-weight: 700;
  line-height: 1.5;
}

.p-article__body h1 {
  font-size: 32px;
  font-size: 2rem;
}

.p-article__body h2 {
  background-color: #000;
  padding: .3em .4em;
  color: #fff;
  font-size: 26px;
  font-size: 1.625rem;
}

.p-article__body h3 {
  border-left: 5px solid #000;
  padding-left: .5em;
  font-size: 24px;
  font-size: 1.5rem;
}

.p-article__body h4 {
  font-size: 20px;
  font-size: 1.25rem;
}

.p-article__body h5 {
  font-size: 18px;
  font-size: 1.125rem;
}

.p-article__body .c-beforeBar {
  position: relative;
  padding-left: 1.5em;
}

.p-article__body .c-beforeBar::before {
  position: absolute;
  top: 1em;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #000;
  content: 'ー';
}

.p-article__body ul {
  list-style: none;
}

.p-article__body ul li {
  position: relative;
  padding-left: 1em;
}

.p-article__body ul li::before {
  position: absolute;
  left: 0;
  content: '・';
}

.p-article__body table {
  border: none;
  width: 100%;
}

.p-article__body table th,
.p-article__body table td {
  vertical-align: middle;
  border: none;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 20px;
  padding: 1.25rem;
}

.p-article__body table th {
  border-right: 1px solid #000;
  width: 130px;
  width: 8.125rem;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 700;
  text-align: justify;
  -moz-text-align-last: justify;
  text-align-last: justify;
  text-justify: inter-ideograph;
}

.p-article__body * + * {
  margin-top: 25px;
}

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

.p-article__body .wp-block-spacer, .p-article__body .wp-block-spacer + * {
  margin-top: 0;
}

.p-article__body p {
  font-weight: 400;
}

.p-article__body ul,
.p-article__body ol {
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  margin-left: 10px;
  margin-left: .625rem;
}

.p-article__body ul ul,
.p-article__body ul ol,
.p-article__body ol ul,
.p-article__body ol ol {
  margin-top: 15px;
  margin-top: .9375rem;
  margin-left: 0;
}

.p-article__body ul li,
.p-article__body ol li {
  gap: 10px;
  gap: .625rem;
  display: grid;
  grid-column: span 2;
  grid-template-columns: subgrid;
}

.p-article__body ol {
  padding-left: 1.25em;
}

.p-article__body ol > li:not([class]) {
  list-style: decimal;
}

.p-article__body ol > li:not([class])::marker {
  color: #0C4A6E;
  font-weight: 700;
}

.p-article__body li:not([class]) + li {
  margin-top: 10px;
  margin-top: .625rem;
}

.p-article__body a:not([class]) {
  color: #0C4A6E;
  text-decoration: underline;
}

.p-article__body figcaption {
  margin-top: 0;
  padding-top: .5em;
  padding-bottom: .5em;
  color: #000;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.p-article__body strong,
.p-article__body b {
  font-weight: 700;
}

.p-article__body blockquote,
.p-article__body q {
  position: relative;
  background-color: #F8F8F8;
  padding: 1em 4em;
}

.p-article__body blockquote::before, .p-article__body blockquote::after,
.p-article__body q::before,
.p-article__body q::after {
  position: absolute;
  color: #b2b2b2;
  font: var(--fa-font-solid);
  font-size: 2em;
  font-weight: 900;
}

.p-article__body blockquote::before,
.p-article__body q::before {
  top: 0;
  left: .5em;
  content: '\f10d';
}

.p-article__body blockquote::after,
.p-article__body q::after {
  right: .5em;
  bottom: 0;
  content: '\f10e';
}

.p-article__body q {
  display: inline-block;
}

.p-article__body dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.p-article__body dt,
.p-article__body dd {
  border-top: 1px solid #e7e0db;
  padding: 20px 10px;
  padding: 1.25rem .625rem;
}

.p-article__body dt:last-of-type,
.p-article__body dd:last-of-type {
  border-bottom: 1px solid #e7e0db;
}

.p-article__body dt {
  width: 33%;
  font-weight: 700;
}

.p-article__body dd {
  width: 67%;
}

.p-article__body pre {
  overflow: auto;
  font-size: 14px;
  font-size: .875rem;
  letter-spacing: 0;
  white-space: pre;
}

.p-article__body .aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.p-article__body .alignleft {
  float: left;
  margin-right: 1em;
}

.p-article__body .alignright {
  float: right;
  margin-left: 1em;
}

.p-article__body .gallery {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-article__body .gallery-columns-4 {
  gap: 20px;
}

.p-article__body .gallery-columns-4 > .gallery-item {
  width: calc((100% - 60px) / 4);
}

.p-article__body .gallery-item {
  margin-top: 0;
}

.p-article__body .gallery-icon {
  text-align: center;
}

.p-article__links {
  margin-top: 30px;
  margin-top: 1.875rem;
  text-align: center;
}

.post-page-numbers {
  display: inline-block;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  border: 1px solid #0C4A6E;
  width: 2em;
  height: 2em;
  color: #0C4A6E;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 2em;
  text-align: center;
}

.p-article__links .post-page-numbers {
  text-decoration: none;
}

.post-page-numbers + .post-page-numbers {
  margin-left: 10px;
}

.post-page-numbers.current {
  background-color: #0C4A6E;
  color: #fff;
}

.post-page-numbers.dots {
  border: none;
}

/************************************************************************
* p-pagination
************************************************************************/
.p-pagination__inner {
  letter-spacing: 0;
  text-align: center;
}

.page-numbers {
  display: inline-block;
  border: 1px solid #0C4A6E;
  width: 2em;
  height: 2em;
  color: #0C4A6E;
  font-size: 14px;
  font-size: .875rem;
  letter-spacing: 0;
  line-height: 2;
}

.page-numbers + .page-numbers {
  margin-left: 10px;
  margin-left: .625rem;
}

.page-numbers.current {
  background-color: #0C4A6E;
  color: #fff;
}

.page-numbers.dots {
  border: none;
}

.p-home-about {
  width: 100%;
}

.p-home-about__inner {
  margin-right: auto;
  margin-left: auto;
  max-width: 1107px;
  max-width: 69.1875rem;
}

.p-home-about__label {
  width: 270px;
  width: 16.875rem;
}

.p-home-about__label-en {
  margin-top: -31px;
  margin-top: -1.9375rem;
}

.p-home-about__title {
  margin-left: -16px;
  margin-left: -1rem;
}

.p-home-about__body {
  margin-top: 30px;
  margin-top: 1.875rem;
  max-width: 1107px;
  max-width: 69.1875rem;
}

.p-home-about__body p {
  color: #012851;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.4642857143;
  text-align: justify;
}

.p-home-about__body p + p {
  margin-top: 41px;
  margin-top: 2.5625rem;
}

.p-home-about__gallery {
  margin-top: 109px;
  margin-top: 6.8125rem;
  width: 100%;
}

.p-home-about__gallery picture {
  display: block;
  width: 100%;
}

.p-home-about__gallery img,
.p-home-about__gallery svg {
  display: block;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-home-blog {
  width: 100%;
}

.p-home-blog__inner.l-container {
  margin-right: auto;
  margin-left: auto;
  max-width: 1435px;
  max-width: 89.6875rem;
}

.p-home-blog__header {
  position: relative;
  z-index: 2;
  margin-right: auto;
  margin-left: auto;
  max-width: 1261px;
  max-width: 78.8125rem;
}

.p-home-blog__visual-picture {
  display: block;
  position: relative;
  z-index: 1;
  margin-top: -51px;
  margin-top: -3.1875rem;
  margin-right: calc(50% - var(--vw, 100%) / 2);
  margin-left: calc(50% - var(--vw, 100%) / 2);
  width: var(--vw, 100%);
}

.p-home-blog__visual-picture img {
  display: block;
  width: 100%;
  height: 515px;
  height: 32.1875rem;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-home-blog__featured {
  gap: clamp(16px, 2.36vw, 34px);
  gap: clamp(1rem, 2.36vw, 2.125rem);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 2;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: -440px;
  margin-top: -27.5rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0;
  width: 100%;
  max-width: 100%;
  list-style: none;
}

.p-home-blog__featured-item {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0;
  -ms-flex: 1 1 0;
  flex: 1 1 0;
  min-width: 0;
  max-width: 458px;
  max-width: 28.625rem;
}

.p-home-blog__featured-item .p-home-blog__card-link {
  display: block;
  width: 100%;
}

.p-home-blog__list {
  gap: 42px 24px;
  gap: 2.625rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 39.875rem);
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 76px;
  margin-top: 4.75rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0;
  list-style: none;
}

.p-home-blog__list-item {
  width: 638px;
  width: 39.875rem;
  min-height: 225px;
  min-height: 14.0625rem;
  overflow: visible;
}

.p-home-blog__card--compact .p-home-blog__card-link {
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-top: 26px;
  padding-top: 1.625rem;
  width: 638px;
  width: 39.875rem;
  min-height: 225px;
  min-height: 14.0625rem;
  overflow: visible;
}

.p-home-blog__card--compact .p-home-blog__card-thumb {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 265px;
  width: 16.5625rem;
  height: 187px;
  height: 11.6875rem;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-home-blog__card--compact .p-home-blog__card-body {
  position: relative;
  z-index: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: 31px;
  margin-left: 1.9375rem;
  border: 1px solid #eb7907;
  border: .0625rem solid #eb7907;
  background-color: #fff;
  padding: 32px 70px 24px 254px;
  padding: 2rem 4.375rem 1.5rem 15.875rem;
  width: 607px;
  width: 37.9375rem;
  min-height: 199px;
  min-height: 12.4375rem;
}

.p-home-blog__card--compact .p-home-blog__date {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8888888889;
}

.p-home-blog__card--compact .p-home-blog__card-text {
  display: none;
}

.p-home-blog__card--compact .p-home-blog__card-title {
  margin-top: 12px;
  margin-top: .75rem;
  color: #464646;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.4117647059;
}

.p-home-blog__card--featured .p-home-blog__card-body {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #eb7907;
  border: .0625rem solid #eb7907;
  background-color: #fff;
  padding: 27px clamp(40px, 6.25vw, 90px) 30px 25px;
  padding: 1.6875rem clamp(2.5rem, 6.25vw, 5.625rem) 1.875rem 1.5625rem;
  min-height: 217px;
  min-height: 13.5625rem;
}

.p-home-blog__card--featured .p-home-blog__card-text {
  overflow-wrap: anywhere;
}

.p-home-blog__card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.p-home-blog__card-media {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.p-home-blog__card-media img {
  display: block;
  width: 100%;
  height: 370px;
  height: 23.125rem;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-home-blog__card-heading {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(0, 29, 41, .6);
  padding: 18px 27px;
  padding: 1.125rem 1.6875rem;
  min-height: 66px;
  min-height: 4.125rem;
  color: #fff;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.3636363636;
}

.p-home-blog__date {
  color: #464646;
  font-size: 23px;
  font-size: 1.4375rem;
  font-weight: 500;
  line-height: 1.652173913;
}

.p-home-blog__card-text {
  margin-top: 8px;
  margin-top: .5rem;
  color: #464646;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 1.6;
}

.p-home-blog__card-more {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 25px;
  right: 1.5625rem;
  bottom: 30px;
  bottom: 1.875rem;
  -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: #eb7907;
  width: 48px;
  width: 3rem;
  height: 47px;
  height: 2.9375rem;
  color: #fff;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1;
}

.p-home-blog__card--compact .p-home-blog__card-more {
  right: 20px;
  right: 1.25rem;
  bottom: 20px;
  bottom: 1.25rem;
  width: 45px;
  width: 2.8125rem;
  height: 44px;
  height: 2.75rem;
  font-size: 21px;
  font-size: 1.3125rem;
}

.p-home-blog__action {
  margin-top: 107px;
  margin-top: 6.6875rem;
  text-align: center;
}

.p-home-blog__btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-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;
  -webkit-transition: background-color .3s ease, border-color .3s ease, color .3s ease;
  transition: background-color .3s ease, border-color .3s ease, color .3s ease;
  border: 1px solid #eb7907;
  border: .0625rem solid #eb7907;
  border-radius: 4.375rem;
  background-color: #fff;
  padding: 10px 48px;
  padding: .625rem 3rem;
  min-width: 554px;
  min-width: 34.625rem;
  min-height: 73px;
  min-height: 4.5625rem;
  color: #eb7907;
  font-size: 31px;
  font-size: 1.9375rem;
  font-weight: 700;
  line-height: 1.7096774194;
  text-align: center;
  text-decoration: none;
}

.p-home-blog__btn:hover,
.p-home-blog__btn:focus-visible {
  outline: none;
  border-color: #eb7907;
  background-color: #eb7907;
  color: #fff;
}

.p-home-fv {
  position: relative;
  width: 100%;
}

.p-home-fv__media {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 920px;
  height: 57.5rem;
}

.p-home-fv__media img,
.p-home-fv__media svg {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-home-fv__content {
  position: relative;
  z-index: 1;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-right: .9375rem;
  padding-left: 15px;
  padding-left: .9375rem;
  max-width: 1458px;
  max-width: 91.125rem;
}

.p-home-fv__catch {
  margin-top: 210px;
  margin-top: 13.125rem;
  margin-left: 23px;
  margin-left: 1.4375rem;
  color: #fefffe;
  font-size: 86px;
  font-size: 5.375rem;
  font-weight: 700;
  line-height: 1.3139534884;
  text-shadow: 0 2px 5px rgba(27, 27, 27, .56);
  text-shadow: 0 .125rem .3125rem rgba(27, 27, 27, .56);
}

.p-home-fv__brand {
  gap: 20px;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-top: 102px;
  margin-top: 6.375rem;
  padding-bottom: 33px;
  padding-bottom: 2.0625rem;
  padding-left: 23px;
  padding-left: 1.4375rem;
  width: 899px;
  width: 56.1875rem;
}

.p-home-fv__brand::before {
  position: absolute;
  bottom: 18px;
  bottom: 1.125rem;
  left: 0;
  z-index: 0;
  background-color: #fff;
  width: 100%;
  height: 179px;
  height: 11.1875rem;
  content: '';
}

.p-home-fv__brand-logo {
  display: block;
  position: relative;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  z-index: 1;
  margin-top: -46px;
  margin-top: -2.875rem;
  width: 176px;
  width: 11rem;
  height: 203px;
  height: 12.6875rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-home-fv__brand-body {
  position: relative;
  z-index: 1;
}

.p-home-fv__brand-title {
  color: #073255;
  font-size: 67px;
  font-size: 4.1875rem;
  font-weight: 900;
  line-height: 1.2;
}

.p-home-fv__brand-names {
  margin-top: 8px;
  margin-top: .5rem;
  color: #073255;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.1785714286;
}

.p-home-fv__nav {
  margin-top: 133px;
  margin-top: 8.3125rem;
}

.p-home-fv__nav-list {
  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: space-evenly;
  -webkit-justify-content: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -webkit-box-shadow: 0 .6875rem 1.1875rem rgba(180, 175, 169, .45);
  box-shadow: 0 .6875rem 1.1875rem rgba(180, 175, 169, .45);
  border-radius: 4.875rem;
  background-color: #fff;
  padding: 21px 80px 21px;
  padding: 1.3125rem 5rem 1.3125rem;
}

.p-home-fv__nav-item a {
  gap: 8px;
  gap: .5rem;
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #036;
  font-size: 23px;
  font-size: 1.4375rem;
  font-weight: 400;
  line-height: 1.2173913043;
  text-align: center;
}

.p-home-fv__nav-item img,
.p-home-fv__nav-item svg {
  display: block;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-home-fv__nav-item:nth-child(1) img,
.p-home-fv__nav-item:nth-child(1) svg {
  width: 48px;
  width: 3rem;
  height: 48px;
  height: 3rem;
}

.p-home-fv__nav-item:nth-child(2) img,
.p-home-fv__nav-item:nth-child(2) svg {
  width: 44px;
  width: 2.75rem;
  height: 50px;
  height: 3.125rem;
}

.p-home-fv__nav-item:nth-child(3) img,
.p-home-fv__nav-item:nth-child(3) svg {
  width: 54px;
  width: 3.375rem;
  height: 48px;
  height: 3rem;
}

.p-home-fv__nav-item:nth-child(4) img,
.p-home-fv__nav-item:nth-child(4) svg {
  width: 51px;
  width: 3.1875rem;
  height: 36px;
  height: 2.25rem;
}

.p-home-message {
  position: relative;
  width: 100%;
  min-height: 1579px;
  min-height: 98.6875rem;
  overflow: hidden;
}

.p-home-message__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.p-home-message__bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-home-message__decor {
  position: absolute;
  top: 51px;
  top: 3.1875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
  width: 1277px;
  width: 79.8125rem;
  max-width: 100%;
  pointer-events: none;
}

.p-home-message__decor img {
  display: block;
  width: 100%;
  height: auto;
}

.p-home-message__inner {
  position: relative;
  z-index: 2;
  margin-right: auto;
  margin-left: auto;
  padding-top: 238px;
  padding-top: 14.875rem;
  padding-right: 15px;
  padding-right: .9375rem;
  padding-bottom: 207px;
  padding-bottom: 12.9375rem;
  padding-left: 15px;
  padding-left: .9375rem;
  max-width: 1500px;
  max-width: 93.75rem;
}

.p-home-message__content {
  gap: 47px;
  gap: 2.9375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 43px;
  margin-top: 2.6875rem;
}

.p-home-message__main {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-top: 35px;
  padding-top: 2.1875rem;
  padding-bottom: 35px;
  padding-bottom: 2.1875rem;
  padding-left: 28px;
  padding-left: 1.75rem;
}

.p-home-message__main::before {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #eb7907;
  width: 2px;
  width: .125rem;
  height: 100%;
  content: '';
}

.p-home-message__catch {
  color: #fff;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.6;
}

.p-home-message__body {
  margin-top: 55px;
  margin-top: 3.4375rem;
}

.p-home-message__body p {
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6666666667;
  text-align: justify;
}

.p-home-message__body p + p {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-home-message__body-mark {
  background-color: #eb7907;
  color: #fff;
  font-size: 33px;
  font-size: 2.0625rem;
  font-weight: 700;
  line-height: 1.4545454545;
}

.p-home-message__profile {
  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;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 3px;
  margin-top: .1875rem;
  -webkit-box-shadow: .5625rem .8125rem .3125rem 0 rgba(235, 121, 7, .43);
  box-shadow: .5625rem .8125rem .3125rem 0 rgba(235, 121, 7, .43);
  background-color: #fff;
  padding: 39px 60px 44px;
  padding: 2.4375rem 3.75rem 2.75rem;
  width: 456px;
  width: 28.5rem;
  text-align: center;
}

.p-home-message__profile-picture {
  display: block;
  width: 322px;
  width: 20.125rem;
  height: auto;
}

.p-home-message__profile-role {
  margin-top: 37px;
  margin-top: 2.3125rem;
  color: #001c28;
  font-size: 27px;
  font-size: 1.6875rem;
  font-weight: 700;
  line-height: .7407407407;
}

.p-home-message__profile-name {
  margin-top: 8px;
  margin-top: .5rem;
  color: #001c28;
  font-size: 47px;
  font-size: 2.9375rem;
  font-weight: 500;
  line-height: 1.6170212766;
}

.p-home-message__action {
  margin-top: 216px;
  margin-top: 13.5rem;
  text-align: center;
}

.p-home-message__btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-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;
  -webkit-transition: background-color .3s ease, border-color .3s ease, color .3s ease;
  transition: background-color .3s ease, border-color .3s ease, color .3s ease;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 2px solid #ea7706;
  border: .125rem solid #ea7706;
  border-radius: 4.375rem;
  background-color: #012851;
  padding: 20px 48px;
  padding: 1.25rem 3rem;
  width: 554px;
  width: 34.625rem;
  min-height: 93px;
  min-height: 5.8125rem;
  color: #eb7907;
  font-size: 31px;
  font-size: 1.9375rem;
  font-weight: 500;
  line-height: 1.7096774194;
  text-align: center;
  text-decoration: none;
}

.p-home-message__btn:hover,
.p-home-message__btn:focus-visible {
  outline: none;
  border-color: #eb7907;
  background-color: #eb7907;
  color: #fff;
}

.p-home-news {
  width: 100%;
}

.p-home-news__inner {
  margin-right: auto;
  margin-left: auto;
  max-width: 1261px;
  max-width: 78.8125rem;
}

.p-home-news__list {
  margin-top: 18px;
  margin-top: 1.125rem;
  border-top: 1px solid #002b55;
  border-top: .0625rem solid #002b55;
  padding: 0;
  list-style: none;
}

.p-home-news__item {
  border-bottom: 1px solid #002b55;
  border-bottom: .0625rem solid #002b55;
}

.p-home-news__link {
  gap: 166px;
  gap: 10.375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-top: 20px;
  padding-top: 1.25rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  color: #002b55;
  text-decoration: none;
}

.p-home-news__date {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -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;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #002b55;
  border: .0625rem solid #002b55;
  border-radius: 2.5rem;
  background-color: #fff;
  padding: 0 16px;
  padding: 0 1rem;
  width: 221px;
  width: 13.8125rem;
  height: 40px;
  height: 2.5rem;
  color: #002b55;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}

.p-home-news__title {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 450px;
  max-width: 28.125rem;
  color: #002b55;
  font-size: 25px;
  font-size: 1.5625rem;
  font-weight: 400;
  line-height: 1.36;
}

.p-home-price {
  width: 100%;
}

.p-home-price__inner {
  margin-right: auto;
  margin-left: auto;
  max-width: 1376px;
  max-width: 86rem;
}

.p-home-price__header {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-home-price__title {
  margin-left: 54px;
  margin-left: 3.375rem;
}

.p-home-price__lead {
  margin-top: 24px;
  margin-top: 1.5rem;
  color: #012851;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 1.5769230769;
  text-align: center;
}

.p-home-price__table {
  margin-top: 67px;
  margin-top: 4.1875rem;
  margin-right: auto;
  margin-left: auto;
  max-width: 1200px;
  max-width: 75rem;
}

.p-home-price__table-head {
  display: grid;
  grid-template-columns: 19.4375rem 27.6875rem 27.875rem;
  padding-bottom: 44px;
  padding-bottom: 2.75rem;
}

.p-home-price__table-head-cell--label {
  display: block;
}

.p-home-price__table-head-cell--personal,
.p-home-price__table-head-cell--corporate {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -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: 2.375rem;
  background-color: #036;
  width: 373px;
  width: 23.3125rem;
  height: 76px;
  height: 4.75rem;
  color: #fff;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.28125;
  text-align: center;
}

.p-home-price__table-head-cell--personal {
  margin-left: 36px;
  margin-left: 2.25rem;
}

.p-home-price__table-head-cell--personal::after,
.p-home-price__table-head-cell--corporate::after {
  position: absolute;
  bottom: -29px;
  bottom: -1.8125rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background-color: #036;
  width: 46px;
  width: 2.875rem;
  height: 30px;
  height: 1.875rem;
  content: '';
}

.p-home-price__table-head-cell--corporate {
  margin-left: 44px;
  margin-left: 2.75rem;
}

.p-home-price__row--tax,
.p-home-price__row--finance,
.p-home-price__row--loan {
  display: grid;
  grid-template-columns: 19.4375rem 27.625rem 27.8125rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #036;
  border: .0625rem solid #036;
  width: 100%;
}

.p-home-price__row--finance {
  margin-top: 81px;
  margin-top: 5.0625rem;
}

.p-home-price__row--loan {
  margin-top: 74px;
  margin-top: 4.625rem;
}

.p-home-price__category {
  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;
  background-color: #036;
  padding: 24px 16px;
  padding: 1.5rem 1rem;
  min-height: 189px;
  min-height: 11.8125rem;
  color: #fff;
  font-size: 45px;
  font-size: 2.8125rem;
  font-weight: 700;
  line-height: 1.2222222222;
  text-align: center;
}

.p-home-price__row--tax .p-home-price__category {
  min-height: 557px;
  min-height: 34.8125rem;
}

.p-home-price__row-body {
  display: grid;
  grid-column: 2/4;
  grid-template-columns: 1fr 1fr;
  border-left: 1px solid #036;
  border-left: .0625rem solid #036;
}

.p-home-price__row--tax .p-home-price__row-body {
  position: relative;
}

.p-home-price__row--tax .p-home-price__row-body::after {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #036;
  width: 1px;
  width: .0625rem;
  height: 100%;
  pointer-events: none;
  content: '';
}

.p-home-price__row-body--wide {
  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;
  -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;
  padding: 24px 40px;
  padding: 1.5rem 2.5rem;
  min-height: 189px;
  min-height: 11.8125rem;
}

.p-home-price__col {
  gap: 28px;
  gap: 1.75rem;
  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;
  padding-top: 46px;
  padding-top: 2.875rem;
  padding-right: 32px;
  padding-right: 2rem;
  padding-bottom: 37px;
  padding-bottom: 2.3125rem;
  padding-left: 36px;
  padding-left: 2.25rem;
  min-height: 557px;
  min-height: 34.8125rem;
}

.p-home-price__col--corporate {
  padding-right: 37px;
  padding-right: 2.3125rem;
  padding-left: 37px;
  padding-left: 2.3125rem;
}

.p-home-price__card {
  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;
  -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;
  background-color: #e4eef1;
  padding: 20px 16px;
  padding: 1.25rem 1rem;
  min-height: 218px;
  min-height: 13.625rem;
  text-align: center;
}

.p-home-price__card-title {
  color: #036;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.34375;
}

.p-home-price__card-price {
  margin-top: 17px;
  margin-top: 1.0625rem;
  color: #131414;
  font-size: 35px;
  font-size: 2.1875rem;
  font-weight: 700;
  line-height: 1.1714285714;
}

.p-home-price__card-note {
  margin-top: 10px;
  margin-top: .625rem;
  color: #131414;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 1.5769230769;
}

.p-home-price__detail-title {
  color: #036;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.28125;
  text-align: center;
}

.p-home-price__detail-text {
  margin-top: 8px;
  margin-top: .5rem;
  color: #131414;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.4642857143;
  text-align: center;
}

.p-home-price__notes {
  margin-top: 64px;
  margin-top: 4rem;
  margin-right: auto;
  margin-left: auto;
  padding-left: 45px;
  padding-left: 2.8125rem;
  max-width: 1200px;
  max-width: 75rem;
}

.p-home-price__notes p {
  color: #131414;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.4666666667;
}

.p-home-price__notes p + p {
  margin-top: 0;
}

.p-home-value {
  position: relative;
  width: 100%;
}

.p-home-value__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.p-home-value__bg img,
.p-home-value__bg svg {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-home-value__inner {
  position: relative;
  z-index: 1;
  margin-right: auto;
  margin-left: auto;
  padding-top: 115px;
  padding-top: 7.1875rem;
  padding-bottom: 115px;
  padding-bottom: 7.1875rem;
  width: 100%;
  max-width: 1920px;
  max-width: 120rem;
}

.p-home-value__header {
  gap: 100px;
  gap: 6.25rem;
  position: relative;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-left: auto;
  padding-left: 15px;
  padding-left: .9375rem;
  max-width: 1570px;
  max-width: 98.125rem;
}

.p-home-value__list {
  margin-left: auto;
  max-width: 1570px;
  max-width: 98.125rem;
}

.p-home-value__lead {
  position: relative;
  z-index: 1;
  max-width: 1132px;
  max-width: 70.75rem;
  color: #012851;
  font-size: 48px;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.625;
}

.p-home-value__lead-mark {
  background-color: #eb7907;
  color: #fff;
}

.p-home-value__list {
  gap: 9px;
  gap: .5625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 52px;
  margin-top: 3.25rem;
  padding-left: 15px;
  padding-left: .9375rem;
  width: 100%;
  list-style: none;
}

.p-home-value__list::before {
  position: absolute;
  top: 6px;
  top: .375rem;
  left: 29px;
  left: 1.8125rem;
  z-index: 0;
  background-color: #dbdbdb;
  width: calc(100% - 1.8125rem);
  height: 349px;
  height: 21.8125rem;
  content: '';
}

.p-home-value__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0;
  -ms-flex: 1 1 0;
  flex: 1 1 0;
  -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: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  z-index: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 2px solid #eb7907;
  border: .125rem solid #eb7907;
  background-color: #f6f6f6;
  padding: 66px 10px 44px;
  padding: 4.125rem .625rem 2.75rem;
  min-width: 0;
  height: 331px;
  height: 20.6875rem;
}

.p-home-value__icon {
  display: block;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-home-value__item:nth-child(1) .p-home-value__icon {
  width: 129px;
  width: 8.0625rem;
  height: 87px;
  height: 5.4375rem;
}

.p-home-value__item:nth-child(2) .p-home-value__icon {
  width: 95px;
  width: 5.9375rem;
  height: 87px;
  height: 5.4375rem;
}

.p-home-value__item:nth-child(3) .p-home-value__icon {
  width: 72px;
  width: 4.5rem;
  height: 89px;
  height: 5.5625rem;
}

.p-home-value__item:nth-child(4) .p-home-value__icon {
  width: 104px;
  width: 6.5rem;
  height: 90px;
  height: 5.625rem;
}

.p-home-value__item:nth-child(5) .p-home-value__icon {
  width: 93px;
  width: 5.8125rem;
  height: 105px;
  height: 6.5625rem;
}

.p-home-value__text {
  margin-top: auto;
  color: #012851;
  font-size: 23px;
  font-size: 1.4375rem;
  font-weight: 700;
  line-height: 1.4583333333;
  text-align: center;
}

.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;
}

.u-sp-only {
  display: none !important;
}

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

.u-hidden {
  display: none !important;
}

.u-overflowHidden {
  overflow: hidden !important;
}

@media screen and (min-width: 600px) {

  .p-article__body .gallery-columns-4 > .gallery-item {
    width: calc((100% - 20px) / 2);
  }
}

@media screen and (min-width: 768px) {

  html {
    font-size: 1.1851851852vw;
  }

  :root {
    --header-height: 80px;
  }

  .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: 1410px;
  }

  .l-container.l-container--narrow {
    max-width: 1140px;
  }

  .l-container.l-container--wide {
    max-width: 1680px;
  }

  .p-article__title {
    font-size: 24px;
  }

  .p-article__body {
    padding-top: 60px;
    padding-bottom: 100px;
    font-size: 16px;
  }

  .p-article__body table th,
  .p-article__body table td {
    padding: 20px 30px;
    padding: 1.25rem 1.875rem;
  }

  .p-article__body table th {
    width: 153px;
    width: 9.5625rem;
  }

  .p-article__body .gallery-columns-4 > .gallery-item {
    width: calc((100% - 40px) / 3);
  }

  .p-home-service__plan--tax .p-home-service__card-list-continuation {
    margin-left: -1em;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {

  .u-onlyTab {
    display: block;
  }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {

  .u-hidden--tab {
    display: none !important;
  }
}

@media screen and (min-width: 1024px) {

  .post-page-numbers + .post-page-numbers {
    margin-left: 20px;
  }

  .u-onlyPc {
    display: block;
  }

  .u-hidden--pc {
    display: none !important;
  }
}

@media (min-width: 1350px) {

  html {
    font-size: 16px;
  }
}

@media screen and (min-width: 1600px) {

  .p-home-service {
    width: 100%;
  }

  .p-home-service__inner {
    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;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    margin-right: auto;
    margin-left: auto;
    max-width: 1435px;
    max-width: 89.6875rem;
  }

  .p-home-service__header {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .p-home-service__title {
    margin-left: 54px;
    margin-left: 3.375rem;
  }

  .p-home-service__visual {
    gap: 320px;
    gap: 20rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 2;
    margin-top: 37px;
    margin-top: 2.3125rem;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    max-width: 883px;
    max-width: 55.1875rem;
  }

  .p-home-service__visual-item {
    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;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-home-service__visual-lead {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    line-height: 1;
  }

  .p-home-service__visual-word {
    color: #eb7907;
    font-size: 69px;
    font-size: 4.3125rem;
    font-weight: 700;
    line-height: 2.1304347826;
  }

  .p-home-service__visual-particle {
    margin-left: 3px;
    margin-left: .1875rem;
    color: #eb7907;
    font-size: 50px;
    font-size: 3.125rem;
    font-weight: 700;
    line-height: 2.9;
  }

  .p-home-service__visual-item img {
    display: block;
    margin-top: 10px;
    margin-top: .625rem;
    width: 217px;
    width: 13.5625rem;
    height: auto;
  }

  .p-home-service__visual--tax .p-home-service__visual-item img {
    margin-top: -50px;
    margin-top: -3.125rem;
  }

  .p-home-service__visual--tax .p-home-service__visual-item:first-child img {
    -webkit-transform: translateX(-4.75rem);
    transform: translateX(-4.75rem);
  }

  .p-home-service__visual--tax .p-home-service__visual-item:last-child img {
    -webkit-transform: translateX(4.75rem);
    transform: translateX(4.75rem);
  }

  .p-home-service__visual--cfo {
    display: none;
  }

  .p-home-service__plan--tax {
    position: relative;
    z-index: 1;
    margin-top: -40px;
    margin-top: -2.5rem;
    background-color: #e4eef1;
    padding: 20px 30px;
    padding: 1.25rem 1.875rem;
    overflow: visible;
  }

  .p-home-service__plan--tax .p-home-service__plan-title {
    padding-top: 21px;
    padding-top: 1.3125rem;
    padding-bottom: 12px;
    padding-bottom: .75rem;
    width: 100%;
    color: #46799e;
    font-size: 36px;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 2.0277777778;
    text-align: center;
  }

  .p-home-service__plan--tax .p-home-service__plan-body {
    position: relative;
    z-index: 0;
    width: 100%;
    overflow: visible;
  }

  .p-home-service__plan--tax .p-home-service__plan-cols {
    gap: 51px;
    gap: 3.1875rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: start;
    -webkit-align-items: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: auto;
    margin-left: auto;
    max-width: 1373px;
    max-width: 85.8125rem;
    overflow: visible;
  }

  .p-home-service__plan--tax .p-home-service__plan-cols::after {
    position: absolute;
    top: 6px;
    top: .375rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #fff;
    width: 3px;
    width: .1875rem;
    height: calc(100% - .375rem);
    pointer-events: none;
    content: '';
  }

  .p-home-service__plan--tax .p-home-service__plan-col {
    row-gap: 35px;
    row-gap: 2.1875rem;
    display: grid;
    grid-template-columns: repeat(2, 20.25rem);
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-column-gap: .8125rem;
    -moz-column-gap: .8125rem;
    column-gap: .8125rem;
    width: 661px;
    width: 41.3125rem;
  }

  .p-home-service__plan--tax .p-home-service__card {
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 13px 8px;
    padding: .8125rem .5rem;
    height: 100%;
  }

  .p-home-service__plan--tax .p-home-service__card-title {
    margin-bottom: 7px;
    margin-bottom: .4375rem;
    line-height: 1.5882352941;
  }

  .p-home-service__plan--tax .p-home-service__card-list {
    margin-top: 0;
  }

  .p-home-service__plan--tax .p-home-service__card--split .p-home-service__card-split-col .p-home-service__card-list {
    margin-top: 0;
  }

  .p-home-service__plan--tax .p-home-service__card--split .p-home-service__card-split > .p-home-service__card-list {
    margin-top: 34px;
    margin-top: 2.125rem;
  }

  .p-home-service__plan--tax .p-home-service__card--split {
    grid-column: 1/-1;
  }

  .p-home-service__plan-col {
    gap: 35px;
    gap: 2.1875rem;
    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;
    width: 661px;
    width: 41.3125rem;
  }

  .p-home-service__card {
    border-radius: .5rem;
    background-color: #fff;
    padding: 13px 8px;
    padding: .8125rem .5rem;
  }

  .p-home-service__card-title {
    color: #31302f;
    font-size: 17px;
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.5882352941;
  }

  .p-home-service__card-list {
    margin-top: 7px;
    margin-top: .4375rem;
    padding: 0;
    list-style: none;
  }

  .p-home-service__card-list li {
    padding-left: 1em;
    color: #313334;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.875;
    line-height: 2.0769230769;
    text-indent: -1em;
  }

  .p-home-service__card-list li + li {
    margin-top: 0;
  }

  .p-home-service__card--split .p-home-service__card-split {
    gap: 26px;
    gap: 1.625rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .p-home-service__card--split .p-home-service__card-split-col {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .p-home-service__card--split .p-home-service__card-split > .p-home-service__card-list {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-top: 34px;
    margin-top: 2.125rem;
  }

  .p-home-service__plan-figure--tax {
    display: block;
    position: absolute;
    right: 30px;
    right: 1.875rem;
    bottom: -90px;
    bottom: -5.625rem;
    z-index: 0;
    width: 473px;
    width: 29.5625rem;
  }

  .p-home-service__plan-figure--tax img {
    display: block;
    width: 100%;
    height: 275px;
    height: 17.1875rem;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .p-home-service__plan--cfo {
    position: relative;
    background-color: #fff7f1;
    padding: 20px 30px;
    padding: 1.25rem 1.875rem;
    overflow: visible;
  }

  .p-home-service__plan--cfo .p-home-service__plan-title {
    color: #d49455;
    font-size: 36px;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 2.0277777778;
    text-align: center;
  }

  .p-home-service__plan--cfo .p-home-service__plan-body {
    position: relative;
    margin-top: 41px;
    margin-top: 2.5625rem;
    margin-right: auto;
    margin-left: auto;
    max-width: 1373px;
    max-width: 85.8125rem;
    overflow: visible;
  }

  .p-home-service__plan-cols--cfo {
    gap: 51px;
    gap: 3.1875rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: start;
    -webkit-align-items: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: auto;
    margin-left: auto;
    max-width: 1373px;
    max-width: 85.8125rem;
  }

  .p-home-service__plan-cols--cfo::after {
    position: absolute;
    top: 6px;
    top: .375rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #fff;
    width: 3px;
    width: .1875rem;
    height: calc(100% - .375rem);
    pointer-events: none;
    content: '';
  }

  .p-home-service__plan-wide-cards {
    gap: 35px;
    gap: 2.1875rem;
    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;
    -webkit-align-content: start;
    -ms-flex-line-pack: start;
    align-content: start;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    width: 661px;
    width: 41.3125rem;
    overflow: visible;
  }

  .p-home-service__plan-cols--cfo .p-home-service__card-grid {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }

  .p-home-service__plan--cfo .p-home-service__card-grid .p-home-service__card {
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    height: 100%;
  }

  .p-home-service__plan--cfo .p-home-service__card-title {
    margin-bottom: 7px;
    margin-bottom: .4375rem;
    line-height: 1.5882352941;
  }

  .p-home-service__plan--cfo .p-home-service__card-list {
    margin-top: 0;
  }

  .p-home-service__plan--cfo .p-home-service__card-list li {
    padding-left: 1em;
    line-height: 2.0769230769;
    text-indent: -1em;
  }

  .p-home-service__card--wide {
    display: grid;
    grid-template-columns: 20.625rem 1fr;
    -webkit-box-align: start;
    -webkit-align-items: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-column-gap: .25rem;
    -moz-column-gap: .25rem;
    column-gap: .25rem;
    border-radius: .5rem;
    background-color: #fff;
    padding: 13px 8px;
    padding: .8125rem .5rem;
  }

  .p-home-service__card--wide:not(:has(.p-home-service__card-note)) {
    grid-template-columns: 22.5rem 1fr;
  }

  .p-home-service__card--wide .p-home-service__card-title {
    grid-column: 1/-1;
  }

  .p-home-service__card--wide .p-home-service__card-list {
    grid-column: 1;
  }

  .p-home-service__card-note {
    grid-column: 2;
    -webkit-align-self: start;
    -ms-flex-item-align: start;
    align-self: start;
    color: #313334;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.875;
  }

  .p-home-service__card-grid {
    gap: 35px 13px;
    gap: 2.1875rem .8125rem;
    display: grid;
    grid-template-columns: repeat(2, 20.25rem);
    margin: 0;
    padding: 0;
    width: 661px;
    width: 41.3125rem;
    list-style: none;
  }

  .p-home-service__card-grid .p-home-service__card {
    height: 100%;
  }

  .p-home-service__plan-figure--cfo {
    display: block;
    position: absolute;
    bottom: -54px;
    bottom: -3.375rem;
    left: 46px;
    left: 2.875rem;
    z-index: 1;
    width: 567px;
    width: 35.4375rem;
  }

  .p-home-service__plan-figure--cfo img {
    display: block;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .p-home-service__plan-figure--cfo-sp {
    display: block;
    margin-top: 0;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
  }

  .p-home-service__plan-figure--cfo-sp img {
    display: block;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .p-home-service__plan-figure--cfo-sp {
    display: none;
  }
}

@media screen and (max-width: 1599px) {

  .p-home-service__card--split .p-home-service__card-split {
    gap: 0;
    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;
  }

  .p-home-service__card--split .p-home-service__card-split-col {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .p-home-service__inner {
    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;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: calc(50% - var(--vw, 100%) / 2);
    margin-left: calc(50% - var(--vw, 100%) / 2);
    background-color: #e4eef1;
    padding-right: 0;
    padding-left: 0;
    width: var(--vw, 100%);
  }

  .p-home-service__header {
    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: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: auto;
    margin-left: auto;
    background-color: transparent;
    width: 100%;
  }

  .p-home-service__header .c-section-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .p-home-service__header .c-section-header__label {
    width: auto;
  }

  .p-home-service__visual--tax {
    display: grid;
    grid-template-columns: 18.6875rem 1.5rem 18.6875rem;
    -webkit-box-align: end;
    -webkit-align-items: end;
    -ms-flex-align: end;
    align-items: end;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 8px;
    margin-top: .5rem;
    margin-right: auto;
    margin-left: auto;
    padding-top: 20px;
    padding-top: 1.25rem;
    padding-right: 25px;
    padding-right: 1.5625rem;
    padding-left: 25px;
    padding-left: 1.5625rem;
    width: 100%;
    max-width: 622px;
    max-width: 38.875rem;
  }

  .p-home-service__visual--tax .p-home-service__visual-item {
    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;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-home-service__visual--tax .p-home-service__visual-lead {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    line-height: 1;
  }

  .p-home-service__visual--tax .p-home-service__visual-item:first-child {
    grid-column: 1;
  }

  .p-home-service__visual--tax .p-home-service__visual-item:last-child {
    grid-column: 3;
  }

  .p-home-service__visual--cfo {
    display: grid;
    grid-template-columns: 18.6875rem 1.5rem 18.6875rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 8px;
    margin-top: .5rem;
    margin-right: auto;
    margin-left: auto;
    padding-right: 0;
    padding-left: 0;
    width: 100%;
    max-width: 622px;
    max-width: 38.875rem;
  }

  .p-home-service__visual--cfo .p-home-service__visual-item:first-child {
    grid-column: 1;
  }

  .p-home-service__visual--cfo .p-home-service__visual-item:last-child {
    grid-column: 3;
  }

  .p-home-service__plan--tax {
    display: contents;
  }

  .p-home-service__plan--tax .p-home-service__plan-title {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: auto;
    margin-left: auto;
    background-color: transparent;
    padding-top: 0;
    padding-bottom: 0;
    width: 100%;
    text-align: center;
  }

  .p-home-service__visual--cfo .p-home-service__visual-item img {
    display: none;
  }

  .p-home-service__plan--tax .p-home-service__plan-body {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
    -ms-flex-order: 4;
    order: 4;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: auto;
    margin-left: auto;
    background-color: transparent;
    padding-top: 0;
    padding-bottom: 0;
    width: 100%;
    min-height: 0;
  }

  .p-home-service__plan--tax .p-home-service__plan-cols {
    row-gap: 0;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    display: grid;
    grid-auto-rows: auto;
    grid-template-columns: 27.5rem 27.5rem;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
    column-gap: 1.5rem;
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
    width: 100%;
    max-width: none;
    overflow-x: auto;
    overflow-y: visible;
  }

  .p-home-service__plan--tax .p-home-service__plan-cols::-webkit-scrollbar {
    display: none;
  }

  .p-home-service__plan--tax .p-home-service__plan-col {
    row-gap: 0;
    display: grid;
    grid-row: span 5;
    grid-template-columns: none;
    grid-template-rows: subgrid;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
    border-right: none;
    width: 440px;
    width: 27.5rem;
  }

  .p-home-service__plan--tax .p-home-service__card {
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
  }

  .p-home-service__plan--tax .p-home-service__plan-col .p-home-service__card + .p-home-service__card {
    margin-top: 19px;
    margin-top: 1.1875rem;
  }

  .p-home-service__plan--tax .p-home-service__card--split {
    grid-column: auto;
    width: 100%;
  }

  .p-home-service__card {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
  }

  .p-home-service__card-list li {
    padding-left: 1em;
    text-indent: -1em;
  }

  .p-home-service__plan-col .p-home-service__card,
  .p-home-service__card-grid .p-home-service__card,
  .p-home-service__plan-wide-cards .p-home-service__card {
    padding-right: 0;
  }

  .p-home-service__plan-figure--tax {
    display: none;
  }

  .p-home-service__plan--cfo {
    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;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
    -ms-flex-order: 5;
    order: 5;
    margin-top: 0;
    background-color: #fff7f1;
    padding-top: 49px;
    padding-top: 3.0625rem;
    padding-right: 0;
    padding-bottom: 80px;
    padding-bottom: 5rem;
    padding-left: 0;
  }

  .p-home-service__plan--cfo .p-home-service__plan-title,
  .p-home-service__visual--cfo,
  .p-home-service__plan--cfo .p-home-service__plan-body {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
  }

  .p-home-service__plan--cfo .p-home-service__plan-title {
    text-align: left;
  }

  .p-home-service__plan--cfo .p-home-service__plan-body {
    margin-top: 0;
  }

  .p-home-service__plan-cols--cfo {
    gap: 24px;
    gap: 1.5rem;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 17px;
    margin-top: 1.0625rem;
    padding-bottom: 0;
    overflow-x: auto;
    overflow-y: visible;
  }

  .p-home-service__plan-cols--cfo::-webkit-scrollbar {
    display: none;
  }

  .p-home-service__plan-wide-cards {
    gap: 19px;
    gap: 1.1875rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 440px;
    -webkit-flex: 0 0 27.5rem;
    -ms-flex: 0 0 440px;
    -ms-flex: 0 0 27.5rem;
    flex: 0 0 440px;
    flex: 0 0 27.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-content: start;
    -ms-flex-line-pack: start;
    align-content: start;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    width: 440px;
    width: 27.5rem;
  }

  .p-home-service__card--wide {
    display: block;
    width: 100%;
  }

  .p-home-service__card--wide .p-home-service__card-list {
    margin-top: 7px;
    margin-top: .4375rem;
  }

  .p-home-service__card-note {
    margin-top: 3px;
    margin-top: .1875rem;
    margin-left: 0;
  }

  .p-home-service__card-grid {
    gap: 19px;
    gap: 1.1875rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    grid-template-columns: none;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 440px;
    -webkit-flex: 0 0 27.5rem;
    -ms-flex: 0 0 440px;
    -ms-flex: 0 0 27.5rem;
    flex: 0 0 440px;
    flex: 0 0 27.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    width: 440px;
    width: 27.5rem;
  }

  .p-home-service__card-grid .p-home-service__card {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    width: 100%;
    height: auto;
    min-height: 124px;
    min-height: 7.75rem;
  }
}

@media screen and (max-width: 1599px) and (max-width: 767px) {

  .l-home-service {
    padding-top: 10px;
    padding-top: .625rem;
  }

  .p-home-service {
    overflow-x: clip;
  }

  .p-home-service__inner {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    margin-right: 0;
    margin-left: 0;
    background-color: #e4eef1;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  .p-home-service__plan--tax .p-home-service__plan-body,
  .p-home-service__plan--cfo .p-home-service__plan-body {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    min-width: 0;
    max-width: 100%;
  }

  .p-home-service__plan--cfo {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
  }

  .p-home-service__card {
    border-radius: .8125rem;
    background-color: #fff;
    padding: 13px 12px 16px;
    padding: .8125rem .75rem 1rem;
  }

  .p-home-service__card-title {
    color: #31302f;
    font-size: 17px;
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.5882352941;
  }

  .p-home-service__card-list {
    padding: 0;
    list-style: none;
  }

  .p-home-service__card--wide {
    display: block;
    border-radius: .8125rem;
    background-color: #fff;
    padding: 13px 12px 16px;
    padding: .8125rem .75rem 1rem;
  }

  .p-home-service__card--wide .p-home-service__card-list {
    margin-top: 7px;
    margin-top: .4375rem;
  }

  .p-home-service__card-note {
    color: #313334;
    font-size: 13px;
    font-size: .8125rem;
    font-weight: 400;
    line-height: 1.6923076923;
  }

  .p-home-service__header {
    padding-top: 50px;
    padding-top: 3.125rem;
    padding-right: 15px;
    padding-right: .9375rem;
    padding-bottom: 8px;
    padding-bottom: .5rem;
    padding-left: 15px;
    padding-left: .9375rem;
    width: 100%;
    max-width: none;
  }

  .p-home-service__header .c-section-header__label-sub {
    font-size: 14px;
    font-size: .875rem;
    line-height: 1.4285714286;
  }

  .p-home-service__header .c-section-header__label-en {
    margin-top: 0;
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 1.3636363636;
  }

  .p-home-service__header .c-section-header__title,
  .p-home-service__title {
    margin-top: 8px;
    margin-top: .5rem;
    margin-left: 0;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.4444444444;
  }

  .p-home-service__plan--tax .p-home-service__plan-title {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    margin-top: 13px;
    margin-top: .8125rem;
    margin-right: 0;
    margin-left: 0;
    padding-right: 15px;
    padding-right: .9375rem;
    padding-left: 15px;
    padding-left: .9375rem;
    width: 100%;
    max-width: none;
    color: #46799e;
    font-size: 34px;
    font-size: 2.125rem;
    font-weight: 700;
    line-height: 1;
    text-align: left;
  }

  .p-home-service__visual--tax {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 1.5rem minmax(0, 1fr);
    -webkit-box-align: start;
    -webkit-align-items: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 13px;
    margin-top: .8125rem;
    margin-right: 0;
    margin-left: 0;
    padding-top: 0;
    padding-right: 15px;
    padding-right: .9375rem;
    padding-left: 15px;
    padding-left: .9375rem;
    width: 100%;
    max-width: 100%;
  }

  .p-home-service__visual--tax .p-home-service__visual-item {
    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;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .p-home-service__visual--tax .p-home-service__visual-item:first-child {
    grid-column: 1;
  }

  .p-home-service__visual--tax .p-home-service__visual-item:last-child {
    grid-column: 3;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .p-home-service__visual--tax .p-home-service__visual-lead {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    line-height: 1;
  }

  .p-home-service__visual--tax .p-home-service__visual-item img {
    display: none;
  }

  .p-home-service__visual-word {
    color: #eb7907;
    font-size: 34px;
    font-size: 2.125rem;
    font-weight: 700;
    line-height: 2.1470588235;
  }

  .p-home-service__visual-particle {
    margin-left: 4px;
    margin-left: .25rem;
    color: #eb7907;
    font-size: 25px;
    font-size: 1.5625rem;
    font-weight: 700;
    line-height: 2.92;
  }

  .p-home-service__visual--cfo {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 1.5rem minmax(0, 1fr);
    -webkit-box-align: start;
    -webkit-align-items: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 13px;
    margin-top: .8125rem;
    margin-right: 0;
    margin-left: 0;
    padding-top: 0;
    padding-right: 15px;
    padding-right: .9375rem;
    padding-left: 15px;
    padding-left: .9375rem;
    width: 100%;
    max-width: 100%;
  }

  .p-home-service__visual--cfo .p-home-service__visual-item {
    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;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .p-home-service__visual--cfo .p-home-service__visual-item:first-child {
    grid-column: 1;
  }

  .p-home-service__visual--cfo .p-home-service__visual-item:last-child {
    grid-column: 3;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .p-home-service__visual--cfo .p-home-service__visual-lead {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    line-height: 1;
  }

  .p-home-service__visual--cfo .p-home-service__visual-item img {
    display: none;
  }

  .p-home-service__visual--cfo .p-home-service__visual-word {
    color: #eb7907;
    font-weight: 700;
  }

  .p-home-service__visual--cfo .p-home-service__visual-particle {
    color: #eb7907;
    font-weight: 700;
  }

  .p-home-service__plan--tax .p-home-service__plan-body {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
    -ms-flex-order: 4;
    order: 4;
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 20px;
    padding-bottom: 1.25rem;
    padding-left: 15px;
    padding-left: .9375rem;
    width: 100%;
    max-width: none;
  }

  .p-home-service__plan--tax .p-home-service__plan-cols {
    row-gap: 0;
    overscroll-behavior-x: contain;
    scroll-padding-left: .9375rem;
    scroll-padding-right: .9375rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    display: grid;
    position: relative;
    grid-auto-rows: auto;
    grid-template-columns: 18.6875rem 18.6875rem;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
    column-gap: 1.5rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: 0;
    padding-right: 15px;
    padding-right: .9375rem;
    padding-bottom: 18px;
    padding-bottom: 1.125rem;
    padding-left: 0;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: visible;
  }

  .p-home-service__plan--tax .p-home-service__plan-cols::-webkit-scrollbar {
    display: none;
  }

  .p-home-service__scroll-area {
    position: relative;
  }

  .p-home-service__scroll-area .c-scroll-hint {
    top: 0;
    right: auto;
    left: 50%;
    -webkit-transform: translate(-50%, calc(-100% - .5rem));
    transform: translate(-50%, calc(-100% - .5rem));
  }

  .p-home-service__plan--tax .p-home-service__plan-body .c-scroll-indicator {
    margin-top: 12px;
    margin-top: .75rem;
  }

  .p-home-service__plan--tax .p-home-service__plan-col {
    display: grid;
    grid-row: span 5;
    grid-template-rows: subgrid;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 299px;
    width: 18.6875rem;
  }

  .p-home-service__plan--tax .p-home-service__plan-col .p-home-service__card {
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
  }

  .p-home-service__plan--tax .p-home-service__plan-col .p-home-service__card + .p-home-service__card {
    margin-top: 26px;
    margin-top: 1.625rem;
  }

  .p-home-service__plan--tax .p-home-service__card--split {
    width: 100%;
  }

  .p-home-service__card-list li {
    margin-top: 0;
    color: #313334;
    font-size: 12px;
    font-size: .75rem;
    font-weight: 500;
    line-height: 2.25;
  }

  .p-home-service__plan--cfo {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    padding-top: 50px;
    padding-top: 3.125rem;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .p-home-service__plan--cfo .p-home-service__plan-title {
    margin-top: 13px;
    margin-top: .8125rem;
    margin-right: 0;
    margin-left: 0;
    padding-right: 15px;
    padding-right: .9375rem;
    padding-left: 15px;
    padding-left: .9375rem;
    width: 100%;
    max-width: none;
    color: #d49455;
    font-size: 34px;
    font-size: 2.125rem;
    font-weight: 700;
    line-height: 1;
    text-align: left;
  }

  .p-home-service__plan--cfo .p-home-service__plan-body {
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 20px;
    padding-bottom: 1.25rem;
    padding-left: 15px;
    padding-left: .9375rem;
    width: 100%;
    max-width: none;
  }

  .p-home-service__plan-cols--cfo {
    gap: 24px;
    gap: 1.5rem;
    overscroll-behavior-x: contain;
    scroll-padding-left: .9375rem;
    scroll-padding-right: .9375rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 0;
    padding-top: 0;
    padding-right: 15px;
    padding-right: .9375rem;
    padding-bottom: 18px;
    padding-bottom: 1.125rem;
    padding-left: 0;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: visible;
  }

  .p-home-service__plan-cols--cfo::-webkit-scrollbar {
    display: none;
  }

  .p-home-service__plan--cfo .p-home-service__plan-body .c-scroll-indicator {
    margin-top: 12px;
    margin-top: .75rem;
  }

  .p-home-service__plan-wide-cards {
    gap: 26px;
    gap: 1.625rem;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 299px;
    -webkit-flex: 0 0 18.6875rem;
    -ms-flex: 0 0 299px;
    -ms-flex: 0 0 18.6875rem;
    flex: 0 0 299px;
    flex: 0 0 18.6875rem;
    width: 299px;
    width: 18.6875rem;
  }

  .p-home-service__card-grid {
    gap: 26px;
    gap: 1.625rem;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 299px;
    -webkit-flex: 0 0 18.6875rem;
    -ms-flex: 0 0 299px;
    -ms-flex: 0 0 18.6875rem;
    flex: 0 0 299px;
    flex: 0 0 18.6875rem;
    width: 299px;
    width: 18.6875rem;
  }

  .p-home-service__plan-figure--cfo {
    display: block;
    position: static;
    z-index: auto;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
    width: 303px;
    width: 18.9375rem;
  }

  .p-home-service__plan-figure--cfo img {
    aspect-ratio: 1/1;
    display: block;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .p-home-service__plan-figure--cfo-sp {
    display: block;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
    width: 303px;
    width: 18.9375rem;
  }

  .p-home-service__plan-figure--cfo-sp img {
    aspect-ratio: 1/1;
    display: block;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .p-home-service__card-note {
    font-size: 12px;
    font-size: .75rem;
    line-height: 1.8333333333;
  }
}

@media screen and (max-width: 1599px) and (min-width: 768px) {

  .p-home-service__inner {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    margin-right: auto;
    margin-left: auto;
    background-color: transparent;
    width: 100%;
    max-width: 1435px;
    max-width: 89.6875rem;
  }

  .p-home-service__header {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-ordinal-group: unset;
    -webkit-order: unset;
    -ms-flex-order: unset;
    order: unset;
    background-color: transparent;
    width: 100%;
    max-width: 1435px;
    max-width: 89.6875rem;
  }

  .p-home-service__header .c-section-header__label-sub {
    font-size: 27px;
    font-size: 1.6875rem;
    line-height: 1.8518518519;
  }

  .p-home-service__header .c-section-header__label-en {
    margin-top: -28px;
    margin-top: -1.75rem;
    font-size: 46px;
    font-size: 2.875rem;
    line-height: 2.1304347826;
  }

  .p-home-service__header .c-section-header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-home-service__header .c-section-header__title,
  .p-home-service__title {
    margin-top: 0;
    margin-left: 54px;
    margin-left: 3.375rem;
    font-size: 48px;
    font-size: 3rem;
    line-height: 1.625;
  }

  .p-home-service__visual--cfo {
    display: none;
  }

  .p-home-service__visual--tax {
    gap: 320px;
    gap: 20rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    grid-template-columns: none;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-ordinal-group: unset;
    -webkit-order: unset;
    -ms-flex-order: unset;
    order: unset;
    z-index: 2;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 37px;
    margin-top: 2.3125rem;
    margin-right: auto;
    margin-left: auto;
    padding-top: 0;
    padding-right: 0;
    padding-left: 0;
    width: 100%;
    max-width: 883px;
    max-width: 55.1875rem;
  }

  .p-home-service__visual--tax .p-home-service__visual-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    grid-column: auto;
    -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;
  }

  .p-home-service__visual--tax .p-home-service__visual-item:first-child,
  .p-home-service__visual--tax .p-home-service__visual-item:last-child {
    grid-column: auto;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-home-service__visual--tax .p-home-service__visual-lead {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    line-height: 1;
  }

  .p-home-service__visual--tax .p-home-service__visual-word {
    color: #eb7907;
    font-size: 69px;
    font-size: 4.3125rem;
    font-weight: 700;
    line-height: 2.1304347826;
  }

  .p-home-service__visual--tax .p-home-service__visual-particle {
    margin-left: 3px;
    margin-left: .1875rem;
    color: #eb7907;
    font-size: 50px;
    font-size: 3.125rem;
    font-weight: 700;
    line-height: 2.9;
  }

  .p-home-service__visual--tax .p-home-service__visual-item img {
    display: block;
    position: relative;
    z-index: 3;
    margin-top: -50px;
    margin-top: -3.125rem;
    width: 217px;
    width: 13.5625rem;
    height: auto;
  }

  .p-home-service__visual--tax .p-home-service__visual-item:first-child img {
    -webkit-transform: translateX(-4.75rem);
    transform: translateX(-4.75rem);
  }

  .p-home-service__visual--tax .p-home-service__visual-item:last-child img {
    -webkit-transform: translateX(4.75rem);
    transform: translateX(4.75rem);
  }

  .p-home-service__plan--cfo .p-home-service__plan-title,
  .p-home-service__plan--cfo .p-home-service__plan-body {
    max-width: 1435px;
    max-width: 89.6875rem;
  }

  .p-home-service__plan--tax {
    display: block;
    position: relative;
    -webkit-box-ordinal-group: unset;
    -webkit-order: unset;
    -ms-flex-order: unset;
    order: unset;
    z-index: 1;
    margin-top: -40px;
    margin-top: -2.5rem;
    width: 100%;
    overflow: visible;
  }

  .p-home-service__plan--tax .p-home-service__plan-title {
    position: relative;
    -webkit-box-ordinal-group: unset;
    -webkit-order: unset;
    -ms-flex-order: unset;
    order: unset;
    z-index: 1;
    margin-top: 0;
    margin-right: auto;
    margin-left: auto;
    background-color: #e4eef1;
    padding-top: 21px;
    padding-top: 1.3125rem;
    padding-right: 30px;
    padding-right: 1.875rem;
    padding-bottom: 12px;
    padding-bottom: .75rem;
    padding-left: 30px;
    padding-left: 1.875rem;
    width: 100%;
    color: #46799e;
    font-size: 36px;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 2.0277777778;
    text-align: center;
  }

  .p-home-service__plan--tax .p-home-service__plan-body {
    -webkit-box-ordinal-group: unset;
    -webkit-order: unset;
    -ms-flex-order: unset;
    order: unset;
    background-color: #e4eef1;
    padding-top: 0;
    padding-right: 30px;
    padding-right: 1.875rem;
    padding-bottom: 26px;
    padding-bottom: 1.625rem;
    padding-left: 30px;
    padding-left: 1.875rem;
  }

  .p-home-service__plan--tax .p-home-service__plan-cols,
  .p-home-service__plan-cols--cfo {
    overflow-x: visible;
  }

  .p-home-service__plan--cfo {
    -webkit-box-ordinal-group: unset;
    -webkit-order: unset;
    -ms-flex-order: unset;
    order: unset;
    padding-top: 21px;
    padding-top: 1.3125rem;
    padding-right: 0;
    padding-bottom: 30px;
    padding-bottom: 1.875rem;
    padding-left: 0;
  }

  .p-home-service__plan--cfo .p-home-service__plan-title {
    margin-top: 0;
    padding-right: 30px;
    padding-right: 1.875rem;
    padding-left: 30px;
    padding-left: 1.875rem;
    color: #d49455;
    font-size: 36px;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 2.0277777778;
    text-align: center;
  }

  .p-home-service__plan--cfo .p-home-service__plan-body {
    margin-top: 0;
    padding-right: 30px;
    padding-right: 1.875rem;
    padding-left: 30px;
    padding-left: 1.875rem;
  }

  .p-home-service__card {
    border-radius: .5rem;
    background-color: #fff;
    padding: 13px 12px 16px;
    padding: .8125rem .75rem 1rem;
  }

  .p-home-service__card-title {
    color: #31302f;
    font-size: 20px;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.5882352941;
  }

  .p-home-service__card-list {
    padding: 0;
    list-style: none;
  }

  .p-home-service__card-list li {
    color: #313334;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.875;
  }

  .p-home-service__card-list li + li {
    margin-top: 0;
  }

  .p-home-service__card--wide {
    border-radius: .5rem;
    background-color: #fff;
    padding: 13px 12px 16px;
    padding: .8125rem .75rem 1rem;
  }

  .p-home-service__card--wide .p-home-service__card-list {
    margin-top: 7px;
    margin-top: .4375rem;
  }

  .p-home-service__card-note {
    color: #313334;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.875;
  }
}

@media screen and (max-width: 767px) {

  html {
    font-size: 3.6363636364vw;
  }

  body {
    overflow-x: clip;
  }

  .l-home-about {
    margin-top: 70px;
    margin-top: 4.375rem;
  }

  .l-home-price {
    margin-top: 50px;
    margin-top: 3.125rem;
  }

  .l-home-message {
    margin-top: 50px;
    margin-top: 3.125rem;
  }

  .l-home-news {
    margin-top: 50px;
    margin-top: 3.125rem;
  }

  .l-home-blog {
    margin-top: 50px;
    margin-top: 3.125rem;
  }

  .c-footer {
    max-width: none;
  }

  .c-footer__inner {
    padding-top: 50px;
    padding-top: 3.125rem;
    padding-right: 15px;
    padding-right: .9375rem;
    padding-left: 15px;
    padding-left: .9375rem;
    max-width: 680px;
    max-width: 42.5rem;
  }

  .c-footer__nav {
    margin-left: 0;
  }

  .c-footer__nav ul {
    gap: 8px;
    gap: .5rem;
  }

  .c-footer__nav li::before {
    font-size: 11px;
    font-size: .6875rem;
  }

  .c-footer__nav li a {
    margin-left: 4px;
    margin-left: .25rem;
    font-size: 11px;
    font-size: .6875rem;
    line-height: 1.8181818182;
  }

  .c-footer__panel {
    gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    margin-top: 28px;
    margin-top: 1.75rem;
    padding: 30px 17px;
    padding: 1.875rem 1.0625rem;
    max-width: none;
    min-height: 531px;
    min-height: 33.1875rem;
  }

  .c-footer__panel-inner {
    margin-right: auto;
    margin-left: auto;
    max-width: 650px;
    max-width: 40.625rem;
  }

  .c-footer__brand {
    gap: 10px;
    gap: .625rem;
  }

  .c-footer__brand img,
  .c-footer__brand svg {
    width: 61px;
    width: 3.8125rem;
    height: 70px;
    height: 4.375rem;
  }

  .c-footer__brand-title {
    font-size: 27px;
    font-size: 1.6875rem;
    line-height: 1.1851851852;
  }

  .c-footer__brand-names {
    margin-top: 2px;
    margin-top: .125rem;
    font-size: 11px;
    font-size: .6875rem;
  }

  .c-footer__contact-list {
    margin-top: 13px;
    margin-top: .8125rem;
    padding-left: 14px;
    padding-left: .875rem;
  }

  .c-footer__contact-item {
    gap: 24px;
    gap: 1.5rem;
  }

  .c-footer__contact-item + .c-footer__contact-item {
    margin-top: 10px;
    margin-top: .625rem;
  }

  .c-footer__contact-item .c-footer__contact-icon {
    width: 29px;
    width: 1.8125rem;
    height: 29px;
    height: 1.8125rem;
  }

  .c-footer__contact-item:nth-child(1) .c-footer__contact-icon img {
    width: 16px;
    width: 1rem;
    height: 22px;
    height: 1.375rem;
  }

  .c-footer__contact-item:nth-child(2) .c-footer__contact-icon img {
    width: 20px;
    width: 1.25rem;
    height: 20px;
    height: 1.25rem;
  }

  .c-footer__contact-item:nth-child(3) .c-footer__contact-icon img {
    width: 18px;
    width: 1.125rem;
    height: 21px;
    height: 1.3125rem;
  }

  .c-footer__address {
    font-size: 11px;
    font-size: .6875rem;
  }

  .c-footer__tel {
    font-size: 12px;
    font-size: .75rem;
  }

  .c-footer__hours {
    font-size: 12px;
    font-size: .75rem;
  }

  .c-footer__address {
    max-width: none;
  }

  .c-footer__hours {
    max-width: none;
    line-height: 2.2666666667;
  }

  .c-footer__map {
    margin-top: 15px;
    margin-top: .9375rem;
  }

  .c-footer__map iframe {
    width: 100%;
    height: 262px;
    height: 16.375rem;
  }

  .c-footer__bottom {
    margin-top: 50px;
    margin-top: 3.125rem;
    min-height: 30px;
    min-height: 1.875rem;
  }

  .c-footer__copy {
    font-size: 11px;
    font-size: .6875rem;
    font-weight: 400;
    line-height: 2.7272727273;
  }

  .c-header {
    height: 45px;
    height: 2.8125rem;
  }

  .c-header .l-container {
    padding-right: 0;
    padding-left: 22px;
    padding-left: 1.375rem;
    max-width: none;
  }

  .c-header__inner {
    gap: 0;
    padding-right: 0;
    height: 100%;
  }

  .c-header__logo img,
  .c-header__logo svg {
    width: 103px;
    width: 6.4375rem;
    height: 15px;
    height: .9375rem;
  }

  .c-header__logo-text {
    margin-top: 3px;
    margin-top: .1875rem;
    font-size: 8px;
    font-size: .5rem;
    font-weight: 500;
    line-height: 1.5;
  }

  .c-header__nav {
    display: none;
    margin-left: 0;
  }

  .c-header__info {
    display: none;
    margin-left: 0;
  }

  .c-header__contact {
    gap: 0;
    -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;
    margin-left: auto;
    border-radius: 0;
    background-color: #f08415;
    width: 45px;
    width: 2.8125rem;
    height: 100%;
    color: #036;
  }

  .c-header__contact img {
    width: 21px;
    width: 1.3125rem;
    height: 15px;
    height: .9375rem;
  }

  .c-header__contact span {
    font-size: 0;
    line-height: 1;
  }

  .c-header__contact span::after {
    display: block;
    color: #036;
    font-size: 8px;
    font-size: .5rem;
    font-weight: 700;
    line-height: 1.5;
    white-space: nowrap;
    content: 'MAIL';
  }

  .c-header__drawer {
    display: block;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    z-index: 42;
    height: 100%;
  }

  .c-header__drawer-icon {
    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;
    cursor: pointer;
    border: none;
    background-color: #1d1c1c;
    padding: 0;
    width: 45px;
    width: 2.8125rem;
    height: 100%;
  }

  .c-header__drawer-bars {
    gap: 4px;
    gap: .25rem;
    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;
  }

  .c-header__drawer-bar {
    display: block;
    -webkit-transition: opacity .3s ease, -webkit-transform .3s ease;
    transition: opacity .3s ease, -webkit-transform .3s ease;
    transition: transform .3s ease, opacity .3s ease;
    transition: transform .3s ease, opacity .3s ease, -webkit-transform .3s ease;
    border-radius: .125rem;
    background-color: #fff;
    width: 18px;
    width: 1.125rem;
    height: 4px;
    height: .25rem;
  }

  .c-header__drawer-icon.is-opened .c-header__drawer-bar:nth-child(1) {
    -webkit-transform: translateY(.9375rem) rotate(45deg);
    transform: translateY(.9375rem) rotate(45deg);
  }

  .c-header__drawer-icon.is-opened .c-header__drawer-bar:nth-child(2) {
    opacity: 0;
  }

  .c-header__drawer-icon.is-opened .c-header__drawer-bar:nth-child(3) {
    -webkit-transform: translateY(-.9375rem) rotate(-45deg);
    transform: translateY(-.9375rem) rotate(-45deg);
  }

  .c-section-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .c-section-header__label {
    width: auto;
  }

  .c-section-header__label-sub {
    font-size: 14px;
    font-size: .875rem;
    line-height: 1.4285714286;
  }

  .c-section-header__label-en {
    margin-top: 0;
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 1.3636363636;
  }

  .c-section-header__title {
    margin-top: 8px;
    margin-top: .5rem;
    margin-left: 0;
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 1.2;
  }

  .c-drawer {
    display: block;
  }

  .c-totop {
    right: auto;
    right: 25px;
    right: 1.5625rem;
    bottom: 35px;
    bottom: 2.1875rem;
    width: 44px;
    width: 2.75rem;
    height: 44px;
    height: 2.75rem;
    font-size: 9px;
    font-size: .5625rem;
  }

  .c-totop__line + .c-totop__line {
    margin-top: 1px;
    margin-top: .0625rem;
  }

  .p-home-about__inner {
    padding-right: 15px;
    padding-right: .9375rem;
    padding-left: 15px;
    padding-left: .9375rem;
    max-width: 680px;
    max-width: 42.5rem;
  }

  .p-home-about__header {
    max-width: none;
  }

  .p-home-about__body {
    margin-top: 12px;
    margin-top: .75rem;
  }

  .p-home-about__body p {
    font-size: 14px;
    font-size: .875rem;
    line-height: 1.2857142857;
  }

  .p-home-about__body p + p {
    margin-top: 22px;
    margin-top: 1.375rem;
  }

  .p-home-about__gallery {
    margin-top: 71px;
    margin-top: 4.4375rem;
  }

  .p-home-blog__inner.l-container {
    padding-right: 15px;
    padding-right: .9375rem;
    padding-left: 15px;
    padding-left: .9375rem;
    max-width: none;
  }

  .p-home-blog__header {
    position: relative;
    z-index: 2;
    margin-bottom: 0;
  }

  .p-home-blog__label {
    position: relative;
    z-index: 2;
    width: auto;
  }

  .p-home-blog__visual-picture {
    z-index: 1;
    margin-top: -30px;
    margin-top: -1.875rem;
    margin-right: calc(50% - var(--vw, 100%) / 2);
    margin-left: calc(50% - var(--vw, 100%) / 2);
    width: var(--vw, 100%);
  }

  .p-home-blog__visual-picture img {
    height: 1571px;
    height: 98.1875rem;
  }

  .p-home-blog__featured {
    gap: 25px;
    gap: 1.5625rem;
    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;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 2;
    margin-top: -1507px;
    margin-top: -94.1875rem;
    margin-right: auto;
    margin-left: auto;
    max-width: none;
  }

  .p-home-blog__featured-item {
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    width: 100%;
    max-width: 368px;
    max-width: 23rem;
  }

  .p-home-blog__card-media img {
    height: 298px;
    height: 18.625rem;
  }

  .p-home-blog__card--featured .p-home-blog__card-body {
    border: 1px solid #eb7907;
    border: .0625rem solid #eb7907;
    padding: 21px 65px 24px 20px;
    padding: 1.3125rem 4.0625rem 1.5rem 1.25rem;
    min-height: 174px;
    min-height: 10.875rem;
  }

  .p-home-blog__card-heading {
    padding: 12px 22px;
    padding: .75rem 1.375rem;
    min-height: 50px;
    min-height: 3.125rem;
    font-size: 17px;
    font-size: 1.0625rem;
    line-height: 1.3529411765;
  }

  .p-home-blog__date {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }

  .p-home-blog__card-text {
    margin-top: 8px;
    margin-top: .5rem;
    font-size: 12px;
    font-size: .75rem;
    line-height: 1.5833333333;
  }

  .p-home-blog__card-more {
    right: 27px;
    right: 1.6875rem;
    bottom: 22px;
    bottom: 1.375rem;
    width: 38px;
    width: 2.375rem;
    height: 38px;
    height: 2.375rem;
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-home-blog__list {
    gap: 32px 14px;
    gap: 2rem .875rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 80px;
    margin-top: 5rem;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    max-width: 100%;
  }

  .p-home-blog__list-item {
    width: 100%;
    min-width: 0;
    min-height: 0;
  }

  .p-home-blog__card--compact .p-home-blog__card-link {
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #eb7907;
    border: .0625rem solid #eb7907;
    padding-top: 0;
    width: 100%;
    min-height: 229px;
    min-height: 14.3125rem;
    overflow: hidden;
  }

  .p-home-blog__card--compact .p-home-blog__card-thumb {
    display: block;
    position: static;
    width: 100%;
    height: 144px;
    height: 9rem;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .p-home-blog__card--compact .p-home-blog__card-body {
    position: static;
    margin-top: 0;
    margin-left: 0;
    border: none;
    background-color: #fff;
    padding: 10px 28px 12px 10px;
    padding: .625rem 1.75rem .75rem .625rem;
    width: 100%;
    min-height: 85px;
    min-height: 5.3125rem;
  }

  .p-home-blog__card--compact .p-home-blog__card-title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 113px;
    top: 7.0625rem;
    left: 0;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 2;
    margin-top: 0;
    background-color: rgba(0, 29, 41, .7);
    padding: 5px 11px;
    padding: .3125rem .6875rem;
    width: 100%;
    min-height: 31px;
    min-height: 1.9375rem;
    color: #fff;
    font-size: 11px;
    font-size: .6875rem;
    font-weight: 700;
    line-height: 1.3636363636;
  }

  .p-home-blog__card--compact .p-home-blog__date {
    font-size: 12px;
    font-size: .75rem;
    line-height: 1.0833333333;
  }

  .p-home-blog__card--compact .p-home-blog__card-text {
    display: block;
    margin-top: 6px;
    margin-top: .375rem;
    color: #464646;
    font-size: 12px;
    font-size: .75rem;
    font-weight: 500;
    line-height: 1.5833333333;
    overflow-wrap: anywhere;
  }

  .p-home-blog__card--compact .p-home-blog__card-more {
    right: 5px;
    right: .3125rem;
    bottom: 12px;
    bottom: .75rem;
    width: 19px;
    width: 1.1875rem;
    height: 19px;
    height: 1.1875rem;
    font-size: 9px;
    font-size: .5625rem;
  }

  .p-home-blog__action {
    margin-top: 53px;
    margin-top: 3.3125rem;
  }

  .p-home-blog__btn {
    padding: 7px 24px;
    padding: .4375rem 1.5rem;
    min-width: 287px;
    min-width: 17.9375rem;
    min-height: 50px;
    min-height: 3.125rem;
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.8947368421;
  }

  .p-home-fv__media {
    height: 513px;
    height: 32.0625rem;
  }

  .p-home-fv__content {
    padding-right: 0;
    padding-left: 0;
    max-width: none;
  }

  .p-home-fv__catch {
    margin-top: 245px;
    margin-top: 15.3125rem;
    margin-left: 27px;
    margin-left: 1.6875rem;
    max-width: 360px;
    max-width: 22.5rem;
    font-size: 34px;
    font-size: 2.125rem;
    font-weight: 700;
    line-height: 1.2777777778;
    text-shadow: 0 2px 5px rgba(27, 27, 27, .56);
    text-shadow: 0 .125rem .3125rem rgba(27, 27, 27, .56);
  }

  .p-home-fv__brand {
    gap: 8px;
    gap: .5rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-top: 15px;
    margin-top: .9375rem;
    margin-right: 0;
    margin-left: 0;
    padding-top: 21px;
    padding-top: 1.3125rem;
    padding-right: 29px;
    padding-right: 1.8125rem;
    padding-bottom: 21px;
    padding-bottom: 1.3125rem;
    padding-left: 27px;
    padding-left: 1.6875rem;
    width: 100%;
    max-width: none;
  }

  .p-home-fv__brand::before {
    right: 0;
    bottom: 10px;
    bottom: .625rem;
    left: 0;
    -webkit-transform: none;
    transform: none;
    background-color: rgba(255, 255, 255, .75);
    width: 85%;
    height: 79px;
    height: 4.9375rem;
  }

  .p-home-fv__brand-logo {
    margin-top: -21px;
    margin-top: -1.3125rem;
    width: 78px;
    width: 4.875rem;
    height: 90px;
    height: 5.625rem;
  }

  .p-home-fv__brand-title {
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1.2068965517;
  }

  .p-home-fv__brand-names {
    margin-top: 1px;
    margin-top: .0625rem;
    font-size: 11px;
    font-size: .6875rem;
    font-weight: 700;
    line-height: 1.1818181818;
  }

  .p-home-fv__nav {
    margin-top: 28px;
    margin-top: 1.75rem;
    margin-right: auto;
    margin-left: auto;
    max-width: 390px;
    max-width: 24.375rem;
  }

  .p-home-fv__nav-list {
    -webkit-box-pack: space-evenly;
    -webkit-justify-content: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    -webkit-box-shadow: 0 .25rem .75rem rgba(180, 175, 169, .45);
    box-shadow: 0 .25rem .75rem rgba(180, 175, 169, .45);
    border-radius: 3.125rem;
    padding: 9px 20px 10px;
    padding: .5625rem 1.25rem .625rem;
  }

  .p-home-fv__nav-item a {
    gap: 4px;
    gap: .25rem;
    font-size: 10px;
    font-size: .625rem;
    font-weight: 400;
    line-height: 1.2;
  }

  .p-home-fv__nav-item:nth-child(1) img,
  .p-home-fv__nav-item:nth-child(1) svg {
    width: 23px;
    width: 1.4375rem;
    height: 23px;
    height: 1.4375rem;
  }

  .p-home-fv__nav-item:nth-child(2) img,
  .p-home-fv__nav-item:nth-child(2) svg {
    width: 22px;
    width: 1.375rem;
    height: 25px;
    height: 1.5625rem;
  }

  .p-home-fv__nav-item:nth-child(3) img,
  .p-home-fv__nav-item:nth-child(3) svg {
    width: 26px;
    width: 1.625rem;
    height: 23px;
    height: 1.4375rem;
  }

  .p-home-fv__nav-item:nth-child(4) img,
  .p-home-fv__nav-item:nth-child(4) svg {
    width: 25px;
    width: 1.5625rem;
    height: 18px;
    height: 1.125rem;
  }

  .p-home-message {
    min-height: 920px;
    min-height: 57.5rem;
  }

  .p-home-message__inner {
    padding-top: 50px;
    padding-top: 3.125rem;
    padding-right: 15px;
    padding-right: .9375rem;
    padding-bottom: 50px;
    padding-bottom: 3.125rem;
    padding-left: 15px;
    padding-left: .9375rem;
    max-width: 680px;
    max-width: 42.5rem;
  }

  .p-home-message__decor {
    top: 216px;
    top: 13.5rem;
    width: 377px;
    width: 23.5625rem;
  }

  .p-home-message__content {
    gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    margin-top: 12px;
    margin-top: .75rem;
  }

  .p-home-message__main {
    padding-left: 16px;
    padding-left: 1rem;
    max-width: none;
  }

  .p-home-message__main::before {
    width: 1px;
    width: .0625rem;
  }

  .p-home-message__catch {
    max-width: 352px;
    max-width: 22rem;
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 1.3636363636;
  }

  .p-home-message__body {
    margin-top: 30px;
    margin-top: 1.875rem;
  }

  .p-home-message__body p {
    font-size: 12px;
    font-size: .75rem;
    line-height: 1.7692307692;
  }

  .p-home-message__body p + p {
    margin-top: 16px;
    margin-top: 1rem;
  }

  .p-home-message__body-mark {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.5238095238;
  }

  .p-home-message__profile {
    gap: 31px;
    gap: 1.9375rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 16px;
    margin-top: 1rem;
    margin-right: 0;
    margin-left: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: transparent;
    padding: 0;
    width: auto;
    max-width: 100%;
  }

  .p-home-message__profile-picture {
    display: block;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: .375rem .375rem 0 0 #3c352d;
    box-shadow: .375rem .375rem 0 0 #3c352d;
    background-color: #fff;
    padding: 14px;
    padding: .875rem;
    width: 147px;
    width: 9.1875rem;
    -o-object-fit: contain;
    object-fit: contain;
  }

  .p-home-message__profile-caption {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    text-align: left;
  }

  .p-home-message__profile-role {
    margin-top: 0;
    color: #fff;
    font-size: 14px;
    font-size: .875rem;
    line-height: .7142857143;
  }

  .p-home-message__profile-name {
    margin-top: 9px;
    margin-top: .5625rem;
    color: #fff;
    font-size: 25px;
    font-size: 1.5625rem;
    line-height: 1.6;
    white-space: nowrap;
  }

  .p-home-message__action {
    margin-top: 64px;
    margin-top: 4rem;
  }

  .p-home-message__btn {
    padding: 10px 24px;
    padding: .625rem 1.5rem;
    width: 60%;
    min-width: 253px;
    min-width: 15.8125rem;
    min-height: 43px;
    min-height: 2.6875rem;
    font-size: 15px;
    font-size: .9375rem;
    line-height: 1.4666666667;
  }

  .p-home-news__inner {
    padding-right: 15px;
    padding-right: .9375rem;
    padding-left: 15px;
    padding-left: .9375rem;
    max-width: 680px;
    max-width: 42.5rem;
  }

  .p-home-news__list {
    margin-top: 12px;
    margin-top: .75rem;
    border-top: 1px solid #002b55;
    border-top: .0625rem solid #002b55;
  }

  .p-home-news__item {
    border-bottom: 1px solid #002b55;
    border-bottom: .0625rem solid #002b55;
  }

  .p-home-news__link {
    gap: 19px;
    gap: 1.1875rem;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-top: 7px;
    padding-top: .4375rem;
    padding-bottom: 7px;
    padding-bottom: .4375rem;
  }

  .p-home-news__date {
    border: 1px solid #002b55;
    border: .0625rem solid #002b55;
    padding: 1px 6px;
    padding: .0625rem .375rem;
    width: 77px;
    width: 4.8125rem;
    height: auto;
    min-height: 14px;
    min-height: .875rem;
    font-size: 12px;
    font-size: .75rem;
    line-height: 1.1666666667;
  }

  .p-home-news__title {
    padding-top: 0;
    max-width: none;
    font-size: 12px;
    font-size: .75rem;
    line-height: 1.3333333333;
  }

  .p-home-price__inner {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-right: 15px;
    padding-right: .9375rem;
    padding-left: 15px;
    padding-left: .9375rem;
    width: 100%;
    max-width: 680px;
    max-width: 42.5rem;
  }

  .p-home-price__header {
    max-width: none;
  }

  .p-home-price__title {
    max-width: 252px;
    max-width: 15.75rem;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.3888888889;
  }

  .p-home-price__lead {
    margin-top: 12px;
    margin-top: .75rem;
    font-size: 13px;
    font-size: .8125rem;
    font-weight: 400;
    line-height: 1.7692307692;
    text-align: left;
  }

  .p-home-price__table {
    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;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 43px;
    margin-top: 2.6875rem;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    max-width: 420px;
    max-width: 26.25rem;
  }

  .p-home-price__row--tax {
    display: contents;
  }

  .p-home-price__row--tax .p-home-price__category {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    background-color: transparent;
    padding: 0;
    min-height: 0;
    color: #036;
    font-size: 33px;
    font-size: 2.0625rem;
    line-height: 1.5454545455;
  }

  .p-home-price__row--tax .p-home-price__category br {
    display: none;
  }

  .p-home-price__table-head {
    gap: 38px;
    gap: 2.375rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 15px;
    margin-top: .9375rem;
    padding-bottom: 22px;
    padding-bottom: 1.375rem;
    width: 100%;
  }

  .p-home-price__table-head-cell--label {
    display: none;
  }

  .p-home-price__table-head-cell--personal,
  .p-home-price__table-head-cell--corporate {
    margin-left: 0;
    border-radius: 1.125rem;
    width: 100%;
    height: 37px;
    height: 2.3125rem;
    font-size: 14px;
    font-size: .875rem;
    line-height: 1.2857142857;
  }

  .p-home-price__table-head-cell--personal::after,
  .p-home-price__table-head-cell--corporate::after {
    bottom: -22px;
    bottom: -1.375rem;
    width: 22px;
    width: 1.375rem;
    height: 29px;
    height: 1.8125rem;
  }

  .p-home-price__row--tax .p-home-price__row-body {
    gap: 16px;
    gap: 1rem;
    display: grid;
    grid-column: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, auto);
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 5px;
    margin-top: .3125rem;
    border: none;
    border-left: none;
    width: 100%;
    max-width: 100%;
  }

  .p-home-price__row--tax .p-home-price__row-body::after {
    display: none;
  }

  .p-home-price__row--tax .p-home-price__col {
    row-gap: 14px;
    row-gap: .875rem;
    display: grid;
    grid-row: span 2;
    grid-template-rows: subgrid;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #036;
    border: .0625rem solid #036;
  }

  .p-home-price__col {
    gap: 14px;
    gap: .875rem;
    padding-top: 22px;
    padding-top: 1.375rem;
    padding-right: 10px;
    padding-right: .625rem;
    padding-bottom: 22px;
    padding-bottom: 1.375rem;
    padding-left: 10px;
    padding-left: .625rem;
    min-height: 0;
  }

  .p-home-price__col--corporate {
    padding-right: 10px;
    padding-right: .625rem;
    padding-left: 10px;
    padding-left: .625rem;
  }

  .p-home-price__row--tax .p-home-price__card {
    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;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 12px 8px;
    padding: .75rem .5rem;
    height: 100%;
    min-height: 105px;
    min-height: 6.5625rem;
  }

  .p-home-price__card-title {
    font-size: 14px;
    font-size: .875rem;
    line-height: 1.2857142857;
  }

  .p-home-price__card-price {
    margin-top: 12px;
    margin-top: .75rem;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.125;
  }

  .p-home-price__card-note {
    margin-top: 6px;
    margin-top: .375rem;
    font-size: 12px;
    font-size: .75rem;
    line-height: 1.5833333333;
  }

  .p-home-price__row--finance {
    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;
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
    -ms-flex-order: 4;
    order: 4;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 46px;
    margin-top: 2.875rem;
    border: none;
  }

  .p-home-price__row--loan {
    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;
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
    -ms-flex-order: 5;
    order: 5;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 30px;
    margin-top: 1.875rem;
    border: none;
  }

  .p-home-price__row--finance .p-home-price__category,
  .p-home-price__row--loan .p-home-price__category {
    border: none;
    background-color: transparent;
    padding: 0;
    min-height: 0;
    color: #036;
    font-size: 33px;
    font-size: 2.0625rem;
    line-height: 1.5454545455;
  }

  .p-home-price__row--finance .p-home-price__category br,
  .p-home-price__row--loan .p-home-price__category br {
    display: none;
  }

  .p-home-price__row--finance .p-home-price__row-body--wide,
  .p-home-price__row--loan .p-home-price__row-body--wide {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 9px;
    margin-top: .5625rem;
    border: 1px solid #036;
    border: .0625rem solid #036;
    padding: 10px 10px;
    padding: .625rem .625rem;
    width: 100%;
    min-height: 78px;
    min-height: 4.875rem;
  }

  .p-home-price__detail-title {
    font-size: 15px;
    font-size: .9375rem;
    line-height: 1.2666666667;
  }

  .p-home-price__detail-text {
    margin-top: 4px;
    margin-top: .25rem;
    font-size: 14px;
    font-size: .875rem;
    line-height: 1.6428571429;
  }

  .p-home-price__notes {
    margin-top: 27px;
    margin-top: 1.6875rem;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    max-width: 365px;
    max-width: 22.8125rem;
  }

  .p-home-price__notes p {
    font-size: 11px;
    font-size: .6875rem;
    line-height: 1.7272727273;
  }

  .p-home-value__inner {
    padding-top: 50px;
    padding-top: 3.125rem;
    padding-right: 0;
    padding-bottom: 50px;
    padding-bottom: 3.125rem;
    padding-left: 15px;
    padding-left: .9375rem;
    max-width: 680px;
    max-width: 42.5rem;
  }

  .p-home-value__header,
  .p-home-value__list {
    margin-left: 0;
    max-width: none;
  }

  .p-home-value__header {
    gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .p-home-value__lead {
    margin-top: 18px;
    margin-top: 1.125rem;
    max-width: 378px;
    max-width: 23.625rem;
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.4444444444;
    text-align: left;
  }

  .p-home-value__list {
    gap: 2px;
    gap: .125rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 18px;
    margin-top: 1.125rem;
    margin-right: 0;
    margin-left: 0;
    padding-right: 15px;
    padding-right: .9375rem;
    width: 100%;
    max-width: 100%;
  }

  .p-home-value__list::-webkit-scrollbar {
    display: none;
  }

  .p-home-value__list::before {
    width: 100%;
    max-width: 395px;
    max-width: 24.6875rem;
    height: 89px;
    height: 5.5625rem;
  }

  .p-home-value__item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 79px;
    -webkit-flex: 0 0 4.9375rem;
    -ms-flex: 0 0 79px;
    -ms-flex: 0 0 4.9375rem;
    flex: 0 0 79px;
    flex: 0 0 4.9375rem;
    border-width: 1px;
    border-width: .0625rem;
    background-color: #f6f6f6;
    padding: 15px 2px 15px;
    padding: .9375rem .125rem .9375rem;
    min-width: 79px;
    min-width: 4.9375rem;
    height: 86px;
    height: 5.375rem;
  }

  .p-home-value__item:nth-child(1) .p-home-value__icon {
    width: 37px;
    width: 2.3125rem;
    height: 24px;
    height: 1.5rem;
  }

  .p-home-value__item:nth-child(2) .p-home-value__icon {
    width: 27px;
    width: 1.6875rem;
    height: 25px;
    height: 1.5625rem;
  }

  .p-home-value__item:nth-child(3) .p-home-value__icon {
    width: 20px;
    width: 1.25rem;
    height: 23px;
    height: 1.4375rem;
  }

  .p-home-value__item:nth-child(4) .p-home-value__icon {
    width: 32px;
    width: 2rem;
    height: 28px;
    height: 1.75rem;
  }

  .p-home-value__item:nth-child(5) .p-home-value__icon {
    width: 26px;
    width: 1.625rem;
    height: 29px;
    height: 1.8125rem;
  }

  .p-home-value__text {
    font-size: 7px;
    font-size: .4375rem;
    line-height: 1.1428571429;
  }

  .u-onlySp {
    display: block;
  }

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

  .u-sp-none {
    display: none !important;
  }

  .u-hidden--sp {
    display: none !important;
  }
}
/*# sourceMappingURL=map/style.css.map */