@charset "UTF-8";

/************************************************************************************************************/
/* Shirayuri Hall - ver 1.2.0 -                                                                             */
/* Update 2023-12-31                                                                                        */
/* Produce and Create by YONEZAWA MASARU                                                                    */
/************************************************************************************************************/

.flex {
  display: flex;
}

.space-between {
  justify-content: space-between;
}

.space-around {
  justify-content: space-around;
}

.flex-center {
  justify-content: center;
}

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

.flex-start {
  align-items: flex-start;
}

.flex-column {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.block {
  display: block;
}

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

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

.font-xx-small {
  font-size: .5rem;
}

.font-bold {
  font-weight: bold;
}

.point {
  margin: 0 .5em;
  font-size: 125%;
}

:root {
  --main-color:   #522f60;
  --sub-color:    #316745;
  --accent-color: #9e3d3f;
  --point-color:  #133a7c;

  --title-width: 80%;
  --content-width: 70%;
}

* {
  /* scroll-behavior: smooth; */
}

body {
  font-family: 'Noto Serif JP', serif;
}

body:not( .home ) {
  margin: 88px 0 0;
}

h1,
h2,
h3 {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #555;
}

img {
  width: 100%;
  max-width: fit-content;
  height: auto;
  vertical-align: bottom;
}

ul,
ol,
dl,
p {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: calc( 100lvh - 88px );
}

.home .wrapper {
  margin: 0;
  min-height: 100lvh;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  line-height: 1;
}

.header {
  height: 88px;
  padding: 0 7.5%;
  background: #fffd;
  -webkit-backdrop-filter: blur( .5rem );
  backdrop-filter: blur( .5rem );
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: revert;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  margin: -.25em 0 .25em;
}

.logo span:first-of-type {
  letter-spacing: .5em;
  margin: 0 0 .25rem;
}

.logo span:last-of-type {
  letter-spacing: .5em;
  margin: .25rem 0 0;
}

header div div {
  justify-content: flex-end;
  gap: 1rem;
}

.button {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: bold;
  padding: .25em .5em;
  border-radius: .25em;
  color: #fff;
  letter-spacing: .125em;
  line-height: 1;
  border: 1px solid #000;
  transition: background .25s, color .25s;
}

.bg-sub-color {
  background: var( --sub-color );
  border-color: var( --sub-color );
}

.bg-main-color {
  background: var( --main-color );
  border-color: var( --main-color );
}

.bg-point-color {
  background: var( --point-color );
  border-color: var( --point-color );
}

.bg-accent-color {
  background: var( --accent-color );
  border-color: var( --accent-color );
}

.button:hover {
  background: #fff;
}

.bg-sub-color:hover {
  color: var( --sub-color );
}

.bg-main-color:hover {
  color: var( --main-color );
}

.bg-point-color:hover {
  color: var( --point-color );
}

.bg-accent-color:hover {
  color: var( --accent-color );
}

.button i {
  margin: 0 .25em 0 0;
}

.adjust {
  width: var( --content-width );
  margin-left: auto;
  margin-right: auto;
} 

nav {
  font-size: 87.5%;
  margin: .8px 0 0;
}

nav ul {
  justify-content: center;
  gap: 3rem;
}

nav a {
  position: relative;
}

nav a::after {
  position: absolute;
  display: block;
  content: "";
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: #555;
  transform: scale( 1 );
  transition: transform .5s;
}

nav a:hover::after {
  transform: scale( 0 );
}

.main-visual {
  height: calc( 100vh - 5em );
  width: auto;
  margin: 5em 0 0;
}

.main-visual::before {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  background: url( ../image/main-visual-min.jpg ) no-repeat 15% center;
  -webkit-background-size: cover;
  background-size: cover;
  opacity: .5;
  filter: blur( 2.5px );
  content: "";
  animation: scroll 45s 1.5s forwards;
}

@keyframes scroll {
  0% {
    background: url( ../image/main-visual-min.jpg ) no-repeat 15% center;
    background-size: cover;
    opacity: .75;
    filter: blur( 2.5px );
  }

  33% {
    opacity: 1;
  }

  66% {
    filter: blur( 0 );
  }
  
  100% {
    background: url( ../image/main-visual-min.jpg ) no-repeat 88% center;
    background-size: cover;
    opacity: 1;
    filter: blur( 0 );
  }
}

.main-visual section {
  color: #fff;
  background: linear-gradient( 120deg, #522F6077, transparent 60% );
  width: 100%;
  height: 100%;
  display: flex;
  /* flex-direction: column; */
  /* justify-content: center; */
  align-items: center;
  padding: 0 15% 0 5%;
  gap: 5vh;
}

.main-visual hgroup {
  display: flex;
  flex-direction: column;
  gap: 5vh;
}

h1 {
  text-shadow: 1px 0 1px var( --main-color ), -1px 0 1px var( --main-color ), 0 1px 1px var( --main-color ), 0 -1px 1px var( --main-color );
  letter-spacing: .5em;
  font-feature-settings: "palt"; 
}

h1 ~ p {
  letter-spacing: .25em;
  line-height: 1.75;
  width: 40em;
  -webkit-backdrop-filter: contrast( .5 );
  backdrop-filter: contrast( .5 );
  padding: .25em 0 .25em 1.5em;
}

h1 ~ p:empty {
  display: none;
  padding: 0;
}

body:not( .home ) h1 {
  display: grid;
  place-items: center;
  width: var( --title-width );
  padding: .5em 1em .5em 1.5em;
  /* margin: 2rem auto; */
  margin: 3rem auto 2rem;
  border-top: 1px solid #555;
  border-bottom: 1px solid #555;
  text-shadow: none;
  font-size: 1.75rem;
  font-weight: normal;
  /* line-height: 1.15; */
  letter-spacing: .05em;
}

.scroll-icon {
  bottom: 12.5%;
  right: 50%;
  position: absolute;
  width: 24px;
  height: 24px;
  transform: translateX( 50% );
  display: flex;
  justify-content: center;
  opacity: 1;
  transition: opacity 1s;
}

.fade-out {
  opacity: 0;
}

.chevron {
  position: absolute;
  width: 28px;
  height: 8px;
  opacity: 0;
  transform: scale3d( .5,  .5,  .5 );
  animation: move 3s ease-out infinite;
}

.chevron:first-child {
  animation: move 3s ease-out 1s infinite;
}

.chevron:nth-child( 2 ) {
  animation: move 3s ease-out 2s infinite;
}

.chevron:before,
.chevron:after {
  content: ' ';
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #fff;
}

.chevron:before {
  left: 0;
  transform: skew( 0deg, 30deg );
}

.chevron:after {
  right: 0;
  width: 50%;
  transform: skew( 0deg, -30deg );
}

@keyframes move {
  25% {
    opacity: 1;

  }
  33% {
    opacity: 1;
    transform: translateY( 30px );
  }
  67% {
    opacity: 1;
    transform: translateY( 40px );
  }
  100% {
    opacity: 0;
    transform: translateY( 55px ) scale3d( .5, .5, .5 );
  }
}

.text {
  display: block;
  margin-top: 65px;
  font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font-size: 12px;
  color: #fff;
  white-space: nowrap;
  opacity: .25;
  animation: pulse 2s linear alternate infinite;
}

@keyframes pulse {
  to {
    opacity: 1;
  }
}

main > section {
  background: #fff;
  padding: 3rem 0;
}

body:not( .home ) main > .single-article {
  padding: 0;
}

main h2 {
  width: var( --title-width );
  margin: 0 auto;
  font-size: 1.75rem;
  font-weight: normal;
  border-top: 1px solid #555;
  border-bottom: 1px solid #555;
  padding: .5em 0;
}

main .list-wrap {
  width: var( --content-width );
  margin: 2rem auto;
}

main .dark {
  background: linear-gradient( #666, #333 );
}

main .dark ul {
  padding: .5rem 1rem;
}

main .list-wrap li {
  font-size: 1.5rem;
}

main .dark li {
  color: #fff;
  text-shadow: 1px 0 0 #000, -1px 0 0 #000, 0 1px 0 #000, 0 -1px 0 #000;
  position: relative;
  z-index: 1;
  margin: 1em 0 1em 1em;
  padding: 0 0.5em;
}

main .light li {
  margin: 1rem auto;
  padding: 1rem;
  border: 1px solid var( --accent-color );
  position: relative;
  z-index: 1;
  margin: 1em 0;
  padding: 0 .5em .25em 2em;
}

lottie-player {
  bottom: 0;
  right: 0;
}

.news-archive .news-archive__item {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: repeat( 2, auto );
  grid-template-areas:
    "date category"
    "date title";
  gap: .25em 1.5em;
  padding: 1.5rem 0 .75rem;
  font-size: 18px;
}

.news-archive .news-archive__item:has( + .news-archive__item ) {
  border-bottom: .5px dotted #aaa;
  padding: 1.5rem 0;
}

.news-archive .news-archive__item:has( + .news-archive__item:nth-child( 2 ) ) {
  padding: 0 0 1.5rem;
}

.news-archive__item .news-archive__category-area .news-archive__category {
  font-size: 14px;
  padding: .25em .5em;
  line-height: 1;
  border: 1px solid;
  border-radius: 4px;

  &.closing-days {
    color: #d55;
  }
  
  &.support {
    color: #5a5;
  }
  
  &.hall-information {
    color: #66e;
  }
  
  &.other {
    color: #fa0;
  }
  
  &.uncategorized {
    color: #07d;
  }
}

.news-archive__date {
  grid-area: date;
  align-self: center;
}

.news-archive__date .post-year {
  display: block;
  font-size: inherit;
  font-weight: normal;
  position: static;
  padding: 0;
  font-size: 14px;
  text-align: center;
}

.news-archive__date .post-year::after {
  display: none;
}

.news-archive__category-area {
  grid-area: category;
  align-self: center;
}

.news-archive__category-area + a {
  grid-area: title;
  width: fit-content;
}

.news-archive__category-area + a:hover {
  text-decoration: underline;
  opacity: 0.75;
}

@media screen and ( max-width: 714px ) {
  .list-wrap .news-archive__item {
    font-size: 14px;
    gap: .25em 1em;
  }
  
  .news-archive__item .news-archive__category-area .news-archive__category {
    font-size: 12px;
    padding: .35em;
    border-radius: 2px;
  }
}




main > section:nth-of-type( 2 ) li::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f06a";
  margin: 0 .5em 0 0;
  position: absolute;
  left: -1em;
}

main > section:nth-of-type( 3 ) li::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f521";
  color: var( --accent-color );
  margin: 0 .5em 0;
  position: absolute;
  left: 0;
  top: .25em;
}

main > section:nth-of-type( 4 ) > ul li::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f058";
  margin: 0 .5em 0 0;
  color: var( --accent-color );
}

main section p span {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: bold;
  position: relative;
  padding: 0 1em;
}

main section p span::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -5px;
  width: 90%;
  height: 5px;
  background: linear-gradient( 90deg, var( --accent-color ), #9E3D3F11 );
  border-radius: 0 100% 100% 0;
}

main section h2 + p {
  margin: 2rem 0;
}

.card-wrap {
  width: var( --content-width );
  margin: 2rem auto;
  gap: 2rem;
  align-items: stretch;
}

.card {
  width: calc( 50% - 1rem );
  padding: .5rem .25rem .25rem .25rem;
  background: var( --accent-color );
  background: linear-gradient( var( --accent-color ), #6b0a0c );
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}

.card h3 {
  margin: 0 auto .5rem;
  color: #fff;
  font-size: 1.5rem;
}

.card > p,
.card > div {
  background: #fff;
  padding: .5rem 1rem 0;
}

.tag-wrap {
  height: 100%;
}

.price-wrap {
  color: var( --accent-color );
  align-items: flex-end;
  margin: -1px 0 0;
}

.tax {
  writing-mode: vertical-rl;
  letter-spacing: 2em;
  font-size: .5rem;
  margin: 0 .5rem 0 0;
}

/* Add : 2024_12_31 */
p.member-limited {
  font-size: .875em;
  font-weight: bold;
  width: 2.75em;
  height: 2.75em;
  line-height: 1.15;
  border: 1px solid;
  border-radius: 2.5px;
  align-self: center;
  text-align: center;
  display: grid;
  place-content: center;
  margin: .125em .5em 0 0;
}

.price {
  font-size: 3rem;
  font-weight: bold;
}

.yen {
  font-size: .75rem;
  margin: 0 0 0 .5rem;
  line-height: 3.5;
}


.card .tax-in {
  font-size: .75rem;
  padding: 0 0 1rem;
  margin: -1px 0;
}

.card .tag-wrap {
  padding: .5rem 1rem 1rem;
}

.tag-wrap p,
.tag-wrap ul {
  background: #eee;
}

.tag-wrap p {
  padding: .25rem;
}

.tag-wrap ul {
  padding: .25rem .5rem .5rem;
  gap: .5rem;
}

.tag {
  background: #fff;
  padding: .125rem .25rem;
}

.attention .tag-wrap {
  display: inline-block;
}

.attention .tag-wrap ul {
  padding: .5rem;
  margin: .5rem 0 0;
}

.attention .tag-wrap li {
  background: #535353;
  color: #fff;
}

main > section:nth-of-type( 4 ) > ul {
  width: var( --content-width );
  margin: 2rem auto 0;
}

main > section:nth-of-type( 4 ) > ul li {
  font-size: 1.5rem;
  font-weight: bold;
  position: relative;
  margin: 0 0 1.75rem;
  display: flex;
  align-items: center;
  line-height: 1.25;
}

main > section:nth-of-type( 4 ) > ul li:last-child {
  margin: 0 0 1rem;
}

main > section:nth-of-type( 4 ) > ul li::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -5px;
  width: 100%;
  height: 5px;
  background: linear-gradient( 90deg, var( --accent-color ), #9E3D3F11 );
  border-radius: 0 100% 100% 0;
}

.tab-wrap {
  display: flex;
  flex-wrap: wrap;
  width: var( --content-width );
  margin: 0 auto;
}

.tab-label {
  color: var( --accent-color );
  background: #fff;
  width: calc( 100% / 3 );
  padding: .5em 0;
  border: 1px solid var( --accent-color );
  border-right: none;
  order: -1;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
}

.tab-label:last-of-type {
  border: 1px solid var( --accent-color );
}

.tab-content {
  width: 100%;
  display: none;
  border: 1px solid var( --accent-color );
  border-top: none;
  padding: 1rem 1rem;
}

.tab-switch:checked + .tab-label {
  background: var( --accent-color );
  color: #fff;
  cursor: auto;
}

.tab-switch:checked + .tab-label + .tab-content {
   display: block;
}

.tab-switch {
  display: none;
}

.message,
.image {
  width: 47.5%;
}

.tab-content h3 {
  font-size: 2.5rem;
  margin: 1rem 0;
}

.message {
  padding: 0 0 0 1em;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.message p {
  font-size: 1.25rem;
  color: #333;
  text-align: justify;
}

.middle-heading {
  font-size: 1.25rem;
  font-weight: bold;
  margin: 2rem 0;
}

.map-wrap {
  width: var( --content-width );
  margin: 0 auto;
}

.map {
  border: 0;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.details {
  width: var( --content-width );
  margin: 0 auto;
}

.details dt {
  margin: 0 0 1em 0;
  width: 12em;
  background: #777;
  color: #fff;
  padding: .5em 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.details dd {
  margin: 0 0 1em 0;
  width: calc( 100% - 12em );
  padding: .5em 1em;
  text-align: justify;
}

.inquiry {
  width: var( --content-width );
  margin: 0 auto;
}

.inquiry dt {
  margin: 0 0 1em 0;
  width: 12em;
  background: var( --accent-color );
  color: #fff;
  padding: .5em 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.inquiry dd {
  margin: 0 0 1em 0;
  width: calc( 100% - 12em );
  padding: .5em 1em;
  text-align: justify;
}

input[ type="radio" ],
input[ type="checkbox" ] {
  margin: 0 .5em 0 0;
  font-size: 1.5rem;
}

input[ type="text" ],
input[ type="tel" ],
input[ type="email" ],
textarea {
  padding: .25em .5em;
  font-family: 'Noto Serif JP', serif;
  border-radius: 2.5px;
  border: .75px solid var( --point-color );
}

input[ type="text" ]:focus,
input[ type="tel" ]:focus,
input[ type="email" ]:focus,
textarea:focus {
  outline-color: var( --accent-color );
}

input[ type="tel" ],
input[ type="email" ] {
  width: 100%;
}

#zip-1 {
  width: 3em;
}

#zip-2 {
  width: 3.5em;
}

#addr-1 {
  width: 5.5em;
}

#tel {
  width: 10em;
}

#name,
#kana {
  width: 20em;
}

#addr-2 {
  width: 50%;
}

#addr-3 {
  width: 100%;
}

textarea {
  width: 100%;
  height: 4.75rem;
  resize: vertical;
}

.required::after {
  content: "必須";
  display: inline-block;
  position: absolute;
  padding: .0625em .5em .125em;
  background: var( --main-color );
  top: -.75em;
  left: .5em;
  font-size: 1rem;
}

a[ href="https://shirayuri-hall.com/privacy-policy/" ] {
  text-decoration: underline;
  color: #777;
}

.agree-wrap {
  margin: 2rem 0;
  display: flex;
  justify-content: center;
}

label {
  cursor: pointer;
}

.agree-wrap label {
  outline: 3px double var(--accent-color);
  outline-offset: -3px;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  width: 18em;
  height: 2.5em;
  justify-content: center;
}

[ name="agree" ] {
  transform: scale( 1.25 );
  cursor: pointer;
}

input[ name="agree" ]:checked:read-only {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.agree-wrap label:has( :checked ) {
  position: relative;
  outline: none;
  cursor: default;
}

.agree-wrap label:has( :checked )::before {
  font-family: "Font Awesome 5 Free";
  content: '\f14a ';
  font-weight: 900;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: .5em;
  transform: translateY( -50% );
  color: var( --accent-color );
  font-size: 1.75em;
  font-weight: bold;
}

#submit {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: bold;
  border-radius: .25em;
  color: #fff;
  letter-spacing: .125em;
  line-height: 1;
  border: none;
  transition: background .25s, color .25s;
  background: var( --accent-color );
  font-family: 'Noto Serif JP', serif;
  display: flex;
  width: 100px;
  height: 30px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

#submit:disabled {
  background: #ccc;
  cursor: no-drop;
}

footer {
  line-height: 1;
  padding: 1rem 0;
  margin: auto 0 0;
  background: #fffb;
  -webkit-backdrop-filter: blur( .5rem );
  backdrop-filter: blur( .5rem );
}

footer .logo-wrap {
  align-items: center;
  gap: 1rem;
}

footer .logo-wrap p:first-child {
  line-height: 1.25;
  background: #fff7;
  padding: .5em .5em .5em .75em;
  -webkit-backdrop-filter: blur( 5px );
  backdrop-filter: blur( 5px );
}

footer .logo-wrap span {
  font-weight: normal;
}

footer .logo {
  margin: 0;
}

footer > p {
  margin: 1rem 0 0;
}

.button-wrap {
  height: 88px;
  text-align: center;
  background: #fff7;
  -webkit-backdrop-filter: blur( .5rem );
  backdrop-filter: blur( .5rem );
}

.button-area {
  gap: 1rem;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and ( max-width: 560px ) {
  .pc {
    display: none;
  }
  
  .sp {
    display: inline-block;
  }

  .button-wrap {
    height: auto;
    padding: 1rem 0 1.5rem;
  }

  .button-wrap > .flex {
    flex-wrap: wrap;
  }

  .button-area {
    gap: 1.5rem 1em;
  }
}

.sp-nav {
  display: none;
}

.fade-in {
  opacity: 0;
  transition-duration: 500ms;
  transition-property: opacity, transform;
  transform: translate( 0, 50px );
}

.scroll-in {
  opacity: 1;
  transform: translate( 0, 0 );
}

.modal {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 2;
  flex-direction: column;
  justify-content: space-around;
}

.modal .button {
  height: 1.75em;
  padding: 0 .5em 0 .75em;
  display: flex;
  align-items: center;
}

@media screen and ( max-width: 1024px ) {
  :root {
    --title-width: 90%;
    --content-width: 80%;
    font-size: 87.5%;
  }

  .header {
    gap: .5rem 0;
  }

  .logo {
    margin: 0;
  }

  nav ul {
    justify-content: center;
    gap: 0 2.75vw;
  }
}

/* Change 2024_12_31 */
/* @BreakPoint 699px -> 710px */
/* Change 2025_11_09 */
/* @BreakPoint 710px -> 714px */
@media screen and ( max-width: 714px ) {
  :root {
    --title-width: 95%;
    --content-width: 85%;
    font-size: 75%;
  }

  .hidden {
    display: none;
  }
  
  body {
    overflow-x: hidden;
  }
  
  body:not( .home ) {
    margin: 0;
  }

  .wrapper {
    min-height: 100lvh;
  }

  header {
    height: 50px;
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff7;
  }
  
  .header {
    width: 100%;
    height: 100%;
    background: #fff7;
  }

  .header .space-between {
    justify-content: center;
    height: 100%;
  }

  .logo {
    align-self: center;
  }

  .header nav {
    display: none;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 10vh;
  }
  
  nav a {
    font-size: 1.5rem;
  }

  .main-visual {
    height: calc( 100vh - 50px );
    margin: 0;
    background-attachment: fixed;
  }

  .main-visual section {
    padding: 0;
    gap: 3.5vh;
    background: #fff3;
    -webkit-backdrop-filter: blur( 3.5px );
    backdrop-filter: blur( 3.5px );
    clip-path: circle( 0 );
  }
  
  .main-visual section.open {
    animation: open 1s forwards;
  }
  
  @keyframes open {
    0% {
      clip-path: circle( 0 );
    }

    100% {
      clip-path: circle( 150vw );
    }    
  }

  .scroll-icon {
    bottom: 25%;
  }

  h1 {
    text-align: center;
    text-shadow: none;
    line-height: 1.75;
    letter-spacing: .25em;
    color: var( --main-color );
  }

  h1 ~ p {
    padding: .25em 15vw;
    align-self: center;
    width: auto;
    color: #111;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    font-size: 14px;
  }

  .adjust {
    text-align: justify;
  }

  lottie-player {
    width: 150px !important;
    height: 150px !important;
  }

  .card-wrap,
  .details,
  form dl {
    flex-direction: column;
  }

  .card {
    width: 100%;
  }

  .details dt,
  .details dd {
    width: 100%;
  }

  .details dd {
    margin: 0 0 2rem;
  }

  .details dd:last-of-type,
  .details li {
    text-align: left;
  }
  
  .details li span {
    display: inline-block;
    border: 1px solid #555;
    padding: .125em .25em;
    margin: 0 0 .25em;
  }

  .details li:last-child span {
    margin: 1em 0 .25em;
  }

  .description-wrap,
  footer .logo-wrap {
    flex-direction: column-reverse;
  }

  footer {
    margin: auto 0 50px;
  }

  footer .logo-wrap {
    gap: .5rem;
  }

  .message {
    width: 100%;
    padding: 0 1em;
  }

  .image {
    width: 95%;
  }

  .map {
    aspect-ratio: 1 / 1;
  }

  textarea {
    height: 10rem;
  }

  .inquiry dt,
  .inquiry dd {
    width: 100%;
  }
  
  .inquiry dd {
    margin: 0 0 2em;
  }

  .inquiry dd:first-of-type label {
    margin: 0 0 .5em;
    display: flex;
    align-items: center;
  }

  #addr-2,
  #name,
  #kana {
    width: 100%;
  }

  .sp-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 3;
    box-shadow: 0 0 5px #3337;
  }

  .sp-nav li {
    width: 20%;
    text-align: center;
    background: #fff;
  }

  .sp-nav li:not( :last-child ) {
    border-right: 1px solid #777;
  }

  .sp-nav a {
    display: flex;
    height: 50px;
    justify-content: center;
    align-items: center;
  }

  .sp-nav .current {
    background: var( --accent-color );
  }

  .sp-nav .current a {
    color: #fff;
  }
}





/* news single */
.single-post main {
  padding: calc( 3rem - 88px ) 0 0;
}


@media screen and (max-width: 714px) {
  .single-post main {
    padding: 3.5rem 0 0;
  }

  .single-post main h1 {
    margin: 1.5em auto;
    padding: .5em 1em;
    width: var(--title-width);
    text-align: justify;
    text-align-last: left;
    word-break: break-all;
    font-size: 18px;
    line-height: 1.4;
  }

  .single-post main .single-article__content p {
    font-size: 14px;
    font-weight: 100;
    line-height: 1.5;
  }
}




/* news archive */
.archive main {
  padding: calc( 3rem - 88px ) 0 0;
}

@media screen and ( max-width: 714px ) {
  .archive main {
    padding: 3.5rem 0 0;
  }

  .archive main h1 {
    margin: 1.5em auto;
  }
}

main .news-archive__category-list {
  gap: 1.5em;
  margin: 2.5rem auto 3rem;
}

.news-archive__category-list .news-archive__category-item {
  position: relative;
  font-size: 14px;
  padding: .35em .5em;
  line-height: 1;
  border: 1px solid;
  border-radius: 4px;
  background: #aaa;
  color: #aaa;

  a {
    color: #fff;
  }

  &.all {
    order: 0;
  }

  &.all:not( :has( ~ .current ) ),
  &.all:not( :has( ~ .current ) ) a {
    color: #555;
    background: #fff;
  }

  &.closing-days {
    order: 3;
  }
  
  &.closing-days.current,
  &.closing-days.current a {
    color: #d55;
    background: #fff;
  }

  &.support {
    order: 2;
  }
  
  &.support.current,
  &.support.current a {
    color: #5a5;
    background: #fff;
  }

  &.hall-information {
    order: 1;
  }
  
  &.hall-information.current,
  &.hall-information.current a {
    color: #66e;
    background: #fff;
  }

  &.other {
    order: 4;
  }
  
  &.other.current,
  &.other.current a {
    color: #fa0;
    background: #fff;
  }

  &.uncategorized {
    order: 5;
  }
  
  &.uncategorized.current,
  &.uncategorized.current a {
    color: #07d;
    background: #fff;
  }
}

.news-archive__category-list:not( :has( .current ) ) > .all,
.news-archive__category-list:not( :has( .current ) ) .all a,
.news-archive__category-list > .current,
.news-archive__category-list > .current a {
  font-weight: bold;
}

.news-archive__category-list .news-archive__category-item span {
  position: absolute;
  top: -1.25em;
  right: -1.5em;
  font-size: .75rem;
  background: #fff;
  color: #000;
  border: 1px solid #777;
  width: 2.25em;
  height: 2.25em;
  line-height: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.pagination {
  width: fit-content;
  margin: 2rem auto;

  .nav-links {
    display: flex;
    gap: 0 1rem;
  }
  
  .page-numbers {
    width: 2em;
    height: 2em;
    line-height: 1;
    display: grid;
    place-items: center;
    background: #eee;
    font-size: 1.25rem;
  }

  .page-numbers.prev,
  .page-numbers.next {
    background: #fff;
  }

  .page-numbers.current {
    font-weight: bold;
    background: var( --accent-color );
    color: #fff;
  }

  .page-numbers::after {
    display: none;
  }
}

.single-article__back {
  position: relative;
  width: fit-content;
  margin: 3rem auto 2rem;
}

.single-article__back a::after {
  position: absolute;
  display: block;
  content: "";
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: #555;
  transform: scale(1);
  transition: transform .5s;
}

.single-article__back a:hover::after {
  transform: scale(0);
}

main .single-article__meta,
main .single-article__content {
  width: var( --content-width );
  margin: 0 auto;
}

main .single-article__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto 2rem;
}

main .single-article__content p {
  font-size: 18px;
  margin: .5rem 0;
  line-height: 1.75;
}

.single-article__category-list .single-article__category {
  font-size: 14px;
  padding: .25em .5em;
  line-height: 1;
  border: 1px solid;
  border-radius: 4px;
  background: #aaa;
  color: #aaa;

  a {
    color: #fff;
  }
  
  &.closing-days,
  &.closing-days a {
    color: #d55;
    background: #fff;
  }

  &.support,
  &.support a {
    color: #5a5;
    background: #fff;
  }

  &.hall-information,
  &.hall-information a {
    color: #66e;
    background: #fff;
  }

  &.other,
  &.other a {
    color: #fa0;
    background: #fff;
  }
  
  &.uncategorized,
  &.uncategorized a {
    color: #07d;
    background: #fff;
  }
}

.single-article__image {
  margin: 0 0 2rem;
}

@media screen and ( max-width: 714px ) {
  .archive main .list-wrap {
    width: 100%;
  }

  main .single-article__content p {
    font-size: 14px;
    line-height: 1.75;
  }

}




/* page */
.page main > section {
  padding: 0;
}

.page h1 {
  margin: 2rem auto 1rem;
}

.page h1 ~ p {
  margin: 0 auto .25rem;
  width: var( --content-width );
  text-align: justify;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  letter-spacing: .125em;
  color: #000;
}

.page:has( form ) h1 ~ p:nth-last-of-type( 2 ),
.page:not( :has( form ) ) h1 ~ p:last-of-type {
  margin: .5em auto 2rem;
}

.page:has( form ) h1 ~ p:last-of-type {
  display: none;
}

.page h1 ~ p em {
  margin: 0 .125em;
  font-style: normal;
  font-weight: 700;
}

.page h1 ~ p a {
  text-decoration: underline;
  color: var( --point-color );
}

.inquiry dd span::after,
.wpcf7-form-control-wrap::before,
.wpcf7-form-control-wrap::after,
.wpcf7-form-control::before,
.wpcf7-form-control::after,
.wpcf7-list-item::before,
.wpcf7-list-item::after,
.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
  display: none;
}

.page form dl {
  font-size: 16px;
}

.inquiry p span {
  display: inherit;
  font-size: inherit;
  font-weight: inherit;
  position: inherit;
  padding: inherit;
}

.inquiry p:has( [ name="zip-1" ] ) {
  display: flex;
  align-items: center;
  gap: 0 .5em;
}

.wpcf7-submit + .wpcf7-spinner {
  position: relative;
}

/* offering-flower */
.page:has( .inquiry ) h1,
.page:has( .offering-flower ) h1 {
  padding: .5em 1em;
}

.offering-flower h2 {
  display: flex;
  align-items: center;
  gap: 0 .2em;
  margin: 1em auto;
  width: fit-content;
  border: none;
  padding: .25em 1em .35em;
  letter-spacing: calc(1em / 8);
  font-size: 1.5rem;
  line-height: 1;
  color: #666;
}

.offering-flower h2::before,
.offering-flower h2::after {
  display: inline-block ;
  content: "−";
  font-size: 1.5em;
}

.offering-flower h3 {
  font-size: 1rem;
  font-weight: normal;
}

.offering-flower .product-grid {
  gap: 2em 0;
  padding: .5em 1em;
  justify-content: space-between;
  gap: 1em;
}

.offering-flower #mail {
  width: auto;
}

@media screen and ( max-width: 714px ) {
  .page main > section {
    padding: 3.5rem 0 0;
  }

  .page:has( .inquiry ) h1,
  .page:has( .offering-flower ) h1 {
    margin: 1.5em auto;
  }

  .page:has( .inquiry ) h1:has( + p:not( :empty ) ),
  .page:has( .offering-flower ) h1:has( + p:not( :empty ) ) {
    margin: 1.5em auto 2rem;
  }

  .offering-flower h2 {
    margin: 0 auto 1em;
  }

  .page h1 ~ p {
    padding: .25em 7.5vw;
    text-align: justify;
    text-align-last: left;
    line-height: 1.5;
    font-size: 14px;
    width: auto;
  }

  .offering-flower .product-grid {
    padding: .5em 0;
  }

  .page form dl {
    font-size: 14px;
  }

}

.offering-flower .product-card {
  display: grid;
  grid-template-columns: 1fr repeat( 1, minmax( 10em, 1fr ));
  grid-template-rows: auto 10em repeat( 2, auto );
  grid-template-areas: 
    "title title"
    "image radio"
    "desc desc"
    "price price";
  justify-content: space-between;
  gap: .5em 1em;
  width: calc( (100% - 1rem) / 2 );
  max-width: 534px;
  padding: 1em;
  border-radius: 5px;
  background: #fff;
  outline: 5px solid #f3f3f3;
  outline-offset: -5px;

  transition: background .25s;
  /* font-size: 1.125rem; */
}

.offering-flower .product-card:has( [ value="0" ]:checked ) {
  background: #f3f3f3;
  outline: 0;
}

@media screen and ( max-width: 1280px ) {
  .offering-flower .product-grid {
    justify-content: flex-start;
  }

  .offering-flower .product-card {
    width: 100%;
  }

  .offering-flower textarea {
    max-width: 534px;
  }
}

@media screen and ( max-width: 714px ) {
  .offering-flower input::placeholder {
    font-size: 1rem;
  }

  .offering-flower #place-of-offering,
  .offering-flower #mail,
  .offering-flower [ name="invoice-recipient" ],
  .offering-flower [ name="payee-name" ],
  .offering-flower #plate-display-name {
    width: 100%;
}
}

.offering-flower .card-image {
  grid-area: image;
}

.offering-flower .card-image > a {
  position: relative;
  display: block;
  height: 100%;
  overflow: hidden;
}

.offering-flower .card-image > a > img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 25%;
}

.offering-flower .card-image .fa-search-plus {
  position: absolute;
  bottom:  1cqh;
  right: .35cqw;
  padding: .25em;
  border-radius: 50%;
  font-size: 1.125rem;
  background: rgba( 50, 50, 50 );
  color: rgb( 160, 160, 160 );
}

@media screen and ( max-width: 1280px ) {
  .offering-flower .card-image .fa-search-plus {
    bottom: .5em;
    right: .5em;
    font-size: 1.25rem;
  }
}

@media screen and ( max-width: 714px ) {
  .offering-flower .card-image .fa-search-plus {
    bottom: .25em;
    right: .25em;
    font-size: 1.5rem;
  }
}

.offering-flower .card-title {
  grid-area: title;
  font-weight: bold;
  margin: 0 auto .5rem;
}

.offering-flower .card-description {
  grid-area: desc;
  font-size: 1rem;
}

.offering-flower .txt-limit {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
}

.offering-flower .card-description.txt-limit label {
  display: inline;
}

.offering-flower .txt-limit:has( input[ name="flag" ]:checked ) {
  -webkit-line-clamp: unset;
}

.offering-flower .txt-limit input[ name="flag" ] {
  display: none;
}

.offering-flower .card-price {
  grid-area: price;
  text-align: center;
}

.offering-flower .card-quantity {
  grid-area: radio;
  display: flex;
  gap: .5em 0;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  margin: auto;
}

.offering-flower dd:has( #request ) {
  margin: 0 0 1em;
}

.offering-flower ~ #order-details {
  width: fit-content;
  margin: 0 auto 1rem;
  padding: 1rem 5%;
  background: #f3f3f3;
}

.offering-flower ~ #order-details .plate-display-name {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    gap: 0 .125em;
    padding: 0 5%;
    margin: 0 0 .5rem;
    text-align: center;
    font-size: 1.25rem;
    font-weight: bold;
}

.offering-flower ~ #order-details .plate-display-name dt,
.offering-flower ~ #order-details .plate-display-name dd {
  width: fit-content;
  background: transparent;
  margin: 0;
  padding: 0;
  color: #000;
}

.offering-flower ~ #order-details .plate-display-name dt {
  color: #777;
  font-weight: normal;
  font-size: .875rem;
}

.offering-flower ~ #order-details .plate-display-name dt::after {
  display: inline-block;
  content: " ：";
}

.offering-flower ~ #order-details table {
  width: fit-content;
  margin: 0 auto;
  border-collapse: collapse;
}

.offering-flower ~ #order-details table caption {
  margin: 0 0 .5rem;
  color: #777;
  font-size: 1rem;
  font-weight: bold;
}

.offering-flower ~ #order-details table th,
.offering-flower ~ #order-details table td {
  padding: .5rem 1.5rem;
  border: 1px solid #ccc;
  background: #fff;
  color: #777;
  font-weight: normal;
}

.offering-flower ~ #order-details table td {
  color: #555;
  font-weight: normal;
  font-size: 1.25rem;
}

.offering-flower ~ #order-details .total-amount {
  margin: 1rem 0 0;
  text-align: center;
  font-size: 1.25rem;
  font-weight: bold;
}

.offering-flower ~ #order-details .total-amount span {
  display: inline-block;
  margin: 0 .125em 0 0;
  font-weight: normal;
  font-size: .875rem;
}

.offering-flower ~ #order-details .total-amount span::after,
.offering-flower ~ #order-details:has( tbody:empty ),
.offering-flower ~ #order-details:not( :has( tr.offering-flower ) ),
.offering-flower ~ #order-details table:has( tbody:empty ) {
  display: none;
}


[ data-name="name-on-the-receipt" ] + br,
[ data-name="billing-name" ]  + br {
  display: none;
}

.inquiry [ data-name="invoice-recipient" ],
.inquiry [ data-name="payee-name" ] {
  display: none;
}

[ data-name="name-on-the-receipt" ]:has( [ value="その他" ]:checked ) ~ [ data-name="payee-name" ],
[ data-name="billing-name" ]:has( [ value="その他" ]:checked ) ~ [ data-name="invoice-recipient" ] {
  display: block;
  margin: .5em 0 0;
}



/* baguetteBox.js */
body:has( #baguetteBox-overlay.visible ) {
  overflow: hidden;
}

#baguetteBox-overlay {
  background: rgba( 255, 255, 255, .5 ) !important;
  -webkit-backdrop-filter: blur( 10px ) !important;
  backdrop-filter: blur( 10px ) !important;
}

#baguetteBox-overlay .full-image figcaption {
  -webkit-backdrop-filter: blur( 5px ) !important;
  backdrop-filter: blur( 5px ) !important;
}

#baguetteBox-overlay .full-image img {
  box-shadow: none !important;
  max-height: 87.5vh;
}

#baguetteBox-figcaption-0 {
  font-size: 2rem !important;
}










body:has( .popup-dialog:open ) {
  /* overflow: hidden; */
}

.offering-flower .popup-dialog {
  position: fixed;
}

.offering-flower .popup-dialog:open {
  position: fixed;
  height: 100lvh;
  width: 100vw;
  top: 0;
  left: 0;
  display: grid;
  place-content: center;
  background: #0005;
  -webkit-backdrop-filter: blur( 5px );
  backdrop-filter: blur( 5px );
}

.offering-flower .popup-dialog:open > div {
  background: #fff;
  width: 75%;
  max-height: 80vh;
  padding: 1em;
}

*:has( > wbr ) {
  word-break: keep-all;
}

@media screen and ( max-width: 714px ) {
  .offering-flower ~ #order-details .plate-display-name dt,
  .offering-flower ~ #order-details .total-amount span {
    font-size: 1rem;
  }  
}








#wpadminbar #wp-admin-bar-root-default {
  display: flex;
  gap: 0 1vw;
  width: 100%;
}

#wpadminbar #wp-admin-bar-root-default li:first-child {
  margin: 0 2.5vw 0 0;
}

#wp-admin-bar-root-default #wp-admin-bar-site-name a::before {
  display: none;
}

#wp-admin-bar-root-default #wp-admin-bar-site-name img {
  vertical-align: sub;
  margin: 0 .25em;
  height: 18px;
  translate: 0 1px;
  color: #fff;
}

#wpadminbar #wp-admin-bar-top-secondary:has( #wp-admin-bar-my-account ) {
  display: none;
}






/* privacy-policy */
.page.privacy-policy main {
  h2 {
    width: var(--title-width);
    margin: 0 auto;
    font-size: 1.25rem;
    font-weight: bold;
    text-align: center;
    border-top: none;
    border-bottom: none;
    padding: .5em 0;
  }

  p {
    width: var(--title-width);
    margin: 0 auto;
    font-size: .875rem;
    text-align: center;
    line-height: 1.5;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    text-align: left;

    a {
      text-decoration: underline;
      color: #07d;
    }
  }

  ol {
    width: var(--title-width);
    margin: .5em auto;
    padding: 0 3em;
    font-size: .875rem;
    line-height: 1.25;
    text-align: left;
    
    li {
      margin: 0 0 .5em;
      list-style: decimal;
      line-height: 1.5;
    }
  }
}

@media screen and ( max-width: 714px ) {
  .page.privacy-policy main {
    & > section {
      padding: 0;
    }

    h2 + p {
      padding: .5em;
    }

    h2.wp-block-heading + p:has( + ol ) {
      padding: .5em;
    }

    h2 + p:not( :has( + p ) ) {
      padding: .5em .5em 2.5em;
    }
    
    p + p {
      padding: .5em .5em 2.5em;
    }

    p + ol {
      padding: .5em 2em 2.5em 3em;
    }

    ol {
      width: 90%;
      padding: 0 2em;
    }

    
  }
}




form.submitting .wpcf7-spinner {
  margin: 1em auto 0;
}

form.submitting .wpcf7-spinner::after {
  display: none;
}



.wpcf7 form[ method="post" ] .wpcf7-response-output {
  width: fit-content;
  margin: 0 auto;
  padding: 1em .5em 1em 1em;
  border: 3px double #fff;
  background: var( --accent-color );
  color: #fff;
}

.wpcf7 form[ method="post" ] .wpcf7-response-output[ aria-hidden="true" ] {
  background: var( --sub-color );
}

form:has( .wpcf7-response-output[ aria-hidden="true" ]:not( :empty ) ) #order-details,
form:has( .wpcf7-response-output[ aria-hidden="true" ]:not( :empty ) ) #order-details ~ p,
form:has( .wpcf7-response-output[ aria-hidden="true" ]:not( :empty ) ) .flex:has( #submit ) {
  display: none;
}





#top h2 + p {
  letter-spacing: .125em;
}

@media screen and ( max-width: 714px ) {
  #top #inquiry + section h2 + p {
    margin: 2rem auto;
  }

  /* topページ内のセクション直下のフォントサイズ調整 */
  #top h2 + p,
  /* card内の画像下の文章フォントサイズ調整 */
  .card > img + p,
  /* アクセスセクション内のフォントサイズ調整 */
  #access + section p,
  #access + section li,
  #access + section dl,
  form p {
    font-size: 14px;
  }

  /* form内のフォントサイズ調整 */
  form .wpcf7-form-control,
  form .wpcf7-form-control.wpcf7-text,
  form .wpcf7-form-control.wpcf7-email,
  form .wpcf7-form-control.wpcf7-tel,
  form .wpcf7-form-control.wpcf7-textarea,
  form .wpcf7-form-control.wpcf7-select,
  form .wpcf7-form-control.wpcf7-checkbox,
  form .wpcf7-form-control.wpcf7-radio,
  form .wpcf7-form-control.wpcf7-quiz {
    font-size: 16px;
  }
  
}