@charset "UTF-8";
:root {
  --font: #4A443F;
  --white: #FFFFFF;
  --gray: #FFFBFB;
}

:root {
  --contents-width: 82.5rem;
}

:root {
  --font-family-noto: "Noto Sans JP", sans-serif;
  --font-family-kiwi: "Kiwi Maru", serif;
  --font-family-caveat: "Caveat", cursive;
  --bold: 700;
  --medium: 500;
  --regular: 400;
}

html {
  color: #000;
  background: #fff;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

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

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select,
button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 100%;
  border-radius: 0;
  border: none;
  appearance: none;
  background-color: inherit;
}

input,
textarea,
select {
  font-size: 16px;
}

textarea {
  resize: vertical;
  display: block;
}

button {
  padding: 0;
  cursor: pointer;
}

legend {
  color: #000;
}

main {
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

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

svg {
  vertical-align: bottom;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

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

html {
  font-size: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  html {
    font-size: clamp(12px, 1.5vw, 16px);
  }
}
@media screen and (min-width: 1080px) {
  html {
    font-size: 100%;
  }
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}
@media screen and (min-width: 768px) {
  html {
    scroll-padding-top: 6.25rem;
  }
}

body {
  font-family: var(--font-family-noto);
  color: var(--font);
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: var(--regular);
}

body.is-menu {
  overflow: hidden;
}

.main {
  padding-top: 5rem;
}
@media screen and (min-width: 768px) {
  .main {
    padding-top: 6.25rem;
  }
}

.u-visually-hidden {
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  border: 0 !important;
  padding: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  margin: -1px !important;
}

.c-section-title {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  row-gap: 0.625rem;
}

.c-section-title-en {
  font-weight: var(--bold);
  font-size: 3.5rem;
  line-height: 1;
  letter-spacing: normal;
  -webkit-text-stroke: 1px var(--font);
  color: var(--white);
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .c-section-title-en {
    font-size: 6rem;
  }
}

.c-section-title-ja {
  line-height: 1;
  letter-spacing: 0.15em;
  font-weight: var(--bold);
  line-height: 1.5;
  font-size: 2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-section-title-ja {
    font-size: 3.5rem;
  }
}

.c-button {
  background-color: var(--white);
  border: solid 2px var(--font);
  font-weight: var(--medium);
  padding: 1.25rem 0;
  max-width: 17.8125rem;
  width: 100%;
  box-shadow: 0 0.625rem 0 var(--font);
  border-radius: 1.875rem;
  text-align: center;
  display: block;
}
@media screen and (min-width: 768px) {
  .c-button {
    font-size: 1.5rem;
    max-width: 22.5rem;
    box-shadow: 0 1.25rem 0 var(--font);
  }
}

.c-button-hv {
  transition: box-shadow 0.6s, transform 0.6s;
}
@media (any-hover: hover) {
  .c-button-hv:hover {
    transform: translateY(0.3rem);
    box-shadow: 0 0.2rem 0 var(--font);
  }
}

.c-page-title-area {
  padding: 4rem 0;
  background-color: var(--font);
  position: relative;
}

.c-page-title-area::before {
  content: "";
  background-image: linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 1.5rem 1.5rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.c-page-title-inner {
  position: relative;
}

.c-page-title-inner::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  bottom: -8rem;
  right: 1rem;
  width: 7rem;
  height: 10.8125rem;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .c-page-title-inner::before {
    bottom: -7.4375rem;
    right: 2.5rem;
    width: 16.25rem;
  }
}

.c-page-title-area .c-section-title {
  display: flex;
}

.c-page-title-area .c-section-title-ja {
  color: var(--white);
}

.c-breadcrumbs {
  padding: 0.5rem 0;
}

.c-breadcrumbs ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  line-height: 1;
}

.c-breadcrumbs a {
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .c-breadcrumbs a:hover {
    opacity: 0.7;
  }
}

.c-breadcrumbs img {
  width: 2rem;
}

.c-breadcrumbs .current-item {
  font-weight: var(--bold);
}

.l-inner {
  padding: 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: var(--contents-width);
    margin: 0 auto;
    padding: 0 2.5rem;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  height: 5rem;
  padding: 0 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 20;
  box-shadow: 0 2px 10px 0 rgba(74, 68, 63, 0.3);
}
@media screen and (min-width: 768px) {
  .header {
    height: 6.25rem;
    padding: 0 2.5rem;
  }
}

.header-logo {
  max-width: 9.375rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .header-logo {
    max-width: 11.25rem;
  }
}

.header-logo a {
  display: block;
}
@media (any-hover: hover) {
  .header-logo a:hover .logo-hover {
    opacity: 1;
  }
  .header-logo a:hover .logo-main {
    opacity: 0;
  }
}

.logo-main {
  transition: opacity 0.3s;
  display: block;
}

.logo-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s;
  display: block;
}

.header-button-area {
  display: flex;
  column-gap: 0.625rem;
}

.header-button-search,
.header-sp-button {
  width: 3.3125rem;
  height: 3.3125rem;
  border: solid 2px var(--font);
  border-radius: 50%;
  transition: background-color 0.3s, color 0.3s;
}
@media (any-hover: hover) {
  .header-button-search:hover,
  .header-sp-button:hover {
    background-color: var(--font);
    color: var(--white);
  }
}
@media screen and (min-width: 768px) {
  .header-button-search,
  .header-sp-button {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background-color: var(--white);
    border: solid 2px var(--font);
    font-weight: var(--medium);
    padding: 3rem 1.25rem;
    border-radius: 1rem 0 0 1rem;
    transition: background-color 0.3s, color 0.3s;
    width: auto;
    height: auto;
  }
}

.header-button-search img {
  width: 1.875rem;
}
@media screen and (min-width: 768px) {
  .header-button-search img {
    display: none;
  }
}

.header-button-search-text {
  display: none;
}
@media screen and (min-width: 768px) {
  .header-button-search-text {
    display: block;
    writing-mode: vertical-lr;
    letter-spacing: 0.1em;
  }
}

.header-sp-button {
  position: relative;
}
@media screen and (min-width: 768px) {
  .header-sp-button {
    display: none;
  }
}
@media (any-hover: hover) {
  .header-sp-button:hover span {
    background-color: var(--white);
  }
}

.header-sp-button span {
  width: 1.875rem;
  height: 2px;
  background-color: var(--font);
  display: inline-block;
  position: absolute;
  left: 0.65rem;
  transition: background-color 0.3s;
}

.header-sp-button span:nth-child(1) {
  top: 1.0625rem;
  transition: transform 0.3s;
}

.header-sp-button span:nth-child(2) {
  top: 1.5625rem;
  transition: opacity 0.3s;
}

.header-sp-button span:nth-child(3) {
  top: 2.0625rem;
  transition: transform 0.3s;
}

.header-sp-button.is-open span:nth-child(1) {
  top: 1.6rem;
  transform: rotate(-45deg);
}

.header-sp-button.is-open span:nth-child(2) {
  opacity: 0;
}

.header-sp-button.is-open span:nth-child(3) {
  top: 1.6rem;
  transform: rotate(45deg);
}

.header-nav {
  position: fixed;
  width: 100%;
  top: 5rem;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--white);
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .header-nav {
    position: static;
    height: 100%;
    opacity: 1;
    visibility: visible;
  }
}

.header-nav.is-open {
  opacity: 1;
  visibility: visible;
}

.header-nav-menu {
  height: 100vh;
  padding: 4rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .header-nav-menu {
    height: 100%;
    flex-direction: row;
    padding: 0;
    column-gap: 0.625rem;
    justify-content: end;
  }
}

.header-nav-menu li a {
  font-weight: var(--medium);
  font-size: 1rem;
  border: solid 2px var(--font);
  width: 12.5rem;
  border-radius: 1.875rem;
  padding: 1.125rem 0;
  display: block;
  text-align: center;
  transition: background-color 0.3s, color 0.3s;
}
@media (any-hover: hover) {
  .header-nav-menu li a:hover {
    background-color: var(--font);
    color: var(--white);
  }
}
@media screen and (min-width: 768px) {
  .header-nav-menu li a {
    padding: 1.125rem 2rem;
    width: 100%;
  }
}

/* ----------------------------------------
  検索フォーム
---------------------------------------*/
.search-modal {
  position: fixed;
  inset: 0;
  margin: auto;
  z-index: 9999;
  border-radius: 1rem;
  padding: 0;
  background-color: var(--white);
  max-width: 20rem;
  width: 100%;
  border: none;
  padding: 1.5rem;
  transform: none;
}
.search-modal::backdrop {
  background-color: rgba(74, 68, 63, 0.8);
}
@media screen and (min-width: 768px) {
  .search-modal {
    max-width: 50rem;
    padding: 3rem;
  }
}

.search-modal-inner {
  position: relative;
}

.search-modal-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
  border-radius: 50%;
  background-color: var(--font);
  border: solid 2px var(--font);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}
@media (any-hover: hover) {
  .search-modal-close:hover {
    background-color: var(--white);
  }
  .search-modal-close:hover::before, .search-modal-close:hover::after {
    background-color: var(--font);
  }
}
@media screen and (min-width: 768px) {
  .search-modal-close {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.search-modal-close::before,
.search-modal-close::after {
  content: "";
  position: absolute;
  height: 0.125rem;
  width: 0.625rem;
  border-radius: 0.3125rem;
  background-color: var(--white);
  transform: rotate(-45deg);
  transition: background-color 0.3s;
}
@media screen and (min-width: 768px) {
  .search-modal-close::before,
  .search-modal-close::after {
    width: 1rem;
  }
}

.search-modal-close::after {
  transform: rotate(45deg);
}

.search-modal-title {
  font-size: 1.5rem;
  font-weight: var(--bold);
  margin-bottom: 2.5rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .search-modal-title {
    font-size: 3rem;
    margin-bottom: 4rem;
  }
}

.search-modal-form {
  position: relative;
}

.search-modal-input {
  border: 2px solid var(--font);
  border-radius: 1.875rem;
  padding: 1rem;
  width: 100%;
  font-size: 0.85rem;
}
@media screen and (min-width: 768px) {
  .search-modal-input {
    font-size: 1rem;
    padding: 1.25rem;
  }
}

.search-modal-input::placeholder {
  color: #9F9D9D;
}

.search-modal-button {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--font);
  border: solid 2px var(--font);
  border-radius: 0 1.875rem 1.875rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1.5rem;
  height: 100%;
  transition: background-color 0.3s;
}
@media (any-hover: hover) {
  .search-modal-button:hover {
    background-color: var(--white);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.search-modal.is-open,
.search-modal.is-open::backdrop {
  animation-name: fadeIn;
  animation-fill-mode: forwards;
  animation-duration: 500ms;
  animation-timing-function: ease-out;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.search-modal.is-close,
.search-modal.is-close::backdrop {
  animation-name: fadeOut;
  animation-fill-mode: forwards;
  animation-duration: 500ms;
  animation-timing-function: ease-out;
}

.footer {
  padding: 5rem 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-top: 7.5rem;
  }
}

@media screen and (min-width: 768px) {
  .footer-inner {
    max-width: 70rem;
  }
}

.footer-content {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .footer-content {
    flex-direction: row-reverse;
    column-gap: 0.3125rem;
    align-items: end;
    margin-bottom: 4rem;
  }
}

.footer-map {
  margin-left: -1.25rem;
  margin-right: -1.25rem;
  background-color: var(--font);
  padding: 4rem 0 2.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .footer-map {
    margin: 0;
    padding: 5rem 3.75rem;
    border-radius: 1rem;
  }
}

.footer-map::before {
  content: "“access”";
  position: absolute;
  top: 0.875rem;
  left: 0;
  font-size: 2rem;
  line-height: 1;
  color: var(--white);
  font-family: var(--font-family-caveat);
}
@media screen and (min-width: 768px) {
  .footer-map::before {
    font-size: 3rem;
    left: 3rem;
  }
}

.footer-map-inner {
  background-color: var(--white);
}

.footer-info-area {
  padding: 1.5rem;
}
@media screen and (min-width: 768px) {
  .footer-info-area {
    max-width: 25.8rem;
    width: 100%;
  }
}

.footer-logo {
  max-width: 11.25rem;
  margin-bottom: 1rem;
}

.footer-map-link {
  display: inline-block;
  background-color: var(--font);
  color: var(--white);
  font-weight: var(--medium);
  border: solid 2px var(--font);
  padding: 0.5rem 1.25rem;
  border-radius: 1.875rem;
  margin-bottom: 1.5rem;
  transition: background-color 0.3s, color 0.3s;
}
@media (any-hover: hover) {
  .footer-map-link:hover {
    background-color: var(--white);
    color: var(--font);
  }
}

.footer-info {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .footer-info {
    flex-wrap: wrap;
    flex-direction: row;
  }
}

.footer-info dt {
  font-weight: var(--medium);
  margin-bottom: 0.625rem;
}
@media screen and (min-width: 768px) {
  .footer-info dt {
    width: 5.625rem;
    flex-shrink: 0;
  }
}

.footer-info dd {
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .footer-info dd {
    width: calc(100% - 5.625rem);
  }
}

.footer-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1.28125rem;
  padding: 0 6%;
  margin-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .footer-list {
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 6rem;
    padding: 0;
    max-width: 40rem;
    margin: 0 auto 6rem;
  }
}

.footer-list li a {
  display: block;
  border: solid 2px var(--font);
  border-radius: 1.875rem;
  font-weight: var(--medium);
  padding: 1.125rem 1rem;
  text-align: center;
  transition: background-color 0.3s, color 0.3s;
}
@media (any-hover: hover) {
  .footer-list li a:hover {
    background-color: var(--font);
    color: var(--white);
  }
}

.footer-copyright {
  text-align: center;
  font-size: 0.75rem;
}

/* ----------------------------------------
  mainvisual
---------------------------------------*/
.mainvisual {
  padding-bottom: 0.1rem;
  position: relative;
  height: calc(100vh - 5rem);
}
@media screen and (min-width: 768px) {
  .mainvisual {
    margin-bottom: 7.5rem;
    height: calc(100vh - 6.25rem);
  }
}

.mainvisual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 80%, rgba(255, 255, 255, 0.4) 90%, rgb(255, 255, 255) 100%);
  z-index: 10;
  pointer-events: none;
}

.mainvisual-swiper {
  height: 100%;
}

.mainvisual-slide img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: right;
  transform: scale(1.1) translateX(0);
  transition: transform 6s linear;
}

.mainvisual-slide.swiper-slide-active img {
  transform: scale(1.2) translateX(-2%);
  overflow: hidden;
}

.mainvisual-info {
  position: absolute;
  top: 1.25rem;
  left: 0.625rem;
  padding: 1rem 1.0625rem;
  border: solid 2px var(--font);
  background-color: var(--white);
  border-radius: 1rem;
  transform-origin: top center;
  animation: swing 6s ease-in-out infinite;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .mainvisual-info {
    top: 2.5rem;
    left: 2.5rem;
    padding: 2.875rem 3.46875rem;
  }
}

@keyframes swing {
  0% {
    transform: rotate(-4deg);
  }
  25% {
    transform: rotate(3deg);
  }
  50% {
    transform: rotate(-2deg);
  }
  75% {
    transform: rotate(4deg);
  }
  100% {
    transform: rotate(-4deg);
  }
}
.mainvisual-info::before {
  content: "";
  width: 0.125rem;
  height: 1.25rem;
  background-color: var(--font);
  position: absolute;
  left: 0;
  right: 0;
  top: -1.25rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .mainvisual-info::before {
    top: -2.5rem;
    height: 2.5rem;
  }
}

.mainvisual-info dl {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 0.25rem;
  font-weight: var(--bold);
  font-size: 1rem;
  color: var(--white);
  -webkit-text-stroke: 1px var(--font);
}
@media screen and (min-width: 768px) {
  .mainvisual-info dl {
    row-gap: 0.5rem;
    font-size: 2rem;
  }
}

.mainvisual-title {
  position: absolute;
  bottom: 1.5rem;
  right: 1.25rem;
  color: var(--gray);
  text-shadow: 0 0.3125rem 0.5rem rgba(74, 68, 63, 0.6);
  letter-spacing: 0.1em;
  font-weight: var(--medium);
  font-family: var(--font-family-kiwi);
  z-index: 10;
  line-height: 1.4375;
}
@media screen and (min-width: 1300px) {
  .mainvisual-title {
    right: 3.75rem;
    bottom: 3.75rem;
  }
}

.mainvisual-title-large {
  display: block;
  font-size: 3rem;
}
@media screen and (min-width: 768px) {
  .mainvisual-title-large {
    font-size: 7rem;
  }
}

.mainvisual-title-small {
  display: block;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .mainvisual-title-small {
    font-size: 5rem;
  }
}

/* ----------------------------------------
  place
---------------------------------------*/
.place {
  padding: 5rem 0;
}
@media screen and (min-width: 768px) {
  .place {
    padding: 7.5rem 0;
  }
}

.place-inner {
  max-width: 70rem;
}

.place-title {
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .place-title {
    margin-bottom: 4rem;
    display: flex;
  }
}

.place-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 2.5rem;
  margin-bottom: 2.6rem;
}
@media screen and (min-width: 768px) {
  .place-items {
    margin-bottom: 0;
  }
}

.place-item {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s, transform 0.7s;
}
@media screen and (min-width: 768px) {
  .place-item {
    flex-direction: row;
    align-items: center;
    width: 100%;
    column-gap: 5%;
  }
}

.place-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (min-width: 768px) {
  .place-item.item02 {
    flex-direction: row-reverse;
  }
}

.place-item.item-deco {
  max-width: 8.4375rem;
  transition-delay: 0.2s;
}

.place-item.item-deco:nth-of-type(4) {
  transform: scaleX(-1);
}

.place-item-image {
  max-width: 12.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .place-item-image {
    max-width: 26.875rem;
    width: 41%;
  }
}

.place-item-image::before {
  font-family: var(--font-family-caveat);
  line-height: 1;
  font-size: 1.5rem;
  position: absolute;
  top: 0.75rem;
  left: 0.375rem;
  transform: rotate(-8deg);
}
@media screen and (min-width: 768px) {
  .place-item-image::before {
    font-size: 3rem;
    top: 1.25rem;
    left: 1.5rem;
  }
}

.place-item.item01 .place-item-image::before {
  content: "“Reading”";
}

.place-item.item02 .place-item-image::before {
  content: "“Study”";
  top: auto;
  left: auto;
  right: 0.375rem;
  bottom: 0.75rem;
  transform: rotate(8deg);
}
@media screen and (min-width: 768px) {
  .place-item.item02 .place-item-image::before {
    bottom: 1.25rem;
    right: 1.5rem;
  }
}

.place-item.item03 .place-item-image::before {
  content: "“Relax”";
}

.place-item.item02 .place-item-image {
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .place-item.item02 .place-item-image {
    margin: 0;
  }
}

.place-item-image img {
  border-radius: 1rem;
  box-shadow: 0 0.625rem 0 0 var(--font);
}
@media screen and (min-width: 768px) {
  .place-item-image img {
    box-shadow: 0 1.25rem 0 0 var(--font);
  }
}

.place-item-text-area {
  position: relative;
}

.place-item-text-area::before {
  content: "";
  background-size: cover;
  position: absolute;
}

.place-item.item01 .place-item-text-area::before,
.place-item.item03 .place-item-text-area::before {
  background-image: url(../img/top/place-item-deco01.svg);
  width: 2.5rem;
  height: 1.5625rem;
  left: 0;
  bottom: -2.5625rem;
}

.place-item.item02 .place-item-text-area::before {
  background-image: url(../img/top/place-item-deco02.svg);
  width: 3.125rem;
  height: 4.125rem;
  right: 0;
  bottom: -5.4125rem;
}

.place-item-title {
  font-size: 1.5rem;
  font-family: var(--font-family-kiwi);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  font-weight: var(--medium);
}
@media screen and (min-width: 768px) {
  .place-item-title {
    font-size: 2.5rem;
  }
}

.place-item.item02 .place-item-title {
  text-align: right;
}
@media screen and (min-width: 768px) {
  .place-item.item02 .place-item-title {
    text-align: left;
  }
}

.place-item-text {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .place-item-text {
    font-size: 1rem;
    line-height: 2.5;
  }
}

.arrow-line {
  stroke-dasharray: 8 8;
}

/* ----------------------------------------
  space
---------------------------------------*/
.space {
  padding: 5rem 0;
  background-image: linear-gradient(rgba(74, 68, 63, 0.3) 1px, transparent 1px), linear-gradient(90deg, rgba(74, 68, 63, 0.3) 1px, transparent 1px);
  background-size: 1.5rem 1.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .space {
    padding: 7.5rem 0;
  }
}

@media screen and (min-width: 768px) {
  .space::before {
    content: "“Your Focus Space”";
    font-family: var(--font-family-caveat);
    font-size: 3rem;
    line-height: 1;
    position: absolute;
    right: 13.8%;
    top: 16.375rem;
    transform: rotate(8deg);
  }
}

.space-inner {
  max-width: 65rem;
}

.space-deco {
  position: absolute;
  right: 2rem;
  top: -3.0625rem;
  max-width: 8.4375rem;
}
@media screen and (min-width: 768px) {
  .space-deco {
    max-width: 17.75rem;
    top: -6.875rem;
    right: 21.3%;
  }
}

.space-deco-rotate {
  animation: rotateCircle 20s linear infinite;
}

@keyframes rotateCircle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.space-deco::before {
  content: "";
  width: 3.75rem;
  height: 3.875rem;
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../img/top/space-deco.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .space-deco::before {
    width: 7.8125rem;
    height: 8.0625rem;
  }
}

.space-title {
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .space-title {
    margin-bottom: 4rem;
  }
}

.space-text {
  line-height: 2;
  font-size: 0.875rem;
  letter-spacing: normal;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .space-text {
    font-size: 1rem;
  }
}

.space-button-area {
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .space-button-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 3.125rem;
    margin-bottom: 4rem;
  }
}

.space-button-deco {
  display: none;
}
@media screen and (min-width: 768px) {
  .space-button-deco {
    display: block;
    font-family: var(--font-family-kiwi);
    font-weight: var(--medium);
    font-size: 1.5rem;
    position: relative;
    width: 49%;
  }
}

.space-arrow-svg {
  position: absolute;
  bottom: -2.3rem;
  left: 0;
  width: 100%;
  height: 100%;
}

.arrow-dashed-line {
  stroke-dasharray: 7.98 7.98;
  stroke-dashoffset: 480;
  transition: stroke-dashoffset 1.2s ease;
}

.arrow-start-cap {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.arrow-end-cap {
  opacity: 0;
  transition: opacity 0.3s ease 1s;
}

.arrow-head {
  opacity: 0;
  transition: opacity 0.3s ease 1.1s;
}

.space-arrow-svg.is-visible .arrow-dashed-line {
  stroke-dashoffset: 0;
}
.space-arrow-svg.is-visible .arrow-start-cap {
  opacity: 1;
}
.space-arrow-svg.is-visible .arrow-end-cap {
  opacity: 1;
}
.space-arrow-svg.is-visible .arrow-head {
  opacity: 1;
}

.space-button {
  border: solid 3px var(--font);
  background-color: var(--gray);
  font-size: 1.25rem;
  padding: 1.5rem 2.5rem;
  max-width: 100%;
  display: block;
  position: relative;
  text-align: end;
}
@media screen and (min-width: 768px) {
  .space-button {
    padding: 2.625rem 2.5rem;
    font-size: 2rem;
    max-width: 29.4375rem;
  }
}

.space-button::before {
  content: "";
  background-image: url(../img/top/space-chair.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 3.9375rem;
  height: 5.1875rem;
  position: absolute;
  top: -1.09375rem;
  left: 2.5rem;
}
@media screen and (min-width: 768px) {
  .space-button::before {
    width: 5.5rem;
    height: 7.3125rem;
  }
}

.space-images {
  padding: 0 1.25rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .space-images {
    display: flex;
    justify-content: space-between;
    padding: 0;
    max-width: 125rem;
    margin: 0 auto;
  }
}

.space-images::after {
  content: "“Your Quiet Corner”";
  font-family: var(--font-family-caveat);
  font-size: 2rem;
  transform: rotate(-8deg);
  position: absolute;
  bottom: -6.4rem;
  left: 0;
  right: 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .space-images::after {
    font-size: 2.5rem;
    bottom: -9rem;
  }
}

.space-images img {
  border-radius: 1rem;
}

.space-img-middle,
.space-img-right {
  display: none;
}
@media screen and (min-width: 768px) {
  .space-img-middle,
  .space-img-right {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .space-img-left {
    margin-left: -3.6875rem;
    margin-top: 6.1875rem;
  }
}

@media screen and (min-width: 768px) {
  .space-img-middle {
    padding: 0 3%;
  }
}
@media screen and (min-width: 1300px) {
  .space-img-middle {
    padding: 0 6.6%;
  }
}

@media screen and (min-width: 768px) {
  .space-img-right {
    margin-top: 5.75rem;
  }
}

.space-img-left,
.space-img-middle,
.space-img-right {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.space-img-left.is-visible,
.space-img-middle.is-visible,
.space-img-right.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ----------------------------------------
  guide
---------------------------------------*/
.guide {
  padding: 5rem 0 6.25rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .guide {
    padding: 7.5rem 0;
  }
}

.guide-title-wrapper {
  text-align: right;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .guide-title-wrapper {
    margin-bottom: 4rem;
  }
}

.guide-items {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 2.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .guide-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 77.5rem;
    margin: 0 auto;
  }
}

.guide-item {
  width: 100%;
  height: 8.125rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
@media screen and (min-width: 768px) {
  .guide-item {
    height: 15rem;
  }
}

.guide-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.guide-item a {
  display: flex;
  align-items: center;
  column-gap: 1rem;
  border: solid 2px var(--font);
  border-radius: 1rem;
  box-shadow: 0 0.625rem 0 var(--font);
  padding: 0 0 0 1.5rem;
  height: 100%;
  background-color: var(--white);
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .guide-item a {
    padding: 2.5rem 0 2.5rem 2.5rem;
    box-shadow: 0 1.25rem 0 var(--font);
  }
}

.guide-item-image img {
  max-width: 3.75rem;
}
@media screen and (min-width: 768px) {
  .guide-item-image img {
    max-width: 8.75rem;
  }
}

.guide-item-title-area {
  display: flex;
  column-gap: 2rem;
  justify-content: center;
  align-items: center;
}

.guide-item-title {
  font-size: 2rem;
  font-weight: var(--medium);
  font-family: var(--font-family-kiwi);
}
@media screen and (min-width: 1080px) {
  .guide-item-title {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 1300px) {
  .guide-item-title {
    font-size: 3rem;
  }
}

/* ----------------------------------------
  picks-news
---------------------------------------*/
@media screen and (min-width: 768px) {
  .picks-news {
    display: flex;
  }
}

.picks-news-item {
  padding: 2.5rem 1.25rem;
  border: solid 2px var(--font);
  position: relative;
  margin-bottom: 4.75rem;
  display: block;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .picks-news-item {
    width: 50%;
    padding: 2.5rem;
  }
}
@media screen and (min-width: 1300px) {
  .picks-news-item {
    margin: 2.5rem 0 0;
  }
}
@media (any-hover: hover) {
  .picks-news-item:hover .picks-news-arrow {
    transform: scale(1.2) translateX(0.75rem);
  }
}

.picks-news-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.picks-news-item.picks {
  margin-bottom: 8.75rem;
}
@media screen and (min-width: 768px) {
  .picks-news-item.picks {
    margin-bottom: 4.75rem;
    border-right: none;
  }
}
@media screen and (min-width: 1300px) {
  .picks-news-item.picks {
    margin-bottom: 0;
  }
}

.picks-news-item::before {
  content: "";
  width: 13.75rem;
  height: 9.5rem;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 1.25rem;
  bottom: -4.75rem;
  z-index: 10;
}
@media screen and (min-width: 1300px) {
  .picks-news-item::before {
    right: 2.5rem;
    left: auto;
    bottom: auto;
    top: -2.5rem;
    width: 16.25rem;
    height: 10.8125rem;
  }
}

.picks-news-item.picks::before {
  background-image: url(../img/common/picks-icon.svg);
}

.picks-news-item.news::before {
  background-image: url(../img/common/news-icon.svg);
}

.picks-news-title {
  margin-bottom: 2.5rem;
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .picks-news-title {
    margin-bottom: 4rem;
  }
}

@media screen and (min-width: 1300px) {
  .picks-news-text-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 2rem;
  }
}

.picks-news-text {
  font-size: 1.25rem;
  line-height: 2;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .picks-news-text {
    font-size: 1.5rem;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1300px) {
  .picks-news-text {
    width: 63.5%;
  }
}

.picks-news-arrow {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: var(--font);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  transition: transform 0.6s;
}
@media screen and (min-width: 1300px) {
  .picks-news-arrow {
    width: 6.25rem;
    height: 6.25rem;
    flex-shrink: 0;
  }
}

.picks-news-arrow img {
  width: 1.75rem;
}
@media screen and (min-width: 1300px) {
  .picks-news-arrow img {
    width: 3.75rem;
  }
}

.news-title-area .c-page-title-inner::before {
  background-image: url(../img/common/news-icon.svg);
}

.news-content {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .news-content {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
  }
}

.news-tab {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.news-tab-item {
  padding: 1rem 0;
  cursor: pointer;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .news-tab-item {
    max-width: 14.375rem;
  }
}

.news-tab-item button.c-button.is-active {
  background-color: var(--font);
  color: var(--white);
  box-shadow: none;
}

.news-article {
  display: none;
  flex-direction: column;
  border: solid 2px var(--font);
  padding: 1.25rem;
  border-radius: 1rem;
}
@media screen and (min-width: 768px) {
  .news-article {
    padding: 2.5rem;
  }
}

.news-article.is-active {
  display: flex;
}

.news-item-link {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  padding: 1.25rem;
  border-bottom: dotted 1px var(--font);
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .news-item-link {
    flex-direction: row;
  }
}
@media (any-hover: hover) {
  .news-item-link:hover {
    opacity: 0.7;
  }
}

.news-item-meta {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .news-item-meta {
    min-width: 20rem;
    flex-shrink: 0;
  }
}

.news-item-date {
  font-size: 0.875rem;
  width: 6.25rem;
}
@media screen and (min-width: 768px) {
  .news-item-date {
    font-size: 1rem;
    width: 8.75rem;
  }
}

.news-item-category {
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
  border: solid 1px var(--font);
  border-radius: 1rem;
  padding: 0.25rem 0.625rem;
}

.news-item-category img {
  width: 1rem;
}

.news-item-category-text {
  font-size: 0.75rem;
}

.guide-content {
  padding-top: 5rem;
  padding-bottom: 5rem;
  display: flex;
  flex-direction: column;
  row-gap: 4rem;
}
@media screen and (min-width: 768px) {
  .guide-content {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
  }
}

/* ----------------------------------------
  guide 各セクションタイトル
---------------------------------------*/
.guide-section-title {
  display: flex;
  align-items: center;
  background-color: var(--font);
  border-radius: 1rem;
  padding: 1rem 2rem;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .guide-section-title {
    padding: 1rem 3.75rem;
    margin-bottom: 4rem;
  }
}

.guide-section-title-image {
  width: 5rem;
}
@media screen and (min-width: 768px) {
  .guide-section-title-image {
    width: 12.5rem;
  }
}

.guide-section-title img {
  width: 2.5rem;
}
@media screen and (min-width: 768px) {
  .guide-section-title img {
    width: 5rem;
  }
}

.guide-section-title-text {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  color: var(--white);
}
@media screen and (min-width: 768px) {
  .guide-section-title-text {
    font-size: 3rem;
  }
}

/* ----------------------------------------
  テキスト部分
---------------------------------------*/
@media screen and (min-width: 768px) {
  .guide-section-text {
    font-size: 1.25rem;
  }
}

/* ----------------------------------------
  lending
---------------------------------------*/
.guide-section-lists {
  display: flex;
  flex-direction: column;
  row-gap: 4rem;
}
@media screen and (min-width: 768px) {
  .guide-section-lists {
    flex-direction: row;
    justify-content: space-between;
    column-gap: 1.6%;
  }
}

.guide-section-list {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .guide-section-list {
    width: 32.2%;
    padding: 1.625rem 3rem;
    row-gap: 2.5rem;
  }
}

.guide-section-list img {
  height: 10rem;
  width: 100%;
  object-fit: contain;
}

.guide-section-list-title {
  display: flex;
  column-gap: 1.5rem;
}

.guide-section-list-num {
  font-size: 1.5rem;
  line-height: 1;
  font-weight: bold;
  color: var(--white);
  -webkit-text-stroke: 1px var(--font);
}
@media screen and (min-width: 768px) {
  .guide-section-list-num {
    font-size: 3rem;
  }
}

/* ----------------------------------------
  reserve
---------------------------------------*/
.guide-reserve-image {
  max-width: 17.125rem;
  width: 100%;
  margin: 0 auto 1.5rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .guide-reserve-image {
    margin-bottom: 4rem;
  }
}

@media screen and (min-width: 768px) {
  .guide-section.reserve .guide-section-text {
    text-align: center;
  }
}

/* ----------------------------------------
  map
---------------------------------------*/
.guide-map-image {
  width: 100%;
  max-width: 46.75rem;
  margin: 0 auto;
  display: block;
}

/* ----------------------------------------
  calendar
---------------------------------------*/
.guide-calendar-image {
  width: 100%;
  max-width: 32.625rem;
  margin: 0 auto;
  display: block;
}

.picks-title-area .c-page-title-inner::before {
  background-image: url(../img/common/picks-icon.svg);
}

.picks-feature,
.picks-other {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .picks-feature,
  .picks-other {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
  }
}

/* ----------------------------------------
  picks-feature
---------------------------------------*/
.picks-feature-inner {
  max-width: 70rem;
}

.picks-feature-title {
  font-size: 1.5rem;
  font-weight: var(--bold);
  text-align: center;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .picks-feature-title {
    font-size: 3rem;
    margin-bottom: 4rem;
  }
}

.picks-feature-item {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .picks-feature-item {
    flex-direction: row;
    justify-content: space-between;
    gap: 4rem;
  }
}

.picks-feature-item-image {
  max-width: 22.75rem;
}

@media screen and (min-width: 768px) {
  .picks-feature-item-body {
    width: 58%;
  }
}

.picks-feature-item-title-area {
  margin-bottom: 1.5rem;
}

.picks-feature-item-title {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .picks-feature-item-title {
    flex-direction: row;
  }
}

.picks-feature-item-title-main {
  font-weight: var(--medium);
  line-height: 1;
  letter-spacing: 0.1em;
  font-size: 1.5rem;
}

.picks-feature-item-title-sub {
  font-size: 1.25rem;
  line-height: 1;
}

.picks-feature-item-info {
  display: flex;
  justify-content: end;
  column-gap: 1.5rem;
  font-size: 0.875rem;
  line-height: 1;
}

.picks-feature-item-info-value {
  display: inline-block;
  margin-left: 1rem;
}

.picks-feature-item-text {
  line-height: 2;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .picks-feature-item-text {
    font-size: 1rem;
  }
}

.picks-feature-item-tag-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1rem;
  row-gap: 0.5rem;
  font-size: 0.75rem;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .picks-feature-item-tag-list {
    font-size: 0.875rem;
  }
}

.picks-feature-button-area {
  display: flex;
  justify-content: end;
}

.picks-feature-button {
  display: inline-flex;
  align-items: center;
  justify-content: end;
  column-gap: 0.625rem;
  border-bottom: dotted 1px var(--font);
  line-height: 1;
  font-size: 0.75rem;
  padding-bottom: 0.625rem;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .picks-feature-button {
    font-size: 0.875rem;
  }
}
@media (any-hover: hover) {
  .picks-feature-button:hover {
    opacity: 0.7;
  }
}

.picks-feature-button-arrow svg {
  width: 0.9375rem;
}

/* ----------------------------------------
  picks-other
---------------------------------------*/
.picks-other-title {
  line-height: 1;
  font-size: 1rem;
  font-weight: var(--bold);
  text-align: center;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .picks-other-title {
    margin-bottom: 4rem;
    font-size: 2.5rem;
  }
}

.picks-other-content {
  padding: 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .picks-other-content {
    padding: 0 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .picks-other-slide {
    width: 18.75rem;
  }
}

.picks-other-slide a {
  display: block;
  position: relative;
  overflow: hidden;
}
@media (any-hover: hover) {
  .picks-other-slide a:hover .picks-card-info {
    opacity: 1;
  }
}

.picks-card-info {
  position: absolute;
  inset: 0;
  background: rgba(74, 68, 63, 0.8);
  border-radius: 0.5rem;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.picks-card-title {
  font-size: 1.25rem;
  font-weight: var(--medium);
  margin-bottom: 1rem;
}

.picks-single {
  padding: 5rem 0;
}
@media screen and (min-width: 768px) {
  .picks-single {
    padding: 7.5rem 0;
  }
}

.picks-single-item {
  display: flex;
  gap: 1.5rem;
  flex-direction: column;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .picks-single-item {
    gap: 4rem;
    flex-direction: row;
    margin-bottom: 4rem;
  }
}

.picks-single-image {
  width: 100%;
  max-width: 17.5rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .picks-single-image {
    flex-shrink: 0;
    max-width: 22.625rem;
  }
}

.picks-single-info {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  align-items: center;
}
@media screen and (min-width: 768px) {
  .picks-single-info {
    grid-template-columns: max-content 1fr;
    row-gap: 0.625rem;
  }
}

.picks-single-info-title {
  font-size: 1.25rem;
  color: var(--font);
}
@media screen and (min-width: 768px) {
  .picks-single-info-title {
    width: 14.375rem;
  }
}

.picks-single-info-body {
  font-size: 1.5rem;
  color: var(--font);
  padding: 0.625rem 0;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .picks-single-info-body {
    margin-bottom: 0;
    line-height: 1.5;
  }
}

.picks-single-table-area {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 2rem;
  margin-right: -1.25rem;
}
@media screen and (min-width: 768px) {
  .picks-single-table-area {
    overflow-x: visible;
    margin-bottom: 4rem;
    margin-right: 0;
  }
}

.picks-single-table-area table {
  width: 100%;
  min-width: 60rem;
  border-collapse: separate;
  border-spacing: 0.3125rem;
}

.picks-single-table-area table thead tr {
  background-color: var(--font);
}

.picks-single-table-area table thead th {
  padding: 0.625rem 1rem;
  color: var(--white);
  font-size: 1.25rem;
  text-align: center;
  white-space: nowrap;
}

.picks-single-table-area table tbody td {
  padding: 2.5rem 1rem;
  text-align: center;
  border: 2px solid var(--font);
  vertical-align: middle;
  line-height: 1.33;
  font-size: 1.5rem;
}

.picks-single-table-type {
  width: 14%;
}

.picks-single-table-location {
  width: 22%;
}

.picks-single-table-status {
  width: 22%;
}

.picks-single-table-reservations {
  width: 14%;
}

.picks-single-table-call-number {
  width: 28%;
}

.picks-single-button-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.picks-single-button {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  transition: opacity 0.3s;
  border-bottom: dotted 1px var(--font);
  padding-bottom: 0.625rem;
}
@media (any-hover: hover) {
  .picks-single-button:hover {
    opacity: 0.7;
  }
}

.picks-single-button.picks-single-button--prev .picks-single-button-arrow {
  order: -1;
  transform: scaleX(-1);
}

.picks-single-button-text {
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .picks-single-button-text {
    font-size: 1rem;
  }
}

.picks-single-button-arrow {
  display: flex;
  align-items: center;
}

.space-lead-text {
  font-size: 0.875rem;
  line-height: 2;
  padding: 4rem 1.25rem 0;
}
@media screen and (min-width: 768px) {
  .space-lead-text {
    max-width: 58.75rem;
    margin: 0 auto;
    padding: 7.5rem 0 0;
    font-size: 1rem;
  }
}

.space-guide-inner,
.space-reservation-inner {
  max-width: 63.75rem;
}

.space-guide-title,
.space-reservation-title {
  background-color: var(--font);
  border-radius: 1rem;
  padding: 1rem;
  margin-bottom: 2.5rem;
  font-size: 1.5rem;
  font-weight: var(--bold);
  line-height: 1;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .space-guide-title,
  .space-reservation-title {
    padding: 1.78125rem 2.5rem;
    margin-bottom: 4rem;
    font-size: 3rem;
  }
}

/* ----------------------------------------
  自習スペースの使い方
---------------------------------------*/
.space-guide {
  padding: 3rem 0 14.0625rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .space-guide {
    padding: 6rem 0 14.0625rem;
  }
}

.space-guide-inner {
  position: relative;
  z-index: 10;
}

.space-guide-inner::before {
  content: "";
  width: 4rem;
  height: 9.75rem;
  background-color: var(--white);
  border: solid 2px var(--font);
  position: absolute;
  bottom: -8.5rem;
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .space-guide-inner::before {
    width: 6.0625rem;
  }
}

.space-guide-inner::after {
  content: "";
  background-image: url(../img/top/place-item-deco02.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 5.4375rem;
  height: 5rem;
  position: absolute;
  bottom: -13rem;
  right: 28%;
}
@media screen and (min-width: 768px) {
  .space-guide-inner::after {
    height: 7.25rem;
  }
}

.space-guide-box {
  border: 2px solid var(--font);
  border-radius: 1rem;
  padding: 1.5rem 1.25rem;
  background-color: var(--white);
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .space-guide-box {
    padding: 3.75rem 3rem;
  }
}

.space-guide-box::before {
  content: "";
  background-image: url(../img/top/place-item-deco01.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 2.0625rem;
  height: 0.8rem;
  position: absolute;
  bottom: -2.625rem;
  right: 17.5%;
}
@media screen and (min-width: 768px) {
  .space-guide-box::before {
    height: 1.25rem;
  }
}

.space-guide-box::after {
  content: "";
  background-image: url(../img/top/place-item-deco01.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 3.6875rem;
  height: 1.5rem;
  position: absolute;
  bottom: -5rem;
  left: 15.9%;
}
@media screen and (min-width: 768px) {
  .space-guide-box::after {
    height: 2.25rem;
  }
}

.space-guide-box-inner {
  max-width: 36rem;
  margin: 0 auto;
}

.space-guide-list {
  padding: 0 1.25rem;
  display: flex;
  flex-direction: column;
  font-size: 0.875rem;
  line-height: 2;
  font-family: var(--font-family-kiwi);
}
@media screen and (min-width: 768px) {
  .space-guide-list {
    font-size: 1.5rem;
    padding: 0 3.75rem;
  }
}

.space-guide-list li::before {
  content: "・";
}

.space-guide-list-inner {
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
}

/* ----------------------------------------
  空席状況・予約
---------------------------------------*/
.space-reservation {
  padding: 3rem 0 5rem;
}
@media screen and (min-width: 768px) {
  .space-reservation {
    padding: 6rem 0 7.5rem;
  }
}

.space-step-image {
  max-width: 8rem;
  margin: 0 auto 2.5rem;
}
@media screen and (min-width: 768px) {
  .space-step-image {
    margin-bottom: 5rem;
    max-width: 12.125rem;
  }
}

.space-step {
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .space-step {
    margin-bottom: 5rem;
  }
}

.space-step-title {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 1.5rem;
  font-weight: var(--bold);
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .space-step-title {
    font-size: 2.25rem;
    margin-bottom: 4rem;
  }
}

.space-step-number {
  font-size: 2.5rem;
  font-weight: var(--bold);
  line-height: 1;
  -webkit-text-stroke: 1px var(--font);
  color: var(--white);
}
@media screen and (min-width: 768px) {
  .space-step-number {
    font-size: 5rem;
  }
}

/* ----------------------------------------
  STEP1 日付選択
---------------------------------------*/
.space-step-month {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.space-date-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.space-date-button {
  font-size: 1.25rem;
  line-height: 1;
  background-color: var(--white);
  border: 2px solid var(--font);
  border-radius: 1rem;
  padding: 1.375rem 0.59375rem;
  box-shadow: 0 0.625rem 0 0 var(--font);
  cursor: pointer;
}
.space-date-button.is-active {
  background-color: var(--font);
  color: var(--white);
  box-shadow: none;
}

/* ----------------------------------------
  STEP2 時間選択
---------------------------------------*/
.space-step-selected-date {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: end;
  gap: 0.875rem;
}

.space-step-selected-date-accent {
  font-size: 1.5rem;
  font-weight: var(--medium);
  border-bottom: dotted 1px var(--font);
  padding-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .space-step-selected-date-accent {
    font-size: 2rem;
  }
}

.space-step-selected-date-text {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .space-step-selected-date-text {
    font-size: 1.25rem;
  }
}

.space-time-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.space-time-button {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.25rem;
  background-color: var(--white);
  border: 2px solid var(--font);
  border-radius: 1rem;
  padding: 1.5rem 1.25rem;
  cursor: pointer;
  box-shadow: 0 0.625rem 0 0 var(--font);
}
.space-time-button.is-active {
  background-color: var(--font);
  color: var(--white);
  box-shadow: none;
}
.space-time-button.is-full {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* ----------------------------------------
  STEP3 情報入力
---------------------------------------*/
.space-step-confirm {
  margin-bottom: 1rem;
  font-weight: var(--medium);
  line-height: 1;
}

.space-step-confirm:nth-of-type(2) {
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .space-step-confirm:nth-of-type(2) {
    margin-bottom: 4rem;
  }
}

.space-step-confirm-text {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .space-step-confirm-text {
    font-size: 1.5rem;
  }
}

.space-step-confirm-value {
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .space-step-confirm-value {
    font-size: 2rem;
  }
}

.space-form-list {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  margin: 0 0 4rem;
}
@media screen and (min-width: 768px) {
  .space-form-list {
    grid-template-columns: 8.75rem 1fr;
    row-gap: 2.5rem;
  }
}

.space-form-label {
  font-size: 1rem;
  font-weight: var(--medium);
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .space-form-label {
    margin-bottom: 0;
    font-size: 1.5rem;
  }
}

.space-form-input {
  margin-bottom: 2.5rem;
}
.space-form-input input,
.space-form-input select {
  width: 100%;
  font-size: 1.5rem;
  background-color: var(--white);
  border: 2px solid var(--font);
  border-radius: 1rem;
  padding: 1.5rem;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
}
@media screen and (min-width: 768px) {
  .space-form-input input,
  .space-form-input select {
    padding: 2rem 1.5rem;
  }
}
.space-form-input input::placeholder,
.space-form-input select::placeholder {
  color: #9F9D9D;
}
.space-form-input input:focus,
.space-form-input select:focus {
  box-shadow: 0 0 0 0.2rem var(--font);
}
@media screen and (min-width: 768px) {
  .space-form-input {
    margin-bottom: 0;
  }
}

.space-form-select-wrap {
  position: relative;
  max-width: 26.875rem;
}
.space-form-select-wrap select {
  cursor: pointer;
}

.space-form-select-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 18.3%;
  height: 100%;
  background-color: var(--font);
  border-radius: 0 1rem 1rem 0;
  pointer-events: none;
}

.space-form-select-wrap::after {
  content: "";
  background-image: url(../img/page/space-form-select-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 1.75rem;
  height: 1.5rem;
  position: absolute;
  top: 50%;
  right: 1.1rem;
  transform: translateY(-50%);
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .space-form-select-wrap::after {
    right: 1.5rem;
  }
}

/* ----------------------------------------
  予約ボタン
---------------------------------------*/
.space-form-button-area {
  display: flex;
  justify-content: center;
}

.space-form-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 28.125rem;
  width: 100%;
  gap: 1.5rem;
  font-size: 1.25rem;
  font-weight: var(--medium);
  background-color: var(--white);
  border: solid 2px var(--font);
  border-radius: 1.875rem;
  padding: 1.25rem 0;
  cursor: pointer;
  box-shadow: 0 1.25rem 0 0 var(--font);
}
@media screen and (min-width: 768px) {
  .space-form-button {
    font-size: 1.5rem;
  }
}
.space-form-button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.space-form-button-text {
  font-size: inherit;
}

.space-form-button-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--font);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .space-form-button-arrow {
    width: 4rem;
    height: 4rem;
  }
}

.space-form-button-arrow img {
  width: 1.5rem;
}
@media screen and (min-width: 768px) {
  .space-form-button-arrow img {
    width: 1.75rem;
  }
}

.complete {
  padding: 5rem 0;
}
@media screen and (min-width: 768px) {
  .complete {
    padding: 7.5rem 0;
  }
}

.complete-inner.l-inner {
  max-width: 43rem;
}

.complete-title {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 2.5rem;
  font-weight: var(--bold);
}
@media screen and (min-width: 768px) {
  .complete-title {
    font-size: 3rem;
    margin-bottom: 4rem;
  }
}

.complete-text {
  margin-bottom: 1rem;
}

.complete-note {
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .complete-note {
    margin-bottom: 4rem;
  }
}

.complete-text,
.complete-note {
  line-height: 2;
}

.complete-info {
  font-weight: var(--medium);
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.complete-info dt {
  font-size: 0.875rem;
  width: 50%;
}
@media screen and (min-width: 768px) {
  .complete-info dt {
    font-size: 1.5rem;
  }
}

.complete-info dd {
  font-size: 1rem;
  width: 50%;
}
@media screen and (min-width: 768px) {
  .complete-info dd {
    font-size: 2rem;
  }
}

.complete-button {
  margin: 0 auto;
}/*# sourceMappingURL=style.css.map */