@charset "UTF-8";
/***
    The new CSS reset - version 1.11.3 (last updated 25.08.2024)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

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

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
      text-size-adjust: none;
}

a, button {
  cursor: revert;
}

ol, ul, menu, summary {
  list-style: none;
}

ol {
  counter-reset: revert;
}

img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

table {
  border-collapse: collapse;
}

input, textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  appearance: revert;
}

:where(pre) {
  all: revert;
  box-sizing: border-box;
}

::-webkit-input-placeholder {
  color: unset;
}

:-ms-input-placeholder {
  color: unset;
}

::-ms-input-placeholder {
  color: unset;
}

::placeholder {
  color: unset;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
  box-sizing: border-box;
}

::-webkit-details-marker {
  display: none;
}

img {
  height: auto;
  max-width: inherit;
  vertical-align: bottom;
  width: 100%;
}

a:not([class]) {
  color: var(--color-font);
}
@media (any-hover: hover) {
  a:not([class]):hover {
    opacity: 0.8;
  }
}

b, strong {
  font-weight: bolder;
}

:root {
  --color-font: #4d4d4d;
  --color-strong: #1a1a1a;
  --color-primary: #50b478;
  --color-secondary: #c83246;
  --color-tertiary: #e17369;
  --color-quaternary: #326446;
  --color-yellow: #ff0;
  --color-red: #dc3232;
  --color-yubinkyoku-primay: #0b2a3a;
  --font-NotoSansJP: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", YuGothic, sans-serif;
  --font-NotoSerifJP: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, "BiZ UDMincho", "MS Mincho", serif;
}

@media screen and (min-width: 769px) and (max-width: 1079px) {
  html {
    scroll-padding-top: 5.556vw;
  }
}
@media screen and (min-width: 1080px) {
  html {
    scroll-padding-top: 60px;
  }
}

body {
  background: #fff;
  color: var(--color-font);
  font-family: var(--font-NotoSansJP);
  font-weight: 400;
  line-height: 1;
  margin-inline: auto;
  overflow-wrap: break-word;
  width: 100%;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 3.2vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  body {
    font-size: 1.667vw;
  }
}
@media screen and (min-width: 1080px) {
  body {
    font-size: 18px;
    min-width: 1080px;
  }
}

.l-wrapper {
  overflow: hidden;
  width: 100%;
}

@media screen and (min-width: 769px) {
  .l-inner {
    margin-inline: auto;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .l-inner {
    width: 92.593%;
  }
}
@media screen and (min-width: 1080px) {
  .l-inner {
    width: 1000px;
  }
}

@media screen and (max-width: 768px) {
  .l-hamburger {
    background: #74c394;
    cursor: pointer;
    height: 10.667vw;
    position: fixed;
    right: 0;
    top: 0;
    width: 10.667vw;
    z-index: 110;
  }
}

@media screen and (max-width: 768px) {
  .l-hamburger__line {
    background: #fff;
    border-radius: 100vw;
    display: block;
    height: 3px;
    left: 2.4vw;
    position: absolute;
    width: 5.867vw;
  }
  .l-hamburger__line:nth-of-type(1) {
    top: 2.933vw;
    transition: -webkit-transform 0.3s ease-in;
    transition: transform 0.3s ease-in;
    transition: transform 0.3s ease-in, -webkit-transform 0.3s ease-in;
  }
  .l-hamburger__line:nth-of-type(2) {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .l-hamburger__line:nth-of-type(3) {
    bottom: 2.933vw;
    transition: -webkit-transform 0.3s ease-in;
    transition: transform 0.3s ease-in;
    transition: transform 0.3s ease-in, -webkit-transform 0.3s ease-in;
  }
}

@media screen and (max-width: 768px) {
  .l-hamburger.is-active {
    background: transparent;
  }
}
@media screen and (max-width: 768px) {
  .l-hamburger.is-active .l-hamburger__line:nth-of-type(1) {
    -webkit-transform: rotate(45deg) translate(1.4vw, 1.4vw);
            transform: rotate(45deg) translate(1.4vw, 1.4vw);
  }
  .l-hamburger.is-active .l-hamburger__line:nth-of-type(2) {
    display: none;
  }
  .l-hamburger.is-active .l-hamburger__line:nth-of-type(3) {
    -webkit-transform: rotate(-45deg) translate(1.4vw, -1.4vw);
            transform: rotate(-45deg) translate(1.4vw, -1.4vw);
  }
}

.l-nav {
  color: #fff;
  position: fixed;
  top: 0;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .l-nav {
    background: var(--color-primary);
    height: 100vh;
    height: 100dvh;
    opacity: 0;
    overflow-y: auto;
    right: -93.333vw;
    transition: all 0.3s linear;
    visibility: hidden;
    width: 93.333vw;
  }
  .l-nav.is-active {
    opacity: 1;
    right: 0;
    visibility: visible;
  }
}
@media screen and (min-width: 769px) {
  .l-nav {
    background: #74c394;
    left: 0;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .l-nav__inner {
    padding-block: 10.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .l-nav__inner {
    padding-block: 1.296vw;
  }
}
@media screen and (min-width: 1080px) {
  .l-nav__inner {
    padding-block: 14px;
  }
}

@media screen and (max-width: 768px) {
  .l-nav__list {
    margin-inline: auto;
    width: 84vw;
  }
}
@media screen and (min-width: 769px) {
  .l-nav__list {
    display: flex;
    justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  .l-nav__item {
    font-size: 3.733vw;
    letter-spacing: 0.04em;
    line-height: 1.75;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .l-nav__item {
    font-size: 1.481vw;
  }
}
@media screen and (min-width: 1080px) {
  .l-nav__item {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .l-nav__item:not(:last-child) {
    border-bottom: 1px solid #fff;
  }
}
@media screen and (min-width: 769px) {
  .l-nav__item:not(:last-child)::after {
    content: "|";
  }
}

.l-nav__link {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .l-nav__link {
    display: block;
    padding-block: 4vw;
    padding-inline: 4.667vw 6.667vw;
    position: relative;
  }
}
@media screen and (min-width: 769px) {
  .l-nav__link {
    display: inline-block;
    margin-inline: 0.5em;
    padding-block: 0.5em;
    padding-inline: 0.5em;
  }
}
@media (any-hover: hover) {
  .l-nav__link:hover {
    background: #fff;
    color: var(--color-primary);
  }
}
@media screen and (any-hover: hover) and (max-width: 768px) {
  .l-nav__link:hover .l-nav__arrow {
    fill: var(--color-primary);
  }
}
@media screen and (any-hover: hover) and (min-width: 769px) {
  .l-nav__link:hover {
    border-radius: 5px;
    font-weight: 500;
  }
}

@media screen and (max-width: 768px) {
  .l-nav__arrow {
    fill: #fff;
    position: absolute;
    right: 2vw;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 4vw;
  }
}

body.is-menu-opened::before {
  background: rgba(255, 255, 255, 0.5);
  content: "";
  cursor: pointer;
  display: block;
  -webkit-filter: blur(10px);
          filter: blur(10px);
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 90;
}

@media screen and (min-width: 769px) and (max-width: 1079px) {
  .l-main {
    -webkit-padding-before: 5.556vw;
            padding-block-start: 5.556vw;
  }
}
@media screen and (min-width: 1080px) {
  .l-main {
    -webkit-padding-before: 60px;
            padding-block-start: 60px;
  }
}

.l-footer {
  position: relative;
}

.l-autor-menus {
  background: #8cc87c;
}

.l-autor-menus__list {
  display: grid;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .l-autor-menus__list {
    grid-template-columns: 56vw 32vw;
  }
}
@media screen and (min-width: 769px) {
  .l-autor-menus__list {
    grid-template-columns: 37.4% 29%;
  }
}

.l-autor-menus__item {
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .l-autor-menus__item {
    font-size: 2.4vw;
    line-height: 4.444;
  }
}
@media screen and (min-width: 769px) {
  .l-autor-menus__item {
    line-height: 4.286;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .l-autor-menus__item {
    font-size: 1.296vw;
  }
}
@media screen and (min-width: 1080px) {
  .l-autor-menus__item {
    font-size: 14px;
  }
}

.l-autor-menus__icon {
  display: inline-block;
  fill: #fff;
}
@media screen and (max-width: 768px) {
  .l-autor-menus__icon {
    -webkit-margin-end: 2.667vw;
            margin-inline-end: 2.667vw;
    width: 2.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .l-autor-menus__icon {
    -webkit-margin-end: 0.741vw;
            margin-inline-end: 0.741vw;
    width: 1.111vw;
  }
}
@media screen and (min-width: 1080px) {
  .l-autor-menus__icon {
    -webkit-margin-end: 8px;
            margin-inline-end: 8px;
    width: 12px;
  }
}

.l-autor-menus__link {
  color: #fff;
  display: block;
}
@media (any-hover: hover) {
  .l-autor-menus__link:hover {
    background: #fff;
    color: #8cc87c;
    font-weight: 700;
  }
  .l-autor-menus__link:hover .l-autor-menus__icon {
    fill: #8cc87c;
  }
}

.l-pagetop {
  opacity: 0;
  position: fixed;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  transition: opacity 0.3s, visibility 0.3s;
  visibility: hidden;
  z-index: 90;
}
@media screen and (max-width: 768px) {
  .l-pagetop {
    bottom: 4vw;
    -webkit-filter: drop-shadow(0.613vw 0.613vw 0.613vw rgba(102, 102, 102, 0.3));
            filter: drop-shadow(0.613vw 0.613vw 0.613vw rgba(102, 102, 102, 0.3));
    right: 4.8vw;
    width: 19.733vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .l-pagetop {
    bottom: 3.704vw;
    -webkit-filter: drop-shadow(0.426vw 0.426vw 0.426vw rgba(102, 102, 102, 0.3));
            filter: drop-shadow(0.426vw 0.426vw 0.426vw rgba(102, 102, 102, 0.3));
    right: 3.704vw;
    width: 13.704vw;
  }
}
@media screen and (min-width: 1080px) {
  .l-pagetop {
    bottom: 40px;
    -webkit-filter: drop-shadow(4.6px 4.6px 4.6px rgba(102, 102, 102, 0.3));
            filter: drop-shadow(4.6px 4.6px 4.6px rgba(102, 102, 102, 0.3));
    right: 40px;
    width: 148px;
  }
}
.l-pagetop.is-show, .l-pagetop.is-scrolled {
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 769px) {
  .l-pagetop.is-scrolled {
    bottom: inherit;
    position: absolute;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .l-pagetop.is-scrolled {
    top: -4.63vw;
  }
}
@media screen and (min-width: 1080px) {
  .l-pagetop.is-scrolled {
    top: -50px;
  }
}

@media (any-hover: hover) {
  .l-pagetop__link:hover {
    opacity: 0.8;
  }
}

@media screen and (max-width: 768px) {
  .l-footer__bottom {
    background: url(../images/common/footer_bg_pc.jpg) 0 100%/100% auto no-repeat #e9fbd3;
  }
}
@media screen and (min-width: 769px) {
  .l-footer__bottom {
    background: url(../images/common/footer_bg_pc.jpg) 50% 100% no-repeat #deffbc;
  }
}

@media screen and (max-width: 768px) {
  .l-footer__inner {
    padding-block: 6.667vw 10.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .l-footer__inner {
    padding-block: 4.63vw;
  }
}
@media screen and (min-width: 1080px) {
  .l-footer__inner {
    padding-block: 50px;
  }
}

.l-footer__box {
  background: #fff;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .l-footer__box {
    border-radius: 1.6vw;
    padding-block: 8vw 6.667vw;
    padding-inline: 5.333vw;
    width: 86.667vw;
  }
}
@media screen and (min-width: 769px) {
  .l-footer__box {
    display: grid;
    justify-content: space-between;
    width: 96%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .l-footer__box {
    border-radius: 1.111vw;
    grid-template-columns: 22.037vw 44.444vw;
    padding-block: 4.63vw 3.241vw;
    padding-inline: 4.63vw;
  }
}
@media screen and (min-width: 1080px) {
  .l-footer__box {
    border-radius: 12px;
    grid-template-columns: 283px 480px;
    padding-block: 50px 35px;
    padding-inline: 50px;
  }
}

@media screen and (max-width: 768px) {
  .l-footer__box-logo {
    margin-inline: auto;
    width: 33.96vw;
  }
}

.l-footer-inquiry {
  border-bottom: 1px solid #b3b3b3;
  color: #333;
}
@media screen and (max-width: 768px) {
  .l-footer-inquiry {
    -webkit-margin-before: 5.333vw;
            margin-block-start: 5.333vw;
    -webkit-padding-after: 6.667vw;
            padding-block-end: 6.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .l-footer-inquiry {
    -webkit-padding-after: 1.667vw;
            padding-block-end: 1.667vw;
  }
}
@media screen and (min-width: 1080px) {
  .l-footer-inquiry {
    -webkit-padding-after: 18px;
            padding-block-end: 18px;
  }
}

@media screen and (max-width: 768px) {
  .l-footer-inquiry__lead {
    font-size: 4vw;
    line-height: 1.533;
  }
}
@media screen and (min-width: 769px) {
  .l-footer-inquiry__lead {
    line-height: 1.364;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .l-footer-inquiry__lead {
    font-size: 2.037vw;
  }
}
@media screen and (min-width: 1080px) {
  .l-footer-inquiry__lead {
    font-size: 22px;
  }
}

@media screen and (max-width: 768px) {
  .l-footer-inquiry__number {
    font-size: 8vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .l-footer-inquiry__number {
    font-size: 4.63vw;
    -webkit-margin-before: 0.926vw;
            margin-block-start: 0.926vw;
  }
}
@media screen and (min-width: 1080px) {
  .l-footer-inquiry__number {
    font-size: 50px;
    -webkit-margin-before: 10px;
            margin-block-start: 10px;
  }
}

.l-footer-inquiry__number-link {
  color: #333;
}
@media (hover: hover) and (pointer: fine) {
  .l-footer-inquiry__number-link {
    cursor: default;
    pointer-events: none;
  }
}

@media screen and (max-width: 768px) {
  .l-footer-hours {
    font-size: 2.933vw;
    line-height: 1.636;
    -webkit-margin-before: 2.667vw;
            margin-block-start: 2.667vw;
  }
}
@media screen and (min-width: 769px) {
  .l-footer-hours {
    line-height: 1.625;
    -webkit-margin-before: 0.75em;
            margin-block-start: 0.75em;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .l-footer-hours {
    font-size: 1.481vw;
  }
}
@media screen and (min-width: 1080px) {
  .l-footer-hours {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .l-footer-nav {
    font-size: 2.933vw;
    -webkit-margin-before: 6vw;
            margin-block-start: 6vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .l-footer-nav {
    -webkit-margin-before: 3.704vw;
            margin-block-start: 3.704vw;
  }
}
@media screen and (min-width: 1080px) {
  .l-footer-nav {
    -webkit-margin-before: 40px;
            margin-block-start: 40px;
  }
}

.l-footer-nav__list-link,
.l-footer-nav__privacy-link {
  color: var(--color-strong);
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .l-footer-nav__list-link,
  .l-footer-nav__privacy-link {
    margin-inline: 2vw;
    padding-block: 0.667vw;
    padding-inline: 1.333vw;
  }
}
@media screen and (min-width: 769px) {
  .l-footer-nav__list-link,
  .l-footer-nav__privacy-link {
    margin-inline: 0.5em;
    padding-block: 0.25em 0.4em;
    padding-inline: 0.5em;
  }
}
@media (any-hover: hover) {
  .l-footer-nav__list-link:hover,
  .l-footer-nav__privacy-link:hover {
    background: #fff;
    color: var(--color-primary);
  }
}
@media screen and (any-hover: hover) and (max-width: 768px) {
  .l-footer-nav__list-link:hover,
  .l-footer-nav__privacy-link:hover {
    border-radius: 0.667vw;
  }
}
@media screen and (any-hover: hover) and (min-width: 769px) {
  .l-footer-nav__list-link:hover,
  .l-footer-nav__privacy-link:hover {
    border-radius: 5px;
  }
}
@media (any-hover: hover) {
  .l-footer-nav__list-link:hover .l-footer-nav__privacy-icon,
  .l-footer-nav__privacy-link:hover .l-footer-nav__privacy-icon {
    fill: var(--color-primary);
  }
}

.l-footer-nav__list {
  display: flex;
  justify-content: center;
}

.l-footer-nav__list-item:not(:last-child)::after {
  content: "|";
}

@media screen and (max-width: 768px) {
  .l-footer-nav__privacy {
    -webkit-margin-before: 3.333vw;
            margin-block-start: 3.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .l-footer-nav__privacy {
    -webkit-margin-before: 1.667vw;
            margin-block-start: 1.667vw;
  }
}
@media screen and (min-width: 1080px) {
  .l-footer-nav__privacy {
    -webkit-margin-before: 18px;
            margin-block-start: 18px;
  }
}

.l-footer-nav__privacy-icon {
  display: inline-block;
  fill: var(--color-strong);
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .l-footer-nav__privacy-icon {
    -webkit-margin-end: 2.4vw;
            margin-inline-end: 2.4vw;
    width: 4vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .l-footer-nav__privacy-icon {
    -webkit-margin-end: 0.926vw;
            margin-inline-end: 0.926vw;
    width: 1.852vw;
  }
}
@media screen and (min-width: 1080px) {
  .l-footer-nav__privacy-icon {
    -webkit-margin-end: 10px;
            margin-inline-end: 10px;
    width: 20px;
  }
}

.l-copyright {
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .l-copyright {
    font-size: 2.133vw;
    -webkit-margin-before: 5.333vw;
            margin-block-start: 5.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .l-copyright {
    font-size: 1.296vw;
    -webkit-margin-before: 1.852vw;
            margin-block-start: 1.852vw;
  }
}
@media screen and (min-width: 1080px) {
  .l-copyright {
    font-size: 14px;
    -webkit-margin-before: 20px;
            margin-block-start: 20px;
  }
}

@media screen and (max-width: 768px) {
  .c-btn {
    font-size: 3.467vw;
    line-height: 3.769;
  }
}
@media screen and (min-width: 769px) {
  .c-btn {
    line-height: 3.625;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-btn {
    font-size: 1.481vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-btn {
    font-size: 16px;
  }
}

.c-btn__link {
  border-radius: 100vw;
  border: 1px solid var(--color-font);
  display: block;
  position: relative;
  width: 100%;
}

.c-btn__arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .c-btn__arrow {
    width: 2.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-btn__arrow {
    width: 1.481vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-btn__arrow {
    width: 16px;
  }
}

@media screen and (max-width: 768px) {
  .c-text {
    line-height: 1.75;
  }
}
@media screen and (min-width: 769px) {
  .c-text {
    line-height: 1.667;
  }
}

@media screen and (max-width: 768px) {
  .c-notes {
    font-size: 2.933vw;
    line-height: 1.636;
  }
}
@media screen and (min-width: 769px) {
  .c-notes {
    line-height: 1.5;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-notes {
    font-size: 1.481vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-notes {
    font-size: 16px;
  }
}

.c-steps-list {
  display: grid;
}
@media screen and (max-width: 768px) {
  .c-steps-list {
    gap: 12vw;
    grid-template-columns: 1fr;
    margin-inline: auto;
    width: 89.333vw;
  }
}
@media screen and (min-width: 769px) {
  .c-steps-list {
    gap: 2%;
    grid-template-columns: repeat(4, 1fr);
  }
}

.c-steps-list__item {
  background: #fff;
  display: grid;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-steps-list__item {
    align-items: center;
    border-radius: 1.867vw;
    box-shadow: 0.8vw 0.8vw 0.533vw rgba(85, 80, 75, 0.15);
    gap: 0 4vw;
    grid-template-columns: 26.667vw 48vw;
    grid-template-rows: 26.667vw 1fr;
    padding-block: 2.667vw 4.667vw;
    padding-inline: 5.333vw;
  }
}
@media screen and (min-width: 769px) {
  .c-steps-list__item {
    box-shadow: 6px 6px 4px rgba(85, 80, 75, 0.15);
    gap: 0;
    grid-template-rows: subgrid;
    grid-row: span 3;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-steps-list__item {
    border-radius: 1.296vw;
    padding-block: 0.926vw 3.241vw;
    padding-inline: 1.852vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-steps-list__item {
    border-radius: 14px;
    padding-block: 10px 35px;
    padding-inline: 20px;
  }
}

.c-steps-list__num {
  left: 50%;
  top: 0;
  position: absolute;
  -webkit-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .c-steps-list__num {
    width: 26.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-steps-list__num {
    width: 14.815vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-steps-list__num {
    width: 160px;
  }
}

@media screen and (max-width: 768px) {
  .c-steps-list__image {
    grid-area: 1/1/2/2;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-steps-list__image {
    margin-inline: auto;
    width: 16.667vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-steps-list__image {
    margin-inline: auto;
    width: 180px;
  }
}

.c-steps-list__sub-title {
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .c-steps-list__sub-title {
    font-size: 4.533vw;
    grid-area: 1/2/2/3;
    line-height: 1.471;
  }
}
@media screen and (min-width: 769px) {
  .c-steps-list__sub-title {
    line-height: 1.25;
    place-content: center;
    text-align: center;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-steps-list__sub-title {
    font-size: 2.222vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-steps-list__sub-title {
    font-size: 24px;
  }
}

.c-steps-list__text {
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .c-steps-list__text {
    grid-area: 2/1/3/3;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-steps-list__text {
    -webkit-margin-before: 0.926vw;
            margin-block-start: 0.926vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-steps-list__text {
    -webkit-margin-before: 10px;
            margin-block-start: 10px;
  }
}

.c-yoyaku {
  background: #fff;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-yoyaku {
    border-radius: 2.667vw;
    margin-inline: auto;
    width: 89.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-yoyaku {
    border-radius: 1.852vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-yoyaku {
    border-radius: 20px;
  }
}
@media screen and (max-width: 768px) {
  .c-yoyaku + .c-yoyaku {
    -webkit-margin-before: 12vw;
            margin-block-start: 12vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-yoyaku + .c-yoyaku {
    -webkit-margin-before: 3.704vw;
            margin-block-start: 3.704vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-yoyaku + .c-yoyaku {
    -webkit-margin-before: 40px;
            margin-block-start: 40px;
  }
}

.c-yoyaku-body {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .c-yoyaku-body {
    width: 78.667vw;
  }
}

.c-yoyaku__title {
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .c-yoyaku__title {
    font-size: 5.867vw;
    line-height: 1.318;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-yoyaku__title {
    font-size: 3.519vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-yoyaku__title {
    font-size: 38px;
  }
}

@media screen and (max-width: 768px) {
  .c-yoyaku--online {
    padding-block: 6vw 8.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-yoyaku--online {
    padding-block: 5.556vw 3.241vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-yoyaku--online {
    padding-block: 60px 35px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-yoyaku--online .c-yoyaku-body {
    width: 84.722vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-yoyaku--online .c-yoyaku-body {
    width: 915px;
  }
}
@media screen and (max-width: 768px) {
  .c-yoyaku--online .c-yoyaku__title {
    -webkit-margin-start: 28vw;
            margin-inline-start: 28vw;
    text-align: left;
  }
}
.c-yoyaku--online .c-yoyaku__recommend {
  position: absolute;
}
@media screen and (max-width: 768px) {
  .c-yoyaku--online .c-yoyaku__recommend {
    left: 3.467vw;
    top: -7.2vw;
    width: 25.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-yoyaku--online .c-yoyaku__recommend {
    left: 6.111vw;
    top: -4.63vw;
    width: 15.556vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-yoyaku--online .c-yoyaku__recommend {
    left: 66px;
    top: -50px;
    width: 168px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-online-yoyaku {
    -webkit-margin-before: 5.556vw;
            margin-block-start: 5.556vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-online-yoyaku {
    -webkit-margin-before: 60px;
            margin-block-start: 60px;
  }
}

@media screen and (min-width: 769px) {
  .c-online-yoyaku__list {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-online-yoyaku__list {
    -webkit-padding-before: 1.852vw;
            padding-block-start: 1.852vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-online-yoyaku__list {
    -webkit-padding-before: 20px;
            padding-block-start: 20px;
  }
}

@media screen and (max-width: 768px) {
  .c-online-yoyaku__item {
    border-bottom: 1px solid #999;
    padding-block: 5.333vw 6.667vw;
  }
}
@media screen and (min-width: 769px) {
  .c-online-yoyaku__item {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 5;
    position: relative;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-online-yoyaku__item {
    gap: 1.389vw;
    padding-block: 9.259vw 0.926vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-online-yoyaku__item {
    gap: 15px;
    padding-block: 100px 10px;
  }
}
@media screen and (min-width: 769px) {
  .c-online-yoyaku__item:not(:last-child) {
    border-right: 1px solid #999;
  }
}

.c-online-yoyaku__notes-link {
  text-decoration: underline;
}
@media (any-hover: hover) {
  .c-online-yoyaku__notes-link:hover {
    color: #06c;
  }
}

@media screen and (max-width: 768px) {
  .c-online-yoyaku__title-wrap {
    align-items: center;
    display: grid;
    gap: 2.933vw;
    grid-template-columns: 18.667vw auto;
    justify-content: center;
  }
}

@media screen and (min-width: 769px) {
  .c-online-yoyaku__icon {
    left: 50%;
    position: absolute;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-online-yoyaku__icon {
    top: -1.852vw;
    width: 9.259vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-online-yoyaku__icon {
    top: -20px;
    width: 100px;
  }
}

@media screen and (max-width: 768px) {
  .c-online-yoyaku__title {
    font-size: 4.8vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-online-yoyaku__title {
    font-size: 2.222vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-online-yoyaku__title {
    font-size: 24px;
  }
}

.c-online-yoyaku__image {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .c-online-yoyaku__image {
    width: 36vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-online-yoyaku__image {
    width: 12.5vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-online-yoyaku__image {
    width: 135px;
  }
}

.c-online-yoyaku__text {
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .c-online-yoyaku__text {
    line-height: 1.75;
    -webkit-margin-before: 2.667vw;
            margin-block-start: 2.667vw;
  }
}
@media screen and (min-width: 769px) {
  .c-online-yoyaku__text {
    line-height: 1.556;
    margin-inline: auto;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-online-yoyaku__text {
    width: 22.222vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-online-yoyaku__text {
    width: 240px;
  }
}

.c-online-yoyaku__btn-only,
.c-online-yoyaku__btn-preferred {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .c-online-yoyaku__btn-only,
  .c-online-yoyaku__btn-preferred {
    -webkit-margin-before: 4.667vw;
            margin-block-start: 4.667vw;
    width: 66.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-online-yoyaku__btn-only,
  .c-online-yoyaku__btn-preferred {
    -webkit-margin-before: 0.463vw;
            margin-block-start: 0.463vw;
    width: 23.148vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-online-yoyaku__btn-only,
  .c-online-yoyaku__btn-preferred {
    -webkit-margin-before: 5px;
            margin-block-start: 5px;
    width: 250px;
  }
}
.c-online-yoyaku__btn-only .c-btn__link,
.c-online-yoyaku__btn-preferred .c-btn__link {
  color: #fff;
}
.c-online-yoyaku__btn-only .c-btn__arrow,
.c-online-yoyaku__btn-preferred .c-btn__arrow {
  fill: #fff;
}
@media screen and (max-width: 768px) {
  .c-online-yoyaku__btn-only .c-btn__arrow,
  .c-online-yoyaku__btn-preferred .c-btn__arrow {
    right: 16.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-online-yoyaku__btn-only .c-btn__arrow,
  .c-online-yoyaku__btn-preferred .c-btn__arrow {
    right: 2.222vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-online-yoyaku__btn-only .c-btn__arrow,
  .c-online-yoyaku__btn-preferred .c-btn__arrow {
    right: 24px;
  }
}

.c-online-yoyaku__btn-only .c-btn__link {
  background: var(--color-tertiary);
  border-color: var(--color-tertiary);
}
@media (any-hover: hover) {
  .c-online-yoyaku__btn-only .c-btn__link:hover {
    background: #fff;
    color: var(--color-tertiary);
  }
  .c-online-yoyaku__btn-only .c-btn__link:hover .c-btn__arrow {
    fill: var(--color-tertiary);
  }
}

.c-online-yoyaku__btn-preferred .c-btn__link {
  background: var(--color-primary);
  border-color: var(--color-primary);
}
@media (any-hover: hover) {
  .c-online-yoyaku__btn-preferred .c-btn__link:hover {
    background: #fff;
    color: var(--color-primary);
  }
  .c-online-yoyaku__btn-preferred .c-btn__link:hover .c-btn__arrow {
    fill: var(--color-primary);
  }
}

.c-online-yoyaku__caution {
  letter-spacing: 0.04em;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .c-online-yoyaku__caution {
    line-height: 1.5;
    -webkit-margin-before: 2.667vw;
            margin-block-start: 2.667vw;
    width: 57.333vw;
  }
}
@media screen and (min-width: 769px) {
  .c-online-yoyaku__caution {
    line-height: 1.444;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-online-yoyaku__caution {
    width: 22.222vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-online-yoyaku__caution {
    width: 240px;
  }
}

.c-online-yoyaku__notes {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .c-online-yoyaku__notes {
    -webkit-margin-before: 4vw;
            margin-block-start: 4vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-online-yoyaku__notes {
    -webkit-margin-before: 2.778vw;
            margin-block-start: 2.778vw;
    width: 78.704vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-online-yoyaku__notes {
    -webkit-margin-before: 30px;
            margin-block-start: 30px;
    width: 850px;
  }
}

@media screen and (max-width: 768px) {
  .c-online-yoyaku__notes-item {
    font-size: 2.933vw;
    line-height: 1.636;
  }
}
@media screen and (min-width: 769px) {
  .c-online-yoyaku__notes-item {
    line-height: 1.625;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-online-yoyaku__notes-item {
    font-size: 1.481vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-online-yoyaku__notes-item {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .c-yoyaku--phone {
    padding-block: 7.333vw 6.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-yoyaku--phone {
    padding-block: 4.167vw 3.241vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-yoyaku--phone {
    padding-block: 45px 35px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-yoyaku--phone .c-yoyaku-body {
    width: 83.333vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-yoyaku--phone .c-yoyaku-body {
    width: 900px;
  }
}
@media screen and (max-width: 768px) {
  .c-yoyaku--phone .c-yoyaku__title {
    grid-area: 1/1/2/3;
  }
}

@media screen and (max-width: 768px) {
  .c-phone-yoyaku {
    align-items: center;
    display: grid;
    gap: 4.667vw 0;
    grid-template-columns: 53.333vw 24.8vw;
    grid-template-rows: 6.667vw auto 9.333vw auto;
    justify-content: space-between;
  }
}
@media screen and (min-width: 769px) {
  .c-phone-yoyaku {
    position: relative;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-phone-yoyaku {
    min-height: 31.481vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-phone-yoyaku {
    min-height: 340px;
  }
}

@media screen and (max-width: 768px) {
  .c-phone-yoyaku__image {
    grid-area: 2/2/3/3;
  }
}
@media screen and (min-width: 769px) {
  .c-phone-yoyaku__image {
    position: absolute;
    top: 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-phone-yoyaku__image {
    right: 2.315vw;
    width: 23.611vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-phone-yoyaku__image {
    right: 25px;
    width: 255px;
  }
}

@media screen and (max-width: 768px) {
  .c-phone-yoyaku__desc {
    grid-area: 2/1/3/2;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-phone-yoyaku__desc {
    -webkit-margin-before: 3.704vw;
            margin-block-start: 3.704vw;
    -webkit-margin-start: 0.926vw;
            margin-inline-start: 0.926vw;
    width: 50.926vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-phone-yoyaku__desc {
    -webkit-margin-before: 40px;
            margin-block-start: 40px;
    -webkit-margin-start: 10px;
            margin-inline-start: 10px;
    width: 550px;
  }
}

@media screen and (max-width: 768px) {
  .c-phone-yoyaku__desc-title {
    font-size: 4.8vw;
    line-height: 1.444;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-phone-yoyaku__desc-title {
    font-size: 2.222vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-phone-yoyaku__desc-title {
    font-size: 24px;
  }
}

.c-phone-yoyaku__desc-text {
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .c-phone-yoyaku__desc-text {
    line-height: 1.75;
    -webkit-margin-before: 2.667vw;
            margin-block-start: 2.667vw;
  }
}
@media screen and (min-width: 769px) {
  .c-phone-yoyaku__desc-text {
    line-height: 1.556;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-phone-yoyaku__desc-text {
    -webkit-margin-before: 0.926vw;
            margin-block-start: 0.926vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-phone-yoyaku__desc-text {
    -webkit-margin-before: 10px;
            margin-block-start: 10px;
  }
}

@media screen and (max-width: 768px) {
  .c-phone-yoyaku__number {
    font-size: 9.333vw;
    grid-area: 3/1/4/3;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-phone-yoyaku__number {
    font-size: 4.63vw;
    -webkit-margin-before: 0.926vw;
            margin-block-start: 0.926vw;
    -webkit-margin-start: 0.926vw;
            margin-inline-start: 0.926vw;
    width: 50.926vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-phone-yoyaku__number {
    font-size: 50px;
    -webkit-margin-before: 10px;
            margin-block-start: 10px;
    -webkit-margin-start: 10px;
            margin-inline-start: 10px;
    width: 550px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .c-phone-yoyaku__number-link {
    cursor: default;
    pointer-events: none;
  }
}

.c-phone-yoyaku__number-icon {
  display: inline-block;
  vertical-align: middle;
  width: 1em;
}
@media screen and (max-width: 768px) {
  .c-phone-yoyaku__number-icon {
    grid-area: 3/1/4/3;
  }
}

.c-phone-yoyaku__hours {
  border-top: 1px solid #999;
  display: grid;
}
@media screen and (max-width: 768px) {
  .c-phone-yoyaku__hours {
    font-size: 2.933vw;
    grid-area: 4/1/5/3;
    grid-template-columns: 18.667vw 56vw;
    justify-content: space-between;
    line-height: 1.636;
    -webkit-padding-before: 4vw;
            padding-block-start: 4vw;
    -webkit-padding-start: 1.333vw;
            padding-inline-start: 1.333vw;
  }
}
@media screen and (min-width: 769px) {
  .c-phone-yoyaku__hours {
    line-height: 1.625;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-phone-yoyaku__hours {
    font-size: 1.481vw;
    gap: 1.852vw;
    grid-template-columns: 9.259vw 36.111vw;
    -webkit-margin-before: 1.852vw;
            margin-block-start: 1.852vw;
    -webkit-margin-start: 0.926vw;
            margin-inline-start: 0.926vw;
    -webkit-padding-before: 1.852vw;
            padding-block-start: 1.852vw;
    width: 52.778vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-phone-yoyaku__hours {
    font-size: 16px;
    gap: 20px;
    grid-template-columns: 100px 390px;
    -webkit-margin-before: 20px;
            margin-block-start: 20px;
    -webkit-margin-start: 10px;
            margin-inline-start: 10px;
    -webkit-padding-before: 20px;
            padding-block-start: 20px;
    width: 570px;
  }
}

.c-phone-yoyaku__hours-title {
  border: 1px solid var(--color-font);
  display: grid;
  place-content: center;
}

@media screen and (max-width: 768px) {
  .top-kv {
    background: url(../images/top/kv_bg_sp.png) 0 0/100% 100% no-repeat;
  }
}
@media screen and (min-width: 769px) {
  .top-kv {
    background: url(../images/top/kv_bg_pc.png) 50% 0/auto 100% no-repeat;
  }
}

.top-kv__inner {
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-kv__inner {
    height: 122.667vw;
    -webkit-padding-before: 12vw;
            padding-block-start: 12vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-kv__inner {
    height: 55.741vw;
    -webkit-padding-before: 5.556vw;
            padding-block-start: 5.556vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-kv__inner {
    height: 602px;
    -webkit-padding-before: 60px;
            padding-block-start: 60px;
  }
}

.top-kv__lead {
  border-bottom: dashed #b3b3b3;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 768px) {
  .top-kv__lead {
    border-bottom-width: 0.533vw;
    font-size: 4.8vw;
    margin-inline: auto;
    -webkit-padding-after: 3.2vw;
            padding-block-end: 3.2vw;
    width: 70vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-kv__lead {
    border-bottom-width: 0.1em;
    font-size: 3.704vw;
    -webkit-padding-after: 1.667vw;
            padding-block-end: 1.667vw;
    width: 98%;
  }
}
@media screen and (min-width: 1080px) {
  .top-kv__lead {
    border-bottom-width: 4px;
    font-size: 40px;
    -webkit-padding-after: 18px;
            padding-block-end: 18px;
    width: 98%;
  }
}

@media screen and (max-width: 768px) {
  .top-kv__title {
    -webkit-margin-before: 2.4vw;
            margin-block-start: 2.4vw;
    margin-inline: auto;
    width: 70.667vw;
  }
}
@media screen and (min-width: 769px) {
  .top-kv__title {
    -webkit-margin-start: 2%;
            margin-inline-start: 2%;
    width: 50.5%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-kv__title {
    -webkit-margin-before: 5.556vw;
            margin-block-start: 5.556vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-kv__title {
    -webkit-margin-before: 60px;
            margin-block-start: 60px;
  }
}

.top-kv__place {
  background: var(--color-quaternary);
  display: grid;
  place-content: center;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .top-kv__place {
    border-radius: 1.333vw;
    height: 12.6vw;
    right: 15.6vw;
    top: 49.333vw;
    width: 19.6vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-kv__place {
    border-radius: 0.926vw;
    height: 8.333vw;
    left: 35vw;
    top: 34.722vw;
    width: 12.963vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-kv__place {
    border-radius: 10px;
    height: 90px;
    left: 378px;
    top: 375px;
    width: 140px;
  }
}

.top-kv__place-text {
  color: #fff;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .top-kv__place-text {
    font-size: 4vw;
    line-height: 1.233;
  }
}
@media screen and (min-width: 769px) {
  .top-kv__place-text {
    line-height: 1.214;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-kv__place-text {
    font-size: 2.593vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-kv__place-text {
    font-size: 28px;
  }
}

.top-kv__feature {
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .top-kv__feature {
    font-size: 4.533vw;
    -webkit-margin-before: 3.333vw;
            margin-block-start: 3.333vw;
    -webkit-margin-start: 0.667vw;
            margin-inline-start: 0.667vw;
    text-align: center;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-kv__feature {
    font-size: 2.963vw;
    -webkit-margin-before: 2.5vw;
            margin-block-start: 2.5vw;
    -webkit-margin-start: 2.5vw;
            margin-inline-start: 2.5vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-kv__feature {
    font-size: 32px;
    -webkit-margin-before: 27px;
            margin-block-start: 27px;
    -webkit-margin-start: 27px;
            margin-inline-start: 27px;
  }
}

@media screen and (max-width: 768px) {
  .top-kv__yubinkyoku {
    -webkit-margin-before: 3.333vw;
            margin-block-start: 3.333vw;
    margin-inline: auto;
    width: 72.267vw;
  }
}
@media screen and (min-width: 769px) {
  .top-kv__yubinkyoku {
    bottom: 0;
    position: absolute;
    right: 5%;
    width: 39%;
  }
}

.top-case {
  background: #e6f0eb;
}

@media screen and (max-width: 768px) {
  .top-case__inner {
    padding-block: 2.667vw;
  }
}
@media screen and (min-width: 769px) {
  .top-case__inner {
    align-items: center;
    display: grid;
    -webkit-padding-start: 1%;
            padding-inline-start: 1%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-case__inner {
    grid-template-columns: 18.519vw 1fr;
    padding-block: 1.852vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-case__inner {
    grid-template-columns: 200px 1fr;
    padding-block: 20px;
  }
}

@media screen and (max-width: 768px) {
  .top-case__title {
    margin-inline: auto;
    width: 80vw;
  }
}

.top-case__list {
  display: grid;
}
@media screen and (max-width: 768px) {
  .top-case__list {
    gap: 4vw;
    grid-template-columns: repeat(2, 18.667vw) 26.667vw 18.667vw;
    -webkit-margin-before: 1.333vw;
            margin-block-start: 1.333vw;
    -webkit-margin-start: 2.667vw;
            margin-inline-start: 2.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-case__list {
    gap: 1.852vw;
    grid-template-columns: repeat(4, 16.667vw);
    justify-content: end;
  }
}
@media screen and (min-width: 1080px) {
  .top-case__list {
    gap: 20px;
    grid-template-columns: repeat(4, 180px);
    justify-content: end;
  }
}

.top-case__item {
  color: #333;
  display: grid;
  letter-spacing: 0.04em;
  place-content: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-case__item {
    font-size: 2.933vw;
    line-height: 1.455;
  }
}
@media screen and (min-width: 769px) {
  .top-case__item {
    line-height: 1.333;
  }
}
.top-case__item:not(:last-child)::after {
  background: url(../images/top/case_slash@2x.png) 0/contain no-repeat;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
@media screen and (max-width: 768px) {
  .top-case__item:not(:last-child)::after {
    width: 4vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-case__item:not(:last-child)::after {
    width: 1.852vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-case__item:not(:last-child)::after {
    width: 20px;
  }
}

.top-types {
  background: #fff8e6;
}

@media screen and (max-width: 768px) {
  .top-types__inner {
    padding-block: 12.667vw 13.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-types__inner {
    padding-block: 7.87vw 8.333vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-types__inner {
    padding-block: 85px 90px;
  }
}

.top-types__title {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .top-types__title {
    width: 70.267vw;
  }
}
@media screen and (min-width: 769px) {
  .top-types__title {
    width: 50.2%;
  }
}

.top-types__list {
  display: grid;
}
@media screen and (max-width: 768px) {
  .top-types__list {
    gap: 8vw;
    grid-template-columns: 1fr;
    -webkit-margin-before: 8.667vw;
            margin-block-start: 8.667vw;
    margin-inline: auto;
    width: 89.333vw;
  }
}
@media screen and (min-width: 769px) {
  .top-types__list {
    gap: 2%;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-types__list {
    -webkit-margin-before: 6.481vw;
            margin-block-start: 6.481vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-types__list {
    -webkit-margin-before: 70px;
            margin-block-start: 70px;
  }
}

.top-types__item {
  display: grid;
  gap: 0;
  grid-template-rows: subgrid;
  grid-row: span 2;
  padding: 2px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-types__item {
    border-radius: 2.667vw;
    min-height: 61.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-types__item {
    border-radius: 1.852vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-types__item {
    border-radius: 20px;
  }
}

.top-types__header {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .top-types__header {
    min-height: 33.333vw;
    padding-block: 5.333vw 4vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-types__header {
    min-height: 21.296vw;
    padding-block: 8.333vw 1.852vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-types__header {
    min-height: 230px;
    padding-block: 90px 20px;
  }
}

.top-types__icon {
  position: absolute;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .top-types__icon {
    left: 4.667vw;
    top: -3.2vw;
    width: 23.733vw;
  }
}
@media screen and (min-width: 769px) {
  .top-types__icon {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-types__icon {
    top: -3.704vw;
    width: 10.556vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-types__icon {
    top: -40px;
    width: 114px;
  }
}

@media screen and (max-width: 768px) {
  .top-types__sub-title {
    font-size: 5.067vw;
    -webkit-margin-start: 30.267vw;
            margin-inline-start: 30.267vw;
    width: 53.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-types__sub-title {
    font-size: 2.593vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-types__sub-title {
    font-size: 28px;
  }
}

.top-types__catch {
  background: #fff;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .top-types__catch {
    border-radius: 0.533vw;
    font-size: 4.533vw;
    line-height: 1.471;
    -webkit-margin-before: 2vw;
            margin-block-start: 2vw;
    -webkit-margin-start: 30.267vw;
            margin-inline-start: 30.267vw;
    width: 53.333vw;
  }
}
@media screen and (min-width: 769px) {
  .top-types__catch {
    border-radius: 4px;
    line-height: 1.818;
    margin-inline: auto;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-types__catch {
    font-size: 2.037vw;
    -webkit-margin-before: 1.389vw;
            margin-block-start: 1.389vw;
    width: 24.074vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-types__catch {
    font-size: 22px;
    -webkit-margin-before: 15px;
            margin-block-start: 15px;
    width: 260px;
  }
}

.top-types__lead {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .top-types__lead {
    font-size: 4.267vw;
    -webkit-margin-before: 6vw;
            margin-block-start: 6vw;
    width: 78.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-types__lead {
    font-size: 1.852vw;
    -webkit-margin-before: 1.111vw;
            margin-block-start: 1.111vw;
    width: 27.778vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-types__lead {
    font-size: 20px;
    -webkit-margin-before: 12px;
            margin-block-start: 12px;
    width: 300px;
  }
}

.top-types__body {
  background: #fff;
}
@media screen and (max-width: 768px) {
  .top-types__body {
    border-bottom-left-radius: 2.4vw;
    border-bottom-right-radius: 2.4vw;
    padding-block: 4.667vw 5.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-types__body {
    border-bottom-left-radius: 1.667vw;
    border-bottom-right-radius: 1.667vw;
    padding-block: 2.315vw 2.593vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-types__body {
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    padding-block: 25px 28px;
  }
}

.top-types__text {
  letter-spacing: 0.04em;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .top-types__text {
    width: 78.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-types__text {
    width: 24.074vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-types__text {
    width: 260px;
  }
}

.top-types__notes {
  border-top: 1px solid #999;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .top-types__notes {
    -webkit-margin-before: 4vw;
            margin-block-start: 4vw;
    -webkit-padding-before: 2.667vw;
            padding-block-start: 2.667vw;
    width: 78.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-types__notes {
    -webkit-margin-before: 1.389vw;
            margin-block-start: 1.389vw;
    -webkit-padding-before: 1.389vw;
            padding-block-start: 1.389vw;
    padding-inline: 0.463vw;
    width: 25vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-types__notes {
    -webkit-margin-before: 15px;
            margin-block-start: 15px;
    -webkit-padding-before: 15px;
            padding-block-start: 15px;
    padding-inline: 5px;
    width: 270px;
  }
}

.top-types__btn {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .top-types__btn {
    -webkit-margin-before: 4.667vw;
            margin-block-start: 4.667vw;
    width: 66.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-types__btn {
    -webkit-margin-before: 1.389vw;
            margin-block-start: 1.389vw;
    width: 22.222vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-types__btn {
    -webkit-margin-before: 15px;
            margin-block-start: 15px;
    width: 240px;
  }
}

.top-types__item--card {
  background: var(--color-tertiary);
}
.top-types__item--card .top-types__catch {
  background: var(--color-yellow);
}
.top-types__item--application {
  background: #64beb4;
}
.top-types__item--yubinkyoku {
  background: var(--color-red);
}
.top-types__item--yubinkyoku .top-types__catch {
  background: var(--color-yellow);
}
.top-types__item--yubinkyoku .top-types__btn .c-btn__arrow {
  fill: var(--color-red);
  -webkit-transform: rotate(90deg) translateX(-50%);
          transform: rotate(90deg) translateX(-50%);
}
@media screen and (max-width: 768px) {
  .top-types__item--yubinkyoku .top-types__btn .c-btn__arrow {
    right: 15.2vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-types__item--yubinkyoku .top-types__btn .c-btn__arrow {
    right: 3.056vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-types__item--yubinkyoku .top-types__btn .c-btn__arrow {
    right: 33px;
  }
}
@media (any-hover: hover) {
  .top-types__item--yubinkyoku .top-types__btn .c-btn__link:hover {
    background: var(--color-red);
    border-color: var(--color-red);
    color: #fff;
  }
  .top-types__item--yubinkyoku .top-types__btn .c-btn__link:hover .c-btn__arrow {
    fill: #fff;
  }
}

.top-step-summary {
  background: #f5ebd7;
}

@media screen and (max-width: 768px) {
  .top-step-summary__inner {
    padding-block: 13.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-step-summary__inner {
    padding-block: 7.407vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-step-summary__inner {
    padding-block: 80px;
  }
}

.top-step-summary__title {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .top-step-summary__title {
    width: 58.667vw;
  }
}
@media screen and (min-width: 769px) {
  .top-step-summary__title {
    width: 67.2%;
  }
}

@media screen and (max-width: 768px) {
  .top-step-summary__list {
    -webkit-margin-before: 13.333vw;
            margin-block-start: 13.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-step-summary__list {
    -webkit-margin-before: 8.333vw;
            margin-block-start: 8.333vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-step-summary__list {
    -webkit-margin-before: 90px;
            margin-block-start: 90px;
  }
}

@media screen and (max-width: 768px) {
  .top-step-item {
    border-top: 1.067vw solid;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-step-item {
    border-top: 0.741vw solid;
  }
}
@media screen and (min-width: 1080px) {
  .top-step-item {
    border-top: 8px solid;
  }
}

@media screen and (max-width: 768px) {
  .top-step-item__inner {
    -webkit-padding-after: 13.333vw;
            padding-block-end: 13.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-step-item__inner {
    -webkit-padding-after: 9.259vw;
            padding-block-end: 9.259vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-step-item__inner {
    -webkit-padding-after: 100px;
            padding-block-end: 100px;
  }
}

.top-step-item__num {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .top-step-item__num {
    -webkit-margin-before: -1.067vw;
            margin-block-start: -1.067vw;
    width: 42.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-step-item__num {
    -webkit-margin-before: -0.741vw;
            margin-block-start: -0.741vw;
    width: 28%;
  }
}
@media screen and (min-width: 1080px) {
  .top-step-item__num {
    -webkit-margin-before: -8px;
            margin-block-start: -8px;
    width: 28%;
  }
}

@media screen and (max-width: 768px) {
  .top-step-item__header {
    align-items: center;
    display: grid;
    gap: 0 5.333vw;
    grid-template-columns: 34.667vw 49.333vw;
    grid-template-rows: 34.667vw 1fr;
    -webkit-margin-before: 1.333vw;
            margin-block-start: 1.333vw;
    margin-inline: auto;
    width: 89.333vw;
  }
}
@media screen and (min-width: 769px) {
  .top-step-item__header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    width: 90%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-step-item__header {
    -webkit-margin-before: 0.926vw;
            margin-block-start: 0.926vw;
    min-height: 29.63vw;
    -webkit-padding-start: 33.333vw;
            padding-inline-start: 33.333vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-step-item__header {
    -webkit-margin-before: 10px;
            margin-block-start: 10px;
    min-height: 320px;
    -webkit-padding-start: 360px;
            padding-inline-start: 360px;
  }
}

@media screen and (max-width: 768px) {
  .top-step-item__header-image {
    grid-area: 1/1/2/2;
  }
}
@media screen and (min-width: 769px) {
  .top-step-item__header-image {
    left: 0;
    position: absolute;
    top: 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-step-item__header-image {
    width: 29.63vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-step-item__header-image {
    width: 320px;
  }
}

.top-step-item__header-title {
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .top-step-item__header-title {
    font-size: 7.2vw;
    grid-area: 1/2/2/3;
    line-height: 1.259;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-step-item__header-title {
    font-size: 4.63vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-step-item__header-title {
    font-size: 50px;
  }
}

.top-step-item__header-text {
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .top-step-item__header-text {
    font-size: 3.467vw;
    grid-area: 2/1/3/3;
    line-height: 1.846;
    padding-inline: 1.333vw;
  }
}
@media screen and (min-width: 769px) {
  .top-step-item__header-text {
    line-height: 1.6;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-step-item__header-text {
    font-size: 1.852vw;
    -webkit-margin-before: 1.852vw;
            margin-block-start: 1.852vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-step-item__header-text {
    font-size: 20px;
    -webkit-margin-before: 20px;
            margin-block-start: 20px;
  }
}

@media screen and (max-width: 768px) {
  .top-service {
    -webkit-margin-before: 10.667vw;
            margin-block-start: 10.667vw;
    margin-inline: auto;
    width: 89.333vw;
  }
}

@media screen and (max-width: 768px) {
  .top-service__block {
    border-radius: 2.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-service__block {
    border-radius: 1.852vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-service__block {
    border-radius: 20px;
  }
}
@media screen and (max-width: 768px) {
  .top-service__block:not(:nth-of-type(1)) {
    -webkit-margin-before: 12vw;
            margin-block-start: 12vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-service__block:not(:nth-of-type(1)) {
    -webkit-margin-before: 3.704vw;
            margin-block-start: 3.704vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-service__block:not(:nth-of-type(1)) {
    -webkit-margin-before: 40px;
            margin-block-start: 40px;
  }
}

.top-service__header {
  color: #fff;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-service__header {
    padding-block: 4.667vw 5.333vw;
  }
}
@media screen and (min-width: 769px) {
  .top-service__header {
    -webkit-padding-start: 17%;
            padding-inline-start: 17%;
  }
  .top-service__header::before {
    background: #fff;
    content: "";
    height: 100%;
    left: 17%;
    position: absolute;
    top: 0;
    width: 2px;
  }
}

@media screen and (max-width: 768px) {
  .top-service__num {
    margin-inline: auto;
    width: 10.08vw;
  }
}
@media screen and (min-width: 769px) {
  .top-service__num {
    left: 5%;
    position: absolute;
    width: 8.4%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-service__num {
    top: 3.704vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-service__num {
    top: 40px;
  }
}

@media screen and (max-width: 768px) {
  .top-service__header-content {
    -webkit-margin-before: 2.667vw;
            margin-block-start: 2.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-service__header-content {
    min-height: 13.889vw;
    padding-block: 3.056vw;
    padding-inline: 2.778vw 4.63vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-service__header-content {
    min-height: 150px;
    padding-block: 33px;
    padding-inline: 30px 50px;
  }
}
@media screen and (max-width: 768px) {
  .top-service__header-content::before {
    background: #fff;
    content: "";
    display: block;
    height: 2px;
    -webkit-margin-after: 4.667vw;
            margin-block-end: 4.667vw;
    -webkit-margin-start: 36.667vw;
            margin-inline-start: 36.667vw;
    width: 16vw;
  }
}

.top-service__title {
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .top-service__title {
    font-size: 4.8vw;
    line-height: 1.444;
    margin-inline: auto;
    text-align: center;
    width: 81.333vw;
  }
}
@media screen and (min-width: 769px) {
  .top-service__title {
    grid-area: 1/1/2/2;
    line-height: 1.4;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-service__title {
    font-size: 2.778vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-service__title {
    font-size: 30px;
  }
}

.top-service__body {
  background: #fff;
}
@media screen and (max-width: 768px) {
  .top-service__body {
    border-bottom-left-radius: 2.667vw;
    border-bottom-right-radius: 2.667vw;
    padding-block: 5.333vw 9.333vw;
  }
}
@media screen and (min-width: 769px) {
  .top-service__body {
    padding-inline: 5%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-service__body {
    border-bottom-left-radius: 1.852vw;
    border-bottom-right-radius: 1.852vw;
    padding-block: 4.167vw 5.556vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-service__body {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding-block: 45px 60px;
  }
}

.top-step-item--details {
  background: #f5ffe6;
  border-top-color: var(--color-primary);
}
.top-step-item--details .top-service__block {
  background: var(--color-primary);
}

@media screen and (min-width: 769px) {
  .top-service__header-content--details {
    align-items: center;
    display: grid;
    grid-template-columns: auto 1fr;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-service__header-content--details {
    gap: 0.741vw 1.389vw;
    grid-template-rows: 11.296vw 1fr;
    padding-block: 1.389vw 2.315vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-service__header-content--details {
    gap: 8px 15px;
    grid-template-rows: 122px 1fr;
    padding-block: 15px 25px;
  }
}

@media screen and (max-width: 768px) {
  .top-service__details-icon {
    position: absolute;
    right: 4.533vw;
    top: -4.933vw;
    width: 22.933vw;
  }
}
@media screen and (min-width: 769px) {
  .top-service__details-icon {
    grid-area: 1/2/2/3;
  }
}

@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-service__details-icon-image {
    width: 11.296vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-service__details-icon-image {
    width: 122px;
  }
}

.top-service__details-lead {
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .top-service__details-lead {
    -webkit-margin-before: 2.667vw;
            margin-block-start: 2.667vw;
    margin-inline: auto;
    width: 80vw;
  }
}
@media screen and (min-width: 769px) {
  .top-service__details-lead {
    grid-area: 2/1/3/3;
  }
}

@media screen and (max-width: 768px) {
  .top-service__body--details {
    padding-inline: 5.333vw;
  }
}
@media screen and (min-width: 769px) {
  .top-service__body--details {
    display: grid;
    justify-content: space-between;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-service__body--details {
    grid-template-columns: 37.963vw 41.667vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-service__body--details {
    grid-template-columns: 410px 450px;
  }
}

@media screen and (min-width: 769px) {
  .top-service__details-image {
    grid-area: 1/2/2/3;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-service__details-image {
    -webkit-margin-before: 0.463vw;
            margin-block-start: 0.463vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-service__details-image {
    -webkit-margin-before: 5px;
            margin-block-start: 5px;
  }
}

@media screen and (max-width: 768px) {
  .top-service__details-main {
    -webkit-margin-before: 4.667vw;
            margin-block-start: 4.667vw;
  }
}
@media screen and (min-width: 769px) {
  .top-service__details-main {
    grid-area: 1/1/2/2;
  }
}

.top-service__details-text {
  letter-spacing: 0.04em;
}
.top-service__details-text + .top-service__details-text {
  -webkit-margin-before: 1em;
          margin-block-start: 1em;
}

@media screen and (max-width: 768px) {
  .top-service__details-notes {
    -webkit-margin-before: 4vw;
            margin-block-start: 4vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-service__details-notes {
    -webkit-margin-before: 1.389vw;
            margin-block-start: 1.389vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-service__details-notes {
    -webkit-margin-before: 15px;
            margin-block-start: 15px;
  }
}

.top-service__details-hr {
  border-top: 1px solid #999;
  display: block;
}
@media screen and (max-width: 768px) {
  .top-service__details-hr {
    -webkit-margin-before: 4vw;
            margin-block-start: 4vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-service__details-hr {
    -webkit-margin-before: 1.667vw;
            margin-block-start: 1.667vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-service__details-hr {
    -webkit-margin-before: 18px;
            margin-block-start: 18px;
  }
}

@media screen and (max-width: 768px) {
  .top-service__details-btn {
    -webkit-margin-before: 4.667vw;
            margin-block-start: 4.667vw;
    margin-inline: auto;
    width: 66.667vw;
  }
}
@media screen and (min-width: 769px) {
  .top-service__details-btn {
    line-height: 3.222;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-service__details-btn {
    font-size: 1.667vw;
    -webkit-margin-before: 1.852vw;
            margin-block-start: 1.852vw;
    width: 27.778vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-service__details-btn {
    font-size: 18px;
    -webkit-margin-before: 20px;
            margin-block-start: 20px;
    width: 300px;
  }
}
.top-service__details-btn .c-btn__arrow {
  fill: var(--color-tertiary);
  -webkit-transform: rotate(90deg) translateX(-50%);
          transform: rotate(90deg) translateX(-50%);
}
@media screen and (max-width: 768px) {
  .top-service__details-btn .c-btn__arrow {
    right: 12.4vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-service__details-btn .c-btn__arrow {
    right: 3.056vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-service__details-btn .c-btn__arrow {
    right: 33px;
  }
}
@media (any-hover: hover) {
  .top-service__details-btn .c-btn__link:hover {
    background: var(--color-tertiary);
    border-color: var(--color-tertiary);
    color: #fff;
  }
  .top-service__details-btn .c-btn__link:hover .c-btn__arrow {
    fill: #fff;
  }
}

@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-service__block--detail03 .top-service__title {
    width: 49.537vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-service__block--detail03 .top-service__title {
    width: 535px;
  }
}

.top-step-item--documents {
  background: #fff5f0;
  border-top-color: var(--color-tertiary);
}
.top-step-item--documents .top-service__block {
  background: var(--color-tertiary);
}
@media screen and (min-width: 769px) {
  .top-step-item--documents .top-service__header-content {
    align-items: center;
    display: grid;
    grid-template-columns: 100%;
  }
}

@media screen and (max-width: 768px) {
  .top-service__body--documents {
    padding-inline: 4vw;
  }
}

.top-documents-id__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .top-documents-id__list {
    gap: 3.467vw 2.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-documents-id__list {
    gap: 1.852vw 4.63vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-documents-id__list {
    gap: 20px 50px;
  }
}

.top-documents-id__item {
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-documents-id__item {
    -webkit-padding-before: 4vw;
            padding-block-start: 4vw;
    width: 38.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-documents-id__item {
    -webkit-padding-before: 1.852vw;
            padding-block-start: 1.852vw;
    width: 22.222vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-documents-id__item {
    -webkit-padding-before: 20px;
            padding-block-start: 20px;
    width: 240px;
  }
}
.top-documents-id__item::before {
  background: rgba(200, 225, 230, 0.5);
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  top: 0;
}
@media screen and (max-width: 768px) {
  .top-documents-id__item::before {
    height: 37.333vw;
    left: 0.667vw;
    width: 37.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-documents-id__item::before {
    height: 22.222vw;
    left: 0;
    width: 22.222vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-documents-id__item::before {
    height: 240px;
    left: 0;
    width: 240px;
  }
}
.top-documents-id__item--required::before {
  background: #fff5f0;
}

.top-documents-id__item-icon {
  left: 0;
  position: absolute;
  top: 0;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .top-documents-id__item-icon {
    width: 10.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-documents-id__item-icon {
    width: 5.556vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-documents-id__item-icon {
    width: 60px;
  }
}

.top-documents-id__item-image {
  margin-inline: auto;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .top-documents-id__item-image {
    width: 29.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-documents-id__item-image {
    width: 18.519vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-documents-id__item-image {
    width: 200px;
  }
}

.top-documents-id__item-label {
  color: #000;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .top-documents-id__item-label {
    font-size: 3.467vw;
    line-height: 1.385;
  }
}
@media screen and (min-width: 769px) {
  .top-documents-id__item-label {
    line-height: 1.4;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-documents-id__item-label {
    font-size: 1.852vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-documents-id__item-label {
    font-size: 20px;
  }
}

.top-documents-id__notes {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .top-documents-id__notes {
    -webkit-margin-before: 4vw;
            margin-block-start: 4vw;
    width: 78.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-documents-id__notes {
    -webkit-margin-before: 3.241vw;
            margin-block-start: 3.241vw;
    width: 74.074vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-documents-id__notes {
    -webkit-margin-before: 35px;
            margin-block-start: 35px;
    width: 800px;
  }
}

@media screen and (max-width: 768px) {
  .top-documents-about {
    -webkit-margin-before: 8.667vw;
            margin-block-start: 8.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-documents-about {
    -webkit-margin-before: 4.167vw;
            margin-block-start: 4.167vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-documents-about {
    -webkit-margin-before: 45px;
            margin-block-start: 45px;
  }
}

.top-documents-about__title {
  border: solid var(--color-font);
  border-width: 1px 0;
  color: #333;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .top-documents-about__title {
    font-size: 4.267vw;
    line-height: 2.188;
  }
}
@media screen and (min-width: 769px) {
  .top-documents-about__title {
    line-height: 2.5;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-documents-about__title {
    font-size: 2.593vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-documents-about__title {
    font-size: 28px;
  }
}

.top-documents-about__case {
  display: grid;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .top-documents-about__case {
    gap: 4vw;
    grid-template-columns: repeat(2, 37.333vw);
    -webkit-margin-before: 4vw;
            margin-block-start: 4vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-documents-about__case {
    gap: 1.852vw;
    grid-template-columns: repeat(2, 37.963vw);
    -webkit-margin-before: 2.778vw;
            margin-block-start: 2.778vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-documents-about__case {
    gap: 20px;
    grid-template-columns: repeat(2, 410px);
    -webkit-margin-before: 30px;
            margin-block-start: 30px;
  }
}

.top-documents-about__case-row {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
}
@media screen and (max-width: 768px) {
  .top-documents-about__case-row {
    gap: 6.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-documents-about__case-row {
    gap: 2.778vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-documents-about__case-row {
    gap: 30px;
  }
}

.top-documents-about__case-title {
  display: grid;
  place-content: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-documents-about__case-title {
    border-radius: 0.8vw;
    font-size: 3.467vw;
    line-height: 1.385;
    min-height: 18.667vw;
  }
}
@media screen and (min-width: 769px) {
  .top-documents-about__case-title {
    line-height: 1.3;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-documents-about__case-title {
    border-radius: 0.556vw;
    font-size: 1.852vw;
    min-height: 6.481vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-documents-about__case-title {
    border-radius: 6px;
    font-size: 20px;
    min-height: 70px;
  }
}
.top-documents-about__case-title::after {
  bottom: 1px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
}
@media screen and (max-width: 768px) {
  .top-documents-about__case-title::after {
    height: 2.133vw;
    width: 2.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-documents-about__case-title::after {
    height: 1.481vw;
    width: 1.852vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-documents-about__case-title::after {
    height: 16px;
    width: 20px;
  }
}
.top-documents-about__case-title--have {
  background: #8bcda6;
  color: #fff;
}
.top-documents-about__case-title--have::after {
  background: #8bcda6;
}
.top-documents-about__case-title--dont-have {
  background: #e1e1e1;
}
.top-documents-about__case-title--dont-have::after {
  background: #e1e1e1;
}

.top-documents-about__case-list {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .top-documents-about__case-list {
    gap: 2.667vw 2vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-documents-about__case-list {
    gap: 1.389vw 0.926vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-documents-about__case-list {
    gap: 15px 10px;
  }
}

.top-documents-about__case-list {
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .top-documents-about__case-list {
    font-size: 5.067vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-documents-about__case-list {
    font-size: 2.593vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-documents-about__case-list {
    font-size: 28px;
  }
}

.top-documents-about__case-item--qty {
  border: solid var(--color-secondary);
}
@media screen and (max-width: 768px) {
  .top-documents-about__case-item--qty {
    border-radius: 1.067vw;
    border-width: 1px;
    line-height: 1.474;
    padding-inline: 2.4vw;
  }
}
@media screen and (min-width: 769px) {
  .top-documents-about__case-item--qty {
    border-width: 2px;
    line-height: 1.714;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-documents-about__case-item--qty {
    border-radius: 0.741vw;
    padding-inline: 1.481vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-documents-about__case-item--qty {
    border-radius: 8px;
    padding-inline: 16px;
  }
}

@media screen and (max-width: 768px) {
  .top-documents-about__case-note {
    font-size: 2.667vw;
    line-height: 1.6;
    -webkit-margin-before: 4vw;
            margin-block-start: 4vw;
    margin-inline: auto;
    width: 78.667vw;
  }
}
@media screen and (min-width: 769px) {
  .top-documents-about__case-note {
    line-height: 1.467;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-documents-about__case-note {
    font-size: 1.389vw;
    -webkit-margin-before: 1.389vw;
            margin-block-start: 1.389vw;
    -webkit-margin-start: 44.444vw;
            margin-inline-start: 44.444vw;
    width: 34.259vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-documents-about__case-note {
    font-size: 15px;
    -webkit-margin-before: 15px;
            margin-block-start: 15px;
    -webkit-margin-start: 480px;
            margin-inline-start: 480px;
    width: 370px;
  }
}

.top-documents-about__table {
  border: 1px solid #000;
}
@media screen and (max-width: 768px) {
  .top-documents-about__table {
    -webkit-margin-before: 5.333vw;
            margin-block-start: 5.333vw;
    padding: 1.333vw;
  }
}
@media screen and (min-width: 769px) {
  .top-documents-about__table {
    display: grid;
    justify-content: space-between;
    position: relative;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-documents-about__table {
    grid-template-columns: repeat(2, 39.815vw);
    -webkit-margin-before: 2.315vw;
            margin-block-start: 2.315vw;
    padding: 0.926vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-documents-about__table {
    grid-template-columns: repeat(2, 430px);
    -webkit-margin-before: 25px;
            margin-block-start: 25px;
    padding: 10px;
  }
}
@media screen and (min-width: 769px) {
  .top-documents-about__table::before {
    background: #000;
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    left: 50%;
    width: 1px;
  }
}

@media screen and (max-width: 768px) {
  .top-documents-about__table-row {
    -webkit-padding-after: 6vw;
            padding-block-end: 6vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-documents-about__table-row {
    -webkit-padding-after: 2.778vw;
            padding-block-end: 2.778vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-documents-about__table-row {
    -webkit-padding-after: 30px;
            padding-block-end: 30px;
  }
}

.top-documents-about__table-header {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .top-documents-about__table-header {
    font-size: 5.333vw;
    line-height: 1.5;
  }
}
@media screen and (min-width: 769px) {
  .top-documents-about__table-header {
    line-height: 2;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-documents-about__table-header {
    font-size: 2.778vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-documents-about__table-header {
    font-size: 30px;
  }
}

.top-documents-about__table-data {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .top-documents-about__table-data {
    -webkit-margin-before: 2.667vw;
            margin-block-start: 2.667vw;
    width: 73.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-documents-about__table-data {
    -webkit-margin-before: 1.852vw;
            margin-block-start: 1.852vw;
    width: 37.037vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-documents-about__table-data {
    -webkit-margin-before: 20px;
            margin-block-start: 20px;
    width: 400px;
  }
}

@media screen and (max-width: 768px) {
  .top-documents-about__table-list {
    font-size: 3.467vw;
    line-height: 1.846;
  }
}
@media screen and (min-width: 769px) {
  .top-documents-about__table-list {
    line-height: 1.7;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-documents-about__table-list {
    font-size: 1.852vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-documents-about__table-list {
    font-size: 20px;
  }
}

.top-documents-about__table-text {
  color: #000;
}
@media screen and (max-width: 768px) {
  .top-documents-about__table-text {
    font-size: 3.333vw;
    line-height: 1.64;
  }
}
@media screen and (min-width: 769px) {
  .top-documents-about__table-text {
    line-height: 1.474;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-documents-about__table-text {
    font-size: 1.759vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-documents-about__table-text {
    font-size: 19px;
  }
}

@media screen and (max-width: 768px) {
  .top-documents-about__table-list + .top-documents-about__table-text {
    -webkit-margin-before: 3.333vw;
            margin-block-start: 3.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-documents-about__table-list + .top-documents-about__table-text {
    -webkit-margin-before: 1.389vw;
            margin-block-start: 1.389vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-documents-about__table-list + .top-documents-about__table-text {
    -webkit-margin-before: 15px;
            margin-block-start: 15px;
  }
}

@media screen and (max-width: 768px) {
  .top-documents-about__table-text + .top-documents-about__table-list {
    -webkit-margin-before: 1.333vw;
            margin-block-start: 1.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-documents-about__table-text + .top-documents-about__table-list {
    -webkit-margin-before: 0.926vw;
            margin-block-start: 0.926vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-documents-about__table-text + .top-documents-about__table-list {
    -webkit-margin-before: 10px;
            margin-block-start: 10px;
  }
}

.top-documents-about__table-row--a .top-documents-about__table-header {
  background: #e28193;
}
.top-documents-about__table-row--b .top-documents-about__table-header {
  background: #eb8c82;
}

.top-service__documents-btn {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .top-service__documents-btn {
    -webkit-margin-before: 6.667vw;
            margin-block-start: 6.667vw;
    width: 66.667vw;
  }
}
@media screen and (min-width: 769px) {
  .top-service__documents-btn {
    line-height: 2.9;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-service__documents-btn {
    font-size: 1.852vw;
    -webkit-margin-before: 3.704vw;
            margin-block-start: 3.704vw;
    width: 27.778vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-service__documents-btn {
    font-size: 20px;
    -webkit-margin-before: 40px;
            margin-block-start: 40px;
    width: 300px;
  }
}
.top-service__documents-btn .c-btn__arrow {
  fill: var(--color-primary);
  -webkit-transform: rotate(90deg) translateX(-50%);
          transform: rotate(90deg) translateX(-50%);
}
@media screen and (max-width: 768px) {
  .top-service__documents-btn .c-btn__arrow {
    right: 19.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-service__documents-btn .c-btn__arrow {
    right: 6.019vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-service__documents-btn .c-btn__arrow {
    right: 65px;
  }
}
@media (any-hover: hover) {
  .top-service__documents-btn .c-btn__link:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
  }
  .top-service__documents-btn .c-btn__link:hover .c-btn__arrow {
    fill: #fff;
  }
}

@media screen and (min-width: 769px) {
  .top-service__block--document02 .top-documents-about__case-title {
    border-radius: 100vw;
  }
}

@media screen and (min-width: 769px) {
  .top-service__block--document03 .top-documents-id {
    display: grid;
    justify-content: space-between;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-service__block--document03 .top-documents-id {
    grid-template-columns: 29.63vw 52.778vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-service__block--document03 .top-documents-id {
    grid-template-columns: 320px 570px;
  }
}
@media screen and (min-width: 769px) {
  .top-service__block--document03 .top-documents-id__notes {
    width: 100%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-service__block--document03 .top-documents-id__notes {
    -webkit-margin-before: 1.389vw;
            margin-block-start: 1.389vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-service__block--document03 .top-documents-id__notes {
    -webkit-margin-before: 15px;
            margin-block-start: 15px;
  }
}

.top-step-item--yoyaku {
  background: #f5ffe6;
  border-top-color: var(--color-primary);
}
.top-step-item--yoyaku .top-service__block {
  background: var(--color-primary);
}

@media screen and (max-width: 768px) {
  .top-step-item__header--yoyaku {
    grid-template-rows: 34.667vw auto auto;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-step-item__header--yoyaku {
    -webkit-margin-before: 3.704vw;
            margin-block-start: 3.704vw;
    -webkit-padding-start: 32.407vw;
            padding-inline-start: 32.407vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-step-item__header--yoyaku {
    -webkit-margin-before: 40px;
            margin-block-start: 40px;
    -webkit-padding-start: 350px;
            padding-inline-start: 350px;
  }
}
@media screen and (min-width: 769px) {
  .top-step-item__header--yoyaku .top-step-item__header-image {
    left: 0;
    position: absolute;
    top: 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-step-item__header--yoyaku .top-step-item__header-image {
    width: 29.63vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-step-item__header--yoyaku .top-step-item__header-image {
    width: 320px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-step-item__header--yoyaku .top-step-item__header-title,
  .top-step-item__header--yoyaku .top-step-item__header-text {
    -webkit-padding-start: 0.926vw;
            padding-inline-start: 0.926vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-step-item__header--yoyaku .top-step-item__header-title,
  .top-step-item__header--yoyaku .top-step-item__header-text {
    -webkit-padding-start: 10px;
            padding-inline-start: 10px;
  }
}

.top-smooth-yoyaku {
  border-top: 1px solid var(--color-font);
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-smooth-yoyaku {
    grid-area: 3/1/4/3;
    -webkit-margin-before: 4vw;
            margin-block-start: 4vw;
    min-height: 38vw;
    -webkit-padding-before: 3.333vw;
            padding-block-start: 3.333vw;
    -webkit-padding-start: 1.333vw;
            padding-inline-start: 1.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-smooth-yoyaku {
    -webkit-margin-before: 1.852vw;
            margin-block-start: 1.852vw;
    min-height: 15.278vw;
    -webkit-padding-before: 1.852vw;
            padding-block-start: 1.852vw;
    -webkit-padding-start: 0.926vw;
            padding-inline-start: 0.926vw;
    width: 40.741vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-smooth-yoyaku {
    -webkit-margin-before: 20px;
            margin-block-start: 20px;
    min-height: 165px;
    -webkit-padding-before: 20px;
            padding-block-start: 20px;
    -webkit-padding-start: 10px;
            padding-inline-start: 10px;
    width: 440px;
  }
}

.top-smooth-yoyaku__text {
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .top-smooth-yoyaku__text {
    font-size: 3.467vw;
    line-height: 1.846;
    width: 36vw;
  }
}
@media screen and (min-width: 769px) {
  .top-smooth-yoyaku__text {
    line-height: 1.6;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-smooth-yoyaku__text {
    font-size: 1.852vw;
    width: 29.63vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-smooth-yoyaku__text {
    font-size: 20px;
    width: 320px;
  }
}

.top-smooth-yoyaku__image {
  position: absolute;
}
@media screen and (max-width: 768px) {
  .top-smooth-yoyaku__image {
    right: 1.333vw;
    top: -7.333vw;
    width: 45.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-smooth-yoyaku__image {
    right: -10.185vw;
    top: -3.241vw;
    width: 18.519vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-smooth-yoyaku__image {
    right: -110px;
    top: -35px;
    width: 200px;
  }
}

@media screen and (max-width: 768px) {
  .top-yoyaku-body {
    margin-inline: auto;
    width: 89.333vw;
  }
}
@media screen and (max-width: 768px) {
  .top-yoyaku-body .c-yoyaku {
    border: 2px solid var(--color-primary);
  }
}
@media screen and (min-width: 769px) {
  .top-yoyaku-body .c-yoyaku {
    border: 3px solid var(--color-primary);
  }
}
@media screen and (max-width: 768px) {
  .top-yoyaku-body .c-yoyaku--online {
    -webkit-margin-before: 12vw;
            margin-block-start: 12vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-yoyaku-body .c-yoyaku--online {
    -webkit-margin-before: 3.704vw;
            margin-block-start: 3.704vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-yoyaku-body .c-yoyaku--online {
    -webkit-margin-before: 40px;
            margin-block-start: 40px;
  }
}
@media screen and (max-width: 768px) {
  .top-yoyaku-body .c-yoyaku--phone {
    -webkit-margin-before: 8vw;
            margin-block-start: 8vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-yoyaku-body .c-yoyaku--phone {
    -webkit-margin-before: 4.63vw;
            margin-block-start: 4.63vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-yoyaku-body .c-yoyaku--phone {
    -webkit-margin-before: 50px;
            margin-block-start: 50px;
  }
}

.top-step-item--visit {
  background: #fff5f0;
  border-top-color: var(--color-tertiary);
}
.top-step-item--visit .top-service__block {
  background: var(--color-tertiary);
}

.top-step-visit {
  background: #fff;
}
@media screen and (max-width: 768px) {
  .top-step-visit {
    border: 2px solid var(--color-primary);
    border-radius: 2.667vw;
    -webkit-margin-before: 6vw;
            margin-block-start: 6vw;
    margin-inline: auto;
    padding-block: 4.667vw 6.667vw;
    width: 89.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-step-visit {
    border-radius: 1.852vw;
    -webkit-margin-before: 1.852vw;
            margin-block-start: 1.852vw;
    padding-block: 1.389vw 2.778vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-step-visit {
    border-radius: 20px;
    -webkit-margin-before: 20px;
            margin-block-start: 20px;
    padding-block: 15px 30px;
  }
}

.top-step-visit__header {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .top-step-visit__header {
    font-size: 4.8vw;
    text-align: center;
    width: 78.667vw;
  }
}
@media screen and (min-width: 769px) {
  .top-step-visit__header {
    align-items: center;
    border-bottom: 1px solid var(--color-font);
    display: flex;
    justify-content: center;
    width: 90%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-step-visit__header {
    font-size: 2.222vw;
    gap: 1.852vw;
    padding-block: 1.389vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-step-visit__header {
    font-size: 24px;
    gap: 20px;
    padding-block: 15px;
  }
}

@media screen and (max-width: 768px) {
  .top-step-visit__title {
    line-height: 1.444;
  }
}

.top-step-visit__building {
  border: 1px solid var(--color-secondary);
}
@media screen and (max-width: 768px) {
  .top-step-visit__building {
    display: inline-block;
    line-height: 6.667vw;
    -webkit-margin-before: 2.667vw;
            margin-block-start: 2.667vw;
    padding-inline: 4vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-step-visit__building {
    line-height: 3.704vw;
    padding-inline: 1.389vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-step-visit__building {
    line-height: 40px;
    padding-inline: 15px;
  }
}

.top-step-visit__body {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .top-step-visit__body {
    -webkit-margin-before: 2.667vw;
            margin-block-start: 2.667vw;
    width: 78.667vw;
  }
}
@media screen and (min-width: 769px) {
  .top-step-visit__body {
    display: grid;
    justify-content: space-between;
    width: 88%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-step-visit__body {
    grid-template-columns: 29.63vw 47.222vw;
    -webkit-margin-before: 3.704vw;
            margin-block-start: 3.704vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-step-visit__body {
    grid-template-columns: 320px 510px;
    -webkit-margin-before: 40px;
            margin-block-start: 40px;
  }
}

.top-step-visit__addr {
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .top-step-visit__addr {
    line-height: 1.75;
    text-align: center;
  }
}
@media screen and (min-width: 769px) {
  .top-step-visit__addr {
    line-height: 1.556;
  }
}

@media screen and (max-width: 768px) {
  .top-step-visit__btn {
    -webkit-margin-before: 4.667vw;
            margin-block-start: 4.667vw;
    margin-inline: auto;
    width: 66.667vw;
  }
}
@media screen and (min-width: 769px) {
  .top-step-visit__btn {
    line-height: 2.9;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-step-visit__btn {
    font-size: 1.852vw;
    -webkit-margin-before: 1.852vw;
            margin-block-start: 1.852vw;
    width: 27.778vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-step-visit__btn {
    font-size: 20px;
    -webkit-margin-before: 20px;
            margin-block-start: 20px;
    width: 300px;
  }
}
.top-step-visit__btn .c-btn__link {
  background: var(--color-tertiary);
  border-color: var(--color-tertiary);
  color: #fff;
}
.top-step-visit__btn .c-btn__arrow {
  fill: #fff;
}
@media screen and (max-width: 768px) {
  .top-step-visit__btn .c-btn__arrow {
    right: 16.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-step-visit__btn .c-btn__arrow {
    right: 3.056vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-step-visit__btn .c-btn__arrow {
    right: 33px;
  }
}
@media (any-hover: hover) {
  .top-step-visit__btn .c-btn__link:hover {
    background: #fff;
    color: var(--color-tertiary);
  }
  .top-step-visit__btn .c-btn__link:hover .c-btn__arrow {
    fill: var(--color-tertiary);
  }
}

@media screen and (max-width: 768px) {
  .top-step-visit__right {
    border-top: 1px solid #999;
    -webkit-margin-before: 6.4vw;
            margin-block-start: 6.4vw;
    -webkit-padding-before: 5.333vw;
            padding-block-start: 5.333vw;
  }
}

.top-step-visit__table {
  width: 100%;
}

.top-step-visit__table-header,
.top-step-visit__table-cell {
  vertical-align: middle;
}

.top-step-visit__table-header {
  border-left: 1px solid var(--color-strong);
  border-right: 1px solid #666;
}
@media screen and (max-width: 768px) {
  .top-step-visit__table-header {
    width: 22.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-step-visit__table-header {
    width: 14.815vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-step-visit__table-header {
    width: 160px;
  }
}

.top-step-visit__table-cell {
  border-right: 1px solid var(--color-strong);
}
@media screen and (max-width: 768px) {
  .top-step-visit__table-cell {
    width: 8vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-step-visit__table-cell {
    width: 4.63vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-step-visit__table-cell {
    width: 50px;
  }
}
.top-step-visit__table-cell:not(:last-child) {
  border-right: 1px dashed #666;
}

.top-step-visit__table-thead .top-step-visit__table-header,
.top-step-visit__table-thead .top-step-visit__table-cell {
  background: rgb(140, 200, 124);
  border-top: 1px solid var(--color-strong);
  color: #fff;
}
@media screen and (max-width: 768px) {
  .top-step-visit__table-thead .top-step-visit__table-header,
  .top-step-visit__table-thead .top-step-visit__table-cell {
    height: 8vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-step-visit__table-thead .top-step-visit__table-header,
  .top-step-visit__table-thead .top-step-visit__table-cell {
    height: 4.63vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-step-visit__table-thead .top-step-visit__table-header,
  .top-step-visit__table-thead .top-step-visit__table-cell {
    height: 50px;
  }
}

.top-step-visit__table-tbody .top-step-visit__table-header,
.top-step-visit__table-tbody .top-step-visit__table-cell {
  border-bottom: 1px solid var(--color-strong);
}
@media screen and (max-width: 768px) {
  .top-step-visit__table-tbody .top-step-visit__table-header,
  .top-step-visit__table-tbody .top-step-visit__table-cell {
    height: 10.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-step-visit__table-tbody .top-step-visit__table-header,
  .top-step-visit__table-tbody .top-step-visit__table-cell {
    height: 5.556vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-step-visit__table-tbody .top-step-visit__table-header,
  .top-step-visit__table-tbody .top-step-visit__table-cell {
    height: 60px;
  }
}
@media screen and (max-width: 768px) {
  .top-step-visit__table-tbody .top-step-visit__table-header {
    -webkit-padding-start: 1.333vw;
            padding-inline-start: 1.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-step-visit__table-tbody .top-step-visit__table-header {
    -webkit-padding-start: 2.315vw;
            padding-inline-start: 2.315vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-step-visit__table-tbody .top-step-visit__table-header {
    -webkit-padding-start: 25px;
            padding-inline-start: 25px;
  }
}

@media screen and (max-width: 768px) {
  .top-step-visit__notes {
    font-size: 2.133vw;
    -webkit-margin-before: 1.6vw;
            margin-block-start: 1.6vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-step-visit__notes {
    font-size: 1.481vw;
    -webkit-margin-before: 0.926vw;
            margin-block-start: 0.926vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-step-visit__notes {
    font-size: 16px;
    -webkit-margin-before: 10px;
            margin-block-start: 10px;
  }
}

.top-cancel {
  background: #dce1e6;
}

.top-cancel__inner {
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-cancel__inner {
    padding-block: 12.667vw 13.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-cancel__inner {
    padding-block: 8.796vw 9.259vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-cancel__inner {
    padding-block: 95px 100px;
  }
}

.top-cancel__image {
  position: absolute;
}
@media screen and (max-width: 768px) {
  .top-cancel__image {
    left: 8vw;
    top: 5.333vw;
    width: 30.667vw;
  }
}
@media screen and (min-width: 769px) {
  .top-cancel__image {
    right: 1%;
    width: 21%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-cancel__image {
    top: -1.852vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-cancel__image {
    top: -20px;
  }
}

@media screen and (max-width: 768px) {
  .top-cancel__title {
    -webkit-margin-start: 42.667vw;
            margin-inline-start: 42.667vw;
    width: 49.867vw;
  }
}
@media screen and (min-width: 769px) {
  .top-cancel__title {
    margin-inline: auto;
    width: 50%;
  }
}

.top-cancel__case-list {
  display: grid;
}
@media screen and (max-width: 768px) {
  .top-cancel__case-list {
    gap: 8vw;
    grid-template-columns: 1fr;
    -webkit-margin-before: 6.667vw;
            margin-block-start: 6.667vw;
    margin-inline: auto;
    width: 89.333vw;
  }
}
@media screen and (min-width: 769px) {
  .top-cancel__case-list {
    gap: 2%;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-cancel__case-list {
    -webkit-margin-before: 4.167vw;
            margin-block-start: 4.167vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-cancel__case-list {
    -webkit-margin-before: 45px;
            margin-block-start: 45px;
  }
}

.top-cancel__case {
  background: #fff;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .top-cancel__case {
    border-radius: 2.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-cancel__case {
    border-radius: 1.852vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-cancel__case {
    border-radius: 20px;
  }
}

.top-cancel__case-title {
  background: #96b4be;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .top-cancel__case-title {
    border-top-left-radius: 2.667vw;
    border-top-right-radius: 2.667vw;
    font-size: 4.8vw;
    line-height: 2.222;
  }
}
@media screen and (min-width: 769px) {
  .top-cancel__case-title {
    line-height: 2.5;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-cancel__case-title {
    border-top-left-radius: 1.852vw;
    border-top-right-radius: 1.852vw;
    font-size: 2.222vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-cancel__case-title {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    font-size: 24px;
  }
}

@media screen and (max-width: 768px) {
  .top-cancel__case-body {
    padding-block: 4.667vw 5.333vw;
    padding-inline: 5.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-cancel__case-body {
    padding-block: 2.315vw 2.778vw;
    padding-inline: 2.778vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-cancel__case-body {
    padding-block: 25px 30px;
    padding-inline: 30px;
  }
}

.top-cancel-phone__desc-text {
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .top-cancel-phone__desc-text {
    line-height: 1.75;
  }
}
@media screen and (min-width: 769px) {
  .top-cancel-phone__desc-text {
    line-height: 1.556;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-cancel-phone__desc-text {
    padding-inline: 0.463vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-cancel-phone__desc-text {
    padding-inline: 5px;
  }
}

@media screen and (max-width: 768px) {
  .top-cancel-phone__lead {
    font-size: 3.467vw;
    -webkit-margin-before: 4vw;
            margin-block-start: 4vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-cancel-phone__lead {
    font-size: 1.852vw;
    -webkit-margin-before: 1.852vw;
            margin-block-start: 1.852vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-cancel-phone__lead {
    font-size: 20px;
    -webkit-margin-before: 20px;
            margin-block-start: 20px;
  }
}

@media screen and (max-width: 768px) {
  .top-cancel-phone__number {
    font-size: 9.333vw;
    -webkit-margin-before: 1.852vw;
            margin-block-start: 1.852vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-cancel-phone__number {
    font-size: 4.074vw;
    -webkit-margin-before: 1.852vw;
            margin-block-start: 1.852vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-cancel-phone__number {
    font-size: 44px;
    -webkit-margin-before: 20px;
            margin-block-start: 20px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .top-cancel-phone__number-link {
    cursor: default;
    pointer-events: none;
  }
}

.top-cancel-phone__number-icon {
  display: inline-block;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .top-cancel-phone__number-icon {
    width: 1em;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-cancel-phone__number-icon {
    width: 4.074vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-cancel-phone__number-icon {
    width: 44px;
  }
}

.top-cancel-phone__hours {
  border-top: 1px solid #999;
  display: grid;
}
@media screen and (max-width: 768px) {
  .top-cancel-phone__hours {
    font-size: 2.933vw;
    grid-template-columns: 18.667vw 56vw;
    justify-content: space-between;
    line-height: 1.636;
    -webkit-margin-before: 5.333vw;
            margin-block-start: 5.333vw;
    -webkit-padding-before: 4vw;
            padding-block-start: 4vw;
    -webkit-padding-start: 1.333vw;
            padding-inline-start: 1.333vw;
  }
}
@media screen and (min-width: 769px) {
  .top-cancel-phone__hours {
    line-height: 1.625;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-cancel-phone__hours {
    font-size: 1.481vw;
    gap: 1.852vw;
    grid-template-columns: 7.407vw 30.556vw;
    -webkit-margin-before: 1.852vw;
            margin-block-start: 1.852vw;
    -webkit-margin-start: 0.926vw;
            margin-inline-start: 0.926vw;
    -webkit-padding-before: 1.852vw;
            padding-block-start: 1.852vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-cancel-phone__hours {
    font-size: 16px;
    gap: 20px;
    grid-template-columns: 80px 330px;
    -webkit-margin-before: 20px;
            margin-block-start: 20px;
    -webkit-margin-start: 10px;
            margin-inline-start: 10px;
    -webkit-padding-before: 20px;
            padding-block-start: 20px;
  }
}

.top-cancel-phone__hours-title {
  border: 1px solid var(--color-font);
  display: grid;
  place-content: center;
}

.top-cancel-online__text {
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .top-cancel-online__text {
    line-height: 1.75;
  }
}
@media screen and (min-width: 769px) {
  .top-cancel-online__text {
    line-height: 1.556;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-cancel-online__text {
    padding-inline: 0.463vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-cancel-online__text {
    padding-inline: 5px;
  }
}

.top-cancel-online__notes {
  border-top: 1px solid #999;
  word-break: break-all;
}
@media screen and (max-width: 768px) {
  .top-cancel-online__notes {
    font-size: 2.933vw;
    line-height: 1.636;
    -webkit-margin-before: 4.667vw;
            margin-block-start: 4.667vw;
    -webkit-padding-before: 4vw;
            padding-block-start: 4vw;
  }
}
@media screen and (min-width: 769px) {
  .top-cancel-online__notes {
    line-height: 1.625;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-cancel-online__notes {
    font-size: 1.481vw;
    -webkit-margin-before: 1.389vw;
            margin-block-start: 1.389vw;
    -webkit-padding-before: 0.926vw;
            padding-block-start: 0.926vw;
    padding-inline: 0.463vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-cancel-online__notes {
    font-size: 16px;
    -webkit-margin-before: 15px;
            margin-block-start: 15px;
    -webkit-padding-before: 10px;
            padding-block-start: 10px;
    padding-inline: 5px;
  }
}

.top-cancel__caution {
  background: #ffe6eb;
}
@media screen and (max-width: 768px) {
  .top-cancel__caution {
    border-radius: 2.667vw;
    -webkit-margin-before: 7.333vw;
            margin-block-start: 7.333vw;
    margin-inline: auto;
    padding-block: 4.667vw 5.333vw;
    padding-inline: 5.333vw;
    width: 89.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-cancel__caution {
    border-radius: 1.852vw;
    -webkit-margin-before: 3.704vw;
            margin-block-start: 3.704vw;
    padding-block: 1.852vw 3.704vw;
    padding-inline: 2.778vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-cancel__caution {
    border-radius: 20px;
    -webkit-margin-before: 40px;
            margin-block-start: 40px;
    padding-block: 20px 40px;
    padding-inline: 30px;
  }
}

.top-cancel__caution-title {
  border-bottom: 1px solid var(--color-secondary);
}
@media screen and (max-width: 768px) {
  .top-cancel__caution-title {
    font-size: 4.8vw;
    line-height: 1.5;
    padding-block: 2.933vw;
  }
}
@media screen and (min-width: 769px) {
  .top-cancel__caution-title {
    line-height: 1.333;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-cancel__caution-title {
    font-size: 2.222vw;
    padding-block: 1.852vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-cancel__caution-title {
    font-size: 24px;
    padding-block: 20px;
  }
}

.top-cancel__caution-text {
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .top-cancel__caution-text {
    line-height: 1.75;
    -webkit-margin-before: 3.333vw;
            margin-block-start: 3.333vw;
  }
}
@media screen and (min-width: 769px) {
  .top-cancel__caution-text {
    line-height: 1.556;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-cancel__caution-text {
    -webkit-margin-before: 1.852vw;
            margin-block-start: 1.852vw;
    padding-inline: 0.463vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-cancel__caution-text {
    -webkit-margin-before: 20px;
            margin-block-start: 20px;
    padding-inline: 5px;
  }
}

.top-access {
  background: #fff8e6;
}

.top-access__inner {
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-access__inner {
    padding-block: 13.333vw 36vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-access__inner {
    padding-block: 9.722vw 9.259vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-access__inner {
    padding-block: 105px 100px;
  }
}

.top-access__title {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .top-access__title {
    width: 70.4vw;
  }
}
@media screen and (min-width: 769px) {
  .top-access__title {
    width: 48%;
  }
}

@media screen and (max-width: 768px) {
  .top-access__body {
    -webkit-margin-before: 7.333vw;
            margin-block-start: 7.333vw;
    margin-inline: auto;
    width: 89.333vw;
  }
}
@media screen and (min-width: 769px) {
  .top-access__body {
    align-items: center;
    display: grid;
    grid-template-columns: 42% 54%;
    justify-content: space-between;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-access__body {
    -webkit-margin-before: 6.019vw;
            margin-block-start: 6.019vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-access__body {
    -webkit-margin-before: 65px;
            margin-block-start: 65px;
  }
}

.top-access__addr,
.top-access__route {
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .top-access__addr,
  .top-access__route {
    line-height: 1.75;
  }
}
@media screen and (min-width: 769px) {
  .top-access__addr,
  .top-access__route {
    line-height: 1.556;
  }
}

.top-access__route {
  border-top: 1px solid #999;
}
@media screen and (max-width: 768px) {
  .top-access__route {
    -webkit-margin-before: 4vw;
            margin-block-start: 4vw;
    -webkit-padding-before: 4.667vw;
            padding-block-start: 4.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-access__route {
    -webkit-margin-before: 1.852vw;
            margin-block-start: 1.852vw;
    -webkit-padding-before: 1.111vw;
            padding-block-start: 1.111vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-access__route {
    -webkit-margin-before: 20px;
            margin-block-start: 20px;
    -webkit-padding-before: 12px;
            padding-block-start: 12px;
  }
}

@media screen and (max-width: 768px) {
  .top-access__btn {
    bottom: 13.333vw;
    left: 16.667vw;
    position: absolute;
    width: 66.667vw;
  }
}
@media screen and (min-width: 769px) {
  .top-access__btn {
    line-height: 2.9;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-access__btn {
    font-size: 1.852vw;
    -webkit-margin-before: 2.778vw;
            margin-block-start: 2.778vw;
    width: 27.778vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-access__btn {
    font-size: 20px;
    -webkit-margin-before: 30px;
            margin-block-start: 30px;
    width: 300px;
  }
}
.top-access__btn .c-btn__link {
  background: var(--color-tertiary);
  border-color: var(--color-tertiary);
  color: #fff;
}
.top-access__btn .c-btn__arrow {
  fill: #fff;
}
@media screen and (max-width: 768px) {
  .top-access__btn .c-btn__arrow {
    right: 16.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-access__btn .c-btn__arrow {
    right: 3.056vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-access__btn .c-btn__arrow {
    right: 33px;
  }
}
@media (any-hover: hover) {
  .top-access__btn .c-btn__link:hover {
    background: #fff;
    color: var(--color-tertiary);
  }
  .top-access__btn .c-btn__link:hover .c-btn__arrow {
    fill: var(--color-tertiary);
  }
}

.top-access__map {
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-access__map {
    height: 56vw;
    -webkit-margin-before: 5.333vw;
            margin-block-start: 5.333vw;
    -webkit-margin-start: 1.333vw;
            margin-inline-start: 1.333vw;
    width: 84vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-access__map {
    height: 33.333vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-access__map {
    height: 360px;
  }
}
.top-access__map iframe {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.top-yubinkyoku-about__inner {
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-yubinkyoku-about__inner {
    padding-block: 11.333vw 13.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-yubinkyoku-about__inner {
    padding-block: 8.796vw 7.407vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-yubinkyoku-about__inner {
    padding-block: 95px 80px;
  }
}

.top-yubinkyoku-about__image {
  position: absolute;
}
@media screen and (max-width: 768px) {
  .top-yubinkyoku-about__image {
    left: 1.333vw;
    top: 5.333vw;
    width: 37.333vw;
  }
}
@media screen and (min-width: 769px) {
  .top-yubinkyoku-about__image {
    left: 3%;
    width: 17%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-yubinkyoku-about__image {
    top: 3.704vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-yubinkyoku-about__image {
    top: 40px;
  }
}

@media screen and (max-width: 768px) {
  .top-yubinkyoku-about__title {
    -webkit-margin-start: 42.667vw;
            margin-inline-start: 42.667vw;
    width: 41.067vw;
  }
}
@media screen and (min-width: 769px) {
  .top-yubinkyoku-about__title {
    margin-inline: auto;
    width: 50.4%;
  }
}

.top-yubinkyoku-about__lead {
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .top-yubinkyoku-about__lead {
    font-size: 3.467vw;
    line-height: 1.846;
    -webkit-margin-before: 2vw;
            margin-block-start: 2vw;
    -webkit-margin-start: 42.667vw;
            margin-inline-start: 42.667vw;
    width: 50.667vw;
  }
}
@media screen and (min-width: 769px) {
  .top-yubinkyoku-about__lead {
    line-height: 1.6;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-yubinkyoku-about__lead {
    font-size: 1.852vw;
    -webkit-margin-before: 0.926vw;
            margin-block-start: 0.926vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-yubinkyoku-about__lead {
    font-size: 20px;
    -webkit-margin-before: 10px;
            margin-block-start: 10px;
  }
}

.top-yubinkyoku-about__row {
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .top-yubinkyoku-about__row {
    -webkit-margin-before: 3.333vw;
            margin-block-start: 3.333vw;
    margin-inline: auto;
    width: 89.333vw;
  }
}
@media screen and (min-width: 769px) {
  .top-yubinkyoku-about__row {
    display: grid;
    grid-template-columns: repeat(2, 50%);
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-yubinkyoku-about__row {
    -webkit-margin-before: 3.241vw;
            margin-block-start: 3.241vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-yubinkyoku-about__row {
    -webkit-margin-before: 35px;
            margin-block-start: 35px;
  }
}

@media screen and (max-width: 768px) {
  .top-yubinkyoku-about__col {
    padding-block: 8vw 10vw;
    padding-inline: 4vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-yubinkyoku-about__col {
    padding-block: 3.704vw;
    padding-inline: 3.704vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-yubinkyoku-about__col {
    padding-block: 40px;
    padding-inline: 40px;
  }
}

@media screen and (max-width: 768px) {
  .top-yubinkyoku-about__sub-title {
    font-size: 5.067vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-yubinkyoku-about__sub-title {
    font-size: 2.593vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-yubinkyoku-about__sub-title {
    font-size: 28px;
  }
}

.top-yubinkyoku-about__list {
  display: grid;
  grid-template-columns: 100%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-yubinkyoku-about__list {
    gap: 1.333vw;
    -webkit-margin-before: 5.333vw;
            margin-block-start: 5.333vw;
    margin-inline: auto;
    width: 78.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-yubinkyoku-about__list {
    gap: 0.926vw;
    -webkit-margin-before: 3.704vw;
            margin-block-start: 3.704vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-yubinkyoku-about__list {
    gap: 10px;
    -webkit-margin-before: 40px;
            margin-block-start: 40px;
  }
}
.top-yubinkyoku-about__list::after {
  background: #fff;
  bottom: 1px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  left: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
}
@media screen and (max-width: 768px) {
  .top-yubinkyoku-about__list::after {
    height: 2.133vw;
    width: 2.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-yubinkyoku-about__list::after {
    height: 1.481vw;
    width: 1.852vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-yubinkyoku-about__list::after {
    height: 16px;
    width: 20px;
  }
}

.top-yubinkyoku-about__item {
  align-items: center;
  background: #fff;
  display: grid;
}
@media screen and (max-width: 768px) {
  .top-yubinkyoku-about__item {
    gap: 4vw;
    grid-template-columns: 5.333vw auto;
    padding-block: 2.667vw;
    -webkit-padding-start: 2.667vw;
            padding-inline-start: 2.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-yubinkyoku-about__item {
    gap: 0.926vw;
    grid-template-columns: 2.778vw auto;
    padding-block: 1.852vw;
    -webkit-padding-start: 1.852vw;
            padding-inline-start: 1.852vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-yubinkyoku-about__item {
    gap: 10px;
    grid-template-columns: 30px auto;
    padding-block: 20px;
    -webkit-padding-start: 20px;
            padding-inline-start: 20px;
  }
}

.top-yubinkyoku-about__item-label {
  letter-spacing: 0.04em;
  line-height: 1.25;
}
@media screen and (max-width: 768px) {
  .top-yubinkyoku-about__item-label {
    font-size: 4.533vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-yubinkyoku-about__item-label {
    font-size: 2.222vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-yubinkyoku-about__item-label {
    font-size: 24px;
  }
}

.top-yubinkyoku-about__text {
  letter-spacing: 0.04em;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .top-yubinkyoku-about__text {
    line-height: 1.75;
    -webkit-margin-before: 5.333vw;
            margin-block-start: 5.333vw;
    width: 76vw;
  }
}
@media screen and (min-width: 769px) {
  .top-yubinkyoku-about__text {
    line-height: 1.667;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-yubinkyoku-about__text {
    -webkit-margin-before: 3.241vw;
            margin-block-start: 3.241vw;
    width: 35.185vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-yubinkyoku-about__text {
    -webkit-margin-before: 35px;
            margin-block-start: 35px;
    width: 380px;
  }
}

.top-yubinkyoku-about__btn {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .top-yubinkyoku-about__btn {
    -webkit-margin-before: 4.667vw;
            margin-block-start: 4.667vw;
    width: 66.667vw;
  }
}
@media screen and (min-width: 769px) {
  .top-yubinkyoku-about__btn {
    line-height: 3.222;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-yubinkyoku-about__btn {
    font-size: 1.667vw;
    -webkit-margin-before: 2.315vw;
            margin-block-start: 2.315vw;
    width: 33.333vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-yubinkyoku-about__btn {
    font-size: 18px;
    -webkit-margin-before: 25px;
            margin-block-start: 25px;
    width: 360px;
  }
}
.top-yubinkyoku-about__btn .c-btn__link {
  background: #fff;
}
.top-yubinkyoku-about__btn .c-btn__arrow {
  fill: var(--color-primary);
  -webkit-transform: rotate(-90deg) translateX(50%);
          transform: rotate(-90deg) translateX(50%);
}
@media screen and (max-width: 768px) {
  .top-yubinkyoku-about__btn .c-btn__arrow {
    right: 8.267vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-yubinkyoku-about__btn .c-btn__arrow {
    right: 2.037vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-yubinkyoku-about__btn .c-btn__arrow {
    right: 22px;
  }
}
@media (any-hover: hover) {
  .top-yubinkyoku-about__btn .c-btn__link:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
  }
  .top-yubinkyoku-about__btn .c-btn__link:hover .c-btn__arrow {
    fill: #fff;
  }
}

.top-yubinkyoku-about__caution {
  display: grid;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .top-yubinkyoku-about__caution {
    gap: 2.667vw;
    grid-template-columns: 10.667vw 62.667vw;
    justify-content: space-between;
    -webkit-margin-before: 3.333vw;
            margin-block-start: 3.333vw;
    width: 76vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-yubinkyoku-about__caution {
    gap: 1.852vw;
    grid-template-columns: 5.556vw 27.778vw;
    -webkit-margin-before: 1.389vw;
            margin-block-start: 1.389vw;
    width: 35.185vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-yubinkyoku-about__caution {
    gap: 20px;
    grid-template-columns: 60px 300px;
    -webkit-margin-before: 15px;
            margin-block-start: 15px;
    width: 380px;
  }
}

.top-yubinkyoku-about__caution-text {
  color: #ffe678;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .top-yubinkyoku-about__caution-text {
    line-height: 1.667;
  }
}
@media screen and (min-width: 769px) {
  .top-yubinkyoku-about__caution-text {
    line-height: 1.444;
  }
}

.top-yubinkyoku-about__col--not {
  background: #dce1e6;
}

.top-yubinkyoku-about__col--ok {
  background: var(--color-red);
}
.top-yubinkyoku-about__col--ok .top-yubinkyoku-about__sub-title,
.top-yubinkyoku-about__col--ok .top-yubinkyoku-about__text {
  color: #fff;
}

.top-yubinkyoku-step {
  background: #eaf3f6;
}

@media screen and (max-width: 768px) {
  .top-yubinkyoku-step__inner {
    padding-block: 13.333vw 12.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-yubinkyoku-step__inner {
    padding-block: 7.87vw 7.407vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-yubinkyoku-step__inner {
    padding-block: 85px 80px;
  }
}

.top-yubinkyoku-step__title {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .top-yubinkyoku-step__title {
    width: 64.533vw;
  }
}
@media screen and (min-width: 769px) {
  .top-yubinkyoku-step__title {
    width: 46.2%;
  }
}

@media screen and (max-width: 768px) {
  .top-yubinkyoku-step__list {
    -webkit-margin-before: 14.667vw;
            margin-block-start: 14.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-yubinkyoku-step__list {
    -webkit-margin-before: 8.796vw;
            margin-block-start: 8.796vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-yubinkyoku-step__list {
    -webkit-margin-before: 95px;
            margin-block-start: 95px;
  }
}
.top-yubinkyoku-step__list .c-steps-list__sub-title {
  color: var(--color-yubinkyoku-primay);
}

@media screen and (max-width: 768px) {
  .top-yubinkyoku-bring {
    -webkit-margin-before: 9.333vw;
            margin-block-start: 9.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-yubinkyoku-bring {
    -webkit-margin-before: 6.481vw;
            margin-block-start: 6.481vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-yubinkyoku-bring {
    -webkit-margin-before: 70px;
            margin-block-start: 70px;
  }
}

.top-yubinkyoku-bring__title {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .top-yubinkyoku-bring__title {
    width: 78.667vw;
  }
}
@media screen and (min-width: 769px) {
  .top-yubinkyoku-bring__title {
    width: 92%;
  }
}

.top-yubinkyoku-bring__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .top-yubinkyoku-bring__list {
    gap: 2.667vw 2vw;
    -webkit-margin-before: 4.667vw;
            margin-block-start: 4.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-yubinkyoku-bring__list {
    gap: 1.852vw 0.926vw;
    -webkit-margin-before: 2.778vw;
            margin-block-start: 2.778vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-yubinkyoku-bring__list {
    gap: 20px 10px;
    -webkit-margin-before: 30px;
            margin-block-start: 30px;
  }
}

.top-yubinkyoku-bring__item {
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-yubinkyoku-bring__item {
    width: 33.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-yubinkyoku-bring__item {
    -webkit-padding-before: 0.926vw;
            padding-block-start: 0.926vw;
    width: 20.37vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-yubinkyoku-bring__item {
    -webkit-padding-before: 10px;
            padding-block-start: 10px;
    width: 220px;
  }
}
.top-yubinkyoku-bring__item::before {
  background: #fff;
  border-radius: 50%;
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .top-yubinkyoku-bring__item::before {
    height: 30.667vw;
    width: 30.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-yubinkyoku-bring__item::before {
    height: 18.519vw;
    width: 18.519vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-yubinkyoku-bring__item::before {
    height: 200px;
    width: 200px;
  }
}
@media screen and (max-width: 768px) {
  .top-yubinkyoku-bring__item:nth-of-type(1) {
    width: 100%;
  }
  .top-yubinkyoku-bring__item:nth-of-type(1) .top-yubinkyoku-bring__item-icon {
    left: 34.667vw;
  }
}
@media screen and (max-width: 768px) {
  .top-yubinkyoku-bring__item:nth-of-type(2) {
    -webkit-margin-start: -2.667vw;
            margin-inline-start: -2.667vw;
  }
}

.top-yubinkyoku-bring__item-icon {
  left: 0;
  position: absolute;
  top: 0;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .top-yubinkyoku-bring__item-icon {
    width: 9.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-yubinkyoku-bring__item-icon {
    width: 4.63vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-yubinkyoku-bring__item-icon {
    width: 50px;
  }
}

.top-yubinkyoku-bring__item-image {
  margin-inline: auto;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .top-yubinkyoku-bring__item-image {
    width: 24vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-yubinkyoku-bring__item-image {
    width: 14.815vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-yubinkyoku-bring__item-image {
    width: 160px;
  }
}

.top-yubinkyoku-bring__item-label {
  color: #333;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .top-yubinkyoku-bring__item-label {
    font-size: 3.467vw;
    line-height: 1.385;
  }
}
@media screen and (min-width: 769px) {
  .top-yubinkyoku-bring__item-label {
    line-height: 1.3;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-yubinkyoku-bring__item-label {
    font-size: 1.852vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-yubinkyoku-bring__item-label {
    font-size: 20px;
  }
}

.top-yubinkyoku-yoyaku {
  background: var(--color-red);
}

@media screen and (max-width: 768px) {
  .top-yubinkyoku-yoyaku__inner {
    padding-block: 13.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-yubinkyoku-yoyaku__inner {
    padding-block: 7.87vw 9.259vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-yubinkyoku-yoyaku__inner {
    padding-block: 85px 100px;
  }
}

.top-yubinkyoku-yoyaku__title {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .top-yubinkyoku-yoyaku__title {
    width: 76.267vw;
  }
}
@media screen and (min-width: 769px) {
  .top-yubinkyoku-yoyaku__title {
    width: 54.6%;
  }
}

.top-yubinkyoku-yoyaku__text {
  color: #fff;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .top-yubinkyoku-yoyaku__text {
    font-size: 3.467vw;
    line-height: 1.846;
    -webkit-margin-before: 2.667vw;
            margin-block-start: 2.667vw;
    margin-inline: auto;
    width: 86.667vw;
  }
}
@media screen and (min-width: 769px) {
  .top-yubinkyoku-yoyaku__text {
    line-height: 1.6;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-yubinkyoku-yoyaku__text {
    font-size: 1.481vw;
    -webkit-margin-before: 1.389vw;
            margin-block-start: 1.389vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-yubinkyoku-yoyaku__text {
    font-size: 16px;
    -webkit-margin-before: 15px;
            margin-block-start: 15px;
  }
}

.top-yubinkyoku-yoyaku__btn {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .top-yubinkyoku-yoyaku__btn {
    -webkit-margin-before: 6vw;
            margin-block-start: 6vw;
    width: 74.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-yubinkyoku-yoyaku__btn {
    -webkit-margin-before: 2.315vw;
            margin-block-start: 2.315vw;
    width: 55.556vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-yubinkyoku-yoyaku__btn {
    -webkit-margin-before: 25px;
            margin-block-start: 25px;
    width: 600px;
  }
}

.top-yubinkyoku-yoyaku__btn-link {
  background: #fff;
  border: 1px solid #ed9898;
  border-radius: 100vw;
  color: var(--color-yubinkyoku-primay);
  display: grid;
  place-content: center;
  place-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-yubinkyoku-yoyaku__btn-link {
    border-width: 3px;
    box-shadow: 1.333vw 1.333vw 1.333vw rgba(0, 0, 0, 0.3);
    gap: 2vw;
    grid-template-columns: 8vw auto 4vw;
    height: 18.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-yubinkyoku-yoyaku__btn-link {
    border-width: 0.463vw;
    box-shadow: 0.926vw 0.926vw 0.926vw rgba(0, 0, 0, 0.3);
    gap: 0.926vw;
    grid-template-columns: 3.704vw auto 1.852vw;
    height: 11.111vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-yubinkyoku-yoyaku__btn-link {
    border-width: 5px;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.3);
    gap: 10px;
    grid-template-columns: 40px auto 20px;
    height: 120px;
  }
}

.top-yubinkyoku-yoyaku__btn-label {
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .top-yubinkyoku-yoyaku__btn-label {
    font-size: 4.533vw;
    -webkit-margin-start: 1.333vw;
            margin-inline-start: 1.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-yubinkyoku-yoyaku__btn-label {
    font-size: 2.778vw;
    -webkit-margin-end: 0.926vw;
            margin-inline-end: 0.926vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-yubinkyoku-yoyaku__btn-label {
    font-size: 30px;
    -webkit-margin-end: 10px;
            margin-inline-end: 10px;
  }
}

.top-yubinkyoku-yoyaku__btn-arrow {
  fill: var(--color-yubinkyoku-primay);
  width: 100%;
}

@media (any-hover: hover) {
  .top-yubinkyoku-yoyaku__btn-link:hover {
    background: #dce1e6;
  }
}

@media screen and (max-width: 768px) {
  .top-yubinkyoku-yoyaku__phone {
    -webkit-margin-before: 12vw;
            margin-block-start: 12vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .top-yubinkyoku-yoyaku__phone {
    -webkit-margin-before: 7.407vw;
            margin-block-start: 7.407vw;
  }
}
@media screen and (min-width: 1080px) {
  .top-yubinkyoku-yoyaku__phone {
    -webkit-margin-before: 80px;
            margin-block-start: 80px;
  }
}
.top-yubinkyoku-yoyaku__phone .c-yoyaku__title {
  color: var(--color-yubinkyoku-primay);
}

.access {
  color: #333;
}

@media screen and (max-width: 768px) {
  .access__inner {
    padding-block: 10.667vw 14.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .access__inner {
    margin-block: 11.111vw 13.889vw;
  }
}
@media screen and (min-width: 1080px) {
  .access__inner {
    margin-block: 120px 150px;
  }
}

.access__title {
  border: solid rgb(238, 0, 68);
  border-width: 1px 0;
  color: rgb(238, 0, 68);
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .access__title {
    font-size: 5.067vw;
    line-height: 1.38;
    margin-inline: auto;
    padding-block: 2.133vw;
    width: 89.333vw;
  }
}
@media screen and (min-width: 769px) {
  .access__title {
    line-height: 2.5;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .access__title {
    font-size: 2.963vw;
    padding-block: 1.667vw;
  }
}
@media screen and (min-width: 1080px) {
  .access__title {
    font-size: 32px;
    padding-block: 18px;
  }
}

@media screen and (max-width: 768px) {
  .access-main {
    -webkit-margin-before: 5.067vw;
            margin-block-start: 5.067vw;
    margin-inline: auto;
    width: 89.333vw;
  }
}
@media screen and (min-width: 769px) {
  .access-main {
    display: grid;
    grid-template-columns: 44% 51%;
    justify-content: space-between;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .access-main {
    -webkit-margin-before: 7.407vw;
            margin-block-start: 7.407vw;
  }
}
@media screen and (min-width: 1080px) {
  .access-main {
    -webkit-margin-before: 80px;
            margin-block-start: 80px;
  }
}

.access-map__iframe {
  display: block;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .access-map__iframe {
    height: 34.259vw;
  }
}
@media screen and (min-width: 1080px) {
  .access-map__iframe {
    height: 370px;
  }
}
.access-map__iframe iframe {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

@media screen and (min-width: 769px) and (max-width: 1079px) {
  .access-map__image {
    -webkit-margin-before: 4.167vw;
            margin-block-start: 4.167vw;
    width: 38.796vw;
  }
}
@media screen and (min-width: 1080px) {
  .access-map__image {
    -webkit-margin-before: 45px;
            margin-block-start: 45px;
    width: 419px;
  }
}

@media screen and (max-width: 768px) {
  .access-desc {
    -webkit-margin-before: 4.267vw;
            margin-block-start: 4.267vw;
  }
}

@media screen and (max-width: 768px) {
  .access-desc__title {
    font-size: 4.8vw;
    line-height: 1.36;
    text-align: center;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .access-desc__title {
    font-size: 2.222vw;
    -webkit-padding-start: 1em;
            padding-inline-start: 1em;
  }
}
@media screen and (min-width: 1080px) {
  .access-desc__title {
    font-size: 24px;
    -webkit-padding-start: 1em;
            padding-inline-start: 1em;
  }
}

@media screen and (max-width: 768px) {
  .access-desc__section {
    -webkit-margin-before: 8vw;
            margin-block-start: 8vw;
    text-align: center;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .access-desc__section {
    border-left: 0.463vw solid #ccc;
    -webkit-margin-before: 2.778vw;
            margin-block-start: 2.778vw;
    -webkit-padding-start: 1.852vw;
            padding-inline-start: 1.852vw;
  }
}
@media screen and (min-width: 1080px) {
  .access-desc__section {
    border-left: 5px solid #ccc;
    -webkit-margin-before: 30px;
            margin-block-start: 30px;
    -webkit-padding-start: 20px;
            padding-inline-start: 20px;
  }
}
@media screen and (max-width: 768px) {
  .access-desc__section.access__hours {
    -webkit-margin-before: 7.467vw;
            margin-block-start: 7.467vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .access-desc__section.access__hours {
    -webkit-margin-before: 2.963vw;
            margin-block-start: 2.963vw;
  }
}
@media screen and (min-width: 1080px) {
  .access-desc__section.access__hours {
    -webkit-margin-before: 32px;
            margin-block-start: 32px;
  }
}

@media screen and (max-width: 768px) {
  .access-desc__sub-title {
    border-bottom: 0.8vw solid #ccc;
    display: inline-block;
    font-size: 4.267vw;
    -webkit-padding-after: 2.133vw;
            padding-block-end: 2.133vw;
    padding-inline: 0.5em;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .access-desc__sub-title {
    font-size: 1.852vw;
  }
}
@media screen and (min-width: 1080px) {
  .access-desc__sub-title {
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  .access-desc__contents {
    -webkit-margin-before: 4vw;
            margin-block-start: 4vw;
    text-align: left;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .access-desc__contents {
    -webkit-margin-before: 1.667vw;
            margin-block-start: 1.667vw;
  }
}
@media screen and (min-width: 1080px) {
  .access-desc__contents {
    -webkit-margin-before: 18px;
            margin-block-start: 18px;
  }
}

@media screen and (max-width: 768px) {
  .access-hours {
    position: relative;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .access-hours__wrap {
    overflow: hidden;
  }
}

@media screen and (max-width: 768px) {
  .access-hours__scroll {
    cursor: pointer;
    -webkit-padding-after: 3.333vw;
            padding-block-end: 3.333vw;
    overflow-x: auto;
    scrollbar-color: #b3b3b3 #e6e6e6;
    scrollbar-width: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }
}

.access-hours__table {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .access-hours__table {
    font-size: 3.733vw;
    min-width: 77.467vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .access-hours__table {
    font-size: 1.481vw;
  }
}
@media screen and (min-width: 1080px) {
  .access-hours__table {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .access-hours__table-row {
    display: flex;
  }
}

.access-hours__table-header,
.access-hours__table-cell {
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .access-hours__table-header,
  .access-hours__table-cell {
    align-items: center;
    display: flex;
    justify-content: center;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .access-hours__table-header,
  .access-hours__table-cell {
    height: 4.722vw;
  }
}
@media screen and (min-width: 1080px) {
  .access-hours__table-header,
  .access-hours__table-cell {
    height: 51px;
  }
}

.access-hours__table-header {
  border-left: 1px solid #333;
  border-right: 1px solid #999;
}
@media screen and (max-width: 768px) {
  .access-hours__table-header {
    left: 0;
    position: sticky;
    width: 36.4vw;
    z-index: 10;
  }
}
@media screen and (min-width: 769px) {
  .access-hours__table-header {
    width: 32%;
  }
}

.access-hours__table-cell {
  border-right: 1px solid #333;
}
@media screen and (max-width: 768px) {
  .access-hours__table-cell {
    width: 11.467vw;
  }
}
@media screen and (min-width: 769px) {
  .access-hours__table-cell {
    width: 9.7142857143%;
  }
}
.access-hours__table-cell:not(:last-child) {
  border-right-style: dotted;
}

.access-hours__table-thead .access-hours__table-header,
.access-hours__table-thead .access-hours__table-cell {
  background: rgb(140, 200, 124);
  border-top: 1px solid #333;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .access-hours__table-thead .access-hours__table-cell {
    height: 12.533vw;
  }
}

.access-hours__table-tbody .access-hours__table-header,
.access-hours__table-tbody .access-hours__table-cell {
  border-bottom: 1px solid #333;
}
@media screen and (max-width: 768px) {
  .access-hours__table-tbody .access-hours__table-header,
  .access-hours__table-tbody .access-hours__table-cell {
    height: 12vw;
  }
}
@media screen and (max-width: 768px) {
  .access-hours__table-tbody .access-hours__table-header {
    background: #fff;
  }
}

@media screen and (max-width: 768px) {
  .access-hours-notes {
    font-size: 3.2vw;
    -webkit-margin-before: 4vw;
            margin-block-start: 4vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .access-hours-notes {
    line-height: 1.56;
    -webkit-margin-before: 0.926vw;
            margin-block-start: 0.926vw;
  }
}
@media screen and (min-width: 1080px) {
  .access-hours-notes {
    line-height: 1.56;
    -webkit-margin-before: 10px;
            margin-block-start: 10px;
  }
}

@media screen and (max-width: 768px) {
  .access-address__text {
    font-size: 3.733vw;
    line-height: 1.42;
    -webkit-margin-after: 1em;
            margin-block-end: 1em;
    text-align: center;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .access-address__text {
    line-height: 1.56;
  }
}
@media screen and (min-width: 1080px) {
  .access-address__text {
    line-height: 1.56;
  }
}

@media screen and (max-width: 768px) {
  .access-address__maps {
    display: block;
    height: 75.2vw;
    position: relative;
    width: 100%;
  }
  .access-address__maps iframe {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .access-route {
    font-size: 3.733vw;
    line-height: 1.75;
    text-align: center;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .access-route {
    line-height: 1.56;
  }
}
@media screen and (min-width: 1080px) {
  .access-route {
    line-height: 1.56;
  }
}

.access-route__item::before {
  content: "・";
}

@media screen and (max-width: 768px) {
  .access-floor-guide {
    font-size: 3.733vw;
    line-height: 1.75;
    text-align: center;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .access-floor-guide {
    line-height: 1.56;
  }
}
@media screen and (min-width: 1080px) {
  .access-floor-guide {
    line-height: 1.56;
  }
}

.access-floor-guide__item::before {
  content: "● ";
}

@media screen and (max-width: 768px) {
  .access-floor-guide__images {
    -webkit-margin-before: 2.667vw;
            margin-block-start: 2.667vw;
  }
}

.access-yoyaku {
  border: solid rgb(12, 173, 100);
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .access-yoyaku {
    border-radius: 1.333vw;
    border-width: 2px;
    -webkit-margin-before: 8vw;
            margin-block-start: 8vw;
    padding-block: 6.933vw 3.467vw;
    width: 89.333vw;
  }
}
@media screen and (min-width: 769px) {
  .access-yoyaku {
    border-width: 3px;
    text-align: center;
    width: 90%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .access-yoyaku {
    border-radius: 0.926vw;
    -webkit-margin-before: 7.87vw;
            margin-block-start: 7.87vw;
    padding-block: 3.148vw;
  }
}
@media screen and (min-width: 1080px) {
  .access-yoyaku {
    border-radius: 10px;
    -webkit-margin-before: 85px;
            margin-block-start: 85px;
    padding-block: 34px;
  }
}

.access-yoyaku__images {
  position: absolute;
}
@media screen and (max-width: 768px) {
  .access-yoyaku__images {
    bottom: 6.4vw;
    left: -2.667vw;
    width: 35.467vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .access-yoyaku__images {
    left: -4.444vw;
    top: 1.389vw;
    width: 24.537vw;
  }
}
@media screen and (min-width: 1080px) {
  .access-yoyaku__images {
    left: -48px;
    top: 15px;
    width: 265px;
  }
}

@media screen and (max-width: 768px) {
  .access-yoyaku__contact {
    text-align: center;
  }
}

.access-yoyaku__title {
  line-height: 1.33;
}
@media screen and (max-width: 768px) {
  .access-yoyaku__title {
    font-size: 4.8vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .access-yoyaku__title {
    font-size: 2.778vw;
  }
}
@media screen and (min-width: 1080px) {
  .access-yoyaku__title {
    font-size: 30px;
  }
}

.access-yoyaku__number {
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .access-yoyaku__number {
    font-size: 6.4vw;
    -webkit-margin-before: 4vw;
            margin-block-start: 4vw;
    margin-inline: auto;
    width: 80vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .access-yoyaku__number {
    font-size: 3.889vw;
    -webkit-margin-before: 1.852vw;
            margin-block-start: 1.852vw;
  }
}
@media screen and (min-width: 1080px) {
  .access-yoyaku__number {
    font-size: 42px;
    -webkit-margin-before: 20px;
            margin-block-start: 20px;
  }
}

@media screen and (max-width: 768px) {
  .access-yoyaku__number-btn {
    background: url(../images/common/icon_tel.svg) no-repeat rgb(238, 0, 68);
    background-position: 8.667vw 50%;
    background-size: 8.591vw auto;
    border-radius: 100vw;
    box-shadow: 0.667vw 0.667vw 0.667vw rgba(102, 102, 102, 0.3);
    color: #fff;
    display: block;
    padding-block: 3.333vw;
    text-indent: 11.333vw;
  }
}
@media screen and (max-width: 768px) and (any-hover: hover) {
  .access-yoyaku__number-btn:hover {
    opacity: 0.8;
  }
}
@media screen and (min-width: 769px) {
  .access-yoyaku__number-btn {
    color: rgb(12, 173, 100);
  }
}
@media screen and (min-width: 769px) and (any-hover: hover) {
  .access-yoyaku__number-btn:hover {
    cursor: text;
  }
}

@media screen and (max-width: 768px) {
  .access-yoyaku__notes {
    font-size: 3.733vw;
    line-height: 1.64;
    -webkit-margin-before: 4vw;
            margin-block-start: 4vw;
    margin-inline: auto 3.2vw;
    width: 50.933vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .access-yoyaku__notes {
    font-size: 1.852vw;
    line-height: 1.75;
    -webkit-margin-before: 1.852vw;
            margin-block-start: 1.852vw;
  }
}
@media screen and (min-width: 1080px) {
  .access-yoyaku__notes {
    font-size: 20px;
    line-height: 1.75;
    -webkit-margin-before: 20px;
            margin-block-start: 20px;
  }
}

.privacy {
  color: #333;
}
@media screen and (min-width: 769px) {
  .privacy {
    background: rgba(228, 250, 200, 0.5);
  }
}

@media screen and (max-width: 768px) {
  .privacy__inner {
    padding-block: 16vw 12vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .privacy__inner {
    padding-block: 9.259vw;
  }
}
@media screen and (min-width: 1080px) {
  .privacy__inner {
    padding-block: 100px;
  }
}

@media screen and (min-width: 769px) {
  .privacy__box {
    background: #fff;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .privacy__box {
    padding-block: 5.926vw;
    padding-inline: 5.556vw;
  }
}
@media screen and (min-width: 1080px) {
  .privacy__box {
    padding-block: 64px;
    padding-inline: 60px;
  }
}

.privacy__title {
  border: solid rgb(238, 0, 68);
  color: rgb(238, 0, 68);
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .privacy__title {
    border-width: 1px 0;
    font-size: 5.067vw;
    margin-inline: auto;
    padding-block: 1.733vw;
    width: 89.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .privacy__title {
    border-width: 3px 0;
    font-size: 3.333vw;
    padding-block: 1.528vw;
  }
}
@media screen and (min-width: 1080px) {
  .privacy__title {
    border-width: 3px 0;
    font-size: 36px;
    padding-block: 16.5px;
  }
}

@media screen and (max-width: 768px) {
  .privacy__intro {
    -webkit-margin-before: 4vw;
            margin-block-start: 4vw;
    margin-inline: auto;
    width: 81.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .privacy__intro {
    -webkit-margin-before: 3.704vw;
            margin-block-start: 3.704vw;
  }
}
@media screen and (min-width: 1080px) {
  .privacy__intro {
    -webkit-margin-before: 40px;
            margin-block-start: 40px;
  }
}

@media screen and (max-width: 768px) {
  .privacy__intro-title {
    font-size: 4.533vw;
    line-height: 1.35;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .privacy__intro-title {
    font-size: 2.593vw;
    line-height: 1.357;
  }
}
@media screen and (min-width: 1080px) {
  .privacy__intro-title {
    font-size: 28px;
    line-height: 1.357;
  }
}

@media screen and (max-width: 768px) {
  .privacy__intro-text {
    font-size: 3.733vw;
    line-height: 1.64;
    -webkit-margin-before: 4vw;
            margin-block-start: 4vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .privacy__intro-text {
    font-size: 1.852vw;
    line-height: 1.75;
    -webkit-margin-before: 2.778vw;
            margin-block-start: 2.778vw;
  }
}
@media screen and (min-width: 1080px) {
  .privacy__intro-text {
    font-size: 20px;
    line-height: 1.75;
    -webkit-margin-before: 30px;
            margin-block-start: 30px;
  }
}

@media screen and (max-width: 768px) {
  .p-access__desc-sub-title {
    border-bottom: 0.8vw solid #ccc;
    display: inline-block;
    -webkit-padding-after: 2.133vw;
            padding-block-end: 2.133vw;
    padding-inline: 0.5em;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-access__desc-sub-title {
    font-size: 1.852vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-access__desc-sub-title {
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  .privacy__contents {
    margin-inline: auto;
    width: 89.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .privacy__contents {
    -webkit-margin-before: 4.63vw;
            margin-block-start: 4.63vw;
  }
}
@media screen and (min-width: 1080px) {
  .privacy__contents {
    -webkit-margin-before: 50px;
            margin-block-start: 50px;
  }
}

@media screen and (max-width: 768px) {
  .privacy__section {
    -webkit-margin-before: 9.333vw;
            margin-block-start: 9.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .privacy__section {
    -webkit-margin-before: 3.333vw;
            margin-block-start: 3.333vw;
  }
}
@media screen and (min-width: 1080px) {
  .privacy__section {
    -webkit-margin-before: 36px;
            margin-block-start: 36px;
  }
}

.privacy__section-title {
  border-bottom: 1px solid #333;
}
@media screen and (max-width: 768px) {
  .privacy__section-title {
    font-size: 5.333vw;
    -webkit-padding-after: 2.667vw;
            padding-block-end: 2.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .privacy__section-title {
    font-size: 2.593vw;
    -webkit-padding-after: 1.667vw;
            padding-block-end: 1.667vw;
  }
}
@media screen and (min-width: 1080px) {
  .privacy__section-title {
    font-size: 28px;
    -webkit-padding-after: 18px;
            padding-block-end: 18px;
  }
}
.privacy__section-title::before {
  color: rgb(238, 0, 68);
  content: "・";
}

.privacy__section-text {
  text-indent: 1em;
}
@media screen and (max-width: 768px) {
  .privacy__section-text {
    font-size: 3.733vw;
    line-height: 1.64;
    -webkit-margin-before: 3.467vw;
            margin-block-start: 3.467vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .privacy__section-text {
    font-size: 1.852vw;
    line-height: 1.75;
    -webkit-margin-before: 1.667vw;
            margin-block-start: 1.667vw;
  }
}
@media screen and (min-width: 1080px) {
  .privacy__section-text {
    font-size: 20px;
    line-height: 1.75;
    -webkit-margin-before: 18px;
            margin-block-start: 18px;
  }
}

@media screen and (max-width: 768px) {
  .yubinkyoku__inner {
    padding-block: 16vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .yubinkyoku__inner {
    padding-block: 7.407vw 9.259vw;
  }
}
@media screen and (min-width: 1080px) {
  .yubinkyoku__inner {
    padding-block: 80px 100px;
  }
}

.yubinkyoku__title {
  color: var(--color-yubinkyoku-primay);
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .yubinkyoku__title {
    font-size: 5.333vw;
    -webkit-padding-end: 0.667vw;
            padding-inline-end: 0.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .yubinkyoku__title {
    font-size: 3.148vw;
    -webkit-padding-end: 2.963vw;
            padding-inline-end: 2.963vw;
  }
}
@media screen and (min-width: 1080px) {
  .yubinkyoku__title {
    font-size: 34px;
    -webkit-padding-end: 32px;
            padding-inline-end: 32px;
  }
}

.yubinkyoku__title-icon {
  display: inline-block;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .yubinkyoku__title-icon {
    -webkit-margin-end: 2.667vw;
            margin-inline-end: 2.667vw;
    width: 8vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .yubinkyoku__title-icon {
    -webkit-margin-end: 1.111vw;
            margin-inline-end: 1.111vw;
    width: 4.63vw;
  }
}
@media screen and (min-width: 1080px) {
  .yubinkyoku__title-icon {
    -webkit-margin-end: 12px;
            margin-inline-end: 12px;
    width: 50px;
  }
}

.yubinkyoku__text {
  letter-spacing: 0.04em;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .yubinkyoku__text {
    line-height: 1.75;
    -webkit-margin-before: 3.333vw;
            margin-block-start: 3.333vw;
    width: 81.333vw;
  }
}
@media screen and (min-width: 769px) {
  .yubinkyoku__text {
    line-height: 1.667;
    width: 57%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .yubinkyoku__text {
    -webkit-margin-before: 1.852vw;
            margin-block-start: 1.852vw;
  }
}
@media screen and (min-width: 1080px) {
  .yubinkyoku__text {
    -webkit-margin-before: 20px;
            margin-block-start: 20px;
  }
}

.yubinkyoku-search {
  background: #eaf3f6;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .yubinkyoku-search {
    border-radius: 2.667vw;
    -webkit-margin-before: 6.667vw;
            margin-block-start: 6.667vw;
    padding-block: 8vw;
    padding-inline: 5.333vw;
    width: 89.333vw;
  }
}
@media screen and (min-width: 769px) {
  .yubinkyoku-search {
    display: grid;
    padding-inline: 9%;
    width: 90%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .yubinkyoku-search {
    border-radius: 1.852vw;
    gap: 0.926vw;
    grid-template-columns: 1fr 47.222vw;
    -webkit-margin-before: 2.315vw;
            margin-block-start: 2.315vw;
    padding-block: 3.704vw;
  }
}
@media screen and (min-width: 1080px) {
  .yubinkyoku-search {
    border-radius: 20px;
    gap: 10px;
    grid-template-columns: 1fr 510px;
    -webkit-margin-before: 25px;
            margin-block-start: 25px;
    padding-block: 40px;
  }
}

.yubinkyoku-search__bottom {
  display: grid;
}
@media screen and (max-width: 768px) {
  .yubinkyoku-search__bottom {
    grid-template-columns: 1fr 10.667vw;
    -webkit-margin-before: 2.667vw;
            margin-block-start: 2.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .yubinkyoku-search__bottom {
    grid-template-columns: 1fr 9.259vw;
  }
}
@media screen and (min-width: 1080px) {
  .yubinkyoku-search__bottom {
    grid-template-columns: 1fr 100px;
  }
}

.yubinkyoku-search__select,
.yubinkyoku-search__input {
  background: #fff;
  color: #666;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .yubinkyoku-search__select,
  .yubinkyoku-search__input {
    font-size: 2.933vw;
    padding-block: 2.533vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .yubinkyoku-search__select,
  .yubinkyoku-search__input {
    font-size: 1.481vw;
    padding-block: 0.926vw;
  }
}
@media screen and (min-width: 1080px) {
  .yubinkyoku-search__select,
  .yubinkyoku-search__input {
    font-size: 16px;
    padding-block: 10px;
  }
}

.yubinkyoku-search__select {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2020%2020%22%3E%20%3Cpath%20fill%3D%22%230b2a3a%22%20d%3D%22M2.08%204.67%200%206.74l9.53%209.53L20%205.8l-2.08-2.07-8.39%208.39z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  border: 1px solid #0b2a3a;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .yubinkyoku-search__select {
    background-position: 97% 50%;
    background-size: 2.667vw auto;
    padding-inline: 3.733vw 7.333vw;
    width: 100%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .yubinkyoku-search__select {
    background-position: 93.4% 50%;
    background-size: 1.111vw auto;
    padding-inline: 1.389vw 2.778vw;
  }
}
@media screen and (min-width: 1080px) {
  .yubinkyoku-search__select {
    background-position: 93.4% 50%;
    background-size: 12px auto;
    padding-inline: 15px 30px;
  }
}

.yubinkyoku-search__input {
  border: 1px solid #0b2a3a;
}
@media screen and (max-width: 768px) {
  .yubinkyoku-search__input {
    padding-inline: 3.733vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .yubinkyoku-search__input {
    padding-inline: 1.389vw;
  }
}
@media screen and (min-width: 1080px) {
  .yubinkyoku-search__input {
    padding-inline: 15px;
  }
}

.yubinkyoku-search__btn {
  background: #0b2a3a;
  color: #fff;
  cursor: pointer;
  display: grid;
  place-content: center;
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .yubinkyoku-search__btn {
    gap: 0.556vw;
    grid-template-columns: 1.852vw 3.148vw;
  }
}
@media screen and (min-width: 1080px) {
  .yubinkyoku-search__btn {
    gap: 6px;
    grid-template-columns: 20px 34px;
  }
}
@media (any-hover: hover) {
  .yubinkyoku-search__btn:hover {
    opacity: 0.8;
  }
}

@media screen and (max-width: 768px) {
  .yubinkyoku-search__btn-label {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .yubinkyoku-search__btn-label {
    font-size: 1.481vw;
  }
}
@media screen and (min-width: 1080px) {
  .yubinkyoku-search__btn-label {
    font-size: 16px;
  }
}

.yubinkyoku-search__btn-icon {
  fill: #fff;
}
@media screen and (max-width: 768px) {
  .yubinkyoku-search__btn-icon {
    width: 4vw;
  }
}
@media screen and (min-width: 769px) {
  .yubinkyoku-search__btn-icon {
    width: 100%;
  }
}

.yubinkyoku-results {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .yubinkyoku-results {
    -webkit-margin-before: 11.333vw;
            margin-block-start: 11.333vw;
    width: 89.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .yubinkyoku-results {
    -webkit-margin-before: 5.093vw;
            margin-block-start: 5.093vw;
    width: 84%;
  }
}
@media screen and (min-width: 1080px) {
  .yubinkyoku-results {
    -webkit-margin-before: 55px;
            margin-block-start: 55px;
    width: 84%;
  }
}

.yubinkyoku-results__error {
  color: red;
}

.yubinkyoku-results__count {
  border-bottom: 1px solid var(--color-font);
}
@media screen and (max-width: 768px) {
  .yubinkyoku-results__count {
    font-size: 3.467vw;
    -webkit-padding-after: 2vw;
            padding-block-end: 2vw;
    -webkit-padding-start: 1.333vw;
            padding-inline-start: 1.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .yubinkyoku-results__count {
    -webkit-padding-after: 0.926vw;
            padding-block-end: 0.926vw;
    -webkit-padding-start: 0.926vw;
            padding-inline-start: 0.926vw;
  }
}
@media screen and (min-width: 1080px) {
  .yubinkyoku-results__count {
    -webkit-padding-after: 10px;
            padding-block-end: 10px;
    -webkit-padding-start: 10px;
            padding-inline-start: 10px;
  }
}

@media screen and (max-width: 768px) {
  .yubinkyoku-results__list {
    -webkit-margin-before: 1.333vw;
            margin-block-start: 1.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .yubinkyoku-results__list {
    -webkit-margin-before: 1.852vw;
            margin-block-start: 1.852vw;
  }
}
@media screen and (min-width: 1080px) {
  .yubinkyoku-results__list {
    -webkit-margin-before: 20px;
            margin-block-start: 20px;
  }
}

@media screen and (max-width: 768px) {
  .yubinkyoku-results__item {
    padding-block: 2.667vw;
    padding-inline: 1.333vw;
  }
}
@media screen and (min-width: 769px) {
  .yubinkyoku-results__item {
    align-items: center;
    display: flex;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .yubinkyoku-results__item {
    gap: 0.926vw;
    padding-block: 1.852vw;
    -webkit-padding-start: 0.926vw;
            padding-inline-start: 0.926vw;
  }
}
@media screen and (min-width: 1080px) {
  .yubinkyoku-results__item {
    gap: 10px;
    padding-block: 20px;
    -webkit-padding-start: 10px;
            padding-inline-start: 10px;
  }
}
.yubinkyoku-results__item:not(:last-child) {
  border-bottom: 1px dashed #808080;
}

.yubinkyoku-results__item-name {
  color: var(--color-strong);
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .yubinkyoku-results__item-name {
    font-size: 1.481vw;
    width: 23.148vw;
  }
}
@media screen and (min-width: 1080px) {
  .yubinkyoku-results__item-name {
    font-size: 16px;
    width: 250px;
  }
}

.yubinkyoku-results__item-address {
  color: var(--color-strong);
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .yubinkyoku-results__item-address {
    -webkit-margin-before: 2vw;
            margin-block-start: 2vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .yubinkyoku-results__item-address {
    font-size: 1.481vw;
    width: 24.074vw;
  }
}
@media screen and (min-width: 1080px) {
  .yubinkyoku-results__item-address {
    font-size: 16px;
    width: 260px;
  }
}

.yubinkyoku-results__item-btns {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .yubinkyoku-results__item-btns {
    -webkit-margin-before: 3.333vw;
            margin-block-start: 3.333vw;
  }
}
@media screen and (min-width: 769px) {
  .yubinkyoku-results__item-btns {
    -webkit-margin-start: auto;
            margin-inline-start: auto;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .yubinkyoku-results__item-btns {
    width: 24.074vw;
  }
}
@media screen and (min-width: 1080px) {
  .yubinkyoku-results__item-btns {
    width: 260px;
  }
}

.yubinkyoku-results__item-btn {
  border-radius: 100vw;
  border: 1px solid;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .yubinkyoku-results__item-btn {
    line-height: 2.917;
    width: 41.333vw;
  }
}
@media screen and (min-width: 769px) {
  .yubinkyoku-results__item-btn {
    line-height: 2.5;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .yubinkyoku-results__item-btn {
    font-size: 1.481vw;
    width: 11.111vw;
  }
}
@media screen and (min-width: 1080px) {
  .yubinkyoku-results__item-btn {
    font-size: 16px;
    width: 120px;
  }
}

.yubinkyoku-results__item-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .yubinkyoku-results__item-arrow {
    right: 2.667vw;
    width: 2.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .yubinkyoku-results__item-arrow {
    right: 0.926vw;
    width: 0.926vw;
  }
}
@media screen and (min-width: 1080px) {
  .yubinkyoku-results__item-arrow {
    right: 10px;
    width: 10px;
  }
}

.yubinkyoku-results__item-btn--more {
  background: #fff;
  border-color: var(--color-yubinkyoku-primay);
  color: #666;
}
.yubinkyoku-results__item-btn--more .yubinkyoku-results__item-arrow {
  fill: #dc3232;
}
@media (any-hover: hover) {
  .yubinkyoku-results__item-btn--more:hover {
    background: var(--color-yubinkyoku-primay);
    color: #fff;
  }
  .yubinkyoku-results__item-btn--more:hover .yubinkyoku-results__item-arrow {
    fill: #fff;
  }
}

.yubinkyoku-results__item-btn--reserve {
  background: #dc3232;
  border-color: #dc3232;
  color: #fff;
}
.yubinkyoku-results__item-btn--reserve .yubinkyoku-results__item-arrow {
  fill: #fff;
}
@media (any-hover: hover) {
  .yubinkyoku-results__item-btn--reserve:hover {
    background: #fff;
    color: #dc3232;
  }
  .yubinkyoku-results__item-btn--reserve:hover .yubinkyoku-results__item-arrow {
    fill: #dc3232;
  }
}

.yubinkyoku-links {
  background: #eaf3f6;
}
@media screen and (max-width: 768px) {
  .yubinkyoku-links {
    padding-block: 8vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .yubinkyoku-links {
    padding-block: 3.704vw;
  }
}
@media screen and (min-width: 1080px) {
  .yubinkyoku-links {
    padding-block: 40px;
  }
}

.yubinkyoku-links__btn {
  background: #fff;
  border: 1px solid #ccc;
  color: #dc3232;
  display: block;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .yubinkyoku-links__btn {
    border-radius: 0.533vw;
    line-height: 4.167;
    -webkit-padding-start: 4.267vw;
            padding-inline-start: 4.267vw;
    width: 66.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .yubinkyoku-links__btn {
    border-radius: 4px;
    font-size: 1.481vw;
    -webkit-padding-start: 1.852vw;
            padding-inline-start: 1.852vw;
    width: 29.63vw;
  }
}
@media screen and (min-width: 1080px) {
  .yubinkyoku-links__btn {
    border-radius: 4px;
    font-size: 16px;
    -webkit-padding-start: 20px;
            padding-inline-start: 20px;
    width: 320px;
  }
}

.yubinkyoku-links__btn-label {
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .yubinkyoku-links__btn-label {
    line-height: 4.083;
  }
}
@media screen and (min-width: 769px) {
  .yubinkyoku-links__btn-label {
    line-height: 4.333;
  }
}

.yubinkyoku-links__btn-icon {
  fill: #dc3232;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .yubinkyoku-links__btn-icon {
    right: 4.533vw;
    width: 4vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .yubinkyoku-links__btn-icon {
    right: 1.759vw;
    width: 1.852vw;
  }
}
@media screen and (min-width: 1080px) {
  .yubinkyoku-links__btn-icon {
    right: 19px;
    width: 20px;
  }
}

@media (any-hover: hover) {
  .yubinkyoku-links__btn:hover {
    background: #dc3232;
    border-color: #dc3232;
    color: #fff;
  }
  .yubinkyoku-links__btn:hover .yubinkyoku-links__btn-icon {
    fill: #fff;
  }
}

@media screen and (min-width: 769px) {
  .u-only-sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .u-only-pc {
    display: none !important;
  }
}
.u-sup {
  font-size: 58.3%;
  vertical-align: super;
}

.u-color-primary {
  color: var(--color-primary);
}

.u-color-secondary {
  color: var(--color-secondary);
}

.u-color-tertiary {
  color: var(--color-tertiary);
}

.u-color-quaternary {
  color: var(--color-quaternary);
}

.u-color-strong {
  color: var(--color-strong);
}

.u-color-yellow {
  color: var(--color-yellow);
}

.u-color-red {
  color: var(--color-red);
}

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

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

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

.u-font-notoSerif {
  font-family: var(--font-NotoSerifJP);
}

.u-fw900 {
  font-weight: 900 !important;
}

.u-fw700 {
  font-weight: 700 !important;
}

.u-fw600 {
  font-weight: 600 !important;
}

.u-fw500 {
  font-weight: 500 !important;
}

.u-fw400 {
  font-weight: 400 !important;
}

.u-fw300 {
  font-weight: 300 !important;
}

.u-fz80 {
  font-size: 0.8em;
}

.u-fz90 {
  font-size: 0.9em;
}/*# sourceMappingURL=style.css.map */