@charset "UTF-8";
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after { box-sizing: border-box; }
* {
  margin: 0;
  min-height: 0vw;
  min-height: 0;
}
html, body { height: 100%; }
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
input, button, textarea, select { font: inherit; }
p, h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; }
#root, #__next { isolation: isolate; }
:root { --vw: 1vw; }

/* ------ */
html {
	font-size: 62.5%;
	scroll-behavior: smooth;
  scroll-padding-top: 72px;
}
body {
  padding-top: 72px;
  scroll-padding-top: 72px;
  background: #fff;
	font-family: "Yu Mincho", "Hiragino Mincho Pro", "MS PMincho", serif;
  font-weight: 600;
	font-size: 1.6rem;
	color: #424242;
}
@media (max-width: 768px) {
  body { font-size: 1.4rem; }
}
a {
	text-decoration: none;
	color: #424242;
	transition: text-decoration .3s ease;
	text-underline-offset: 2px;
}
  a:hover { text-decoration: underline; }
table {
	border-spacing: 0;
	border-collapse:  collapse;
}
img {
	max-width: 100%;
	height: auto;
	display: inline-block;
}

/* */
.c-spbr { display: none; }
@media (max-width: 500px) {
  .c-spbr { display: block; }
}
.l-section__inner {
  margin: 0 auto;
  max-width: 1032px;
  padding: 150px 16px;
}
.c-prefectures {
  display: inline-block;
  padding: 2px 8px;
  background: #9D8648;
  letter-spacing: 0.1em;
  color: #fff;
}
.c-exlink::after {
  display: inline-block;
  padding-left: 8px;
  width: 10px;
  height: 10px;
  background: url(../images/icon-exlink.svg) no-repeat center center;
  background-size: contain;
  content: '';
}
.c-mail::after {
  display: inline-block;
  padding-left: 8px;
  width: 10px;
  height: 10px;
  background: url(../images/icon-mail-wh.svg) no-repeat center center;
  background-size: contain;
  content: '';
}
.c-btn {
  display: block;
  padding: 16px;
  border: 1px solid #424242;
  text-align: center;
  font-size: 1.4rem;
  transition: background-color .3s ease-in;
}
.c-btn:hover {
  text-decoration: none;
  background: #F4EEE4;
}

.c-btn.c-exlink::after { padding-left: 16px; }
.c-btn.c-mail::after { padding-left: 16px; }
.m-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: url(../images/treat.svg) no-repeat center top;
  background-size: auto;
  margin-bottom: 72px;
  padding-top: 54px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  font-size: 5.0rem;
}
  .m-title .m-title__kana {
    font-weight: 500;
    font-size: 1.4rem;
  }
.m-title-wh {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: url(../images/treat-wh.svg) no-repeat center top;
  background-size: auto;
  margin-bottom: 72px;
  padding-top: 54px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  font-size: 5.0rem;
  color: #fff;
}
  .m-title-wh .m-title__kana {
    font-weight: 500;
    font-size: 1.4rem;
    color: #fff;
  }
@media screen and (max-width: 768px) {
  .l-section__inner { padding: 80px 16px; }
  .m-title,
  .m-title-wh {
    margin-bottom: 48px;
    padding-top: 40px;
    font-size: 3.2rem;
  }
}


/* header */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgb(255 255 255 / 90%);
  z-index: 99;
}
.m-header {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 14px 16px;
  max-width: 1180px;
  height: 72px;
}
.m-header .m-header__logo {
  width: auto;
  height: 100%;
}
  .m-header .m-header__logo img {
    width: auto;
    height: 100%;
  }
.m-header .m-header__nav {
  flex-grow: 1;
}
.m-gnav {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 4%;
}
  .m-gnav li a {
    display: block;
    transition: color .3s ease-in;
  }
  .m-gnav li a:hover {
    text-decoration: none;
    color: #9D8648;
  }
  .m-gnav li a span {
    display: block;
    font-size: 1.2rem
  }
.m-open-btn,
.m-close-btn {
  display: none;
}
@media screen and (max-width: 980px) {
  .m-open-btn {
    display: block;
    appearance: none;
    border: none;
    padding: 8px;
    background: transparent;
    cursor: pointer;
  }
    .m-open-btn img {
      width: 100%;
      height: 100%;
    }
  .m-header .m-header__nav {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 99;
    transition: left .3s ease-in;
  }
  .m-header .m-header__nav.is-open {
    left: 0;
  }
  .m-header .m-header__nav.is-open .m-close-btn {
    position: fixed;
    top: 16px;
    right: 16px;
    display: block;
    appearance: none;
    border: none;
    padding: 8px;
    background: transparent;
    cursor: pointer;
    width: 44px;
    height: 44px;
  }
    .m-header .m-header__nav.is-open .m-close-btn img {
      width: 100%;
      height: 100%;
    }
  .m-gnav {
    width: 50%;
    margin: 0 auto;
    padding: 20% 0;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 5vh;
  }
}

/* mv */
.m-mv {
  display: flex;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  max-height: 768px;
}
.m-mv .m-mv__img {
  flex-basis: 52%;
  aspect-ratio: 710 / 768;
  overflow: hidden;
}
  .m-mv .m-mv__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
.m-mv .m-mv__contents {
  flex-basis: 48%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgb(255 255 255 / 0.9) url(../images/bg-beige.png) no-repeat right bottom;
  background-size: auto 100%;
  padding: 4%;
}
.m-mv .m-mv__contents .m-mv__contents_img {
  margin-bottom: 3rem;
}
.m-mv .m-mv__contents .m-mv__contents_txt {
  margin-bottom: 2rem;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.1em;
  font-size: 3.2rem;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.m-mv .m-mv__contents .m-mv__contents_date {
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
  font-size: 2.4rem;
}
.m-mv .m-mv__contents .m-mv__contents_location {
  letter-spacing: 0.1em;
  font-size: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.m-mv .m-mv__contents .m-mv__contents_location .c-prefectures { white-space: nowrap; }
@media screen and (max-width: 768px) {
  .m-mv {
    display: grid;
    overflow: hidden;
  }
  .m-mv .m-mv__img {
    grid-area: 1 / 1;
  }
  .m-mv .m-mv__contents {
    grid-area: 1 / 1;
    width: 90%;
    margin: auto;
  }
}
@media screen and (max-width: 500px) {
  .m-mv .m-mv__contents .m-mv__contents_img { margin-bottom: 1em; }
  .m-mv .m-mv__contents .m-mv__contents_txt {
    margin-bottom: .5em;
    font-size: 2.8rem;
  }
  .m-mv .m-mv__contents .m-mv__contents_date {
    font-size: 1.6rem;
  }
  .m-mv .m-mv__contents .m-mv__contents_location {
    font-size: 1.2rem;
  }
}

/* schedule */
.m-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 8px;
}
  .m-tabs li button {
    appearance: none;
    display: block;
    width: 100%;
    padding: 20px 0;
    border: none;
    border-top: 5px solid #fff;
    background: #F4EEE4;
    text-align: center;
    font-size: 2.1rem;
    text-decoration: none;
    color: #424242;
    transition: color .3s ease-in;
    cursor: pointer;
  }
  .m-tabs li button:hover {
    background: rgb(244 238 228 / 50%);
    color: #9D8648;
  }
  .m-tabs li button.is-current {
    border-top: 5px solid #9D8648;
    background: #FCFBFA;
    color: #9D8648;
  }

.m-schedule-tabs {
  display: grid;
}
  .m-schedule-tab {
    grid-area: 1 / 1;
    z-index: 0;
  }
  .m-schedule-tab.is-show {
    display: block;
    z-index: 1;
  }
  .m-schedule-tabs .m-schedule-tab__noitem {
    padding: 40px;
    background: #FCFBFA;
  }
.m-schedule-block {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  padding: 40px;
  background: #FCFBFA;
}
.m-schedule-block:nth-of-type(2n) { background: #fff; }
.m-schedule-block .m-schedule-block_date {
  display: flex;
  align-items: center;
  gap: .5em;
  padding-right: 4%;
  font-size: 2.4rem;
}
  .m-schedule-block .m-schedule-block_date .c-week {
    font-size: 1.4rem;
  }
.m-schedule-block .m-schedule-block_detail {
  padding-left: 4%;
  border-left: 1px solid #F0F0F0;
  display: grid;
  grid-template-areas: "title title"
                      "place place"
                      "img cast"
                      "links links"
                      "contact contact";
  grid-template-columns: minmax(250px, 50%) 1fr;
  gap: 0 20px;
}
.m-schedule-block .m-schedule-block_title {
  grid-area: title;
  margin-bottom: 16px;
  padding: 0 0 0 16px;
  font-size: 2.4rem;
  border-left: 5px solid #424242;
}
.m-schedule-block .m-schedule-block_title span {
  font-size: 1.6rem;
}
.m-schedule-block .m-schedule-block_place {
  grid-area: place;
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
  .m-schedule-block .m-schedule-block_place .c-prefectures {
    margin-right: 8px;
  }
  .m-schedule-block .m-schedule-block_place a {
    margin-right: 32px;
    font-size: 1.4rem;
  }
  .m-schedule-block .m-schedule-block_place .c-time {
    font-size: 1.4rem;
  }
.m-schedule-block .m-schedule-block_img {
  grid-area: img;
}
.m-schedule-block .m-schedule-block_cast {
  grid-area: cast;
}
  .m-schedule-block .m-schedule-block_cast h4 {
    display: inline-block;
    margin-bottom: 8px;
    padding: 2px 8px;
    background: #F4EEE4;
    font-size: 1.4rem;
    color: #424242;
  }
  .m-schedule-block .m-schedule-block_cast p {
    font-size: 1.4rem;
  }
  .m-schedule-block .m-schedule-block_cast p a { text-decoration: underline; }
  .m-schedule-block .m-schedule-block_cast p a:hover { text-decoration: none; }

.m-schedule-block .m-schedule-block_links {
  grid-area: links;
  margin: 35px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 4px;
}
  .m-schedule-block .m-schedule-block_links li .c-btn {
    width: 100%;
    padding: 16px 0;
  }
  .m-schedule-block .m-schedule-block_links li span {
    display: block;
    margin-top: 6px;
    padding: 2px;
    font-size: 1.2rem;
  }
  .m-schedule-block .m-schedule-block_contact {
    grid-area: contact;
    padding-top: 24px;
  }
  .m-schedule-block .m-schedule-block_contact h4 {
    display: inline-block;
    margin-bottom: 8px;
    padding: 2px 8px;
    background: #F4EEE4;
    font-size: 1.4rem;
    color: #424242;
  }
  .m-schedule-block .m-schedule-block_contact p {
    font-size: 1.4rem;
  }
@media screen and (max-width: 800px) {
  .m-schedule-block .m-schedule-block_links {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .m-schedule-tabs .m-schedule-tab__noitem { padding: 20px; }
  .m-schedule-block {
    flex-direction: column;
    padding: 20px 10px;
  }
  .m-schedule-block .m-schedule-block_detail {
    padding-left: 0;
    border: none;
    display: grid;
    grid-template-areas: "title"
                        "place"
                        "img"
                        "cast"
                        "links"
                        "contact";
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .m-schedule-block .m-schedule-block_place {
    margin-bottom: 0;
    display: grid;
    grid-template-areas: "pref place"
                            "pref time";
    grid-template-columns: auto 1fr;
    gap: 4px 0;
  }
  .m-schedule-block .m-schedule-block_place .c-prefectures {
    grid-area: pref;
    justify-self: start;
    align-self: self-start;
  }
  .m-schedule-block .m-schedule-block_place a {
    grid-area: place;
    margin-right: 0;
  }
  .m-schedule-block .m-schedule-block_place .c-time { grid-area: time; }
  .m-schedule-block .m-schedule-block_links {
    margin: 0;
    grid-template-columns: repeat(2, 1fr);
  }
  .m-schedule-block .m-schedule-block_links li span { margin-top: 8px; }
}
@media screen and (max-width: 500px) {
  .m-schedule-block .m-schedule-block_links {
    grid-template-columns: 1fr;
  }
}

/* nextinfo */
.m-nextinfo {
  background: #F8FDFF url(../images/bg-white.png) repeat left top;
  background-size: auto;
}

.m-nextinfo-titlearea {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.1em;
  margin-bottom: 80px;
}
  .m-nextinfo-titlearea::before {
    display: block;
    background: url(../images/treat.svg) no-repeat center top;
    background-size: auto;
    width: 150px;
    height: 14px;
    content: '';  
  }
  .m-nextinfo-titlearea::after {
    display: block;
    background: url(../images/treat.svg) no-repeat center top;
    background-size: auto;
    width: 150px;
    height: 14px;
    content: '';  
    rotate: 180deg;
  }
  .m-nextinfo-titlearea h2 {
    margin: 80px auto 40px;
    font-size: 5.0rem;
    font-weight: 500;
    text-align: center;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }
  .m-nextinfo-titlearea h2 .m-nextinfo-titlearea__small {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 2.1rem;
  }
  .m-nextinfo-titlearea_date {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
    text-align: center;
    font-weight: 500;
    font-size: 4.0rem;
  }
  .m-nextinfo-titlearea_date .c-week {
    border: 1px solid #000;
    padding: 2px 4px 1px;
    font-size: 1.4rem;
  }
.m-nextinfo-titlearea_place {
  margin-bottom: 80px;
  font-size: 1.6rem;
}

.m-nextinfo-story {
  margin: 240px auto 0;
  position: relative;
  font-weight: 500;
}
  .m-nextinfo-story::before {
    position: absolute;
    left: 50%;
    bottom: 100%;
    width: 1px;
    height: 160px;
    border-left: 1px solid #707070;
    content: '';
  }
.m-nextinfo__title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 auto 80px;
  padding-top: 80px;
  text-align: center;
  font-weight: 500;
  font-size: 5.0rem;
}
  .m-nextinfo__title span {
    letter-spacing: .1em;
    font-size: 1.4rem;
  }
.m-nextinfo-story .m-nextinfo-story_catch {
  text-align: center;
  margin-bottom: 80px;
  letter-spacing: 0.05em;
  font-size: 4.0rem;
}
.m-nextinfo-story p {
  letter-spacing: 0.1em;
  line-height: 2;
  font-size: 2.1rem;
  text-align: center;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.m-nextinfo-story p + p { margin-top: 1em; }

@media screen and (max-width: 768px) {
  .m-nextinfo-titlearea { margin-bottom: 40px; }
  .m-nextinfo-titlearea h2 {
    margin: 40px auto 24px;
    font-size: 2.8rem;
  }
  .m-nextinfo-titlearea_date { font-size: 2.4rem; }
  .m-nextinfo-titlearea_date .c-week { font-size: 1.2rem; }
  .m-nextinfo-titlearea_place { font-size: 1.2rem; }
  .m-nextinfo-story { margin: 120px auto 0; }
  .m-nextinfo-story::before { height: 80px; }
  .m-nextinfo__title {
    margin-bottom: 40px;
    padding-top: 60px;
    font-size: 3.2rem;
  }
  .m-nextinfo-story .m-nextinfo-story_catch {
    margin-bottom: 40px;
    font-size: 2.4rem;
  }
  .m-nextinfo-story p {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 375px) {
  .m-nextinfo-story .m-nextinfo-story_catch {
    font-size: 2.0rem;
  }
  .m-nextinfo-story p {
    font-size: 1.2rem;
  }
}
/* @media screen and (max-width: 500px) {
  .m-nextinfo-story p {
    text-align: left;
  }
  .m-nextinfo-story p br { display: none; }
} */

/* cast */
.m-casttitle {
  padding-top: 0;
  background: transparent;
}
.m-cast_list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.m-cast_list li {
  margin: 0;
  padding: 24px 0;
  border-top: 1px solid #F0F0F0;
  display: grid;
  grid-template-columns: auto auto auto 1fr;
  gap: 4px 24px;
}
.m-cast_list li:first-child { border-top: none; }
.m-cast_list .m-cast_list__date {
  grid-area: 1 / 1;
  align-self: center;
  font-size: 2.4rem;
  font-weight: 600;
}
.m-cast_list .m-cast_list__week {
  grid-area: 1 / 2;
  align-self: center;
  font-size: 1.4rem;
  font-weight: 600;
}
.m-cast_list .m-cast_list__area {
  grid-area: 1 / 3;
  align-self: center;
}
.m-cast_list .m-cast_list__title {
  grid-area: 1 / 4;
  align-self: center;
  font-size: 2.0rem;
  font-weight: 600;
}
.m-cast_list .m-cast_list__cast {
  grid-area: 2 / 4;
  font-size: 1.6rem;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .m-cast_list li { grid-template-columns: auto auto 1fr; }
  .m-cast_list .m-cast_list__title { grid-area: 2 / 1 / 2 / 4; }
  .m-cast_list .m-cast_list__cast { grid-area: 3 / 1 / 3 / 4; }
}

/* ticket */
.m-ticket__title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 auto 80px;
  text-align: center;
  font-weight: 500;
  font-size: 5.0rem;
}
  .m-ticket__title span {
    letter-spacing: .1em;
    font-size: 1.4rem;
  }
.m-ticket-block {
  display: grid;
  grid-template-areas: "img txt";
  grid-template-columns: 35% 55%;
  gap: 40px;
  margin-bottom: 120px;
  font-weight: 500;
}
.m-ticket-block .m-ticket-block_img {
  grid-area: img;
}
.m-ticket-block .m-ticket-block_txt {
  grid-area: txt;
}
.m-ticket-block .m-ticket-block_txt .m-ticket-block__date {
  display: flex;
  align-items: baseline;
  margin-bottom: 0;
  letter-spacing: 0.05em;
  font-size: 3.2rem;
}
.m-ticket-block .m-ticket-block_txt .m-ticket-block__date .c-week {
  padding-left: 4px;
  font-size: 1.4rem;
}
.m-ticket-block .m-ticket-block_txt .m-ticket-block__date .c-time {
  padding-left: 16px;
  font-size: 1.4rem;
}
.m-ticket-block .m-ticket-block_txt h3 {
  margin-bottom: 16px;
  font-size: 4.0rem;
  font-weight: 500;
}
.m-ticket-block .m-ticket-block_txt .m-ticket-block__placde a {
  margin-top: 4px;
  display: block;
}
@media screen and (max-width: 768px) {
  .m-ticket__title {
    margin-bottom: 40px;
    font-size: 3.2rem;
    padding: 12% 5% 5%;
  }
  .m-ticket-block {
    grid-template-areas: "img"
                          "txt";
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .m-ticket-block .m-ticket-block_txt .m-ticket-block__date { font-size: 2.4rem; }
  .m-ticket-block .m-ticket-block_txt h3 { font-size: 2.8rem; }
}

/* ticketsite */
.m-ticketsite {
  background: url(../images/bg-beige02.png) no-repeat center center;
  background-size: cover;
}
.m-ticketsite__inner {
  position: relative;
  background: #FCFBFA;
  padding: 12% 10% 10%;
}

.m-ticketsite-title {
  position: absolute;
  top: -40px;
  left: 0;
  text-align: center;
  width: 100%;
}
  .m-ticketsite-title h3 {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 80px;
    background: #9D8648;
    height: 80px;
    padding: 8px 24px;
    text-align: center;
    font-size: 2.4rem;
    color: #fff;
  }
  .m-ticketsite-title h3 br { display: none; }
  .m-ticketsite-title h3::before {
    position: absolute;
    top: 0;
    left: -40px;
    display: inline-block;
    width: 40px;
    height: 80px;
    background: #9D8648;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    content: '';
  }
  .m-ticketsite-title h3::after {
    position: absolute;
    top: 0;
    right: -40px;
    display: inline-block;
    width: 40px;
    height: 80px;
    background: #9D8648;
    clip-path: polygon(100% 0, 0 0, 0 100%);
    content: '';
  }

.m-ticketsite_list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.m-ticketsite_list li {
  position: relative;
}
.m-ticketsite_list li + li { margin-top: 40px; }
.m-ticketsite_list li h4 {
  margin-bottom: 20px;
  border-left: 5px solid #424242;
  padding-left: 16px;
  font-size: 2.4rem;
}
.m-ticketsite_list li ul {
  margin: 0 0 0 1em;
  padding: 0;
}
.m-ticketsite_list li ul li {
  list-style: disc;
  margin-top: 8px;
  font-size: 1.4rem;
}
.m-ticketsite_list li .m-ticket_btn {
  position: absolute;
  display: inline-block;
  top: 0;
  right: 0;
  width: 200px;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .m-ticketsite {
    padding: 64px 16px 24px;
  }
  .m-ticketsite-title { top: -30px; }
  .m-ticketsite-title h3 {
    font-size: 1.6rem;
    height: 60px;
  }
  .m-ticketsite-title h3::before,
  .m-ticketsite-title h3::after { height: 60px; }
  .m-ticketsite_list li .m-ticket_btn {
    position: static;
    margin-top: 1.5rem;
  }
  .m-ticketsite_list li h4 { font-size: 1.8rem; }
}
@media screen and (max-width: 600px) {
  .m-ticketsite__inner { padding: 50px 16px 24px; }
  .m-ticketsite-title h3::before,
  .m-ticketsite-title h3::after { display: none; }
  .m-ticketsite-title h3 br { display: block; }
}


/* about */
.m-about {
  background: url(../images/bg-img.png) no-repeat center center;
  background-size: cover;
}
.m-about p {
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0.1em;
  font-size: 2.1rem;  
  color: #fff;
}
.m-about p + p { margin-top: 1em; }
@media screen and (max-width: 768px) {
  .m-about p { font-size: 1.6rem; }
}
/* @media screen and (max-width: 500px) {
  .m-about p { text-align: left; }
  .m-about p br { display: none; }
} */

/* contact */
.m-contact {
  padding: 160px 8px 0;
}
.m-contact .m-title {
  margin-bottom: 40px;
  background: url(../images/treat-wh.svg) no-repeat center top;
  background-size: auto;
  color: #fff;
}
.m-contact p {
  margin-bottom: 40px;
  text-align: center;
  font-size: 1.4rem;
  color: #fff;
}
.m-about_btn { text-align: center; }
.m-contact .c-btn.is-big {
  display: inline-block;
  padding: 32px 24px 32px 32px;
  border: 1px solid #fff;
  letter-spacing: 0.05em;
  font-size: 2.1rem;
  background: transparent;
  transition: background-color .3s ease-in;
  color: #fff;
}
.m-contact .c-btn.is-big:hover {
  text-decoration: none;
  background: rgb(255 255 255 / 20%);
}

.m-contact .c-btn.is-big::after {
  margin-left: 32px;
  width: 20px;
  height: 16px;
}
@media screen and (max-width: 500px) {
  .m-contact { padding-bottom: 100px; }
  .m-contact .c-btn.is-big { padding: 24px 16px 24px 24px; }
}

/* news */
.m-news {
  background: url(../images/bg-beige02.png) no-repeat center center;
  background-size: cover;
}
.m-newslist {
  margin: 0;
  padding: 0;
  list-style: none;
}
.m-newslist li {
  margin: 0;
  padding: 24px 0;
  border-top: 1px solid #F0F0F0;
}
.m-newslist li .m-newslist__inner {
  display: grid;
  grid-template-columns: 100px 100px 1fr;
  grid-template-rows: auto auto;
  gap: 4px 24px;
  text-decoration: none;
}
.m-newslist li:first-child { border-top: none; }
.m-newslist__tag {
  grid-area: 1 / 1;
  align-self: center;
  display: block;
  width: 100px;
  padding: 4px;
  background: #ccc;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
}
.m-newslist__tag.is-info { background: #9D8648; }
.m-newslist__tag.is-ticket { background: #489D6C; }
.m-newslist__tag.is-cast { background: #48799D; }
.m-newslist__date {
  grid-area: 1 / 2;
  align-self: center;
  font-size: 1.6rem;
  font-weight: 500;
}
.m-newslist__txt {
  align-self: center;
  grid-area: 1 / 3;
  font-size: 2.0rem;
  font-weight: 500;
}
.m-newslist__detail {
  grid-area: 2 / 3;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .m-newslist li .m-newslist__inner { grid-template-columns: 100px 1fr; }
  .m-newslist__txt { grid-area: 2 / 1 / 2 / 3; }
  .m-newslist__detail { grid-area: 3 / 1 / 3 / 3; }
}

/* footer */
.l-footer {
  position: relative;
  background: #9D8648;
  padding-bottom: 8px;
  border-bottom: 8px solid #C0B495;
  z-index: 80;
}
.l-footer__inner {
  max-width: 1032px;
  margin: 0 auto;
  padding: 60px 16px;
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  color: #fff;
}
.l-footer__inner .m-footer_logo {
  width: 150px;
  height: auto;
}

.l-footer__inner .m-footer-company .m-footer-company_title {
  font-size: 1.2rem;
}
.l-footer__inner .m-footer-company .m-footer-company_name {
  margin-bottom: 16px;
  font-size: 2.1rem;
}
.l-footer__inner .m-footer-company .m-footer-company_address {
  font-size: 1.4rem;
}
.l-footer small {
  display: block;
  width: 100%;
  margin: 8px auto;
  text-align: center;
  font-size: 1.2rem;
  color: #fff;
}
@media screen and (max-width: 500px) {
  .l-footer__inner { flex-direction: column; }
  .l-footer__inner .m-footer_logo { margin: 0 auto 40px; }
}

.m-fixedlink {
  position: absolute;
  top: -184px;
  right: 20px;
  bottom: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #9D8648;
  box-shadow: 0 3px 6px rgb(0 0 0 / 20%);
  width: 164px;
  height: 164px;
  border-radius: 50%;
  text-align: center;
  font-weight: 500;
  font-size: 2.1rem;
  color: #fff;
  z-index: 80;
}
.m-fixedlink:hover {
  text-decoration: none;
  background: rgb(157 134 72 / 70%);
}
.m-fixedlink.is-scroll {
  position: fixed;
  top: unset;
  bottom: 40px;
}
@media screen and (max-width: 768px) {
  .m-fixedlink {
    width: 100px;
    height: 100px;
    font-size: 1.4rem;
    top: -40px;
  }
}