@charset "UTF-8";
:root {
  --clientWidth: var(--jsClientWidth, 100vw);
  --clientHight: var(--jsClientHeight, 100vh);
  --firstClientHeight: var(--jsFirstClientHeight, 100vh);
}

@media not all and (min-width: 1000px) {
  .onlyDesktop {
    display: none !important;
  }
}

@media (min-width: 1000px) {
  .onlyMobile {
    display: none !important;
  }
}

html {
  min-width: 375px;
  overflow-y: scroll;
}

html [id]:not([id=""]) {
  scroll-margin-top: var(--header-height, 0);
}

body {
  font-family: "Times New Roman", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", Meiryo, serif;
  color: #fff;
  background-color: #8f8f8f;
}
@media not all and (min-width: 1000px) {
  body {
    --header-height: 60px;
    padding-top: 60px;
  }
}
@media (min-width: 1000px) {
  body {
    --header-height: 100px;
    padding-top: 100px;
  }
}

img {
  vertical-align: bottom;
}

a[href]:not(.-defaultHover) {
  transition: opacity 0.3s ease;
}
a[href]:not(.-defaultHover):focus {
  opacity: 0.7;
}
@media (hover: hover) and (pointer: fine) {
  a[href]:not(.-defaultHover):hover {
    opacity: 0.7;
  }
}

.navigation_main {
  grid-area: main;
}

.navigation_logo {
  grid-area: logo;
  margin-top: 0;
  margin-bottom: 0;
}

.navigation_button {
  grid-area: button;
}

.navigation_link {
  grid-area: link;
}

.navigation_link_content {
  grid-area: link_content;
  text-transform: uppercase;
}

@media not all and (min-width: 1000px) {
  .header {
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
    height: 60px;
  }
  .navigation_main {
    display: grid;
    grid-template-areas: "logo button";
    grid-template-columns: min-content auto;
    place-items: center;
    width: 100%;
    height: 60px;
    background-color: #8f8f8f;
  }
  .navigation_logo {
    margin-left: 17px;
  }
  .navigation_logo img {
    width: 119px;
    height: auto;
  }
  .navigation_button {
    position: relative;
    top: 0;
    box-sizing: border-box;
    display: block;
    justify-self: end;
    width: 44px;
    height: 44px;
    padding: 0;
    margin: 0;
    margin-right: 12px;
    text-decoration: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    cursor: pointer;
    background: none;
    background-color: transparent;
    border: none;
    border-color: transparent;
    border-style: solid;
    border-width: 12px 8px 13px;
    outline: none;
  }
  .navigation_button::before, .navigation_button::after {
    content: "";
    transition: transform 0.3s ease;
  }
  .navigation_button::before, .navigation_button::after,
  .navigation_button span {
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
  }
  .navigation_button::before {
    top: 0;
  }
  .navigation_button::after {
    top: 16px;
  }
  .navigation_button span {
    top: 8px;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    transition: opacity 0.3s linear;
  }
  body.-showMenu .navigation_button::before {
    transform: translateY(8px) rotate(-315deg);
  }
  body.-showMenu .navigation_button span {
    opacity: 0;
  }
  body.-showMenu .navigation_button::after {
    transform: translateY(-8px) rotate(315deg);
  }
  .navigation_link {
    position: fixed;
    top: 60px;
    width: 100%;
    height: calc(100% - 60px);
    overflow: auto;
    background-color: #8f8f8f;
  }
  body.useTransition .navigation_link {
    transition: visibility 0.5s linear, transform 0.5s cubic-bezier(0.65, 0.05, 0.36, 1), opacity 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
  }
  body:not(.useTransition) .navigation_link {
    transition: none;
  }
  body:not(.-showMenu) .navigation_link {
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transform: scale(0.95);
  }
  .navigation_link ul {
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    list-style-type: none;
  }
  .navigation_link_content {
    width: 300px;
    margin-right: auto;
    margin-left: auto;
    font-family: "Sorts Mill Goudy", serif;
    font-size: 20px;
    line-height: 60px;
    text-align: right;
    letter-spacing: 0.01em;
  }
  .navigation_link_content a {
    display: block;
    width: 100%;
    color: #f6f7f7;
    text-decoration: none;
  }
}
@media (min-width: 1000px) {
  .header {
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
    height: 100px;
    background-color: #8f8f8f;
  }
  .navigation {
    display: grid;
    grid-template-areas: "main link";
    grid-template-columns: min-content auto;
    align-items: end;
    justify-items: center;
    width: 100%;
    max-width: 1440px;
    height: 100px;
    margin-right: auto;
    margin-left: auto;
  }
  .navigation_button {
    display: none;
  }
  .navigation_main {
    margin-bottom: 10px;
    margin-left: 24px;
  }
  .navigation_link {
    margin-right: 24px;
    margin-bottom: 10px;
    margin-left: auto;
  }
  .navigation_link ul {
    display: flex;
    align-items: flex-end;
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    list-style-type: none;
  }
  .navigation_link_content {
    font-family: "Sorts Mill Goudy", serif;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0.076em;
  }
  .navigation_link_content li:not(:first-child) {
    margin-left: 1em;
  }
  .navigation_link_content a {
    color: #f6f7f7;
    text-decoration: none;
  }
}
.main .js-inview._fadeUp {
  transition: opacity 1s linear, transform 1s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.main .js-inview._fadeUp:not(.-inview) {
  opacity: 0;
  transform: translateY(32px);
}
.main .js-inview._fadeShadow {
  transition: box-shadow 1s linear;
}
.main .js-inview._fadeShadow:not(.-inview) {
  box-shadow: 0 0 0 transparent;
}
.main .js-inview.-imagesLoaded._fadeBlur {
  transition: filter 1s linear, opacity 1s linear;
}
.main .js-inview.-imagesLoaded._fadeBlur:not(.-inview.-imagesLoaded) {
  filter: blur(12px);
  opacity: 0;
}

.footer {
  color: white;
  text-align: center;
  background-color: #1b1b1d;
}
@media not all and (min-width: 1000px) {
  .footer {
    padding-top: 64px;
    padding-bottom: 72px;
    margin-top: 140px;
  }
}
@media (min-width: 1000px) {
  .footer {
    padding-top: 88px;
    padding-bottom: 88px;
    margin-top: 278px;
  }
}
.footer .footerInner {
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}
.footer p {
  margin-top: 0;
  margin-bottom: 0;
}
.footer a[href^="tel:"], .footer a[href^="mailto:"] {
  color: inherit;
  text-decoration: none;
}
.footer a[href^="tel:"]:focus, .footer a[href^="mailto:"]:focus {
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  .footer a[href^="tel:"]:hover, .footer a[href^="mailto:"]:hover {
    text-decoration: underline;
  }
}
.footer .logo {
  margin-bottom: 37px;
}
.footer .logo img {
  width: 245px;
  height: auto;
}
.footer .address {
  text-align: center;
}
@media not all and (min-width: 1000px) {
  .footer .address {
    font-size: 14px;
    line-height: 30px;
  }
}
@media (min-width: 1000px) {
  .footer .address {
    font-size: 18px;
    line-height: 42px;
  }
}
@media not all and (min-width: 1000px) {
  .footer .sns {
    margin-top: 24px;
    margin-bottom: 24px;
  }
}
@media (min-width: 1000px) {
  .footer .sns {
    margin-top: 32px;
    margin-bottom: 32px;
  }
}
.footer .sns img {
  width: 25px;
  height: auto;
}
.footer .copyright {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 37px;
  color: #9b9898;
  text-align: center;
  letter-spacing: 0.08em;
}

@supports (height: 100svh) {
  .page-home .mainVisual {
    height: calc(100svh - var(--header-height));
  }
}
@supports not (height: 100svh) {
  .page-home .mainVisual {
    height: calc(var(--firstClientHeight) - var(--header-height));
  }
}
.page-home .mainVisual.swiper .swiper-slide {
  mix-blend-mode: plus-lighter;
}
.page-home .mainVisual.swiper .swiper-slide img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.page-home .mainVisual.swiper .swiper-pagination {
  --swiper-pagination-bullet-horizontal-gap: 10px;
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-color: #fff;
  --swiper-pagination-bullet-inactive-color: #a1a1a1;
  bottom: 33px;
}
.page-home .main .section:first-child {
  margin-top: 100px;
}
.page-home .main .section:not(:first-child) {
  margin-top: 140px;
}
.page-home .main .section .sectionInner {
  padding-right: 10px;
  padding-left: 10px;
  overflow: hidden;
}
.page-home .main .section .section--head {
  margin-top: 0;
  margin-bottom: 43px;
  font-family: "Sorts Mill Goudy", serif;
  font-size: 50px;
  font-weight: normal;
  line-height: 60px;
  color: #b7b7b7;
  text-align: center;
  letter-spacing: 0.076em;
}
@media not all and (min-width: 1000px) {
  .page-home .main .section .twoColumn .image {
    margin-right: calc(50% - var(--clientWidth) * 0.5);
    margin-left: calc(50% - var(--clientWidth) * 0.5);
  }
  .page-home .main .section .twoColumn .image img {
    width: 100%;
    height: auto;
  }
}
@media (min-width: 1000px) {
  .page-home .main .section .twoColumn {
    display: grid;
    grid-template: "head head" 60px "body image" 1fr/47.5555555556% 52.4444444444%;
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
  }
  .page-home .main .section .twoColumn .head {
    box-sizing: border-box;
    grid-area: head;
    width: 47.5555555556%;
    padding-right: 30px;
    padding-left: 30px;
    margin-top: -5px;
    margin-bottom: 0;
    font-size: 50px;
    font-weight: normal;
    line-height: 60px;
    letter-spacing: 0.076em;
  }
  .page-home .main .section .twoColumn .image {
    grid-area: image;
    transform: translateY(-60px);
  }
  .page-home .main .section .twoColumn .body {
    position: relative;
    grid-area: body;
    padding: 1em;
  }
  .page-home .main .section .twoColumn .body::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    box-sizing: border-box;
    display: block;
    margin-right: -34.8130841121%;
    margin-left: calc(50% - var(--clientWidth) * 0.5);
    content: "";
    background-color: #828282;
  }
}
.page-home .main .section .twoColumn.js-inview .head,
.page-home .main .section .twoColumn.js-inview .body,
.page-home .main .section .twoColumn.js-inview .image {
  transition: opacity 2s linear, visibility 2s linear, transform 2s cubic-bezier(0.22, 0.61, 0.36, 1);
}
@media (min-width: 1000px) {
  .page-home .main .section .twoColumn.js-inview .body {
    transition-delay: 1.6s;
  }
}
@media (min-width: 1000px) {
  .page-home .main .section .twoColumn.js-inview .image {
    transition-delay: 0.8s;
  }
}
.page-home .main .section .twoColumn.js-inview:not(.-inview) .head,
.page-home .main .section .twoColumn.js-inview:not(.-inview) .body,
.page-home .main .section .twoColumn.js-inview:not(.-inview) .image {
  visibility: hidden;
  opacity: 0;
  transform: translateY(32px);
}
@media (min-width: 1000px) {
  .page-home .main .section.concept .twoColumn {
    grid-template: "head head" 60px "body image" 1fr/47.5555555556% 52.4444444444%;
  }
}
.page-home .main .section.concept .twoColumn .head {
  margin-top: -4px;
  text-align: center;
}
@media not all and (min-width: 1000px) {
  .page-home .main .section.concept .twoColumn .head {
    font-size: 25px;
    line-height: 32px;
  }
}
@media (min-width: 1000px) {
  .page-home .main .section.concept .twoColumn .head {
    font-size: 28px;
    line-height: 36px;
  }
}
@media not all and (min-width: 1000px) {
  .page-home .main .section.concept .twoColumn .image {
    margin-top: 40px;
  }
}
.page-home .main .section.concept p {
  margin-top: 0;
  margin-bottom: 0;
  text-align: center;
}
@media not all and (min-width: 1000px) {
  .page-home .main .section.concept p {
    font-size: 16px;
    line-height: 41px;
  }
}
@media (min-width: 1000px) {
  .page-home .main .section.concept p {
    font-size: 18px;
    line-height: 50px;
  }
}
.page-home .main .section.chef .twoColumn .body h3 {
  font-weight: normal;
}
.page-home .main .section.chef .twoColumn .body h3 img {
  margin-left: 1.25em;
  vertical-align: middle;
}
.page-home .main .section.chef .twoColumn .body p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 33px;
}
@media not all and (min-width: 1000px) {
  .page-home .main .section.chef .twoColumn {
    display: flex;
    flex-flow: column;
  }
  .page-home .main .section.chef .twoColumn .head {
    order: 1;
    margin-bottom: 16px;
  }
  .page-home .main .section.chef .twoColumn .body {
    order: 3;
  }
  .page-home .main .section.chef .twoColumn .body h3 {
    font-size: 24px;
    line-height: 40px;
  }
  .page-home .main .section.chef .twoColumn .image {
    order: 2;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (min-width: 1000px) {
  .page-home .main .section.chef .twoColumn {
    grid-template: "head head" 60px "image body" 1fr/40% 60%;
  }
  .page-home .main .section.chef .twoColumn .head {
    width: 60%;
    margin-left: auto;
    text-align: left;
  }
  .page-home .main .section.chef .twoColumn .body {
    padding-left: 60px;
  }
  .page-home .main .section.chef .twoColumn .body::before {
    margin-right: calc(50% - var(--clientWidth) * 0.5);
    margin-left: -17.037037037%;
  }
  .page-home .main .section.chef .twoColumn .body h3 {
    font-size: 28px;
    line-height: 40px;
  }
}
.page-home .main .section.menu {
  max-width: none;
  background-image: url("../img/menu.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media not all and (min-width: 1000px) {
  .page-home .main .section.menu {
    margin-top: 40px;
  }
}
.page-home .main .section.menu .sectionInner {
  padding-top: 144px;
  padding-bottom: 144px;
}
.page-home .main .section.menu .section--head {
  margin-top: 0;
}
.page-home .main .section.menu table {
  margin-right: auto;
  margin-left: auto;
  border-collapse: collapse;
}
.page-home .main .section.menu table tr {
  border-bottom: 1px solid #707070;
}
.page-home .main .section.menu table tr::after {
  display: block;
  height: 1px;
  content: "";
  border-bottom: 1px solid red;
}
.page-home .main .section.menu table tr:first-child {
  border-top: 1px solid #707070;
}
.page-home .main .section.menu table .name {
  font-family: "Sorts Mill Goudy", serif;
  letter-spacing: 0.076em;
}
.page-home .main .section.menu table .time {
  letter-spacing: 0.087em;
}
@media not all and (min-width: 1000px) {
  .page-home .main .section.menu .name {
    font-size: 26px;
  }
  .page-home .main .section.menu .time {
    font-size: 16px;
  }
  .page-home .main .section.menu .note {
    font-size: 16px;
  }
  .page-home .main .section.menu .price {
    font-size: 22px;
  }
  .page-home .main .section.menu .price span {
    font-size: 12px;
  }
}
@media (min-width: 1000px) {
  .page-home .main .section.menu td {
    padding-top: 22px;
    padding-bottom: 18px;
    vertical-align: middle;
  }
  .page-home .main .section.menu td.break {
    padding-top: 0;
    padding-bottom: 0;
  }
  .page-home .main .section.menu td:first-child {
    padding-left: 18px;
  }
  .page-home .main .section.menu td:last-child {
    padding-right: 18px;
  }
  .page-home .main .section.menu td:not(:first-child) {
    padding-left: 28px;
  }
  .page-home .main .section.menu .name {
    font-size: 30px;
  }
  .page-home .main .section.menu .time {
    font-size: 18px;
  }
  .page-home .main .section.menu .break {
    display: none;
  }
  .page-home .main .section.menu .note {
    font-size: 18px;
  }
  .page-home .main .section.menu .price {
    font-size: 24px;
  }
  .page-home .main .section.menu .price span {
    font-size: 14px;
  }
}
.page-home .main .section.menu ul {
  padding-left: 0;
  margin-top: 40px;
  margin-bottom: 0;
  text-align: center;
  letter-spacing: 0.087em;
  list-style-type: none;
}
@media not all and (min-width: 1000px) {
  .page-home .main .section.menu ul {
    font-size: 12px;
    line-height: 18px;
  }
}
@media (min-width: 1000px) {
  .page-home .main .section.menu ul {
    font-size: 16px;
    line-height: 24px;
  }
}
.page-home .main .section.menu ul li::before {
  white-space: nowrap;
  content: "※ ";
}
.page-home .main .section.menu ul li:not(:first-child) {
  margin-top: 10px;
}
@media not all and (min-width: 1000px) {
  .page-home .main .section.menu tr {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    padding: 16px;
  }
  .page-home .main .section.menu tr td {
    display: block;
    white-space: nowrap;
  }
  .page-home .main .section.menu tr td.break {
    flex-basis: 100%;
  }
  .page-home .main .section.menu tr td:not(:first-child) {
    padding-left: 0.5em;
  }
}
@media (min-width: 1000px) {
  .page-home .main .section.reservation .section--head {
    text-align: right;
  }
}
@media (min-width: 1000px) {
  .page-home .main .section.reservation .twoColumn {
    grid-template: "head head" 60px "body image" 1fr/61.1111111111% 38.8888888889%;
  }
}
@media not all and (min-width: 1000px) {
  .page-home .main .section.reservation .twoColumn .head {
    font-size: 40px;
  }
}
@media (min-width: 1000px) {
  .page-home .main .section.reservation .twoColumn .head {
    width: 61.1111111111%;
    padding-right: 30px;
    padding-left: 30px;
  }
}
.page-home .main .section.reservation .twoColumn .body p {
  margin-top: 0;
  margin-bottom: 0;
}
.page-home .main .section.reservation .twoColumn .body .button {
  width: -moz-fit-content;
  width: fit-content;
}
.page-home .main .section.reservation .twoColumn .body .button a {
  display: block;
  padding: 15px 30px;
  line-height: 28px;
  color: #373737;
  text-decoration: none;
  letter-spacing: 0.087em;
  background-color: #fff;
  border-radius: 10px;
}
@media not all and (min-width: 1000px) {
  .page-home .main .section.reservation .twoColumn {
    display: flex;
    flex-flow: column;
  }
  .page-home .main .section.reservation .twoColumn .head {
    order: 1;
    margin-bottom: 16px;
  }
  .page-home .main .section.reservation .twoColumn .body {
    order: 3;
    margin-top: 24px;
    text-align: center;
  }
  .page-home .main .section.reservation .twoColumn .body p {
    font-size: 16px;
    line-height: 34px;
  }
  .page-home .main .section.reservation .twoColumn .body .button {
    margin-top: 25px;
    margin-right: auto;
    margin-left: auto;
  }
  .page-home .main .section.reservation .twoColumn .body .button a {
    padding: 25px 2em;
    font-size: 16px;
  }
  .page-home .main .section.reservation .twoColumn .image {
    order: 2;
  }
}
@media (min-width: 1000px) {
  .page-home .main .section.reservation .twoColumn {
    box-sizing: border-box;
    grid-template: "head head" 60px "body image" 1fr/61.1111111111% 38.8888888889%;
    padding-right: 38px;
  }
  .page-home .main .section.reservation .twoColumn .body {
    padding-right: 38px;
  }
  .page-home .main .section.reservation .twoColumn .body::before {
    margin-right: -46.484375%;
  }
  .page-home .main .section.reservation .twoColumn .body p {
    font-size: 18px;
    line-height: 35px;
    text-align: right;
  }
  .page-home .main .section.reservation .twoColumn .body .button {
    margin-top: 30px;
    margin-left: auto;
	
  }
  .page-home .main .section.reservation .twoColumn .body .button a {
    padding: 27px 30px;
    font-size: 18px;
  }
}
.page-home .main .section.gallery {
  max-width: none;
  padding-right: 0;
  padding-left: 0;
}
.page-home .main .section.gallery .galleryWrapper {
  margin-right: calc(50% - var(--clientWidth) * 0.5);
  margin-left: calc(50% - var(--clientWidth) * 0.5);
  overflow: hidden;
}
@media (min-width: 1000px) {
  .page-home .main .section.gallery .swiper {
    max-width: 900px;
    overflow: visible;
  }
}
.page-home .main .section.gallery .swiper .swiper-slide img {
  width: 100%;
  height: auto;
}
.page-home .main .section.access {
  --columnWidth: min(900px, var(--clientWidth));
}
@media not all and (min-width: 1000px) {
  .page-home .main .section.access .horizontalDivision {
    display: flex;
    flex-flow: column;
  }
  .page-home .main .section.access .horizontalDivision dl {
    order: 2;
  }
  .page-home .main .section.access .horizontalDivision > div {
    order: 1;
    margin-right: calc(50% - var(--clientWidth) * 0.5);
    margin-left: calc(50% - var(--clientWidth) * 0.5);
  }
}
.page-home .main .section.access .horizontalDivision dl {
  display: grid;
  grid-template-columns: auto 1fr;
  margin-top: 0;
  margin-bottom: 0;
  letter-spacing: 0.087em;
}
@media not all and (min-width: 1000px) {
  .page-home .main .section.access .horizontalDivision dl {
    font-size: 14px;
    line-height: 28px;
  }
}
@media (min-width: 1000px) {
  .page-home .main .section.access .horizontalDivision dl {
    font-size: 18px;
    line-height: 28px;
  }
}
.page-home .main .section.access .horizontalDivision dd {
  margin-left: 0;
}
@media not all and (min-width: 1000px) {
  .page-home .main .section.access .horizontalDivision dd {
    padding-left: 1.7142857143em;
  }
}
@media (min-width: 1000px) {
  .page-home .main .section.access .horizontalDivision dd {
    padding-left: 1.8888888889em;
  }
}
.page-home .main .section.access .horizontalDivision > dl dl dt,
.page-home .main .section.access .horizontalDivision > dl dl dd {
  margin-top: 1em;
}
@media not all and (min-width: 1000px) {
  .page-home .main .section.access .horizontalDivision > dl dl dd {
    padding-left: 1.2857142857em;
  }
}
.page-home .main .section.access .horizontalDivision > dl > dt, .page-home .main .section.access .horizontalDivision > dl > dd {
  border-bottom: 1px solid #bbb8b8;
}
@media not all and (min-width: 1000px) {
  .page-home .main .section.access .horizontalDivision > dl > dt, .page-home .main .section.access .horizontalDivision > dl > dd {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
@media (min-width: 1000px) {
  .page-home .main .section.access .horizontalDivision > dl > dt, .page-home .main .section.access .horizontalDivision > dl > dd {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.page-home .main .section.access .horizontalDivision > dl > dt {
  padding-left: 1em;
  text-align: right;
}
.page-home .main .section.access .horizontalDivision > dl > dd {
  padding-right: 1em;
}
.page-home .main .section.access .horizontalDivision a[href^="tel:"], .page-home .main .section.access .horizontalDivision a[href^="mailto:"] {
  color: inherit;
  text-decoration: none;
}
.page-home .main .section.access .horizontalDivision a[href^="tel:"]:focus, .page-home .main .section.access .horizontalDivision a[href^="mailto:"]:focus {
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  .page-home .main .section.access .horizontalDivision a[href^="tel:"]:hover, .page-home .main .section.access .horizontalDivision a[href^="mailto:"]:hover {
    text-decoration: underline;
  }
}
@media not all and (min-width: 1000px) {
  .page-home .main .section.access .horizontalDivision .map {
    margin-top: 1em;
    margin-left: 16px;
  }
}
@media (min-width: 1000px) {
  .page-home .main .section.access .horizontalDivision .map {
    margin-top: 1em;
    margin-left: 28px;
  }
}
.page-home .main .section.access .horizontalDivision .button {
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 0.5em;
}
@media not all and (min-width: 1000px) {
  .page-home .main .section.access .horizontalDivision .button {
    margin-top: 1.5em;
  }
}
@media (min-width: 1000px) {
  .page-home .main .section.access .horizontalDivision .button {
    margin-top: 1.2em;
  }
}
.page-home .main .section.access .horizontalDivision .button a {
  display: block;
  padding: 0.15em 3.8em;
  color: #000;
  text-decoration: none;
  background-color: #fff;
  border-radius: 10px;
}
.page-home .main .section.access .horizontalDivision > div img {
  width: 100%;
  height: auto;
}
@media (min-width: 1000px) {
  .page-home .main .section.access .horizontalDivision {
    display: grid;
    grid-template: "photo1 text" auto "photo2 text" 1fr/45.3333333333% 52.6666666667%;
    gap: calc(var(--columnWidth) * 0.02);
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
  }
  .page-home .main .section.access .horizontalDivision > dl {
    grid-area: text;
  }
  .page-home .main .section.access .horizontalDivision > div:nth-of-type(1) {
    grid-area: photo1;
  }
  .page-home .main .section.access .horizontalDivision > div:nth-of-type(2) {
    grid-area: photo2;
  }
}