@charset "UTF-8";
*,
::before,
::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
}

:where(html) {
  line-height: 1.15;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
}

:where(body) {
  margin: 0;
}

:where(main) {
  display: block;
}

:where(p, table, blockquote, address, pre, iframe, form, figure, dl) {
  margin: 0;
}

:where(h1, h2, h3, h4, h5, h6) {
  margin: 0;
  font-weight: inherit;
  font-size: inherit;
}

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

:where(dt) {
  font-weight: bold;
}

:where(dd) {
  margin-left: 0;
}

:where(hr) {
  clear: both;
  overflow: visible;
  box-sizing: content-box;
  margin: 0;
  height: 0;
  border-top-width: 1px;
  color: inherit;
}

:where(pre) {
  font-size: inherit;
  font-family: monospace, monospace;
}

:where(address) {
  font-style: inherit;
}

:where(a) {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
}

:where(abbr[title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

:where(b, strong) {
  font-weight: bolder;
}

:where(code, kbd, samp) {
  font-size: inherit;
  font-family: monospace, monospace;
}

:where(small) {
  font-size: 80%;
}

:where(sub, sup) {
  position: relative;
  vertical-align: baseline;
  font-size: 75%;
  line-height: 0;
}

:where(sub) {
  bottom: -0.25em;
}

:where(sup) {
  top: -0.5em;
}

:where(svg, img, embed, object, iframe) {
  vertical-align: bottom;
}

:where(button, input, optgroup, select, textarea) {
  -moz-appearance: none;
       appearance: none;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  vertical-align: middle;
  text-align: inherit;
  text-transform: inherit;
  font: inherit;
  -webkit-appearance: none;
}

:where(button, [type=button], [type=reset], [type=submit]) {
  cursor: pointer;
}

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

:-moz-focusring {
  outline: auto;
}

:where(select:disabled) {
  opacity: inherit;
}

:where(option) {
  padding: 0;
}

:where(fieldset) {
  margin: 0;
  padding: 0;
  min-width: 0;
}

:where(legend) {
  padding: 0;
}

:where(progress) {
  vertical-align: baseline;
}

:where(textarea) {
  overflow: auto;
}

:where([type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button) {
  height: auto;
}

:where([type=search]) {
  outline-offset: -2px;
}

:where([type=search]::-webkit-search-decoration) {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

:where([type=number]) {
  -moz-appearance: textfield;
}

:where(label[for]) {
  cursor: pointer;
}

:where(details) {
  display: block;
}

:where(summary) {
  display: list-item;
}

:where([contenteditable]:focus) {
  outline: auto;
}

:where(table) {
  border-collapse: collapse;
  border-color: inherit;
}

:where(caption) {
  text-align: left;
}

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

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

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInDown {
  opacity: 0;
}
.fadeInDown.animated {
  animation: fadeInDown;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}

.fadeIn {
  opacity: 0;
}
.fadeIn.animated {
  animation: fadeIn;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}

.fadeInUp {
  opacity: 0;
}
.fadeInUp.animated {
  animation: fadeInUp;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

.fadeInRight {
  opacity: 0;
}
.fadeInRight.animated {
  animation: fadeInRight;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}

.delay-1 {
  animation-delay: 0.1s !important;
}
.delay-2 {
  animation-delay: 0.2s !important;
}
.delay-3 {
  animation-delay: 0.3s !important;
}
.delay-4 {
  animation-delay: 0.4s !important;
}
.delay-5 {
  animation-delay: 0.5s !important;
}
.delay-6 {
  animation-delay: 0.6s !important;
}
.delay-7 {
  animation-delay: 0.7s !important;
}
.delay-8 {
  animation-delay: 0.8s !important;
}
.delay-9 {
  animation-delay: 0.9s !important;
}
.delay-10 {
  animation-delay: 1s !important;
}

html {
  font-size: 62.5%;
}

body {
  background-color: #eef2f3;
  color: #1a1a1a;
  overflow-wrap: break-word;
  word-wrap: break-word;
  font-size: 1.6rem;
  font-family: sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 2;
  line-break: strict;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.4;
}

:where(a) {
  color: #058aa7;
}
.wrap {
  margin: 0 auto;
}
@media screen and (min-width: 641px) {
  .wrap {
    padding: 0 20px;
    max-width: 1140px;
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .wrap {
    padding: 0 16px;
  }
}

@media screen and (min-width: 641px) {
  .pc-none {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  .sp-none {
    display: none;
  }
}
@media screen and (min-width: 641px) {
  .interiorContents {
    margin-top: 145px;
  }
}
@media screen and (max-width: 640px) {
  .interiorContents {
    margin-top: 50px;
  }
}
.interiorContents-txt {
  color: #00275c;
  text-align: center;
  letter-spacing: -0.05em;
  font-family: "Zen Old Mincho";
}
@media screen and (min-width: 641px) {
  .interiorContents-txt {
    font-size: 38px;
  }
}
@media screen and (max-width: 640px) {
  .interiorContents-txt {
    font-size: 18px;
    line-height: 1.6em;
  }
}
.interiorContents-ytbanner {
  margin: 140px auto 0 auto;
  max-width: 960px;
}
.interiorContents-body {
  display: flex;
  background: #fff;
}
@media screen and (min-width: 641px) {
  .interiorContents-body {
    gap: 30px;
    margin: 140px auto 0;
    padding: 40px 34px 40px 48px;
    max-width: 960px;
  }
}
@media screen and (max-width: 640px) {
  .interiorContents-body {
    flex-direction: column;
    margin: 45px auto 0;
    padding: 15px 18px 17px;
  }
}
.interiorContents-body-ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #00275c;
  color: #00275c;
  letter-spacing: -0.05em;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 641px) {
  .interiorContents-body-ttl {
    padding: 19px 48px;
    min-width: 276px;
    height: 110px;
    font-size: 26px;
  }
}
@media screen and (max-width: 640px) {
  .interiorContents-body-ttl {
    padding: 12px 6px;
    width: 100%;
    font-size: 16px;
  }
}
.interiorContents-body-txt {
  color: #00275c;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 641px) {
  .interiorContents-body-txt {
    font-size: 22px;
    line-height: 1.6em;
  }
}
@media screen and (max-width: 640px) {
  .interiorContents-body-txt {
    margin-top: 12px;
    font-size: 14px;
  }
}

.modal {
  position: fixed;
  /* Stay in place */
  top: 0;
  left: 0;
  z-index: 999;
  /* Sit on top */
  display: none;
  /* Hidden by default */
  overflow: auto;
  /* Enable scroll if needed */
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.8);
  /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  margin: 0% auto;
  /* 15% from the top and centered */
  padding: 20px;
  /* Could be more or less, depending on screen size */
}

@media screen and (min-width: 769px) {
  .modal-content {
    width: 80%;
    margin: 0% auto;
  }
}
@media screen and (max-width: 768px) {
  .modal-content {
    width: 100%;
  }
}
iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

/* The Close Button */
.close {
  float: right;
  color: #fff;
  font-weight: bold;
}

@media screen and (min-width: 769px) {
  .close {
    height: 90px;
    font-size: 56px;
  }
}
@media screen and (max-width: 768px) {
  .close {
    height: 60px;
    font-size: 36px;
  }
}
.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

@media screen and (min-width: 641px) {
  .interiorBody {
    margin-top: 170px;
  }
}
@media screen and (max-width: 640px) {
  .interiorBody {
    margin-top: 50px;
  }
}
.interiorBody-tab {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.interiorBody-tab-buttons {
  display: flex;
  width: 100%;
}
.interiorBody-tab-list {
  display: flex;
  flex-direction: column;
  background: #fff;
}
@media screen and (min-width: 641px) {
  .interiorBody-tab-list {
    gap: 70px;
    padding-top: 80px;
    padding-bottom: 75px;
  }
}
@media screen and (max-width: 640px) {
  .interiorBody-tab-list {
    gap: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media screen and (min-width: 641px) {
  .interiorBody-tab-list-item {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .interiorBody-tab-list-item {
    padding: 0 17px;
    width: 100%;
  }
}
.interiorBody-tab-list-item-img {
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 641px) {
  .interiorBody-tab-list-item-img {
    width: 950px;
  }
}
@media screen and (max-width: 640px) {
  .interiorBody-tab-list-item-img {
    width: 100%;
  }
}
.interiorBody-tab-list-item-img img {
  width: 100%;
  height: auto;
}
.interiorBody-tab-list-item-contents {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 641px) {
  .interiorBody-tab-list-item-contents {
    top: 25px;
    right: 35px;
    min-height: 340px;
    width: 385px;
  }
}
@media screen and (max-width: 640px) {
  .interiorBody-tab-list-item-contents {
    top: 47%;
    left: 50%;
    gap: 11px;
    min-height: 236px;
    width: 80%;
    transform: translateX(-50%);
  }
}
.interiorBody-tab-list-item-contents-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.interiorBody-tab-list-item-contents-header-ttl {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  letter-spacing: -0.05em;
  font-weight: 700;
  font-family: "Zen Kaku Gothic New";
}
@media screen and (min-width: 641px) {
  .interiorBody-tab-list-item-contents-header-ttl {
    font-size: 20px;
  }
}
@media screen and (max-width: 640px) {
  .interiorBody-tab-list-item-contents-header-ttl {
    font-size: 13px;
  }
}
@media screen and (min-width: 641px) {
  .interiorBody-tab-list-item-contents-header-ttl span.arflex {
    width: 117px;
  }
}
@media screen and (max-width: 640px) {
  .interiorBody-tab-list-item-contents-header-ttl span.arflex {
    width: 92px;
  }
}
@media screen and (min-width: 641px) {
  .interiorBody-tab-list-item-contents-header-ttl span.cassina {
    width: 120px;
  }
}
@media screen and (max-width: 640px) {
  .interiorBody-tab-list-item-contents-header-ttl span.cassina {
    width: 90px;
  }
}
@media screen and (min-width: 641px) {
  .interiorBody-tab-list-item-contents-header-ttl span.ritzwell {
    width: 130px;
  }
}
@media screen and (max-width: 640px) {
  .interiorBody-tab-list-item-contents-header-ttl span.ritzwell {
    width: 85px;
  }
}
@media screen and (min-width: 641px) {
  .interiorBody-tab-list-item-contents-header-ttl span.estic {
    width: 50px;
  }
}
@media screen and (max-width: 640px) {
  .interiorBody-tab-list-item-contents-header-ttl span.estic {
    width: 33px;
  }
}
@media screen and (min-width: 641px) {
  .interiorBody-tab-list-item-contents-header-ttl span.karimoku {
    width: 120px;
  }
}
@media screen and (max-width: 640px) {
  .interiorBody-tab-list-item-contents-header-ttl span.karimoku {
    width: 95px;
  }
}
@media screen and (min-width: 641px) {
  .interiorBody-tab-list-item-contents-header-ttl span.kashiwa {
    width: 138px;
  }
}
@media screen and (max-width: 640px) {
  .interiorBody-tab-list-item-contents-header-ttl span.kashiwa {
    width: 102px;
  }
}
@media screen and (min-width: 641px) {
  .interiorBody-tab-list-item-contents-header-ttl span.shirakawa {
    width: 135px;
  }
}
@media screen and (max-width: 640px) {
  .interiorBody-tab-list-item-contents-header-ttl span.shirakawa {
    width: 96px;
  }
}
@media screen and (min-width: 641px) {
  .interiorBody-tab-list-item-contents-header-ttl span.france {
    width: 150px;
  }
}
@media screen and (max-width: 640px) {
  .interiorBody-tab-list-item-contents-header-ttl span.france {
    width: 95px;
  }
}
@media screen and (min-width: 641px) {
  .interiorBody-tab-list-item-contents-header-ttl span.simmons {
    width: 79px;
  }
}
@media screen and (max-width: 640px) {
  .interiorBody-tab-list-item-contents-header-ttl span.simmons {
    width: 50px;
  }
}
@media screen and (min-width: 641px) {
  .interiorBody-tab-list-item-contents-header-ttl span.nihon {
    width: 137px;
  }
}
@media screen and (max-width: 640px) {
  .interiorBody-tab-list-item-contents-header-ttl span.nihon {
    width: 88px;
  }
}
.interiorBody-tab-list-item-contents-header-txt {
  font-family: "Zen Kaku Gothic New";
}
@media screen and (min-width: 641px) {
  .interiorBody-tab-list-item-contents-header-txt {
    letter-spacing: -0.05em;
    font-size: 14px;
    line-height: 1.6em;
  }
}
@media screen and (max-width: 640px) {
  .interiorBody-tab-list-item-contents-header-txt {
    font-size: 10px;
    line-height: 1.4em;
  }
}
.interiorBody-tab-list-item-contents-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 auto;
}
@media screen and (min-width: 641px) {
  .interiorBody-tab-list-item-contents-links {
    width: 320px;
    font-size: 20px;
  }
}
@media screen and (max-width: 640px) {
  .interiorBody-tab-list-item-contents-links {
    width: 225px;
    font-size: 12px;
  }
}
.interiorBody-tab-list-item-contents-links-lineup {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  background: #0067bc;
  color: #fff;
  font-weight: 700;
  font-family: "Zen Kaku Gothic New";
}
@media screen and (min-width: 641px) {
  .interiorBody-tab-list-item-contents-links-lineup {
    height: 50px;
  }
}
@media screen and (max-width: 640px) {
  .interiorBody-tab-list-item-contents-links-lineup {
    height: 30px;
  }
}
.interiorBody-tab-list-item-contents-links-lineup::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  background: url(../img/interior/arrow_white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(-50%);
}
@media screen and (min-width: 641px) {
  .interiorBody-tab-list-item-contents-links-lineup::after {
    width: 18px;
    height: 18px;
  }
}
@media screen and (max-width: 640px) {
  .interiorBody-tab-list-item-contents-links-lineup::after {
    width: 9px;
    height: 9px;
  }
}
.interiorBody-tab-list-item-contents-links-kengaku {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  background: #bf2d22;
  color: #fff;
  font-weight: 700;
  font-family: "Zen Kaku Gothic New";
}
@media screen and (min-width: 641px) {
  .interiorBody-tab-list-item-contents-links-kengaku {
    height: 50px;
  }
}
@media screen and (max-width: 640px) {
  .interiorBody-tab-list-item-contents-links-kengaku {
    height: 30px;
  }
}
.interiorBody-tab-list-item-contents-links-kengaku::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  background: url(../img/interior/arrow_white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(-50%);
}
@media screen and (min-width: 641px) {
  .interiorBody-tab-list-item-contents-links-kengaku::after {
    width: 18px;
    height: 18px;
  }
}
@media screen and (max-width: 640px) {
  .interiorBody-tab-list-item-contents-links-kengaku::after {
    width: 9px;
    height: 9px;
  }
}
.interiorBody-tab-list-item-contents-links-hp {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
  border-radius: 30px;
  background: #0067bc;
  background: #fff;
  font-weight: 700;
  font-family: "Zen Kaku Gothic New";
}
@media screen and (min-width: 641px) {
  .interiorBody-tab-list-item-contents-links-hp {
    height: 50px;
  }
}
@media screen and (max-width: 640px) {
  .interiorBody-tab-list-item-contents-links-hp {
    height: 30px;
  }
}
.interiorBody-tab-list-item-contents-links-hp::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  background: url(../img/interior/arrow_black.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(-50%);
}
@media screen and (min-width: 641px) {
  .interiorBody-tab-list-item-contents-links-hp::after {
    width: 18px;
    height: 18px;
  }
}
@media screen and (max-width: 640px) {
  .interiorBody-tab-list-item-contents-links-hp::after {
    width: 9px;
    height: 9px;
  }
}
.interiorBody-button {
  position: relative;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  background: #00275c;
  color: #fff;
}
@media screen and (min-width: 641px) {
  .interiorBody-button {
    margin: 150px auto 0;
    width: 560px;
    height: 80px;
    font-size: 30px;
  }
}
@media screen and (max-width: 640px) {
  .interiorBody-button {
    margin: 50px auto 0;
    width: 280px;
    height: 40px;
    font-size: 15px;
  }
}
.interiorBody-button::after {
  content: "";
  position: absolute;
  top: 50%;
  background: url(../img/interior/arrow_white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(-50%);
}
@media screen and (min-width: 641px) {
  .interiorBody-button::after {
    right: 20px;
    width: 22px;
    height: 22px;
  }
}
@media screen and (max-width: 640px) {
  .interiorBody-button::after {
    right: 8px;
    width: 11px;
    height: 11px;
  }
}

.tab-button {
  width: 50%;
  border: none;
  border-bottom: 1px solid #00275c;
  background-color: #f0f0f0;
  color: #969696;
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  cursor: pointer;
  transition: background-color 0.3s;
}
@media screen and (min-width: 641px) {
  .tab-button {
    font-size: 24px;
  }
}
@media screen and (max-width: 640px) {
  .tab-button {
    font-size: 14px;
  }
}

.tab-button.active {
  color: #00275c;
  font-weight: 700;
}
@media screen and (min-width: 641px) {
  .tab-button.active {
    border-bottom: 5px solid #00275c;
    font-size: 24px;
  }
}
@media screen and (max-width: 640px) {
  .tab-button.active {
    border-bottom: 4px solid #00275c;
    font-size: 14px;
  }
}

.interiorBody-tab-list-item {
  display: none; /* 初期状態では非表示 */
}

.interiorBody-tab-list-item.active {
  display: block; /* アクティブなタブの内容を表示 */
}

@media screen and (min-width: 641px) {
  .interiorEvent {
    margin-top: 150px;
    margin-bottom: 160px;
  }
}
@media screen and (max-width: 640px) {
  .interiorEvent {
    margin-top: 38px;
    margin-bottom: 50px;
  }
}
.interiorEvent-ttl {
  position: relative;
  color: #00275c;
  text-align: center;
  font-family: "Zen Old Mincho";
}
@media screen and (min-width: 641px) {
  .interiorEvent-ttl {
    font-size: 38px;
  }
}
@media screen and (max-width: 640px) {
  .interiorEvent-ttl {
    font-size: 19px;
  }
}
.interiorEvent-ttl::after {
  content: "";
  position: absolute;
  left: 50%;
  z-index: -2;
  width: 100%;
  background: #00275c;
  transform: translateX(-50%);
}
@media screen and (min-width: 641px) {
  .interiorEvent-ttl::after {
    top: 26px;
    height: 4px;
  }
}
@media screen and (max-width: 640px) {
  .interiorEvent-ttl::after {
    top: 14px;
    height: 2px;
  }
}
.interiorEvent-ttl::before {
  content: "";
  position: absolute;
  left: 50%;
  z-index: -1;
  height: 55px;
  background: #eef2f3;
  transform: translateX(-50%);
}
@media screen and (min-width: 641px) {
  .interiorEvent-ttl::before {
    top: 26px;
    width: 360px;
  }
}
@media screen and (max-width: 640px) {
  .interiorEvent-ttl::before {
    top: 9px;
    width: 175px;
  }
}
.interiorEvent-list {
  display: flex;
  gap: 40px;
  margin: 0 auto;
}
@media screen and (min-width: 641px) {
  .interiorEvent-list {
    margin-top: 75px;
    margin-left: -10px;
    padding: 0 50px;
    width: 94%;
  }
}
@media screen and (max-width: 640px) {
  .interiorEvent-list {
    overflow-x: auto;
    margin-top: 40px;
    padding: 0 20px;
    width: -moz-fit-content;
    width: fit-content;
    white-space: nowrap;
  }
}
.interiorEvent-list-item {
  background: #fff;
}
@media screen and (min-width: 641px) {
  .interiorEvent-list-item {
    padding-bottom: 30px;
    width: 33%;
  }
}
@media screen and (max-width: 640px) {
  .interiorEvent-list-item {
    padding-bottom: 20px;
    min-width: 220px;
  }
}
.interiorEvent-list-item-img {
  width: 100%;
}
.interiorEvent-list-item-img img {
  width: 100%;
}
@media screen and (min-width: 641px) {
  .interiorEvent-list-item-img img {
    height: auto;
  }
}
@media screen and (max-width: 640px) {
  .interiorEvent-list-item-img img {
    height: auto;
  }
}
.interiorEvent-list-item-city {
  font-family: "Zen Kaku Gothic New";
  line-height: 100%;
}
@media screen and (min-width: 641px) {
  .interiorEvent-list-item-city {
    margin-top: 25px;
    padding: 0 25px;
    font-size: 18px;
  }
}
@media screen and (max-width: 640px) {
  .interiorEvent-list-item-city {
    margin-top: 15px;
    padding: 0 12px;
    font-size: 9px;
  }
}
.interiorEvent-list-item-ttl {
  font-family: "Zen Kaku Gothic New";
  line-height: 100%;
}
@media screen and (min-width: 641px) {
  .interiorEvent-list-item-ttl {
    margin-top: 8px;
    padding: 0 25px;
    font-weight: 700;
    font-size: 32px;
  }
}
@media screen and (max-width: 640px) {
  .interiorEvent-list-item-ttl {
    margin-top: 4px;
    padding: 0 12px;
    font-weight: 700;
    font-size: 16px;
  }
}
.interiorEvent-list-item-day {
  font-family: "Zen Kaku Gothic New";
  line-height: 100%;
}
@media screen and (min-width: 641px) {
  .interiorEvent-list-item-day {
    margin-top: 10px;
    padding: 0 25px;
    font-weight: 700;
    font-size: 18px;
  }
}
@media screen and (max-width: 640px) {
  .interiorEvent-list-item-day {
    margin-top: 4px;
    padding: 0 12px;
    font-weight: 700;
    font-size: 9px;
  }
}
.interiorEvent-list-item-dome {
  font-family: "Zen Kaku Gothic New";
  line-height: 1.4em;
}
@media screen and (min-width: 641px) {
  .interiorEvent-list-item-dome {
    margin: 25px 25px 0;
    padding: 25px 0 0;
    border-top: 1px solid #000;
    font-size: 18px;
  }
}
@media screen and (max-width: 640px) {
  .interiorEvent-list-item-dome {
    margin: 12px 12px 0;
    padding: 12px 0 0;
    border-top: 1px solid #000;
    font-size: 9px;
  }
}
.interiorEvent-list-item-mado {
  font-family: "Zen Kaku Gothic New";
  line-height: 100%;
  line-height: 1.4em;
}
@media screen and (min-width: 641px) {
  .interiorEvent-list-item-mado {
    margin-top: 2px;
    padding: 0 25px;
    font-size: 18px;
  }
}
@media screen and (max-width: 640px) {
  .interiorEvent-list-item-mado {
    margin-top: 0;
    padding: 0 12px;
    font-size: 9px;
  }
}
.interiorEvent-list-item-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
  padding: 0 30px;
}
.interiorEvent-list-item-buttons-syousai {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  background: #6e6e6e;
  color: #fff;
  font-weight: 700;
  font-family: "Zen Kaku Gothic New";
}
@media screen and (min-width: 641px) {
  .interiorEvent-list-item-buttons-syousai {
    height: 45px;
    font-size: 16px;
  }
}
@media screen and (max-width: 640px) {
  .interiorEvent-list-item-buttons-syousai {
    height: 30px;
    font-size: 12px;
  }
}
.interiorEvent-list-item-buttons-syousai::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  background: url(../img/interior/arrow_white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(-50%);
}
@media screen and (min-width: 641px) {
  .interiorEvent-list-item-buttons-syousai::after {
    width: 18px;
    height: 18px;
  }
}
@media screen and (max-width: 640px) {
  .interiorEvent-list-item-buttons-syousai::after {
    width: 9px;
    height: 9px;
  }
}
.interiorEvent-list-item-buttons-kengaku {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  background: #bf2d22;
  color: #fff;
  font-weight: 700;
  font-family: "Zen Kaku Gothic New";
}
@media screen and (min-width: 641px) {
  .interiorEvent-list-item-buttons-kengaku {
    height: 45px;
    font-size: 16px;
  }
}
@media screen and (max-width: 640px) {
  .interiorEvent-list-item-buttons-kengaku {
    height: 30px;
    font-size: 12px;
  }
}
.interiorEvent-list-item-buttons-kengaku::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  background: url(../img/interior/arrow_white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(-50%);
}
@media screen and (min-width: 641px) {
  .interiorEvent-list-item-buttons-kengaku::after {
    width: 18px;
    height: 18px;
  }
}
@media screen and (max-width: 640px) {
  .interiorEvent-list-item-buttons-kengaku::after {
    width: 9px;
    height: 9px;
  }
}

.interiorEvent-prev {
  width: 60px;
  height: 60px;
}
.interiorEvent-prev img {
  width: 100%;
  height: auto;
}

.interiorEvent-next {
  width: 60px;
  height: 60px;
}
.interiorEvent-next img {
  width: 100%;
  height: auto;
}/*# sourceMappingURL=style.css.map */