@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;900&display=swap");
:root {
  --color-primary: #28497f;
  --color-secondary: #ff5722;
  --color-primary-light: #ffeee9;
  --color-bg-base: #ffffff;
  --color-bg-muted: #ffeee9;
  --color-text: #28497f;
  --color-border: #dddddd;
  --fontsize-base: 1rem;
  --fontsize-s: calc(var(--fontsize-base) * 0.8);
  --fontsize-m: var(--fontsize-base);
  --fontsize-l: calc(var(--fontsize-m) * 1.375);
  --fontsize-xl: calc(var(--fontsize-l) * 1.454545);
  --fontsize-xxl: calc(var(--fontsize-xl) * 1.1875);
  --font-gothic:
    "Zen Kaku Gothic New", "YuGothic", "游ゴシック",
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  --font-mincho:
    "EB Garamond", "Zen Old Mincho", "YuMincho", "Yu Mincho", serif;
  --font-marugothic:
    "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro",
    "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
  --font-base: var(--font-gothic);
  --radius-sm: 4px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --global-navi-position: flex-end;
  --slide-index: 1;
  --menu-index: 2;
  --hamburger-index: 3;
}
* {
  word-break: break-all;
}
body {
  color: var(--color-text);
  background-color: var(--color-bg-base);
  font-family: var(--font-base);
  letter-spacing: 0.05em;
  font-size: var(--fontsize-m);
  line-height: 1.875;
  overflow-wrap: break-word;
  word-break: normal;
}
body.is-active {
  overflow: hidden;
}
a {
  color: var(--color-primary);
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}
.article-area a[target="_blank"]::after,
.blog ul a[target="_blank"]::after,
.news ul a[target="_blank"]::after,
.editorArea a[target="_blank"]::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 13px;
  margin: 0 4px 4px 4px;
  background-image: url("https://assets.toriaez.jp/thp2/pc/images/259/icon-external-link.svg");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}
img,
iframe {
  max-width: 100%;
}
table {
  border-collapse: collapse;
}
.editorArea th,
.profile-info th,
.access-info th,
.contact-info th,
.editorArea td,
.profile-info td,
.access-info td,
.contact-info td {
  border: 1px var(--color-border) solid;
}
.editorArea table,
.profile-info table,
.access-info table,
.contact-info table {
  margin: 2em 0;
}
.editorArea th,
.profile-info th,
.access-info th,
.contact-info th,
.editorArea td,
.profile-info td,
.access-info td,
.contact-info td {
  padding: 0.8em;
}
.editorArea th,
.profile-info th,
.access-info th,
.contact-info th {
  color: #fff;
  background-color: var(--color-primary);
}
header {
  padding: 0 20px;
}
.head-navi__wrapper {
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}
.site-title {
  font-size: var(--fontsize-l);
  line-height: 1.3;
  flex: 1;
}
.site-title a {
  color: var(--color-text);
  text-decoration: none;
}
.hamburger-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 8px;
  z-index: var(--hamburger-index);
  position: inherit;
  padding-top: 3px;
}
.hamburger-menu__line,
.hamburger-menu::before,
.hamburger-menu::after {
  content: "";
  width: 30px;
  height: 2px;
  background-color: var(--color-primary);
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.hamburger-menu__line.is-active {
  opacity: 0;
}
.hamburger-menu.is-active::before {
  background-color: #fff;
  transform: translateY(10px) rotate(45deg);
}
.hamburger-menu.is-active::after {
  background-color: #fff;
  transform: translateY(-10px) rotate(-45deg);
}
.head-navi {
  display: none;
}
.global-navi__wrapper {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  z-index: var(--menu-index);
  padding: 80px 40px 30px;
  transition: right 0.3s ease;
  box-sizing: border-box;
  height: 100dvh;
  overflow-y: auto;
}
.global-navi ul.global-navi__parent:nth-child(2),
.global-navi div.global-navi__parent {
  display: none;
}
.global-navi__parent {
  list-style: none;
  margin: 0;
  padding: 0;
}
.global-navi__parent--bottom {
  margin-top: 30px;
  border-top: 1px solid #fff;
  padding-top: 10px;
  padding-bottom: 10px;
}
.global-navi__child {
  list-style: none;
  padding: 0 0 0 20px;
}
.global-navi__link,
.global-navi__blog,
.global-navi__reservation,
.global-navi__sales {
  color: #fff;
  text-decoration: none;
  font-size: var(--fontsize-m);
  padding: 6px 0;
  display: inline-block;
}
.global-navi__link--child {
  font-size: var(--fontsize-s);
  padding: 4px 0;
  display: inline-block;
  z-index: var(--menu-index);
  color: #fff;
  text-decoration: none;
}
.global-navi-sns {
  list-style: none;
  padding: 20px 20px 0;
  margin: 10px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.global-navi-qrcode {
  text-align: center;
  padding-top: 20px;
}
.global-navi-qrcode img {
  background-color: #fff;
  padding: 10px;
}
.slide-image {
  position: relative;
}
.slide-image.has-slide-text {
  margin-bottom: 80px;
}
.slide-image__visual {
  line-height: 0;
}
.slide-image__visual-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.slide-image__visual-list li {
  position: relative;
  height: calc(100vw * 5 / 12);
}
.slide-image__visual img {
  margin: 0;
  width: 100%;
  position: absolute;
}
.slide-image__text {
  position: absolute;
  bottom: -50px;
  z-index: var(--slide-index);
}
.slide-image__text p {
  font-family: var(--font-base);
  font-size: var(--fontsize-m);
  line-height: 1.3;
  background-color: var(--color-primary);
  color: #fff;
  display: table;
  padding: 0.5em 1em;
  margin: 0 0 1px 0;
}
.bx-viewport {
  height: calc(100vw * 5 / 12) !important;
}
.bx-wrapper {
  margin-bottom: 0 !important;
}
.bx-wrapper .bx-pager.bx-default-pager {
  display: none;
  text-align: end;
  position: absolute;
  bottom: 10px;
  right: 10px;
  cursor: pointer;
  max-width: 300px;
  width: inherit !important;
}
.bx-wrapper .bx-pager.bx-default-pager a {
  background: var(--color-primary-light);
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  margin-right: 5px;
  width: 30px;
  height: 3px;
  cursor: pointer;
  z-index: 2;
}
.bx-wrapper .bx-pager.bx-default-pager a.active {
  background-color: var(--color-primary);
}
.main-image {
  margin: 0;
}
.main-image img {
  vertical-align: bottom;
  width: 100%;
  height: calc(100vw * 5 / 12);
  object-fit: cover;
}
.site-description {
  padding: 1em 20px;
  color: var(--color-text);
  background: var(--color-primary-light);
  text-align: center;
}
.page-title {
  margin: 0;
  padding: 1em 20px;
  color: var(--color-primary);
  background-color: var(--color-primary-light);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center top;
}
h1.page-title__text {
  text-align: center;
  font-size: var(--fontsize-l);
  font-weight: normal;
  line-height: 1.3;
}
.bread-crumbs {
  display: none;
}
.article-area {
  padding: 36px 20px 0 20px;
}
.article-area h3 {
  font-size: 1.4em;
}
.article-area h4 {
  font-size: 1.3em;
}
.article-area h5 {
  font-size: 1.2em;
}
.article-area h6 {
  font-size: 1.1em;
}
#contents .article-area.empty-articles,
#eid .article-area.empty-articles {
  padding-bottom: 0;
}
#contents .empty-articles .bread-crumbs,
#eid .empty-articles .bread-crumbs {
  margin-bottom: 0;
}
.article-box {
  margin: 0 0 50px 0;
}
.article-box__title {
  display: block;
  text-align: center;
  position: relative;
  font-family: var(--font-base);
  font-weight: normal;
  font-size: var(--fontsize-l);
  line-height: 1.3;
  margin: 0 0 24px 0;
  color: var(--color-primary);
}
.article-box__text {
  margin: 0 0 20px 0;
}
.article-box__images {
  margin: 0 0 20px 0;
}
.article-box__images figure {
  display: block;
  margin: 0;
  padding: 0;
}
.article-box__images figure img {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border-radius: var(--radius-md);
}
.article-box__images figcaption {
  display: block;
  text-align: center;
  font-size: var(--fontsize-s);
  font-weight: lighter;
  margin: 10px 0 0 0;
  padding: 0;
}
.box-type--2row {
  margin: 0 0 50px 0;
}
.box-type__title--learge {
  display: block;
  text-align: center;
  position: relative;
  font-family: var(--font-base);
  font-weight: normal;
  line-height: 1.3;
  margin: 0 0 32px 0;
  color: var(--color-primary);
}
.box-type__entry {
  margin: 0 0 40px 0;
}
.box-type__title--small {
  font-size: var(--fontsize-m);
  font-weight: normal;
  color: var(--color-primary);
  margin: 0 0 10px 0;
}
.box-type__images {
  margin: 0 0 10px 0;
  width: 100%;
}
.box-type__images figure {
  display: block;
  margin: 0;
  padding: 0;
}
.box-type__images figure img {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border-radius: var(--radius-md);
}
.box-type__button-area {
  text-align: center;
  margin: 16px 0 0 0;
}
.box-type__button-link {
  display: inline-block;
  padding: 0.6em 3em;
  background: var(--color-primary);
  color: #ffffff;
  text-decoration: none;
  font-size: var(--fontsize-s);
  transition: opacity 0.3s ease;
  border-radius: var(--radius-md);
}
.box-type__button-link:hover {
  opacity: 0.8;
}
.box-type--3row {
  margin: 0 0 50px 0;
}
.box-type--3row .box-type__content-wrap {
  width: 100%;
}
.box-type--3row .box-type__entry {
  border: 1px #ddd solid;
  padding: 10px 16px;
  margin: 0 0 10px 0;
}
.box-type--3row .box-type__title--small {
  text-align: center;
}
.box-type--3row .box-type__button-area {
  margin: 16px 0;
  text-align: center;
}
.box-type--button {
  margin: 0 0 50px 0;
}
.news,
.blog {
  background: var(--color-bg-muted);
  margin: 0;
  padding: 20px 20px;
  border-top: 1px var(--color-border) solid;
}
.news__title,
.blog__title {
  text-align: center;
  color: var(--color-primary);
  font-size: var(--fontsize-l);
  font-weight: bold;
  margin: 0 0 20px 0;
  padding: 0;
}
.news__button-area,
.blog__button-area {
  text-align: center;
  margin: 16px 0 0 0;
}
.news__button-link,
.blog__button-link {
  display: inline-block;
  border: 1px var(--color-primary) solid;
  padding: 0.6em 3em;
  color: var(--color-primary);
  text-decoration: none;
  font-size: var(--fontsize-s);
  transition: opacity 0.3s ease;
  border-radius: var(--radius-md);
}
.news__button-link:hover,
.blog__button-link:hover {
  opacity: 0.8;
  cursor: pointer;
}
.news__list,
.blog__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.news__item,
.blog__item {
  display: flex;
  padding: 6px 0;
  align-items: baseline;
}
.news__date,
.blog__date {
  width: 100px;
  flex-shrink: 0;
}
.news__text,
.blog__text {
  flex: 1;
  line-height: 1.5;
}
.greeting {
  margin-bottom: 30px;
}
.access-container {
  max-width: calc(1320px + (20px * 2));
  margin: 0 auto;
  width: 100%;
  padding: 40px 20px;
  box-sizing: border-box;
}
.profile-info,
.access-info,
.contact-info {
  width: 100%;
  margin-bottom: 60px;
}
.profile-info tr,
.access-info tr,
.contact-info tr {
  display: flex;
  flex-direction: column;
}
.profile-info th,
.access-info th,
.contact-info th,
.profile-info td,
.access-info td,
.contact-info td {
  margin-top: -1px;
}
.access iframe {
  width: calc(1320px + (20px * 2));
  max-width: 100%;
  max-height: 740px;
  height: calc((100% / 16) * 9);
  aspect-ratio: 16 / 9;
  border: 0;
}
.contact-info input[type="text"],
.contact-info textarea {
  padding: 0.5em;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  box-sizing: border-box;
  outline: none;
}
.contact-info input[type="radio"],
.contact-info .label_inline {
  cursor: pointer;
}
.contact-info .input-text,
.contact-info textarea {
  width: 100%;
}
.contact-info .input-age {
  width: 40%;
  margin-right: 20px;
}
.button {
  display: inline-block;
  padding: 1em 3em;
  text-decoration: none;
  transition: opacity 0.3s ease;
  font-size: var(--fontsize-l);
  border: none;
  min-width: 264px;
}
.button:hover {
  opacity: 0.8;
  cursor: pointer;
}
.button--primary {
  background: var(--color-primary);
  color: #ffffff;
}
.button--reset {
  background: #bbb;
  color: #ffffff;
}
.btn-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}
#contact .captcha {
  box-sizing: border-box;
  padding: 30px 20px;
  border: 1px solid var(--color-border);
}
#contact #captchaInput {
  padding: 8px 15px;
  border: 2px solid #ddd;
  outline: none;
}
.free-space {
  padding: 30px 20px;
}
.free-space a {
  color: var(--color-text);
}
.snsBtn {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}
.snsBtn li {
  margin-right: 20px;
}
.snsBtn li:hover {
  opacity: 0.7;
}
.snsBtn li:last-child {
  margin-right: 0;
}
.main {
  padding: 30px 20px 20px;
  box-sizing: border-box;
}
.footer {
  padding: 20px;
}
.footer .snsBtn {
  margin: 0 0 24px 0;
}
.footer .snsBtn li {
  margin-right: 25px;
}
.footer .snsBtn li:last-child {
  margin-right: 0;
}
.footer .snsBtn a {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  border: 1px solid #666;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .qr-code {
  text-align: center;
}
.footer .copyright {
  text-align: center;
  font-style: normal;
  font-size: var(--fontsize-s);
  padding: 24px 0;
}
@media (max-width: 779px) {
  .box-type--3row .box-type__content-wrap {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .box-type--3row .box-type__images {
    flex: 1;
    max-width: calc(100% / 2.8);
    margin: 0;
  }
  .box-type--3row .box-type__text {
    flex: 1.8;
    max-width: 100%;
    margin: 0;
  }
  .box-type__images:has(img[src=""]) {
    display: none;
  }
  .box-type__images figure img {
    border-radius: var(--radius-sm);
  }
  .profile-info th,
  .access-info th,
  .contact-info th {
    text-align: left;
  }
  .global-navi ul.global-navi__parent:nth-child(2),
  .global-navi div.global-navi__parent {
    display: block;
  }
  .global-navi__wrapper.is-active {
    right: 0;
    background: var(--color-primary);
  }
  .global-navi__wrapper.is-active a {
    color: #fff;
  }
}
@media (min-width: 860px) {
  body {
    font-size: var(--fontsize-m);
  }
  header {
    position: relative;
    z-index: 10;
    padding: 0 0;
  }
  .site-title {
    padding: 16px 0;
    display: inline-block;
  }
  .site-title img {
    vertical-align: middle;
  }
  .head-navi__wrapper {
    min-height: 70px;
    padding: 10px 30px 0 30px;
    align-items: center;
  }
  .site-title {
    font-size: var(--fontsize-xl);
    max-width: 50%;
  }
  .head-navi {
    display: block;
    max-width: 600px;
    flex: 1;
  }
  .head-navi ul {
    display: flex;
    justify-content: end;
    gap: 0 30px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .head-navi__link a {
    text-decoration: none;
    color: var(--color-text);
    font-size: var(--fontsize-m);
  }
  .head-navi__link a:hover {
    color: var(--color-primary);
  }
  .head-navi__link {
    display: flex;
    align-items: center;
    min-height: 70px;
  }
  a.head-navi__contact {
    display: flex;
    align-items: center;
    padding: 0.3em 0.8em;
    background: var(--color-primary);
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
    box-sizing: border-box;
    margin-right: -10px;
    border-radius: var(--radius-sm);
  }
  a.head-navi__contact:hover {
    color: #ffffff;
    opacity: 0.8;
  }
  a.head-navi__profile,
  a.head-navi__access {
    display: inline-block;
    text-decoration: none;
    color: var(--color-text);
  }
  .hamburger-menu {
    display: none;
  }
  .global-navi__wrapper {
    position: relative;
    height: inherit;
    right: inherit;
    padding: 0;
    overflow-y: inherit;
  }
  .global-navi {
    position: relative;
    max-width: 100%;
    z-index: 0;
  }
  .global-navi__parent {
    display: flex;
    justify-content: var(--global-navi-position);
    flex-wrap: wrap;
    gap: 0 30px;
    list-style: none;
    margin: 0;
    padding: 0 30px;
  }
  .global-navi__parent li {
    position: relative;
  }
  .global-navi__link,
  .global-navi__blog,
  .global-navi__reservation,
  .global-navi__sales {
    display: flex;
    align-items: center;
    height: 70px;
    padding: 0;
    text-decoration: none;
    color: var(--color-text);
    font-size: var(--fontsize-m);
    box-sizing: border-box;
  }
  .global-navi__link:hover,
  .global-navi__blog:hover,
  .global-navi__reservation:hover,
  .global-navi__sales:hover {
    color: var(--color-primary);
  }
  .global-navi__child {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #ddd;
    padding: 0;
    margin: 0;
    list-style: none;
    min-width: 200px;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition:
      opacity 0.3s ease,
      transform 0.3s ease;
    z-index: 9999;
  }
  .global-navi__parent > li:hover .global-navi__child {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .global-navi__child li a {
    display: block;
    padding: 10px 16px;
    background: #fff;
    color: var(--color-primary);
    text-decoration: none;
    border-bottom: 1px solid #ddd;
    transition:
      background-color 0.3s ease,
      color 0.3s ease;
    height: auto;
  }
  .global-navi__child li a:hover {
    background: var(--color-primary);
    color: #fff;
  }
  .slide-image {
    position: relative;
    margin: 0;
    padding: 0;
  }
  .bx-wrapper .bx-pager.bx-default-pager {
    display: block;
  }
  .site-description__text {
    margin: 0 auto;
    padding: 30px 0;
  }
  .page-title {
    padding: 2em 20px;
  }
  h1.page-title__text {
    font-size: var(--fontsize-xxl);
  }
  .bread-crumbs {
    display: block;
    padding: 15px 40px;
  }
  #contents .bread-crumbs,
  #eid .bread-crumbs {
    margin: -80px -40px 80px 0;
  }
  .bread-crumbs__list {
    text-align: right;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .bread-crumbs__list li {
    display: inline;
    font-size: var(--fontsize-s);
  }
  .bread-crumbs__list li::after {
    content: "｜";
    padding: 0 0.4em;
  }
  .bread-crumbs__list li:last-child::after {
    content: "";
    padding: 0 0;
  }
  .article-area {
    position: relative;
    z-index: 0;
    padding: 80px 40px 0 40px;
  }
  .article-box {
    width: 780px;
    margin: 0 auto 140px auto;
  }
  .article-box__title {
    font-size: var(--fontsize-xl);
    margin: 0 0 40px 0;
  }
  .article-box__title::after {
    bottom: -20px;
    width: 86px;
    height: 3px;
  }
  .article-box__text {
    margin: 0 0 36px 0;
  }
  .article-box__images {
    margin: 0 0 36px 0;
  }
  .article-box__images figcaption {
    margin: 12px 0 0 0;
  }
  .box-type--2row {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto 100px auto;
  }
  .box-type--2row .box-type__wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
  }
  .box-type--2row .box-type__entry {
    width: calc(50% - 20px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .box-type__title--learge {
    font-size: var(--fontsize-xl);
    margin: 0 0 60px 0;
  }
  .box-type__title--learge::after {
    bottom: -20px;
    width: 86px;
    height: 3px;
  }
  .box-type__title--small {
    text-align: center;
    font-size: var(--fontsize-l);
    margin: 0 auto 16px auto;
  }
  .box-type__button-area {
    margin: 36px 0 0 0;
    align-self: center;
  }
  .box-type__button-link {
    font-size: var(--fontsize-m);
  }
  .box-type--3row {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto 100px auto;
  }
  .box-type--3row .box-type__wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
  }
  .box-type--3row .box-type__entry {
    flex: 1 1 calc((100% - 40px) / 3);
    max-width: calc((100% - 40px) / 3);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: none;
    box-sizing: border-box;
    overflow: hidden;
  }
  .box-type--3row .box-type__button-area {
    margin: 36px 0 0 0;
  }
  .box-type--3row .box-type__title--small {
    font-size: var(--fontsize-l);
  }
  .box-type--button {
    width: 780px;
    margin: 0 auto 100px auto;
  }
  .news {
    padding: 36px 36px 56px 36px;
  }
  .blog {
    padding: 36px 36px 56px 36px;
  }
  .news__title,
  .blog__title {
    font-size: var(--fontsize-l);
    margin: 0 0 36px 0;
    padding: 0;
  }
  .news__button-area,
  .blog__button-area {
    text-align: center;
    margin: 36px 0 0 0;
  }
  .news__button-link,
  .blog__button-link {
    font-size: var(--fontsize-m);
  }
  .news__list,
  .blog__list {
    width: 780px;
    margin: 0 auto;
  }
  .news__item,
  .blog__item {
    display: flex;
    padding: 12px 0;
    align-items: baseline;
  }
  .news__date,
  .blog__date {
    width: 110px;
    flex-shrink: 0;
  }
  .news__text,
  .blog__text {
    flex: 1;
    line-height: 1.5;
  }
  .greeting {
    margin-bottom: 50px;
  }
  .main {
    max-width: calc(780px + (24px * 2));
    margin: 0 auto;
    width: 100%;
    padding: 80px 24px 40px;
  }
  .footer {
    padding: 50px 20px;
  }
  .profile-info,
  .access-info,
  .contact-info {
    margin-bottom: 100px;
  }
  .access-info {
    max-width: calc(780px + (24px * 2));
    margin-left: auto;
    margin-right: auto;
  }
  .profile-info tr,
  .access-info tr,
  .contact-info tr {
    flex-direction: row;
  }
  .profile-info tr th,
  .access-info tr th {
    flex: 0 0 120px;
  }
  .contact-info tr th {
    flex: 0 0 250px;
  }
  .profile-info tr td,
  .access-info tr td,
  .contact-info tr td {
    flex: 1;
  }
  .profile-info th,
  .access-info th,
  .contact-info th,
  .profile-info td,
  .access-info td,
  .contact-info td {
    margin-left: -1px;
  }
  .btn-container {
    flex-direction: row;
  }
  .free-space {
    padding: 56px 0px;
  }
  .free-space__wrapper {
    width: 780px;
    margin: 0 auto;
  }
  .page-top {
    display: block;
    width: 64px;
    height: 64px;
    border: 1px solid var(--color-primary);
    position: fixed;
    bottom: 20px;
    right: 20px;
    box-sizing: border-box;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease;
    z-index: 1000;
  }
  .page-top.show {
    opacity: 1;
    visibility: visible;
  }
  .page-top::before {
    content: "";
    position: absolute;
    top: 17px;
    left: 50%;
    transform: translateX(-0.5px);
    width: 1px;
    height: 30px;
    background-color: var(--color-primary);
  }
  .page-top::after {
    content: "";
    position: absolute;
    top: 30px;
    left: 50%;
    width: 20px;
    height: 20px;
    transform: translate(-50%, -50%) rotate(45deg);
    border-top: 1px solid var(--color-primary);
    border-left: 1px solid var(--color-primary);
    background: transparent;
  }
  .fade-in,
  .fade-in-left,
  .fade-in-right {
    opacity: 0;
    transition: all 0.6s ease-out;
    transition-delay: 0.3s;
  }
  .fade-in {
    transform: translateY(30px);
  }
  .fade-in.show {
    opacity: 1;
    transform: translateY(0);
  }
  .fade-in-left {
    transform: translateX(-30px);
  }
  .fade-in-left.show {
    opacity: 1;
    transform: translateX(0);
  }
  .fade-in-right {
    transform: translateX(30px);
  }
  .fade-in-right.show {
    opacity: 1;
    transform: translateX(0);
  }
}
.bottom-contact {
  background: var(--color-primary-light);
  background-size: cover;
  padding: 40px 30px 50px 30px;
}
.bottom-contact::before {
  content: "ご相談はお気軽に";
  font-family: var(--font-base);
  text-align: center;
  font-size: var(--fontsize-m);
  display: block;
  width: 100%;
  margin-bottom: 0.5em;
}
.bottom-contact a {
  margin-top: 30px;
  margin-bottom: 40px;
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  display: block;
  text-align: center;
  padding: 33px 50px 33px 30px;
  position: relative;
  cursor: pointer;
  letter-spacing: 0.05em;
  line-height: 1.2;
  max-width: 480px;
  font-family: var(--font-base);
  font-weight: 400;
  margin: 0 auto;
  border-radius: var(--radius-lg);
}
.bottom-contact a::after {
  content: "";
  position: absolute;
  top: 40%;
  right: 8%;
  margin: auto;
  transform: rotate(225deg);
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  width: 20px;
  height: 20px;
  transition: all 0.2s ease-in-out;
}
.bottom-contact a:hover {
  opacity: 0.8;
}
.bottom-menu {
  padding: 0 20px;
}
ul.highlight-link {
  max-width: 780px;
  width: 100%;
  margin: 0px auto 140px auto;
  padding-left: 0;
}
@media (max-width: 859px) {
  ul.highlight-link {
    margin: 0px auto 70px;
  }
}
ul.highlight-link li {
  border-bottom: 1px solid var(--color-border);
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}
.highlight-link li a {
  display: block;
  text-decoration: none;
  text-align: center;
  padding: 1em 0;
}
.highlight-link li a:hover {
  opacity: 0.7;
}
/* ここから代行サービス案件ごとの追加 */

/*共通指定*/
.article-box__title,
.box-type__title--learge,
.box-type__title--small,
.head-navi ul,
.global-navi__parent,
ul.highlight-link,
h1.page-title__text,
.bottom-contact a,
.bottom-contact::before,
.site-description__text {
  font-weight: 900;
}
a.head-navi__contact,
.bottom-contact a {
  background: var(--color-secondary);
}

/*固有ID指定*/
#fffc {
  text-align: center;
}
#fffc .article-box__text ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: fit-content;
  height: fit-content;
  margin: auto;
  padding: 0;
}
#fffc .article-box__text ul li {
  border-radius: 100px;
  background: var(--color-border);
  padding: 1em 2em;
  line-height: 1.5;
}
#fffc .article-box__text h2 {
  line-height: 1.5;
  color: var(--color-secondary);
  font-size: var(--fontsize-xl);
}
.page-256562 .article-box {
  display: flex;
  flex-direction: column;
}
.page-256562 .js-image-popup,
.page-256562 .box-type--2row .box-type__images {
  order: 1;
}
.page-256562 .article-box__title,
.page-256562 .box-type--2row .box-type__title--small {
  order: 2;
}
.page-256562 .article-box__text,
.page-256562 .box-type--2row .box-type__text {
  order: 3;
}

/*パソコンサイズ用指定*/
@media (min-width: 860px) {
  .bottom-contact a {
    font-size: 24px;
  }
  .global-navi__link:hover,
  .global-navi__blog:hover,
  .global-navi__reservation:hover,
  .global-navi__sales:hover {
    color: var(--color-secondary);
  }
  .site-description__text {
    padding: 80px 0;
  }
  .page-title {
    padding: 4em 20px;
  }
  #aqmt.article-box {
    width: 100vw;
    margin-left: -40px;
    background: var(--color-bg-muted);
    padding: 100px 0;
    text-align: center;
  }
  #aqmt.article-box > * {
    width: 780px;
    margin-left: auto;
    margin-right: auto;
  }
  #aqmt.article-box .article-box__images,
  #w6ra.article-box .article-box__images {
    margin: 0 -120px 36px -120px;
  }
  #w6ra.article-box .article-box__title {
    font-size: 48px;
  }
  #w6ra.article-box .article-box__title br {
    display: none;
  }
  #w6ra.article-box .article-box__text p {
    text-align: center;
    font-weight: 900;
    font-size: 18px;
    line-height: 2.2;
  }
  #p6n7.article-box table {
    width: 100%;
  }
}

/*スマホサイズ用指定*/
@media (max-width: 779px) {
  .bx-viewport,
  .slide-image__visual-list li {
    height: 100vw !important;
  }
  .bx-wrapper img {
    object-fit: cover;
    width: 100vw;
    height: 100vw;
  }
  .site-title a img {
    max-width: 200px;
  }
  .page-title {
    padding: 2em 20px;
  }
  .site-description__text {
    font-size: var(--fontsize-s);
    padding: 40px 0;
  }
  #fffc .article-box__text h2 {
    font-size: var(--fontsize-l);
  }
  #aqmt.article-box {
    margin-left: -20px;
    margin-right: -20px;
    background: #ffeee9;
    padding: 80px 20px;
    text-align: center;
  }
  #w6ra.article-box {
    margin: 50px 0 80px 0;
  }
  #w6ra.article-box .article-box__title {
    font-size: 32px;
    text-align: left;
  }
  #w6ra.article-box .article-box__text p {
    font-weight: 900;
    line-height: 2.2;
  }
}