@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: #f8f7f3;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  color: #3d3d3d;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: .08em;
  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: #d9d9d9;
  padding: .25em .5em;
}

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

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

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

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

var {
  background-color: #d9d9d9;
  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: 100%;
}

button {
  color: #3d3d3d;
}

/************************************************************************
* 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:not([class]) {
  color: #03c;
}

a:not([class]):visited {
  color: #236dac;
}

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: #3d3d3d;
  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 {
  border-color: transparent;
  background-color: #b2b2b2;
  color: #d9d9d9;
}

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 {
  padding-inline: 16px;
  padding-inline: 1rem;
  padding-block: 10.5px;
  padding-block: .65625rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: .25rem;
  background-image: none;
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8125;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  vertical-align: top;
  font-size: 10px;
  font-size: .625rem;
  line-height: 2.9;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  vertical-align: top;
  font-size: 10px;
  font-size: .625rem;
  line-height: 2.9;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  vertical-align: top;
  font-size: 10px;
  font-size: .625rem;
  line-height: 2.9;
}

input::placeholder,
textarea::placeholder {
  vertical-align: top;
  font-size: 10px;
  font-size: .625rem;
  line-height: 2.9;
}

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: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 1px solid #000;
  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: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 1px solid #000;
  border-radius: 100vmax;
  background-color: #fff;
  width: 10px;
  width: .625rem;
  height: 10px;
  height: .625rem;
  content: '';
}

input[type=checkbox] + span::after {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 3px;
  left: .1875rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  border-radius: 100vmax;
  background-color: #000;
  width: 4px;
  width: .25rem;
  height: 4px;
  height: .25rem;
  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;
}

.wpcf7-form-control-wrap:has(input[type=checkbox]) {
  position: relative;
}

.wpcf7-form-control-wrap:has(input[type=checkbox])::before {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 1px solid #000;
  border-radius: 100vmax;
  background-color: #fff;
  width: 10px;
  width: .625rem;
  height: 10px;
  height: .625rem;
  content: '';
}

.wpcf7-form-control-wrap:has(input[type=checkbox])::after {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 3px;
  left: .1875rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  border-radius: 100vmax;
  background-color: #000;
  width: 4px;
  width: .25rem;
  height: 4px;
  height: .25rem;
  content: '';
}

.wpcf7-form-control-wrap:has(input[type=checkbox]):focus-visible::before {
  outline: -webkit-focus-ring-color auto 5px;
}

.wpcf7-form-control-wrap:has(input[type=checkbox]:focus-visible)::before {
  outline: -webkit-focus-ring-color auto 5px;
}

.wpcf7-form-control-wrap:has(input[type=checkbox]:checked)::before {
  outline: none;
}

.wpcf7-form-control-wrap:has(input[type=checkbox]:checked)::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 #000;
  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: 100vw;
  --vh: 100vh;

  /* 三角形 */
  --clip-triangle-top: polygon(50% 0, 100% 100%, 0 100%);
  --clip-triangle-bottom: polygon(0 0, 100% 0, 50% 100%);
  --clip-triangle-right: polygon(0 0, 100% 50%, 0 100%);
  --clip-triangle-left: polygon(0 50%, 100% 0, 100% 100%);
  --clip-triangle-lower-left: polygon(0 0, 100% 100%, 0 100%);
  --clip-triangle-upper-left: polygon(0 0, 100% 0, 0 100%);
  --clip-triangle-lower-right: polygon(100% 0, 100% 100%, 0 100%);
  --clip-triangle-upper-right: polygon(0 0, 100% 0, 100% 100%);

  /**
     * svgをbackgroundで使う
     * 色：#ffffff -> %23ffffff
     */
  --icon-btn-arrow: url('data:image/svg+xml;utf8,<svg width="37" height="6" viewBox="0 0 37 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 5H36L26.2703 1" stroke="%230C4A6E"/></svg>');

  /* ヘッダー高さ */
  --header-height: 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-response-output {
  display: none;
}

.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: #3d3d3d;
}

#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: #3d3d3d;
}

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

.l-container.l-container--footer {
  padding-inline: 36px;
  padding-inline: 2.25rem;
}

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

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

/************************************************************************
* 基本形
************************************************************************/
.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: color, background-color, border-color;
  transition-property: color, background-color, border-color;
  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: .08em;
  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';
}

.c-dot {
  position: relative;
  padding-left: 17px;
  padding-left: 1.0625rem;
}

.c-dot::before {
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  left: 6px;
  left: .375rem;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  border-radius: 100vmax;
  background-color: #000;
  width: 12px;
  width: .75rem;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  content: '';
}

.c-dot::after {
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  left: 6px;
  left: .375rem;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  border-radius: 100vmax;
  background-color: #fff;
  width: 4px;
  width: .25rem;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  content: '';
}

.c-dot--right {
  padding-right: 17px;
  padding-right: 1.0625rem;
  padding-left: initial;
}

.c-dot--right::before {
  right: 6px;
  right: .375rem;
  left: initial;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}

.c-dot--right::after {
  right: 6px;
  right: .375rem;
  left: initial;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}

.c-dot-btn {
  position: relative;
}

.c-dot-btn::before {
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  border-radius: 100vmax;
  background-color: #000;
  width: 12px;
  width: .75rem;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  content: '';
}

.c-dot-btn::after {
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  border-radius: 100vmax;
  background-color: #fff;
  width: 4px;
  width: .25rem;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  content: '';
}

.c-dot-btn--company::before {
  right: 48px;
  right: 3rem;
}

.c-dot-btn--company::after {
  right: 48px;
  right: 3rem;
}

.c-dot-btn--contact::before {
  right: 31px;
  right: 1.9375rem;
}

.c-dot-btn--contact::after {
  right: 31px;
  right: 1.9375rem;
}

.c-dot-btn--form::before {
  right: 31px;
  right: 1.9375rem;
  z-index: 2;
}

.c-dot-btn--form::after {
  right: 31px;
  right: 1.9375rem;
  z-index: 3;
}

/************************************************************************
* link-btn - 白背景・黒枠・2行テキスト・右側ドット付きリンクボタン（スタイルのみの共通パーツ）
* バリエーション: --contact（サブ→メイン）, --company（メイン→サブ）
* 中央テキストはエレメント（__text, __label, __label--main, __label--sub）で管理。
* 右のドットは position: absolute で配置。ホバー時に拡大アニメーションを想定。
*
* 使用するHTML構造の例:
* --contact: 上段サブ・下段メイン（下段は __label-primary / __label-secondary で大小を制御）
*   <a href="..." class="c-link-btn c-link-btn--contact">
*     <span class="c-link-btn__text">
*       <span class="c-link-btn__label c-link-btn__label--sub">\ メタルアート用品 /</span>
*       <span class="c-link-btn__label c-link-btn__label--main">
*         <span class="c-link-btn__label-primary">お問い合わせ</span><span class="c-link-btn__label-secondary">はこちら</span>
*       </span>
*     </span>
*     <span class="c-link-btn__dot" aria-hidden="true"></span>
*   </a>
* --company: 上段メイン・下段サブ
*   <a href="..." class="c-link-btn c-link-btn--company">
*     <span class="c-link-btn__text">
*       <span class="c-link-btn__label c-link-btn__label--main">Greeting</span>
*       <span class="c-link-btn__label c-link-btn__label--sub">ごあいさつ</span>
*     </span>
*     <span class="c-link-btn__dot" aria-hidden="true"></span>
*   </a>
************************************************************************/
.c-link-btn {
  padding-block: 26px 23px;
  padding-block: 1.625rem 1.4375rem;
  padding-inline: 52px;
  padding-inline: 3.25rem;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-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;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #000;
  background-color: #fff;
  color: #000;
  text-decoration: none;
}

/* 中央テキストブロック（エレメントで管理） */
.c-link-btn__text {
  display: block;
  text-align: center;
}

.c-link-btn__label {
  display: block;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.4;
}

.c-link-btn__label--main {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
}

.c-link-btn__label--sub {
  margin-top: 4px;
  margin-top: .25rem;
  font-size: 12px;
  font-size: .75rem;
}

.c-link-btn__label--sub:first-child {
  margin-top: 0;
}

/************************************************************************
* --contact: 上段サブ・下段メイン（\ メタルアート用品 / / お問い合わせはこちら）
* 下段の「お問い合わせ」（大）と「はこちら」（小）は span + モディファイアで管理
************************************************************************/
.c-link-btn--contact .c-link-btn__label--sub {
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.4285714286;
}

.c-link-btn--contact .c-link-btn__label--main {
  font-family: '游明朝体', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho Pro', 'ヒラギノ明朝 Pro', 'MS P明朝', 'MS PMincho', serif;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 2.25;
}

/* --contact 下段：大きいテキスト（お問い合わせ） */

/* --contact 下段：小さいテキスト（はこちら） */
.c-link-btn--contact .c-link-btn__label-secondary {
  font-size: 14px;
  font-size: .875rem;
}

/************************************************************************
* --company: 上段メイン・下段サブ（Greeting / ごあいさつ）
************************************************************************/
.c-link-btn--company {
  padding-block: 32px 31px;
  padding-block: 2rem 1.9375rem;
  padding-inline: 79px;
  padding-inline: 4.9375rem;
}

.c-link-btn--company .c-link-btn__label--main {
  font-family: 'Hina Mincho', serif;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1;
}

.c-link-btn--company .c-link-btn__label--sub {
  font-size: 12px;
  font-size: .75rem;
  line-height: 1.4166666667;
}

.c-link-btn--company .c-link-btn__dot {
  right: 43px;
  right: 2.6875rem;
}

/************************************************************************
* --form: 1行テキスト用（送信内容のご確認 等・フォーム送信ボタン）
************************************************************************/
.c-link-btn--form {
  padding-block: 48px;
  padding-block: 3rem;
  border: 1px solid #000;
  border-radius: initial;
  font-family: 'Hina Mincho', serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
}

.c-link-btn--form .c-link-btn__text {
  display: inline-block;
}

.c-link-btn--form .c-link-btn__label {
  display: inline;
}

.c-link-btn--form .c-link-btn__label--main,
.c-link-btn--form .c-link-btn__label--sub {
  margin-top: 0;
}

/************************************************************************
* pill-btn - 白背景・黒枠・カプセル型ボタン（スタイルのみの共通パーツ）
* テキストは使用箇所により変更。フォントは $ff-minerva。
* ホバー時および .is-active 付与時に色反転（黒背景・白枠・白文字）。
************************************************************************/
.c-pill-btn {
  padding-block: 5px 6px;
  padding-block: .3125rem .375rem;
  padding-inline: 5px;
  padding-inline: .3125rem;
  display: inline-block;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  border: 1px solid #000;
  border: .0625rem solid #000;
  border-radius: 100vmax;
  background-color: #fff;
  min-width: 100px;
  min-width: 6.25rem;
  color: #000;
  font-family: 'minerva-modern', sans-serif;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.2142857143;
  text-align: center;
  text-decoration: none;
}

.c-pill-btn:hover, .c-pill-btn:focus-visible, .c-pill-btn.is-active {
  outline: none;
  border-color: #fff;
  background-color: #000;
  color: #fff;
}

.c-pill-btn--hina {
  padding-block: 5px 6px;
  padding-block: .3125rem .375rem;
  font-family: 'Hina Mincho', serif;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 400;
  line-height: 1.4166666667;
}

/************************************************************************
* section-heading - セクション見出し（英字大見出し + 下線 + 日本語サブ）
* モディファイア: --left（日本語左寄せ・デフォルト）, --center（日本語中央寄せ）
*
* 使用するHTML構造の例:
* 左寄せ（Service / 事業内容）
*   <h2 class="c-section-heading c-section-heading--left">
*     <span class="c-section-heading__en">Service</span>
*     <span class="c-section-heading__ja">事業内容</span>
*   </h2>
* 中央寄せ（Company / 会社案内）
*   <h2 class="c-section-heading c-section-heading--center">
*     <span class="c-section-heading__en">Company</span>
*     <span class="c-section-heading__ja">会社案内</span>
*   </h2>
************************************************************************/
.c-section-heading {
  display: block;
}

.c-section-heading__en {
  text-decoration-thickness: 2px;
  text-decoration-thickness: .125rem;
  text-underline-offset: 3px;
  text-underline-offset: .1875rem;
  display: inline-block;
  position: relative;
  color: #000;
  font-family: 'Hina Mincho', serif;
  font-size: 40px;
  font-size: 2.5rem;
  letter-spacing: .08em;
  line-height: 1.45;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
}

/* 英字の直下にテキスト幅よりわずかに長い太い下線 */
.c-section-heading__en::after {
  position: absolute;
  bottom: 6px;
  bottom: .375rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #000;
  height: 2px;
  height: .125rem;
  content: '';
}

.c-section-heading__ja {
  display: block;
  margin-top: 9px;
  margin-top: .5625rem;
  color: #8a8e94;
  font-size: 12px;
  font-size: .75rem;
  line-height: 1.4166666667;
}

/* --left: 下部の日本語を左寄せ（デフォルト） */
.c-section-heading--left {
  text-align: left;
}

/* --left: 下部の日本語を左寄せ（デフォルト） */
.c-section-heading--left-pc {
  text-align: center;
}

/* --center: 英字・下線・日本語を中央寄せ */
.c-section-heading--center {
  text-align: center;
}

.c-section-heading--center .c-section-heading__ja {
  text-align: center;
}

.c-totop {
  display: block;
  position: fixed;
  right: 20px;
  right: 1.25rem;
  bottom: 20px;
  bottom: 1.25rem;
  visibility: hidden;
  opacity: 0;
  z-index: 30;
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  background-color: #65a7ce;
  width: 50px;
  width: 3.125rem;
  height: 50px;
  height: 3.125rem;
}

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

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

.c-totop.is-active:hover, .c-totop.is-active:focus {
  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: #8a8e94;
  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: #d9d9d9;
  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-company - 会社案内ページ（会社概要 dl/dt/dd、Googleマップ、ごあいさつリンク）
************************************************************************/
.p-company__inner {
  padding-bottom: 80px;
  padding-bottom: 5rem;
}

.p-company__content {
  margin-top: 26px;
  margin-top: 1.625rem;
}

.p-company__content + .p-company__content {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-company__content-title {
  opacity: .6;
  font-family: 'Hina Mincho', serif;
  font-size: 30px;
  font-size: 1.875rem;
  letter-spacing: .1em;
  line-height: 1.45;
}

.p-company__content-inner {
  padding-block: 34px 12px;
  padding-block: 2.125rem .75rem;
  padding-inline: 17px 13px;
  padding-inline: 1.0625rem .8125rem;
  margin-top: 10px;
  margin-top: .625rem;
  border-radius: .625rem;
  background-color: #f0efeb;
}

.p-company__list {
  display: block;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.8;
}

.p-company__list + .p-company__list {
  margin-top: 1.8em;
}

.p-company__list-row + .p-company__list-row {
  margin-top: 1.8em;
}

.p-company__list-row {
  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-company__term {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-weight: 500;
}

.p-company__desc {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  line-height: 1.8;
}

.p-company__desc.p-company__desc--row {
  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-company__desc-small {
  font-size: 10px;
  font-size: .625rem;
  letter-spacing: .08em;
  line-height: 1;
}

.p-company__link {
  color: #3d3d3d;
  text-decoration: none;
}

.p-company__link:hover {
  text-decoration: none;
}

.p-company__map-wrap {
  margin-top: 26px;
  margin-top: 1.625rem;
}

.p-company__map-iframe {
  aspect-ratio: 350/200;
  vertical-align: middle;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-company__link-wrap {
  margin-inline: auto;
  margin-top: 60px;
  margin-top: 3.75rem;
  width: 100%;
  max-width: 297px;
  max-width: 18.5625rem;
}

.p-company__link-wrap .c-link-btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

/************************************************************************
* p-contact-section - トップページ お問い合わせセクション
* 見出し: c-section-heading（--center）
* ボタン: c-link-btn--contact
* Tel・営業時間・定休日: $ff-en
************************************************************************/
.p-contact-section {
  background-color: #f0efeb;
}

.p-contact-section__white {
  background-color: #fff;
  width: 100%;
  height: 8px;
  height: .5rem;
}

.p-contact-section__inner {
  padding-block: 29px 60px;
  padding-block: 1.8125rem 3.75rem;
}

.p-contact-section__intro {
  margin-top: 32px;
  margin-top: 2rem;
  color: #3d3d3d;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.8;
  text-align: center;
}

.p-contact-section__info {
  margin-top: 19px;
  margin-top: 1.1875rem;
  text-align: center;
}

.p-contact-section__tel {
  color: #3d3d3d;
  font-family: 'Hina Mincho', serif;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.6;
}

.p-contact-section__tel-label {
  margin-right: 8px;
  margin-right: .5rem;
}

.p-contact-section__tel-number {
  color: #3d3d3d;
  font-family: 'Hina Mincho', serif;
  font-size: 36px;
  font-size: 2.25rem;
  text-decoration: none;
}

.p-contact-section__business {
  margin-top: 6px;
  margin-top: .375rem;
  color: #3d3d3d;
  font-family: 'Hina Mincho', serif;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.40625;
}

.p-contact-section__buttons {
  padding-inline: 0;
  gap: 24px;
  gap: 1.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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 24px;
  margin-top: 1.5rem;
  list-style: none;
}

.p-contact-section__buttons-item {
  max-width: 297px;
  max-width: 18.5625rem;
  text-align: center;
}

.p-contact-section__buttons-item .c-link-btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

/************************************************************************
* p-contact - お問い合わせページ（連絡先情報・メタルアート/カメラフォーム）
************************************************************************/
.p-contact__inner {
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}

.p-contact__info-section {
  padding-block: 35px 32px;
  padding-block: 2.1875rem 2rem;
  padding-inline: 20px;
  padding-inline: 1.25rem;
  margin-top: 28px;
  margin-top: 1.75rem;
  border-radius: .625rem;
  background-color: #fff;
}

.p-contact__intro {
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.875;
  text-align: center;
}

.p-contact__info {
  text-align: center;
}

.p-contact__tel {
  margin-inline: auto;
  position: relative;
  z-index: 2;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #3d3d3d;
  font-family: 'Hina Mincho', serif;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.6;
}

.p-contact__tel-label {
  margin-right: 8px;
  margin-right: .5rem;
}

.p-contact__tel-number {
  color: #3d3d3d;
  font-family: 'Hina Mincho', serif;
  font-size: 32px;
  font-size: 2rem;
  text-decoration: none;
}

.p-contact__tel-number:hover {
  text-decoration: underline;
}

.p-contact__tel::before {
  position: absolute;
  bottom: 4px;
  bottom: .25rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
  background-color: #f5f5f5;
  width: 100%;
  height: 14px;
  height: .875rem;
  content: '';
}

.p-contact__business {
  margin-top: 6px;
  margin-top: .375rem;
  color: #3d3d3d;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.40625;
}

.p-contact__form-section {

  /* 確認画面時：セクション背景を白にし、疑似要素は背後に */
}

.p-contact__form-section.is-confirm-view {
  background-color: #fff;
}

.p-contact__form-section.is-confirm-view::before, .p-contact__form-section.is-confirm-view::after {
  z-index: -1;
}

.p-contact__form-section.is-confirm-view {
  margin-bottom: 25px;
  margin-bottom: 1.5625rem;
  background-color: #d9d9d9;
}

.p-contact__form-inner {
  padding-block: 30px;
  padding-block: 1.875rem;
}

.p-contact__form-inner.p-contact__form-inner--camera {
  padding-bottom: 80px;
  padding-bottom: 5rem;
}

.p-contact__content {
  padding-block: 32px 36px;
  padding-block: 2rem 2.25rem;
  padding-inline: 15px;
  padding-inline: .9375rem;
  border-radius: .625rem;
  background-color: #f0efeb;
}

.p-contact__form-section.is-confirm-view .p-contact__content {
  background-color: #fff;
}

.p-contact__form-title {
  color: #000;
  font-family: 'Hina Mincho', serif;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.6785714286;
  text-align: center;
}

.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: #3d3d3d;
  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: 26px;
}

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

.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(9px) rotate(45deg);
  transform: translateY(9px) rotate(45deg);
  width: 100%;
}

.is-opened .p-drawer__bar:last-child {
  -webkit-transform: translateY(-9px) rotate(-45deg);
  transform: translateY(-9px) 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: 0;
  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;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
  padding-top: var(--header-height, 60px);
  padding-bottom: var(--header-height, 60px);
  width: 100%;
  height: 100dvh;
  min-height: 100dvh;
  max-height: 100dvh;
  overflow: auto;
  color: #3d3d3d;
  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-block: 56px 68px;
  padding-block: 3.5rem 4.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;
  padding-right: 20px;
  padding-left: 20px;
  width: 100%;
  min-height: 100%;
  text-align: left;
}

/* ナビゲーションリスト */
.p-drawer__nav-list {
  text-align: center;
}

.p-drawer__nav-item + .p-drawer__nav-item {
  margin-top: 44px;
  margin-top: 2.75rem;
}

.p-drawer__nav-link {
  display: block;
  padding-top: 0;
  color: #3d3d3d;
  font-family: 'minerva-modern', sans-serif;
  font-size: 16px;
  font-size: 1rem;
  text-decoration: none;
}

.p-drawer__nav-link:hover {
  opacity: .7;
}

.p-drawer__nav-link-en {
  padding-block: 2px;
  padding-block: .125rem;
  display: block;
  color: #000;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}

.p-drawer__nav-link-ja {
  padding-block: 2.5px;
  padding-block: .15625rem;
  display: block;
  margin-top: 7px;
  margin-top: .4375rem;
  color: #8a8e94;
  font-size: 12px;
  font-size: .75rem;
  letter-spacing: 0;
  line-height: 1;
}

.p-drawer__nav-sublist {
  margin-top: 24px;
  margin-top: 1.5rem;
  list-style: none;
}

.p-drawer__nav-subitem + .p-drawer__nav-subitem {
  margin-top: 28px;
  margin-top: 1.75rem;
}

.p-drawer__nav-sublink {
  padding-block: 2.5px;
  padding-block: .15625rem;
  display: block;
  color: #3d3d3d;
  font-size: 12px;
  font-size: .75rem;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
}

.p-drawer__nav-sublink:hover {
  opacity: .7;
}

/* 問い合わせボタンエリア */
.p-drawer__contact {
  margin-top: 70px;
  margin-top: 4.375rem;
}

.p-drawer__contact-list {
  gap: 24px;
  gap: 1.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;
  list-style: none;
}

.p-drawer__contact-item {
  text-align: center;
}

.p-drawer__contact-item .c-link-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 297px;
  width: 18.5625rem;
}

.p-footer {
  background-color: #1c1c1c;
  color: #fff;
}

.p-footer__inner {
  padding-block: 56px 75px;
  padding-block: 3.5rem 4.6875rem;
  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-footer__company-wrap {
  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: 100%;
}

.p-footer__company {
  display: contents;
  width: 100%;
  text-align: left;
}

.p-footer__logo {
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-footer__logo-link {
  aspect-ratio: 139/72;
  vertical-align: middle;
  width: 139px;
  width: 8.6875rem;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-footer__company-name {
  margin-top: 35px;
  margin-top: 2.1875rem;
  font-size: 18px;
  font-size: 1.125rem;
}

.p-footer__address {
  margin-top: 22px;
  margin-top: 1.375rem;
  font-size: 12px;
  font-size: .75rem;
  font-style: normal;
  line-height: 2;
}

.p-footer__business {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 12px;
  font-size: .75rem;
  line-height: 2;
}

.p-footer__copy {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
  margin-top: 40px;
  margin-top: 2.5rem;
  font-size: 10px;
  font-size: .625rem;
  line-height: 3;
}

.p-footer__copy small {
  font-size: inherit;
}

.p-footer__sitemap {
  margin-top: 40px;
  margin-top: 2.5rem;
  font-family: 'Hina Mincho', serif;
}

.p-footer__sitemap-title {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.4545454545;
}

.p-footer__sitemap-list {
  margin-top: 18px;
  margin-top: 1.125rem;
  margin-left: 0;
  padding: 0;
  list-style: none;
}

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

.p-footer__sitemap-link {
  font-size: 14px;
  font-size: .875rem;
  line-height: 2.1428571429;
  text-decoration: none;
}

/* p-form: お問い合わせページ内フォーム（Contact Form 7 差し替え後も共通） */
.p-form {
  margin-top: 32px;
  margin-top: 2rem;
}

.p-form__required-note {
  color: #f00;
  font-size: 10px;
  font-size: .625rem;
}

.p-form__list {
  display: block;
  margin-top: 4px;
  margin-top: .25rem;
}

.p-form__list-item + .p-form__list-item {
  margin-top: 53px;
  margin-top: 3.3125rem;
}

.p-form__item {
  gap: 8px;
  gap: .5rem;
  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: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-form__item.p-form__item--mt {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-form__item:first-child {
  margin-top: initial;
}

.p-form__list-title {
  color: #3d3d3d;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8125;
  text-decoration: underline;
}

.p-form__itemHead {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 192px;
  width: 12rem;
}

.p-form__list-title + .p-form__item {
  margin-top: 2px;
  margin-top: .125rem;
}

.p-form__itemBody {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-top: 0;
  margin-left: 0;
  min-width: 200px;
  min-width: 12.5rem;
}

.p-form__label {
  display: inline-block;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 500;
  line-height: 1.8125;
}

.p-form__label.is-required::after {
  vertical-align: middle;
  margin-left: .5em;
  color: #ff070b;
  font-size: 12px;
  font-size: .75rem;
  content: '＊';
}

.p-form__input,
.p-form__textarea {
  width: 100%;
  max-width: 100%;
}

.p-form__textarea {
  height: 50px;
  height: 3.125rem;
  min-height: 50px;
  min-height: 3.125rem;
}

.p-form__privacy-link {
  margin-top: 12px;
  margin-top: .75rem;
}

.p-form__privacy-link a {
  color: #3d3d3d;
  font-size: 12px;
  font-size: .75rem;
  line-height: 1.8;
  text-decoration: none;
}

.p-form__privacy-link a:hover {
  text-decoration: none;
}

.p-form__checkboxLabel {
  gap: 8px;
  gap: .5rem;
  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;
  cursor: pointer;
  margin-top: 12px;
  margin-top: .75rem;
  font-size: 12px;
  font-size: .75rem;
  line-height: 1.8;
}

.p-form__footer {
  position: relative;
  margin-top: 40px;
  margin-top: 2.5rem;
  margin-right: auto;
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
}

.p-form__footer input[type=submit].p-form__btn,
.p-form__footer .p-form__btn {
  background-color: #fff;
  width: 297px;
  width: 18.5625rem;
}

/* 確認画面（js-check）時のスタイル */
.p-form.js-check .p-form__input,
.p-form.js-check .p-form__textarea {
  cursor: default;
  border: 1px solid #e0e0e0;
  background-color: #fff;
  pointer-events: none;
  color: #3d3d3d;
}

.p-form.js-check .p-form__checkboxLabel {
  cursor: default;
  pointer-events: none;
}

/* 確認画面：同意事項のリンクとチェックボックスを非表示（テキストのみ表示） */
.p-form.js-check .p-form__privacy-link {
  display: none;
}

.p-form.js-check .p-form__checkboxInput {
  display: none;
}

.p-form.js-check .p-form__privacy-link a {
  cursor: default;
  pointer-events: none;
}

.p-form.js-check .p-form__checkboxLabel .wpcf7-form-control-wrap {
  display: none;
}

/* 確認ステップ：送信内容のご確認ボタンラップ（ドット装飾はこの wrap に付与） */
.p-form__confirm-step-wrap.js-confirm-step-wrap {
  display: inline-block;
}

.p-form.js-check .p-form__confirm-step-wrap.js-confirm-step-wrap {
  display: none;
}

/* 確認メッセージ・戻る／送信するボタン */
.p-form__confirm-wrap.js-confirm-wrap {
  display: none;
}

.p-form.js-check .p-form__confirm-wrap.js-confirm-wrap {
  display: block;
}

.p-form__confirm-msg {
  margin-top: 0;
  color: #f00;
  font-weight: 700;
  text-align: center;
}

/* 送信完了メッセージ（確認メッセージと同じスタイルを流用・別管理） */
.p-form__sent-msg.js-sent-msg {
  display: none;
  margin-top: -15px;
  margin-top: -.9375rem;
  margin-bottom: 9px;
  margin-bottom: .5625rem;
  color: #f00;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
  text-align: center;
}

.p-form__sent-msg.js-sent-msg.is-visible {
  display: block;
}

.p-form__confirm-btns {
  gap: 13px;
  gap: .8125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -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: 11px;
  margin-top: .6875rem;
}

/* 戻る・送信するのドット装飾用 wrap（ボタン幅に合わせる） */
.p-form__confirm-back-wrap,
.p-form__confirm-submit-wrap {
  display: inline-block;
}

/************************************************************************
* p-fv-news
************************************************************************/
.p-fv-news {
  padding-block: 74px 60px;
  padding-block: 4.625rem 3.75rem;
}

.p-fv-news__item {
  border-block: 1px solid #696969;
  padding-inline: 15px 0;
  padding-inline: .9375rem 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;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.p-fv-news__post-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -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;
  padding-top: 22px;
  padding-top: 1.375rem;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.p-fv-news__meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-fv-news__label {
  font-family: 'minerva-modern', sans-serif;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
  line-height: 1.2142857143;
  text-transform: uppercase;
}

.p-fv-news__date {
  margin-left: 16px;
  margin-left: 1rem;
  color: #8a8e94;
  font-family: 'minerva-modern', sans-serif;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 700;
  line-height: 1.1666666667;
}

.p-fv-news__title {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  margin-top: 8px;
  margin-top: .5rem;
  max-width: 464px;
  max-width: 29rem;
  overflow: hidden;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.4375;
}

.p-fv-news__link {
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
  margin-top: 10px;
  margin-top: .625rem;
  padding-bottom: 13px;
  padding-bottom: .8125rem;
  color: inherit;
  font-family: 'minerva-modern', sans-serif;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
  text-decoration: none;
}

/************************************************************************
* p-fv
************************************************************************/
.p-fv__inner {
  margin-inline: auto;
  max-width: 1440px;
  max-width: 90rem;
}

.p-fv__swiper-container {
  position: relative;
}

.p-fv__swiper-slide {
  aspect-ratio: 390/600;
  width: 390px;
  width: 24.375rem;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-fv__title {
  position: absolute;
  top: 51px;
  top: 3.1875rem;
  left: 21px;
  left: 1.3125rem;
  z-index: 1;
  color: #fff;
  font-family: 'Hina Mincho', serif;
  font-size: 30px;
  font-size: 1.875rem;
  letter-spacing: .1em;
  line-height: 1.8;
  text-shadow: 0 4px 4px rgba(0, 0, 0, .25);
  text-shadow: 0 .25rem .25rem rgba(0, 0, 0, .25);
}

/************************************************************************
* p-greeting - ごあいさつページ（単一FV画像・本文・会社案内リンクボタン）
************************************************************************/
.p-greeting__inner {
  padding-bottom: 80px;
  padding-bottom: 5rem;
}

.p-greeting__fv {
  margin-inline: auto;
  aspect-ratio: 1000/500;
  margin-top: 30px;
  margin-top: 1.875rem;
  border-radius: .625rem;
  width: 350px;
  width: 21.875rem;
  height: auto;
  overflow: hidden;
  -o-object-fit: cover;
  object-fit: cover;
}

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

.p-greeting__heading {
  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: #000;
  font-family: 'Hina Mincho', serif;
  font-size: 30px;
  font-size: 1.875rem;
  letter-spacing: .1em;
  line-height: 1.4333333333;
}

.p-greeting__heading-line {
  display: inline-block;
  position: relative;
  z-index: 2;
}

.p-greeting__heading-line::before {
  position: absolute;
  bottom: 2px;
  bottom: .125rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
  background-color: #fff;
  width: 100%;
  height: 14px;
  height: .875rem;
  content: '';
}

.p-greeting__heading-line.p-greeting__heading-line--pc {
  display: contents;
}

.p-greeting__heading-line.p-greeting__heading-line--pc::before {
  display: none;
}

.p-greeting__intro {
  margin-top: 48px;
  margin-top: 3rem;
  font-weight: 500;
  line-height: 1.8;
  text-align: start;
}

.p-greeting__content {
  padding-block: 29px 32px;
  padding-block: 1.8125rem 2rem;
  padding-inline: 15px;
  padding-inline: .9375rem;
  margin-top: 59px;
  margin-top: 3.6875rem;
  border-radius: .625rem;
  background-color: #f0efeb;
  font-size: 14px;
  font-size: .875rem;
  text-align: justify;
}

.p-greeting__text {
  line-height: 1.8;
}

.p-greeting__text + .p-greeting__text {
  margin-top: 1.8em;
}

.p-greeting__signature {
  margin-top: 32px;
  margin-top: 2rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
  text-align: right;
}

.p-greeting__signature-small {
  font-size: 12px;
  font-size: .75rem;
}

.p-greeting__link-wrap {
  margin-inline: auto;
  margin-top: 76px;
  margin-top: 4.75rem;
  width: 100%;
  max-width: 297px;
  max-width: 18.5625rem;
}

.p-greeting__link-wrap .c-link-btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

.p-header {
  padding-block: 20px 16px;
  padding-block: 1.25rem 1rem;
  padding-inline: 25px;
  padding-inline: 1.5625rem;
  background-color: #f8f7f3;
}

.p-header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-header__logo {
  z-index: 41;
}

.p-header__logo .p-header__logo-link {
  aspect-ratio: 100/52;
  display: block;
  width: 85px;
  width: 5.3125rem;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-header__logo img,
.p-header__logo svg {
  display: block;
}

.p-header__nav {
  display: none;
}

.p-header__nav-list {
  gap: 40px;
  gap: 2.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;
}

.p-header__nav-item {
  height: 46px;
  height: 2.875rem;
}

.p-header__nav-link {
  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;
  height: 100%;
  min-height: 0;
  color: #3d3d3d;
  font-family: 'minerva-modern', sans-serif;
  font-weight: 700;
  text-decoration: none;
}

.p-header__nav-link:hover {
  opacity: .7;
}

.p-header__nav-link-en {
  display: block;
  color: #3d3d3d;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1;
}

.p-header__nav-link-ja {
  display: block;
  margin-top: 2px;
  margin-top: .125rem;
  color: #8a8e94;
  font-size: 10px;
  font-size: .625rem;
  letter-spacing: 0;
}

.p-header__nav-dropdown {
  position: relative;
  height: 100%;
}

.p-header__nav-summary {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  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;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  cursor: pointer;
  margin: 0;
  border: none;
  background: none;
  padding: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  color: #3d3d3d;
  font-family: 'minerva-modern', sans-serif;
  font-size: inherit;
  font-weight: 700;
  line-height: inherit;
  text-align: left;
}

.p-header__nav-summary:hover {
  opacity: .7;
}

.p-header__nav-summary-line {
  display: inline-block;
  position: relative;
}

.p-header__nav-sublist {
  padding-block: 8px;
  padding-block: .5rem;
  padding-inline: 14px;
  padding-inline: .875rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transition: .3s ease;
  transition: .3s ease;
  margin-top: 0;
  background-color: #f8f7f3;
  min-width: 160px;
  min-width: 10rem;
  overflow: hidden;
  list-style: none;
}

.p-header__nav-sublist.is-show {
  top: 100%;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-header__nav-subitem {
  margin-top: 2px;
  margin-top: .125rem;
}

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

.p-header__nav-sublink {
  display: block;
  position: relative;
  padding-left: 1.8em;
  font-size: 12px;
  font-size: .75rem;
  letter-spacing: 0;
  line-height: 1.75;
  text-decoration: none;
}

.p-header__nav-sublink::before {
  position: absolute;
  left: 0;
  content: 'ー';
}

.p-header__nav-sublink:hover {
  opacity: .7;
}

.p-header__nav-summary .p-header__nav-link-en {
  display: inline;
  position: relative;
}

.p-header__nav-summary .p-header__nav-link-en::before, .p-header__nav-summary .p-header__nav-link-en::after {
  position: absolute;
  top: 50%;
  right: -19px;
  right: -1.1875rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -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;
  background-color: #3d3d3d;
  content: '';
}

.p-header__nav-summary .p-header__nav-link-en::after {
  width: 11px;
  width: .6875rem;
  height: 1px;
  height: .0625rem;
}

.p-header__nav-summary .p-header__nav-link-en::before {
  margin-right: 5px;
  margin-right: .3125rem;
  width: 1px;
  width: .0625rem;
  height: 11px;
  height: .6875rem;
}

.p-header__nav-summary[aria-expanded=true] .p-header__nav-link-en::before {
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  opacity: 0;
}

.p-header__nav-summary .p-header__nav-link-ja {
  display: block;
  margin-top: 2px;
  margin-top: .125rem;
}

.p-header__drawer {
  position: absolute;
  top: 13px;
  top: .8125rem;
  right: 2px;
  right: .125rem;
  z-index: 40;
}

.p-inquiry-buttons {
  position: fixed;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 20;
}

.p-inquiry-buttons__list {
  margin-block: 0;
  padding-inline: 0;
  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;
  list-style: none;
}

.p-inquiry-buttons__link {
  padding-block: 10px 6px;
  padding-block: .625rem .375rem;
  padding-inline: 18px;
  padding-inline: 1.125rem;
  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;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: .5rem .5rem 0 0;
  width: 195px;
  width: 12.1875rem;
  color: #fff;
  text-decoration: none;
}

.p-inquiry-buttons__link:hover {
  opacity: .7;
}

.p-inquiry-buttons__link--metal {
  padding-inline: 17px 12px;
  padding-inline: 1.0625rem .75rem;
  background-color: #000;
}

.p-inquiry-buttons__link--camera {
  background-color: #808080;
}

.p-inquiry-buttons__text {
  display: block;
  margin-top: 0;
  text-align: center;
}

.p-inquiry-buttons__label {
  display: block;
  font-family: 'Hina Mincho', serif;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 500;
  line-height: 1.1666666667;
}

.p-inquiry-buttons__label:nth-of-type(2) {
  margin-top: 2px;
  margin-top: .125rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.625;
}

.p-inquiry-buttons__icon {
  display: block;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: 8px;
  margin-top: .5rem;
}

.p-inquiry-buttons__icon img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-inquiry-buttons__icon--metal {
  aspect-ratio: 31/25;
  width: 31px;
  width: 1.9375rem;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-inquiry-buttons__icon--camera {
  aspect-ratio: 23/18;
  margin-left: 2px;
  margin-left: .125rem;
  width: 23px;
  width: 1.4375rem;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

/************************************************************************
* p-news-single - 投稿詳細（News 単一記事）
* 左：カテゴリ・タイトル・日付（画面上部固定）、右：投稿内容・シェアボタン・記事移動ボタン（スクロール）
* p-news-single-related - 関連する記事ブロック（同カテゴリ最新3件・カテゴリボタン）
************************************************************************/
.p-news-single__body {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-news-single__meta {
  margin-top: 0;
}

.p-news-single__category {
  display: inline-block;
}

.p-news-single__title {
  margin-top: 24px;
  margin-top: 1.5rem;
  font-family: 'Hina Mincho', serif;
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: .1em;
}

.p-news-single__date {
  display: block;
  margin-top: 5px;
  margin-top: .3125rem;
  color: #8a8e94;
  font-family: 'minerva-modern', sans-serif;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.1875;
}

.p-news-single__main {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-news-single__thumb {
  margin-top: 0;
}

.p-news-single__thumb img {
  display: block;
  width: 100%;
  height: auto;
}

.p-news-single__content {
  padding-inline: 15px;
  padding-inline: .9375rem;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.8;
}

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

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

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

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

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

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

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

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

.p-news-single__content ul {
  list-style: none;
}

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

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

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

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

.p-news-single__content 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-news-single__content h2 {
  margin-block: 1.5em 14px;
  margin-block: 1.5em .875rem;
  background-color: initial;
  padding: initial;
  color: #3d3d3d;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
}

.p-news-single__content h3 {
  margin-block: 22px 14px;
  margin-block: 1.375rem .875rem;
  border-left: initial;
  padding-left: initial;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.8;
}

.p-news-single__content p {
  margin-top: 1.8em;
}

.p-news-single__content h2 + .p-news-single__content p {
  margin-top: initial;
}

.p-news-single__content h3 + .p-news-single__content p {
  margin-top: initial;
}

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

.p-news-single__content figure {
  margin-bottom: 15px;
  margin-bottom: .9375rem;
}

.p-news-single__share {
  margin-top: 50px;
  margin-top: 3.125rem;
}

.p-news-single__share-list {
  gap: 22px;
  gap: 1.375rem;
  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: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: end;
  -ms-flex-pack: end;
  justify-content: end;
  list-style: none;
}

.p-news-single__share-link {
  aspect-ratio: 1;
  display: inline-block;
  width: 25px;
  width: 1.5625rem;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  color: #000;
  text-decoration: none;
}

.p-news-single__share-link--x {
  aspect-ratio: 24/25;
  width: 24px;
  width: 1.5rem;
}

.p-news-single__share-link--facebook {
  padding-inline: 6px;
  padding-inline: .375rem;
}

.p-news-single__nav {
  margin-top: 71px;
  margin-top: 4.4375rem;
}

.p-news-single__nav-list {
  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: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 14px;
  font-size: .875rem;
  list-style: none;
}

.p-news-single__nav-item {
  gap: 4px;
  gap: .25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-news-single__nav-item a,
.p-news-single__nav-link--span {
  position: relative;
  color: #3d3d3d;
  text-decoration: none;
}

.p-news-single__nav-link--span {
  color: #8a8e94;
}

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

/* 関連する記事ブロック */
.p-news-single-related__inner {
  padding-bottom: 36px;
  padding-bottom: 2.25rem;
}

.p-news-single-related__wrap {
  padding-block: 39px 53px;
  padding-block: 2.4375rem 3.3125rem;
  padding-inline: 15px;
  padding-inline: .9375rem;
  border-radius: .625rem;
  background-color: #f0efeb;
}

.p-news-single-related__content {
  margin-inline: auto;
  max-width: 1000px;
  max-width: 62.5rem;
}

.p-news-single-related__title {
  font-family: 'Hina Mincho', serif;
}

.p-news-single-related__nav {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-news-single-related__nav-list {
  gap: 10px;
  gap: .625rem;
  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: 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;
  list-style: none;
}

/************************************************************************
* p-news - 投稿一覧ページ・カテゴリ一覧（見出し・カテゴリボタン・p-post-list・ページネーション）
* インナーは .l-container と .p-news__inner を使用
************************************************************************/
.p-news__inner {
  padding-bottom: 35px;
  padding-bottom: 2.1875rem;
}

.p-news__head {
  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-news__nav {
  margin-top: 43px;
  margin-top: 2.6875rem;
}

.p-news__nav-list {
  gap: 8px 25px;
  gap: .5rem 1.5625rem;
  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: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  list-style: none;
}

.p-news__content {
  margin-top: 10px;
  margin-top: .625rem;
}

.p-news__footer {
  margin-top: 37px;
  margin-top: 2.3125rem;
}

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

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

.page-numbers {
  display: inline-block;
  width: 16px;
  width: 1rem;
  height: 30px;
  height: 1.875rem;
  color: #000;
  font-size: 12px;
  font-size: .75rem;
  letter-spacing: .02em;
  line-height: 2.5;
}

.page-numbers + .page-numbers {
  margin-left: 9px;
  margin-left: .5625rem;
}

.page-numbers.current {
  background-color: #236dac;
  color: #fff;
}

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

.page-numbers.prev, .page-numbers.next {
  position: relative;
  vertical-align: middle; /* inline-block の baseline 揃えによる上ずれを防ぐ */
  overflow: hidden;
  font-size: 0;
  text-indent: 100%;
  white-space: nowrap;
}

.page-numbers.prev::before, .page-numbers.next::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, calc(-50% - .125rem));
  transform: translate(-50%, calc(-50% - .125rem));
  border-style: solid;
  width: 0;
  height: 0;
  content: '';
}

.page-numbers.prev::before {
  border-width: 7px 11px 7px 0;
  border-width: .4375rem .6875rem .4375rem 0;
  border-color: transparent #000 transparent transparent;
}

.page-numbers.next::before {
  border-width: 7px 0 7px 11px;
  border-width: .4375rem 0 .4375rem .6875rem;
  border-color: transparent transparent transparent #000;
}

/************************************************************************
* p-post-list - 投稿へのリンクを繰り返し表示する際の1件分の見た目
* 日付・タイトル・下線。リストのラッパー（.p-post-list__list）は各phpで出力する
************************************************************************/
.p-post-list__list {
  list-style: none;
}

.p-post-list__item {
  border-bottom: 1px solid #696969;
}

.p-post-list__link {
  padding-block: 20px;
  padding-block: 1.25rem;
  padding-inline: 15px 5px;
  padding-inline: .9375rem .3125rem;
  gap: 23px;
  gap: 1.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;
  min-height: 82px;
  min-height: 5.125rem;
  text-decoration: none;
}

.p-post-list__date {
  display: inline-block;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-top: 6px;
  margin-top: .375rem;
  color: #8a8e94;
  font-family: 'minerva-modern', sans-serif;
  font-size: 12px;
  font-size: .75rem;
  letter-spacing: .04em;
  line-height: 1.1666666667;
}

.p-post-list__title {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: inline;
  display: -webkit-box;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  overflow: hidden;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.4285714286;
}

/************************************************************************
* p-privacy - プライバシーポリシーページ（見出し + 本文・条文はテンプレート直書き）
************************************************************************/
.p-privacy__inner {
  padding-block: 0 56px;
  padding-block: 0 3.5rem;
}

.p-privacy__wrap {
  padding-block: 34px 20px;
  padding-block: 2.125rem 1.25rem;
  padding-inline: 15px;
  padding-inline: .9375rem;
  margin-top: 60px;
  margin-top: 3.75rem;
  border-radius: .625rem;
  background-color: #f0efeb;
}

.p-privacy__body {
  color: #3d3d3d;
  font-size: 14px;
  font-size: .875rem;
  letter-spacing: .08em;
  line-height: 1.8;
}

.p-privacy__body p {
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}

.p-privacy__body h2 {
  font-weight: 700;
}

.p-privacy__body ul {
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}

.p-privacy__body li {
  position: relative;
  text-indent: 1em;
}

.p-privacy__body li::before {
  position: absolute;
  left: -1em;
  content: '・';
}

.p-privacy__body a:not([class]) {
  color: #3d3d3d;
  text-decoration: underline;
}

/************************************************************************
* p-service-camera - カメラサービス部門ページ（サービス下層）
* 親: service / スラッグ: service-camera
************************************************************************/
.p-service-camera__inner {
  padding-bottom: 47px;
  padding-bottom: 2.9375rem;
}

.p-service-camera__header {
  gap: 9px;
  gap: .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;
}

.p-service-camera__parent {
  color: inherit;
  text-decoration: none;
}

.p-service-camera__parent:hover {
  opacity: .8;
}

.p-service-camera__title {
  color: #000;
  font-family: 'Hina Mincho', serif;
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: .1em;
  line-height: 1.45;
}

.p-service-camera__title--small {
  font-size: 14px;
  font-size: .875rem;
}

.p-service-camera__fv {
  margin-inline: auto;
  aspect-ratio: 1000/500;
  margin-top: 9px;
  margin-top: .5625rem;
  border-radius: .625rem;
  width: 100%;
  max-width: 1000px;
  max-width: 62.5rem;
  overflow: hidden;
}

.p-service-camera__fv img {
  vertical-align: top;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-service-camera__intro {
  padding-block: 30px 36px;
  padding-block: 1.875rem 2.25rem;
  padding-inline: 15px;
  padding-inline: .9375rem;
  margin-top: 30px;
  margin-top: 1.875rem;
  border-radius: .625rem;
  background-color: #f0efeb;
  text-align: left;
}

.p-service-camera__heading {
  font-family: 'Hina Mincho', serif;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: .1em;
  line-height: 1.4375;
}

.p-service-camera__text {
  margin-top: 21px;
  margin-top: 1.3125rem;
  font-size: 14px;
  font-size: .875rem;
  letter-spacing: .08em;
  line-height: 1.8125;
}

.p-service-camera__text + .p-service-camera__text {
  margin-top: 16px;
  margin-top: 1rem;
}

.p-service-camera__anchors {
  margin-top: 35px;
  margin-top: 2.1875rem;
}

.p-service-camera__anchor-list {
  row-gap: 8px;
  row-gap: .5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: .625rem;
  -moz-column-gap: .625rem;
  column-gap: .625rem;
  list-style: none;
}

.p-service-camera__anchor-btn {
  display: inline-block;
  width: 100%;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.9285714286;
}

.p-service-camera__section {
  padding-block: 15px 50px;
  padding-block: .9375rem 3.125rem;
  padding-inline: 14px;
  padding-inline: .875rem;
  margin-top: 40px;
  margin-top: 2.5rem;
  border-radius: .625rem;
  background-color: #fff;
}

.p-service-camera__section-title {
  display: grid;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 80px;
  min-height: 5rem;
  font-family: 'Hina Mincho', serif;
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: .1em;
  line-height: 1.45;
}

.p-service-camera__section-intro {
  margin-top: 24px;
  margin-top: 1.5rem;
  color: #3d3d3d;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.8571428571;
}

/* 修理の流れフロー（ブロック＋ブロックで margin-top、下矢印は次のブロックの疑似要素） */
.p-service-camera__flow-block {
  position: relative;
}

.p-service-camera__flow-block + .p-service-camera__flow-block {
  margin-top: 63px;
  margin-top: 3.9375rem;
}

.p-service-camera__flow-block + .p-service-camera__flow-block::before {
  aspect-ratio: 1;
  display: block;
  position: absolute;
  top: -51px;
  top: -3.1875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: url('../img/common/icon_arrow.svg') center no-repeat;
  background-size: contain;
  width: 41px;
  width: 2.5625rem;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  content: '';
}

.p-service-camera__flow-head {
  padding-inline: 16px;
  padding-inline: 1rem;
  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: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  background-color: #d9d9d9;
  min-height: 70px;
  min-height: 4.375rem;
  text-align: center;
}

.p-service-camera__flow-icon {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  vertical-align: top;
  margin-bottom: -5px;
  margin-bottom: -.3125rem;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-service-camera__flow-icon--1 {
  aspect-ratio: 39/29;
  width: 24px;
  width: 1.5rem;
}

.p-service-camera__flow-icon--2 {
  aspect-ratio: 28/36;
  width: 20px;
  width: 1.25rem;
}

.p-service-camera__flow-icon--3 {
  aspect-ratio: 36/38;
  width: 26px;
  width: 1.625rem;
}

.p-service-camera__flow-icon--4 {
  aspect-ratio: 32/30;
  width: 25px;
  width: 1.5625rem;
}

.p-service-camera__flow-icon--5 {
  aspect-ratio: 1;
  width: 23px;
  width: 1.4375rem;
}

.p-service-camera__flow-icon--6 {
  aspect-ratio: 48/35;
  width: 28px;
  width: 1.75rem;
}

.p-service-camera__flow-head-text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 2.5;
}

.p-service-camera__flow-body {
  padding-block: 12px 26px;
  padding-block: .75rem 1.625rem;
  padding-inline: 10px;
  padding-inline: .625rem;
  border-right: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  border-left: 1px solid #d9d9d9;
}

.p-service-camera__flow-intro {
  color: #3d3d3d;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.7142857143;
}

.p-service-camera__flow-intro-small {
  font-size: 12px;
  font-size: .75rem;
  line-height: 2;
}

.p-service-camera__flow-text {
  color: #3d3d3d;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.7142857143;
}

.p-service-camera__flow-actions {
  margin-inline: auto;
  margin-top: 12px;
  margin-top: .75rem;
  width: 297px;
  width: 18.5625rem;
}

.p-service-camera__flow-actions .c-link-btn {
  width: 100%;
}

.p-service-camera__flow-tel {
  margin-top: 12px;
  margin-top: .75rem;
  font-family: 'Hina Mincho', serif;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.6;
  text-align: center;
}

.p-service-camera__flow-tel-label {
  margin-right: 8px;
  margin-right: .5rem;
}

.p-service-camera__flow-tel-number {
  color: #3d3d3d;
  font-family: 'Hina Mincho', serif;
  font-size: 32px;
  font-size: 2rem;
  text-decoration: none;
}

.p-service-camera__flow-tel-number:hover {
  opacity: .7;
}

.p-service-camera__flow-business {
  margin-top: 10px;
  margin-top: .625rem;
  font-family: 'Hina Mincho', serif;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.40625;
  text-align: center;
}

.p-service-camera__img {
  aspect-ratio: 2/1;
  margin-top: 40px;
  margin-top: 2.5rem;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-service-camera__flow-store {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.8;
  text-align: center;
}

.p-service-camera__flow-store-link {
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  text-decoration: underline;
}

.p-service-camera__model-list {
  margin-top: 32px;
  margin-top: 2rem;
}

.p-service-camera__model-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #d9d9d9;
  border: .0625rem solid #d9d9d9;
}

.p-service-camera__model-row + .p-service-camera__model-row {
  margin-top: 6px;
  margin-top: .375rem;
}

.p-service-camera__model-row--head {
  border: none;
  background-color: #eee;
  font-weight: 700;
}

.p-service-camera__model-maker {
  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-right: 1px solid #d9d9d9;
  width: 31.0447761194%;
  min-height: 80px;
  min-height: 5rem;
  font-weight: 700;
}

.p-service-camera__model-row--head .p-service-camera__model-maker {
  border-right: 1px solid #fff;
  min-height: 32px;
  min-height: 2rem;
  font-size: 12px;
  font-size: .75rem;
}

.p-service-camera__model-name {
  padding-inline: 10px 3px;
  padding-inline: .625rem .1875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
  min-height: 80px;
  min-height: 5rem;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.6;
}

.p-service-camera__model-row--head .p-service-camera__model-name {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 32px;
  min-height: 2rem;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 700;
}

.p-service-camera__model-row--head .p-service-camera__model-maker,
.p-service-camera__model-row--head .p-service-camera__model-name {
  padding-block: initial;
  padding-inline: initial;
  line-height: 2.5;
  text-align: center;
}

.p-service-camera__section-note {
  margin-top: 44px;
  margin-top: 2.75rem;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.8;
}

.p-service-camera__section-title-sub {
  display: block;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
  font-size: 14px;
  font-size: .875rem;
}

/* 料金表セクション：中見出しブロック（複数続く） */
.p-service-camera__price-block + .p-service-camera__price-block {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-service-camera__price-block-head {
  gap: 17px;
  gap: 1.0625rem;
  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;
  background-color: #d9d9d9;
  padding-left: 36px;
  padding-left: 2.25rem;
  min-height: 70px;
  min-height: 4.375rem;
}

.p-service-camera__price-block-icon {
  aspect-ratio: 1;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  vertical-align: top;
  width: 27px;
  width: 1.6875rem;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-service-camera__price-block-title {
  font-family: 'Hina Mincho', serif;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5;
}

.p-service-camera__price-block-subtitle {
  display: block;
  font-size: 12px;
  font-size: .75rem;
}

.p-service-camera__price-block-body {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-service-camera__price-block-text {
  padding-inline: 10px;
  padding-inline: .625rem;
  color: #3d3d3d;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.8571428571;
}

/* 料金一覧（dl・横並び） */
.p-service-camera__price-list {
  margin-inline: 0;
  margin-top: 20px;
  margin-top: 1.25rem;
  padding: 0;
}

.p-service-camera__price-row {
  gap: 8px;
  gap: .5rem;
  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: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border: 1px solid #d9d9d9;
  border: .0625rem solid #d9d9d9;
}

.p-service-camera__price-row + .p-service-camera__price-row {
  margin-top: 10px;
  margin-top: .625rem;
}

.p-service-camera__price-term {
  padding-block: 12.8px;
  padding-block: .8rem;
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 9px;
  padding-left: .5625rem;
  min-width: 0;
  min-height: 80px;
  min-height: 5rem;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.8;
}

.p-service-camera__price-term.p-service-camera__price-term--row {
  padding-left: 1em;
}

.p-service-camera__price-term-sub {
  font-size: 13px;
  font-size: .8125rem;
  font-weight: 500;
}

.p-service-camera__price-value {
  padding-block: 12.8px;
  padding-block: .8rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;

  /* 親rowの高さいっぱいに伸ばす（align-items: center を上書き） */
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  border-left: 1px solid #d9d9d9;
  border-left: .0625rem solid #d9d9d9;
  width: 114px;
  width: 7.125rem;
  min-height: 80px;
  min-height: 5rem;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.6;
}

.p-service-camera__price-value:has(.p-service-camera__price-value-row) {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-service-camera__price-value .p-service-camera__price-value-note {
  font-size: 10px;
  font-size: .625rem;
}

.p-service-camera__price-value-unit {
  padding-top: 2.4px;
  padding-top: .15rem;
  font-size: 12px;
  font-size: .75rem;
}

/* 作業内訳例 */
.p-service-camera__work-breakdown {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-service-camera__work-breakdown-inner {
  padding-inline: 15px;
  padding-inline: .9375rem;
  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: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.p-service-camera__work-breakdown-title {
  font-family: 'Hina Mincho', serif;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2.3;
}

.p-service-camera__work-breakdown-list {
  margin-top: 16px;
  margin-top: 1rem;
  list-style: none;
}

.p-service-camera__work-breakdown-item {
  position: relative;
  -webkit-padding-start: 1em;
  padding-inline-start: 1em;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.8571428571;
}

.p-service-camera__work-breakdown-item::before {
  position: absolute;
  left: 0;
  content: '・';
}

.p-service-camera__work-breakdown-item:first-child {
  margin-top: 0;
}

.p-service-camera__work-breakdown-note {
  margin-top: 12px;
  margin-top: .75rem;
  color: #3d3d3d;
  font-size: 12px;
  font-size: .75rem;
  line-height: 1.8333333333;
}

.p-service-camera__work-breakdown-img {
  aspect-ratio: 1;
  margin-inline: auto;
  margin-top: 20px;
  margin-top: 1.25rem;
  width: 200px;
  width: 12.5rem;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-service-camera__work-breakdown-img img {
  vertical-align: top;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

/* 修理 & 保証セクション：中見出し（下線）、リスト、保証ブロック */
.p-service-camera__warranty-subtitle {
  display: inline-block;
  position: relative;
  color: #000;
  font-family: 'Hina Mincho', serif;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2.6666666667;
}

.p-service-camera__warranty-subtitle::before {
  position: absolute;
  bottom: 12px;
  bottom: .75rem;
  left: 0;
  background-color: #000;
  width: 100%;
  height: 1px;
  height: .0625rem;
  content: '';
}

.p-service-camera__warranty-list + .p-service-camera__warranty-subtitle {
  margin-top: 38px;
  margin-top: 2.375rem;
}

.p-service-camera__warranty-list {
  margin-top: 20px;
  margin-top: 1.25rem;
  color: #3d3d3d;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.8571428571;
}

.p-service-camera__warranty-item {
  margin-top: 12px;
  margin-top: .75rem;
}

.p-service-camera__warranty-item:first-child {
  margin-top: 0;
}

.p-service-camera__warranty-block {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-service-camera__warranty-block-title {
  margin: 0;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.875;
}

.p-service-camera__warranty-block-text {
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.875;
}

/************************************************************************
* p-service-metal - メタルアート部門ページ（サービス下層）
* 親: service / スラッグ: service-metal-art
************************************************************************/
.p-service-metal__inner {
  padding-bottom: 47px;
  padding-bottom: 2.9375rem;
}

.p-service-metal__header {
  gap: 9px;
  gap: .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;
}

.p-service-metal__parent {
  color: inherit;
  text-decoration: none;
}

.p-service-metal__parent:hover {
  opacity: .8;
}

.p-service-metal__title {
  color: #000;
  font-family: 'Hina Mincho', serif;
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: .1em;
  line-height: 1.45;
}

.p-service-metal__title--small {
  font-size: 14px;
  font-size: .875rem;
}

.p-service-metal__fv {
  margin-inline: auto;
  aspect-ratio: 1000/500;
  margin-top: 9px;
  margin-top: .5625rem;
  border-radius: .625rem;
  width: 100%;
  max-width: 1000px;
  max-width: 62.5rem;
  overflow: hidden;
}

.p-service-metal__fv img {
  vertical-align: top;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-service-metal__intro {
  padding-block: 30px 36px;
  padding-block: 1.875rem 2.25rem;
  padding-inline: 15px;
  padding-inline: .9375rem;
  margin-top: 30px;
  margin-top: 1.875rem;
  border-radius: .625rem;
  background-color: #f0efeb;
  text-align: center;
}

.p-service-metal__heading {
  font-family: 'Hina Mincho', serif;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: .1em;
  line-height: 1.4375;
  white-space: nowrap;
}

.p-service-metal__text {
  margin-top: 21px;
  margin-top: 1.3125rem;
  font-size: 14px;
  font-size: .875rem;
  letter-spacing: .08em;
  line-height: 1.8125;
  text-align: left;
}

/* 製品一覧（4ブロック共通の見た目） */
.p-service-metal__products {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-service-metal__product-block {
  padding-block: 14px 41px;
  padding-block: .875rem 2.5625rem;
  padding-inline: 15px;
  padding-inline: .9375rem;
  border-radius: .625rem;
  background-color: #fff;
}

.p-service-metal__product-block.p-service-metal__product-block--row {
  gap: 44px;
  gap: 2.75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-service-metal__product-col-wrap {
  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-service-metal__product-col {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 100%;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
}

.p-service-metal__product-col.p-service-metal__product-col--row {
  gap: 80;
  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;
}

.p-service-metal__product-img {
  margin-top: initial;
}

.p-service-metal__product-title {
  font-family: 'Hina Mincho', serif;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 3.3333333333;
}

.p-service-metal__product-title.p-service-metal__product-title--pewter {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 4;
}

.p-service-metal__product-title.p-service-metal__product-title--col {
  line-height: 1.8;
}

.p-service-metal__product-desc {
  margin-top: 29px;
  margin-top: 1.8125rem;
  font-size: 14px;
  font-size: .875rem;
  letter-spacing: .08em;
  line-height: 1.8;
}

.p-service-metal__product-title + .p-service-metal__product-desc {
  margin-top: initial;
}

.p-service-metal__product-card-wrap {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-service-metal__product-card-wrap.p-service-metal__product-card-wrap--row {
  row-gap: 16px;
  row-gap: 1rem;
  display: grid;
  grid-template-columns: 1fr;
  -webkit-column-gap: 1rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
}

/* 横長カード（ピューターシート側など1枚のみのとき） */
.p-service-metal__product-card.p-service-metal__product-card--horizontal {
  width: 100%;
}

.p-service-metal__product-card-head {
  padding-inline: 12px;
  padding-inline: .75rem;
  background-color: #d9d9d9;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2.2222222222;
  text-align: center;
}

/* 「サイズ」の文字のみ小さく */
.p-service-metal__product-card-headtext {
  font-size: 14px;
  font-size: .875rem;
}

.p-service-metal__product-card-body {
  padding-block: 3px 5px;
  padding-block: .1875rem .3125rem;
  padding-inline: 46px 15px;
  padding-inline: 2.875rem .9375rem;
  border-right: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  border-left: 1px solid #d9d9d9;
}

.p-service-metal__product-card-list {
  gap: 2px;
  gap: .125rem;
  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-service-metal__product-card-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-service-metal__product-card-label {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 55px;
  -webkit-flex: 0 0 3.4375rem;
  -ms-flex: 0 0 55px;
  -ms-flex: 0 0 3.4375rem;
  flex: 0 0 55px;
  flex: 0 0 3.4375rem;
  padding-top: 8.4px;
  padding-top: .525rem;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 700;
  line-height: 1.8;
}

.p-service-metal__product-card-value {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  line-height: 1.875;
}

.p-service-metal__product-card-unit {
  font-size: 12px;
  font-size: .75rem;
}

.p-service-metal__product-img {
  aspect-ratio: 420/310;
  width: 100%;
  max-width: 420px;
  max-width: 26.25rem;
  overflow: hidden;
}

.p-service-metal__product-block:first-of-type .p-service-metal__product-img {
  margin-top: 13px;
  margin-top: .8125rem;
}

.p-service-metal__product-block:nth-of-type(3) .p-service-metal__product-img {
  margin-top: 24px;
  margin-top: 1.5rem;
}

/* 画像2枚並び（2つ目ブロックなど） */
.p-service-metal__product-imgs {
  gap: 16px;
  gap: 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 13px;
  margin-top: .8125rem;
  width: 100%;
  max-width: 420px;
  max-width: 26.25rem;
}

.p-service-metal__product-imgs .p-service-metal__product-img {
  aspect-ratio: 200/310;
  width: 100%;
}

.p-service-metal__product-block + .p-service-metal__product-block {
  margin-top: 44px;
  margin-top: 2.75rem;
}

/* ツールブロック（.p-service-metal__product-cardの見た目を参考・中身は50%テキスト/50%画像） */
.p-service-metal__tools {
  padding-block: 14px 43px;
  padding-block: .875rem 2.6875rem;
  padding-inline: 15px;
  padding-inline: .9375rem;
  margin-top: 60px;
  margin-top: 3.75rem;
  border-radius: .625rem;
  background-color: #fff;
}

.p-service-metal__tools-title {
  margin-top: 23px;
  margin-top: 1.4375rem;
  font-family: 'Hina Mincho', serif;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: .1em;
  line-height: 1.45;
  text-align: center;
}

.p-service-metal__tool-cards {
  row-gap: 16px;
  row-gap: 1rem;
  display: grid;
  grid-template-columns: 1fr;
  -webkit-column-gap: 2.5rem;
  -moz-column-gap: 2.5rem;
  column-gap: 2.5rem;
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-service-metal__tool-card-head {
  padding-inline: 12px;
  padding-inline: .75rem;
  background-color: #d9d9d9;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 2.5;
  text-align: center;
}

.p-service-metal__tool-card-head span {
  font-weight: 400;
}

.p-service-metal__tool-card-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  border-right: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  border-left: 1px solid #d9d9d9;
}

.p-service-metal__tool-card-text {
  padding-block: 9px 8px;
  padding-block: .5625rem .5rem;
  padding-left: 6px;
  padding-left: .375rem;
  width: 100%;
}

.p-service-metal__tool-card-list {
  margin: 0;
}

.p-service-metal__tool-card-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin-top: 2px;
  margin-top: .125rem;
  padding-left: 41px;
  padding-left: 2.5625rem;
}

.p-service-metal__tool-card-row:first-child {
  margin-top: 0;
}

.p-service-metal__tool-card-label {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 47px;
  -webkit-flex: 0 0 2.9375rem;
  -ms-flex: 0 0 47px;
  -ms-flex: 0 0 2.9375rem;
  flex: 0 0 47px;
  flex: 0 0 2.9375rem;
  padding-top: 8.4px;
  padding-top: .525rem;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 700;
  line-height: 1.8;
}

.p-service-metal__tool-card-value {
  color: #3d3d3d;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: .04em;
  line-height: 1.875;
  white-space: nowrap;
}

/* 画像エリア：右50%、高さ101px固定・幅は自動で縦横比維持・幅が狭いものは右寄せ */
.p-service-metal__tool-card-img-wrap {
  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: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: 100%;
  min-height: 100px;
  min-height: 6.25rem;
}

.p-service-metal__tool-card-img-wrap img {
  vertical-align: middle;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

/************************************************************************
* p-service - サービスページ（FVスライダー・概要・部門セクション）
************************************************************************/
.p-service__inner {
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}

.p-service__fv {
  margin-top: 30px;
  margin-top: 1.875rem;
  border-radius: .625rem;
  overflow: hidden;
}

/* サービスページFV：.l-container内・スライダーサイズ1000*500 */
.p-service__fv.p-fv--service .p-fv__inner {
  max-width: 1000px;
  max-width: 62.5rem;
}

.p-service__fv.p-fv--service .p-fv__swiper-slide {
  aspect-ratio: 1000/500;
  width: 350px;
  width: 21.875rem;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-service__overview {
  padding-block: 29px 19px;
  padding-block: 1.8125rem 1.1875rem;
  padding-inline: 15px;
  padding-inline: .9375rem;
  margin-top: 24px;
  margin-top: 1.5rem;
  border-radius: .625rem;
  background-color: #f0efeb;
  font-size: 14px;
  font-size: .875rem;
}

.p-service__overview-text {
  line-height: 1.8;
}

.p-service__overview-text--bold {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
}

/* サービス項目一覧（各部門へのリンクをまとめるコンテナ） */
.p-service__list {
  margin-top: 32px;
  margin-top: 2rem;
}

/* サービス項目＝各子ページへのリンクカード（要素全体がリンク・白背景） */
.p-service__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  text-decoration: none;
}

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

.p-service__item-body {
  padding-block: 24px 28px;
  padding-block: 1.5rem 1.75rem;
  padding-inline: 15px;
  padding-inline: .9375rem;
  background-color: #fff;
  width: 100%;
}

.p-service__item-title {
  display: inline-block;
  position: relative;
  z-index: 2;
  font-family: 'Hina Mincho', serif;
  font-size: 30px;
  font-size: 1.875rem;
  letter-spacing: .1em;
  line-height: 1.45;
}

.p-service__item-title::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
  background-color: #f5f5f5;
  width: 100%;
  height: 14px;
  height: .875rem;
  content: '';
}

.p-service__item-title--small {
  font-size: 20px;
  font-size: 1.25rem;
}

.p-service__item-text {
  margin-top: 18px;
  margin-top: 1.125rem;
  font-size: 14px;
  font-size: .875rem;
  letter-spacing: .08em;
  line-height: 1.8;
  text-align: justify;
}

.p-service__item-link {
  display: inline-block;
  margin-top: 24px;
  margin-top: 1.5rem;
  font-family: 'minerva-modern', sans-serif;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.p-service__item-img {
  aspect-ratio: 4/3;
  margin-top: 24px;
  margin-top: 1.5rem;
  width: 100%;
  height: auto;
  overflow: clip;
  -o-object-fit: cover;
  object-fit: cover;
}

/* 親でサイズを決めているため、imgは親に合わせて表示 */
.p-service__item-img img {
  vertical-align: top;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.is-teaser-page header {
  display: none;
}

.is-teaser-page footer {
  display: none;
}

.is-teaser-page .has-global-padding {
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
}

.is-teaser-page body {
  font-family: 'Noto Sans', sans-serif;
}

.is-teaser-page .has-global-padding > .alignfull {
  margin-right: 0;
  margin-left: 0;
}

.is-teaser-page main > div {
  margin-inline: auto !important;
  display: grid;
  width: 100%;
  max-width: 645px;
}

.is-teaser-page main {
  place-content: center;
  margin-top: 0 !important;
  background: url(http://artfriends.co.jp/wp-content/uploads/2025/12/bg_pc.png) top center/cover no-repeat;
  height: 100dvh;
  min-height: 1000px;
}

.is-teaser-page .entry-content {
  width: 100%;
}

.is-teaser-page .is-layout-constrained {
  -webkit-margin-before: 0;
  margin-block-start: 0;
}

.is-teaser-page .wp-block-post-title {
  clip: rect(0, 0, 0, 0);
  position: absolute;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
}

.is-teaser-page .p-top__content {
  padding-block: 61px 78px;
  background-color: #fff;
}

.is-teaser-page .p-top__img {
  width: 193px;
}

.is-teaser-page .p-top__lead-wrap {
  margin-top: 52px;
}

.is-teaser-page .p-top__lead {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: .06em;
  line-height: 1.375;
}

.is-teaser-page .p-top__body {
  gap: 19.2px;
  gap: 1.2rem;
  margin-top: 52px;
}

.is-teaser-page .p-top__body-top {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: .06em;
  line-height: 1.375;
}

.is-teaser-page .p-top__body-bottom {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: .06em;
  line-height: 1.375;
}

.is-teaser-page .p-top__url-wrap {
  margin-top: 34px;
}

.is-teaser-page .p-top__url {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: .06em;
  line-height: 1.35;
}

.is-teaser-page .p-top__url a {
  color: #111 !important;
  text-decoration: underline !important;
}

/************************************************************************
* p-top-company - トップページ 会社案内セクション
* 上部: 白余白14px → 背景画像（max-width 1440px のインナー）→ 白余白14px
* 下部: l-container（見出し・キャッチ・説明・c-link-btn--company ボタン2つ）
* ボタンレイアウトは p-contact-section を参考
************************************************************************/
.p-top-company {
  background-color: #f8f7f3;
}

.p-top-company__white {
  background-color: #fff;
  width: 100%;
  height: 8px;
  height: .5rem;
}

.p-top-company__white--bottom {
  display: none;
}

.p-top-company__bg-inner {
  margin-inline: auto;
  max-width: 1440px;
  max-width: 90rem;
}

.p-top-company__bg {
  aspect-ratio: 390/292;
  opacity: .4;
  width: 100%;
  overflow: hidden;
}

.p-top-company__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.p-top-company__inner {
  padding-block: 15px 80px;
  padding-block: .9375rem 5rem;
}

.p-top-company__text {
  margin-top: 24px;
  margin-top: 1.5rem;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.8;
  text-align: center;
}

.p-top-company__buttons {
  gap: 24px;
  gap: 1.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-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 24px;
  margin-top: 1.5rem;
  list-style: none;
}

.p-top-company__buttons-item {
  margin-inline: auto;
  width: 100%;
  max-width: 297px;
  max-width: 18.5625rem;
  text-align: center;
}

.p-top-company__buttons-item .c-link-btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

/************************************************************************
* p-top-greeting
************************************************************************/
.p-top-greeting__inner {
  padding-bottom: 88px;
  padding-bottom: 5.5rem;
}

.p-top-greeting__title {
  font-family: 'Hina Mincho', serif;
  font-size: 40px;
  font-size: 2.5rem;
  letter-spacing: .1em;
  line-height: 1.625;
}

.p-top-greeting__top {
  gap: 40px;
  gap: 2.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: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.p-top-greeting__text {
  line-height: 2;
}

.p-top-greeting__btn {
  margin-top: 34px;
  margin-top: 2.125rem;
}

.p-top-greeting__img {
  position: relative;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-top-greeting__img--1 {
  aspect-ratio: 208/313;
  width: 208px;
  width: 13rem;
}

.p-top-greeting__img--2 {
  aspect-ratio: 200/267;
  width: 120px;
  width: 7.5rem;
}

.p-top-greeting__img--3 {
  aspect-ratio: 255/192;
  margin-left: 38px;
  margin-left: 2.375rem;
  width: 255px;
  width: 15.9375rem;
}

.p-top-greeting__bottom {
  gap: 79px;
  gap: 4.9375rem;
  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;
  margin-top: -212px;
  margin-top: -13.25rem;
}

.p-top-greeting__img--1::before,
.p-top-greeting__img--3::before {
  position: absolute;
  z-index: -1;
  background-color: #fff;
  pointer-events: none;
  content: '';
}

.p-top-greeting__img--1::before {
  aspect-ratio: 209/311;
  bottom: -34px;
  bottom: -2.125rem;
  left: -46px;
  left: -2.875rem;
  width: 209px;
  width: 13.0625rem;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-top-greeting__img--3::before {
  aspect-ratio: 257/154;
  bottom: -28px;
  bottom: -1.75rem;
  left: -38px;
  left: -2.375rem;
  width: 257px;
  width: 16.0625rem;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

/************************************************************************
* p-top-news - トップページ News セクション（見出し・View more・投稿一覧 最新3件）
* インナーは .l-container を使用
************************************************************************/
.p-top-news {
  padding-block: 60px;
  padding-block: 3.75rem;
}

.p-top-news__wrap {
  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-top-news__head {
  display: contents;
}

.p-top-news__btn {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
  margin-top: 32px;
  margin-top: 2rem;
  margin-right: 15px;
  margin-right: .9375rem;
  margin-left: auto;
  min-width: 122px;
  min-width: 7.625rem;
}

.p-top-news__list {
  margin-top: 10px;
  margin-top: .625rem;
  width: 100%;
}

/************************************************************************
* p-top-service（セクション専用inner・wrap使用、.l-containerは使用しない）
************************************************************************/
.p-top-service__bg {
  padding-block: 20px 43px;
  padding-block: 1.25rem 2.6875rem;
  padding-inline: 15px;
  padding-inline: .9375rem;
  margin-inline: auto;
  border-radius: .625rem;
  background-color: #f0efeb;
  width: 100%;
}

.p-top-service__wrap {
  margin-inline: auto;
  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;
  max-width: 1000px;
  max-width: 62.5rem;
}

.p-top-service__body {
  display: contents;
}

.p-top-service__title {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
}

.p-top-service__text {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
  -ms-flex-order: 3;
  order: 3;
  margin-top: 23px;
  margin-top: 1.4375rem;
  width: 100%;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.8;
}

.p-top-service__btn {
  -webkit-box-ordinal-group: 5;
  -webkit-order: 4;
  -ms-flex-order: 4;
  order: 4;
  margin-top: 22px;
  margin-top: 1.375rem;
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 122px;
  min-width: 7.625rem;
}

.p-top-service__img-wrap {
  margin-inline: auto;
  aspect-ratio: 314/312;
  position: relative;
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
  margin-top: 25px;
  margin-top: 1.5625rem;
  width: 314px;
  width: 19.625rem;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-top-service__swiper-slide {
  margin-inline: initial;
  aspect-ratio: 1;
  position: relative;
  width: 418px;
  width: 26.125rem;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-top-service__img {
  aspect-ratio: 1;
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  width: 18.75rem;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-top-service__img::before {
  aspect-ratio: 1;
  position: absolute;
  bottom: -12px;
  bottom: -.75rem;
  left: -14px;
  left: -.875rem;
  z-index: -1;
  background-color: #fff;
  width: 300px;
  width: 18.75rem;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  content: '';
}

.p-top-service__caption {
  position: absolute;
  right: 11px;
  right: .6875rem;
  bottom: 18px;
  bottom: 1.125rem;
  color: #fff;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
  line-height: 1.2142857143;
}

/* =============================
   ナビゲーションボタン
============================= */

/* デフォルトのボタンを初期化 */
.swiper-button-prev::after,
.swiper-button-next::after {
  content: ''; /* デフォルトのものを初期化 */
}

/* 各ボタンのカスタマイズ */
.swiper-button-prev,
.swiper-button-next {
  translate: 0 calc(-50% + 1.25rem);
  aspect-ratio: 1;
  top: 50%;
  background: url(../img/common/icon_next.svg) center center/cover no-repeat;
  width: 20px;
  width: 1.25rem;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.swiper-button-prev {
  left: 20px;
  left: 1.25rem;
}

.swiper-button-next {
  right: 6px;
  right: .375rem;
}

.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-hidden {
  display: none !important;
}

.u-mb-0 {
  margin-bottom: initial !important;
}

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

.u-pl-2em {
  padding-left: 2em;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  position: absolute;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
}

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

  html {
    font-size: 128.2051282051%;
  }
}

@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.4814814815vw;
    font-size: calc(var(--vw-unitless) / 1080 * 100%);
  }

  input::-webkit-input-placeholder,
  textarea::-webkit-input-placeholder {
    font-size: 12px;
    font-size: .75rem;
    line-height: 2.4166666667;
  }

  input::-moz-placeholder,
  textarea::-moz-placeholder {
    font-size: 12px;
    font-size: .75rem;
    line-height: 2.4166666667;
  }

  input::-ms-input-placeholder,
  textarea::-ms-input-placeholder {
    font-size: 12px;
    font-size: .75rem;
    line-height: 2.4166666667;
  }

  input::placeholder,
  textarea::placeholder {
    font-size: 12px;
    font-size: .75rem;
    line-height: 2.4166666667;
  }

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

  .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: 40px;
    padding-left: 40px;
    max-width: 1080px;
  }

  .l-container.l-container--greeting {
    padding-inline: 40px;
    padding-inline: 2.5rem;
    margin-right: initial;
    margin-left: calc(50vw - 33.75rem);
    width: initial;
    max-width: 1220px;
    max-width: 76.25rem;
  }

  .l-container.l-container--service,
  .l-container.l-container--news {
    padding-inline: 20px;
    padding-inline: 1.25rem;
    margin-inline: auto;
    max-width: 1320px;
    max-width: 82.5rem;
  }

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

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

  .c-link-btn__label {
    font-size: 16px;
    font-size: 1rem;
  }

  .c-link-btn__label--main {
    font-size: 18px;
    font-size: 1.125rem;
  }

  .c-link-btn__label--sub {
    margin-top: 6px;
    margin-top: .375rem;
    font-size: 13px;
    font-size: .8125rem;
  }

  .c-link-btn--form {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .c-section-heading__en {
    text-decoration-thickness: 3px;
    text-decoration-thickness: .1875rem;
    text-underline-offset: 6px;
    text-underline-offset: .375rem;
    font-size: 60px;
    font-size: 3.75rem;
    line-height: 1.45;
  }

  .c-section-heading__en::after {
    bottom: 8px;
    bottom: .5rem;
    height: 3px;
    height: .1875rem;
  }

  .c-section-heading__ja {
    margin-top: 3px;
    margin-top: .1875rem;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.4375;
  }

  .c-section-heading--left-pc {
    text-align: left;
  }

  .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-company__inner {
    padding-block: 86px 100px;
    padding-block: 5.375rem 6.25rem;
  }

  .p-company__content {
    margin-top: 52px;
    margin-top: 3.25rem;
  }

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

  .p-company__content-title {
    font-size: 40px;
    font-size: 2.5rem;
  }

  .p-company__content-inner {
    padding-block: 56px 45px;
    padding-block: 3.5rem 2.8125rem;
    padding-inline: 147px 144px;
    padding-inline: 9.1875rem 9rem;
  }

  .p-company__list {
    font-size: 16px;
    font-size: 1rem;
  }

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

  .p-company__list-row + .p-company__list-row {
    margin-top: initial;
  }

  .p-company__list-row {
    gap: 59px;
    gap: 3.6875rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .p-company__term {
    min-width: 150px;
    min-width: 9.375rem;
    text-align: right;
  }

  .p-company__desc.p-company__desc--row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }

  .p-company__desc-small {
    font-size: 12px;
    font-size: .75rem;
  }

  .p-company__map-wrap {
    margin-top: 34px;
    margin-top: 2.125rem;
  }

  .p-company__map-iframe {
    aspect-ratio: 2/1;
  }

  .p-company__link-wrap {
    margin-top: 43px;
    margin-top: 2.6875rem;
  }

  .p-contact-section__white {
    display: none;
  }

  .p-contact-section__inner {
    padding-block: 36px 64px;
    padding-block: 2.25rem 4rem;
  }

  .p-contact-section__intro {
    margin-top: 33px;
    margin-top: 2.0625rem;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.875;
  }

  .p-contact-section__info {
    margin-top: 19px;
    margin-top: 1.1875rem;
  }

  .p-contact-section__tel {
    font-size: 30px;
    font-size: 1.875rem;
  }

  .p-contact-section__tel-number {
    font-size: 50px;
    font-size: 3.125rem;
  }

  .p-contact-section__business {
    margin-top: 19px;
    margin-top: 1.1875rem;
    font-size: 16px;
    font-size: 1rem;
  }

  .p-contact-section__buttons {
    gap: 82px;
    gap: 5.125rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-top: 53px;
    margin-top: 3.3125rem;
  }

  .p-contact__inner {
    padding-block: 86px 34px;
    padding-block: 5.375rem 2.125rem;
  }

  .p-contact__info-section {
    padding-block: 58px 47px;
    padding-block: 3.625rem 2.9375rem;
    padding-inline: 113px;
    padding-inline: 7.0625rem;
    margin-top: 44px;
    margin-top: 2.75rem;
  }

  .p-contact__intro {
    font-size: 16px;
    font-size: 1rem;
  }

  .p-contact__info {
    margin-top: 19px;
    margin-top: 1.1875rem;
  }

  .p-contact__tel {
    font-size: 30px;
    font-size: 1.875rem;
  }

  .p-contact__tel-number {
    font-size: 50px;
    font-size: 3.125rem;
  }

  .p-contact__tel::before {
    bottom: 8px;
    bottom: .5rem;
  }

  .p-contact__business {
    margin-top: 19px;
    margin-top: 1.1875rem;
    font-size: 16px;
    font-size: 1rem;
  }

  .p-contact__form-section.is-confirm-view {
    margin-bottom: 20px;
    margin-bottom: 1.25rem;
  }

  .p-contact__form-inner.p-contact__form-inner--camera {
    padding-bottom: 100px;
    padding-bottom: 6.25rem;
  }

  .p-contact__content {
    padding-block: 56px 60px;
    padding-block: 3.5rem 3.75rem;
    padding-inline: 54px;
    padding-inline: 3.375rem;
  }

  .p-contact__form-title {
    font-size: 28px;
    font-size: 1.75rem;
  }

  .p-footer__inner {
    padding-block: 69px 59px;
    padding-block: 4.3125rem 3.6875rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .p-footer__company-wrap {
    display: contents;
  }

  .p-footer__company {
    display: block;
  }

  .p-footer__logo {
    margin-inline: initial;
  }

  .p-footer__copy {
    -webkit-box-ordinal-group: initial;
    -webkit-order: initial;
    -ms-flex-order: initial;
    order: initial;
    margin-top: 23px;
    margin-top: 1.4375rem;
  }

  .p-footer__sitemap {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-top: 140px;
    margin-top: 8.75rem;
  }

  .p-form {
    margin-top: 24px;
    margin-top: 1.5rem;
  }

  .p-form__required-note {
    font-size: 11px;
    font-size: .6875rem;
  }

  .p-form__list {
    margin-top: 0;
  }

  .p-form__list-item + .p-form__list-item {
    margin-top: 90px;
    margin-top: 5.625rem;
  }

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

  .p-form__item.p-form__item--mt {
    margin-top: 44px;
    margin-top: 2.75rem;
  }

  .p-form__itemHead {
    margin-top: 10px;
    margin-top: .625rem;
  }

  .p-form__list-title + .p-form__item {
    margin-top: 0;
  }

  .p-form__itemBody {
    width: 100%;
    min-width: auto;
  }

  .p-form__label {
    font-size: 16px;
    font-size: 1rem;
  }

  .p-form__footer {
    margin-top: 69px;
    margin-top: 4.3125rem;
  }

  .p-form__confirm-msg {
    margin-top: -43px;
    margin-top: -2.6875rem;
    font-size: 20px;
    font-size: 1.25rem;
    font-weight: 500;
  }

  .p-form__sent-msg.js-sent-msg {
    margin-top: -51px;
    margin-top: -3.1875rem;
    margin-bottom: 15px;
    margin-bottom: .9375rem;
    font-size: 20px;
    font-size: 1.25rem;
    font-weight: 500;
  }

  .p-form__confirm-btns {
    gap: 27px;
    gap: 1.6875rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-top: 39px;
    margin-top: 2.4375rem;
  }

  .p-fv-news {
    padding-block: 28px;
    padding-block: 1.75rem;
  }

  .p-fv-news__item {
    padding-inline: 138px 131px;
    padding-inline: 8.625rem 8.1875rem;
    -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;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .p-fv-news__post-link {
    padding-block: 28px;
    padding-block: 1.75rem;
    -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;
    max-width: initial;
  }

  .p-fv-news__title {
    -webkit-line-clamp: 2;
    margin-top: initial;
    margin-left: 35px;
    margin-left: 2.1875rem;
    padding-bottom: initial;
  }

  .p-fv-news__link {
    padding-block: 28px;
    padding-block: 1.75rem;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    margin-top: 0;
    margin-left: auto;
  }

  .p-fv__swiper-slide {
    aspect-ratio: 1440/600;
    width: 1440px;
    width: 90rem;
  }

  .p-greeting__inner {
    padding-block: 86px 140px;
    padding-block: 5.375rem 8.75rem;
  }

  .p-greeting__fv {
    margin-top: 100px;
    margin-top: 6.25rem;
    width: 1000px;
    width: 62.5rem;
  }

  .p-greeting__heading {
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 1.625;
  }

  .p-greeting__heading-line::before {
    bottom: 8px;
    bottom: .5rem;
  }

  .p-greeting__heading-line.p-greeting__heading-line--pc {
    display: inline-block;
  }

  .p-greeting__heading-line.p-greeting__heading-line--pc::before {
    display: block;
  }

  .p-greeting__heading-line.p-greeting__heading-line--sp {
    display: contents;
  }

  .p-greeting__intro {
    margin-top: 51px;
    margin-top: 3.1875rem;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 3;
    text-align: center;
  }

  .p-greeting__content {
    padding-block: 56px;
    padding-block: 3.5rem;
    padding-inline: 100px;
    padding-inline: 6.25rem;
    margin-top: 69px;
    margin-top: 4.3125rem;
    font-size: 16px;
    font-size: 1rem;
    text-align: initial;
  }

  .p-greeting__signature {
    margin-top: 40px;
    margin-top: 2.5rem;
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-greeting__signature-small {
    font-size: 14px;
    font-size: .875rem;
  }

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

  .p-header {
    padding-block: 28px 21px;
    padding-block: 1.75rem 1.3125rem;
    padding-inline: 80px 75px;
    padding-inline: 5rem 4.6875rem;
  }

  .p-header__logo .p-header__logo-link {
    width: 100px;
    width: 6.25rem;
  }

  .p-header__nav {
    display: block;
    margin-top: 4px;
    margin-top: .25rem;
    margin-left: auto;
  }

  .p-header__nav-list {
    gap: 50px;
    gap: 3.125rem;
  }

  .p-header__nav-link-en {
    font-size: 16px;
    font-size: 1rem;
  }

  .p-header__nav-link-ja {
    margin-top: 12px;
    margin-top: .75rem;
    font-size: 12px;
    font-size: .75rem;
  }

  .p-header__nav-sublink {
    font-size: 12px;
    font-size: .75rem;
  }

  .p-header__nav-summary .p-header__nav-link-ja {
    margin-top: 12px;
    margin-top: .75rem;
  }

  .p-header__drawer {
    display: none;
  }

  .p-inquiry-buttons {
    top: var(--header-height, 60px);
    right: 0;
    bottom: initial;
    left: initial;
    -webkit-transform: initial;
    transform: initial;
  }

  .p-inquiry-buttons__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .p-inquiry-buttons__item {
    margin-top: 0;
  }

  .p-inquiry-buttons__item:not(:first-child) {
    margin-top: 10px;
    margin-top: .625rem;
  }

  .p-inquiry-buttons__link {
    padding-block: 15px 8px;
    padding-block: .9375rem .5rem;
    padding-inline: 10px 8px;
    padding-inline: .625rem .5rem;
    -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;
    border-radius: .5rem 0 0 .5rem;
    width: 60px;
    width: 3.75rem;
    min-height: 200px;
    min-height: 12.5rem;
  }

  .p-inquiry-buttons__text {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-align: start;
  }

  .p-inquiry-buttons__label:nth-of-type(2) {
    margin-top: 9px;
    margin-top: .5625rem;
    -webkit-padding-start: 19px;
    -webkit-padding-start: 1.1875rem;
    padding-inline-start: 19px;
    padding-inline-start: 1.1875rem;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1;
  }

  .p-inquiry-buttons__icon {
    margin-left: 10px;
    margin-left: .625rem;
  }

  .p-news-single__body {
    gap: 80px;
    gap: 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;
    margin-top: 88px;
    margin-top: 5.5rem;
  }

  .p-news-single__aside {
    position: -webkit-sticky;
    position: sticky;
    top: 120px;
    top: 7.5rem;
    width: 420px;
    width: 26.25rem;
  }

  .p-news-single__title {
    margin-top: 12px;
    margin-top: .75rem;
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 1.6666666667;
  }

  .p-news-single__date {
    font-size: 14px;
    font-size: .875rem;
  }

  .p-news-single__main {
    margin-top: initial;
    width: 500px;
    width: 31.25rem;
    font-size: 16px;
    font-size: 1rem;
  }

  .p-news-single__content {
    padding-inline: initial;
    font-size: 16px;
    font-size: 1rem;
  }

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

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

  .p-news-single__content h2 {
    margin-block: 2em 26px;
    margin-block: 2em 1.625rem;
    font-size: 20px;
    font-size: 1.25rem;
    font-weight: 500;
  }

  .p-news-single__content h3 {
    margin-block: 1.8em;
    font-size: 16px;
    font-size: 1rem;
  }

  .p-news-single__content p {
    margin-top: 1.8em;
  }

  .p-news-single__share {
    margin-top: 174px;
    margin-top: 10.875rem;
  }

  .p-news-single__nav {
    margin-top: 155px;
    margin-top: 9.6875rem;
  }

  .p-news-single-related__wrap {
    padding-block: 61px 64px;
    padding-block: 3.8125rem 4rem;
    padding-inline: 20px;
    padding-inline: 1.25rem;
  }

  .p-news-single-related__title {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.45;
  }

  .p-news-single-related__list {
    margin-top: 26px;
    margin-top: 1.625rem;
  }

  .p-news-single-related__nav {
    margin-top: 90px;
    margin-top: 5.625rem;
  }

  .p-news-single-related__nav-list {
    gap: 20px;
    gap: 1.25rem;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .p-news__inner {
    padding-block: 86px 90px;
    padding-block: 5.375rem 5.625rem;
  }

  .p-news__head {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .p-news__nav {
    margin-top: 80px;
    margin-top: 5rem;
    max-width: 60%;
  }

  .p-news__nav-list {
    gap: 20px;
    gap: 1.25rem;
  }

  .p-news__content {
    margin-top: 94px;
    margin-top: 5.875rem;
  }

  .p-news__footer {
    margin-top: 76px;
    margin-top: 4.75rem;
  }

  .page-numbers {
    font-size: 14px;
    font-size: .875rem;
    line-height: 2.1428571429;
  }

  .p-post-list__link {
    gap: 81px;
    gap: 5.0625rem;
    padding-inline: 5px;
    padding-inline: .3125rem;
  }

  .p-post-list__date {
    margin-top: initial;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.1875;
  }

  .p-post-list__title {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.4375;
  }

  .p-privacy__inner {
    padding-block: 86px 100px;
    padding-block: 5.375rem 6.25rem;
  }

  .p-privacy__wrap {
    padding-block: 56px 40px;
    padding-block: 3.5rem 2.5rem;
    padding-inline: 50px;
    padding-inline: 3.125rem;
  }

  .p-privacy__body {
    font-size: 16px;
    font-size: 1rem;
  }

  .p-service-camera__inner {
    padding-block: 86px 140px;
    padding-block: 5.375rem 8.75rem;
  }

  .p-service-camera__header {
    gap: 24px;
    gap: 1.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .p-service-camera__title {
    font-size: 40px;
    font-size: 2.5rem;
  }

  .p-service-camera__title--small {
    font-size: 24px;
    font-size: 1.5rem;
  }

  .p-service-camera__fv {
    margin-top: 100px;
    margin-top: 6.25rem;
  }

  .p-service-camera__intro {
    padding-block: 46px 43px;
    padding-block: 2.875rem 2.6875rem;
    padding-inline: 20px;
    padding-inline: 1.25rem;
    padding-inline: 100px;
    padding-inline: 6.25rem;
    margin-top: 60px;
    margin-top: 3.75rem;
    text-align: center;
  }

  .p-service-camera__heading {
    font-size: 32px;
    font-size: 2rem;
  }

  .p-service-camera__text {
    font-size: 16px;
    font-size: 1rem;
  }

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

  .p-service-camera__anchor-list {
    gap: 12px;
    gap: .75rem;
    grid-template-columns: repeat(4, 1fr);
  }

  .p-service-camera__anchor-btn {
    padding-block: initial;
    font-size: 16px;
    font-size: 1rem;
    line-height: 3;
  }

  .p-service-camera__section {
    padding-block: 45px 60px;
    padding-block: 2.8125rem 3.75rem;
    padding-inline: 50px;
    padding-inline: 3.125rem;
    margin-top: 60px;
    margin-top: 3.75rem;
  }

  .p-service-camera__section-title {
    display: block;
    min-height: 58px;
    min-height: 3.625rem;
    font-size: 40px;
    font-size: 2.5rem;
  }

  .p-service-camera__section-content {
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .p-service-camera__section-intro {
    margin-top: 32px;
    margin-top: 2rem;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.75;
  }

  .p-service-camera__flow-block + .p-service-camera__flow-block {
    margin-top: 60px;
    margin-top: 3.75rem;
  }

  .p-service-camera__flow-head {
    gap: 24px;
    gap: 1.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .p-service-camera__flow-icon {
    margin-bottom: initial;
  }

  .p-service-camera__flow-icon--1 {
    width: 39px;
    width: 2.4375rem;
  }

  .p-service-camera__flow-icon--2 {
    width: 28px;
    width: 1.75rem;
  }

  .p-service-camera__flow-icon--3 {
    width: 36px;
    width: 2.25rem;
  }

  .p-service-camera__flow-icon--4 {
    width: 32px;
    width: 2rem;
  }

  .p-service-camera__flow-icon--5 {
    width: 32px;
    width: 2rem;
  }

  .p-service-camera__flow-icon--6 {
    width: 48px;
    width: 3rem;
  }

  .p-service-camera__flow-head-text {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 3.3333333333;
  }

  .p-service-camera__flow-body {
    padding-block: 25px;
    padding-block: 1.5625rem;
    padding-inline: 40px;
    padding-inline: 2.5rem;
    text-align: center;
  }

  .p-service-camera__flow-intro {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.75;
  }

  .p-service-camera__flow-intro-small {
    font-size: 14px;
    font-size: .875rem;
    line-height: 2;
  }

  .p-service-camera__flow-text {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.75;
  }

  .p-service-camera__flow-actions {
    margin-top: 24px;
    margin-top: 1.5rem;
  }

  .p-service-camera__flow-tel {
    margin-top: 21px;
    margin-top: 1.3125rem;
    font-size: 30px;
    font-size: 1.875rem;
  }

  .p-service-camera__flow-tel-number {
    font-size: 50px;
    font-size: 3.125rem;
  }

  .p-service-camera__flow-business {
    margin-top: 19px;
    margin-top: 1.1875rem;
    font-size: 16px;
    font-size: 1rem;
  }

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

  .p-service-camera__flow-store {
    margin-top: 30px;
    margin-top: 1.875rem;
    font-size: 16px;
    font-size: 1rem;
  }

  .p-service-camera__model-list {
    margin-top: 37px;
    margin-top: 2.3125rem;
  }

  .p-service-camera__model-row {
    min-height: 80px;
    min-height: 5rem;
  }

  .p-service-camera__model-row + .p-service-camera__model-row {
    margin-top: 10px;
    margin-top: .625rem;
  }

  .p-service-camera__model-maker {
    width: 32.2222222222%;
    min-height: initial;
  }

  .p-service-camera__model-row--head .p-service-camera__model-maker {
    font-size: 16px;
    font-size: 1rem;
  }

  .p-service-camera__model-name {
    padding-inline: 33px;
    padding-inline: 2.0625rem;
    min-height: initial;
  }

  .p-service-camera__model-row--head .p-service-camera__model-name {
    font-size: 16px;
    font-size: 1rem;
  }

  .p-service-camera__section-note {
    margin-inline: auto;
    margin-top: 46px;
    margin-top: 2.875rem;
    width: 92.2222222222%;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.8125;
  }

  .p-service-camera__section-title-sub {
    display: inline;
    padding-bottom: initial;
    font-size: 24px;
    font-size: 1.5rem;
  }

  .p-service-camera__price-block + .p-service-camera__price-block {
    margin-top: 62px;
    margin-top: 3.875rem;
  }

  .p-service-camera__price-block-head {
    gap: 31px;
    gap: 1.9375rem;
    padding-inline: 24px;
    padding-inline: 1.5rem;
  }

  .p-service-camera__price-block-icon {
    width: 32px;
    width: 2rem;
  }

  .p-service-camera__price-block-title {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 2.6666666667;
  }

  .p-service-camera__price-block-subtitle {
    display: inline;
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-service-camera__price-block-body {
    margin-top: 20px;
    margin-top: 1.25rem;
    padding-left: 37px;
    padding-left: 2.3125rem;
  }

  .p-service-camera__price-block-text {
    padding-inline: initial;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.9375;
  }

  .p-service-camera__price-list {
    margin-top: 20px;
    margin-top: 1.25rem;
  }

  .p-service-camera__price-term {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 0%;
    -ms-flex: 1 1 0%;
    flex: 1 1 0%;
    -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;
    -webkit-box-pack: initial;
    -webkit-justify-content: initial;
    -ms-flex-pack: initial;
    justify-content: initial;
    padding-left: 37px;
    padding-left: 2.3125rem;
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-service-camera__price-term-sub {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-service-camera__price-value {
    width: 319px;
    width: 19.9375rem;
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-service-camera__price-value .p-service-camera__price-value-note {
    font-size: 14px;
    font-size: .875rem;
  }

  .p-service-camera__price-value-unit {
    padding-top: 4.8px;
    padding-top: .3rem;
    font-size: 14px;
    font-size: .875rem;
  }

  .p-service-camera__work-breakdown-inner {
    padding-inline: 40px;
    padding-inline: 2.5rem;
    -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;
  }

  .p-service-camera__work-breakdown-title {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-service-camera__work-breakdown-list {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-top: 20px;
    margin-top: 1.25rem;
  }

  .p-service-camera__work-breakdown-item {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.8;
  }

  .p-service-camera__work-breakdown-note {
    font-size: 14px;
    font-size: .875rem;
    line-height: 1.7142857143;
  }

  .p-service-camera__work-breakdown-img {
    margin-inline: initial;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-top: initial;
    width: 200px;
    width: 12.5rem;
  }

  .p-service-camera__warranty-subtitle {
    font-size: 30px;
    font-size: 1.875rem;
  }

  .p-service-camera__warranty-subtitle::before {
    bottom: 24px;
    bottom: 1.5rem;
  }

  .p-service-camera__warranty-list {
    margin-top: 20px;
    margin-top: 1.25rem;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.75;
  }

  .p-service-camera__warranty-item {
    margin-top: 1em;
  }

  .p-service-camera__warranty-block {
    margin-top: 32px;
    margin-top: 2rem;
  }

  .p-service-camera__warranty-block-title {
    font-size: 16px;
    font-size: 1rem;
  }

  .p-service-camera__warranty-block-text {
    font-size: 16px;
    font-size: 1rem;
  }

  .p-service-metal__inner {
    padding-block: 86px 140px;
    padding-block: 5.375rem 8.75rem;
  }

  .p-service-metal__header {
    gap: 24px;
    gap: 1.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .p-service-metal__title {
    font-size: 40px;
    font-size: 2.5rem;
  }

  .p-service-metal__title--small {
    font-size: 24px;
    font-size: 1.5rem;
  }

  .p-service-metal__fv {
    margin-top: 100px;
    margin-top: 6.25rem;
  }

  .p-service-metal__intro {
    padding-block: 46px 43px;
    padding-block: 2.875rem 2.6875rem;
    padding-inline: 20px;
    padding-inline: 1.25rem;
    padding-inline: 100px;
    padding-inline: 6.25rem;
    margin-top: 60px;
    margin-top: 3.75rem;
  }

  .p-service-metal__heading {
    font-size: 32px;
    font-size: 2rem;
  }

  .p-service-metal__text {
    font-size: 16px;
    font-size: 1rem;
    text-align: center;
  }

  .p-service-metal__products {
    margin-top: 80px;
    margin-top: 5rem;
  }

  .p-service-metal__product-block {
    padding-block: 32px 40px;
    padding-block: 2rem 2.5rem;
    padding-inline: 40px;
    padding-inline: 2.5rem;
  }

  .p-service-metal__product-block.p-service-metal__product-block--row {
    gap: 80px;
    gap: 5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .p-service-metal__product-block.p-service-metal__product-block--row::after {
    position: absolute;
    top: 51px;
    top: 3.1875rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #696969;
    width: 1px;
    height: calc(100% - 5.75rem);
    content: '';
  }

  .p-service-metal__product-col-wrap {
    gap: 80px;
    gap: 5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .p-service-metal__product-col {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 calc(50% - 2.5rem);
    -ms-flex: 1 1 calc(50% - 2.5rem);
    flex: 1 1 calc(50% - 2.5rem);
  }

  .p-service-metal__product-col.p-service-metal__product-col--pewter {
    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-service-metal__product-col.p-service-metal__product-col--pewter .p-service-metal__product-img {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }

  .p-service-metal__product-title {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 2.6666666667;
    white-space: nowrap;
  }

  .p-service-metal__product-title.p-service-metal__product-title--pewter {
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 2.8571428571;
  }

  .p-service-metal__product-title.p-service-metal__product-title--col {
    line-height: 2.6666666667;
  }

  .p-service-metal__product-desc {
    margin-top: 11px;
    margin-top: .6875rem;
  }

  .p-service-metal__product-img + .p-service-metal__product-desc {
    margin-top: initial;
  }

  .p-service-metal__product-block:first-of-type .p-service-metal__product-desc {
    min-height: 150px;
    min-height: 9.375rem;
  }

  .p-service-metal__product-block:nth-of-type(2) .p-service-metal__product-desc {
    min-height: 75px;
    min-height: 4.6875rem;
  }

  .p-service-metal__product-block:nth-of-type(3) .p-service-metal__product-desc {
    margin-top: 42px;
    margin-top: 2.625rem;
    min-height: 75px;
    min-height: 4.6875rem;
  }

  .p-service-metal__product-block:nth-of-type(4) .p-service-metal__product-desc {
    margin-top: 20px;
    margin-top: 1.25rem;
    min-height: 75px;
    min-height: 4.6875rem;
  }

  .p-service-metal__product-card-wrap {
    margin-top: 33px;
    margin-top: 2.0625rem;
  }

  .p-service-metal__product-block:nth-of-type(3) .p-service-metal__product-card-wrap {
    margin-top: 26px;
    margin-top: 1.625rem;
  }

  .p-service-metal__product-block:nth-of-type(4) .p-service-metal__product-card-wrap {
    margin-top: 68px;
    margin-top: 4.25rem;
  }

  .p-service-metal__product-card-wrap.p-service-metal__product-card-wrap--row {
    row-gap: 27px;
    row-gap: 1.6875rem;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
  }

  .p-service-metal__product-card.p-service-metal__product-card--horizontal .p-service-metal__product-card-body {
    padding-left: initial;
  }

  .p-service-metal__product-card-body {
    padding-block: 2px 3px;
    padding-block: .125rem .1875rem;
    padding-inline: 6px;
    padding-inline: .375rem;
  }

  .p-service-metal__product-card.p-service-metal__product-card--horizontal .p-service-metal__product-card-list {
    margin-inline: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  .p-service-metal__product-block:first-of-type .p-service-metal__product-img {
    margin-top: 27px;
    margin-top: 1.6875rem;
  }

  .p-service-metal__product-block:nth-of-type(3) .p-service-metal__product-img {
    margin-top: initial;
  }

  .p-service-metal__product-imgs {
    gap: 20px;
    gap: 1.25rem;
    margin-top: -30px;
    margin-top: -1.875rem;
    max-width: none;
  }

  .p-service-metal__product-imgs .p-service-metal__product-img {
    width: 200px;
    width: 12.5rem;
  }

  .p-service-metal__product-block + .p-service-metal__product-block {
    margin-top: 60px;
    margin-top: 3.75rem;
  }

  .p-service-metal__tools {
    padding-block: 64px 57px;
    padding-block: 4rem 3.5625rem;
    padding-inline: 40px;
    padding-inline: 2.5rem;
    margin-top: 80px;
    margin-top: 5rem;
  }

  .p-service-metal__tools-title {
    margin-top: initial;
    font-size: 40px;
    font-size: 2.5rem;
    text-align: left;
  }

  .p-service-metal__tool-cards {
    row-gap: 24px;
    row-gap: 1.5rem;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 5rem;
    -moz-column-gap: 5rem;
    column-gap: 5rem;
    margin-top: 45px;
    margin-top: 2.8125rem;
  }

  .p-service-metal__tool-card-body {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .p-service-metal__tool-card-text {
    padding-block: 2px 3px;
    padding-block: .125rem .1875rem;
    padding-left: 14px;
    padding-left: .875rem;
    width: 50%;
  }

  .p-service-metal__tool-card-row {
    padding-left: initial;
  }

  .p-service-metal__tool-card-value.p-service-metal__tool-card-value--small {
    font-size: 14px;
    font-size: .875rem;
    line-height: 2.1428571429;
  }

  .p-service-metal__tool-card-value.p-service-metal__tool-card-value--left {
    margin-left: -5px;
    margin-left: -.3125rem;
  }

  .p-service-metal__tool-card-img-wrap {
    width: 50%;
  }

  .p-service__inner {
    padding-block: 86px 140px;
    padding-block: 5.375rem 8.75rem;
  }

  .p-service__fv {
    margin-top: 100px;
    margin-top: 6.25rem;
  }

  .p-service__fv.p-fv--service .p-fv__swiper-slide {
    width: 1000px;
    width: 62.5rem;
  }

  .p-service__overview {
    padding-block: 42px;
    padding-block: 2.625rem;
    padding-inline: 100px;
    padding-inline: 6.25rem;
    margin-top: 59px;
    margin-top: 3.6875rem;
    font-size: 16px;
    font-size: 1rem;
  }

  .p-service__overview-text--bold {
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-service__list {
    margin-top: 59px;
    margin-top: 3.6875rem;
  }

  .p-service__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .p-service__item + .p-service__item {
    margin-top: 61px;
    margin-top: 3.8125rem;
  }

  .p-service__item-body {
    padding-block: 27px 25px;
    padding-block: 1.6875rem 1.5625rem;
    padding-inline: 37px 33px;
    padding-inline: 2.3125rem 2.0625rem;
    width: 60%;
  }

  .p-service__item-title {
    font-size: 40px;
    font-size: 2.5rem;
  }

  .p-service__item-title--small {
    font-size: 24px;
    font-size: 1.5rem;
  }

  .p-service__item-text {
    margin-top: 34px;
    margin-top: 2.125rem;
    font-size: 16px;
    font-size: 1rem;
  }

  .p-service__item-link {
    margin-top: 39px;
    margin-top: 2.4375rem;
  }

  .p-service__item-img {
    margin-top: 0;
    width: 400px;
    width: 25rem;
  }

  .p-top-company__white {
    height: 14px;
    height: .875rem;
  }

  .p-top-company__white--bottom {
    display: block;
  }

  .p-top-company__bg {
    aspect-ratio: 1440/400;
  }

  .p-top-company__inner {
    padding-block: 60px 76px;
    padding-block: 3.75rem 4.75rem;
  }

  .p-top-company__text {
    margin-top: 33px;
    margin-top: 2.0625rem;
    font-size: 16px;
    font-size: 1rem;
  }

  .p-top-company__buttons {
    gap: 82px;
    gap: 5.125rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-top: 46px;
    margin-top: 2.875rem;
  }

  .p-top-company__buttons-item {
    margin-inline: initial;
  }

  .p-top-greeting__inner {
    padding-block: 42px 101px;
    padding-block: 2.625rem 6.3125rem;
  }

  .p-top-greeting__top {
    gap: initial;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -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: 20px;
    margin-top: 1.25rem;
  }

  .p-top-greeting__text {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 3;
  }

  .p-top-greeting__img--1 {
    aspect-ratio: 400/600;
    width: 400px;
    width: 25rem;
  }

  .p-top-greeting__img--2 {
    width: 200px;
    width: 12.5rem;
  }

  .p-top-greeting__img--3 {
    aspect-ratio: 400/300;
    margin-top: 77px;
    margin-top: 4.8125rem;
    margin-left: initial;
    width: 400px;
    width: 25rem;
  }

  .p-top-greeting__bottom {
    gap: 56px;
    gap: 3.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-top: -47px;
    margin-top: -2.9375rem;
  }

  .p-top-greeting__img--1::before {
    aspect-ratio: 402/597;
    bottom: -134px;
    bottom: -8.375rem;
    left: -108px;
    left: -6.75rem;
    width: 402px;
    width: 25.125rem;
  }

  .p-top-greeting__img--3::before {
    aspect-ratio: 402/242;
    bottom: -45px;
    bottom: -2.8125rem;
    left: -112px;
    left: -7rem;
    width: 402px;
    width: 25.125rem;
  }

  .p-top-news {
    padding-block: 57px 76px;
    padding-block: 3.5625rem 4.75rem;
  }

  .p-top-news__wrap {
    display: contents;
  }

  .p-top-news__head {
    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: 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;
  }

  .p-top-news__btn {
    margin-inline: initial;
    margin-top: 86px;
    margin-top: 5.375rem;
  }

  .p-top-news__list {
    margin-top: 24px;
    margin-top: 1.5rem;
  }

  .p-top-service__bg {
    padding-block: 115px 131px;
    padding-block: 7.1875rem 8.1875rem;
    padding-inline: 20px;
    padding-inline: 1.25rem;
  }

  .p-top-service__wrap {
    gap: 60px;
    gap: 3.75rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -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;
  }

  .p-top-service__body {
    display: block;
  }

  .p-top-service__title {
    -webkit-box-ordinal-group: initial;
    -webkit-order: initial;
    -ms-flex-order: initial;
    order: initial;
  }

  .p-top-service__text {
    -webkit-box-ordinal-group: initial;
    -webkit-order: initial;
    -ms-flex-order: initial;
    order: initial;
    margin-top: 31px;
    margin-top: 1.9375rem;
    width: 511px;
    width: 31.9375rem;
    font-size: 16px;
    font-size: 1rem;
  }

  .p-top-service__btn {
    -webkit-box-ordinal-group: initial;
    -webkit-order: initial;
    -ms-flex-order: initial;
    order: initial;
    margin-top: 116px;
    margin-top: 7.25rem;
  }

  .p-top-service__img-wrap {
    aspect-ratio: 1;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-ordinal-group: initial;
    -webkit-order: initial;
    -ms-flex-order: initial;
    order: initial;
    margin-top: 35px;
    margin-top: 2.1875rem;
    width: 418px;
    width: 26.125rem;
  }

  .p-top-service__img {
    width: 400px;
    width: 25rem;
  }

  .p-top-service__img::before {
    bottom: -18px;
    bottom: -1.125rem;
    left: -18px;
    left: -1.125rem;
    width: 400px;
    width: 25rem;
  }

  .p-top-service__caption {
    right: 6px;
    right: .375rem;
    bottom: 26px;
    bottom: 1.625rem;
  }

  .swiper-button-prev,
  .swiper-button-next {
    translate: 0 calc(-50% + .5625rem);
    width: 20px;
    width: 1.25rem;
  }

  .swiper-button-prev {
    left: 26px;
    left: 1.625rem;
  }

  .u-mr-30 {
    margin-right: -30px !important;
    margin-right: -1.875rem !important;
  }

  .visually-hidden--pc {
    clip: rect(0 0 0 0);
    position: absolute;
    margin: -1px;
    border: 0;
    padding: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
    white-space: nowrap;
  }
}

@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: 1080px) {

  html {
    font-size: 100%;
  }
}

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

  .p-header__nav-list {
    gap: 94px;
    gap: 5.875rem;
  }
}

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

  .is-teaser-page main > div {
    padding-right: 19px !important;
    padding-left: 19px !important;
    width: calc(100vw - 40px);
    max-width: 460px;
  }

  .is-teaser-page main {
    background: url(http://artfriends.co.jp/wp-content/uploads/2025/12/bg_sp.png) top center/cover no-repeat;
    min-height: 812px;
  }

  .is-teaser-page .p-top__content {
    padding-block: 39px 50px;
    padding-inline: 19px;
  }

  .is-teaser-page .p-top__img {
    width: 155px;
  }

  .is-teaser-page .p-top__lead-wrap {
    margin-top: 40px;
  }

  .is-teaser-page .p-top__lead {
    font-size: 18px;
  }

  .is-teaser-page .p-top__body {
    margin-top: 37px;
  }

  .is-teaser-page .p-top__body-top {
    font-size: 14px;
  }

  .is-teaser-page .p-top__body-bottom {
    font-size: 14px;
  }

  .is-teaser-page .p-top__url-wrap {
    margin-top: 37px;
  }

  .is-teaser-page .p-top__url {
    font-size: 16px;
  }

  .u-onlySp {
    display: block;
  }

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

  .visually-hidden--sp {
    clip: rect(0 0 0 0);
    position: absolute;
    margin: -1px;
    border: 0;
    padding: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
    white-space: nowrap;
  }
}

@media (max-width: 500px) {

  html {
    font-size: 4.1025641026vw;
    font-size: calc(var(--vw-unitless) / 390 * 100%);
  }
}

@media (any-hover: hover) {

  a:has(.c-dot):hover .c-dot::before {
    width: 6px;
    width: .375rem;
  }

  a:has(.c-dot):hover .c-dot::after {
    width: 0;
  }

  .c-dot-btn:hover::before {
    width: 6px;
    width: .375rem;
  }

  .c-dot-btn:hover::after {
    width: 0;
  }

  .c-dot-btn:has(:disabled):hover::before {
    width: 12px;
    width: .75rem;
  }

  .c-dot-btn:has(:disabled):hover::after {
    width: 4px;
    width: .25rem;
  }

  .p-service-camera__flow-store-link:hover {
    opacity: .7;
  }

  .p-service__item:hover .p-service__item-img img {
    scale: 1.1;
  }
}
/*# sourceMappingURL=map/style.css.map */