@charset "UTF-8";
@media (min-width: 1200px) {
  .only-pc {
    display: block !important;
  }
  .only-sp {
    display: none !important;
  }
}
@media (max-width: 1199.9px) {
  .only-pc {
    display: none !important;
  }
  .only-sp {
    display: block !important;
  }
}
:root {
  --txt-color: #000;
  --drawer-menu-color: #fff;
  --drawer-btn-color: #000;
  --drawer-bg-color: rgba(255, 255, 255, .7);
  --transition-duration: .3s;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Page Style */
body {
  color: var(--txt-color);
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-style: normal;
  width: 100%;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  font-size: 0.85rem;
  background-color: #fff;
  -webkit-transition: all 0.6s ease 0s;
  transition: all 0.6s ease 0s;
  scroll-behavior: smooth;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-weight: 200;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

p {
  margin-bottom: 1.5rem;
  line-height: 1.5rem;
}

a {
  color: var(--txt-color);
  text-decoration: none;
}

address {
  font-style: inherit;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  image-rendering: -webkit-optimize-contrast;
  width: 100%;
  height: 100%;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

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

/* form reset */
input,
button,
select,
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  padding: 5px 10px;
  outline: 1px solid #ccc;
}
input:focus,
button:focus,
select:focus,
textarea:focus {
  outline: 3px solid #000;
}

select {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}

textarea {
  resize: vertical;
  width: 100%;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

::-webkit-input-placeholder {
  color: #ccc;
}

::-moz-placeholder {
  color: #ccc;
}

:-ms-input-placeholder {
  color: #ccc;
}

::-ms-input-placeholder {
  color: #ccc;
}

::placeholder {
  color: #ccc;
}

.flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
@media (max-width: 1199.9px) {
  .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .flex.reverse-sp {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
}

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

/* header デザイン別に作り分け パーツ化 */
.header {
  background-color: #fff;
  padding: 0.9rem;
  -webkit-box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  -webkit-transition: 0.7s;
  transition: 0.7s;
}
.header .logo a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin-inline: auto;
}
.header .logo a img {
  max-width: 180px;
  display: block;
  margin-inline: auto;
}
@media (max-width: 1199.9px) {
  .header .logo a img {
    width: auto;
    height: auto;
  }
}

#head_wrap.fixed #global-nav ul li a {
  color: #fff;
  padding: 0 20px;
}

.drawer__btn {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10002;
  background-color: #fff;
  overflow: hidden;
  cursor: pointer;
  width: 48px;
  height: 48px;
  -webkit-transition: 0.7s;
  transition: 0.7s;
}

.drawer__btn span {
  display: block;
  width: 50%;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: var(--transition-duration);
  transition: var(--transition-duration);
}

.drawer__btn span:nth-child(1) {
  -webkit-transform: translate(-50%, -8px);
          transform: translate(-50%, -8px);
}

.drawer__btn span:nth-child(2) {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.drawer__btn span:nth-child(3) {
  -webkit-transform: translate(-50%, 8px);
          transform: translate(-50%, 8px);
}

.drawer__btn.active {
  background-color: initial;
}

.drawer__btn.active span:nth-child(1) {
  -webkit-transform: translate(-50%, 0) rotate(45deg);
          transform: translate(-50%, 0) rotate(45deg);
  background-color: #000;
}

.drawer__btn.active span:nth-child(2) {
  -webkit-transform: translate(100%, 0);
          transform: translate(100%, 0);
  opacity: 0;
}

.drawer__btn.active span:nth-child(3) {
  -webkit-transform: translate(-50%, 0) rotate(-45deg);
          transform: translate(-50%, 0) rotate(-45deg);
  background-color: #000;
}

.drawer__menu {
  top: -34px;
  right: 0;
  z-index: 10001;
  width: 340px;
  height: 100%;
  overflow-y: auto;
  background-color: #fff;
  -webkit-transition: var(--transition-duration);
  transition: var(--transition-duration);
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  opacity: 0;
  padding: 5em 1.5%;
}
@media (max-width: 1199.9px) {
  .drawer__menu {
    top: 0;
  }
}
.drawer__menu ul {
  list-style: none;
}
.drawer__menu ul li a {
  text-decoration: none;
  color: #000;
  display: block;
  padding: 0.5rem 0 0.5rem 15px;
  font-size: 1.15rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.drawer__menu ul li a.flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.drawer__menu ul li a p {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 0;
}
.drawer__menu ul li a p:nth-child(2) {
  font-size: 0.75rem;
  padding-right: 15px;
}
.drawer__menu ul.etc-menu {
  margin-top: 40px;
}
.drawer__menu ul.etc-menu li {
  margin-bottom: 15px;
  padding-left: 0;
}
.drawer__menu .sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
  letter-spacing: 1rem;
}
.drawer__menu .sns i {
  font-size: 1.25rem;
}
.drawer__menu.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

.drawer__bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-transition: var(--transition-duration);
  transition: var(--transition-duration);
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  opacity: 0;
  cursor: pointer;
}

.drawer__bg.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

.header.linkplus {
  padding: 0.85rem;
}
.header.linkplus ul.menu {
  -webkit-transition: 0.7s;
  transition: 0.7s;
}
.header.linkplus ul.menu li a p {
  display: none;
}
.header.linkplus .etc-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header.linkplus .etc-menu li a {
  border-radius: 50px;
  background-color: #999;
  color: #fff;
  width: 64px;
  height: 64px;
  font-size: 0.9rem;
  padding: 20px 0 0;
  text-align: center;
}
@media (min-width: 1200px) {
  .header.linkplus {
    height: 60px;
  }
  .header.linkplus .logo a {
    margin-right: 0;
  }
  .header.linkplus .drawer__btn,
  .header.linkplus .etc-menu,
  .header.linkplus .sns {
    display: none;
  }
  .header.linkplus .drawer__menu {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    width: 100%;
    background-color: initial;
    padding: 0;
    height: auto;
  }
  .header.linkplus .drawer__menu ul.menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 40px;
  }
  .header.linkplus .drawer__menu ul.menu li a {
    color: #666;
    font-size: 0.65rem;
    padding: 16px;
  }
}
.header.linkplus .drawer__menu {
  position: relative;
}
@media (max-width: 1199.9px) {
  .header.linkplus {
    height: 50px;
  }
  .header.linkplus .drawer__bg {
    background-color: rgba(0, 0, 0, 0.2);
  }
  .header.linkplus .drawer__menu {
    position: fixed;
    background-color: rgba(192, 192, 192, 0.8);
    width: 280px;
  }
  .header.linkplus ul.menu li a {
    color: #fff;
  }
  .header.linkplus .sns i {
    color: #fff;
  }
}

.header.common {
  padding: 0.8rem;
}
.header.common .menu li {
  border-bottom: 1px solid #ccc;
}
.header.common .menu li a {
  font-size: 0.9rem;
  position: relative;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}
.header.common .menu li a p {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0.65rem;
}
.header.common .etc-menu li {
  border: 1px solid #000;
}
.header.common .etc-menu li svg {
  fill: #000;
  margin-right: 3px;
}
.header.common .etc-menu li.tel svg, .header.common .etc-menu li.map svg {
  width: 20px;
  margin-bottom: -7px;
}
.header.common .etc-menu li.line svg {
  width: 25px;
  margin-bottom: -4px;
  margin-left: -2px;
}
.header.common .etc-menu li a {
  padding-left: 20%;
}
.header.common .drawer__menu {
  position: fixed;
}
.header.common .drawer__btn {
  width: 50px;
  height: 50px;
}

/*header ここまで*/
/*パンくずとの間*/
@media (max-width: 1199.9px) {
  .section.under {
    padding-top: 10px;
  }
}
/*header分*/
main {
  margin-top: 33px;
}

/* top(index.php) only*/
main.top {
  overflow: hidden;
  /* Swiper.js*/
  /* concept */
}
main.top .p-swiper-container {
  position: relative;
}
main.top .p-swiper-container .swiper-slide {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 740px;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
@media (max-width: 1199.9px) {
  main.top .p-swiper-container .swiper-slide {
    height: 340px;
    background-size: 100% auto;
  }
}
main.top .p-swiper-container .swiper-pagination::after {
  content: "";
  display: inline-block;
  width: 45px;
  height: 45px;
  background-image: url(../img/slider.svg);
  background-size: contain;
  vertical-align: bottom;
  margin-left: -15px;
}
main.top .p-swiper-container .swiper-pagination .swiper-pagination-bullet {
  background-color: #fff;
  opacity: 1;
  width: 5px;
  height: 5px;
}
main.top .p-swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #000;
}
main.top .concept {
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  line-height: 2rem;
  margin-top: 80px;
}
@media (max-width: 1199.9px) {
  main.top .section {
    padding-top: 0;
    padding-bottom: 0;
  }
  main.top .section .h2-wrap {
    margin-bottom: 15px;
  }
}
main.top .section {
  margin-top: 60px;
}
main.top h2 {
  font-family: "balto", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: center;
}

/* vegas motion */
#vegas {
  width: 100%;
  height: 740px;
}
/*only top ここまで*/
/*共通パーツ*/
table.address {
  margin-inline: auto;
}
table.address th,
table.address td {
  font-size: 0.6rem;
}
table.address th {
  font-weight: normal;
  text-align: left;
}

.section {
  max-width: 1200px;
  margin-inline: auto;
  overflow: hidden;
}
@media (max-width: 1199.9px) {
  .section {
    width: auto;
  }
}

.sec-inner {
  max-width: 1024px;
  padding: 40px;
  margin-inline: auto;
}
@media (max-width: 1199.9px) {
  .sec-inner {
    max-width: initial;
  }
}

.hide-area {
  display: none;
}

button.modaal-gallery-control {
  background: rgba(0, 0, 0, 0.25);
  bottom: auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

button.modaal-gallery-control::before,
button.modaal-gallery-control::after,
.modaal-close:after,
.modaal-close:before {
  width: 1px;
}

.modaal-gallery-control:before {
  margin: -6px 0 0;
}

.modaal-gallery-control:after {
  margin: 6px 0 0;
}

.modaal-gallery-prev:before {
  margin: 6px 0 0;
}

.modaal-gallery-prev:after {
  margin: -6px 0 0;
}

button.modaal-close:active {
  background: none !important;
}

.modaal-close:hover,
.modaal-gallery-prev:hover,
.modaal-gallery-next:hover {
  background: none;
}

.modaal-close::before:hover,
.modaal-close::after:hover {
  background: #fff;
}

@media (max-width: 1199.9px) {
  .modaal-close {
    top: 50px;
  }
  .modaal-gallery-prev {
    left: 0;
  }
  .modaal-gallery-next {
    right: 0;
  }
}
/*パララックス fadeUp 不要なら削除 */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定 */
.fadeUpTrigger {
  opacity: 0;
}

/*-----------------------------------------------------------------
アニメーション
-----------------------------------------------------------------*/
/* 画面外にいる状態 */
.fadein {
  opacity: 0.1;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 1300ms;
  transition: all 1300ms;
}

/* 画面内に入った状態 */
.fadein.scrollin {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  margin-top: 30px;
}

/*モーション*/
#topfade-bg {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #fff;
  z-index: 20;
}

#topfade {
  display: none;
  position: fixed;
  top: 53%;
  left: 50%;
  width: 130px;
  margin-top: -65px;
  margin-left: -65px;
  text-align: center;
  color: #fff;
  z-index: 22;
}

#topfade img {
  width: 130px;
}

.top-animation {
  /* ５秒かけてアニメーションする */
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-duration: 1.5s;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

/*下層共通*/
main.under {
  padding-left: 20px;
  padding-right: 20px;
  /*パンくず*/
}
main.under h1 {
  font-family: "Codystar", cursive;
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
}
main.under h2,
main.under .subheading {
  margin-bottom: 20px;
  font-size: 1.2rem;
}
main.under .subheading {
  font-weight: bold;
}
main.under .breadcrumbs {
  font-size: 0.65rem;
  margin-bottom: 15px;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}
@media (max-width: 1199.9px) {
  main.under .breadcrumbs {
    margin-bottom: 30px;
  }
}
main.under .breadcrumbs span {
  margin-right: 1px;
  margin-left: 1px;
}
main.under .breadcrumbs span:first-child {
  margin-left: 0;
}
main.under .section {
  margin-bottom: 80px;
}

/* top 下層 共通パーツ */
.information li {
  border-bottom: 1px dotted #999;
  padding-top: 10px;
  padding-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (max-width: 1199.9px) {
  .information li {
    -webkit-box-align: initial;
        -ms-flex-align: initial;
            align-items: initial;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .information li p {
    margin-top: 0 !important;
  }
  .information li p:first-child a {
    float: left;
  }
  .information li p:nth-child(2) a {
    float: right;
    margin-top: -15px;
  }
  .information li p:nth-child(2)::after {
    clear: both;
  }
}
.information li p {
  font-size: 0.85rem;
  margin-right: 20px;
  margin-bottom: 0;
  margin-top: 20px;
}

.information,
.calendar,
.link {
  margin-inline: auto;
  display: block;
}

.calendar {
  height: 500px;
  margin-bottom: 60px;
}
@media (max-width: 1199.9px) {
  .calendar {
    width: 100%;
  }
}

.link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 60px;
  font-size: 0.7rem;
}

.link-right {
  text-align: right;
  font-size: 0.65rem;
}
.link-right a {
  color: #333;
}
.link-right a:hover {
  color: #ccc;
}
.link-right a::after {
  content: "＞";
  margin-left: 3px;
}

/*map*/
#map iframe {
  width: 100%;
  height: 500px;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
@media (max-width: 1199.9px) {
  #map iframe {
    height: 400px;
  }
}

footer {
  border-top: 1px dotted #999;
  margin-top: 40px;
  text-align: center;
}
footer small {
  margin-bottom: 50px;
  font-size: 0.65rem;
}

.to-top {
  position: fixed;
  bottom: 0;
  display: inline-block;
  width: 100%;
}
.to-top::before {
  content: "";
  width: 50px;
  height: 50px;
  border: 0px;
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  right: 20px;
  bottom: 0;
}
@media (max-width: 1199.9px) {
  .to-top::before {
    width: 35px;
    height: 35px;
  }
}

/*recaptcha icon*/
.grecaptcha-badge {
  margin-bottom: 60px;
  z-index: 1;
}

/*下層 個々ページ固有のもの有れば*/
/* information */
#information.detail h1 {
  font-size: 1.3rem;
  font-family: initial;
  border-bottom: 1px dotted;
  padding-bottom: 15px;
}
#information h2 {
  font-size: 1.15rem;
}
#information h3 {
  font-size: 1rem;
  font-weight: normal;
}
#information .flex:has(time) time {
  margin-right: 30px;
}
#information .flex:has(time) p {
  margin-bottom: 0;
}
#information .dealer {
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#information .dealer li a {
  font-size: 1rem;
  color: #999;
  line-height: 2;
}
#information .dealer li a::after {
  content: ">";
  margin-left: 15px;
}
@media (max-width: 1199.9px) {
  #information .dealer {
    margin-left: 0;
  }
}
#information .gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#information .gallery li {
  width: 200px;
  height: 200px;
  margin-right: 30px;
}
#information .gallery li:last-child {
  margin-right: 0;
}
#information .gallery li a {
  display: block;
}
#information .gallery li img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}
#information #map iframe {
  -webkit-filter: initial;
          filter: initial;
}

#menu .flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1199.9px) {
  #menu .flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 0;
  }
  #menu .flex p {
    margin-bottom: 5px;
  }
}
#menu h3 {
  font-weight: normal;
}
@media (max-width: 1199.9px) {
  #menu p {
    margin-top: 10px;
  }
}
#menu .section:last-child img {
  width: auto;
}

#staff .flex {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (min-width: 1200px) {
  #staff .flex {
    padding-left: 100px;
  }
}
@media (max-width: 1199.9px) {
  #staff .flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
#staff .flex .staff {
  position: relative;
  margin-bottom: 30px;
  width: 33.3333333333%;
}
@media (max-width: 1199.9px) {
  #staff .flex .staff {
    margin-bottom: 60px;
    width: 20%;
    margin-left: 150px;
  }
}
#staff .flex .staff div {
  position: absolute;
  bottom: 10%;
  left: -50px;
}
@media (max-width: 1199.9px) {
  #staff .flex .staff div {
    left: -120px;
  }
}
#staff .flex .staff div p {
  margin-bottom: 0;
  font-size: 0.65rem;
}
#staff .flex .staff div h3 {
  font-weight: normal;
  font-family: "Cantarell", sans-serif;
  font-size: 1.15rem;
}
#staff .flex .staff img {
  position: relative;
}
@media (min-width: 1200px) {
  #staff .flex .staff img {
    max-width: 200px;
  }
}

#gallery .flex.section {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#gallery .flex.section section {
  width: 30.303030303%;
  margin-inline: auto;
}
@media (max-width: 1199.9px) {
  #gallery .flex.section section {
    margin-bottom: 40px;
    max-width: 380px;
    width: 100%;
  }
}
#gallery .flex.section section ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-inline: auto;
}
#gallery .flex.section section ul li {
  width: 100px;
  height: 100px;
  margin-right: 17px;
  margin-bottom: 17px;
}
#gallery .flex.section section ul li:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 1199.9px) {
  #gallery .flex.section section ul li:nth-child(3n) {
    margin-right: 17px;
  }
}
#gallery .flex.section section ul li a {
  display: block;
}
#gallery .flex.section section ul li img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #000 !important;
  background-color: #000;
  color: #fff;
  font-weight: bold;
}

#reservation .flex,
#recruit .flex {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
@media (max-width: 1199.9px) {
  #reservation .flex,
  #recruit .flex {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#reservation .flex .tel,
#reservation .flex .line,
#reservation .flex .mail,
#recruit .flex .tel,
#recruit .flex .line,
#recruit .flex .mail {
  font-weight: bold;
  font-size: 1.5rem;
}
#reservation .flex .tel::before,
#reservation .flex .line::before,
#reservation .flex .mail::before,
#recruit .flex .tel::before,
#recruit .flex .line::before,
#recruit .flex .mail::before {
  content: "";
  display: inline-block;
  background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  margin-right: 6px;
}
#reservation .flex .tel::before,
#recruit .flex .tel::before {
  background-image: url(../img/tel2.svg);
}
#reservation .flex .line::before,
#recruit .flex .line::before {
  background-image: url(../img/line.svg);
}
#reservation .flex .mail::before,
#recruit .flex .mail::before {
  background-image: url(../img/mail.svg);
}
#reservation table,
#recruit table {
  font-family: initial;
  font-size: 0.9rem;
  margin-inline: auto;
  color: #666;
}
#reservation table,
#reservation table input[type=text],
#reservation table input[type=email],
#reservation table input[type=tel],
#recruit table,
#recruit table input[type=text],
#recruit table input[type=email],
#recruit table input[type=tel] {
  width: 100%;
}
#reservation table th,
#reservation table td,
#recruit table th,
#recruit table td {
  padding: 25px 50px;
  font-size: 0.75rem;
}
#reservation table th,
#recruit table th {
  text-align: left;
  font-weight: normal;
}
@media (max-width: 1199.9px) {
  #reservation table th,
  #reservation table td,
  #recruit table th,
  #recruit table td {
    display: block;
  }
  #reservation table th,
  #recruit table th {
    padding-bottom: 0;
  }
  #reservation table p,
  #recruit table p {
    margin-bottom: 0;
  }
}
#reservation .wpcf7-previous,
#reservation .reset,
#reservation .submit,
#reservation input.wpcf7-submit,
#reservation button,
#recruit .wpcf7-previous,
#recruit .reset,
#recruit .submit,
#recruit input.wpcf7-submit,
#recruit button {
  background-color: #ccc;
  color: #fff;
  display: block;
  margin-inline: auto;
  margin-bottom: 20px;
  padding: 8px 20px;
  font-weight: bold;
  width: 220px;
}
@media (max-width: 1199.9px) {
  #reservation .wpcf7-previous,
  #reservation .reset,
  #reservation .submit,
  #reservation input.wpcf7-submit,
  #reservation button,
  #recruit .wpcf7-previous,
  #recruit .reset,
  #recruit .submit,
  #recruit input.wpcf7-submit,
  #recruit button {
    width: 100%;
  }
}
#reservation .wpcf7-previous a,
#reservation .reset a,
#reservation .submit a,
#reservation input.wpcf7-submit a,
#reservation button a,
#recruit .wpcf7-previous a,
#recruit .reset a,
#recruit .submit a,
#recruit input.wpcf7-submit a,
#recruit button a {
  color: #fff;
}
#reservation button,
#recruit button {
  padding: 0;
}
#reservation button a,
#recruit button a {
  padding: 8px 20px;
  display: block;
}

/*求人情報*/
#recruit table {
  margin-bottom: 80px;
  width: 100%;
}
#recruit table tr {
  border-bottom: 1px dotted #999;
}
#recruit table tr:last-child {
  border-bottom-style: solid;
}

