@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:wght@100;300;400;500;700;900&Montserrat:wght@100..900&display=swap");
:root {
  --body-color: #fff;
  --font-color: #222;
  --link-color: #d62517;
  --primary-color: #0000ff;
  --secondary-color: #0000ff;
  --font-family: "Noto Sans JP", sans-serif;
  --base-fontsize: 1.4rem;
  --base-fontsize--sp: 1.2rem;
  --container-width: 1180px;
  --container-narrow-width: 990px;
  --header-height: 80px;
  --header-height--sp: 50px;
  --border-color: #bbb;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  background: transparent;
  border: 0;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

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

img {
  vertical-align: middle;
}

input, select {
  vertical-align: middle;
}

a,
area,
button,
[role=button],
input:not([type=range]),
label,
select,
summary,
textarea {
  touch-action: manipulation;
}

html {
  box-sizing: border-box;
}

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

body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

img,
iframe {
  vertical-align: bottom;
}

input,
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  border-radius: 0;
  font-family: var(--font-family);
  font-size: 1.4rem;
  margin: 0;
  padding: 0;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  border-radius: 0;
  cursor: pointer;
  font-family: var(--font-family);
  font-size: 1.4rem;
  margin: 0;
  padding: 0;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  border-radius: 0;
  cursor: pointer;
  font-family: var(--font-family);
  font-size: 1.4rem;
  margin: 0;
  padding: 0;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.fwb {
  font-weight: bold;
}

.fwn {
  font-weight: normal;
}

.pc-block {
  display: block;
}

.pc-inline {
  display: inline;
}

.pc-inline-block {
  display: inline-block;
}

.pc-table {
  display: table;
}

.sp-block {
  display: none;
}

.sp-inline {
  display: none;
}

.sp-inline-block {
  display: none;
}

.sp-table {
  display: none;
}

html {
  color: var(--font-color);
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  background-color: var(--body-color);
  color: var(--font-color);
  font-family: var(--font-family);
  font-feature-settings: "palt";
  font-size: var(--base-fontsize);
  font-weight: 500;
  line-break: strict;
  line-height: 2;
  overflow-wrap: anywhere;
  padding-top: var(--header-height);
  position: relative;
  width: 100%;
  word-break: normal;
}

a,
button {
  color: var(--link-color);
  transition: opacity 0.2s ease-in-out;
  text-decoration: none;
}
iframe {
  vertical-align: bottom;
}

img {
  height: auto;
/*  height: -webkit-fill-available; */
  vertical-align: bottom;
  width: 100%;
}

.header {
  background-color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid #e6e6e6;
  left: 0;
  padding-left: 50px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}
.header__inner {
  align-items: center;
  display: flex;
  height: var(--header-height);
  justify-content: space-between;
}
.header__title {
  max-width: 260px;
}
.header__nav-list {
  align-items: center;
  display: flex;
  gap: 2em;
}
.header__nav-item img {
  height: 63px;
  width: auto;
}
.header__nav-link--button {
  align-items: center;
  border: 1px solid #111;
  color: #111;
  display: flex;
  font-size: 1.6rem;
  font-weight: 700;
  height: 52px;
  justify-content: center;
  text-decoration: none;
  width: 150px;
}
.section-page-caution {
  background-color: #d62517;
  color: #fff;
  text-align: center;
}
.section-page-caution-text {
  border-bottom: 1px solid #fff;
  padding-block: 0.7em;
}
.section-page-caution-inner {
  font-size: 1.5rem;
}
.section-page-caution-inner p {
  line-height: 1.4;
}

.burger-btn {
  align-items: center;
  border-left: 0;
  border-right: 0;
  display: none;
  height: 37px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 15px;
  text-align: right;
  top: 21px;
  width: 37px;
  z-index: 10;
}

.menu-trigger,
.menu-trigger span {
  box-sizing: border-box;
  display: inline-block;
  transition: all 0.4s;
}

.menu-trigger {
  display: block;
  height: 19px;
  position: relative;
  width: 25px;
}

.menu-trigger span {
  background-color: #fff;
  border-radius: 100vw;
  height: 3px;
  left: 0;
  position: absolute;
  width: 100%;
}

.menu-trigger span:nth-of-type(1) {
  top: 0;
}

.menu-trigger span:nth-of-type(2) {
  top: 8px;
}

.menu-trigger span:nth-of-type(3) {
  bottom: 0;
  left: 0;
}

.header-sp-nav {
  background-color: #313232;
  color: #fff;
  display: none;
  padding: 13px 10px 10px;
  position: relative;
}
.header-sp-nav ul {
  display: flex;
  font-size: 1rem;
  font-weight: 700;
  gap: 14px;
  text-align: center;
}
.header-sp-nav ul img {
  display: block;
  margin-bottom: 2px;
  margin-inline: auto;
  width: 35px;
}
.header-sp-nav a {
  color: #fff;
  text-decoration: none;
}

.overlay-nav {
  background-color: #313232;
  color: #fff;
  display: none;
  height: 100vh;
/*24080200  height: 100svh; */
  left: 0;
  overflow: auto;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 4000;
}

/* 24080800 iphone対応 */
@supports(-webkit-touch-callout: none){
.overlay-nav {
  height: -webkit-fill-available;
  }
}
.overlay-nav a {
  color: #fff;
  text-decoration: none;
}
.overlay-nav-ttl {
  display: flex;
  font-size: 1.5rem;
  font-weight: 700;
  height: 40px;
/*24080200  height: 70px; */
  justify-content: flex-end;
  padding-block: 20px;
  padding-inline: 20px;
}
.overlay-nav-ttl .overlay-nav-close {
  height: 20px;
  position: fixed;
  right: 20px;
  top: 10px;
/*24080200  top: 20px; */
  width: 20px;
}
.overlay-nav-ttl .overlay-nav-close:before, .overlay-nav-ttl .overlay-nav-close::after {
  background: #fff;
  content: "";
  height: 25px;
  left: 50%;
  position: absolute;
  top: 50%;
  width: 3px;
}
.overlay-nav-ttl .overlay-nav-close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.overlay-nav-ttl .overlay-nav-close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.overlay-nav-menu {
  display: flex;
  width: 100%;
}
.overlay-nav-menu.bottom li {
  width: 100%;
}
.overlay-nav-menu.bottom li a {
  padding-block: 1em;
}
.overlay-nav-menu li {
  width: 50%;
}
.overlay-nav-menu li a {
  background-color: #000;
  display: grid;
  padding-block: 5px;
  place-items: center;
}
.overlay-nav-menu li.recruit a {
  background-color: #fff;
  color: #111;
  font-size: 1.5rem;
  height: 100%;
}
.overlay-nav-lists {
  padding-inline: 20px;
}
.overlay-nav-lists li {
  border-bottom: 1px solid #989999;
}
.overlay-nav-lists li a {
  align-items: center;
  display: flex;
  padding-left: 0.8em;
}
.overlay-nav-lists li a img {
  transform: translate(0, 1px);
}
.overlay-nav-lists ul:nth-child(1) {
  font-size: 1.8rem;
}
.overlay-nav-lists ul:nth-child(1) li a {
  font-weight: 700;
  padding-block: 1.4em;
}
.overlay-nav-lists ul:nth-child(1) li a img {
  margin-right: 0.8em;
  width: 37px;
}
.overlay-nav-lists ul:nth-child(2) {
  font-size: 1.5rem;
}
.overlay-nav-lists ul:nth-child(2) li:last-child {
  border-bottom: 0;
}
.overlay-nav-lists ul:nth-child(2) li a {
  font-weight: 400;
  padding-block: 0.6em;
}
.overlay-nav-lists ul:nth-child(2) li a img {
  margin-right: 0.3em;
  transform: translate(0, -2px);
  width: 25px;
}
.overlay-nav .takashimaya-nav {
  background-color: #313232;
}
.overlay-nav .takashimaya-nav ul {
  display: grid;
  grid-template-areas: "business business business business business business" "restaurant restaurant restaurant floor floor floor" "info info facility facility language language" "orikomi orikomi orikomi orikomi orikomi orikomi" "calendar calendar calendar calendar calendar calendar";
}
.overlay-nav .takashimaya-nav ul li {
  font-weight: 700;
}
.overlay-nav .takashimaya-nav ul li img {
  aspect-ratio: 1/1;
  width: 35px;
}
.overlay-nav .takashimaya-nav ul li .btn-icon {
  align-items: center;
  display: flex;
  font-size: 1.8rem;
  font-weight: 700;
  gap: 15px;
  justify-content: center;
}
.overlay-nav .takashimaya-nav ul li .btn-icon--vertical {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.overlay-nav .takashimaya-nav ul li.business {
  border-bottom: 1px solid #fff;
  font-size: 1.8rem;
  grid-area: business;
  height: 165px;
  place-content: center;
}
.overlay-nav .takashimaya-nav ul li.business dl {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: 400;
  margin-bottom: 0.5em;
  padding-inline: 2em;
}
.overlay-nav .takashimaya-nav ul li.business dl span {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 0.8;
}
.overlay-nav .takashimaya-nav ul li.business dl dd {
  text-align: center;
}
.overlay-nav .takashimaya-nav ul li.restaurant {
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  grid-area: restaurant;
}
.overlay-nav .takashimaya-nav ul li.floor {
  border-bottom: 1px solid #fff;
  grid-area: floor;
}
.overlay-nav .takashimaya-nav ul li.restaurant, .overlay-nav .takashimaya-nav ul li.floor {
  font-size: 1.4rem;
  height: 104px;
  place-content: center;
}
.overlay-nav .takashimaya-nav ul li.language {
  grid-area: language;
}
.overlay-nav .takashimaya-nav ul li.facility {
  border-right: 1px solid #fff;
  grid-area: facility;
}
.overlay-nav .takashimaya-nav ul li.info {
  border-right: 1px solid #fff;
  grid-area: info;
}
.overlay-nav .takashimaya-nav ul li.language, .overlay-nav .takashimaya-nav ul li.facility, .overlay-nav .takashimaya-nav ul li.info {
  border-bottom: 1px solid #fff;
  font-size: 1.2rem;
  height: 104px;
  place-content: center;
}
.overlay-nav .takashimaya-nav ul li.orikomi {
  border-bottom: 1px solid #fff;
  grid-area: orikomi;
  height: 78px;
  place-content: center;
}
.overlay-nav .takashimaya-nav ul li.calendar {
  grid-area: calendar;
  height: 60px;
  place-content: center;
}
.overlay-nav .takashimaya-nav ul li.calendar .btn-icon {
  font-size: 1.3rem;
}
.overlay-nav .takashimaya-nav ul li.calendar img {
  width: 35px;
}
.overlay-nav .takashimaya-nav ul a {
  color: #fff;
  text-decoration: none;
}

.topic-path ul, .header-gnav > ul, .section-page-caution-inner, .inner {
  margin-inline: auto;
  padding-left: 30px;
  padding-right: 30px;
  width: calc(var(--container-width) + 60px);
}

.main {
  position: relative;
  z-index: 10;
}
.main.secondary {
  padding-block: 100px;
}
.main.secondary.page-no-padding {
  padding-block: 0;
}
.main.secondary.page-no-padding-top {
  padding-top: 0;
}
.main.secondary.page-no-padding-bottom {
  padding-bottom: 0;
}
.main .container .contents {
  container-type: inline-size;
  grid-area: 1/2/2/3;
}
.main .container .aside {
  grid-area: 1/1/2/2;
}

.narrow-inner {
  margin-left: auto;
  margin-right: auto;
  width: var(--container-narrow-width);
}

.footer__top {
  background-color: #2b2c30;
  color: #fff;
  font-size: 1.5rem;
  padding-bottom: 82px;
}
.footer__top a {
  color: #fff;
  text-decoration: none;
}
.footer__navs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  line-height: 1.5;
  padding-bottom: 33px;
  padding-top: 80px;
}
.footer__navs ul {
  border-right: 1px solid #666;
  padding: 1em 1.8em;
}
.footer__navs ul:first-child {
  border-left: 1px solid #666;
}
.footer__navs li {
  margin-bottom: 1.2em;
}
.footer__navs li:last-child {
  margin-bottom: 0;
}
.footer__btn {
  text-align: center;
}
.footer__btn a {
  border: 1px solid #666;
  display: inline-block;
  font-size: 1.3rem;
  padding: 0.1em 0.7em;
}
.footer__copyright {
  background-color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 1.3rem;
  font-style: normal;
  font-weight: 300;
  padding: 30px 0;
  text-align: center;
}
.footer__copyright p {
  margin-bottom: 0.3em;
  margin-inline: auto;
  width: 260px;
}

.heading__1 {
  color: #111;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}
.heading__1:before {
  content: attr(data-subtitle);
  display: block;
  font-family: "Montserrat", sans-serif;
  font-family: "Roboto", sans-serif;
  font-size: 4rem;
  font-style: normal;
  font-weight: 800;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.2em;
  margin-inline: auto;
}

.heading__2 {
  border-bottom: 1px solid #8a8989;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1em;
  padding-bottom: 1em;
}

.heading__3, .heading__step {
  align-items: center;
  background-color: #d62517;
  color: #fff;
  display: flex;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 2em;
  padding: 0.7em 0.7em;
}
.heading__3:after, .heading__step:after {
  content: attr(data-subtitle);
  font-size: 1.5rem;
  font-weight: 400;
  margin-left: 1.5em;
}

.heading__4 {
  border-left: 14px solid #d62517;
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 2em;
  padding-block: 0.3em;
  padding-left: 0.5em;
}

.heading__5 {
  font-weight: 400;
  margin-bottom: 0.5em;
}
.heading__5:before {
  color: #d62517;
  content: "■";
  display: inline-block;
}

.heading__6 {
  border-left: 7px solid #d62517;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1em;
  padding-block: 0.3em;
  padding-left: 0.5em;
}

.heading__step {
  margin-bottom: 1em;
  padding-block: 13px;
}
.heading__step:before {
  background-color: #fff;
  color: #d62517;
  content: "STEP";
  display: inline-block;
  flex-shrink: 0;
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  margin-right: 0.7em;
  padding: 0.4em 0.8em;
}

.g-recaptcha {
  margin-bottom: 40px;
}

.g-recaptcha > div {
  margin-inline: auto;
}

.form-submit[disabled=disabled] {
  background-image: linear-gradient(110deg, #bbb 25%, #bbb 50%, #bbb 75%);
  color: #eee;
  cursor: default;
}

.btn-submit.form-back, .form-back.btn-primary {
  background-image: linear-gradient(110deg, #bbb 25%, #bbb 50%, #bbb 75%);
  color: #fff;
}

.form-nav {
  display: flex;
  gap: 40px;
  justify-content: center;
}
.form-nav button {
  width: 300px;
}

.form {
  margin-top: 100px;
}
.form .error {
  color: red;
  margin-left: 1em;
}
.form dl {
  margin-bottom: 3em !important;
}
.form dl dt {
  align-items: center;
  display: flex;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.5em;
}
.form dl dt span {
  border: 1px solid #d62517;
  border-radius: 3px;
  color: #d62517;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  margin-left: 0.5em;
  padding: 0 0.2em;
}
.form dl dt i {
  font-style: normal;
  margin-left: 2em;
}
.form .flex {
  align-items: center;
  display: flex;
  margin-bottom: 1.3em;
}
.form .flex.flex-wrap > p a {
  background-color: #f1f1f1;
  border-radius: 100vw;
  color: #333;
  margin-left: 2em;
  padding: 0.5em 1.5em;
  position: relative;
  text-decoration: none;
}
.form .flex.flex-wrap > p a:before {
  background-color: #333;
  -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
          clip-path: polygon(100% 50%, 0 0, 0 100%);
  content: "";
  display: block;
  height: 9px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translate(0, -50%);
  width: 6px;
}
.form .flex .century {
  margin-right: 0.5em;
}
.form .flex .year {
  margin-inline: 0.5em 2em;
}
.form .flex .month {
  margin-inline: 0.5em 2em;
}
.form .flex .day {
  margin-inline: 0.5em;
}
.form .caution {
  font-size: 1.4rem;
}
.form .zipcode .zipcodes {
  max-width: 265px;
}
.form .zipcode p {
  margin-right: 0.5em;
}
.form .zipcode .inputs {
  padding-left: 22px;
}
input[type=text],
input[type=email],
input[type=password] {
  background-color: #f1f1f1;
  border: 1px solid #f1f1f1;
  border-radius: 5px;
  font-size: 1.6rem;
  height: 70px;
  outline: none;
  padding: 1em;
  transition: box-shadow 0.3s ease-in-out;
  width: 100%;
}
input[type=text]:focus-visible,
input[type=email]:focus-visible,
input[type=password]:focus-visible {
  box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.1);
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=password]::-moz-placeholder {
  color: #b0b0b0;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=password]::placeholder {
  color: #b0b0b0;
}
input[type=text].small,
input[type=email].small,
input[type=password].small {
  max-width: 95px;
}
input[type=text].middle,
input[type=email].middle,
input[type=password].middle {
  max-width: 600px;
}
input[type=text].full,
input[type=email].full,
input[type=password].full {
  max-width: 100%;
}

textarea {
  background-color: #f1f1f1;
  border: 1px solid #f1f1f1;
  border-radius: 5px;
  font-size: 1.6rem;
  height: 200px;
  outline: none;
  padding: 1em 1.5em;
  transition: box-shadow 0.3s ease-in-out;
  width: 100%;
}
textarea:focus-visible {
  box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.1);
}
textarea::-moz-placeholder {
  color: #b0b0b0;
}
textarea::placeholder {
  color: #b0b0b0;
}

input[type=file] {
  background-color: #f1f1f1;
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  color: #999;
  cursor: pointer;
  min-width: 525px;
  padding-right: 0.5rem;
}

::-webkit-file-upload-button {
  background-color: #f1f1f1;
  border: none;
  border-right: 0;
  color: rgb(31, 41, 55);
  cursor: pointer;
  margin-right: 1rem;
  padding: 2em;
  padding: 1em;
}

::file-selector-button,
::-webkit-file-upload-button {
  background-color: #f1f1f1;
  border: none;
  border-right: 0;
  color: rgb(31, 41, 55);
  cursor: pointer;
  margin-right: 1rem;
  padding: 2em;
  padding: 1em;
}

.form-select {
  height: 70px;
  max-width: 600px;
  position: relative;
  width: 100%;
}
.form-select:before {
  background-color: #b0b0b0;
  content: "";
  display: block;
  height: 100%;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 67px;
}
.form-select:after {
  background-color: #333;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
  content: "";
  display: block;
  height: 13px;
  pointer-events: none;
  position: absolute;
  right: 33.5px;
  top: 50%;
  transform: translate(50%, -50%);
  width: 15px;
}
.form-select select {
  background-color: #f1f1f1;
  border-radius: 6px;
  color: #333;
  font-size: 1.6rem;
  font-weight: 400;
  height: 70px;
  padding: 11px 30px 11px 20px;
  width: 100%;
}

.form-checkbox {
  align-items: center;
  cursor: pointer;
  display: flex;
  position: relative;
}
.form-checkbox input[type=checkbox] {
  border-width: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.form-checkbox input[type=checkbox]:checked + span.form-checkbox-parts {
  display: grid;
  place-items: center;
}
.form-checkbox input[type=checkbox]:checked + span.form-checkbox-parts:after {
  border-bottom: 2px solid #d62517;
  border-left: 2px solid #d62517;
  content: "";
  display: block;
  height: 5px;
  transform: rotate(-45deg);
  width: 10px;
}
.form-checkbox input[type=checkbox]:focus + span.form-checkbox-parts {
  box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.1);
}
.form-checkbox-parts {
  border: 1px solid #ccc;
  border-radius: 5px;
  display: block;
  height: 20px;
  position: relative;
  width: 20px;
}
.form-checkbox-label {
  padding-left: 0.5em;
}

.form-checkbox-2 {
  align-items: center;
  cursor: pointer;
  display: flex;
  margin-left: 2em;
  position: relative;
}
.form-checkbox-2:first-child {
  margin-left: 0;
}
.form-checkbox-2 input[type=checkbox] {
  border-width: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.form-checkbox-2 input[type=checkbox]:checked + span.form-checkbox-2-parts {
  display: grid;
  place-items: center;
}
.form-checkbox-2 input[type=checkbox]:checked + span.form-checkbox-2-parts:after {
  background-color: #d62517;
  content: "";
  display: block;
  height: 15px;
  width: 15px;
}
.form-checkbox-2 input[type=checkbox]:focus + span.form-checkbox-2-parts {
  box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.1);
}
.form-checkbox-2-parts {
  background-color: #f1f1f1;
  border: 1px solid #f1f1f1;
  display: block;
  height: 40px;
  position: relative;
  width: 40px;
}
.form-checkbox-2-label {
  padding-left: 0.5em;
}

.form-radio {
  align-items: center;
  cursor: pointer;
  display: flex;
  margin-left: 2em;
}
.form-radio:first-child {
  margin-left: 0;
}
.form-radio input[type=radio] {
  border-width: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.form-radio input[type=radio]:checked + span.form-radio-parts {
  display: grid;
  place-items: center;
}
.form-radio input[type=radio]:checked + span.form-radio-parts:after {
  background-color: #d62517;
  border-radius: 100%;
  content: "";
  display: block;
  height: 15px;
  width: 15px;
}
.form-radio input[type=radio]:focus + span.form-radio-parts {
  box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.1);
}
.form-radio-parts {
  background-color: #f1f1f1;
  border: 1px solid #f1f1f1;
  border-radius: 100%;
  display: block;
  height: 40px;
  position: relative;
  width: 40px;
}
.form-radio-label {
  margin-left: 0.5em;
}

.form-file::-webkit-file-upload-button {
  background: red;
  border: 0;
  border-radius: 10em;
  color: white;
  font-size: 14px;
  font-weight: bold;
  padding: 8px 16px;
  text-align: center;
}

.form-file::file-selector-button {
  background: red;
  border: 0;
  border-radius: 10em;
  color: white;
  font-size: 14px;
  font-weight: bold;
  padding: 8px 16px;
  text-align: center;
}

.date-select {
  margin-bottom: 2em;
}
.date-select p {
  font-weight: 700;
  margin-bottom: 0 !important;
}
.date-select-flex {
  display: flex;
}
.date-select-flex .form-select {
  max-width: 230px;
}
.date-select-flex .form-select:not(:first-child) select {
  border-radius: 0;
}

.btn-submit, .btn-primary, .btn-more, .btn, .btn-small, btn-contact {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: 0;
  border-radius: 0;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 0;
  touch-action: manipulation;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.btn-more {
  color: #111;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
}
.btn-more img {
  margin-left: 0.2em;
  transform: translate(0, -2px);
  width: 7px;
}
.btn-submit, .btn-primary {
  background-color: #ffffff;
  border: 1px solid;
  border-color: #d62517;
  color: #d62517;
  display: grid;
  font-size: 1.6rem;
  height: 65px;
  margin-inline: auto;
  max-width: 300px;
  place-items: center;
  text-align: center;
  text-decoration: none;
  width: 100%;
}
.btn-primary {
  background-image: url(../img/common/ico-bullet-1.webp?24080500);
  background-position: right 20px center;
  background-repeat: no-repeat;
  background-size: 10px auto;
  display: grid;
  font-size: 2rem;
  line-height: 1.5;
  place-items: center;
  text-decoration: none;
  width: 271px;
}
.btn-primary.large {
  font-size: 2rem;
  margin-inline: auto;
  max-width: 375px;
  width: 100%;
}
.btn-primary.toolarge {
  font-size: 2rem;
  margin-inline: auto;
  max-width: 590px;
  width: 100%;
}
.btn-small {
  background-color: #d62517;
  border-radius: 100vw;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0.7em 2em;
  text-decoration: none;
}

/*ADD_24080300*/
.btn-submit {
  background-color: #FFFFFF;
  border: 1px solid;
  border-color: #d62517;
  color: #d62517;
  display: grid;
  font-size: 1.6rem;
  height: 65px;
  margin-inline: auto;
  max-width: 100%;
  place-items: center;
  text-align: center;
  text-decoration: none;
  width: 375px;
}
.btn-contact {
  background-color: #FFF4F3;
  border: 3px solid;
  border-color: #d62517;
  color: #d62517;
  display: grid;
  font-size: 1.6rem;
  height: 65px;
  margin-inline: auto;
  max-width: 100%;
  place-items: center;
  text-align: center;
  text-decoration: none;
  width: 375px;
}
.btn-contact {
  background-image: url(../img/common/ico-bullet-1.webp?24080500), url(../img/common/ico-mail.webp?24080500);
  background-position: right 20px center, left 20px center;
  background-repeat: no-repeat, no-repeat;
  background-size: 10px auto ,20px auto;
  display: grid;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  place-items: center;
  text-decoration: none;
  width: 375px;
}
.btn-contact.large {
  font-size: 2rem;
  margin-inline: auto;
  max-width: 375px;
  width: 100%;
}
.btn-contact.toolarge {
  font-size: 2rem;
  margin-inline: auto;
  max-width: 600px;
  height: 150px;
  width: 100%;
}

.btn-submit {
  background-color: #FFFFFF;
  border: 1px solid;
  border-color: #d62517;
  color: #d62517;
  display: grid;
  font-size: 1.6rem;
  height: 65px;
  margin-inline: auto;
  max-width: 100%;
  place-items: center;
  text-align: center;
  text-decoration: none;
  width: 375px;
}
.btn-reserve {
  background-image: url(../img/common/ico-bullet-1.webp);
  background-position: right 20px center;
  background-repeat: no-repeat;
  background-size: 15px auto;
  background-color: #FFF4F3;
  border: 3px solid;
  border-color: #d62517;
  color: #d62517;
  display: grid;
  font-size: 1.6rem;
  height: 65px;
  margin-inline: auto;
  max-width: 100%;
  place-items: center;
  text-align: center;
  text-decoration: none;
  width: 375px;
}
.btn-reserve {
  display: block;
  font-size: 2rem;
  line-height: 1.5;
  place-items: center;
  text-decoration: none;
  padding-top: 40px;
  width: 375px;
}
.btn-reserve.large {
  font-size: 2rem;
  margin-inline: auto;
  max-width: 375px;
  width: 100%;
}
.btn-reserve.toolarge {
  font-size: 2rem;
  margin-inline: auto;
  max-width: 600px;
  height: 150px;
  width: 100%;
}

.link-detail {
  color: #d62517;
  text-decoration: none;
}
.link-detail span {
  color: #d62517;
  margin-left: 1em;
}

.link-text, .link-text-2 {
  color: #d62517;
  text-decoration: none;
}
.link-text img, .link-text-2 img {
  height: auto;
  margin-left: 0.5em;
  transform: translate(0, -2px);
  vertical-align: middle;
  width: 7px;
}

.link-text-2 img {
  margin-left: 0.8em;
  transform: translate(0, -2px);
  width: 12px;
}

.ico-bullet {
  position: relative;
}
.ico-bullet:before {
  background-color: blue;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  content: "";
  display: inline-block;
  height: 10px;
  vertical-align: middle;
  width: 6px;
}

.table-1 table, .table-4 table, .table-3 table, .table-2 table {
  text-align: left;
  width: 100%;
}
.table-1 table th, .table-4 table th, .table-3 table th, .table-2 table th,
.table-1 table td,
.table-4 table td,
.table-3 table td,
.table-2 table td {
  border: 1px solid #8a8989;
  border-left: 0;
  border-right: 0;
  line-height: 2;
  padding-block: 1.2em;
  vertical-align: middle;
}
.table-1 table th, .table-4 table th, .table-3 table th, .table-2 table th {
  color: #d62517;
  font-size: 2rem;
  font-weight: 700;
  width: 436.5px;
}
.table-1 table td, .table-4 table td, .table-3 table td, .table-2 table td {
  font-size: 1.5rem;
}
.table-2 table th,
.table-2 table td {
  line-height: 1.5;
  padding-block: 2.5em;
}
.table-2 table tr:first-child th,
.table-2 table tr:first-child td {
  border-top: 0;
  padding-top: 1em;
  font-weight: 700;
}
.table-2 table th {
  color: #222;
  font-size: 1.8rem;
  /*font-weight: 400;*//*09197階催しのため変更*/
}
.table-2 table th span {
  display: block;
  font-weight: 700;
}
.table-2 table td {
  font-size: 1.8rem;
  font-weight: 700;
}
.table-3 table th,
.table-3 table td {
  line-height: 1.5;
  padding-block: 2.5em;
}
.table-3 table th dl {
  margin: 0;
}
.table-3 table th dt {
  color: #d62517;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.3em;
}
.table-3 table th dd {
  color: #333;
  font-size: 1.5rem;
  font-weight: 400;
}
.table-3 table th dd.none {
  display: none;
}
.table-3 table td {
  font-size: 1.5rem;
  line-height: 2;
}
.table-3 table td .tel-link {
  color: #d62517;
  text-decoration: none;
}
.table-4 table th,
.table-4 table td {
  border: 1px solid #e6e6e6;
  padding: 1.5em 2em;
}
.table-4 table th {
  background-color: #fff4f3;
  color: #222;
  font-weight: 400;
  padding-inline: 1.5em;
  width: 310px;
}
.table-4 table td dl {
  margin-bottom: 0;
}
.table-4 table td dt {
  color: #d62517;
  font-size: 1.8rem;
}
.table-5 table {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  width: 100%;
}
.table-5 table.col-2 thead th {
  width: 50%;
}
.table-5 table.col-3 thead tr:first-child th {
  width: 33.3333333333%;
}
.table-5 table.col-3 thead tr:nth-child(2) th {
  width: 16.6666666667%;
}
.table-5 table th,
.table-5 table td {
  border: 1px solid #999999;
  line-height: 1.2;
  padding: 1em;
  vertical-align: middle;
}
.table-5 table th a,
.table-5 table td a {
  color: #d62517;
  text-decoration: none;
}
.table-5 table th span,
.table-5 table td span {
  color: #d62517;
}
.table-5 table th.small,
.table-5 table td.small {
  font-size: 1.2rem;
}
.table-5 table th {
  background-color: #fff4f3;
}
.page-hero .inner {
  align-items: center;
  display: flex;
  height: 200px;
  justify-content: center;
}
/*24080200*/
@media screen and (max-width:640px){
  .page-hero .inner {
    align-items: center;
    display: flex;
    height: 110px;
    justify-content: center;
  }
}
.page-hero-ttl {
  color: #111;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.page-hero-ttl:after {
  content: attr(data-subtitle);
  display: block;
  font-family: "Roboto", sans-serif;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  font-weight: 400;
  line-height: 1;
  margin-inline: auto;
  margin-top: 0.2em;
}

.pager {
  margin-top: 76px;
}
.pager ul {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.pager ul li a {
  align-items: center;
  background-color: #f1f1f1;
  border-radius: 100%;
  color: #d52318;
  display: flex;
  font-size: 1.6rem;
  font-weight: 700;
  height: 45px;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease-out;
  width: 45px;
}
.pager ul li.current a, .pager ul li:hover a {
  background-color: #d52318;
  color: #fff;
}

.tab-nav {
  color: #333;
  display: flex;
  gap: 30px;
}
.tab-nav li {
  cursor: pointer;
}
.tab-nav li.on {
  color: DeepSkyBlue;
}
.tab-wrap {
  background: White;
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0 20px;
}
.tab-content {
  color: #333;
  height: 0;
  opacity: 0;
  padding: 0 0;
  pointer-events: none;
  transform: translateX(-50px);
  transition: transform 0.3s 80ms, opacity 0.3s 80ms;
  width: 100%;
}
.tab-content.on {
  height: auto;
  opacity: 1;
  order: 1;
  pointer-events: auto;
  transform: translateX(50px);
  transform: translateX(0);
}
.tab-content.on ~ .tab-content {
  transform: translateX(50px);
}

.js-accordion-content {
  height: 0;
  overflow: hidden;
  transition: all 0.5s;
}

.text-around {
  color: #222;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.94;
}
.text-around-box {
  margin-bottom: 4em;
}
.text-around-box dl {
  margin-bottom: 2em;
}
.text-around-box dt {
  font-size: 2rem;
  font-weight: 700;
}
.text-around-box dd p {
  margin-bottom: 1.5em;
}
.text-around-box dd ul {
  margin-block: 1.5em;
}
.text-around-box-list-1 {
  margin-block: 1.5em;
}
.text-around-box-list-1 li {
  list-style: decimal;
  margin-left: 1.5em;
}
.text-around-box-content p {
  margin-bottom: 2em;
}
.text-around-box-content p.signature {
  text-align: right;
}
.text-around-box-text {
  font-size: 1.5rem;
  margin-bottom: 3em;
}
.text-around-box .box {
  margin-bottom: 4em;
}
.text-around-box .box .heading__4 {
  margin-bottom: 1.5em;
}
.text-around-box .box .img-1 {
  padding-inline: 6em;
}
.text-around-box .box .img-2 {
  margin-bottom: 5em;
  margin-inline: auto;
  max-width: 686px;
  padding-inline: 2em;
}
.text-around-box .box .img-mamoru {
  margin-bottom: 5em;
  margin-inline: auto;
  max-width: 1010px;
  padding-inline: 2em;
}
.text-around-box .box p {
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 1.5em;
}
.text-around-box .message {
  text-align: center;
}
.text-around-box .message .message-1 {
  font-size: 1.5rem;
  margin-bottom: 8em;
}
.text-around-box .message .message-1 span {
  font-size: 2rem;
  font-weight: 700;
}
.text-around-box .message dl {
  margin-bottom: 4em;
}
.text-around-box .message dt {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 1.5em;
}
.text-around-box .message .message-2 {
  border-block: 2px solid #222;
  font-size: 1.5rem;
  line-height: 2.1333333333;
  margin-bottom: 8em;
  margin-inline: auto;
  max-width: 656.5px;
  padding: 3em 2em;
}
.text-around-navs {
  margin-bottom: 50px;
}
.text-around-navs ul {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.text-around-navs ul a {
  align-items: center;
  background-color: #fff;
  background-image: url(../img/common/ico-pagenav.webp?24080500);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 50px;
  border: 1px solid #d62517;
  color: #d62517;
  display: flex;
  font-size: 1.5rem;
  font-weight: 700;
  height: 50px;
  min-width: 300px;
  padding: 0 1.5em;
  padding-right: 70px;
  text-decoration: none;
}
.text-around-navs a.right {
  align-items: center;
  background-color: #fff;
  background-image: url(../img/common/ico-pagenav2.webp?24080500);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 50px;
  border: 1px solid #d62517;
  color: #d62517;
  display: flex;
  font-size: 1.5rem;
  font-weight: 700;
  height: 50px;
  min-width: 300px;
  padding: 0 1.5em;
  padding-right: 70px;
  text-decoration: none;
}
.text-around-box-number-wrapper {
  counter-reset: number 0;
  margin-bottom: 6em;
}
.text-around-box-number-wrapper .heading__2:before {
  content: counter(number, upper-roman) " .";
  counter-increment: number 1;
  margin-right: 0.3em;
}

.text-around-box-number-lists {
  counter-reset: number 0;
}
.text-around-box-number-lists li {
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 2em;
  padding-left: 50px;
  position: relative;
}
.text-around-box-number-lists li:before {
  background-color: #fff4f3;
  border: 1px solid #d62517;
  border-radius: 100vw;
  color: #d62517;
  content: counter(number);
  counter-increment: number 1;
  display: grid;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 700;
  height: 40px;
  left: 0;
  place-items: center;
  position: absolute;
  top: -0.2em;
  width: 40px;
}

.text-around-box-dl > dl {
  border-bottom: 1px solid #e6e6e6;
  display: grid;
  font-size: 1.5rem;
  grid-template-columns: 145px 1fr;
  margin-bottom: 0;
  padding: 1em 0.5em;
}
.text-around-box-dl > dl:first-child {
  border-top: 1px solid #e6e6e6;
}
.text-around-box-dl > dl dt {
  font-size: 1.5rem;
  font-weight: 400;
}
.text-around-box-dl > dl dd > dl {
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 0;
  padding: 1em 0.5em;
}
.text-around-box-dl > dl dd > dl:first-child {
  border-top: 0;
  padding-top: 0;
}
.text-around-box-dl > dl dd > dl:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.text-around-box-dl > dl dd > dl dt {
  font-weight: 700;
}

.desc-text {
  margin-bottom: 3em;
}

.bg-pink {
  background-color: #fff4f3;
}

.header-gnav {
  background-color: #313232;
  color: #fff;
  padding-block: 13px;
}
.header-gnav > ul {
  display: grid;
  font-size: 1.8rem;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.header-gnav > ul > li {
  border-right: 1px solid #989999;
}
.header-gnav > ul > li:first-child {
  border-left: 1px solid #989999;
}
.header-gnav > ul > li.other {
  padding-inline: 30px;
}
.header-gnav > ul > li.other ul {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
.header-gnav > ul > li.other li {
  border-bottom: 1px solid #989999;
  padding-bottom: 5px;
}
.header-gnav > ul > li.other li:first-child {
  margin-top: -7px;
}
.header-gnav > ul > li.other li:nth-child(2) {
  padding-top: 3px;
}
.header-gnav > ul > li.other li:last-child {
  border-bottom: 0;
  margin-bottom: -8px;
  padding-top: 3px;
}
.header-gnav > ul > li.other a {
  align-items: center;
  display: flex;
  font-size: 1.5rem;
  font-weight: 400;
  padding: 0;
}
.header-gnav > ul > li.other a .img {
  margin: 0;
  margin-right: 15px;
  width: 32px;
}
.header-gnav > ul a {
  color: #fff;
  display: block;
  font-weight: 700;
  line-height: 1.2;
  padding-block: 12px;
  text-align: center;
  text-decoration: none;
}
.header-gnav > ul a span {
  display: block;
}
.header-gnav > ul a .img {
  margin-bottom: 5px;
  margin-inline: auto;
  width: 50px;
}

.topic-path {
  border: 1px solid #e6e6e6;
}
.topic-path ul {
  align-items: center;
  display: flex;
  font-size: 1.5rem;
  padding-block: 8px;
}
.topic-path ul li {
  display: flex;
}
.topic-path ul li:before {
  background-color: #999;
  content: "";
  display: block;
  height: 25px;
  margin-inline: 1.3em;
  transform: translate(0, 2px) rotate(30deg);
  width: 1px;
}
.topic-path ul li:first-child:before {
  display: none;
}
.topic-path ul a {
  color: #999;
  text-decoration: none;
}

.floor-cards {
  display: grid;
  gap: 60px 30px;
  grid-template-columns: 1fr 1fr;
}
.floor-cards .floor-card {
  border: 1px solid #e6e6e6;
  padding: 30px 30px 20px;
}
.floor-cards .floor-card .card-detail figure {
  margin-bottom: 20px;
}
.floor-cards .floor-card .card-detail dl {
  align-items: center;
  display: flex;
  gap: 10px;
  margin-bottom: 0.8em;
}
.floor-cards .floor-card .card-detail dl dt {
  aspect-ratio: 1/1;
  background-color: #d62517;
  color: #fff;
  display: grid;
  flex-shrink: 0;
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  place-items: center;
  width: 50px;
}
.floor-cards .floor-card .card-detail dl dd {
  font-size: 2rem;
  font-weight: 700;
}
.floor-cards .floor-card .card-detail p {
  font-size: 1.5rem;
  line-height: 2;
  min-height: 10em;
}
.floor-cards .floor-card .card-thumbs {
  margin-bottom: 1em;
}
.floor-cards .floor-card .card-thumbs ul {
  display: grid;
  font-size: 1.2rem;
  grid-template-columns: 1fr 1fr 1fr;
  line-height: 1.5;
  column-gap: 10px;
}
.floor-cards .floor-card .card-thumbs ul figcaption {
  margin-top: 0.5em;
  min-height: 4.5em;
}
.floor-cards .floor-card .card-table table {
  font-size: 1.5rem;
  text-align: left;
  width: 100%;
}
.floor-cards .floor-card .card-table table th,
.floor-cards .floor-card .card-table table td {
  border-bottom: 1px solid #e6e6e6;
  border-top: 1px solid #e6e6e6;
  font-weight: 400;
  padding-block: 0.2em;
  vertical-align: middle;
}
.floor-cards .floor-card .card-table p {
  font-size: 1.5rem;
  margin-top: 0.8em;
  text-align: right;
}
.floor-cards .floor-card .card-table p a {
  color: #d62517;
  text-decoration: none;
}
.floor-cards .floor-card .card-table p img {
  height: auto;
  margin-left: 0.6em;
  transform: translate(0, -1px);
  vertical-align: middle;
  width: 7px;
}
.floor-cards.col-3 {
  gap: 22.5px;
  grid-template-columns: 1fr 1fr 1fr;
}
.floor-cards.col-3 .card-title {
  font-size: 2rem;
  margin-bottom: 0.5em;
}
.floor-cards.col-3 .card-table {
  border-top: 1px solid #e6e6e6;
}

@keyframes splide-loading {
  0% {
    transform: rotateZ(0);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide__list_info {
  justify-content: center;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s infinite linear;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__play {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.visual {
  display: grid;
  grid-template-columns: 788px 1fr;
  height: 788px;
  margin-inline: auto;
  overflow: hidden;
  width: 1180px;
/*24080200
  display: grid;
  grid-template-columns: 936px 1fr;
  height: 936px;
  margin-inline: auto;
  overflow: hidden;
  width: 1400px;
*/
}
.visual .visual-slider .splide__slide {
  line-height: 1;
}
.visual .visual-slider .splide__slide span {
  aspect-ratio: 1/1;
  display: block;
  width: 100%;
}

.visual .visual-slider .splide__slide img {
  height: 100%;
/*24072900
  -o-object-fit: cover;
     object-fit: cover;
*/

  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}
.visual .visual-slider .splide__arrows {
  position: relative;
}
.visual .visual-slider .splide__arrows .splide__arrow {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 20px;
  position: absolute;
  top: 0;
  transform: translate(0, 4px);
  width: 11px;
  z-index: 10;
}
.visual .visual-slider .splide__arrows .splide__arrow svg {
  display: none;
}
.visual .visual-slider .splide__arrows .splide__arrow--prev {
  background-image: url(../img/common/ico-prev.webp?24080500);
  left: 0;
}
.visual .visual-slider .splide__arrows .splide__arrow--next {
  background-image: url(../img/common/ico-next.webp?24080500);
  right: 0;
}
.visual .takashimaya-nav {
  background-color: #313232;
}
.visual .takashimaya-nav ul {
  display: grid;
  grid-template-areas: "business business business business business business" "restaurant restaurant restaurant floor floor floor" "info info facility facility language language" "orikomi orikomi orikomi orikomi orikomi orikomi" "calendar calendar calendar calendar calendar calendar";
}
.visual .takashimaya-nav ul li {
  font-weight: 700;
}
.visual .takashimaya-nav ul li img {
  aspect-ratio: 1/1;
  width: 43px;
/*24080200  width: 54px; */
}
.visual .takashimaya-nav ul li .btn-icon {
  align-items: center;
  display: flex;
  font-size: 2.5rem;
  font-weight: 700;
  gap: 15px;
  justify-content: center;
}
.visual .takashimaya-nav ul li .btn-icon--vertical {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.visual .takashimaya-nav ul li.business {
  border-bottom: 2px solid #fff;
  font-size: 2.4rem;
/*24080200  font-size: 3rem; */
  grid-area: business;
  height: 245px;
/*24080200  height: 284px; */
  place-content: center;
}
.visual .takashimaya-nav ul li.business dl {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: 400;
  margin-bottom: 1em;
  padding-inline: 2em;
}
.visual .takashimaya-nav ul li.business dl span {
  font-size: 5.4rem;
/*24080200  font-size: 6.8rem; */
  font-weight: 700;
  line-height: 0.8;
}
.visual .takashimaya-nav ul li.restaurant {
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  grid-area: restaurant;
}
.visual .takashimaya-nav ul li.floor {
  border-bottom: 2px solid #fff;
  grid-area: floor;
}
.visual .takashimaya-nav ul li.restaurant, .visual .takashimaya-nav ul li.floor {
  font-size: 1.7rem;
/*24080200  font-size: 2.2rem; */
  height: 155px;
/*24080200  height: 185px; */
  place-content: center;
}
.visual .takashimaya-nav ul li.language {
  grid-area: language;
}
.visual .takashimaya-nav ul li.facility {
  border-right: 2px solid #fff;
  grid-area: facility;
}
.visual .takashimaya-nav ul li.info {
  border-right: 2px solid #fff;
  grid-area: info;
}
.visual .takashimaya-nav ul li.language, .visual .takashimaya-nav ul li.facility, .visual .takashimaya-nav ul li.info {
  border-bottom: 2px solid #fff;
  font-size: 1.4rem;
/*24080200  font-size: 1.8rem; */
  height: 155px;
/*24080200  height: 185px; */
  place-content: center;
}
.visual .takashimaya-nav ul li.orikomi {
  border-bottom: 2px solid #fff;
  grid-area: orikomi;
  height: 155px;
/*24080200  height: 185px; */
  place-content: center;
}
.visual .takashimaya-nav ul li.calendar {
  grid-area: calendar;
  height: 78px;
/*24080200  height: 93px; */
  place-content: center;
}
.visual .takashimaya-nav ul a {
  color: #fff;
  text-decoration: none;
}

.thumbs-slider {
  background-color: #f5f5f5;
}
.thumbs-slider .inner {
  margin-inline: auto;
  padding-block: 30px 25px;
  width: 404px;
}
.thumbs-slider .splide__arrows {
  position: relative;
}
.thumbs-slider .splide__arrows .splide__arrow {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 52px;
  position: absolute;
  top: 0;
  transform: translate(0, 23px);
  width: 52px;
  z-index: 10;
}
.thumbs-slider .splide__arrows .splide__arrow svg {
  display: none;
}
.thumbs-slider .splide__arrows .splide__arrow--prev {
  background-image: url(../img/common/btn-slide-prev.webp?24080500);
  left: -100px;
}
.thumbs-slider .splide__arrows .splide__arrow--next {
  background-image: url(../img/common/btn-slide-next.webp?24080500);
  right: -100px;
}
.thumbs-slider .splide__slide {
  aspect-ratio: 1/1;
  line-height: 1;
  position: relative;
  width: 100px;
}
.thumbs-slider .splide__slide.is-active:before {
  box-shadow: inset 0px 0px 0px 5px rgb(211, 1, 1);
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.thumbs-slider .splide__slide span {
  aspect-ratio: 1/1;
  display: block;
  width: 100%;
}
.thumbs-slider .splide__slide.is-active img {
  display: block;
}
.thumbs-slider .splide__slide img {
  height: 100%;
/*24072900
  -o-object-fit: cover;
     object-fit: cover;
*/
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}

.important-news {
  padding-block: 50px;
}
.important-news.secondary {
  padding-block: 0;
}
.important-news-wrapper {
  border: 1px solid #e6e6e6;
}
.important-news-wrapper .inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.important-news .info {
  padding-block: 8px;
  text-align: center;
  width: 635px;
}
.important-news .info .splide__slide {
  max-width: 100%; /* 親要素の幅を超えないようにする */
  overflow: hidden;
  padding-inline: 26px;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%; /* または任意の幅 */
}
.important-news .info a {
  color: #d62517;
  text-decoration: none;
}
.important-news .info .splide__arrows {
  position: relative;
}
.important-news .info .splide__arrows .splide__arrow {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 20px;
  position: absolute;
  top: 0;
  transform: translate(0, 4px);
  width: 11px;
  z-index: 10;
}
.important-news .info .splide__arrows .splide__arrow svg {
  display: none;
}
.important-news .info .splide__arrows .splide__arrow--prev {
  background-image: url(../img/common/ico-prev.webp?24080500);
  left: 0;
}
.important-news .info .splide__arrows .splide__arrow--next {
  background-image: url(../img/common/ico-next.webp?24080500);
  right: 0;
}
.important-news p {
  text-align: right;
}
.important-news .ttl {
  font-size: 1.5rem;
  font-weight: 700;
}
.important-news .ttl img {
  height: auto;
  margin-right: 2px;
  transform: translate(0, -4px);
  width: 22px;
}

.section-pickup {
  padding-block: 80px 100px;
}
.section-pickup .heading__1 {
  margin-bottom: 1.2em;
}

.pickup__navs {
  align-items: flex-end;
  display: flex;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 2rem;
  gap: 52px;
  justify-content: center;
  margin-bottom: 50px;
}
.pickup__navs a {
  background-color: #fff;
  border: 1px solid #c1c1c1;
  border-radius: 5px;
  color: #999;
  display: block;
  min-width: 200px;
  padding: 4px;
  text-align: center;
}
.pickup__navs a.btn-date.active {
  border: 1px solid #d62517;
  color: #d62517;
  min-width: 246px;
}
.pickup__navs a.btn-date.active span {
  font-size: 3rem;
}
.pickup__navs i {
  font-style: normal;
}

.pickup__card {
  background-color: #fff;
  padding: 20px 16px;
}
.pickup__card.food .pickup__card-ttl {
  border-color: #c02a43;
}
.pickup__card.cosme .pickup__card-ttl {
  border-color: #be5d83;
}
.pickup__card.ladies .pickup__card-ttl {
  border-color: #b9495c;
}
.pickup__card.ladiesgoods .pickup__card-ttl {
  border-color: #da5657;
}
.pickup__card.mens .pickup__card-ttl {
  border-color: #56778c;
}
.pickup__card.kids .pickup__card-ttl {
  border-color: #d97b1f;
}
.pickup__card.living .pickup__card-ttl {
  border-color: #5d7b65;
}
.pickup__card.other .pickup__card-ttl {
  border-color: #846259;
}
.pickup__card-lists {
  display: grid;
  gap: 55px 20px;
  grid-template-columns: 1fr 1fr;
}
.pickup__card-meta {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
}
.pickup__card-ttl {
  border-left: 15px solid #d62517;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 20px;
  padding-left: 0.7em;
}
.pickup__card-ttl:before {
  content: attr(data-subtitle);
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-size: 4rem;
  font-style: normal;
  font-weight: 700;
  margin-right: 0.4em;
  transform: translate(0, 1px);
}
.pickup__card-figures {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.pickup__card-figure {
  width: calc((100% - 14px) / 3);
}
.pickup__card-figure figure div {
  aspect-ratio: 1/1;
  margin-bottom: 0.5em;
  width: 100%;
}
.pickup__card-figure figure div img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}
.pickup__card-figure figure figcaption {
  color: #d62517;
  font-size: 1.2rem;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: calc(100% - 1em);
}

.section-link {
  padding-block: 190px 130px;
}
.section-link .link-box {
  margin-bottom: 30px;
}
.section-link .link-box ul {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-inline: auto;
}
.section-link .link-box ul li {
  height: 208px;
  width: 374px;
}
.section-link .link-box ul li a {
  align-items: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  width: 100%;
}
.section-link .link-box ul li a dl {
  transform: translate(0, 0.5em);
}
.section-link .link-box ul li a dt {
  font-family: "Roboto", sans-serif;
  font-size: 3rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0.5em;
}
.section-link .link-box ul li a .btn-more {
  color: #fff;
}
.section-link .link-box ul li a .btn-more img {
  filter: brightness(0) saturate(100%) invert(98%) sepia(2%) saturate(1166%) hue-rotate(167deg) brightness(116%) contrast(100%);
}
.section-link .bnr-box ul {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.section-link .bnr-box ul li {
  width: 150px;
}

.section-information {
  margin-inline: auto;
  padding-bottom: 150px;
  width: 1400px;
}
.section-information .heading__1 {
  margin-bottom: 2em;
}
.section-information .info-bnr-box .splide__list {
  display: flex !important;
}

/*トップ 中バナー 表示割合*/
.section-information .info-bnr-box .splide__list .splide__slide {
  width: 25%;
}

.section-sns {
  padding-block: 80px 100px;
}
.section-sns .sns-link-box {
  margin-bottom: 100px;
}
.section-sns .sns-link-box ul {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.section-sns .sns-link-box ul li {
  width: 40px;
}
.section-sns .heading__1 {
  margin-bottom: 1.5em;
}
.section-sns .instagram-lists {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr 1fr;
  margin-inline: auto;
  max-width: 990px;
}

.section-card {
  padding-block: 150px 150px;
}
.section-card .card-lists {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr 1fr;
  margin-inline: auto;
  max-width: 640px;
}

.section-corporate {
  padding-block: 60px 100px;
}
.section-corporate .heading__1 {
  margin-bottom: 2em;
}
.section-corporate .corporate-nav {
  display: grid;
  gap: 38px 36px;
  gap: 15px;
  grid-template-areas: "company recruit" "support support";
  margin-inline: auto;
  max-width: 635px;
}
.section-corporate .corporate-item.company {
  grid-area: company;
}
.section-corporate .corporate-item.recruit {
  grid-area: recruit;
}
.section-corporate .corporate-item.support {
  grid-area: support;
}

.section-other {
  padding-block: 100px;
}
.section-other .otherlink-nav {
  display: flex;
  justify-content: center;
  column-gap: 10px;
}
.section-other .otherlink-nav li {
  width: 150px;
}

.information-list a {
  color: #d62517;
  display: block;
  font-size: 1.8rem;
  text-decoration: none;
}
.information-list a dl {
  border-bottom: 1px solid #8a8989;
  display: flex;
  padding-block: 1.5em;
}
.information-list a dl dt {
  flex-shrink: 0;
  width: 170px;
}
.information-list a dl dd {
  flex: 1;
}

.information-detail {
  font-size: 1.8rem;
}
.information-detail .information-meta {
  align-items: center;
  display: flex;
  gap: 30px;
  margin-bottom: 0.5em;
}
.information-detail .information-meta span {
  background-color: #f1f1f1;
  border: 1px solid #cdcdcd;
  border-radius: 4px;
  color: #666;
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1.5;
  padding-inline: 0.5em;
}
.information-detail .information-ttl {
  border-bottom: 1px solid #8a8989;
  font-size: 2.5rem;
  margin-bottom: 1.2em;
  padding-bottom: 2.5em;
}
.information-detail p {
  margin-bottom: 5em;
}
.information-detail p:last-child {
  margin-bottom: 0;
}
.information-detail p strong {
  font-size: 2rem;
}
.information-detail .information-body {
  border-bottom: 1px solid #8a8989;
  padding-bottom: 4em;
}
.information-detail .infomation-detail-pager {
  margin-top: 63px;
}
.information-detail .infomation-detail-pager p a {
  align-items: center;
  color: #222;
  display: flex;
  font-size: 1.6rem;
  gap: 10px;
  justify-content: center;
  text-decoration: none;
}
.information-detail .infomation-detail-pager img {
  width: 45px;
}

.page-bridal-service .floor-cards {
  margin-bottom: 136.5px;
}
.page-bridal-service .text-around.bg-pink {
  margin-bottom: 0;
  padding-block: 111px 186.5px;
}
.page-bridal-service .text-around.bg-pink .text-around-box {
  margin-bottom: 0;
}
.page-bridal-service .text-around.bg-pink .text-around-box > p {
  margin-bottom: 3em;
}

.page-food-allergies .food-allergies-ttl {
  aspect-ratio: 2360/800;
  background-image: url(../img/restaurant-cafe/food-allergies/img.webp?24080500);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  display: grid;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.525;
  place-items: center;
  text-align: center;
  width: 100%;
}
.page-food-allergies .food-text {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.95;
  padding-block: 3em;
  text-align: center;
}
.page-food-allergies .food-textarea {
  font-size: 2rem;
  font-weight: 500;
  padding: 4em 6em;
}
.page-food-allergies .food-textarea strong {
  color: #d62517;
}
.page-food-allergies .food-textarea .padding {
  padding-block: 1.5em;
}

.page-event .inner > p {
  margin-bottom: 5em;
  text-align: center;
}
.page-event .text-around-box {
  margin-bottom: 120px;
}
.page-event .text-around-box:last-child {
  margin-bottom: 0px;
}

.page-flyer-catalog .text-around-box > p {
  margin-bottom: 3em;
}

.to-digital-book {
  margin-bottom: 3em;
}
.to-digital-book-link {
  border: 1px solid #222;
  padding: 10px;
}

.page-facilities .text-around-box {
  margin-bottom: 8em;
}
.page-facilities .text-around-box .heading__3, .page-facilities .text-around-box .heading__step {
  margin-bottom: 4em;
}
.page-facilities .text-around-navs {
  margin-bottom: 65px;
}
.page-facilities .text-around-navs ul {
  justify-content: space-between;
}
.page-facilities .text-around-navs ul a {
  color: #222;
  min-width: 267.5px;
}
.page-facilities .facilities-link {
  display: flex;
  gap: 39px;
  justify-content: center;
  margin-bottom: 96.5px;
}
.page-facilities .btn-small {
  margin-top: 1em;
}

.page-rose-hall-castle-room .inner > p {
  color: #d62517;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3em;
  text-align: center;
}
.page-rose-hall-castle-room .toiawase > p {
  color: #222222;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3em;
  text-align: center;
}
.page-rose-hall-castle-room .text-around-navs a {
  color: #d62517;
}
.page-rose-hall-castle-room .box {
  margin-bottom: 124px;
}
.page-rose-hall-castle-room .box:last-child {
  margin-bottom: 0;
}
.page-rose-hall-castle-room .box figure {
  margin-bottom: 72px;
}
.page-rose-hall-castle-room .box ul {
  display: flex;
  justify-content: space-between;
  margin-bottom: 65px;
}
.page-rose-hall-castle-room .box ul .btn-primary {
  font-size: 2rem;
  min-width: 255px;
}
.page-rose-hall-castle-room .box p .btn-primary {
  font-size: 2rem;
  margin-inline: auto;
  min-width: 574px;
}
.page-rose-hall-castle-room .reserve {
  border: 1px solid #e6e6e6;
  font-size: 2rem;
  font-weight: 700;
  padding: 2em;
  text-align: center;
}
.page-rose-hall-castle-room .reserve a {
  align-items: center;
  color: #222;
  display: flex;
  gap: 0.5em;
  justify-content: center;
  text-decoration: none;
}
.page-rose-hall-castle-room .reserve a span {
  color: #d62517;
}
.page-rose-hall-castle-room .reserve img {
  width: 37px;
}

.page-corporate-information .movie {
  height: 590px;
  width: 100%;
}
.page-corporate-information .movie video {
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.page-corporate-information .inner > p {
  font-size: 1.5rem;
  line-height: 2;
  padding-block: 5em;
}
.page-corporate-information .cards__2 {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr 1fr;
}
.page-corporate-information .cards__2 .card__2 {
  border: 1px solid #e6e6e6;
  padding: 20px 30px 30px;
}
.page-corporate-information .cards__2 .card__2-ttl {
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 0.5em;
}
.page-corporate-information .cards__2 .card__2-img {
  margin-bottom: 1.5em;
}
.page-corporate-information .cards__2 .card__2 ul {
  font-size: 1.5rem;
}
.page-corporate-information .cards__2 .card__2 ul li {
  margin-bottom: 0.8em;
}
.page-corporate-information .cards__2 .card__2 ul li:last-child {
  margin-bottom: 0;
}
.page-corporate-information .cards__2 .card__2 ul a {
  color: #d62517;
  text-decoration: none;
}
.page-corporate-information .cards__2 .card__2 ul a img {
  height: auto;
  margin-left: 0.5em;
  transform: translate(0, -2px);
  vertical-align: middle;
  width: 7px;
}
.page-corporate-information .cards__2 .card__2 ul.red a {
  color: #d62517;
}

.page-rose-card .text-around-navs {
  margin-bottom: 120px;
}
.page-rose-card .text-around-navs ul {
  display: grid;
  gap: 6px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.page-rose-card .text-around-navs ul li a {
  color: #d62517;
  min-width: 1px;
  width: 100%;
}
.page-rose-card .hero {
  margin-bottom: 3em;
  margin-inline: auto;
  max-width: 286px;
}
.page-rose-card .text-around-box {
  font-size: 1.5rem;
  margin-bottom: 150px;
}
.page-rose-card .text-around-box:last-child {
  margin-bottom: 0;
}
.page-rose-card .point-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 0 130px;
  justify-content: center;
  margin-bottom: 1em;
  text-align: center;
}
.page-rose-card .point-boxes .roboto {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-size: 6rem;
  font-style: normal;
  transform: translate(0, 3px);
}
.page-rose-card .point-boxes .point-box-ttl {
  color: #d62517;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1em;
  padding-bottom: 0.5em;
  position: relative;
}
.page-rose-card .point-boxes .point-box-ttl:before {
  background-color: #d62517;
  bottom: 0;
  content: "";
  display: block;
  height: 4px;
  left: 50%;
  position: absolute;
  transform: translate(-50%, 0);
  width: 75px;
}
.page-rose-card .point-boxes .point-box-ttl span {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-size: 3rem;
  margin-left: 0.1em;
  transform: translate(0, 2px);
}
.page-rose-card .point-boxes dt {
  font-size: 5rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.3em;
}
.page-rose-card .point-boxes dt span {
  color: #d62517;
  font-weight: 700;
}
.page-rose-card .point-boxes dd {
  line-height: 2;
}
.page-rose-card .point-boxes dd span {
  color: #d62517;
  font-size: 2rem;
}
.page-rose-card .description {
  border: 1px solid #e6e6e6;
  padding: 2.5em 1em 2em;
  text-align: center;
}
.page-rose-card .description dt {
  color: #d62517;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1em;
}
.page-rose-card .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 50px;
}
.page-rose-card .grid figure {
  padding-right: 50px;
}
.page-rose-card .grid-contents {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.page-rose-card .grid-contents dl {
  margin-block: calc((1em - 1lh) / 2);
}
.page-rose-card .grid-contents dt {
  font-size: 2rem;
  font-weight: 700;
}
.page-rose-card .grid-contents dt.red {
  color: #d62517;
}
.page-rose-card .point-description {
  border: 1px solid #e6e6e6;
  margin-bottom: 100px;
  padding: 2.5em;
  position: relative;
}
.page-rose-card .point-description:before {
  background-color: #fff;
  border: 1px solid #e6e6e6;
  border-bottom: 0;
  border-left: 0;
  box-sizing: border-box;
  color: #333;
  content: "";
  display: inline-block;
  height: 30px;
  left: 50%;
  line-height: 1;
  position: absolute;
  top: 0;
  transform: translate(-50%, -50%) rotate(135deg);
  vertical-align: middle;
  width: 30px;
}
.page-rose-card .point-description dl {
  margin-bottom: 0;
  margin-inline: auto;
  max-width: 660px;
}
.page-rose-card .point-description dt {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 0.5em;
  text-align: center;
}
.page-rose-card .point-description dt span,
.page-rose-card .point-description dt i {
  color: #d62517;
  font-family: "Roboto", sans-serif;
  font-style: normal;
}
.page-rose-card .point-description dt span {
  display: inline-block;
  font-size: 3rem;
  margin-right: 0.2em;
  transform: translate(0, -0.25em);
}
.page-rose-card .point-description dt i {
  font-size: 6rem;
  font-weight: 700;
}
.page-rose-card .point-description dt i em {
  font-size: 5rem;
  font-style: normal;
}
.page-rose-card #box-1 .table-4 {
  margin-bottom: 100px;
}
.page-rose-card .about-point-desc {
  text-align: center;
}
.page-rose-card .about-point-desc dt {
  color: #d62517;
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 0.5em;
}
.page-rose-card .about-point-desc dd {
  color: #222;
  font-size: 1.5rem;
  font-weight: 400;
}
.page-rose-card .about-point-lists dl {
  align-items: center;
  border-bottom: 1px solid #e6e6e6;
  border-left: 0;
  border-right: 0;
  display: flex;
  gap: 75px;
  margin-bottom: 0;
  padding: 27px 45px;
}
.page-rose-card .about-point-lists dl:first-child {
  border-top: 1px solid #e6e6e6;
}
.page-rose-card .about-point-lists dt {
  flex-shrink: 0;
  width: 125px;
}
.page-rose-card .text-1 {
  margin-bottom: 1.5em;
  padding-top: 2em;
  text-align: center;
}
.page-rose-card .text-2 {
  margin-bottom: 2em;
  text-align: center;
}
.page-rose-card .text-3 {
  color: #d62517;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.page-rose-card .about-point-desc {
  color: #d62517;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 1.5em;
  text-align: center;
}
.page-rose-card #box-3 .table-4 {
  margin-bottom: 1em;
}
.page-rose-card #box-4 .table-4 {
  margin-bottom: 4em;
}

.page-rose-card-application .table-4 {
  margin-bottom: 3em !important;
}
.page-rose-card-application .btn-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-block: 4em;
}
.page-rose-card-application .btn-links .btn-primary {
  max-width: 100%;
  width: 325px;
}

/*ADD_24080300*/
.page-rose-card-application .btn-links .btn-contact {
  max-width: 100%;
  width: 325px;
}

.page-rose-card-flow .text-around {
  counter-reset: number 0;
}
.page-rose-card-flow .text-around .text-around-box {
  position: relative;
}
.page-rose-card-flow .text-around .text-around-box:before {
  background-color: #dadada;
  -webkit-clip-path: polygon(51% 100%, 0 0, 100% 0);
          clip-path: polygon(51% 100%, 0 0, 100% 0);
  content: "";
  display: block;
  height: 20px;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translate(-50%, -70px);
  width: 40px;
}
.page-rose-card-flow .text-around .text-around-box:first-child:before {
  display: none;
}
.page-rose-card-flow .text-around .heading__step:before {
  content: "STEP" counter(number);
  counter-increment: number 1;
}

.page-tomonokai .text-around-navs ul {
  display: flex;
  justify-content: center;
}
.page-tomonokai .text-around-navs ul li a {
  min-width: 290px;
}
.page-tomonokai .grid {
  grid-template-columns: 580px 1fr;
  margin-bottom: 0;
}
.page-tomonokai .grid dl {
  margin-bottom: 0;
}
.page-tomonokai .grid dl dd > figure {
  margin-block: 1em;
}
.page-tomonokai .grid > figure {
  padding-right: 0;
}
.page-tomonokai .grid > figure img {
  display: block;
  margin-inline: auto;
  width: 112.5px;
}
.page-tomonokai .text-around-box-2 {
  margin-bottom: 6em;
}
.page-tomonokai .btns-links {
  margin-bottom: 8em;
}
.faq-lists dl {
  color: #333;
  font-size: 1.8rem;
  font-weight: 700;
}
.faq-lists dt {
  background-color: #f7d3d1;
  border: 1px solid #d62517;
  cursor: pointer;
  font-size: 1.8rem;
  margin-bottom: 0 !important;
  padding: 0.4em 3em 0.4em 2.5em;
  position: relative;
}
.faq-lists dt:before {
  content: "Q.";
  left: 1em;
  position: absolute;
  top: 0.4em;
}
.faq-lists dt:after {
  background-image: url(../img/common/ico-bullet-down.webp?24080500);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 20px;
  position: absolute;
  right: 23px;
  top: 50%;
  transform: translate(0, -50%);
  transition: transform 0.3s ease-in-out;
  width: 19px;
}
.faq-lists dt[aria-expanded=true]:after {
  transform: translate(0, -50%) rotate(180deg);
}
.faq-lists dd {
  display: grid;
  grid-template-rows: minmax(0, 0fr);
  overflow: hidden;
  transition: grid-template-rows 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-lists dd[aria-hidden=false] {
  grid-template-rows: minmax(0, 1fr);
}
.faq-lists dd[aria-hidden=false] div {
  opacity: 1;
}
.faq-lists dd div {
  border: 1px solid #d62517;
  border-top: 0;
  line-height: 1.7777777778;
  opacity: 0;
  padding: 0.8em 1em 0.8em 2.5em;
  position: relative;
  transition: opacity 0.6s;
}
.faq-lists dd div:before {
  content: "A.";
  left: 1em;
  position: absolute;
  top: 0.8em;
}

.text-around-box-2 {
  margin-inline: auto;
  max-width: 590px;
  text-align: center;
}
.text-around-box-2 dl {
  font-size: 1.8rem;
  font-weight: 700;
}
.text-around-box-2 dt {
  color: #d62517;
  font-size: 2rem;
}
.btns-links {
  display: flex;
  gap: 52px;
  justify-content: center;
}
.btns-links .btn-primary {
  font-size: 2rem;
  max-width: 100%;
  width: 375px;
}

*/ADD_24080300*/
.btns-links .btn-contact {
  font-size: 2rem;
  max-width: 375px;
  width: 375px;
}

.red-text {
  border: 1px solid #e6e6e6;
  color: #d62517;
  padding: 2em;
  text-align: center;
}
.red-text dl {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0;
}

.page-corporate .bg-pink.env {
  margin-bottom: 8em;
  padding-block: 3em 2em;
}
.page-corporate .bg-pink.env .caution {
  font-size: 1.5rem;
}

.page-himeboss .box dl {
  line-height: 1.5;
}
.page-himeboss .box dl dt {
  color: #d62517;
}
.page-himeboss .box dl dd ul {
  margin: 0;
  padding-left: 4em;
}
.page-himeboss .box dl dd ul li {
  list-style-type: disc;
  margin-left: 1.2em;
}
.page-himeboss .box .grid {
  display: grid;
  grid-template-columns: 786px 1fr;
}
.page-himeboss .box .grid .grid-text p:last-child {
  margin-bottom: 0;
}
.page-himeboss .box .grid.grid-kurumin figure img {
  display: block;
  margin-inline: auto;
  max-width: 233px;
}
.page-himeboss .box .grid figure img {
  display: block;
  margin-inline: auto;
  max-width: 163px;
}

.page-banquet-party .floor-cards .floor-card .card-detail p {
  min-height: 5em;
}
.page-banquet-party .hero {
  margin-bottom: 5em;
}
.page-banquet-party .hero-ttl {
  aspect-ratio: 2360/800;
  background-image: url(../img/facilities/banquet-party/bg.webp?24080500);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  display: grid;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 2em;
  place-items: center;
}
.page-banquet-party .hero-text {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
}

.page-restaurant .floor-cards .floor-card .card-detail p {
  margin-bottom: 1.5em;
  min-height: 4em;
}
.page-restaurant .text-around-box {
  margin-bottom: 10em;
}
.page-restaurant .text-around-box:last-child {
  margin-bottom: 0;
}
.page-restaurant.page-department .text-around-box {
  margin-bottom: 6em;
}
.page-restaurant.page-department .text-around-box:last-child {
  margin-bottom: 0;
}
.page-restaurant.page-department .text-around-navs ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.page-restaurant.page-department .text-around-navs a {
  min-width: 1px;
}
.page-restaurant .text-around-navs {
  margin-bottom: 100px;
}
.page-restaurant .text-around-navs a {
  background-size: 60px auto;
  color: #d62517;
  font-size: 1.5rem;
  height: 60px;
}
.page-restaurant .text-around-navs a2 {
  background-size: 60px auto;
  color: #d62517;
  font-size: 1.5rem;
  height: 60px;
}
.page-restaurant .text-around-navs.link a {
  background-image: url(../img/common/ico-link-2.webp?24080500);
  background-size: 74px auto;
  background-size: 60px auto;
  height: 60px;
  justify-content: center;
  min-width: 620px;
  padding-right: 74px;
  text-align: center;
}
.page-restaurant .hero {
  aspect-ratio: 2360/450;
  background-image: url(../img/facilities/banquet-party/bg.webp?24080500);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: grid;
  margin-bottom: 5em;
  place-items: center;
  text-decoration: none;
}
.page-restaurant .hero-ttl {
  color: #fff;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.2em;
}
.page-restaurant .hero-text {
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
}

.page-parking .text-around-box {
  font-size: 1.5rem;
  margin-bottom: 0;
}
.page-parking .item {
  border: 1px solid #e6e6e6;
  margin-bottom: 30px;
  padding: 30px;
}
.page-parking .item .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.page-parking .item-text {
  padding-left: 30px;
}
.page-parking .item-text-ttl {
  font-size: 2.5rem;
  margin-bottom: 1.5em;
}
.page-parking .item-text .hour {
  font-size: 2rem;
  font-weight: 700;
}
.page-parking .item-text dl {
  margin: 0;
}
.page-parking .item-text dl dt {
  font-weight: 400;
}
.page-parking .item-text dl dd {
  font-size: 2rem;
  font-weight: 700;
}
.page-parking .item-text address {
  font-style: normal;
}
.page-parking .item-text address a {
  color: #d62517;
  margin-left: 0.5em;
  text-decoration: none;
}
.page-parking .text {
  margin-block: 2em 6em;
}
.page-parking .map {
  display: block;
  margin-block: 8em 8em;
}
.page-parking .item-parking dl {
  margin: 0;
}
.page-parking .item-parking dt {
  align-items: center;
  color: #d62517;
  display: flex;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1em;
}
.page-parking .item-parking dt img {
  margin-right: 0.5em;
  width: 70px;
}
.page-parking .item-parking dd span {
  font-weight: 700;
}
.page-parking .item-rose-card dl {
  margin: 0;
}
.page-parking .item-rose-card dt {
  align-items: center;
  color: #d62517;
  display: flex;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1em;
}
.page-parking .item-rose-card dt img {
  margin-right: 0.5em;
  width: 112.5px;
}
.page-parking .item-rose-card dd span {
  font-weight: 700;
}
.page-parking .table {
  margin-top: 5em;
}
.page-parking .table-item {
  margin-bottom: 4em;
}
.page-parking .table-item:last-child {
  margin-bottom: 0;
}
.page-parking .table-item table {
  margin-bottom: 0.8em;
}

.page-rose-hall-castle-room .diagram-item {
  font-size: 1.5rem;
  margin-bottom: 8em;
}
.page-rose-hall-castle-room .diagram-item:last-child {
  margin-bottom: 0;
}
.page-rose-hall-castle-room .diagram-item ul {
  margin-bottom: 2.5em;
}
.page-rose-hall-castle-room .diagram-item .flex {
  display: grid;
  gap: 39px;
  grid-template-columns: 1fr 1fr;
}
.page-rose-hall-castle-room .diagram-grid {
  display: grid;
  gap: 27px;
  grid-template-columns: 1fr 1fr;
}
.page-rose-hall-castle-room .caution {
  margin-top: 2em;
}
.page-rose-hall-castle-room.page-terms .text-around-box {
  font-size: 1.5rem;
  margin-bottom: 0;
}
.page-rose-hall-castle-room.page-terms .table-5 {
  margin-bottom: 3em;
}
.page-rose-hall-castle-room.page-terms .table-5 caption {
  caption-side: bottom;
  font-weight: 400;
  margin-top: 0.5em;
  text-align: right;
}
.page-rose-hall-castle-room.page-terms .table-5 .table-title {
  font-weight: 700;
  margin-bottom: 2em;
}
.page-rose-hall-castle-room.page-terms .table-item {
  margin-bottom: 5em;
}
.page-rose-hall-castle-room.page-terms .table-item:last-child {
  margin-bottom: 0;
}
.page-rose-hall-castle-room.page-terms .table-item > p {
  margin-bottom: 3em;
}
.page-rose-hall-castle-room.page-price .table-item {
  margin-bottom: 2em;
}
.page-rose-hall-castle-room.page-price .table-item p {
  margin-top: 1em;
}
.page-rose-hall-castle-room.page-price .table-item .red {
  color: #d62517;
}
.page-rose-hall-castle-room.page-price .text-around-box {
  font-size: 1.5rem;
}
.page-rose-hall-castle-room.page-price .text-around-box:last-child {
  margin-bottom: 0;
}
.page-rose-hall-castle-room.page-price .text-around-box .text {
  margin-bottom: 5em;
  margin-top: 4em;
}
.page-rose-hall-castle-room.page-price .rose-9f-1 thead th:nth-child(1) {
  width: 135px;
}
.page-rose-hall-castle-room.page-price .rose-9f-1 thead th:nth-child(2) {
  width: 340px;
}
.page-rose-hall-castle-room.page-price .rose-9f-2 thead tr:nth-child(2) th:nth-child(1) {
  width: 250px;
}
.page-rose-hall-castle-room.page-price .rose-9f-2 thead tr:nth-child(2) th:nth-child(3) {
  width: 490px;
}
/*電話番号リンクをパソコン表示で無効*/
@media (min-width: 577px) {
  a[href^="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  color: #222222 !important;
}
    }
@media screen and (max-width: 576px){    
  input,
  textarea {
    font-size: var(--base-fontsize--sp);
  }
  select {
    font-size: var(--base-fontsize--sp);
  }
  button {
    font-size: var(--base-fontsize--sp);
  }
  .pc-block {
    display: none;
  }
  .pc-inline {
    display: none;
  }
  .pc-inline-block {
    display: none;
  }
  .pc-table {
    display: none;
  }
  .sp-block {
    display: block;
  }
  .sp-inline {
    display: inline;
  }
  .sp-inline-block {
    display: inline-block;
  }
  .sp-table {
    display: table;
  }
  html {
    scroll-padding-top: var(--header-height--sp);
  }
  body {
    font-size: var(--base-fontsize--sp);
    padding-top: var(--header-height--sp);
  }
  .header {
    padding-inline: 15px;
  }
  .header__inner {
    height: var(--header-height--sp);
  }
  .header__title {
    max-width: 180px;
  }
  .header__nav-item img {
    height: 26px;
  }
  .header__nav-link--button {
    display: none;
  }
  .section-page-caution-inner {
    font-size: 1rem;
  }
  .burger-btn {
    display: flex;
  }
  .header-sp-nav {
    display: block;
  }
  .overlay-nav {
    display: block;
    opacity: 0;
    transition: all 0.2s ease-in-out;
    visibility: hidden;
  }
  .overlay-nav.is-open {
    opacity: 1;
    visibility: visible;
  }
  .topic-path ul, .header-gnav > ul, .section-page-caution-inner, .inner {
    padding-left: 17px;
    padding-right: 17px;
    width: 100%;
  }
  .main.secondary {
    padding-block: 50px;
  }
  .narrow-inner {
    padding-left: 17px;
    padding-right: 17px;
    width: 100%;
  }
  .footer__top {
    padding-bottom: 40px;
  }
  .footer__navs {
    font-size: 1.2rem;
    grid-template-columns: 1fr 1fr;
    padding-block: 40px;
  }
  .footer__navs ul:nth-child(odd) {
    border-left: 1px solid #666;
  }
  .footer__copyright p {
    width: 180px;
  }
  .footer__copyright small {
    font-size: 1.1rem;
  }
  .heading__1 {
    font-size: 1.2rem;
  }
  .heading__1:before {
    font-size: 2.5rem;
    margin-right: 0.3em;
    transform: translate(0, 2px);
  }
  .heading__2 {
    font-size: 1.8rem;
  }
  .heading__3, .heading__step {
    font-size: 2rem;
  }
  .heading__3:after, .heading__step:after {
    font-size: 1.2rem;
  }
  .heading__4 {
    border-left: 7px solid #d62517;
    font-size: 1.8rem;
  }
  .heading__step:before {
    font-size: 1.4rem;
  }
  .form-nav {
    display: block;
  }
  .form-nav form {
    margin-bottom: 20px;
  }
  .form {
    margin-top: 50px;
  }
  .form dl dt {
    display: block;
    font-size: 1.5rem;
  }
  .form dl dt i {
    display: block;
    margin-left: 0;
  }
  .form .flex {
    display: block;
  }
  .form .flex.flex-wrap {
    flex-wrap: wrap;
  }
  .form .flex.flex-wrap > p a {
    margin-left: 0;
  }
  .form .flex.flex-wrap > p a:before {
    right: 5px;
  }
  .form .flex.flex-wrap > p {
    margin-top: 1em;
    width: 100%;
  }
  .form .flex .small {
    width: 50px;
  }
  .form .flex .form-select {
    flex-shrink: 0;
    width: 60px;
  }
  .form .flex .form-select select {
    height: 45px;
  }
  .form .flex .century {
    margin-right: 0.1em;
  }
  .form .flex .year {
    margin-inline: 0.2em 1em;
  }
  .form .flex .month {
    margin-inline: 0.2em 1em;
  }
  .form .flex .day {
    margin-inline: 0.2em;
  }
  .form .zipcode .inputs {
    padding-left: 16px;
  }
  input[type=text],
  input[type=email],
  input[type=password] {
    font-size: 1.5rem;
    padding: 0.5em;
  }
  input[type=text],
  input[type=email],
  input[type=password] {
    height: 45px;
  }
  input[type=file] {
    min-width: 1px;
    width: 100%;
  }
  .form-select {
    height: 45px;
    max-width: 100%;
  }
  .form-select:before {
    aspect-ratio: 1/1;
    width: 45px;
  }
  .form-select:after {
    right: 23px;
  }
  .form-select select {
    border-radius: 3px;
    font-size: 1.4rem;
    height: 45px;
    padding: 11px 10px 11px 1em;
  }
  .form-checkbox {
    margin-bottom: 1em;
    margin-left: 0;
  }
  .form-checkbox-2 {
    margin-bottom: 1em;
    margin-left: 0;
  }
  .form-radio {
    margin-bottom: 1em;
    margin-left: 0;
  }
  .date-select-flex {
    display: block;
  }
  .date-select-flex .form-select {
    margin-bottom: 15px;
    max-width: 100%;
  }
  .btn-primary {
    font-size: 1.4rem;
  }
/*ADD_24080300*/
  .btn-contact {
    font-size: 1.4rem;
  }
  .btn-primary.large {
    font-size: 1.6rem;
  }
  .btn-primary.toolarge {
    font-size: 1.6rem;
  }
  .table-1 table th, .table-4 table th, .table-3 table th, .table-2 table th,
  .table-1 table td,
  .table-4 table td,
  .table-3 table td,
  .table-2 table td {
    display: block;
    width: 100%;
  }
  .table-1 table th, .table-4 table th, .table-3 table th, .table-2 table th {
    border-bottom: 0;
    font-size: 1.8rem;
    padding-bottom: 0;
  }
  .table-1 table td, .table-4 table td, .table-3 table td, .table-2 table td {
    border-top: 0;
    font-size: 1.4rem;
    padding-top: 0em;
  }
  .table-2 table {
    width: 100%;
  }
  .table-2 table th,
  .table-2 table td {
    display: block;
    width: 100%;
  }
  .table-2 table th {
    border-bottom: 0;
    border-top: 0;
    font-size: 1.4rem;
    padding-bottom: 0;
  }
  .table-2 table td {
    border-top: 0;
    font-size: 1.4rem;
    padding-top: 1em;
  }
  .table-3 table {
    display: block;
    width: 100%;
  }
  .table-3 table th,
  .table-3 table td {
    display: block;
    width: 100%;
  }
  .table-3 table th {
    border-bottom: 0;
    border-top: 0;
    font-size: 1.4rem;
    padding-bottom: 0;
  }
  .table-3 table td {
    border-top: 0;
    font-size: 1.4rem;
    padding-top: 1em;
  }
  .table-4 {
    overflow: auto;
  }
  .table-4 table {
    display: table;
    width: 900px;
  }
  .table-4 table th,
  .table-4 table td {
    border: 1px solid #e6e6e6;
    display: table-cell;
    padding: 1em 1em;
  }
  .table-4 table th {
    font-size: 1.4rem;
    width: 240px !important;
  }
  .table-4 table td {
    width: auto !important;
  }
  .table-5 {
    overflow: auto;
  }
  .table-5 table {
    width: 900px;
  }
  .table-5 table.rose-9f-2 {
    width: 1200px;
  }
  .table-5 table.col-2 {
    width: 100%;
  }
  .page-hero-ttl {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  .page-hero-ttl:after {
    font-size: 1.2rem;
    margin-top: 0.6em;
  }
  .pager {
    margin-top: 40px;
  }
  .text-around {
    font-size: 1.4rem;
  }
  .text-around-box:last-child {
    margin-bottom: 0;
  }
  .text-around-box dt {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 0.5em;
  }
  .text-around-box .box p {
    font-size: 1.4rem;
  }
  .text-around-box .message .message-1 {
    font-size: 1.3rem;
    margin-bottom: 4em;
  }
  .text-around-box .message .message-1 span {
    font-size: 1.6rem;
  }
  .text-around-box .message dt {
    font-size: 2rem;
  }
  .text-around-box .message .message-2 {
    font-size: 1.2rem;
    margin-bottom: 0em;
    padding: 3em 0em;
    text-align: left;
  }
  .text-around-navs ul {
    display: block;
  }
  .text-around-navs ul li {
    margin-bottom: 15px;
  }
  .text-around-box-number-wrapper {
    margin-bottom: 3em;
  }
  .text-around-box-number-lists li {
    font-size: 1.8rem;
  }
  .text-around-box-dl > dl {
    font-size: 1.2rem;
    grid-template-columns: 1fr;
  }
  .header-gnav {
    display: none;
  }
  .topic-path ul {
    flex-wrap: wrap;
    font-size: 1.1rem;
  }
  .topic-path ul li:before {
    height: 18px;
    transform: translate(0, 3px) rotate(30deg);
  }
  .floor-cards {
    gap: 30px;
    grid-template-columns: 1fr;
  }
  .floor-cards .floor-card {
    padding: 15px 15px 15px;
  }
  .floor-cards .floor-card .card-detail dl dt {
    margin-bottom: 0;
  }
  .floor-cards .floor-card .card-detail dl dd {
    font-size: 1.7rem;
    line-height: 1.5;
  }
  .floor-cards .floor-card .card-detail p {
    min-height: 1px;
  }
  .floor-cards .floor-card .card-table {
    margin-top: 1.5em;
  }
  .floor-cards .floor-card .card-table table {
    font-size: 1.3rem;
  }
  .floor-cards .floor-card .card-table table th,
  .floor-cards .floor-card .card-table table td {
    line-height: 1.5;
    padding-block: 0.5em;
  }
  .floor-cards .floor-card .card-table table th {
    width: 80px;
  }
  .floor-cards.col-3 {
    grid-template-columns: 1fr;
  }
  .visual {
    aspect-ratio: 1/1;
    grid-template-columns: 1fr;
    height: auto;
    width: 100%;
  }
  .visual .takashimaya-nav {
    display: none;
  }
  .thumbs-slider .inner {
    width: 100%;
  }
  .thumbs-slider .splide__slide {
    width: 76px;
  }
  .important-news-wrapper {
    padding-block: 1em;
  }
  .important-news-wrapper .inner {
    display: block;
  }
  .important-news .info {
    width: 100%;
  }
  .important-news .ttl {
    font-size: 1.3rem;
    text-align: center;
  }
  .important-news .ttl img {
    width: 18px;
  }
  .section-pickup {
    padding-block: 40px 50px;
  }
  .section-pickup .heading__1 {
    margin-bottom: 2.5em;
  }
  .pickup__navs {
    gap: 15px;
  }
  .pickup__navs a {
    font-size: 1.3rem;
    min-width: 130px;
  }
  .pickup__navs a.btn-date.active {
    min-width: 160px;
  }
  .pickup__navs a.btn-date.active span {
    font-size: 1.8rem;
  }
  .pickup__card-lists {
    gap: 15px 0;
    grid-template-columns: 1fr;
  }
  .pickup__card-ttl {
    border-left: 11px solid #d62517;
    font-size: 1.2rem;
    padding-left: 0.5em;
  }
  .pickup__card-ttl:before {
    font-size: 2.5rem;
  }
  .pickup__card-figure {
    width: calc((100% - 14px) / 2);
  }
  .pickup__card-figure:nth-child(3) {
    display: none;
  }
  .section-link {
    padding-block: 50px 60px;
  }
  .section-link .link-box {
    margin-bottom: 60px;
  }
  .section-link .link-box ul {
    display: block;
  }
  .section-link .link-box ul li {
    aspect-ratio: 706/330;
    margin-bottom: 25px;
    width: 100%;
  }
  .section-link .bnr-box ul {
    flex-wrap: wrap;
  }
  .section-link .bnr-box ul li {
    width: calc((100% - 20px) / 2);
  }
  .section-information {
    padding-bottom: 50px;
    width: 100%;
  }
  .section-sns {
    padding-block: 40px 50px;
  }
  .section-sns .sns-link-box {
    margin-bottom: 50px;
  }
  .section-sns .instagram-lists {
    gap: 3px;
  }
  .section-card {
    padding-block: 50px 50px;
  }
  .section-corporate {
    padding-block: 40px 50px;
  }
  .section-corporate .corporate-nav {
    grid-template-areas: "company" "recruit" "support";
  }
  .section-other {
    padding-block: 50px;
  }
  .section-other .otherlink-nav {
    gap: 15px;
  }
  .information-list a {
    font-size: 1.6rem;
  }
  .information-list a dl {
    display: block;
  }
  .information-list a dl dt {
    width: 100%;
  }
  .information-detail {
    font-size: 1.6rem;
  }
  .information-detail .information-ttl {
    font-size: 2rem;
  }
  .page-bridal-service .floor-cards {
    margin-bottom: 60px;
  }
  .page-bridal-service .text-around.bg-pink {
    padding-block: 50px;
  }
  .page-food-allergies .food-allergies-ttl {
    font-size: 2rem;
  }
  .page-food-allergies .food-text {
    font-size: 1.6rem;
  }
  .page-food-allergies .food-textarea {
    font-size: 1.6rem;
    padding: 15px 20px;
  }
  .page-event .text-around-box {
    margin-bottom: 60px;
  }
  .page-facilities .text-around-navs ul {
    display: block;
  }
  .page-facilities .text-around-navs ul li {
    margin-bottom: 15px;
  }
  .page-facilities .text-around-navs ul a {
    min-width: 1px;
  }
  .page-facilities .facilities-link {
    display: block;
  }
  .page-facilities .facilities-link li {
    margin-bottom: 15px;
  }
  .page-rose-hall-castle-room .box {
    margin-bottom: 60px;
  }
  .page-rose-hall-castle-room .box ul {
    display: block;
  }
  .page-rose-hall-castle-room .box ul li {
    margin-bottom: 15px;
  }
  .page-rose-hall-castle-room .box p .btn-primary {
    font-size: 1.6rem;
    min-width: 100%;
  }
  .page-rose-hall-castle-room .reserve {
    font-size: 1.4rem;
  }
  .page-corporate-information .movie {
    aspect-ratio: 1920/1080;
    height: auto;
  }
  .page-corporate-information .inner > p {
    padding-block: 2.5em;
  }
  .page-corporate-information .cards__2 {
    grid-template-columns: 1fr;
  }
  .page-rose-card .text-around-navs ul {
    display: block;
  }
  .page-rose-card .text-around-box {
    margin-bottom: 75px;
  }
  .page-rose-card .point-boxes dt {
    font-size: 2.5rem;
  }
  .page-rose-card .description dt {
    font-size: 2.5rem;
  }
  .page-rose-card .grid {
    gap: 20px;
    grid-template-columns: 1fr;
  }
  .page-rose-card .grid figure {
    padding-right: 0;
  }
  .page-rose-card .grid-contents dl {
    margin-block: 1em;
  }
  .page-rose-card .point-description {
    padding: 15px;
  }
  .page-rose-card .point-description dt i {
    font-size: 4rem;
  }
  .page-rose-card .point-description dt i em {
    font-size: 3rem;
  }
  .page-rose-card #box-1 .table-4 {
    margin-bottom: 50px;
  }
  .page-rose-card .about-point-lists dl {
    display: block;
    padding: 27px 15px;
  }
  .page-rose-card-application .btn-links {
    display: block;
  }
  .page-rose-card-application .btn-links .btn-primary {
    margin-bottom: 15px;
    width: 100%;
  }
  .page-tomonokai .text-around-navs ul {
    display: block;
  }
  .btns-links {
    display: block;
  }
  .btns-links .btn-primary {
    font-size: 1.6rem;
    margin-bottom: 15px;
    width: 100%;
  }
/*ADD_24080300*/
  .page-rose-card-application .btn-links .btn-contact {
    margin-bottom: 15px;
    width: 100%;
  }
  .btns-links .btn-contact {
    font-size: 1.6rem;
    margin-bottom: 15px;
    width: 100%;
  }
  .red-text {
    padding: 2em 1em;
  }
  .red-text dl {
    font-size: 1.6rem;
  }
  .page-corporate .bg-pink.env {
    margin-bottom: 4em;
    padding-block: 3em 2em;
  }
  .page-himeboss .box .grid {
    gap: 20px;
    grid-template-columns: 1fr;
  }
  .page-banquet-party .hero-ttl {
    font-size: 1.8rem;
  }
  .page-banquet-party .hero-text {
    font-size: 1.6rem;
  }
  .page-restaurant .text-around-box {
    margin-bottom: 5em;
  }
  .page-restaurant.page-department .text-around-box {
    margin-bottom: 3em;
  }
  .page-restaurant.page-department .text-around-navs ul {
    grid-template-columns: 1fr;
  }
  .page-restaurant .text-around-navs {
    margin-bottom: 50px;
  }
  .page-restaurant .text-around-navs a {
    font-size: 1.6rem;
  }
  .page-restaurant .text-around-navs.link a {
    height: 60px;
    min-width: 1px;
    width: 100%;
  }
  .page-restaurant .hero {
    aspect-ratio: 2360/1000;
  }
  .page-restaurant .hero-ttl {
    font-size: 2.8rem;
  }
  .page-restaurant .hero-text {
    font-size: 1.5rem;
  }
  .page-parking .item {
    padding: 15px;
  }
  .page-parking .item .grid {
    grid-template-columns: 1fr;
  }
  .page-parking .item figure {
    margin-bottom: 1em;
  }
  .page-parking .item-text {
    padding-left: 0;
  }
  .page-parking .item-text-ttl {
    font-size: 2rem;
    margin-bottom: 1em;
  }
  .page-parking .item-text .hour {
    font-size: 1.6rem;
  }
  .page-parking .item-text dl dd {
    font-size: 1.6rem;
  }
  .page-parking .text {
    margin-block: 0 3em;
  }
  .page-parking .map {
    margin-block: 4em 4em;
  }
  .page-parking .item-parking dt {
    font-size: 2rem;
  }
  .page-parking .item-rose-card dt {
    font-size: 2rem;
  }
  .page-rose-hall-castle-room .diagram-item {
    margin-bottom: 4em;
  }
  .page-rose-hall-castle-room .diagram-item .flex {
    gap: 50px;
    grid-template-columns: 1fr;
  }
  .page-rose-hall-castle-room .diagram-grid {
    gap: 50px;
    grid-template-columns: 1fr;
  }
}
@media (hover: hover){
  /* リンクの場合 */
  a:-moz-any-link:hover {
    opacity: 0.7;
    text-decoration: none;
  }
  a:any-link:hover {
    opacity: 0.7;
    text-decoration: none;
  }
  /* ボタンの場合 */
  button:enabled:hover {
    opacity: 0.7;
  }
  /* 特定できない場合 */
  .btn:where(:-moz-any-link, :enabled, summary):hover, .btn-small:where(:-moz-any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
  .btn:where(:any-link, :enabled, summary):hover, .btn-small:where(:any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
}

/*24091800_プレビュー対応-appよりマージ*/
#pickup dt {
    font-size: 16.8px;
    font-weight: 700;
    font-family: "Noto Sans JP", sans-serif;
    font-feature-settings: "palt";
    line-break: strict;
    line-height: 25.2px;
    margin-top: 5px;
    color: #aa1f24;
    vertical-align: baseline;
    word-break: normal;
}

@media screen and (max-width: 576px) {
    #pickup dt {
        font-size: 22px;
        font-weight: 700;
        font-family: "Noto Sans JP", sans-serif;
        font-feature-settings: "palt";
        line-break: strict;
        line-height: 1.5em;
        margin-top: 15px;
        color: #aa1f24;

        vertical-align: baseline;
        word-break: normal;
    }
    #pickup dd {
        font-size: 17.5px;
        font-weight: 700;
        font-family: "Noto Sans JP", sans-serif;
        font-feature-settings: "palt";
        line-break: strict;
        line-height: 1.8em;
        margin-top: 5px;
        color: rgb(34, 34, 34);

        vertical-align: baseline;
        word-break: normal;
    }
    #pickup div.text {
        font-size: 15px;
        font-weight: 500;
        font-family: "Noto Sans JP", sans-serif;
        line-height: 2;
        margin-bottom: 1.5rem;
    }
    .page-hero .inner {
        align-items: center;
        display: flex;
        height: 110px;
        justify-content: center;
    }
}
