@charset "utf-8";


/* RESET
----------------------------------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video,picture {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  line-height: 1.5em;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  margin : 0;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

img {
  vertical-align: bottom;
  border: none;
}
picture {
  display: block;
}
/* ----------------------------------------------

 * 設定をしなおす

---------------------------------------------- */
:root {
  --inner: 100rem;
}
@media (prefers-reduced-motion: reduce) {
  * {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
  }
}
html {
  -webkit-font-smoothing: antialiased;
  font-size: 62.5%;
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 0.7320644217vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}
body {
  margin: 0 auto;
  padding: 0;
  font-size: 1.6rem;
  line-height: 1.8em;
  color: #3e322b;
  height: 100%;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 400;
  position: relative;
  background: #fff;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.5rem;
  }
}

table {
  margin : 0;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

img {
  vertical-align: bottom;
  border: none;
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
}
main {
  display: block;
  position: relative;
}

a {
  outline:none;
  color: #3e322b;
}

a:hover {
  text-decoration: none;
}

a,a:hover,a:hover img,button,input {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
}

a:hover {
  filter: alpha(opacity=80);
  -moz-opacity:0.80;
  opacity:0.80;
}

* {
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  box-sizing:border-box;
}

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


/* -----------------------------------------------
 * COMMON
----------------------------------------------- */
input[type=text]:focus {
    outline: none;
}
#main {
  overflow-x: hidden;
  overflow-y: visible;
}
section {
  position: relative;
}
.container {
  max-width: calc(var(--inner) + 4rem);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.pt-0 {
  padding-top: 0 !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}

@media only screen and ( max-width : 767px ) {
  .container {
    max-width: 100%;
  }
  .br_pc {
    display: none;
  }
  .sp_none{display:none !important;}
}
@media print, screen and ( min-width : 768px ) {
  .br_sp {
    display: none;
  }
  .sp { display:none !important; }
}
/* ---------------------------------------------------------------------------------------------

　   FLEX

--------------------------------------------------------------------------------------------- */
.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}
.flex-row {
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}
.justify-content-start {
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.align-items-start {
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}


@media (min-width: 576px) {
  .d-sm-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .justify-content-sm-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-sm-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .align-items-sm-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

@media (min-width: 768px) {
  .d-md-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .justify-content-md-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-md-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .align-items-md-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-md-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-md-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

@media (min-width: 992px) {
  .d-lg-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .justify-content-lg-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-lg-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .align-items-lg-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xl-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .align-items-xl-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

/* ---------------------------------------------------------------------------------------------

　   TEXT

--------------------------------------------------------------------------------------------- */
.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}
@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}


/* ---------------------------------------------------------------------------------------------

　   HEADER

--------------------------------------------------------------------------------------------- */
#header {
  position: relative;
}
.event_title img {
  width: 100%;
  display: block;
}

.gallery_slider_wrap {
  margin-top: 4rem;
  overflow: hidden;
}

.gallery_slider_wrap_sub {
  display: none;
}

.gallery_slider .splide__slide {
  width: 20rem;
}

.gallery_slider .splide__slide img {
  width: 100%;
  display: block;
}

@media only screen and ( max-width : 767px ) {
  .gallery_slider_wrap {
    margin-top: 3rem;
  }
  .gallery_slider_wrap_sub {
    display: block;
    margin-top: 1.5rem;
  }
  .gallery_slider .splide__slide {
    width: 16rem;
  }
}

@media print, screen and ( min-width : 768px ) {
  
}



/* ---------------------------------------------------------------------------------------------

　   FOOTER

--------------------------------------------------------------------------------------------- */
#footer {
  font-weight: 700;
  background: #FFF2F2;
  position: relative;
}
#footer:before {
  content: "";
  position: absolute;
  width: 100%;
  top: -.8rem;
  left: 0;
  height: .1rem;
  background: #E4627B;
}
.footer_address {
  font-style: normal;
  text-align: center;
  line-height: 1.9;
}
.footer_info {
  text-align: center;
  line-height: 1.9;
}
.footer_label {
  display: block;
  width: fit-content;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-bottom: 1px solid currentColor;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.8rem;
  padding-bottom: 0.1em;
}
#footer a[href^="tel:"] {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
@media only screen and ( max-width : 767px ) {
  #footer {
    padding: 4rem 0;
    font-size: 1.4rem;
  }
  .footer_info,
  .footer_address {
    text-align: center;
  }
  .footer_info {
    margin-bottom: 3rem;
  }
}

@media print, screen and ( min-width : 768px ) {
  #footer {
    padding: 6rem 0;
    font-size: 2rem;
  }
  .footer_info {
    margin-bottom: 4rem;
  }
}


/* ---------------------------------------------------------------------------------------------

　   COMMON

--------------------------------------------------------------------------------------------- */

.fit {
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  width: 100%;
  height: 100%;
}
.title {
  text-align: center;
}
.bg {
  background: url(../img/bg.jpg) no-repeat center center / cover;
}

@media only screen and ( max-width : 767px ) {
  .section {
    padding: 4rem 0;
  }
  .title {
    margin-bottom: 3rem;
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  .section {
    padding: 8rem 0;
  }
  .title {
    margin-bottom: 6rem;
  }
  .title img {
    width: 62rem;
  }
}

/* ---------------------------------------------------------------------------------------------

　   INTRODUCTION

--------------------------------------------------------------------------------------------- */
#introduction {
  position: relative;
  z-index: 2;
}
.title_intro {
  text-align: center;
}
.intro_text {
  line-height: 2.2em;
  font-weight: 700;
  text-align: center;
}
@media only screen and ( max-width : 767px ) {
  .title_intro {
    margin-bottom: 3rem;
  }
  .intro_text {
    font-size: 1.5rem;
  }
  .intro_list {
    margin-top: 3rem;
  }
  .intro_list li {
    width: 32%;
    margin-right: 2%;
    margin-top: 2rem;
  }
  .intro_list li:nth-child(-n+3) {
    margin-top: 0;
  }
  .intro_list li:nth-child(3n),
  .intro_list li:last-child {
    margin-right: 0;
  }
  .intro_list figcaption {
    font-size: 1rem;
    text-align: center;
    font-weight: 600;
    margin-top: .5rem;
  }
  .gallery_slider_wrap {
    margin-top: 4rem;
    margin-bottom: -3rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  .title_intro {
    margin-bottom: 6rem;
  }
  .intro_text {
    font-size: 1.8rem;
  }
  .intro_list {
    display: none;
  }
  .gallery_slider_wrap {
    margin-top: 8rem;
    margin-bottom: -5rem;
  }
}


/* ---------------------------------------------------------------------------------------------

　   INFORMATION

--------------------------------------------------------------------------------------------- */
.info_wrap:last-child {
  margin-bottom: 0;
}
.floor_info_list {
  display: flex;
  flex-wrap: wrap;
}
.floor_info_list dt,
.floor_info_list dd {
  margin-bottom: 1rem;
  background: #fff;
  display: flex;
  align-items: center;
}
.floor_info_list dt {
  border-top: .3rem dotted #E4627B;
  border-left: .3rem dotted #E4627B;
  border-bottom: .3rem dotted #E4627B;
  border-radius: 1rem 0 0 1rem;
}
.floor_info_list dd {
  border-top: .3rem dotted #E4627B;
  border-right: .3rem dotted #E4627B;
  border-bottom: .3rem dotted #E4627B;
  border-radius: 0 1rem 1rem 0;
  font-weight: 600;
}
.info_list_wrap {
  border: .3rem dotted #E4627B;
  border-radius: 1rem;
  background: #fff;
}
.info_list li {
  font-weight: 600;
  border-bottom: .3rem dotted #E4627B;
  padding: .5em 0;
}
@media only screen and ( max-width : 767px ) {
  #information {
    padding-top: 8rem;
  }
  .info_wrap {
    margin-bottom: 4rem;
  }
  .info_img {
    margin-bottom: 3rem;
  }
  .info_img img {
    max-width: 26rem;
    display: block;
    margin: 0 auto;
  }
  .floor_info_list dt,
  .floor_info_list dd {
    height: 8rem;
  }
  .floor_info_list dt {
    width: 9rem;
    padding-left: 1.5rem;
  }
  .floor_info_list dd {
    width: calc(100% - 9rem);
    padding-right: 1.5rem;
    font-size: 1.4rem;
  }
  .info_content {
    padding: 1rem 1.2rem;
  }
  .info_content ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .info_content li {
    width: 48%;
    font-size: 1.2rem;
    border-bottom: .1rem dotted #E4627B;
  }
  .info_list:last-child li:nth-last-child(-n+2) {
    border-bottom: none;
  }
}
@media print, screen and ( min-width : 768px ) {
  #information {
    padding-top: 12rem;
  }
  .info_wrap {
    margin-bottom: 10rem;
  }
  .info_img {
    width: 40%;
  }
  .info_content {
    width: 52%;
  }
  .floor_info_list {
    align-items: center;
  }
  .floor_info_list dt,
  .floor_info_list dd {
    height: 8rem;
  }
  .floor_info_list dt {
    width: 12rem;
    padding-left: 3.5rem;
  }
  .floor_info_list dd {
    width: calc(100% - 12rem);
    padding-right: 3.5rem;
    font-size: 1.8rem;
  }
  .info_list_wrap {
    padding: 1.5rem 3.5rem;
  }
  .info_list_wrap .info_list {
    width: 47%;
  }
  .info_list li:last-child {
    border-bottom: none;
  }
}

/* ---------------------------------------------------------------------------------------------

　   EVENT

--------------------------------------------------------------------------------------------- */
.event_item {
  background: #FFE5E4;
  border-radius: 2.4rem;
  position: relative;
  overflow: hidden;
  padding: 2rem;
}
.event_item:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
}
.event_item01:after {
  background: url(../img/floor1.png) no-repeat center center / contain;
}
.event_item02:after {
  background: url(../img/floor2.png) no-repeat center center / contain;
}
.event_item03:after {
  background: url(../img/floor3.png) no-repeat center center / contain;
}
.event_item04:after {
  background: url(../img/floor4.png) no-repeat center center / contain;
}
.event_title {
  font-weight: 900;
  color: #E4627B;
  border-bottom: 1px solid #E4627B;
  padding-bottom: .3em;
  margin-bottom: .6em;
}
.event_subtitle {
  background: #E4627B;
  color: #fff;
  border-radius: .5rem;
  padding: .2em 1em;
  margin-bottom: .6em;
}
.event_img_list figcaption {
  text-align: center;
  font-size: 1.2rem;
  margin-top: .5em;
  line-height: 1.4em;
}
.event_img {
  margin: 1.5rem 0;
  text-align: center;
}
.event_taiken_item {
  border-left: 2px solid #E4627B;
  padding-left: 1em;
  margin-bottom: 1rem;
}
.event_taiken_item:last-child {
  margin-bottom: 0;
}
.event_taiken_item li {
  position: relative;
  padding-left: 1em;
}
.event_taiken_item li:before {
  content: "";
  position: absolute;
  top: .5em;
  left: 0;
  width: .7em;
  height: .7em;
  background: #E4627B;
  border-radius: 50%;
}
.event_taiken_img figcaption {
  text-align: right;
  font-size: 1.2rem;
  margin-top: .5rem;
}
@media only screen and ( max-width : 767px ) {
  .event_item {
    margin-bottom: 2rem;
  }
  .event_item:last-child {
    margin-bottom: 0;
  }
  .event_item:after {
    width: 8rem;
    height: 7.1rem;
  }
  .event_img_list li {
    width: 48%;
    margin-top: 1.5rem;
  }
  .event_img_list li:nth-child(-n+2) {
    margin-top: 0;
  }
  .event_title {
    font-size: 1.8rem;
  }
  .event_subtitle {
    font-size: 1.7rem;
    margin-top: 1.5rem;
  }
  .event_item02 .event_img img {
    max-width: 24rem;
  }
  .event_taiken_list {
    margin-bottom: 1.5rem;
  }
  .event_subtitle span {
    display: block;
    font-size: 1.5rem;
  }
  .event_taiken_item li {
    font-size: 1.3rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  .event_item01,
  .event_item03 {
    width: 34%;
  }
  .event_item02,
  .event_item04 {
    width: 63%;
  }
  .event_item03,
  .event_item04 {
    margin-top: 3rem;
  }
  .event_title {
    font-size: 2.4rem;
  }
  .event_subtitle {
    font-size: 2rem;
    margin-top: 1.5rem;
  }
  .event_img_list {
    gap: 1.5rem;
  }
  .event_img_list li {
    flex: 1;
  }
  .event_item02 .event_img img {
    width: 70%;
  }
  .event_item:after {
    width: 10.4rem;
    height: 9.2rem;
  }
  .event_taiken_list {
    width: 50%;
  }
  .event_taiken_img {
    width: 46%;
  }
  .event_taiken_item h5 {
    font-size: 1.8rem;
  }
  .event_taiken_item ul {
    display: flex;
    flex-wrap: wrap;
  }
  .event_taiken_item li {
    font-size: 1.4rem;
    margin-left: 1em;
  }
  .event_taiken_item li:last-child {
    width: 100%;
    margin-left: 0;
  }
  .event_taiken_item li:first-child {
    margin-left: 0;
  }
}

/* ---------------------------------------------------------------------------------------------

　   GOURMET

--------------------------------------------------------------------------------------------- */
.gourmet_list li figcaption {
  text-align: center;
  font-size: 1.2rem;
  margin-top: .5rem;
}
@media only screen and ( max-width : 767px ) {
  .gourmet_list li {
    width: 48%;
    margin-top: 2rem;
  }
  .gourmet_list li:nth-child(-n+2) {
    margin-top: 0;
  }
}
@media print, screen and ( min-width : 768px ) {
  .gourmet_list li {
    width: 14.8%;
    margin-top: 3rem;
  }
  .gourmet_list li:nth-child(-n+6) {
    margin-top: 0;
  }
}

/* ---------------------------------------------------------------------------------------------

　   ACCESS

--------------------------------------------------------------------------------------------- */
.access_info {
  text-align: center;
  font-weight: 700;
  line-height: 1.95;
  color: #2f261f;
  background: #fff;
  border: 1px solid #e5ddd7;
  border-radius: 1.2rem;
  padding: 1.6rem 1.2rem;
}

.access_place {
  display: inline-block;
  font-size: 2rem;
  letter-spacing: 0.04em;
}

.access_address {
  display: inline-block;
  margin-top: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

@media only screen and ( max-width : 767px ) {
  .access_info {
    margin-bottom: 2rem;
  }
  .access_place {
    font-size: 1.8rem;
  }
  .access_address {
    font-size: 1.5rem;
  }
  .access_map {
    margin-left: -2rem;
    margin-right: -2rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  .access_info {
    margin-bottom: 4rem;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
  }
  .access_map {
    max-width: 75rem;
    margin: 0 auto;
  }
}

/* ---------------------------------------------------------------------------------------------

　   XXX

--------------------------------------------------------------------------------------------- */

@media only screen and ( max-width : 767px ) {
}
@media print, screen and ( min-width : 768px ) {
}

