@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Shippori+Mincho:wght@500;600;700&family=Zen+Kaku+Gothic+New:wght@500;700&family=Roboto:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;700&display=swap");
:root {
  --vw375: 0.2666666667vw; /* 100 / 375 */
  --vw600: 0.1666666667vw; /* 100 / 600 */
  --vw768: 0.1302083333vw; /* 100 / 768 */
  --vw1100: 0.0909090909vw; /* 100 / 1100 */
  --vw1440: 0.0694444444vw; /* 100 / 1440 */
  --vw1600: 0.0625vw; /* 100 / 1600 */
}

/* --------------------------------

  CSS Reset

-------------------------------- */
/*! destyle.css v3.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

img {
  max-width: 100%;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* --------------------------------

  共通スタイル

-------------------------------- */
.heading.h2 .en {
  display: inline-block;
  line-height: 1;
  font-size: 6.2rem;
  background: linear-gradient(180deg, #2CBDC5 10.87%, #29A3A9 64.35%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.08em;
  font-weight: 400;
  border-bottom: 1px solid #2CBAC2;
}
@media screen and (min-width: 768px), print {
  .heading.h2 .en {
    font-size: 9.2rem;
  }
}
.heading.h2 .jp {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
  margin-top: 0.5em;
}
@media screen and (min-width: 768px), print {
  .heading.h2 .jp {
    font-size: 3.2rem;
  }
}

.main-heading {
  position: relative;
  color: #333;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.3;
  padding: 0.1em 0 0 0.7em;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 767.98px) {
  .main-heading {
    font-size: 2rem;
  }
}
.main-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.5rem;
  bottom: 0;
  background: #F7931D;
}

/* 共通見出し（h4相当）*/
.main-subheading {
  position: relative;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
  padding-bottom: 0.4em;
  margin-bottom: 1.2em;
  border-bottom: 3px solid #ddd;
}
@media screen and (max-width: 767.98px) {
  .main-subheading {
    font-size: 1.8rem;
  }
}
.main-subheading::before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 70px;
  height: 3px;
  background: #FF9089;
}

/* 共通見出し（h5相当）*/
.main-subsubheading {
  position: relative;
  color: #FF9089;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 1em;
}
@media screen and (max-width: 767.98px) {
  .main-subsubheading {
    font-size: 1.8rem;
  }
}

.common-content:not(:last-child) {
  margin-bottom: 4em;
}
.common-content ul li {
  list-style: disc;
  margin-left: 1.3em;
}
.common-content ul li:not(:last-child) {
  margin-bottom: 1em;
}
.common-content ul li:not(:last-child) ul li {
  margin-top: 0.3em;
  margin-bottom: 0.3em;
}
.common-content ul li:not(:last-child) ol li {
  margin-top: 0.3em;
  margin-bottom: 0.3em;
}
.common-content ul li ul li {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.common-content ul li ul li:first-child {
  margin-top: 0.7em;
  margin-bottom: 0.3em;
}
.common-content ul li ol li {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.common-content ul li ol li:first-child {
  margin-top: 0.7em;
  margin-bottom: 0.3em;
}
.common-content ol li {
  list-style: decimal;
  margin-left: 1.3em;
}
.common-content ol li:not(:last-child) {
  margin-bottom: 1em;
}
.common-content ol li:not(:last-child) ul li {
  margin-top: 0.3em;
  margin-bottom: 0.3em;
}
.common-content ol li:not(:last-child) ol li {
  margin-top: 0.3em;
  margin-bottom: 0.3em;
}
.common-content ol li ul li {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.common-content ol li ul li:first-child {
  margin-top: 0.7em;
  margin-bottom: 0.3em;
}
.common-content ol li ol li {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.common-content ol li ol li:first-child {
  margin-top: 0.7em;
  margin-bottom: 0.3em;
}
.common-content ol > li {
  margin-left: 1.5em !important;
}
.common-content ol.list-number {
  counter-reset: list-counter;
}
.common-content ol.list-number li {
  position: relative;
  padding-left: 1.5em;
  margin-left: 0 !important;
  list-style: none;
}
.common-content ol.list-number li::before {
  counter-increment: list-counter;
  content: counter(list-counter);
  display: inline-block;
  position: absolute;
  top: 0.8rem;
  left: 0;
  border: 1px solid #555;
  border-radius: 50%;
  height: 18px;
  width: 18px;
  color: #333;
  font-size: 1.2rem;
  line-height: 1.5rem;
  text-align: center;
  background-color: transparent;
}
.common-block:not(:last-child) {
  margin-bottom: 4em;
}
.common-container {
  display: flex;
  justify-content: center;
  margin-bottom: 3em;
}
@media screen and (max-width: 1099.98px) {
  .common-container {
    flex-direction: column;
  }
}
.common-main {
  flex: 1;
  margin: 0 0 2em 0;
}
@media screen and (min-width: 1100px), print {
  .common-main {
    margin: 0 3em 0 0;
  }
}
.common-side {
  text-align: center;
}
.common-side img {
  max-width: 100%;
  height: auto;
}
.common-list {
  margin-bottom: 2em;
}
.case-box .common-list {
  margin-bottom: 0;
}
.common-list dl {
  margin-bottom: 2.5em;
}
.common-list dt {
  font-size: 1.8rem;
  margin-bottom: 0.5em;
}
.common-list li {
  line-height: 1.8;
  margin-left: 1.3em;
}
.common-list li:not(:last-child) {
  margin-bottom: 1em;
}
.common-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 3em;
}
.common-table tr th,
.common-table tr td {
  vertical-align: middle;
  padding: 0.9em 0.7em;
  border: 1px solid #CCC;
}
@media screen and (max-width: 767.98px) {
  .common-table tr th,
  .common-table tr td {
    font-size: 1.5rem;
  }
}
.common-table tr th {
  font-weight: 500;
  width: 12em;
  background-color: #f7f7f7;
}
@media screen and (max-width: 479.98px) {
  .common-table tr th {
    width: 6.5em;
  }
}
.common-note {
  font-size: 1.5rem;
}
.common-text {
  line-height: 1.8;
  margin-bottom: 3em;
}
.common-text p:not(:last-child) {
  margin-bottom: 1.5em;
}
.common-heading {
  display: block;
  line-height: 1.2;
  font-size: 3rem;
  padding-bottom: 2rem;
  color: #F7931D;
  text-align: center;
  border-bottom: 1px solid #F7931D;
}
@media screen and (max-width: 1099.98px) {
  .common-heading {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767.98px) {
  .common-heading {
    font-size: 2rem;
    padding-bottom: 1.5rem;
  }
}
@media screen and (max-width: 479.98px) {
  .common-heading {
    font-size: 1.8rem;
  }
}
.common-subheading {
  position: relative;
  font-size: 1.7rem;
  line-height: 1.2;
  padding-left: 1.2em;
  margin-bottom: 1.2em;
}
@media screen and (min-width: 640px), print {
  .common-subheading {
    font-size: 1.8rem;
  }
}
.common-subheading::before {
  content: "";
  position: absolute;
  top: 0.3rem;
  left: 0;
  width: 10px;
  height: 17px;
  background-color: #F7931D;
  transform: skewX(-30deg);
}

/* 注釈（※）用インデント */
.note {
  margin-left: 1em;
  text-indent: -1em;
}

.common-link {
  position: relative;
  display: block;
  line-height: 1.2;
  font-size: 1.6rem;
  font-weight: 500;
  z-index: 0;
}
@media screen and (max-width: 1099.98px) {
  .common-link {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767.98px) {
  .common-link {
    font-size: 1.2rem;
  }
}
.common-link:hover::before {
  background: url("../img/base/icon-arrow_wht.png") no-repeat center/cover;
}
.common-link:hover::after {
  background-color: #fff;
}
.common-link:hover span {
  background-color: #F7931D;
  color: #fff;
}
.common-link span {
  display: block;
  padding: 1.5rem 4em 1.5rem 2rem;
  background-color: #fff;
  color: #F7931D;
  border: 1px solid #F7931D;
  transition-timing-function: ease;
  transition-duration: 0.5s;
  transition-property: color, background-color;
}
@media screen and (max-width: 1099.98px) {
  .common-link span {
    padding: 1.2rem 5.5rem 1.2rem 1.3rem;
  }
}
.common-link::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.5rem);
  right: 1.5rem;
  display: block;
  width: 42px;
  height: 7px;
  background: url("../img/base/icon-arrow_blk.png") no-repeat center/cover;
  transition-timing-function: ease;
  transition-duration: 0.5s;
  transition-property: all;
}
@media screen and (max-width: 1099.98px) {
  .common-link::before {
    width: 35px;
    height: 6px;
    top: calc(50% - 0.4rem);
  }
}
.common-link::after {
  content: "";
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  width: 100%;
  height: 100%;
  border: 1px solid #F7931D;
  background-color: #F7931D;
  z-index: -1;
  transition-timing-function: ease;
  transition-duration: 0.5s;
  transition-property: background-color, border-color;
}

.link-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  height: 60px;
  padding: 0 44px 0 30px;
  background: linear-gradient(90deg, #FF8C42, #FFA726);
  border-radius: 999px;
  color: #fff;
  line-height: 1.2;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  transition: opacity 0.3s ease;
}
.link-button::after {
  content: "›";
  position: absolute;
  top: 50%;
  right: 27px;
  transform: translateY(-52%);
  font-size: 2.2rem;
  line-height: 1;
}
.link-button:hover {
  opacity: 0.8;
}

/* 共通リンクボタン（ホバー）*/
/* コンテンツ画面中央寄せ */
.inner {
  position: relative;
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
}
.inner::after {
  content: "";
  display: table;
  clear: both;
}

/* アンカー位置調整 */
.anchor-point {
  display: block;
}
.anchor-point::before {
  content: "";
  display: block;
  position: relative;
  height: 1px;
  margin-top: -151px;
  padding-bottom: 150px;
  background: transparent;
  z-index: -100;
}
@media screen and (min-width: 1100px), print {
  .anchor-point::before {
    margin-top: -209px;
    padding-bottom: 209px;
  }
}

.global-contact {
  display: flex;
  align-items: center;
  width: 100%;
}
@media screen and (min-width: 1100px), print {
  .global-contact {
    width: auto;
    gap: 0.8rem;
  }
}
@media screen and (max-width: 1099.98px) {
  .global-contact-item {
    flex: 1 1 0;
    min-width: 0;
    height: 60px;
  }
}
.global-contact-item.mail a, .global-contact-item.line a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 60px;
  overflow: hidden;
  border: 1px solid currentColor;
  text-align: center;
  line-height: 1.1;
  font-weight: 800;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
@media screen and (min-width: 1100px), print {
  .global-contact-item.mail a, .global-contact-item.line a {
    width: 46px;
    height: 46px;
    border-radius: 999px;
  }
}
@media screen and (min-width: 1440px), print {
  .global-contact-item.mail a, .global-contact-item.line a {
    width: 150px;
    height: 55px;
  }
}
.global-contact-item.mail a:hover, .global-contact-item.line a:hover {
  opacity: 0.86;
}
.global-contact-item.mail a {
  background-color: #FF9089;
  color: #fff;
  border-color: #FF9089;
}
.global-contact-item.mail a span {
  position: relative;
  display: inline-block;
  padding-left: 1.8em;
  font-size: 1.3rem;
  line-height: 1.1;
  white-space: nowrap;
}
@media screen and (min-width: 1100px), print {
  .global-contact-item.mail a span {
    width: 17px;
    height: 13px;
    padding-left: 0;
    font-size: 0;
  }
}
@media screen and (min-width: 1440px), print {
  .global-contact-item.mail a span {
    width: auto;
    height: auto;
    padding-left: 1.3em;
    font-size: 1.3rem;
  }
}
.global-contact-item.mail a span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 13px;
  background: url("../img/base/icon-mail.png") no-repeat center/contain;
}
@media screen and (min-width: 1100px), print {
  .global-contact-item.mail a span::before {
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media screen and (min-width: 1440px), print {
  .global-contact-item.mail a span::before {
    left: 0;
  }
}
.global-contact-item.line a {
  background-color: #fff;
  color: #00b900;
  border-color: #00b900;
}
.global-contact-item.line a::before {
  content: "24時間受付中";
  display: block;
  font-size: 1.1rem;
  letter-spacing: 0;
  margin-bottom: 0.25em;
}
@media screen and (min-width: 1100px), print {
  .global-contact-item.line a::before {
    display: none;
  }
}
@media screen and (min-width: 1440px), print {
  .global-contact-item.line a::before {
    display: block;
  }
}
.global-contact-item.line a img {
  position: absolute;
  left: 9px;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translateY(-35%);
}
@media screen and (min-width: 1100px), print {
  .global-contact-item.line a img {
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media screen and (min-width: 1440px), print {
  .global-contact-item.line a img {
    left: 9px;
    transform: translateY(-35%);
  }
}
.global-contact-item.line a span {
  display: block;
  padding-left: 1.7em;
  font-size: 1.25rem;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (min-width: 1100px), print {
  .global-contact-item.line a span {
    display: none;
  }
}
@media screen and (min-width: 1440px), print {
  .global-contact-item.line a span {
    display: block;
    font-size: 1.3rem;
  }
}
.global-contact-item.tel .tel-link {
  display: block;
  text-align: center;
}
@media screen and (max-width: 1099.98px) {
  .global-contact-item.tel .tel-link {
    width: 100%;
    height: 60px;
    background: #fff;
    place-content: center;
  }
}
.global-contact-item.tel .tel-text {
  display: block;
  line-height: 1.2;
  font-size: 1rem;
  font-weight: 400;
  padding: 0 0 0 1em;
}
@media screen and (min-width: 1100px), print {
  .global-contact-item.tel .tel-text {
    font-size: 1.2rem;
    padding: 0;
  }
}
.global-contact-item.tel .tel-num {
  position: relative;
  display: inline-block;
  padding: 0 0 0 0.8em;
  line-height: 1.2;
  color: #000;
  font-family: "BIZ UDPMincho", serif;
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (min-width: 480px), print {
  .global-contact-item.tel .tel-num {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .global-contact-item.tel .tel-num {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 1440px), print {
  .global-contact-item.tel .tel-num {
    font-size: 2.4rem;
  }
}
.global-contact-item.tel .tel-num::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-55%);
  width: 16px;
  height: 16px;
  background: url("../img/base/icon-tel_blk.svg") no-repeat center/contain;
}
@media screen and (min-width: 1100px), print {
  .global-contact-item.tel .tel-num::before {
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
  }
}

@media screen and (max-width: 1099.98px) {
  .global-contact {
    height: 60px;
    align-items: stretch;
  }
  .global-contact-item {
    min-width: 0;
    height: 60px;
  }
  .global-contact-item.mail a,
  .global-contact-item.line a {
    height: 60px;
    padding: 0.35rem 0.25rem;
    border-width: 1px;
    border-radius: 0;
    box-shadow: none;
  }
  .global-contact-item.mail a span {
    max-width: 100%;
    padding-left: 1.8em;
    font-size: 1.2rem;
    line-height: 1.15;
    white-space: normal;
  }
  .global-contact-item.mail a span::before {
    width: 14px;
    height: 11px;
  }
  .global-contact-item.line a::before {
    font-size: 1rem;
    line-height: 1;
    margin-bottom: 0.7em;
  }
  .global-contact-item.line a img {
    left: calc(50% - 3.9em);
    top: 39px;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
  }
  .global-contact-item.line a span {
    max-width: 100%;
    padding-left: 1.5em;
    font-size: 1.1rem;
    line-height: 1;
    white-space: nowrap;
  }
  .global-contact-item.tel .tel-link {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-sizing: border-box;
    padding: 0 0.25rem;
    border: 1px solid #F7931D;
  }
  .global-contact-item.tel .tel-num {
    font-size: 1.45rem;
    padding-left: 1.1em;
    white-space: nowrap;
  }
  .global-contact-item.tel .tel-num::before {
    width: 14px;
    height: 14px;
  }
  .global-contact-item.tel .tel-text {
    padding: 0;
    font-size: 0.9rem;
    line-height: 1.15;
    white-space: nowrap;
  }
}
@media screen and (max-width: 359.98px) {
  .global-contact-item.mail a span,
  .global-contact-item.line a span {
    font-size: 1rem;
  }
  .global-contact-item.tel .tel-num {
    font-size: 1.3rem;
  }
  .global-contact-item.tel .tel-text {
    font-size: 0.8rem;
  }
}
.global-contact-item.line a span {
  position: relative;
  display: inline-block;
  padding-left: 2.4em;
}
.global-contact-item.line a span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  background: url("../img/base/line.png") no-repeat center/contain;
}

@media screen and (min-width: 1100px), print {
  .global-contact-item.line a span {
    display: block;
    width: 22px;
    height: 22px;
    padding-left: 0;
    font-size: 0;
  }
  .global-contact-item.line a span::before {
    left: 50%;
    width: 22px;
    height: 22px;
    transform: translate(-50%, -50%);
  }
}
@media screen and (min-width: 1440px), print {
  .global-contact-item.line a span {
    width: auto;
    height: auto;
    padding-left: 2em;
    font-size: 1.3rem;
  }
  .global-contact-item.line a span::before {
    left: 0;
    width: 20px;
    height: 20px;
    transform: translateY(-55%);
  }
}
@media screen and (max-width: 1099.98px) {
  .global-contact-item.line a span {
    display: inline-block;
  }
  .global-contact-item.line a span::before {
    width: 20px;
    height: 20px;
  }
}
/* ===== Blue Lilium - 共通 ===== */
html {
  scroll-behavior: smooth;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.sec-label {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  color: #F7931D;
}

.sec-heading {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(2.5rem, 3vw, 3.2rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #111;
}

.sec-rule {
  display: flex;
}

.sec-rule__navy {
  width: 30px;
  height: 3px;
  background: #F7931D;
}

.sec-rule__gold {
  width: 25px;
  height: 3px;
  background: #c7a95b;
}

.sec-label-block {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.sec-icon {
  position: relative;
  width: 14px;
  height: 14px;
  display: inline-block;
  flex-shrink: 0;
}
.sec-icon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 7px;
  height: 7px;
  background: #F7931D;
}
.sec-icon::after {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  background: #c7a95b;
}

/* --------------------------------

  Webフォント

-------------------------------- */
/*
 * "Noto Sans JP" is lisenced under the SIL Open Font License, 1.1
 * NotoSansJP-Thin.otf: Copyright 2012 Google Inc. All Rights Reserved.
 * NotoSansJP-Light.otf: Copyright 2012 Google Inc. All Rights Reserved.
 * NotoSansJP-Regular.otf: Copyright 2012 Google Inc. All Rights Reserved.
 * NotoSansJP-Medium.otf: Copyright 2012 Google Inc. All Rights Reserved.
 * NotoSansJP-Bold.otf: Copyright 2012 Google Inc. All Rights Reserved.
 * NotoSansJP-Black.otf: Copyright 2012 Google Inc. All Rights Reserved.
 * https://www.google.com/fonts/attribution
 * https://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL_web
 */
/*
 * "Noto Serif JP" is lisenced under the SIL Open Font License, 1.1
 * NotoSerifJP-ExtraLight.otf: Copyright 2017 Adobe Systems Incorporated (http://www.adobe.com/).
 * NotoSerifJP-Light.otf: Copyright 2017 Adobe Systems Incorporated (http://www.adobe.com/).
 * NotoSerifJP-Regular.otf: Copyright 2017 Adobe Systems Incorporated (http://www.adobe.com/).
 * NotoSerifJP-Medium.otf: Copyright 2017 Adobe Systems Incorporated (http://www.adobe.com/).
 * NotoSerifJP-SemiBold.otf: Copyright 2017 Adobe Systems Incorporated (http://www.adobe.com/).
 * NotoSerifJP-Bold.otf: Copyright 2017 Adobe Systems Incorporated (http://www.adobe.com/).
 * NotoSerifJP-Black.otf: Copyright 2017 Adobe Systems Incorporated (http://www.adobe.com/).
 * https://www.google.com/fonts/attribution
 * https://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL_web
 */
/* --------------------------------

  html, body

-------------------------------- */
html,
body {
  height: 100%;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
@media screen and (min-width: 1100px), print {
  html {
    overflow-y: scroll;
  }
}

body {
  min-width: 320px;
  color: #111;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.4;
  text-align: left;
  background-color: #FEFBF8;
}

html.nav-open,
html.contact-open {
  position: relative;
  width: 100%;
  height: 100%;
  overflow-y: hidden;
  overflow-x: hidden;
}
/* --------------------------------

  wrapper

-------------------------------- */
.wrapper {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1100px), print {
  .wrapper {
    overflow: hidden;
  }
}

@media screen and (max-width: 1099.98px) {
  .wrapper .header-contact {
    transition: bottom 0.3s;
  }
  .wrapper.hide .header-contact {
    bottom: -60px;
  }
  .wrapper.hide .header .global-contact {
    bottom: 65px;
  }
  .wrapper.hide .pagetop {
    bottom: 10px;
  }
}
/* --------------------------------

  header

-------------------------------- */
.header {
  position: relative;
}
.header .inner {
  max-width: none;
}
.header-logo {
  display: flex;
  align-items: center;
  position: absolute;
  z-index: 1100;
}
@media screen and (min-width: 1100px), print {
  .header-logo {
    display: block;
    position: absolute;
    left: 20px;
    top: 25px;
  }
  #top .header-logo {
    top: 32px;
  }
}
@media screen and (min-width: 1440px), print {
  .header-logo {
    top: 15px;
  }
}
@media screen and (max-width: 1099.98px) {
  .header-logo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    font-size: 100%;
    z-index: 900;
    padding: 0 0 0 1em;
    justify-content: flex-start;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2);
    background-color: #fff;
  }
}
.header-logo .site-logo {
  width: 166.6666px;
}
@media screen and (min-width: 1100px), print {
  .header-logo .site-logo {
    width: 187.5px;
  }
}
@media screen and (min-width: 1440px), print {
  .header-logo .site-logo {
    width: 250px;
  }
}
@media screen and (min-width: 1440px), print {
  #top .header-logo .site-logo {
    width: 300px;
  }
}
.header-logo a,
.header-logo img {
  display: block;
  width: 100%;
}
.header-adr {
  display: none;
}
@media screen and (min-width: 1600px), print {
  .header-adr {
    display: block;
    position: absolute;
    left: 270px;
    top: 12px;
    width: 100%;
    font-size: 1.2rem;
    line-height: 1.55;
    text-align: left;
    margin-top: 0;
  }
}
.header-adr span {
  color: #F7931D;
}
#top .header-adr {
  display: none;
}
@media screen and (min-width: 1100px), print {
  #top .header-adr {
    display: block;
    position: static;
    left: auto;
    top: auto;
    width: 100%;
    line-height: 1.55;
    text-align: center;
    margin-top: 1.5em;
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 1600px), print {
  #top .header-adr {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 1100px), print {
  .header-contact {
    position: absolute;
    right: min(30 * var(--vw1440), 30px);
    top: 20px;
    z-index: 1001;
  }
}
@media screen and (max-width: 1099.98px) {
  .header-contact {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 1000;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2);
  }
}

/* ===== Kobayashi - page shell / header ===== */
body.kobayashi-page {
  color: #222;
  background: #FEFBF8;
  font-family: "Noto Sans JP", sans-serif;
}

.kobayashi-page .site-wrapper {
  min-width: 1200px;
  overflow-x: hidden;
  background: #FEFBF8 url("../img/top/mv.jpg") no-repeat right top/58% auto;
}
@media screen and (max-width: 1099.98px) {
  .kobayashi-page .site-wrapper {
    min-width: 0;
  }
}
.kobayashi-page {
  /* 内部ページはMV背景を出さない */
}
.kobayashi-page .site-wrapper--sub {
  background-image: none;
}
.kobayashi-page .site-header {
  position: relative;
  top: auto;
  z-index: 50;
  width: 100%;
  background: transparent;
  box-shadow: none;
}
.kobayashi-page .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1520px;
  height: 92px;
  margin: 0 auto;
  padding: 0 40px;
  gap: 24px;
}
.kobayashi-page .header-logo {
  display: block;
  position: static;
  z-index: auto;
  width: auto;
  height: auto;
  padding: 0;
  color: inherit;
  background: none;
  box-shadow: none;
}
.kobayashi-page .header-logo__lead {
  display: block;
  margin-bottom: 3px;
  color: #F7931D;
  font-size: 1.1rem;
  line-height: 1.35;
  letter-spacing: 0.08em;
}
.kobayashi-page .header-logo__name {
  display: block;
  color: #222;
  font-family: "Shippori Mincho", serif;
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.04em;
}
.kobayashi-page .header-right {
  display: flex;
  align-items: center;
  gap: 48px;
}
.kobayashi-page .header-tel {
  display: block;
  text-align: right;
}
.kobayashi-page .header-tel__row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
.kobayashi-page .header-tel__icon {
  width: 22px;
  height: 31px;
  -o-object-fit: contain;
     object-fit: contain;
}
.kobayashi-page .header-tel__num {
  color: #222;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.kobayashi-page .header-tel__hours {
  display: block;
  margin-top: 2px;
  color: #222;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5;
}
.kobayashi-page .header-mail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 60px;
  padding: 0 50px;
  color: #fff;
  background: linear-gradient(90deg, #FF8C42, #FFA726);
  border-radius: 50px;
  font-size: 1.7rem;
  font-weight: 600;
  transition: filter 0.2s ease, transform 0.2s ease;
}
.kobayashi-page .header-mail:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}
.kobayashi-page .header-mail__icon {
  width: 20px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
}
.kobayashi-page .sp-menu-button,
.kobayashi-page .sp-header-mail {
  display: none;
}

@media (max-width: 680px) {
  .kobayashi-page .site-wrapper {
    background-image: none;
    padding-top: 0;
  }
  .kobayashi-page .site-header {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    z-index: 150;
    background: #FEFBF8;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
  }
  .kobayashi-page .header-inner {
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr) 66px;
    height: 68px;
    padding: 0;
    gap: 0;
  }
  .kobayashi-page .sp-menu-button {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    width: 60px;
    height: 68px;
    padding: 0;
    border: 0;
    color: #555;
    background: transparent;
    cursor: pointer;
  }
  .kobayashi-page .sp-menu-button__bars {
    display: grid;
    gap: 5px;
  }
  .kobayashi-page .sp-menu-button__bars span {
    display: block;
    width: 24px;
    height: 2px;
    background: #555;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  html.nav-open .kobayashi-page .sp-menu-button__bars span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  html.nav-open .kobayashi-page .sp-menu-button__bars span:nth-child(2) {
    opacity: 0;
  }
  html.nav-open .kobayashi-page .sp-menu-button__bars span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .kobayashi-page .sp-menu-button__text {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.1em;
  }
  .kobayashi-page .header-logo {
    display: grid;
    justify-items: center;
    justify-content: center;
    align-content: center;
    min-width: 0;
    padding: 0 8px;
    text-align: center;
  }
  .kobayashi-page .header-logo__lead {
    display: none;
  }
  .kobayashi-page .header-logo__name {
    max-width: 100%;
    overflow: hidden;
    font-size: 1.8rem;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .kobayashi-page .header-logo::after {
    content: none;
  }
  .kobayashi-page .header-right,
  .kobayashi-page .header-tel,
  .kobayashi-page .header-mail,
  .kobayashi-page .header-nav {
    display: none;
  }
  .kobayashi-page .sp-header-mail {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    width: 66px;
    height: 68px;
    padding: 0;
    color: #fff;
    background: #F7931D;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.05em;
  }
  .kobayashi-page .sp-header-mail img {
    width: 23px;
    height: auto;
  }
}
/* header fixed */
.kobayashi-page .site-header--fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: #FEFBF8;
  opacity: 0;
  transform: translate3d(0, -100%, 0);
  will-change: transform, opacity;
}
.kobayashi-page .site-header--shown {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.12);
  transition: transform 0.72s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.72s ease, box-shadow 0.72s ease;
}
.kobayashi-page .site-header--preparing,
.kobayashi-page .site-header--resetting {
  transition: none !important;
}

/* スクロール時固定用 */
@media screen and (max-width: 1099.98px) {
  .header.fixed .header-logo {
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
  }
}
@media screen and (min-width: 1100px) {
  .header.fixed {
    z-index: 9999;
  }
  .header.fixed .inner {
    position: fixed;
    top: -60px;
    width: 100%;
    transform: translateY(60px);
    transition: transform 0.2s;
  }
  #top .header.fixed .inner {
    position: fixed;
    top: -60px;
  }
  #top .header.fixed .header-logo {
    top: 25px;
  }
}
@media screen and (min-width: 1440px), print {
  #top .header.fixed .header-logo {
    top: 15px;
  }
  #top .header.fixed .site-logo {
    width: 250px;
  }
}
@media screen and (min-width: 1600px), print {
  #top .header.fixed .header-adr {
    display: block;
    position: absolute;
    left: 270px;
    top: 12px;
    width: 100%;
    text-align: left;
    margin-top: 0;
  }
}

/* --------------------------------

  nav

-------------------------------- */
.nav {
  display: block;
  position: fixed;
  top: 0;
  left: -290px;
  width: 290px;
  height: 100%;
  z-index: 1000;
  opacity: 0;
}
@media screen and (min-width: 1100px), print {
  .nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    margin: 0;
    opacity: 1;
    transition: none;
    padding: 0 56rem 0 0;
    background-color: #fff;
  }
}
@media screen and (max-width: 1099.98px) {
  .nav {
    padding: 0;
  }
}
@media screen and (max-width: 1439.98px) {
  .nav {
    padding: 0 35rem 0 0;
  }
}
@media screen and (max-width: 1099.98px) {
  .nav {
    padding: 0;
  }
}
@media screen and (max-width: 359.98px) {
  .nav {
    left: -260px;
    width: 260px;
  }
}
.nav-open .nav {
  left: 0;
  opacity: 1;
}
@media screen and (max-width: 1099.98px) {
  .nav-open .nav {
    transition-property: opacity, left;
    transition-duration: 0.3s;
  }
}
@media screen and (min-width: 1100px), print {
  .nav-open .nav {
    left: auto;
  }
}
.contact-open .nav {
  z-index: 920;
}
.nav .inner {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  z-index: 1;
}
.nav-logo {
  display: none;
}
@media screen and (max-width: 1099.98px) {
  .nav-logo {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 90px;
    text-align: center;
    background-color: #fff;
  }
  .nav-logo img {
    width: 200px;
  }
}
.nav .nav-container {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  margin: auto;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #fff;
  padding-bottom: 1.5em;
  -webkit-overflow-scrolling: touch;
}
@media screen and (min-width: 1100px), print {
  .nav .nav-container {
    max-width: none;
    margin: auto;
    background-color: transparent;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 0;
  }
}
/* メインナビ */
@media screen and (max-width: 1099.98px) {
  .main-nav {
    opacity: 0;
    padding: 0;
    background-color: #fff;
  }
  .nav-open .main-nav {
    opacity: 1;
  }
}
@media screen and (min-width: 1100px), print {
  .main-nav {
    display: flex;
    align-items: center;
  }
}
.main-nav .nav-item {
  position: relative;
}
@media screen and (min-width: 1100px), print {
  .main-nav .nav-item:last-child .nav-link span::after {
    background: transparent;
  }
}
@media screen and (max-width: 1099.98px) {
  .main-nav .nav-item {
    position: relative;
    border-bottom: 1px solid #eee;
  }
}
@media screen and (min-width: 1100px), print {
  .main-nav .nav-item.main-nav-active .nav-link {
    color: #F7931D;
  }
}
@media screen and (max-width: 1099.98px) {
  .main-nav .nav-item.main-nav-active .nav-link {
    background-color: rgba(247, 147, 29, 0.9);
    color: #fff;
  }
  .main-nav .nav-item.main-nav-active .nav-link::after {
    border-color: #fff;
  }
}
.main-nav .nav-link {
  position: relative;
  display: block;
  line-height: 1.2;
  color: #333;
  font-weight: 500;
  transition-property: color;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1100px), print {
  .main-nav .nav-link {
    padding: 0;
    border: none;
    display: inline-block;
    font-size: 1.3rem;
    transition-property: color;
    transition-duration: 0.3s;
    transition-timing-function: ease;
  }
}
@media screen and (min-width: 1600px), print {
  .main-nav .nav-link {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1099.98px) {
  .main-nav .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    letter-spacing: inherit;
    padding: 0 1em;
    color: #444;
    font-size: 1.5rem;
    background-color: #fff;
    height: 60px;
    transition-property: color, background-color;
  }
  .main-nav .nav-link::after {
    content: "";
    position: absolute;
    right: 1.1em;
    top: 50%;
    transform: translateY(-50%) rotate(135deg);
    width: 9px;
    height: 9px;
    border-top: 1px solid #F7931D;
    border-left: 1px solid #F7931D;
    transition-property: border-color;
    transition-duration: 0.3s;
    transition-timing-function: ease;
  }
}
@media screen and (max-width: 1099.98px) {
  .main-nav .nav-link:hover {
    color: #fff;
    background-color: rgba(247, 147, 29, 0.9);
  }
  .main-nav .nav-link:hover::after {
    border-color: #fff;
  }
}
@media screen and (min-width: 1100px), print {
  .main-nav .nav-link:hover {
    color: #F7931D;
  }
}
.main-nav .nav-link span {
  position: relative;
  display: inline-block;
  padding: 0 1em;
}
@media screen and (min-width: 1600px), print {
  .main-nav .nav-link span {
    padding: 0 1.2em;
  }
}
@media screen and (min-width: 1100px), print {
  .main-nav .nav-link span::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -1px;
    width: 1px;
    height: 100%;
    margin: auto;
    background-color: #ccc;
  }
}
.main-nav .nav-link .br {
  display: none;
}
@media screen and (min-width: 1100px), print {
  .main-nav .nav-link .br {
    display: block;
  }
}

/* ナビゲーション開閉ボタン */
.nav-button {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  line-height: 1;
  cursor: pointer;
  z-index: 910;
  background-color: #fff;
}
@media screen and (min-width: 1280px), print {
  .nav-button {
    display: none;
  }
}
.nav-open .nav-button {
  display: none;
}
.nav-button-icon {
  display: block;
  position: absolute;
  top: -16px;
  right: 0;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 1px;
  margin: auto;
  background-color: #F7931D;
}
.nav-button-icon::before, .nav-button-icon::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  background-color: #F7931D;
}
.nav-button-icon::before {
  margin-top: -8px;
}
.nav-button-icon::after {
  margin-top: 8px;
}
.nav-button::after {
  content: "MENU";
  display: block;
  position: absolute;
  bottom: 12px;
  left: 0;
  width: 100%;
  line-height: 1;
  font-size: 1rem;
  color: #F7931D;
  text-align: center;
}

/* ナビゲーション開閉ボタン */
.nav-close-button {
  display: none;
  position: absolute;
  top: 0;
  right: -60px;
  width: 60px;
  height: 60px;
  line-height: 1;
  background-color: #F7931D;
  cursor: pointer;
  z-index: 10;
}
@media screen and (min-width: 1280px), print {
  .nav-close-button {
    display: none;
  }
}
.nav-open .nav-close-button {
  display: block;
}
.nav-close-button .nav-button-icon {
  background: none;
  top: -17px;
}
.nav-close-button .nav-button-icon::before, .nav-close-button .nav-button-icon::after {
  margin-top: 0;
  background-color: #fff;
}
.nav-close-button .nav-button-icon::before {
  transform: rotate(45deg);
}
.nav-close-button .nav-button-icon::after {
  transform: rotate(-45deg);
}
.nav-close-button::after {
  content: "CLOSE";
  display: block;
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  line-height: 1;
  font-size: 1rem;
  color: #fff;
  text-align: center;
}

/* ナビゲーション背景 */
@media screen and (min-width: 1280px), print {
  .nav-screen {
    display: none;
  }
}
.nav-screen-overlay {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  background-color: #000;
  pointer-events: none;
  opacity: 0;
  transition-property: opacity;
  transition-duration: 0.2s;
}
.nav-open .nav-screen-overlay {
  pointer-events: auto;
  opacity: 0.4;
  cursor: pointer;
}

@media screen and (min-width: 1100px) {
  .nav.fixed {
    max-width: none;
    right: 0;
    position: fixed;
    height: 90px;
    top: -60px;
    transform: translateY(60px);
    transition: transform 0.2s;
    z-index: 1100;
  }
  .nav.fixed::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 90px;
    z-index: -1;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
    background-color: #fff;
  }
  #top .nav.fixed {
    z-index: 1100;
  }
  .nav.fixed .nav-link {
    font-size: 1.3rem;
  }
}
/* ===== Kobayashi - navigation ===== */
.kobayashi-page .header-nav {
  display: block;
  width: 100%;
  margin: 20px 0;
  background: transparent;
  box-shadow: none;
}
.kobayashi-page .header-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.kobayashi-page .header-nav__list {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
}
.kobayashi-page .header-nav__item--current {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
}
.kobayashi-page .header-nav__item--current::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #F7931D;
}
.kobayashi-page .header-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #333;
  border: 0;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.kobayashi-page .header-nav__link:hover {
  color: #F7931D;
  border: 0;
}
.kobayashi-page .header-nav__item--current .header-nav__link {
  padding: 0 20px;
  color: #222;
}
.kobayashi-page .sp-drawer-nav,
.kobayashi-page .sp-nav-screen,
.kobayashi-page .sp-contact-bar {
  display: none;
}

@media (max-width: 680px) {
  .kobayashi-page .header-nav {
    display: none;
  }
  .kobayashi-page .sp-drawer-nav {
    position: fixed;
    top: 0;
    left: -330px;
    z-index: 200;
    display: block;
    width: 250px;
    max-width: calc(100vw - 70px);
    height: 100vh;
    height: 100dvh;
    padding: 0;
    overflow: visible;
    background: #fff;
    transition: left 0.3s ease;
  }
  html.nav-open .kobayashi-page .sp-drawer-nav {
    left: 0;
  }
  .kobayashi-page .sp-drawer-nav__list {
    max-height: 100%;
    overflow-y: auto;
    border-top: 0;
  }
  .kobayashi-page .sp-drawer-nav__link {
    position: relative;
    display: flex;
    align-items: center;
    height: 60px;
    padding: 0 22px;
    color: #222;
    border-bottom: 1px solid #eee;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.4;
  }
  .kobayashi-page .sp-drawer-nav__link::before {
    content: none;
  }
  .kobayashi-page .sp-nav-close-button {
    position: absolute;
    top: 0;
    left: 100%;
    right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 60px;
    height: 68px;
    border: 0;
    color: #fff;
    background: #F7931D;
    cursor: pointer;
  }
  .kobayashi-page .sp-nav-close-button__icon {
    position: relative;
    display: block;
    width: 18px;
    height: 18px;
  }
  .kobayashi-page .sp-nav-close-button__icon::before, .kobayashi-page .sp-nav-close-button__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
  }
  .kobayashi-page .sp-nav-close-button__icon::before {
    transform: rotate(45deg);
  }
  .kobayashi-page .sp-nav-close-button__icon::after {
    transform: rotate(-45deg);
  }
  .kobayashi-page .sp-nav-close-button__text {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.1em;
  }
  .kobayashi-page .sp-nav-screen {
    position: fixed;
    inset: 0;
    z-index: 199;
    display: block;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  html.nav-open .kobayashi-page .sp-nav-screen {
    opacity: 1;
    pointer-events: auto;
  }
  .kobayashi-page .sp-contact-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 62px;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.12);
  }
  .kobayashi-page .sp-contact-bar__item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 62px;
    font-family: "Shippori Mincho", serif;
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1;
  }
  .kobayashi-page .sp-contact-bar__mail {
    color: #fff;
    background: #F7931D;
  }
  .kobayashi-page .sp-contact-bar__tel {
    flex-direction: column;
    gap: 4px;
    color: #111;
    background: #fff;
    border-left: 1px solid #eee;
  }
  .kobayashi-page .sp-contact-bar__tel::after {
    content: "営業時間 9:00〜18:00（土日祝休）";
    color: #777;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
  }
  .kobayashi-page .sp-contact-bar__tel-main {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .kobayashi-page .sp-contact-bar__tel-num {
    color: #F7931D;
    font-size: 1.8rem;
  }
}
/* --------------------------------

  main

-------------------------------- */
.main {
  display: block;
  position: relative;
  padding: 0 1em 0 1em;
  z-index: 100;
  flex: 1;
  overflow-x: hidden;
}
#top .main {
  padding: 0;
}
@media screen and (min-width: 1100px), print {
  .main {
    padding: 0 2em 0 2em;
    overflow: visible;
  }
  #top .main {
    padding: 0;
  }
}

.main > .inner {
  max-width: none;
}

/* --------------------------------

  footer

-------------------------------- */
.footer {
  position: relative;
  background: #F7931D;
}
.footer-contact {
  position: relative;
  background: #F7931D;
  padding: 3.5rem 1em 0 1em;
  z-index: 0;
}
.footer-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 230px;
  background: url("../img/base/contact2.jpg") no-repeat center/cover;
  z-index: -1;
}
@media screen and (min-width: 768px), print {
  .footer-contact::before {
    height: 332px;
  }
}
@media screen and (min-width: 1100px), print {
  .footer-contact {
    padding: 5.5rem 2em 0 2em;
  }
}
.footer-contact-header {
  text-align: center;
  margin-bottom: 3rem;
}
.footer-contact-container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  background: #FFF;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
  padding: 3rem 1.6rem;
}
@media screen and (min-width: 1100px), print {
  .footer-contact-container {
    padding: 4rem 3rem;
  }
}
.footer-contact-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (min-width: 768px), print {
  .footer-contact-wrap {
    flex-direction: row;
    gap: 3rem;
  }
}
@media screen and (min-width: 1100px), print {
  .footer-contact-wrap {
    gap: 7rem;
  }
}
.footer-contact-item.mail {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-contact-item.mail p {
  margin: 0;
}
.footer-contact-item.mail a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: min(100%, 300px);
  min-width: 250px;
  height: 70px;
  overflow: hidden;
  border: 1px solid currentColor;
  border-radius: 999px;
  text-align: center;
  line-height: 1.1;
  font-weight: 800;
  transition: opacity 0.3s ease, transform 0.3s ease;
  padding: 1rem 1rem 1.5rem 1rem;
}
@media screen and (min-width: 1100px), print {
  .footer-contact-item.mail a {
    width: 320px;
    height: 76px;
  }
}
.footer-contact-item.mail a:hover {
  opacity: 0.86;
}
.footer-contact-item.mail .reservation a {
  background-color: #FF9089;
  color: #fff;
  border-color: #FF9089;
  padding: 1rem 1rem 1.5rem 1rem;
}
.footer-contact-item.mail .reservation a span {
  position: relative;
  display: inline-block;
  padding-left: 1.65em;
  font-size: 1.8rem;
  line-height: 1.05;
  white-space: nowrap;
  font-weight: 800;
}
@media screen and (min-width: 1100px), print {
  .footer-contact-item.mail .reservation a span {
    font-size: 2rem;
  }
}
.footer-contact-item.mail .reservation a span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 18px;
  background: url("../img/base/icon-mail.png") no-repeat center/contain;
}
.footer-contact-item.mail .line a {
  color: #00b900;
  border-color: #00b900;
  font-size: 1.8rem;
  line-height: 1;
  white-space: nowrap;
  font-weight: 800;
}
@media screen and (min-width: 1100px), print {
  .footer-contact-item.mail .line a {
    font-size: 2.1rem;
  }
}
.footer-contact-item.mail .line a::before {
  content: "24時間受付中";
  display: block;
  font-size: 1.3rem;
  letter-spacing: 0;
  margin-bottom: 0.35em;
}
.footer-contact-item.mail .line a img {
  position: absolute;
  left: 44px;
  top: 50%;
  width: 28px;
  height: 28px;
  transform: translateY(-12%);
}
.footer-contact-item.mail .line a span {
  display: block;
  padding-left: 2em;
}
.footer-contact-item .tel-link {
  display: block;
  text-align: center;
}
.footer-contact-item .tel-link .tel-title {
  display: block;
  font-weight: 500;
  line-height: 1.2;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 1100px), print {
  .footer-contact-item .tel-link .tel-title {
    font-size: 1.8rem;
  }
}
.footer-contact-item .tel-link .tel-text {
  display: block;
  line-height: 1.2;
  font-size: 1.2rem;
  font-weight: 400;
  margin-top: 0.5rem;
}
@media screen and (min-width: 1100px), print {
  .footer-contact-item .tel-link .tel-text {
    font-size: 1.4rem;
    padding: 0 0 0 1.2em;
  }
}
.footer-contact-item .tel-link .tel-num {
  position: relative;
  display: inline-block;
  padding: 0 0 0 0.8em;
  line-height: 1.2;
  color: #000;
  font-family: "BIZ UDPMincho", serif;
  font-size: 2.8rem;
  font-weight: 500;
}
@media screen and (min-width: 1100px), print {
  .footer-contact-item .tel-link .tel-num {
    font-size: 3.8rem;
  }
}
.footer-contact-item .tel-link .tel-num::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-55%);
  width: 25px;
  height: 25px;
  background: url("../img/base/icon-tel_blk.svg") no-repeat center/contain;
}
@media screen and (min-width: 1100px), print {
  .footer-contact-item .tel-link .tel-num::before {
    width: 25px;
    height: 35px;
    transform: translateY(-50%);
  }
}
.footer-contact-subheading {
  display: block;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1100px), print {
  .footer-contact-subheading {
    font-size: 2.4rem;
    margin-bottom: 3rem;
  }
}
.footer-contact-subheading .br {
  display: block;
}
@media screen and (min-width: 768px), print {
  .footer-contact-subheading .br {
    display: none;
  }
}
.footer-contact-subheading span {
  color: #DD1714;
}
.footer-contact-heading .jp {
  display: block;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 0.5em;
}
@media screen and (min-width: 768px), print {
  .footer-contact-heading .jp {
    font-size: 3.4rem;
  }
}
.footer-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 3rem 0;
}
@media screen and (min-width: 1100px), print {
  .footer-container {
    flex-direction: row;
    gap: 4rem;
    padding: 4.5rem 0;
  }
}
@media screen and (min-width: 1280px), print {
  .footer-container {
    gap: 7rem;
  }
}
@media screen and (max-width: 1279.98px) {
  .footer-container {
    padding: 3.5rem 1em;
  }
}
@media screen and (max-width: 1099.98px) {
  .footer-container {
    justify-content: center;
    align-items: center;
  }
}
.footer-add {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.8;
  margin-top: 1.6rem;
}
.footer-acs {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.55;
  margin-top: 1.6rem;
}
@media screen and (min-width: 768px), print {
  .footer-acs {
    font-size: 1.3rem;
  }
}
.footer-main {
  display: flex;
  gap: 2.5rem;
  flex-direction: column;
}
@media screen and (min-width: 768px), print {
  .footer-main {
    gap: 4rem;
    flex-direction: row;
  }
}
.footer-banner {
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .footer-banner {
    padding: 0.9em 0 0 0;
  }
}
.footer-banner a {
  display: inline-block;
  transition: opacity 0.3s ease;
}
.footer-banner a:hover {
  opacity: 0.8;
}
.footer-nav {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
}
@media screen and (min-width: 1100px), print {
  .footer-nav {
    padding: 0.8em 0 0 0;
  }
}
@media screen and (max-width: 575.98px) {
  .footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
.footer-nav-list {
  padding: 0 0 0 1.3rem;
  border-left: 1px solid #fff;
}
@media screen and (min-width: 576px), print {
  .footer-nav-list {
    padding: 0.25rem 0 0.25rem 1.5rem;
  }
}
.footer-nav-list li {
  line-height: 1.2;
}
.footer-nav-list li:not(:last-child) {
  margin-bottom: 1.3rem;
}
.footer-nav-list li a {
  display: inline-block;
  line-height: 1.2;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
  transition: opacity 0.3s ease;
}
.footer-nav-list li a:hover {
  opacity: 0.8;
}
.footer-btn {
  margin-top: 2em;
}
.footer-btn a {
  display: block;
  width: 250px;
  height: 55px;
  border: 2px solid #fff;
  background-color: #fff;
  color: #111;
  text-align: center;
  place-content: center;
  transition: background-color 0.3s ease;
}
@media screen and (min-width: 1100px), print {
  .footer-btn a {
    width: 300px;
    height: 60px;
  }
}
.footer-btn a:hover {
  background-color: transparent;
  color: #fff;
}
.footer-btn a:hover span::before {
  background: url("../img/base/icon-mail.png") no-repeat center/contain;
}
.footer-btn a span {
  position: relative;
  display: inline-block;
  padding: 0 0 0 2em;
  line-height: 1.2;
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (min-width: 1100px), print {
  .footer-btn a span {
    font-size: 1.7rem;
  }
}
.footer-btn a span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 18px;
  background: url("../img/base/icon-mail_ble.png") no-repeat center/contain;
}
.footer .pagetop {
  display: block;
  position: fixed;
  right: 10px;
  bottom: 70px;
  width: 50px;
  height: 50px;
  text-align: center;
  overflow: hidden;
  z-index: 102;
  opacity: 0;
  pointer-events: none;
}
@media screen and (min-width: 768px), print {
  .footer .pagetop {
    right: 10px;
    bottom: 70px;
  }
}
@media screen and (min-width: 1100px), print {
  .footer .pagetop {
    right: 10px;
    bottom: 10px;
  }
}
.hide .footer .pagetop {
  transition-property: opacity;
  transition-duration: 0.3s;
  opacity: 1;
  pointer-events: auto;
}
.footer .pagetop a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #fff;
  border-radius: 100%;
  background-color: #fff;
  border: 3px solid #eee;
  transition-property: background-color;
  transition-duration: 0.2s;
}
.footer .pagetop a:hover {
  color: #fff;
  text-decoration: none;
  background-color: #F7931D;
}
.footer .pagetop a:hover::before {
  border-color: #fff;
}
.footer .pagetop a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.45em;
  right: 0;
  bottom: 0;
  left: 0;
  width: 0.8em;
  height: 0.8em;
  margin: auto;
  border-top: 2px solid #F7931D;
  border-right: 2px solid #F7931D;
  transform: rotate(-45deg);
  transition-property: border-color;
  transition-duration: 0.2s;
}
.footer .copy {
  overflow: hidden;
  background: #F7931D;
  padding: 1.5em 1em 1.5em 1em;
  border-top: 1px solid #fff;
}
@media screen and (max-width: 767.98px) {
  .footer .copy {
    padding: 1.5em 1em 1.5em 1em;
  }
}
.footer .copy small {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.3rem;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .footer .copy small {
    font-size: 1.2rem;
  }
}
.footer .copy span {
  font-weight: 500;
  margin-left: 0.3em;
}
@media screen and (max-width: 479.98px) {
  .footer .copy span {
    display: none;
  }
}

.footer-contact-item.mail .line a span {
  position: relative;
  display: inline-block;
  padding-left: 2em;
}
.footer-contact-item.mail .line a span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 28px;
  transform: translateY(-50%);
  background: url("../img/base/line.png") no-repeat center/contain;
}

/* ===== Kobayashi - contact / footer ===== */
.kobayashi-page .contact {
  position: relative;
  padding: 160px 40px 40px;
  background: #F7931D;
}
.kobayashi-page .contact-card {
  max-width: 1330px;
  margin: -300px auto 0;
  padding: 66px 40px 60px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}
.kobayashi-page .contact-card__lead {
  margin: 0 0 44px;
  color: #222;
  font-family: "Shippori Mincho", serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.65;
  text-align: center;
}
.kobayashi-page .contact-card__lead-accent {
  color: #F7931D;
}
.kobayashi-page .contact-card__cols {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}
.kobayashi-page .contact-card__tel {
  text-align: center;
}
.kobayashi-page .contact-card__tel-label {
  margin-bottom: 6px;
  color: #222;
  font-family: "Shippori Mincho", serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
}
.kobayashi-page .contact-card__tel-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.kobayashi-page .contact-card__tel-icon {
  width: 40px;
  height: 55px;
  -o-object-fit: contain;
     object-fit: contain;
}
.kobayashi-page .contact-card__tel-num {
  color: #222;
  font-size: 6.2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
}
.kobayashi-page .contact-card__hours {
  margin-top: 12px;
  color: #222;
  font-size: 1.6rem;
  line-height: 1.5;
}
.kobayashi-page .contact-card__divider {
  width: 2px;
  height: 130px;
  background: #ddd;
}
.kobayashi-page .contact-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 450px;
  height: 95px;
  color: #fff;
  background: linear-gradient(90deg, #FF8C42, #FFA726);
  border-radius: 50px;
  box-shadow: 0 14px 30px rgba(247, 147, 29, 0.3);
  font-size: 2.4rem;
  font-weight: 700;
  transition: filter 0.2s ease, transform 0.2s ease;
}
.kobayashi-page .contact-card__button:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}
.kobayashi-page .contact-card__mail-icon {
  width: 27px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.kobayashi-page .site-footer {
  margin: 0;
  padding: 40px 40px 70px;
  color: #fff;
  background: #F7931D;
}
.kobayashi-page .site-footer__inner {
  max-width: 1330px;
  margin: 0 auto;
}
.kobayashi-page .footer-grid {
  display: grid;
  grid-template-columns: 1fr 750px;
  align-items: center;
  gap: 60px;
}
.kobayashi-page .footer-logo__lead {
  margin-bottom: 8px;
  font-size: 1.1rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  opacity: 0.9;
}
.kobayashi-page .footer-logo__name {
  margin-bottom: 16px;
  font-family: "Shippori Mincho", serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.03em;
}
.kobayashi-page .footer-address,
.kobayashi-page .footer-hours {
  margin: 0 0 2.5em;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.7;
}
.kobayashi-page .footer-hours {
  margin-bottom: 26px;
}
.kobayashi-page .footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 460px;
  gap: 12px 30px;
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
}
.kobayashi-page .footer-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.5;
  transition: opacity 0.2s ease;
}
.kobayashi-page .footer-nav a:hover {
  opacity: 0.8;
}
.kobayashi-page .footer-map {
  display: block;
  width: 750px;
  height: 340px;
  border: 0;
  border-radius: 4px;
}
.kobayashi-page .footer-copy {
  margin-top: 7em;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.5;
  opacity: 0.9;
}

@media (max-width: 1080px) {
  .kobayashi-page .contact-card__cols {
    gap: 34px;
  }
  .kobayashi-page .contact-card__tel-num {
    font-size: 4.6rem;
  }
  .kobayashi-page .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .kobayashi-page .footer-map {
    width: 100%;
  }
}
@media (max-width: 680px) {
  .kobayashi-page .contact {
    padding: 72px 22px 44px;
  }
  .kobayashi-page .contact-card {
    margin-top: 0;
    padding: 34px 20px 38px;
  }
  .kobayashi-page .contact-card__lead {
    margin-bottom: 26px;
    font-size: 1.8rem;
  }
  .kobayashi-page .contact-card__cols {
    flex-direction: column;
    gap: 24px;
  }
  .kobayashi-page .contact-card__divider {
    width: 78%;
    height: 1px;
  }
  .kobayashi-page .contact-card__tel-label {
    font-size: 1.7rem;
  }
  .kobayashi-page .contact-card__tel-icon {
    width: 30px;
    height: 42px;
  }
  .kobayashi-page .contact-card__tel-num {
    font-size: 3.4rem;
  }
  .kobayashi-page .contact-card__hours {
    margin-top: 8px;
    font-size: 1.4rem;
  }
  .kobayashi-page .contact-card__button {
    width: 100%;
    max-width: 360px;
    height: 68px;
    font-size: 1.9rem;
  }
  .kobayashi-page .site-footer {
    padding-right: 22px;
    padding-left: 22px;
    padding-bottom: 92px;
  }
  .kobayashi-page .footer-logo__name {
    font-size: 2.4rem;
  }
  .kobayashi-page .footer-nav {
    grid-template-columns: 1fr;
  }
  .kobayashi-page .footer-map {
    height: 240px;
  }
  .kobayashi-page .footer-copy {
    margin-top: 28px;
    padding-top: 18px;
  }
}
.swiper-container {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0;
  z-index: 1;
}
.swiper-img {
  display: block;
  position: relative;
}
.swiper-img::before {
  content: "";
  display: block;
  padding-top: 50%;
}
@media screen and (min-width: 1100px), print {
  .swiper-img::before {
    padding-top: 750px;
  }
}
.swiper-img img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.js-service-swiper .swiper-slide {
  width: 22rem;
}
@media screen and (min-width: 768px), print {
  .js-service-swiper .swiper-slide {
    width: 32rem;
  }
}
.js-service-swiper .service-card {
  display: block;
  padding-bottom: 0.8em;
}
.js-service-swiper .service-card:hover .service-card__img img {
  scale: 1.1;
}
.js-service-swiper .service-card__label {
  position: relative;
  display: inline-block;
  place-content: center;
  padding: 0.5rem 5rem 0.5rem 1rem;
  min-width: 150px;
  height: 30px;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  color: #ffffff;
  background: linear-gradient(90deg, #26969B 0%, #28A4AA 50%, #2DB8BF 100%);
}
@media screen and (min-width: 768px), print {
  .js-service-swiper .service-card__label {
    font-size: 1.8rem;
    min-width: 200px;
    height: 40px;
    padding: 0.5rem 7rem 0.5rem 1rem;
  }
}
.js-service-swiper .service-card__label::before {
  content: "";
  position: absolute;
  right: 0.5em;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 6px;
  background: url("../img/base/icon-arrow_right.png") no-repeat center/contain;
}
@media screen and (min-width: 768px), print {
  .js-service-swiper .service-card__label::before {
    width: 37px;
    height: 6px;
  }
}
.js-service-swiper .service-card__foot {
  position: absolute;
  left: 0;
  bottom: 0;
}
.js-service-swiper .service-card__img {
  position: relative;
  overflow: hidden;
}
.js-service-swiper .service-card__img::before {
  content: "";
  display: block;
  padding-top: 75%;
}
.js-service-swiper .service-card__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: scale 0.3s ease;
}
.swiper-pagination {
  position: static !important;
  transform: inherit !important;
  display: flex;
  justify-content: flex-end;
  max-width: none;
  overflow: hidden;
  padding: 0 !important;
  width: auto !important;
  margin-top: 1.6rem;
  padding: 0 2rem !important;
  z-index: 999 !important;
}
@media screen and (min-width: 1100px), print {
  .swiper-pagination {
    margin-top: 3rem;
    padding: 0 5rem !important;
  }
}
.swiper-pagination .swiper-pagination-bullet {
  position: relative;
  background-color: #DDD;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  opacity: 1;
  cursor: pointer;
  margin: 0 !important;
}
.swiper-pagination .swiper-pagination-bullet:not(:last-child) {
  margin: 0 15px 0 0 !important;
}
@media screen and (min-width: 1100px), print {
  .swiper-pagination .swiper-pagination-bullet:not(:last-child) {
    margin: 0 20px 0 0 !important;
  }
}
.swiper-pagination .swiper-pagination-bullet span {
  font-weight: 500;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #DD1714;
}

.swiper-controller {
  display: flex;
  gap: 0.5rem;
  padding-top: 1.5rem;
}
@media screen and (min-width: 768px), print {
  .swiper-controller {
    gap: 1rem;
  }
}
.swiper-service-prev {
  position: relative;
  width: 40px;
  height: 40px;
  background-color: #218489;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px), print {
  .swiper-service-prev {
    width: 60px;
    height: 60px;
  }
}
.swiper-service-prev:hover {
  opacity: 0.8;
}
.swiper-service-prev::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/base/icon-arrow_left.png") no-repeat center/60%;
}
.swiper-service-next {
  position: relative;
  width: 40px;
  height: 40px;
  background-color: #218489;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px), print {
  .swiper-service-next {
    width: 60px;
    height: 60px;
  }
}
.swiper-service-next:hover {
  opacity: 0.8;
}
.swiper-service-next::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/base/icon-arrow_right.png") no-repeat center/60%;
}

/* --------------------------------

  ページタイトル

-------------------------------- */
.page-title {
  position: relative;
  display: block;
  width: 100%;
  z-index: 105;
  height: 300px;
  margin-top: 90px;
  z-index: 0;
}
@media screen and (max-width: 1099.98px) {
  .page-title {
    margin-top: 60px;
    height: 250px;
  }
}
@media screen and (max-width: 767.98px) {
  .page-title {
    height: 250px;
  }
}
@media screen and (max-width: 479.98px) {
  .page-title {
    height: 230px;
  }
}
.site-wrapper > .page-title {
  margin-top: 0;
}
.page-title-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 0 2em;
  background: url(../img/top/office-bg.jpg) no-repeat center 50%/cover;
}
@media screen and (max-width: 1099.98px) {
  .page-title-inner {
    justify-content: center;
    padding: 0 1em;
  }
}
.page-title-name {
  display: inline-block;
  line-height: 1.2;
  text-align: center;
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-size: 3.8rem;
  font-weight: 700;
}
@media screen and (max-width: 1099.98px) {
  .page-title-name {
    font-size: 2.2rem;
  }
}
.page-title-name span {
  display: block;
  font-weight: 700;
}

/* --------------------------------

  アニメーション

-------------------------------- */
._anim-point {
  opacity: 0;
  transform: translateY(30px);
  transition-property: opacity, transform;
  transition-timing-function: ease;
  transition-duration: 0.6s;
  transition-delay: 0.3s;
}
@media screen and (min-width: 1100px), print {
  ._anim-point {
    transition-duration: 0.6s;
    transition-delay: 0.3s;
  }
}
._anim-point.active {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------

  上部固定ボタン（お問い合わせ）

-------------------------------- */
/* お問い合わせ（電話）*/
@media screen and (min-width: 1280px), print {
  .mail-button {
    display: none;
  }
}
@media screen and (max-width: 1279.98px) {
  .mail-button {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    line-height: 1;
    cursor: pointer;
    z-index: 910;
    transition: background-color 0.3s ease;
  }
  .mail-button a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    background: #F69B11;
  }
  .mail-button a::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translate(-50%, 0);
    display: block;
    width: 20px;
    height: 15px;
    background: url("../img/base/icon-mail_wht.png") no-repeat center/cover;
  }
  .mail-button a::after {
    content: "MAIL";
    position: absolute;
    left: 0;
    bottom: 12px;
    display: block;
    width: 100%;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.1em;
    line-height: 1;
  }
  .mail-button a:hover {
    background-color: #F7931D;
  }
}

/* --------------------------------

  フォーム部品

-------------------------------- */
.contact-form table {
  width: 100%;
}
.contact-form table tr {
  display: block;
}
@media screen and (min-width: 768px), print {
  .contact-form table tr {
    display: table;
    width: 100%;
  }
}
.contact-form table tr:not(:last-child) {
  margin-bottom: 1.5em;
}
@media screen and (min-width: 768px), print {
  .contact-form table tr:not(:last-child) {
    margin-bottom: 0;
  }
}
.contact-form table th {
  position: relative;
  display: block;
  font-weight: 500;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 768px), print {
  .contact-form table th {
    display: table-cell;
    vertical-align: middle;
    width: 17em;
    margin-bottom: 0;
    padding: 0.8em 1em;
  }
}
.contact-form table th .title {
  font-weight: bold;
}
.contact-form table th .require,
.contact-form table th .option {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  font-size: 0.9em;
  color: #fff;
  font-weight: 500;
  width: 3em;
  margin: 0 auto;
  text-align: center;
  transform: translateY(-50%);
}
.contact-form table th .require {
  background-color: #F7931D;
}
.contact-form table th .option {
  background-color: #999;
}
.contact-form table td {
  display: block;
}
@media screen and (min-width: 768px), print {
  .contact-form table td {
    display: table-cell;
    vertical-align: middle;
    padding: 0.8em 0 0.8em 1em;
  }
}
.contact-form table td input[type=text],
.contact-form table td input[type=email],
.contact-form table td input[type=tel] {
  padding: 8px;
  border: 1px solid #999;
  border-radius: 3px;
  font-size: 1em;
}
.contact-form table td input::-moz-placeholder {
  font-size: 0.9em;
  color: #ccc;
}
.contact-form table td input::placeholder {
  font-size: 0.9em;
  color: #ccc;
}
.contact-form table td .full {
  width: 100%;
}
.contact-form table td .per60 {
  width: 100%;
}
@media screen and (min-width: 768px), print {
  .contact-form table td .per60 {
    width: 60%;
  }
}
.contact-form table td select {
  padding: 8px 4px;
  border-radius: 3px;
  border: 1px solid #999;
}
.contact-form table td textarea {
  padding: 8px 4px;
  border-radius: 3px;
  border: 1px solid #999;
}
.contact-submit {
  margin-top: 1em;
  text-align: center;
}
.contact-submit .btn {
  display: block;
  border: 1px solid #F7931D;
  background-color: #fff;
  color: #F7931D;
  text-decoration: none;
  font-weight: bold;
  padding: 20px;
  width: 150px;
  margin: 0 auto;
  cursor: pointer;
  transition: background-color 0.3s ease;
  transition-property: background-color, color;
  transition-timing-function: ease;
  transition-duration: 0.5s;
}
.contact-submit .btn:hover {
  color: #fff;
  background-color: #F7931D;
  border: 1px solid #F7931D;
}

/* --------------------------------

  ローディング

-------------------------------- */
.loader {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.6s ease;
}
@media screen and (max-width: 1099.98px) {
  .loader {
    position: absolute;
    height: auto;
    padding-top: 50%;
  }
}
.loader.loading {
  opacity: 1;
  pointer-events: auto;
}
.loader::before {
  content: "";
  display: block;
  position: absolute;
  top: -45px;
  right: 0;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 60px;
  margin: auto;
  border: 4px solid #ddd;
  border-top: 4px solid #F7931D;
  border-radius: 50%;
  z-index: 1;
  animation: spin 3s linear infinite;
}
@media screen and (max-width: 1099.98px) {
  .loader::before {
    width: 40px;
    height: 40px;
    border: 2px solid #ddd;
    border-top: 2px solid #F7931D;
    top: 0;
  }
}
.loader img {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 140px;
  margin: auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* --------------------------------

  メインビジュアル

-------------------------------- */
.mainvisual {
  position: relative;
  margin-top: 90px;
  padding: 0;
  background-color: #FFF;
}
.mainvisual::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: min(60 * var(--vw1440), 60px);
  width: min(500 * var(--vw1440), 500px);
  height: 240px;
  background: #F4F4F4;
  z-index: 0;
}
@media screen and (max-width: 1099.98px) {
  .mainvisual::after {
    display: none;
  }
}
@media screen and (max-width: 1099.98px) {
  .mainvisual {
    margin-top: 60px;
    padding: 0;
  }
}
.mainvisual .inner {
  max-width: none;
}
.mainvisual-slider {
  padding: 0;
}
@media screen and (min-width: 1100px), print {
  .mainvisual-slider {
    padding: 0 0 0 min(350 * var(--vw1440), 350px);
  }
}
.mainvisual-catch {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  z-index: 1;
  padding: 0 0 1em 0;
  pointer-events: none;
}
@media screen and (min-width: 1100px), print {
  .mainvisual-catch {
    padding: 0;
  }
}
.mainvisual-catch__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: min(10 * var(--vw1440), 10px);
  pointer-events: auto;
}
.mainvisual-catch__title p {
  display: inline-block;
  padding: min(15 * var(--vw768), 15px) min(20 * var(--vw768), 20px) min(15 * var(--vw768), 15px) min(20 * var(--vw768), 20px);
  font-weight: 700;
  background: #fff;
}
@media screen and (min-width: 768px), print {
  .mainvisual-catch__title p {
    padding: min(16 * var(--vw1440), 16px) min(20 * var(--vw1440), 20px) min(16 * var(--vw1440), 16px) min(30 * var(--vw1440), 30px);
  }
}
@media screen and (min-width: 1100px), print {
  .mainvisual-catch__title p {
    padding: min(16 * var(--vw1440), 16px) min(40 * var(--vw1440), 40px) min(16 * var(--vw1440), 16px) min(50 * var(--vw1440), 50px);
  }
}
.mainvisual-catch__title p.title1 {
  font-size: min(26 * var(--vw768), 26px);
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px), print {
  .mainvisual-catch__title p.title1 {
    font-size: min(38 * var(--vw1440), 38px);
  }
}
@media screen and (min-width: 1100px), print {
  .mainvisual-catch__title p.title1 {
    font-size: min(52 * var(--vw1440), 52px);
  }
}
.mainvisual-catch__title p.title2 {
  font-size: min(18 * var(--vw768), 18px);
}
@media screen and (min-width: 768px), print {
  .mainvisual-catch__title p.title2 {
    font-size: min(28 * var(--vw1440), 28px);
  }
}
@media screen and (min-width: 1100px), print {
  .mainvisual-catch__title p.title2 {
    font-size: min(38 * var(--vw1440), 38px);
  }
}
.mainvisual-catch__title p span {
  color: #DD1714;
}

/* ===== Kobayashi - hero ===== */
.kobayashi-page .hero {
  position: relative;
  overflow: hidden;
}
.kobayashi-page .hero__inner {
  position: relative;
  max-width: 1520px;
  margin: 0 auto;
  padding: 118px 40px 88px;
}
.kobayashi-page .hero__content {
  width: 780px;
  max-width: 780px;
}
.kobayashi-page .hero__lead {
  margin: 0 0 22px;
  color: #212121;
  font-family: "Shippori Mincho", serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.kobayashi-page .hero__title {
  margin: 0 0 30px;
  color: #222;
  font-family: "Shippori Mincho", serif;
  font-size: 5.6rem;
  font-weight: 600;
  line-height: 1.42;
  letter-spacing: 0.02em;
}
.kobayashi-page .hero__title span {
  color: #F7931D;
}
.kobayashi-page .hero__text {
  margin: 0;
  color: #333;
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0.02em;
}
.kobayashi-page .hero__banner {
  display: inline-block;
  padding: 16px 90px 16px 40px;
  color: #fff;
  background: #F7931D;
  clip-path: polygon(0 0, 100% 0, 97% 100%, 0 100%);
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

@media (max-width: 680px) {
  .kobayashi-page .hero {
    background: linear-gradient(180deg, #FFF6EE 0%, rgba(255, 246, 238, 0) 78%);
  }
  .kobayashi-page .hero::after {
    content: "";
    display: block;
    height: 240px;
    background: url("../img/top/mv.jpg") no-repeat center/cover;
  }
  .kobayashi-page .hero__inner {
    padding: 44px 22px 36px;
  }
  .kobayashi-page .hero__content {
    width: 100%;
    max-width: 100%;
  }
  .kobayashi-page .hero__lead {
    margin-bottom: 14px;
    font-size: 1.5rem;
  }
  .kobayashi-page .hero__title {
    margin-bottom: 18px;
    font-size: 2.6rem;
    line-height: 1.5;
  }
  .kobayashi-page .hero__text {
    font-size: 1.5rem;
    line-height: 1.9;
  }
  .kobayashi-page .hero__banner {
    position: absolute;
    bottom: 24px;
    left: 0;
    z-index: 2;
    max-width: 92%;
    padding: 12px 26px 12px 22px;
    clip-path: polygon(0 0, 100% 0, calc(100% - 18px) 100%, 0 100%);
    font-size: 1.4rem;
    line-height: 1.6;
    white-space: normal;
  }
}
@media (max-width: 374px) {
  .kobayashi-page .hero__title {
    font-size: 2.3rem;
  }
}
/* --------------------------------

  ぱんくず

-------------------------------- */
.pankz {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 2.5em;
}
.pankz span {
  font-size: 1.5rem;
}
@media screen and (max-width: 767.98px) {
  .pankz span {
    font-size: 1.4rem;
  }
}
.pankz-area {
  max-width: 1100px;
  margin: 0 auto 2em;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 1099.98px) {
  .pankz-area {
    margin: 0 auto 1.5em;
  }
}
.pankz-item {
  position: relative;
  list-style: none;
  font-size: 1.6rem;
  line-height: 1.2;
  margin-bottom: 0.5em;
  color: #000;
}
.pankz-item:not(:last-child) {
  padding-right: 1.2em;
  margin-right: 1em;
}
.pankz-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(135deg);
  display: block;
  width: 7px;
  height: 7px;
  border-top: 2px solid #999;
  border-left: 2px solid #999;
}
.pankz-item._current a {
  position: relative;
  color: #F7931D;
  padding-left: 1.5em;
}
.pankz-item._current a:hover {
  text-decoration: underline;
}
.pankz-item._current a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 16px;
  height: 14px;
  background: url("../img/base/icon_home_green2.svg") no-repeat center/cover;
}

/* --------------------------------

  id01　トップページ

-------------------------------- */
/* ページ内共通 */
.section {
  margin-right: -1em;
  margin-left: -1em;
}
@media screen and (min-width: 1100px), print {
  .section {
    margin-right: -2em;
    margin-left: -2em;
  }
}
.section-secondary {
  padding-right: 1em;
  padding-left: 1em;
}
@media screen and (min-width: 1100px), print {
  .section-secondary {
    padding-right: 2em;
    padding-left: 2em;
  }
}
.section-secondary:not(:last-child) {
  margin-bottom: 10em;
}
@media screen and (max-width: 639.98px) {
  .section-secondary:not(:last-child) {
    margin-bottom: 3em;
  }
}
.section-secondary .inner {
  line-height: 1.5;
}
@media screen and (min-width: 768px), print {
  .section-secondary .inner {
    line-height: 1.8;
  }
}
.section-dummy {
  text-align: center;
}
.section-dummy:not(:last-child) {
  margin-bottom: 5em;
}
.section-dummy .inner {
  max-width: none;
  text-align: center;
}
.section-dummy_wide {
  overflow: hidden;
}
.section-dummy_wide .inner {
  margin-right: -23%;
  margin-left: -23%;
}
@media screen and (min-width: 1100px), print {
  .section-dummy_wide .inner {
    margin-right: -250px;
    margin-left: -250px;
  }
}
.section-header {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.section-heading {
  position: relative;
  display: block;
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px), print {
  .section-heading {
    margin-bottom: 4rem;
  }
}
.section-heading .jp {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  font-size: 3rem;
  font-weight: 600;
  color: #222;
}
@media screen and (min-width: 768px), print {
  .section-heading .jp {
    font-size: 3.4rem;
  }
}
.section-heading .jp::before, .section-heading .jp::after {
  content: "";
  border-bottom: 2px solid #ddd;
}
@media screen and (min-width: 768px), print {
  .section-heading .jp::before, .section-heading .jp::after {
    width: 100%;
    max-width: 80px;
  }
}
@media screen and (max-width: 767.98px) {
  .section-heading .jp::before, .section-heading .jp::after {
    flex: 1;
  }
}
.section-heading .jp::before {
  margin: 0 1em 0 0;
}
.section-heading .jp::after {
  margin: 0 0 0 1em;
}

.top-about-section {
  position: relative;
  padding: 6rem 1em;
}
.top-about-section::before {
  content: "";
  position: absolute;
  top: 1.6rem;
  left: 0;
  width: min(500 * var(--vw1440), 500px);
  height: 150px;
  background: #F4F4F4;
  z-index: -1;
}
@media screen and (min-width: 1100px), print {
  .top-about-section::before {
    left: min(60 * var(--vw1440), 60px);
    top: 0;
  }
}
@media screen and (max-width: 767.98px) {
  .top-about-section::before {
    display: none;
  }
}
@media screen and (min-width: 1100px), print {
  .top-about-section {
    padding: 7rem 2em 10rem 2em;
  }
}
.top-about-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1.5em;
  max-width: 450px;
  margin: 0 auto;
}
@media screen and (min-width: 768px), print {
  .top-about-container {
    flex-direction: row;
    max-width: 1600px;
    justify-content: center;
    margin: 0;
    gap: 2em;
  }
}
@media screen and (min-width: 1100px), print {
  .top-about-container {
    gap: min(85 * var(--vw1600), 85px);
  }
}
@media screen and (max-width: 1099.98px) {
  .top-about-main {
    flex: 1;
    min-width: 0;
  }
}
@media screen and (min-width: 768px), print {
  .top-about-side {
    width: min(440 * var(--vw1100), 440px);
  }
}
@media screen and (max-width: 767.98px) {
  .top-about-side {
    position: relative;
  }
}
@media screen and (max-width: 767.98px) and (max-width: 767.98px) {
  .top-about-side::before {
    content: "";
    position: absolute;
    top: -1.6rem;
    left: -1.6rem;
    right: 1.6rem;
    bottom: 1.6rem;
    background: #F4F4F4;
    z-index: -1;
  }
}
.top-about-img {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: min(350 * var(--vw600), 350px);
}
@media screen and (min-width: 768px), print {
  .top-about-img {
    width: min(350 * var(--vw1100), 350px);
  }
}
.top-about-heading {
  display: block;
  line-height: 1.5;
  font-weight: 700;
  font-size: 2.2rem;
  margin-bottom: 0.75em;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px), print {
  .top-about-heading {
    font-size: min(36 * var(--vw1100), 36px);
    margin-bottom: 0.8em;
  }
}
.top-about-heading span {
  color: #DD1714;
}
.top-about-text {
  line-height: 2;
  font-size: 1.5rem;
  font-weight: 400;
}
@media screen and (min-width: 768px), print {
  .top-about-text {
    font-size: min(15 * var(--vw1100), 15px);
  }
}
@media screen and (min-width: 1100px), print {
  .top-about-text {
    max-width: 420px;
  }
}
.top-about-text p:not(:last-child) {
  margin-bottom: 1rem;
}

.top-feature-section {
  padding: 6rem 1em;
}
@media screen and (min-width: 1100px), print {
  .top-feature-section {
    padding: 6rem 2em 10rem;
  }
}
.top-feature-text {
  font-size: 1.5rem;
  line-height: 1.9;
}
.top-feature-wrap {
  display: grid;
  gap: 2.5rem;
  margin-top: 3rem;
  counter-reset: number;
}
@media screen and (min-width: 768px), print {
  .top-feature-wrap {
    margin-top: 5rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1100px), print {
  .top-feature-wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 767.98px) {
  .top-feature-wrap {
    max-width: 350px;
    margin: 0 auto;
    margin-top: 3rem;
  }
}
.top-feature-item {
  background: #fff;
  box-shadow: 0 0 11px 0 rgba(0, 0, 0, 0.05);
  padding: 1rem 1rem 1rem 1rem;
}
@media screen and (min-width: 768px), print {
  .top-feature-item {
    padding: 1rem 1rem 4.5rem 1rem;
  }
}
.top-feature-img {
  position: relative;
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 20px;
}
.top-feature-img .number {
  counter-increment: number;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  width: 45px;
  height: 45px;
}
.top-feature-img .number::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #FF9089;
  transform: rotate(45deg);
}
.top-feature-img .number::after {
  content: counter(number, decimal-leading-zero);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "BIZ UDPMincho", serif;
  font-size: 2.4rem;
}
.top-feature-heading {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.45;
  place-content: center;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px), print {
  .top-feature-heading {
    margin-bottom: 1rem;
    font-size: 3rem;
  }
}

.top-service-section {
  padding: 5rem 1em 6rem;
  background: url(../img/base/mv2.jpg) no-repeat center/cover;
}
@media screen and (min-width: 1100px), print {
  .top-service-section {
    padding: 7rem 2em 9rem;
  }
}
.top-service-section .inner {
  max-width: 925px;
}
.top-service-section .section-heading {
  position: relative;
}
.top-service-section .section-heading .jp {
  color: #fff;
}
.top-service-section .section-heading .en {
  position: absolute;
  top: -1em;
  left: 22%;
  display: inline-block;
  line-height: 1;
  font-size: 5.2rem;
  font-family: "Allura", cursive;
  background: rgba(255, 255, 255, 0.3);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.06em;
  margin-left: -2rem;
}
@media screen and (min-width: 768px), print {
  .top-service-section .section-heading .en {
    font-size: 7.2rem;
  }
}
.top-service-item {
  display: flex;
  gap: 1rem;
}
@media screen and (min-width: 768px), print {
  .top-service-item {
    gap: 2rem;
  }
}
@media screen and (max-width: 1099.98px) {
  .top-service-item {
    flex-direction: column;
  }
}
.top-service-item:not(:last-child) {
  margin-bottom: 3rem;
}
@media screen and (min-width: 1100px), print {
  .top-service-item:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.top-service-title {
  width: 100%;
  place-content: center;
  text-align: center;
  border: 1px solid #fff;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.35;
  padding: 1.2rem 1rem;
}
@media screen and (min-width: 1100px), print {
  .top-service-title {
    width: 205px;
    height: 65px;
    border: 2px solid #fff;
    padding: 0;
  }
}
.top-service-title .br {
  display: block;
}
@media screen and (max-width: 1099.98px) {
  .top-service-title .br {
    display: none;
  }
}
.top-service-list {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  flex: 1;
  min-width: 0;
}
@media screen and (min-width: 480px), print {
  .top-service-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 768px), print {
  .top-service-list {
    gap: 2rem;
  }
}
.top-service-list li span {
  display: block;
  color: #111;
  font-size: 1.2rem;
  font-weight: normal;
  margin-top: 0.3rem;
}
@media screen and (min-width: 1100px), print {
  .top-service-list li span {
    font-size: 1.3rem;
  }
}
.top-service-link {
  display: block;
  width: 100%;
  height: 100%;
  place-content: center;
  text-align: center;
  padding: 1rem 1rem;
  color: #FF9089;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.35;
  background-color: #fff;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (min-width: 1100px), print {
  .top-service-link {
    width: 220px;
    height: 65px;
    font-size: 1.8rem;
    padding: 0;
  }
}
.top-service-link:hover {
  color: #fff;
  background-color: #FF9089;
}
.top-service-link:hover span {
  color: #fff;
}

.top-knowledge-section {
  padding: 6rem 1em;
  background-color: #F3F5F5;
}
@media screen and (min-width: 1100px), print {
  .top-knowledge-section {
    padding: 8rem 2em 10rem;
  }
}
.top-knowledge-section .section-heading .jp span {
  display: contents;
  color: #4397A3;
}
.top-knowledge-wrap {
  padding: 3rem 2rem;
  background-color: #fff;
}
@media screen and (min-width: 1100px), print {
  .top-knowledge-wrap {
    padding: 4rem 3rem;
  }
}
.top-knowledge-topics:not(:last-child) {
  padding-bottom: 1.5em;
  margin-bottom: 1.5em;
  border-bottom: 1px solid #ddd;
}
.top-knowledge-link {
  transition: opacity 0.3s ease;
}
.top-knowledge-link:hover {
  opacity: 0.8;
}
.top-knowledge-title {
  position: relative;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.2em;
  padding-left: 15px;
}
@media screen and (min-width: 640px), print {
  .top-knowledge-title {
    font-size: 1.8rem;
  }
}
.top-knowledge-title::before {
  content: "";
  position: absolute;
  top: 0.6rem;
  left: 0;
  display: block;
  width: 10px;
  height: 10px;
  background: #DD1714;
}
.top-knowledge-text {
  flex: 1;
  font-size: 1.4rem;
  line-height: 1.8;
}
.top-knowledge-btn {
  text-align: center;
  margin-top: 3em;
}

@media screen and (max-width: 767.98px) {
  .tab-menu-inner {
    border-top: 1px solid #FF9089;
    border-bottom: 1px solid #FF9089;
  }
}
.tab-menu-list {
  display: flex;
  flex-wrap: nowrap;
}
.tab-menu-list li {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  height: 50px;
}
.tab-menu-list li + li {
  border-left: 1px solid #ddd;
}
@media screen and (max-width: 767.98px) {
  .tab-menu-list li {
    height: 44px;
  }
}
@media screen and (max-width: 359.98px) {
  .tab-menu-list li {
    height: 40px;
  }
}
@media screen and (max-width: 767.98px) {
  .tab-menu-list li:nth-child(odd), .tab-menu-list li:nth-child(-n+2) {
    border-bottom: 0;
  }
}
.tab-menu-list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #fff;
  line-height: 1.2;
  text-align: center;
  font-size: 1.8rem;
  color: #FF9089;
  padding: 0.5em 0.3em;
  white-space: nowrap;
  transition-property: background-color, color;
  transition-timing-function: ease;
  transition-duration: 0.5s;
}
@media screen and (max-width: 1099.98px) {
  .tab-menu-list li a {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767.98px) {
  .tab-menu-list li a {
    font-size: 1.1rem;
    padding: 0.4em 0.2em;
  }
}
@media screen and (max-width: 359.98px) {
  .tab-menu-list li a {
    font-size: 0.95rem;
  }
}
.tab-menu-list li a.active {
  background-color: #FF9089;
  color: #fff;
}
.tab-menu-list li a:hover {
  background-color: #FF9089;
  color: #fff;
}

.top-staff-section {
  position: relative;
  padding: 6rem 1em 4rem 1em;
  margin-bottom: 5rem;
}
.top-staff-section::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  top: 9rem;
  width: 85%;
  background: #F7F7F7;
}
@media screen and (min-width: 768px), print {
  .top-staff-section::before {
    top: 13rem;
  }
}
@media screen and (min-width: 1100px), print {
  .top-staff-section::before {
    top: 22rem;
    width: 82%;
  }
}
@media screen and (min-width: 1100px), print {
  .top-staff-section {
    padding: 10rem 2em 8rem 2em;
    margin-bottom: 10rem;
  }
}
@media screen and (max-width: 767.98px) {
  .top-staff-heading br {
    display: none;
  }
}
.top-staff-heading .jp {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px), print {
  .top-staff-heading .jp {
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 1100px), print {
  .top-staff-heading .jp {
    font-size: 3.6rem;
  }
}
.top-staff-heading .en {
  display: inline-block;
  line-height: 1;
  font-size: 3.2rem;
  font-family: "Allura", cursive;
  background: rgba(221, 23, 19, 0.3);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px), print {
  .top-staff-heading .en {
    font-size: 5.2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .top-staff-heading .en {
    margin-left: -2rem;
  }
}
.top-staff-text {
  font-size: 1.5rem;
  line-height: 2;
}
.top-staff-text p:not(:last-child) {
  margin-bottom: 1em;
}
.top-staff-wrap {
  display: flex;
  align-items: center;
  gap: 3rem;
}
@media screen and (min-width: 1100px), print {
  .top-staff-wrap {
    gap: 5rem;
  }
}
@media screen and (min-width: 1280px), print {
  .top-staff-wrap {
    gap: 10rem;
  }
}
@media screen and (max-width: 1099.98px) {
  .top-staff-wrap {
    flex-direction: column-reverse;
  }
}
.top-staff-main {
  flex: 1;
  min-width: 0;
}
.top-staff-name {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px), print {
  .top-staff-name {
    margin-top: 3.5rem;
  }
}
.top-staff-name dt,
.top-staff-name dd {
  font-weight: 700;
  line-height: 1.2;
}
.top-staff-name dt {
  font-size: 1.4rem;
}
@media screen and (min-width: 768px), print {
  .top-staff-name dt {
    font-size: 1.8rem;
  }
}
.top-staff-name dd {
  font-size: 2.4rem;
}
@media screen and (min-width: 768px), print {
  .top-staff-name dd {
    font-size: 3rem;
  }
}

.top-office-section {
  position: relative;
  padding: 6rem 1em;
}
@media screen and (min-width: 1100px), print {
  .top-office-section {
    padding: 6rem 2em 12rem;
  }
}
.top-office-wrap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (min-width: 1100px), print {
  .top-office-wrap {
    flex-direction: row-reverse;
    align-items: center;
    gap: 4rem;
  }
}
@media screen and (min-width: 1100px), print {
  .top-office-wrap {
    gap: 8rem;
  }
}
.top-office-main {
  flex: 1;
  min-width: 0;
}
.top-office-table th,
.top-office-table td {
  line-height: 1.6;
}
@media screen and (min-width: 768px), print {
  .top-office-table th,
  .top-office-table td {
    line-height: 1.78;
  }
}
.top-office-table th {
  font-weight: 500;
  font-size: 1.7rem;
  width: 80px;
  padding: 1rem 0;
}
@media screen and (min-width: 768px), print {
  .top-office-table th {
    font-size: 1.6rem;
    width: 120px;
    padding: 1.5rem 0;
  }
}
.top-office-table td {
  font-size: 1.7rem;
  padding: 1rem 0;
}
@media screen and (min-width: 768px), print {
  .top-office-table td {
    font-size: 1.6rem;
    padding: 1.5rem 0;
  }
}
.top-office-group {
  margin-top: 4rem;
  font-size: 1.5rem;
  line-height: 1.9;
}
@media screen and (min-width: 768px), print {
  .top-office-group {
    margin-top: 6rem;
    font-size: 1.6rem;
  }
}
.top-office-group-heading {
  margin-bottom: 2.5rem;
  color: #111;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .top-office-group-heading {
    margin-bottom: 3.5rem;
    font-size: 3rem;
  }
}
.top-office-group-lead {
  position: relative;
  padding: 1.8rem 1.8rem 1.8rem 4.2rem;
  border: 1px solid rgba(247, 147, 29, 0.18);
  background-color: rgba(250, 235, 237, 0.35);
}
@media screen and (min-width: 768px), print {
  .top-office-group-lead {
    padding: 2.2rem 3rem 2.2rem 5.2rem;
  }
}
.top-office-group-lead::before {
  content: "";
  position: absolute;
  left: 1.8rem;
  top: 2.5rem;
  width: 20px;
  height: 20px;
  background: url("../img/base/light.svg") no-repeat center/contain;
}
@media screen and (min-width: 768px), print {
  .top-office-group-lead::before {
    left: 2.4rem;
    top: 2.9rem;
    width: 22px;
    height: 22px;
  }
}
.top-office-group-policy {
  margin-top: 4rem;
}
@media screen and (min-width: 768px), print {
  .top-office-group-policy {
    margin-top: 6rem;
  }
}
.top-office-group-policy h4 {
  margin-bottom: 2rem;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px), print {
  .top-office-group-policy h4 {
    margin-bottom: 3rem;
    font-size: 2.6rem;
  }
}
.top-office-group-list {
  padding-left: 1.8rem;
  border-left: 2px solid #ddd;
}
@media screen and (min-width: 768px), print {
  .top-office-group-list {
    padding-left: 2.4rem;
  }
}
.top-office-group-list section + section {
  margin-top: 1.6rem;
}
.top-office-group-list h5 {
  margin-bottom: 0.6rem;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 768px), print {
  .top-office-group-list h5 {
    font-size: 1.9rem;
  }
}
.top-office-group-note {
  margin-top: 3rem;
  padding: 1.6rem 1.8rem;
  background-color: #f8f8f8;
}
@media screen and (min-width: 768px), print {
  .top-office-group-note {
    margin-top: 3.5rem;
    padding: 1.8rem 2rem;
  }
}

/* ===== Kobayashi - front page sections ===== */
.kobayashi-page .features {
  padding: 150px 40px 130px;
}

.kobayashi-page .features__inner,
.kobayashi-page .service__inner,
.kobayashi-page .profile__inner,
.kobayashi-page .office__inner,
.kobayashi-page .knowledge__inner,
.kobayashi-page .news__inner {
  max-width: 1330px;
  margin: 0 auto;
}

.kobayashi-page .features__head {
  margin-bottom: 70px;
  text-align: center;
}

.kobayashi-page .features__sub {
  margin: 0 0 14px;
  color: #080808;
  font-family: "Shippori Mincho", serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: left;
}

.kobayashi-page .features__title {
  margin: 0 0 20px;
  color: #333;
  font-family: "Shippori Mincho", serif;
  font-size: 3.8rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
}

.kobayashi-page .features__title span {
  color: #F7931D;
}

.kobayashi-page .section-line {
  width: 80px;
  height: 3px;
  margin: 0;
  background: #F7931D;
}

.kobayashi-page .feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.kobayashi-page .feature-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.kobayashi-page .feature-card__head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px 20px;
}

.kobayashi-page .feature-card__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex: none;
  width: 55px;
  height: 55px;
  color: #fff;
  background: linear-gradient(0deg, #F7931D, #FFA727);
  border-radius: 10px;
}

.kobayashi-page .feature-card__badge small {
  font-size: 1.1rem;
  line-height: 1;
}

.kobayashi-page .feature-card__badge strong {
  font-family: "Shippori Mincho", serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.1;
}

.kobayashi-page .feature-card__title {
  margin: 0;
  color: #222;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.03em;
  white-space: pre-line;
}

.kobayashi-page .feature-card__image {
  width: 100%;
  height: auto;
  margin: 0 0 22px;
  -o-object-fit: cover;
  object-fit: cover;
}

.kobayashi-page .feature-card__text {
  margin: 0;
  padding: 0 20px 30px;
  font-size: 1.6rem;
  line-height: 1.9;
  letter-spacing: 0.02em;
}

.kobayashi-page .service {
  padding: 104px 40px 120px;
  background: #FFF6EE;
}

.kobayashi-page .section-heading-center {
  margin-bottom: 26px;
  text-align: center;
}

.kobayashi-page .section-heading-center__title {
  margin: 0 0 12px;
  color: #222;
  font-family: "Shippori Mincho", serif;
  font-size: 3.8rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.kobayashi-page .section-heading-center__en {
  margin: 0;
  color: #F7931D;
  font-family: "Shippori Mincho", serif;
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: 0.15em;
}

.kobayashi-page .service__desc {
  margin: 0 0 58px;
  color: #333;
  font-size: 1.6rem;
  line-height: 1.9;
  text-align: center;
}

.kobayashi-page .service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.kobayashi-page .service-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.kobayashi-page .service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.09);
}

.kobayashi-page .service-card__image {
  width: 100%;
  height: 165px;
  -o-object-fit: cover;
  object-fit: cover;
}

.kobayashi-page .service-card__body {
  padding: 24px 24px 26px;
}

.kobayashi-page .service-card__title {
  margin: 0 0 12px;
  color: #222;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.03em;
}

.kobayashi-page .service-card__text {
  height: 74px;
  margin: 0 0 22px;
  color: #333;
  font-size: 1.4rem;
  line-height: 1.75;
}

.kobayashi-page .view-more {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.kobayashi-page .view-more__text {
  color: #FF9089;
  font-family: "Shippori Mincho", serif;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.04em;
}

.kobayashi-page .view-more__arrow {
  position: relative;
  display: inline-block;
  width: 58px;
  height: 12px;
}

.kobayashi-page .view-more__arrow::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: #FF9089;
}

.kobayashi-page .view-more__arrow::after {
  content: "";
  position: absolute;
  right: -2px;
  bottom: 0;
  width: 10px;
  height: 10px;
  background: #FF9089;
  clip-path: polygon(0 0, 0 100%, 100% 100%);
}

.kobayashi-page .profile {
  padding: 116px 40px 120px;
  background: #FFF;
}

.kobayashi-page .profile__head {
  margin-bottom: 66px;
  text-align: center;
}

.kobayashi-page .profile__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 70px;
  align-items: start;
  max-width: 1330px;
  margin: 0 auto;
}

.kobayashi-page .profile__figure {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  text-align: center;
}

.kobayashi-page .profile__body {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
}

.kobayashi-page .profile__text {
  margin: 0 0 26px;
  color: #222;
  font-size: 1.6rem;
  line-height: 2.25;
}

.kobayashi-page .profile__license-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.kobayashi-page .profile__license-head::before {
  content: "";
  width: 6px;
  height: 25px;
  background: #FF9089;
}

.kobayashi-page .profile__license-head span {
  color: #222;
  font-family: "Shippori Mincho", serif;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
}

.kobayashi-page .profile__license-list {
  margin: 0;
  padding: 0 0 0 22px;
}

.kobayashi-page .profile__license-list li {
  color: #222;
  font-size: 1.6rem;
  line-height: 2.25;
  list-style: disc;
}

.kobayashi-page .profile__portrait {
  width: 430px;
  height: 500px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 auto;
}

.kobayashi-page .profile__caption {
  margin-top: 22px;
  color: #222;
  font-family: "Shippori Mincho", serif;
  text-align: center;
}

.kobayashi-page .profile__role {
  font-size: 1.6rem;
  line-height: 1.4;
}

.kobayashi-page .profile__name {
  margin-top: 4px;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.kobayashi-page .office {
  padding: 92px 40px 96px;
  background: url("../img/top/office-bg.jpg") center/cover no-repeat;
}

.kobayashi-page .office .section-heading-center__title,
.kobayashi-page .office .section-heading-center__en {
  color: #fff;
}

.kobayashi-page .office .section-heading-center {
  margin-bottom: 54px;
}

.kobayashi-page .office__table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 50px;
  max-width: 1250px;
  margin: 0 auto;
}

.kobayashi-page .office__row {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.kobayashi-page .office__key {
  flex: none;
  width: 90px;
  color: #fff;
  font-size: 1.7rem;
  font-weight: 500;
}

.kobayashi-page .office__val {
  margin: 0;
  color: #fff;
  font-size: 1.7rem;
  line-height: 1.7;
}

.kobayashi-page .office__button-wrap {
  margin-top: 56px;
  text-align: center;
}

.kobayashi-page .office__button {
  display: inline-flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 14px;
  width: 220px;
  height: 60px;
  color: #F7931D;
  background: #fff;
  border-radius: 50px;
  font-size: 1.7rem;
  font-weight: 700;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.kobayashi-page .office__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.kobayashi-page .knowledge {
  padding: 0 40px;
  background: linear-gradient(to bottom, #FEFBF8 0, #FEFBF8 215px, #FFF6EE 215px, #FFF6EE 100%);
}

.kobayashi-page .knowledge__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 215px;
  margin-bottom: 0;
}

.kobayashi-page .knowledge__title {
  margin: 0 0 10px;
  color: #111;
  font-family: "Shippori Mincho", serif;
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.kobayashi-page .knowledge__en {
  margin: 0;
  color: #F7931D;
  font-family: "Shippori Mincho", serif;
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: 0.15em;
}

.kobayashi-page .round-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 200px;
  height: 60px;
  padding: 0 28px 0 38px;
  color: #fff;
  background: linear-gradient(90deg, #FF8C42, #FFA726);
  border-radius: 50px;
  font-size: 1.6rem;
  font-weight: 700;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.kobayashi-page .round-button:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

.kobayashi-page .knowledge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding: 60px 0 70px;
}

.kobayashi-page .knowledge-card {
  overflow: hidden;
  height: 240px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
  transition: box-shadow 0.2s ease;
}

.kobayashi-page .knowledge-card:hover {
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.07);
}

.kobayashi-page .knowledge-card__body {
  padding: 27px 25px 30px;
}

.kobayashi-page .knowledge-card__head {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.kobayashi-page .knowledge-card__dot {
  flex: none;
  width: 10px;
  height: 10px;
  margin-top: 9px;
  background: #FF9089;
}

.kobayashi-page .knowledge-card__title {
  margin: 0;
  color: #222;
  font-family: "Shippori Mincho", serif;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.55;
}

.kobayashi-page .knowledge-card__text {
  margin: 0;
  color: #222;
  font-size: 1.5rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

.kobayashi-page .news {
  padding: 82px 40px 220px;
  background: #FEFBF8;
}

.kobayashi-page .news__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1250px;
}

.kobayashi-page .news .knowledge__en {
  margin-bottom: 46px;
}

.kobayashi-page .news-list {
  display: block;
  grid-template-columns: none;
  gap: 0;
  border-top: 0;
}

.kobayashi-page .news-list__item {
  display: block;
  padding: 0 4px 22px;
  border-bottom: 1px solid rgba(0, 5, 58, 0.2);
}

.kobayashi-page .news-list__item + .news-list__item {
  padding-top: 24px;
}

.kobayashi-page .news-list__date {
  margin-bottom: 8px;
  color: #555;
  font-family: "Shippori Mincho", serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.kobayashi-page .news-list__text {
  margin: 0;
  color: #000;
  font-size: 1.6rem;
  line-height: 2;
}

@media (max-width: 680px) {
  .kobayashi-page .features,
  .kobayashi-page .service,
  .kobayashi-page .profile,
  .kobayashi-page .office,
  .kobayashi-page .knowledge,
  .kobayashi-page .news {
    padding-right: 22px;
    padding-left: 22px;
  }
  .kobayashi-page .features {
    padding-top: 60px;
    padding-bottom: 56px;
  }
  .kobayashi-page .service {
    padding-top: 84px;
    padding-bottom: 60px;
  }
  .kobayashi-page .profile {
    padding-top: 84px;
    padding-bottom: 68px;
  }
  .kobayashi-page .office {
    padding-top: 84px;
    padding-bottom: 60px;
  }
  .kobayashi-page .news {
    padding-top: 60px;
    padding-bottom: 64px;
  }
  .kobayashi-page .features__title,
  .kobayashi-page .section-heading-center__title,
  .kobayashi-page .knowledge__title {
    font-size: 2.4rem;
  }
  .kobayashi-page .feature-grid,
  .kobayashi-page .service-grid,
  .kobayashi-page .office__table,
  .kobayashi-page .knowledge-grid,
  .kobayashi-page .news__inner {
    grid-template-columns: 1fr;
  }
  .kobayashi-page .features__head {
    margin-bottom: 34px;
  }
  .kobayashi-page .features__sub {
    margin-bottom: 10px;
    font-size: 1.7rem;
  }
  .kobayashi-page .feature-grid {
    gap: 20px;
  }
  .kobayashi-page .feature-card__head {
    gap: 12px;
    padding: 20px 16px 14px;
  }
  .kobayashi-page .feature-card__badge {
    width: 48px;
    height: 48px;
  }
  .kobayashi-page .feature-card__badge strong {
    font-size: 1.9rem;
  }
  .kobayashi-page .feature-card__title {
    font-size: 2rem;
  }
  .kobayashi-page .feature-card__image {
    margin-bottom: 16px;
  }
  .kobayashi-page .feature-card__text {
    padding: 0 18px 24px;
    font-size: 1.5rem;
    line-height: 1.8;
  }
  .kobayashi-page .section-heading-center {
    margin-bottom: 20px;
  }
  .kobayashi-page .service__desc {
    margin-bottom: 28px;
    font-size: 1.7rem;
  }
  .kobayashi-page .service-grid {
    gap: 18px;
  }
  .kobayashi-page .service-card__body {
    padding: 18px 18px 20px;
  }
  .kobayashi-page .service-card__text {
    height: auto;
    margin-bottom: 14px;
  }
  .kobayashi-page .service-card__image {
    height: 165px;
  }
  .kobayashi-page .profile__head {
    margin-bottom: 34px;
  }
  .kobayashi-page .profile__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .kobayashi-page .profile__figure {
    grid-column: 1;
    grid-row: 1;
  }
  .kobayashi-page .profile__body {
    grid-column: 1;
    grid-row: 2;
  }
  .kobayashi-page .profile__text {
    margin-bottom: 20px;
    font-size: 1.7rem;
    line-height: 2;
  }
  .kobayashi-page .profile__portrait {
    width: 100%;
    max-width: 430px;
    height: auto;
    margin: 0 auto;
  }
  .kobayashi-page .office .section-heading-center {
    margin-bottom: 30px;
  }
  .kobayashi-page .office__table {
    gap: 0;
  }
  .kobayashi-page .office__row {
    gap: 18px;
    padding: 15px 0;
  }
  .kobayashi-page .office__key {
    width: 78px;
    font-size: 1.7rem;
  }
  .kobayashi-page .office__val {
    font-size: 1.7rem;
    line-height: 1.6;
  }
  .kobayashi-page .office__button-wrap {
    margin-top: 32px;
  }
  .kobayashi-page .knowledge {
    padding-top: 84px;
    background: #FFF6EE;
  }
  .kobayashi-page .knowledge__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    margin: 0;
    height: auto;
  }
  .kobayashi-page .round-button {
    width: 180px;
    height: 52px;
    padding: 0 22px 0 30px;
    font-size: 1.7rem;
  }
  .kobayashi-page .knowledge-grid {
    gap: 16px;
    padding: 28px 0 56px;
  }
  .kobayashi-page .knowledge-card {
    height: auto;
  }
  .kobayashi-page .knowledge-card__body {
    padding: 20px 18px 24px;
  }
  .kobayashi-page .news__inner {
    gap: 20px;
  }
  .kobayashi-page .news .knowledge__en {
    margin-bottom: 16px;
  }
  .kobayashi-page .news-list__item {
    padding-bottom: 16px;
  }
  .kobayashi-page .news-list__item + .news-list__item {
    padding-top: 18px;
  }
  .kobayashi-page .news-list__date {
    font-size: 1.4rem;
  }
  .kobayashi-page .news-list__text {
    font-size: 1.7rem;
    line-height: 1.8;
  }
}
/* --------------------------------

  idxx　お知らせ

-------------------------------- */
.news-section .news-date {
  width: 100%;
  margin-bottom: 1rem;
}
.news-detail-section .news-date {
  width: 100%;
  text-align: right;
  margin-bottom: 1.5em;
  color: #707070;
}
@media screen and (max-width: 767.98px) {
  .news-detail-section .news-date {
    margin-bottom: 1em;
  }
}
.news-list {
  display: grid;
  gap: 2.5rem;
}
@media screen and (min-width: 768px), print {
  .news-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1100px), print {
  .news-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.news-main {
  flex: 1;
  min-width: 0;
  margin: 1.2em 0 0 0;
}
@media screen and (min-width: 768px), print {
  .news-main {
    margin: 0 0 0 2em;
    padding: 0.5em 0 0 0;
  }
}
.news-img {
  position: relative;
  width: 280px;
  overflow: hidden;
}
@media screen and (max-width: 767.98px) {
  .news-img {
    margin: 0 auto;
  }
}
.news-img::before {
  content: "";
  display: block;
  padding-top: 57%;
}
.news-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  transition: scale 0.3s ease;
}
.news-link {
  display: block;
  background: #ffffff;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  height: 100%;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (min-width: 768px), print {
  .news-link {
    padding: 3rem;
  }
}
.news-link:hover {
  background-color: #4DB6AC;
  color: #ffffff;
}
.news-link:hover .news-title::before {
  background-color: #ffffff;
}
.news-date {
  display: block;
  width: 90px;
  color: #777777;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.2;
  font-family: "Allura", cursive;
  word-break: break-all;
  word-wrap: break-word;
}
.news-category {
  display: block;
  width: 100px;
  height: 22px;
  place-content: center;
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
  font-family: "Allura", cursive;
  background-color: #FF9089;
  word-break: break-all;
  word-wrap: break-word;
}
.news-title {
  position: relative;
  display: block;
  line-height: 1.2;
  font-weight: 600;
  font-size: 1.4rem;
  word-break: break-all;
  word-wrap: break-word;
  margin-bottom: 0.5em;
  padding-left: 1em;
  transition: color 0.3s ease;
}
.news-title::before {
  content: "";
  position: absolute;
  top: 0.2em;
  left: 0;
  width: 8px;
  height: 8px;
  background: #218489;
  transition: background-color 0.3s ease;
}
@media screen and (min-width: 768px), print {
  .news-title::before {
    width: 10px;
    height: 10px;
  }
}
@media screen and (min-width: 768px), print {
  .news-title {
    font-size: 1.8rem;
    margin-bottom: 0.8em;
  }
}
.news-content {
  word-break: break-all;
  word-wrap: break-word;
  text-align: left;
  font-size: 1.2rem;
  line-height: 1.8;
  color: #333333;
}
@media screen and (min-width: 768px), print {
  .news-content {
    font-size: 1.5rem;
  }
}
.news-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.news-body {
  word-break: break-all;
  word-wrap: break-word;
  text-align: left;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (min-width: 768px), print {
  .news-body {
    font-size: 1.4rem;
  }
}
.news-text {
  word-break: break-all;
  word-wrap: break-word;
}
.news-text p,
.news-text div {
  word-break: break-all;
  word-wrap: break-word;
}
.news-more a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.news-back {
  text-align: center;
  margin-top: 2em;
  padding-top: 2em;
  border-top: 1px solid #F7931D;
}
@media screen and (max-width: 767.98px) {
  .news-back {
    margin-top: 2em;
  }
}
/* pagination */
.pagination {
  margin: 0;
  margin-top: 2em;
  text-align: center;
  overflow: hidden;
}

.pagination h2.screen-reader-text {
  display: none;
}

.pagination a, .pagination span {
  display: inline-block;
  vertical-align: middle;
  margin: 0.2rem;
  padding: 0.5rem 1.1rem;
  color: #fff;
  font-size: 0.9em;
  text-align: center;
  border-radius: 0.35rem;
  background-color: #aaa;
}

@media print, screen and (min-width: 768px) {
  .pagination a, .pagination span {
    padding: 0.35em 0.75em;
    font-size: 1em;
  }
}
.pagination a:hover, .pagination span.current {
  background-color: #218489 !important;
}

.pagination a:hover {
  text-decoration: none;
}

/* --------------------------------

  idxx　下層

-------------------------------- */
.secondary-section {
  padding: 2.5em 1em 6em 1em;
}
@media screen and (min-width: 1100px), print {
  .secondary-section {
    padding: 5em 2em 10em 2em;
  }
}
.secondary-section .section-header {
  margin-bottom: 3rem;
  text-align: center;
}
@media screen and (min-width: 1100px), print {
  .secondary-section .section-header {
    margin-bottom: 5rem;
  }
}

/* 下層見出し */
.secondary-section .section-heading {
  margin-bottom: 26px;
  text-align: center;
}
.secondary-section .section-heading .jp {
  display: block;
  margin: 0 0 12px;
  color: #222;
  font-family: "Shippori Mincho", serif;
  font-size: 3.8rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
.secondary-section .section-heading .jp::before, .secondary-section .section-heading .jp::after {
  display: none;
}
@media screen and (max-width: 767.98px) {
  .secondary-section .section-heading .jp {
    font-size: 2.4rem;
  }
}
.secondary-section .section-heading .en {
  display: block;
  margin: 0;
  color: #F7931D;
  font-family: "Shippori Mincho", serif;
  font-size: 1.6rem;
  line-height: 1.4;
  letter-spacing: 0.15em;
}

/* 基礎知識や事例 */
.category-text {
  line-height: 1.8;
  margin-bottom: 3em;
}
.category-text h2 {
  font-weight: bold;
  margin: 1.25em 0 0.5em;
}
.category-text h3 {
  font-weight: bold;
  margin: 1.25em 0 0.5em;
}
.category-text p:not(:last-child) {
  margin-bottom: 1em;
}
.category-list ul {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  margin: 0 -1.5em -1.5em 0;
}
.category-list ul li {
  overflow: hidden;
  width: 100%;
  padding: 0 2em 2em 0;
}
@media screen and (min-width: 768px), print {
  .category-list ul li {
    width: 50%;
  }
}
.category-link {
  float: right;
  width: 100%;
  margin-left: -90px;
  padding-left: 100px;
  color: #111;
}
.category-link:hover {
  color: #111;
  text-decoration: none;
}
.category-link:hover .category-title {
  color: #FF9089;
}
.category-title {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.category-body {
  font-size: 0.9em;
}
.category-img {
  float: left;
  width: 90px;
}
.category-img img {
  width: 90px;
  height: 90px;
  vertical-align: bottom;
}

/* 投稿ページ */
.detail-text {
  line-height: 1.8;
  margin-bottom: 3em;
}
.detail-text h3 {
  position: relative;
  font-size: 1.1em;
  font-weight: 700;
  text-align: left;
  line-height: 1.4;
  padding: 0.7em 0 0.7em 17px;
  margin: 3.5em 0 1.5em;
  background-color: #FFF;
  border-left: 5px solid #F7931D;
}
@media screen and (min-width: 768px), print {
  .detail-text h3 {
    font-size: 1.3em;
  }
}
.detail-text h3:after {
  position: absolute;
  display: block;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ddd;
}
.detail-text h3 span {
  font-weight: 500 !important;
}
.detail-text h4 {
  position: relative;
  color: #FF9089;
  font-size: 1.1em;
  font-weight: 700;
  padding: 0 0 0.3em 1.5em;
  margin: 3.5em 0 1.5em;
  border-bottom: 2px solid #FF9089;
}
.detail-text h4:before {
  position: absolute;
  display: block;
  content: "";
  top: 40%;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #FF9089;
  transform: translateY(-40%);
}
.detail-text h4 span {
  font-weight: 500 !important;
}
.detail-text blockquote {
  padding: 1.5em;
  border-radius: 0.5em;
  border: 2px solid #ccc;
  background-color: #f7f7f7;
  text-align: center;
}
.detail-text blockquote p,
.detail-text blockquote strong,
.detail-text blockquote em {
  font-style: italic;
  font-weight: 700;
  color: #444;
}
.detail-text blockquote p {
  margin-bottom: 1em;
}
.detail-text blockquote p:last-child {
  font-style: normal;
  margin-bottom: 0;
}
.detail-text ul li,
.detail-text ol li {
  margin-left: 1.3em;
}
.detail-text ul {
  list-style: disc;
}
.detail-text ol {
  list-style: decimal;
}
.detail-text table {
  width: 100%;
}
.detail-text table th,
.detail-text table td {
  padding: 0.5em 1em;
  border: 1px solid #ddd;
}
.detail-text table th {
  text-align: center;
  background-color: #f7f7f7;
}
.detail-text .post-list {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  margin: 0 -1.5em -1.5em 0;
  list-style: none;
}
.detail-text .post-list li {
  width: 100%;
  padding: 0 1.5em 1.5em 0;
  margin-left: 0;
}
@media screen and (min-width: 768px), print {
  .detail-text .post-list li {
    width: 50%;
  }
}
.detail-text .post-list li:before {
  display: none;
}
.detail-text .post-list li a {
  display: inline-block;
  font-weight: bold;
  color: #555;
  text-decoration: underline;
  margin-bottom: 0.5rem;
}
.detail-text .post-list li p {
  font-size: 0.9em;
}
.detail-text .post-list mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}
@media screen and (max-width: 767.98px) {
  .detail-text p {
    font-size: 1.5rem;
  }
}
.detail-paging-subsection:first-child {
  overflow: hidden;
  margin-bottom: 1.5em;
}
.detail-paging-subsection a {
  font-weight: bold;
  text-decoration: underline;
}
.detail-paging-subsection .prev {
  float: left;
}
.detail-paging-subsection .next {
  float: right;
}
.detail-paging-subsection .back {
  text-align: center;
}

/* ページネーション */
.pagination {
  padding-top: 2em;
  text-align: center;
  overflow: hidden;
}
.pagination a,
.pagination span {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 4px;
  padding: 0.6em 1.2em;
  color: #fff;
  text-align: center;
  border-radius: 3px;
  background-color: #ccc;
}
.pagination a:hover,
.pagination span.current {
  background-color: #F7931D;
  color: #fff;
}
.pagination a:hover {
  text-decoration: none;
}

/* プライバシーポリシー */
.privacy p {
  font-size: 1.5rem;
  line-height: 2;
}
.privacy p:not(:last-child) {
  margin-bottom: 1em;
}

/* 取扱業務 */
.service-lower__intro {
  margin-bottom: 3.5em;
}
.service-lower__intro p {
  font-size: 1.5rem;
  line-height: 2;
}
.service-lower__intro p:not(:last-child) {
  margin-bottom: 1em;
}
@media screen and (min-width: 768px), print {
  .service-lower__intro p {
    font-size: 1.6rem;
  }
}
.service-lower__block {
  margin-top: 3.5em;
}
.service-lower__title {
  position: relative;
  font-family: "Shippori Mincho", serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  padding-left: 1em;
  margin-bottom: 1.2em;
  border-left: 5px solid #F7931D;
}
@media screen and (min-width: 768px), print {
  .service-lower__title {
    font-size: 2.4rem;
  }
}
.service-lower__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1em;
}
@media screen and (min-width: 768px), print {
  .service-lower__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2em;
  }
}
.service-lower__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  min-height: 76px;
  padding: 1.2em 1.4em;
  color: #111;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 0.4em;
  transition: color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.service-lower__link:hover {
  color: #D97800;
  border-color: #F7931D;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.service-lower__link-text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
}
.service-lower__link-more {
  position: relative;
  flex: 0 0 auto;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1;
  padding-right: 1.4em;
  color: #F7931D;
}
.service-lower__link-more::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  width: 0.55em;
  height: 0.55em;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

/* ご相談の流れ */
.flow-lower--text .flow-lower__body {
  grid-template-columns: 1fr;
}
.flow-lower__item {
  position: relative;
  list-style: none;
}
.flow-lower__item:not(:last-child) {
  margin-bottom: 4.8em;
}
.flow-lower__item:not(:last-child)::after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: -3.3em;
  width: 0;
  height: 0;
  border-left: 2.4rem solid transparent;
  border-right: 2.4rem solid transparent;
  border-top: 1.5rem solid #FF8C8C;
  transform: translateX(-50%);
}
.flow-lower__head {
  display: flex;
  align-items: center;
  min-height: 70px;
  overflow: hidden;
  background-color: #F7931D;
  border-radius: 0.4em;
}
.flow-lower__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 0 0 70px;
  width: 70px;
  height: 70px;
  color: #F7931D;
  font-family: "Shippori Mincho", serif;
  line-height: 1;
  background-color: #fff;
  border: 4px solid #F7931D;
  border-radius: 50%;
}
.flow-lower__step span {
  font-size: 1.3rem;
  font-weight: 700;
}
.flow-lower__step strong {
  font-size: 2.6rem;
  font-weight: 700;
}
.flow-lower__title {
  flex: 1;
  padding: 0.8em 1em;
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px), print {
  .flow-lower__title {
    font-size: 2.4rem;
  }
}
.flow-lower__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5em;
  padding: 1.8em 0 0;
}
@media screen and (min-width: 768px), print {
  .flow-lower__body {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 3em;
  }
}
.flow-lower__text p {
  font-size: 1.5rem;
  line-height: 2;
}
.flow-lower__text p:not(:last-child) {
  margin-bottom: 0.75em;
}
@media screen and (min-width: 768px), print {
  .flow-lower__text p {
    font-size: 1.6rem;
  }
}
.flow-lower__note figcaption {
  padding: 0.8em 0 0;
  color: #5C4A32;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
}

/* 相続手続 */
/* 事務所案内 */
.office-lower__section:not(:last-child) {
  margin-bottom: 5em;
}
.office-lower__list {
  max-width: none;
  margin: 0;
}
.office-lower__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45em;
  padding: 1.2em 0;
  border-bottom: 1px solid #E6DED3;
}
.office-lower__item:first-child {
  border-top: 1px solid #E6DED3;
}
.office-lower__item dt {
  margin: 0;
  padding: 0;
  color: #5C4A32;
  border: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
}
.office-lower__item dd {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.8;
}
.office-lower__item dd a {
  color: inherit;
  text-decoration: none;
}
@media screen and (min-width: 768px), print {
  .office-lower__item {
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 2em;
    align-items: center;
  }
  .office-lower__item dt,
  .office-lower__item dd {
    font-size: 1.6rem;
  }
}
.office-lower__map {
  display: block;
  width: 100%;
  height: 340px;
  margin: 0 0 1.6em;
  border: 0;
}
@media screen and (max-width: 479.98px) {
  .office-lower__map {
    height: 260px;
  }
}
.office-lower__access {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px), print {
  .office-lower__access {
    font-size: 1.6rem;
  }
}

.souzoku-lower__section:not(:last-child) {
  margin-bottom: 3.4em;
}
.souzoku-lower__lead-heading {
  margin: 0 0 1.6em;
  padding: 0.55em 1em;
  color: #111;
  font-family: "Shippori Mincho", serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.45;
  background-color: #FFF8EF;
  border: 1px solid #F6C98D;
  border-left: 8px solid #F7931D;
}
@media screen and (min-width: 768px), print {
  .souzoku-lower__lead-heading {
    font-size: 2.6rem;
  }
}
.souzoku-lower__content > .souzoku-lower__heading {
  margin-top: 2.4em;
}
.souzoku-lower__content {
  color: #111;
  font-size: 1.5rem;
  line-height: 2;
}
@media screen and (min-width: 768px), print {
  .souzoku-lower__content {
    font-size: 1.6rem;
  }
}
.souzoku-lower__content p,
.souzoku-lower__content ul {
  margin: 0;
}
.souzoku-lower__content p:not(:last-child),
.souzoku-lower__content ul:not(:last-child) {
  margin-bottom: 1.1em;
}
.souzoku-lower__content ul {
  padding-left: 1.5em;
}
.souzoku-lower__content ul li {
  list-style: disc;
}
.souzoku-lower__content ul li:not(:last-child) {
  margin-bottom: 0.25em;
}
.souzoku-lower__content strong {
  font-weight: 700;
}
.souzoku-lower__content a {
  color: #245FA8;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.souzoku-lower__link-note {
  position: relative;
  padding-left: 2em;
}
.souzoku-lower__link-note::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0.55em;
  width: 1.25em;
  height: 1.25em;
  background-color: #F7931D;
  border-radius: 50%;
}
.souzoku-lower__link-note::after {
  position: absolute;
  content: "";
  left: 0.42em;
  top: 1em;
  width: 0.35em;
  height: 0.35em;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
.souzoku-lower__caution {
  color: #D94A63;
}
.souzoku-lower__faq-item {
  padding: 1.4em 0;
  border-bottom: 1px solid #E6DED3;
}
.souzoku-lower__faq-item:first-child {
  padding-top: 0;
}
.souzoku-lower__question, .souzoku-lower__answer {
  position: relative;
  margin: 0;
  padding-left: 2.1em;
  font-size: 1.5rem;
  line-height: 2;
}
@media screen and (min-width: 768px), print {
  .souzoku-lower__question, .souzoku-lower__answer {
    font-size: 1.6rem;
  }
}
.souzoku-lower__question span, .souzoku-lower__answer span {
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}
.souzoku-lower__question {
  color: #111;
}
.souzoku-lower__question:not(:last-child) {
  margin-bottom: 0.9em;
}
.souzoku-lower__question span {
  color: #E60012;
}
.souzoku-lower__answer {
  color: #111;
}
.souzoku-lower__answer span {
  color: #004CFF;
}
.souzoku-lower__answer p {
  margin: 0;
}
.souzoku-lower__answer p:not(:last-child) {
  margin-bottom: 0.45em;
}
.souzoku-lower__answer a {
  color: #245FA8;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

/* 債務整理 */
.saimu-lower__steps {
  margin: 0 0 1.4em;
  padding-left: 1.6em;
  counter-reset: saimu-step;
}
.saimu-lower__steps li {
  position: relative;
  list-style: none;
  margin: 0;
  padding-left: 0.2em;
}
.saimu-lower__steps li:not(:last-child) {
  margin-bottom: 1.25em;
}
.saimu-lower__steps li:not(:last-child)::after {
  content: "↓";
  display: block;
  margin: 0.45em 0 0 1.8em;
  color: #E89A45;
  line-height: 1;
}
.saimu-lower__steps li::before {
  position: absolute;
  content: "";
  left: -1.05em;
  top: 0.65em;
  width: 0.55em;
  height: 0.55em;
  background-color: #F0A04B;
  border-radius: 50%;
}
.saimu-lower__mechanism {
  display: grid;
  justify-items: center;
  max-width: 760px;
  margin: 2em auto;
  text-align: center;
}
.saimu-lower__mechanism-card {
  position: relative;
  width: 100%;
  padding: 1.2em 1.6em 1.2em 5.2em;
  color: #111;
  background-color: #FFF8EF;
  border: 1px solid #F6C98D;
  border-radius: 0.4em;
  box-shadow: 0 0.45em 1.4em rgba(92, 74, 50, 0.08);
  text-align: left;
}
.saimu-lower__mechanism-card--result {
  background-color: #F1FAF3;
  border-color: #3A9A5B;
}
.saimu-lower__mechanism-card strong {
  font-family: "Allura", cursive;
  font-size: 1.7rem;
  line-height: 1.55;
}
.saimu-lower__mechanism-num {
  position: absolute;
  left: 1.2em;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.7em;
  height: 2.7em;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  background-color: #F7931D;
  border-radius: 50%;
  transform: translateY(-50%);
}
.saimu-lower__mechanism-card--result .saimu-lower__mechanism-num {
  background-color: #3A9A5B;
}
.saimu-lower__mechanism-arrow {
  display: block;
  width: 0;
  height: 0;
  margin: 0.8em 0;
  border-left: 1.2rem solid transparent;
  border-right: 1.2rem solid transparent;
  border-top: 1.4rem solid #F7931D;
}

/* 遺言 */
.yuigon-lower__subheading {
  margin: 1.6em 0 0.8em;
  color: #111;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 768px), print {
  .yuigon-lower__subheading {
    font-size: 1.9rem;
  }
}

.souzoku-lower__red {
  color: #D94A63;
}

/* 会社設立 */
.kaisha-lower__steps {
  margin: 0;
  padding: 0;
}
.kaisha-lower__step {
  list-style: none;
}
.kaisha-lower__step:not(:last-child) {
  margin-bottom: 2.4em;
}
.kaisha-lower__step:not(:last-child)::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: 1.5em auto 0;
  border-left: 2.2rem solid transparent;
  border-right: 2.2rem solid transparent;
  border-top: 1.4rem solid #FF8A8A;
}
.kaisha-lower__step-head {
  display: flex;
  align-items: center;
  min-height: 70px;
  margin-bottom: 1.35em;
  overflow: hidden;
  background-color: #F7931D;
  border-radius: 0.4em;
}
.kaisha-lower__step-num {
  display: flex;
  flex: 0 0 70px;
  width: 70px;
  height: 70px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #F7931D;
  font-family: "Shippori Mincho", serif;
  background-color: #fff;
  border: 4px solid #F7931D;
  border-radius: 50%;
  font-weight: 700;
  line-height: 1;
}
.kaisha-lower__step-num span {
  font-size: 1.3rem;
  font-weight: 700;
}
.kaisha-lower__step-num strong {
  margin-top: 0.15em;
  font-size: 2.5rem;
  line-height: 0.9;
}
.kaisha-lower__step-title {
  margin: 0;
  padding: 0.8em 1em;
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px), print {
  .kaisha-lower__step-title {
    font-size: 2.4rem;
  }
}
.kaisha-lower__faq-item:not(:last-child) {
  margin-bottom: 2.8em;
}
.kaisha-lower__qa-heading {
  margin: 0 0 1.1em;
  padding-bottom: 0.35em;
  color: #F26C00;
  border-bottom: 1px solid #F26C00;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.55;
}
@media screen and (min-width: 768px), print {
  .kaisha-lower__qa-heading {
    font-size: 2rem;
  }
}

/* ごあいさつ */
.greeting-lower__profile {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2em;
  margin-bottom: 4.2em;
}
@media screen and (min-width: 768px), print {
  .greeting-lower__profile {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 4em;
    align-items: start;
  }
}
.greeting-lower__body, .greeting-lower__message {
  padding: 0;
  background: none;
  border: 0;
  border-radius: 0;
}
.greeting-lower__name {
  margin: 0 0 1.4em;
  padding: 0 0 0.55em;
  color: #111;
  font-family: "Shippori Mincho", serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  background: none;
  border-bottom: 1px solid #D8C5AE;
  border-radius: 0;
}
@media screen and (min-width: 768px), print {
  .greeting-lower__name {
    font-size: 2rem;
  }
}
.greeting-lower__block:not(:last-child) {
  margin-bottom: 2.4em;
}
.greeting-lower__heading {
  position: relative;
  margin: 0 0 1.1em;
  padding: 0 0 0 0.7em;
  color: #111;
  font-family: "Shippori Mincho", serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  border: 0;
}
@media screen and (min-width: 768px), print {
  .greeting-lower__heading {
    font-size: 2.4rem;
  }
}
.greeting-lower__list {
  margin: 0;
  padding-left: 1.4em;
  font-size: 1.5rem;
  line-height: 1.9;
}
@media screen and (min-width: 768px), print {
  .greeting-lower__list {
    font-size: 1.6rem;
  }
}
.greeting-lower__list li {
  list-style: disc;
}
.greeting-lower__list li:not(:last-child) {
  margin-bottom: 0.4em;
}
.greeting-lower__figure {
  margin: 0;
  text-align: center;
}
.greeting-lower__portrait {
  width: 100%;
  max-width: 340px;
  height: auto;
  border-radius: 0;
  box-shadow: none;
}
@media screen and (min-width: 768px), print {
  .greeting-lower__portrait {
    height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.greeting-lower__message {
  padding-top: 0;
}
@media screen and (min-width: 768px), print {
  .greeting-lower__message {
    padding-top: 0;
  }
}
.greeting-lower__text {
  color: #111;
  font-size: 1.5rem;
  line-height: 2;
}
@media screen and (min-width: 768px), print {
  .greeting-lower__text {
    font-size: 1.6rem;
  }
}
.greeting-lower__text p {
  margin: 0;
}
.greeting-lower__text p:not(:last-child) {
  margin-bottom: 0.85em;
}

/* 手続費用の目安 */
.fee-faq__lead {
  margin: 0 0 2.2em;
  font-size: 1.5rem;
  line-height: 2;
}
@media screen and (min-width: 768px), print {
  .fee-faq__lead {
    font-size: 1.6rem;
  }
}
.fee-faq__item {
  padding: 1.6em;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 0.4em;
}
.fee-faq__item:not(:last-child) {
  margin-bottom: 1.4em;
}
@media screen and (min-width: 768px), print {
  .fee-faq__item {
    padding: 2em 2.2em;
  }
}
.fee-faq__question, .fee-faq__answer {
  position: relative;
  padding-left: 3.8em;
}
.fee-faq__question {
  display: flex;
  align-items: center;
  min-height: 2.4em;
  margin: 0 0 1.1em;
  color: #111;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (min-width: 768px), print {
  .fee-faq__question {
    font-size: 1.9rem;
  }
}
.fee-faq__question::before {
  position: absolute;
  content: "Q";
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.7em;
  height: 2.7em;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  background-color: #F7931D;
  border-radius: 50%;
}
.fee-faq__answer {
  margin: 0;
  padding-top: 1.1em;
  color: #111;
  font-size: 1.5rem;
  line-height: 2;
  border-top: 1px solid #F3E1CF;
}
@media screen and (min-width: 768px), print {
  .fee-faq__answer {
    font-size: 1.6rem;
  }
}
.fee-faq__answer::before {
  position: absolute;
  content: "A";
  top: 1.1em;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.7em;
  height: 2.7em;
  color: #F7931D;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  background-color: #FFF6EE;
  border: 1px solid #F6C98D;
  border-radius: 50%;
}
.fee-faq__answer p {
  margin: 0;
}
.fee-faq__answer p:not(:last-child) {
  margin-bottom: 0.5em;
}

/* 見出し階層統一 */
.office-lower__heading,
.souzoku-lower__title,
.service-lower__title,
.fee-faq__heading {
  position: relative;
  margin: 0 0 1.8em;
  padding: 0 0 0.35em 1.25em;
  color: #111;
  font-family: "Shippori Mincho", serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.45;
  background: none;
  border: 0;
  border-bottom: 1px solid #F7931D;
}
.office-lower__heading::before, .office-lower__heading::after,
.souzoku-lower__title::before,
.souzoku-lower__title::after,
.service-lower__title::before,
.service-lower__title::after,
.fee-faq__heading::before,
.fee-faq__heading::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}
.office-lower__heading::before,
.souzoku-lower__title::before,
.service-lower__title::before,
.fee-faq__heading::before {
  left: 0;
  top: 0.42em;
  width: 1.05em;
  height: 1.05em;
  background-color: #FF8A8A;
}
.office-lower__heading::after,
.souzoku-lower__title::after,
.service-lower__title::after,
.fee-faq__heading::after {
  left: -0.22em;
  top: 0.72em;
  width: 0.7em;
  height: 0.7em;
  background-color: #F2D760;
}
@media screen and (min-width: 768px), print {
  .office-lower__heading,
  .souzoku-lower__title,
  .service-lower__title,
  .fee-faq__heading {
    font-size: 3rem;
  }
}

.souzoku-lower__lead-heading {
  margin: 0 0 1.6em;
  padding: 0.55em 1em;
  color: #111;
  font-family: "Shippori Mincho", serif;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.45;
  background-color: #FFF8EF;
  border: 1px solid #F6C98D;
  border-left: 8px solid #F7931D;
}
@media screen and (min-width: 768px), print {
  .souzoku-lower__lead-heading {
    font-size: 2.4rem;
  }
}

.souzoku-lower__heading,
.souzoku-lower__faq-title,
.greeting-lower__heading,
.kaisha-lower__qa-heading {
  margin-bottom: 1.2em;
  padding: 0 0 0 0.7em;
  color: #111;
  font-family: "Shippori Mincho", serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  background: none;
  border: 0;
  border-left: 5px solid #F7931D;
}
@media screen and (min-width: 768px), print {
  .souzoku-lower__heading,
  .souzoku-lower__faq-title,
  .greeting-lower__heading,
  .kaisha-lower__qa-heading {
    font-size: 2.4rem;
  }
}

/* 大見出し追加 */
.greeting-lower__name {
  position: relative;
  margin: 0 0 1.8em;
  padding: 0 0 0.35em 1.25em;
  color: #111;
  font-family: "Shippori Mincho", serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.45;
  background: none;
  border: 0;
  border-bottom: 1px solid #F7931D;
}
.greeting-lower__name::before, .greeting-lower__name::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}
.greeting-lower__name::before {
  left: 0;
  top: 0.42em;
  width: 1.05em;
  height: 1.05em;
  background-color: #FF8A8A;
}
.greeting-lower__name::after {
  left: -0.22em;
  top: 0.72em;
  width: 0.7em;
  height: 0.7em;
  background-color: #F2D760;
}
@media screen and (min-width: 768px), print {
  .greeting-lower__name {
    font-size: 3rem;
  }
}

/* 遺言の種類・メリットデメリット */
.yuigon-lower__subheading {
  display: flex;
  align-items: center;
  gap: 0.55em;
  margin: 2.4em 0 1em;
  padding: 0 0 0.55em;
  color: #5C4A32;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  border-bottom: 1px solid #E6D4BE;
  background: none;
}
@media screen and (min-width: 768px), print {
  .yuigon-lower__subheading {
    font-size: 2rem;
  }
}

.yuigon-lower__number {
  display: inline-flex;
  flex: 0 0 1.8em;
  align-items: center;
  justify-content: center;
  width: 1.8em;
  height: 1.8em;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.78em;
  line-height: 1;
  background-color: #F7931D;
  border-radius: 50%;
}

.fee-saimu__lead {
  margin-top: 2.4em;
  margin-bottom: 1.8em;
  line-height: 1.9;
}
.fee-saimu__lead p {
  margin: 0;
}
.fee-saimu__table-wrap {
  overflow-x: auto;
  margin-bottom: 1.1em;
}
.fee-saimu__table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 1.5rem;
  line-height: 1.7;
}
.fee-saimu__table th,
.fee-saimu__table td {
  padding: 0.55em 0.75em;
  border: 1px solid #F6B26B;
  vertical-align: middle;
}
.fee-saimu__table th:first-child,
.fee-saimu__table td:first-child {
  width: 57%;
}
.fee-saimu__table th:nth-child(2),
.fee-saimu__table td:nth-child(2),
.fee-saimu__table th:nth-child(3),
.fee-saimu__table td:nth-child(3) {
  width: 21.5%;
}
.fee-saimu__table thead th {
  border-color: transparent transparent #F6B26B;
  background-color: transparent;
  color: #111;
  font-weight: 700;
  text-align: center;
}
.fee-saimu__table tbody th {
  width: 57%;
  background-color: #FFD0A3;
  font-weight: 400;
  text-align: left;
}
.fee-saimu__table tbody td {
  width: 21.5%;
  background-color: #fff;
}
.fee-saimu__notes {
  margin: 0 0 2.2em;
  padding: 0;
  list-style: none;
  line-height: 1.75;
}
.fee-saimu__links .souzoku-lower__link-note::before {
  top: 50%;
  transform: translateY(-50%);
}
.fee-saimu__links .souzoku-lower__link-note::after {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.fee-saimu__links .souzoku-lower__link-note:not(:last-child) {
  margin-bottom: 0.5em;
}
.fee-saimu__links .souzoku-lower__link-note a {
  color: #245FA8;
  text-decoration: underline;
  text-decoration-color: #245FA8;
  text-underline-offset: 0.18em;
}

.kaisha-lower__faq .souzoku-lower__link-note a {
  color: #245FA8;
  text-decoration: underline;
  text-decoration-color: #245FA8;
  text-underline-offset: 0.18em;
}

/* detail-text headings: souzoku-lower style */
.detail-text h3 {
  position: static;
  margin: 2.4em 0 1.6em;
  padding: 0.55em 1em;
  color: #111;
  font-family: "Shippori Mincho", serif;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: left;
  background-color: #FFF8EF;
  border: 1px solid #F6C98D;
  border-left: 8px solid #F7931D;
}
.detail-text h3::after {
  content: none;
}
@media screen and (min-width: 768px), print {
  .detail-text h3 {
    font-size: 2.4rem;
  }
}
.detail-text h4 {
  position: static;
  margin: 2.4em 0 1.2em;
  padding: 0 0 0 0.7em;
  color: #111;
  font-family: "Shippori Mincho", serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  background: none;
  border: 0;
  border-left: 5px solid #F7931D;
}
.detail-text h4::before {
  content: none;
}
@media screen and (min-width: 768px), print {
  .detail-text h4 {
    font-size: 2.4rem;
  }
}/*# sourceMappingURL=styles.css.map */