@charset "UTF-8";
:root {
  --main-font: "MFW-HiraginoUDSansStdN-W6", sans-serif;
}

body {
  min-width: 0;
  padding: 0;
  padding-left: 360px;
  font-family: var(--main-font);
}

@media screen and (max-width: 991px) {
  body {
    padding-left: 0;
    padding-top: 98px;
  }
}
li {
  list-style: none;
}

.round_btn {
  width: -moz-fit-content;
  width: fit-content;
  height: 36px;
  background-color: #ad8652;
  padding-left: 16px;
  padding-right: 32px;
  border-radius: 36px;
  margin: 0 auto;
  position: relative;
  margin-top: 16px;
}
.round_btn::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url(../img/round_btn_arrow.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translate(0, -50%);
}
.round_btn a {
  font-weight: var(--main-font);
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  line-height: 36px;
}

.content_width {
  max-width: 1000px;
  width: 100%;
  padding: 0 30px;
  padding-top: 32px;
  margin: 0 auto;
  box-sizing: border-box;
}
.content_width h2 {
  font-family: var(--main-font);
  font-size: 38px;
  letter-spacing: 0.1em;
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
  opacity: 0;
}
.content_width .content_inner {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.content_width .btn {
  width: -moz-fit-content;
  width: fit-content;
  padding: 16px 8px;
  padding-right: 80px;
  border-bottom: 1px solid #ad8652;
  margin-left: auto;
  margin-right: 0;
  position: relative;
  margin-top: 16px;
  display: block;
  text-decoration: none;
  color: #000;
}
.content_width .btn::after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background-image: url(../img/link_btn_arrow.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translate(0, -50%);
}
.content_width .btn p {
  font-weight: 600;
  margin: 0;
  transition: all 0.5s ease;
}
.content_width .btn:hover p {
  transform: translateX(10px);
}

@media screen and (max-width: 991px) {
  .content_width .btn {
    padding-right: 56px;
  }
  .content_width .btn::after {
    width: 36px;
    height: 36px;
  }
}
/* ヘッダー */
.side_menu figure,
.side_menu ul,
.side_menu li,
.side_menu p,
.side_menu a {
  padding: 0;
  margin: 0;
  font-weight: 700;
}

.side_menu {
  width: 360px;
  height: 100%;
  background-color: #004a80;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
}
.side_menu .logo {
  width: 100%;
  padding: 16px;
  background-color: #fff;
  box-sizing: border-box;
}
.side_menu .logo a {
  display: block;
  width: 215px;
  margin: 0 auto;
}
.side_menu .logo a img {
  width: 100%;
}
.side_menu .scroll {
  height: 100vh;
}
.side_menu .scroll nav {
  -ms-overflow-style: none;
  scrollbar-width: none;
  height: 100%;
  overflow-y: scroll;
}
.side_menu .scroll nav::-webkit-scrollbar {
  display: none;
}
.side_menu .scroll nav .main {
  height: auto;
  margin-top: 20px;
}
.side_menu .scroll nav .main .head {
  padding: 0 2em;
}
.side_menu .scroll nav .main .head::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #001f4d;
}
.side_menu .scroll nav .main .head:last-child {
  margin-bottom: 20px;
}
.side_menu .scroll nav .main .head:last-child::after {
  display: none;
}
.side_menu .scroll nav .main .head p {
  cursor: pointer;
  color: #fff;
  padding: 0.6em 2.5em;
  position: relative;
  transition: 0.3s;
}
.side_menu .scroll nav .main .head p span {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(8px, -50%);
}
.side_menu .scroll nav .main .head p span img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  filter: brightness(0) invert(1);
  transition: 0.3s;
}
.side_menu .scroll nav .main .head p::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url(../img/arrow_u_b.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(-100%, -50%) rotate(180deg);
  filter: brightness(0) invert(1);
  transition: 0.3s;
}
.side_menu .scroll nav .main .head p:hover {
  color: #001f4d;
  background-color: #fff;
}
.side_menu .scroll nav .main .head p:hover span img {
  filter: unset;
}
.side_menu .scroll nav .main .head p:hover::after {
  filter: unset;
}
.side_menu .scroll nav .main .head .active::after {
  transform: translate(-100%, -50%) rotate(0);
}
.side_menu .scroll nav .main .head .sub {
  background-color: #001f4d;
  display: none;
}
.side_menu .scroll nav .main .head .sub li {
  border-bottom: 2px solid #004a80;
}
.side_menu .scroll nav .main .head .sub li:last-child {
  border-bottom: none;
}
.side_menu .scroll nav .main .head .sub li a {
  padding: 0.6em 4em;
  display: block;
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
  position: relative;
}
.side_menu .scroll nav .main .head .sub li a::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url(../img/arrow_r_w.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(-200%, -50%);
}
.side_menu .scroll nav .main .head .sub li a:hover {
  opacity: 0.7;
}
.side_menu .scroll nav .gold .head {
  background-color: #ad8652;
}
.side_menu .scroll nav .gold .head::after {
  background-color: #fff;
}
.side_menu .scroll nav .gold .head p:hover {
  color: #89653a;
}
.side_menu .scroll nav .gold .head p::after {
  background-image: url(../img/arrow_u_g.webp);
}
.side_menu .scroll nav .gold .head .sub {
  background-color: #89653a;
}
.side_menu .scroll nav .gold .head .sub li {
  border-bottom: 2px solid #ad8652;
}
.side_menu .scroll nav .gold .head .sub li:last-child {
  border-bottom: none;
}
.side_menu .scroll nav .gold .head .sub li a {
  text-decoration: none;
  color: #fff;
}
.side_menu .scroll nav .sns {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 100px;
}
.side_menu .scroll nav .sns a {
  display: block;
  width: auto;
  height: 24px;
  margin: 12px;
}
.side_menu .scroll nav .sns a img {
  width: auto;
  height: 100%;
}

.bars {
  width: 36px;
  height: 22px;
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 1000;
  display: none;
}
.bars span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ad8652;
  position: absolute;
  left: 50%;
  transition: 0.3s;
}
.bars span:nth-child(1) {
  top: 0;
  transform: translate(-50%, 0);
}
.bars span:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}
.bars span:nth-child(3) {
  bottom: 0;
  transform: translate(-50%, 0%);
}

.bars.active span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.bars.active span:nth-child(2) {
  opacity: 0;
}
.bars.active span:nth-child(3) {
  bottom: 50%;
  transform: translate(-50%, 50%) rotate(-45deg);
}

.en_icon {
  display: block;
  width: 36px;
  position: fixed;
  right: 22px;
  top: 40px;
  z-index: 1001;
}
.en_icon img {
  width: 100%;
}

@media screen and (max-width: 991px) {
  .side_menu {
    width: 100%;
    height: auto;
  }
  .side_menu .logo {
    padding: 22px 0 43px;
  }
  .side_menu .scroll {
    display: none;
  }
  .bars {
    display: block;
  }
  .en_icon {
    right: 32px;
    top: 18px;
  }
}
.kicc-Page {
  min-height: 60vh;
}

/* フッター */
.new_footer {
  width: 100%;
  padding-top: 42px;
  padding-bottom: 30px;
  background-color: #bdbdbd;
}
.new_footer .logo {
  width: 220px;
  margin: 0 auto;
  margin-bottom: 22px;
}
.new_footer .logo img {
  width: 100%;
}
.new_footer nav {
  margin: 0;
  padding: 0;
  padding: 0 30px;
}
.new_footer nav ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
.new_footer nav ul li {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
  padding: 0;
}
.new_footer nav ul li a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #000;
}
.new_footer .copy {
  font-family: var(--main-font);
  font-size: 12px;
  color: #000;
  text-align: center;
  font-weight: 600;
  padding: 0 30px;
}

@media screen and (max-width: 991px) {
  .new_footer nav ul {
    flex-direction: column;
    align-items: center;
  }
  .new_footer .copy {
    font-family: var(--main-font);
    font-size: 12px;
    color: #000;
    text-align: center;
    font-weight: 600;
  }
}
/* top_mv */
.top_mv {
  width: 100%;
  position: relative;
}
.top_mv p {
  margin: 0;
  padding: 0;
  width: 360px;
  font-family: var(--main-font);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0.1em;
  position: absolute;
  right: 100px;
  top: 125px;
  z-index: 2;
  padding-left: 0.5em;
  display: none;
  color: #fff;
}
.top_mv .slide {
  width: 100%;
  position: relative;
  z-index: 1;
}
.top_mv .slide figure {
  width: 100%;
  padding: 0;
  margin: 0;
}
.top_mv .slide figure img {
  width: 100%;
}
.top_mv.image-1 .txt1 {
  display: block;
  color: #000;
  right: initial;
  left: 100px;
}
.top_mv.image-2 .txt2 {
  display: block;
  top: initial;
  right: initial;
  left: 100px;
  bottom: 125px;
}
.top_mv.image-3 {
  background-position: bottom;
}
.top_mv.image-3 .txt3 {
  display: block;
  top: initial;
  right: initial;
  left: 100px;
  bottom: 125px;
}
.top_mv.image-4 .txt4 {
  display: block;
  right: initial;
  left: 100px;
}
.top_mv .credit {
  top: 1rem !important;
  right: initial !important;
  left: 1rem !important;
  bottom: initial !important;
  font-size: 10px !important;
  letter-spacing: 0;
}

@media screen and (max-width: 991px) {
  .top_mv p {
    font-size: 24px;
    right: 50%;
    top: 48px;
    transform: translate(50%, 0);
  }
  .top_mv .slide figure img {
    width: 100%;
    height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
/* top_news */
.top_news ul {
  padding: 0;
  margin: 0;
}
.top_news ul li {
  padding: 4px;
  margin: 0;
  border-bottom: 1px solid #001f4d;
}
.top_news ul li a {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  color: #000;
  font-weight: 600;
  line-height: 1.75;
}
.top_news ul li a p {
  padding: 6px 8px;
  margin: 0;
}
.top_news ul li a .head {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.top_news ul li a .cate {
  width: 88px;
  padding: 0;
  margin-right: 8px;
  background-color: #ad8652;
  color: #fff;
  font-size: 12px;
  text-align: center;
  position: relative;
  padding-left: 5px;
}
.top_news ul li a .cate.news {
  background-color: #ad8652;
}
.top_news ul li a .cate.schedule {
  background-color: #001f4d;
}
.top_news ul li a .cate.independent {
  background-color: #7a7a7a;
}
.top_news ul li a .cate.update {
  background-color: #b15a73;
}
.top_news ul li a .cate.events {
  background-color: #107850;
}
.top_news ul li a .cate::before {
  content: "";
  display: block;
  width: 0;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-bottom: #fff 21px solid;
  border-right: 7px transparent solid;
  z-index: 1;
}
.top_news ul li a .date {
  font-size: 15px;
  border-left: 1px solid #001f4d;
}
.top_news ul li a .title {
  font-size: 16px;
  font-family: var(--main-font);
  letter-spacing: 0.1em;
}

@media screen and (max-width: 991px) {
  .top_news ul li a .head {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }
  .top_news ul li a .date {
    border: none;
    font-size: 14px;
  }
  .top_news ul li a .title {
    font-size: 14px;
  }
}
/* top_topic */
.top_topic .outer {
  width: 100%;
  padding-top: 32px;
  padding-bottom: 32px;
  position: relative;
}
.top_topic .outer::before {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% - 70px);
  background-color: #ccd2db;
  position: absolute;
  left: 0;
  bottom: 0;
}
.top_topic .outer:last-child::before {
  background-color: #d6c2a8;
}
.top_topic .flex {
  width: 99%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  z-index: 2;
}
.top_topic .flex a {
  width: calc((100% - 20px) / 3);
  text-decoration: none;
}
.top_topic .flex a figure {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  background-color: gray;
}
.top_topic .flex a figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.top_topic .flex a p {
  padding: 0;
  margin: 0;
  font-family: var(--main-font);
  font-size: 19px;
  letter-spacing: 0.1em;
  line-height: 1.75;
  color: #000;
  font-weight: 600;
  margin-top: 0.3em;
}
.top_topic .flex a p span {
  display: block;
  font-family: var(--main-font);
  font-size: 14px;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 991px) {
  .top_topic .outer {
    width: 100%;
    padding-bottom: 32px;
    position: relative;
  }
  .top_topic .outer::before {
    content: "";
    display: block;
    width: 100%;
    height: calc(100% - 70px);
    background-color: #ccd2db;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .top_topic .outer:last-child::before {
    background-color: #d6c2a8;
  }
  .top_topic .flex a {
    width: calc((100% - 10px) / 2);
    text-decoration: none;
  }
  .top_topic .flex a p {
    font-size: 17px;
  }
}
@media screen and (max-width: 540px) {
  .top_topic .flex {
    gap: 0 !important;
    padding: 0 10px !important;
  }
  .top_topic .flex a {
    width: 50% !important;
  }
  .top_topic .outer02 .flex a,
  .top_topic .outer03 .flex a {
    width: 100% !important;
  }
}
/* top_schedule */
.top_schedule {
  background-color: #f2f2f1;
}
.top_schedule h2 {
  opacity: 1;
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
}
.top_schedule h2 span {
  font-family: var(--main-font);
  font-size: 14px;
  margin-bottom: 1rem;
}
.top_schedule h2 img {
  max-width: 300px;
}
.top_schedule .dummy {
  background-color: gray;
  height: 500px;
}

@media screen and (max-width: 991px) {
  h2 span {
    display: block;
  }
}
/* top_event */
.top_event {
  padding-bottom: 52px;
}
.top_event .btn {
  margin-top: 0;
}
.top_event ul {
  width: calc(100% - 90px);
  border-left: 1px solid #001f4d;
  padding: 0;
  margin: 0;
  padding-left: 16px;
}
.top_event ul li {
  border-bottom: 1px solid #001f4d;
  padding: 16px 0;
  margin: 0;
}
.top_event ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.top_event ul li a {
  display: block;
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  padding-left: 38px;
  padding-right: 48px;
  position: relative;
}
.top_event ul li a::before {
  content: "";
  display: block;
  width: 20px;
  /* height: 30px; */
  /* background-color: #ad8652; */
  position: absolute;
  left: 0;
  top: 0;
  border-left: 10px solid transparent;
  border-bottom: 32px solid #ad8652;
  transform: scale(1, -1);
}
.top_event ul li a::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(../img/arrow_r_g.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.top_event ul li a span {
  font-family: var(--main-font);
  font-weight: 700;
  font-size: 23px;
  color: #ad8652;
  display: block;
}
.top_event ul li p {
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

@media screen and (max-width: 991px) {
  .top_event ul {
    width: 100%;
  }
  .top_event ul li a {
    font-size: 17px;
    padding-right: 40px;
  }
  .top_event ul li a span {
    font-size: 21px;
  }
}
.kicc-SiteHeader__UtilsSearch {
  position: fixed;
  top: 43px;
  right: 70px;
  z-index: 10000;
}
@media screen and (max-width: 540px) {
  .kicc-SiteHeader__UtilsSearch {
    right: 50%;
    transform: translateX(50%);
    top: 63px;
  }
}

.kicc-SiteHeader__UtilsSearchForm,
.kicc-SiteHeader__UtilsSearchInput {
  border-radius: 30px;
}

/*カレンダー*/
[class*=cal_] {
  border: none;
  font-size: 10px;
  font-weight: bold;
  border-radius: 0;
}

.cal_icckyoto {
  background-color: #0068b3;
}

.cal_niwacafe {
  background-color: #00804d;
}

.cal_grill {
  background-color: #e97200;
}

.cal_tour {
  background-color: #039be5;
}

.cal_parking {
  background-color: #c21f4d;
}

.cal_holiday {
  background-color: #c6c6c6;
}

.fc-daygrid-day-number {
  font-size: 10px;
}

.fc-daygrid-day-top {
  height: 21px;
}

.fc-col-header-cell-cushion {
  font-size: 12px;
  line-height: 1;
}

.fc-view-harness {
  background-color: #fff;
}

.fc-button {
  padding: 0 5px !important;
}

.fc-toolbar {
  margin-bottom: 0 !important;
  margin-top: 2rem;
}

.fc-toolbar-title {
  font-size: 1.5em !important;
}
@media screen and (max-width: 540px) {
  .fc-toolbar-title {
    font-size: 1.2em !important;
  }
}

@media screen and (max-width: 540px) {
  .fc-daygrid-more-link {
    font-size: 8px !important;
  }
}
.kicc-Page__Title,
.kicc-Archive__Title,
.kicc-Single__Title,
.kicc-Search__Title {
  font-family: var(--main-font);
  letter-spacing: 1px;
}

/* 2024/2/6追記 */
.cta {
  width: -moz-fit-content;
  width: fit-content;
  right: 0;
  z-index: 900;
  transform: translateX(200%);
  transition: 0.6s;
}
.cta:hover {
  opacity: 1;
}
@media screen and (max-width: 600px) {
  .cta {
    top: 140px;
    transform: translateX(0);
  }
}
.cta a {
  display: block;
}
.cta a img {
  width: 100%;
  transition: 0.4s;
}
.cta a img:hover {
  opacity: 1;
  transform: scale(1.1);
}

.cta.active {
  transform: translateX(0);
}

.cta_s {
  width: 52px;
  right: 20px;
  top: 120px;
  position: fixed;
}

.cta_l {
  width: 246px;
  right: 20px;
  top: 80vh;
  position: absolute;
}

.top_mv {
  overflow: hidden;
}

.fadeInScale {
  opacity: 0;
  transform: scale(1.1);
}

.fadeInScaleActive {
  animation-name: fadeInScale;
  animation-duration: 1.5s;
  animation-delay: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
#mv {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
}

/* 左から */
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 1.4s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
#movie {
  /*YouTube埋め込みのレスポンシブ*/
}
#movie .youtube-link {
  position: relative;
  padding-bottom: 56.2%; /*アスペクト比 16:9の場合の縦幅 縦幅ここで調整*/
  height: 0;
  overflow: hidden;
  width: 100%; /*大きさはここで調整*/
  background-image: url("");
}
#movie .youtube-link iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#movie .flex {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  z-index: 2;
}
#movie .flex .left {
  flex: 1;
}
#movie .flex .right {
  width: 100%;
}
@media screen and (max-width: 450px) {
  #movie .flex .right {
    width: 100%;
  }
}

.hiddenx {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* 2024/3/8 リニューアル追加 */
.anchor {
  max-width: 882px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin: 0 auto;
}

.anchor li {
  width: 264px;
  margin: 10px 14px;
  border: 1px solid #c3cad5;
  text-align: center;
  transition: 0.4s;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.anchor li::before {
  content: "";
  display: block;
  width: calc(100% + 2px);
  height: 4px;
  background-color: #001f4d;
  position: absolute;
  bottom: -1px;
  left: -1px;
}

.anchor li::after {
  content: "";
  display: block;
  width: 16px;
  height: 10px;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background-color: #001f4d;
  position: absolute;
  left: auto;
  right: 17px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.4s;
}

.anchor li a {
  display: block;
  width: 100%;
  padding: 1em 0;
  color: #001f4d;
  font-weight: 700;
  transition: 0.4s;
}

.anchor li:hover {
  background-color: #001f4d;
  border: 1px solid #001f4d;
  box-shadow: 6px 6px 14px -6px rgba(0, 0, 0, 0.6);
}

.anchor li:hover::after {
  background-color: #fff;
}

.anchor li:hover a {
  color: #fff;
  text-decoration: none;
}

.anchor_new {
  max-width: 882px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin: 0 auto;
}

.anchor_new li {
  width: 264px;
  margin: 10px 14px;
  border: 1px solid #c3cad5;
  text-align: center;
  transition: 0.4s;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.anchor_new li::before {
  content: "";
  display: block;
  width: calc(100% + 2px);
  height: 4px;
  background-color: #001f4d;
  position: absolute;
  bottom: -1px;
  left: -1px;
}

.anchor_new li::after {
  content: "";
  display: block;
  width: 16px;
  height: 10px;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background-color: #001f4d;
  position: absolute;
  right: 17px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.4s;
}

.anchor_new li a {
  display: block;
  width: 100%;
  padding: 1em 0;
  color: #001f4d;
  font-weight: 700;
  transition: 0.4s;
}

.anchor_new li:hover {
  background-color: #001f4d;
  border: 1px solid #001f4d;
  box-shadow: 6px 6px 14px -6px rgba(0, 0, 0, 0.6);
}

.anchor_new li:hover::after {
  background-color: #fff;
}

.anchor_new li:hover a {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 839px) {
  .anchor {
    flex-direction: column;
    align-items: center;
  }
  .anchor_new {
    flex-direction: column;
    align-items: center;
  }
}
/* 2024/3/16 リニューアル追加 */
/*layout*/
@media screen and (max-width: 840px) {
  .side_menu .logo.en {
    padding: 16px 0 43px;
  }
  .side_menu .logo.en a {
    width: 170px;
    height: 40px;
  }
}
@media screen and (max-width: 840px) {
  .kicc-SiteHeader__UtilsSearch {
    right: 50%;
    transform: translateX(50%);
    top: 63px;
  }
}
h2.en {
  margin-bottom: 40px;
}

.en_icon_white img {
  transition: 0.3s;
}

.en_icon_white.active img {
  filter: brightness(0) invert(1);
}

@media screen and (max-width: 991px) {
  .en_icon_white.active img {
    filter: none;
  }
}
.cta_l {
  width: 255px;
  right: 0;
  top: 37vw;
}

.cta_form {
  width: 75px;
  right: 0;
  top: 120px;
  position: fixed;
  z-index: 1000;
  transition: 0.4s;
}
@media screen and (max-width: 600px) {
  .cta_form {
    display: none;
  }
}

.cta_form:hover {
  opacity: 1;
  transform: scale(1.1);
}

.cta_cal {
  width: 75px;
  right: 0;
  top: 370px;
  position: fixed;
  z-index: 1000;
  transition: 0.4s;
}
@media screen and (max-width: 600px) {
  .cta_cal {
    display: none;
  }
}

.cta_cal:hover {
  opacity: 1;
  transform: scale(1.1);
}

.cta_form_sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .cta_form_sp {
    display: block;
    position: fixed;
    right: 0;
    z-index: 1000;
    bottom: 0;
    width: 50%;
  }
}

.cta_cal_sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .cta_cal_sp {
    display: block;
    position: fixed;
    left: 0;
    z-index: 1000;
    bottom: 0;
    width: 50%;
  }
}

.cta_s {
  width: 64px;
  right: 0;
}

.sede_menu_inner {
  opacity: 0;
}

.mv_outer {
  position: relative;
}

.heading_text_img {
  width: auto;
  height: 66px;
  margin-bottom: 16px;
}
@media screen and (max-width: 450px) {
  .heading_text_img {
    height: 56px;
  }
}
.heading_text_img img {
  width: auto;
  height: 100%;
}

.top_news {
  margin-bottom: 80px;
}

.top_topic .outer {
  position: relative;
}
.top_topic .flex {
  width: 100%;
  gap: 30px;
}
.top_topic .flex a {
  width: calc((100% - 120px) / 3);
}
@media screen and (max-width: 600px) {
  .top_topic .flex a {
    width: 100%;
  }
}
.top_topic .flex a figure {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 0;
  background-color: transparent;
  position: relative;
}
.top_topic .flex a figure::before {
  content: "";
  background-image: url(../img/banner_arrow.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 35px;
  height: 35px;
  position: absolute;
  right: 24px;
  bottom: 40px;
  z-index: 1;
}
@media screen and (max-width: 840px) {
  .top_topic .flex a figure::before {
    width: 30px;
    height: 30px;
    right: 16px;
    bottom: 26px;
  }
}
@media screen and (max-width: 540px) {
  .top_topic .flex a figure::before {
    width: 25px;
    height: 25px;
    right: 17px;
    bottom: 19px;
  }
}
.top_topic .flex a figure.overLayer02::before {
  background-image: url(../img/banner_arrow2.webp);
}
.top_topic .flex a figure img {
  display: block;
  width: calc(100% - 12px);
}
@media screen and (max-width: 600px) {
  .top_topic .flex a figure img {
    width: calc(100% - 24px);
  }
}

.top_topic01 {
  margin-bottom: 64px;
}
.top_topic01 .outer01 {
  padding: 0;
  max-width: 1000px;
  margin: 0 auto;
}

#movie {
  margin-bottom: 40px;
}

.top_event {
  padding-bottom: 16px;
}

.top_topic02 .outer02,
.top_topic02 .outer03 {
  max-width: 1000px;
  margin: 0 auto;
}
.top_topic02 .outer02 .flex,
.top_topic02 .outer03 .flex {
  gap: 10px;
}
.top_topic02 .outer02 .flex a,
.top_topic02 .outer03 .flex a {
  width: calc((100% - 50px) / 3);
}
.top_topic02 .outer02 .flex a img,
.top_topic02 .outer03 .flex a img {
  border-radius: 10px;
}
.top_topic02 .outer03 {
  margin-bottom: 15rem;
}

.fc-toolbar {
  background-color: #fff;
  padding: 0 8px;
}

.fc-daygrid {
  padding: 0 8px 8px 8px;
}

.top_facility {
  width: 100%;
}
.top_facility .inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  background: linear-gradient(45deg, rgb(169, 30, 61) 0%, rgb(133, 36, 60) 100%);
  padding: 30px 0;
  position: relative;
  z-index: 1;
}
.top_facility .inner .item {
  width: calc(33.3333333333% - 5px);
}
.top_facility .inner .item figure {
  width: 100%;
  margin: 0;
}
.top_facility .inner .item figure img {
  width: 100%;
}
.top_facility .inner .item .item2 {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media screen and (max-width: 450px) {
  .top_facility .inner {
    justify-content: center;
    align-items: center;
  }
  .top_facility .inner .item {
    width: calc(100% - 68px);
  }
  .top_facility .inner .item figure {
    margin-bottom: 8px;
  }
}
.top_facility_text {
  max-width: 716px;
  width: 100%;
  position: relative;
  z-index: 2;
  transform: translateY(50%);
}
.top_facility_text img {
  width: 100%;
}

.top_schedule {
  padding: 50px;
  padding-bottom: 170px;
}
@media screen and (max-width: 450px) {
  .top_schedule {
    padding: 24px;
  }
}
.top_schedule .content {
  max-width: 940px;
  margin: 0 auto;
  padding: 60px;
}
@media screen and (max-width: 991px) {
  .top_schedule .content {
    padding: 24px;
  }
}
.top_schedule .content .inner {
  max-width: 760px;
  margin: 0 auto;
}
.top_schedule .content .inner p {
  font-weight: 700;
  font-size: 14px;
}
.top_schedule .content .inner .open_days {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .top_schedule .content .inner .open_days {
    display: flex;
  }
}
.top_schedule .content .inner .open_days article {
  box-sizing: border-box;
  width: 366px;
  padding: 16px 20px;
  background-color: #fff;
}
.top_schedule .content .inner .open_days article h3 {
  display: flex;
  border-bottom: 1px solid #dddddd;
  padding-bottom: 8px;
  margin: 0;
  margin-bottom: 8px;
}
.top_schedule .content .inner .open_days article h3 span {
  display: block;
  font-size: 17px;
  position: relative;
  padding-left: 46px;
  margin-right: 20px;
}
.top_schedule .content .inner .open_days article h3 span::before {
  content: "";
  display: block;
  background-color: #222;
  width: 32px;
  height: 10px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.top_schedule .content .inner .open_days article h3 span::after {
  content: "";
  display: block;
  width: 0;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-bottom: #fff 10px solid;
  border-right: 7px transparent solid;
  z-index: 1;
}
.top_schedule .content .inner .open_days article h3 .blue::before {
  background-color: #0068b3;
}
.top_schedule .content .inner .open_days article h3 .green::before {
  background-color: #00804d;
}
.top_schedule .content .inner .open_days article h3 .orange::before {
  background-color: #e17200;
}
.top_schedule .content .inner .open_days article h3 .cyan::before {
  background-color: #82d5ff;
}
.top_schedule .content .inner .open_days article h3 .red::before {
  background-color: #ba1f4d;
}
.top_schedule .content .inner .open_days article p {
  font-size: 20px;
  color: #001f4d;
  margin: 0;
}
.top_schedule .content .inner .open_days article.wide {
  width: 100%;
  grid-column: 1/3;
  display: flex;
  flex-flow: row wrap;
}
.top_schedule .content .inner .open_days article.wide h3 {
  width: 100%;
}
.top_schedule .content .inner .open_days article.wide p {
  width: 50%;
}
.top_schedule .content .inner .open_days article.wide .yusen_box {
  width: 50%;
  box-sizing: border-box;
  margin: 1em auto;
}
@media screen and (max-width: 540px) {
  .top_schedule .content .inner .open_days article.wide p,
  .top_schedule .content .inner .open_days article.wide .yusen_box {
    width: 100%;
  }
}

.grad_btn {
  width: -moz-fit-content;
  width: fit-content;
  height: 36px;
  background-color: rgb(146, 105, 41);
  padding-left: 16px;
  padding-right: 32px;
  margin: 0 auto;
  position: relative;
  margin-top: 24px;
  text-align: center;
}
.grad_btn::before {
  content: "";
  border-bottom: rgb(146, 105, 41) solid 36px;
  border-left: transparent solid 20px;
  width: 0px;
  top: 0;
  left: 0;
  transform: translateX(-100%) scale(1, -1);
  position: absolute;
}
.grad_btn a {
  font-weight: var(--main-font);
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  line-height: 36px;
}
.grad_btn::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url(../img/round_btn_arrow.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translate(0, -50%);
}

.new_footer {
  background-color: #fff;
  padding: 0;
  padding-bottom: 32px;
}
.new_footer.underlayer::before {
  content: "";
  display: block;
  width: 100%;
  height: 42px;
  background-color: #bdbdbd;
}
.new_footer .logo {
  margin-top: 40px;
  position: relative;
}

/*animation*/
.fadeIn {
  opacity: 0;
  transform: translateY(50px);
  transition: 1s;
}

.overLayer01 {
  position: relative;
  overflow: hidden;
}
.overLayer01::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(0);
  transition-delay: 0.6s;
  transition-duration: 0.4s;
  transition-timing-function: ease-in;
  z-index: 2;
}

.overLayer02 {
  position: relative;
  overflow: hidden;
}
.overLayer02::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #f2f2f1;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(0);
  transition-delay: 0.6s;
  transition-duration: 0.4s;
  transition-timing-function: ease-in;
  z-index: 2;
}

.openLayer::after {
  transform: translateX(110%);
}

.onLoadFade {
  opacity: 0;
  transform: translateX(-100px);
  transition-duration: 1.3s;
}

.onLoadFadeActive {
  opacity: 1;
  transform: translateX(0);
}

.delayFade {
  opacity: 0;
  transform: translateY(10px);
  transition-duration: 1s;
}

.delayFade01 {
  transition-delay: 0.3s;
}

.delayFade02 {
  transition-delay: 0.5s;
}

.delayFade03 {
  transition-delay: 0.7s;
}

.delayFade04 {
  transition-delay: 0.9s;
}

.delayFade04 {
  transition-delay: 1.1s;
}

.delayFadeActive {
  opacity: 1;
  transform: translateY(0);
}

/* 2024/3/17 リニューアル追加コンセプトページ */
/*concept_page*/
.concept_page {
  background: linear-gradient(270deg, rgb(207, 208, 208) 10%, rgb(118, 118, 118) 100%);
  padding-bottom: 100px;
}
.concept_page .concept_page_content::before {
  content: "";
  display: block;
  width: 100%;
  height: 56px;
  background: linear-gradient(90deg, rgb(207, 190, 165) 30%, rgb(146, 105, 41) 100%);
}
.concept_page .concept_title {
  width: 350px;
  height: auto;
  padding: 60px 40px 20px 40px;
}
.concept_page .concept_title img {
  width: 100%;
  height: auto;
}
.concept_page.concept_page_en .concept_title {
  width: 500px;
}
.concept_page .intro {
  position: relative;
  overflow: hidden;
}
.concept_page .intro::before {
  content: "";
  display: block;
  width: 200%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  transform-origin: right;
  transform: rotate(-4deg);
}
.concept_page .concept_page_anchor {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.concept_page .concept_page_anchor ul {
  margin: 0;
  padding: 0 1em;
  width: 45%;
}
.concept_page .concept_page_anchor ul li {
  display: flex;
  align-items: center;
}
.concept_page .concept_page_anchor ul li .anchor_num {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 8px;
}
@media screen and (max-width: 600px) {
  .concept_page .concept_page_anchor ul li .anchor_num {
    width: 32px;
    height: 32px;
    margin-right: 4px;
  }
}
.concept_page .concept_page_anchor ul li .anchor_num img {
  width: auto;
  height: 100%;
}
.concept_page .concept_page_anchor ul li a {
  display: block;
  padding: 16px 8px;
  border-bottom: 1px solid #fff;
  width: 100%;
  font-size: 20px;
  color: #fff;
  letter-spacing: 0.1em;
  font-weight: 600;
  font-style: italic;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.4);
  text-decoration: none;
}
@media screen and (max-width: 600px) {
  .concept_page .concept_page_anchor ul li a {
    font-size: 16px;
  }
}
.concept_page .concept_page_link {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 622px;
  width: 100%;
  margin-top: 40px;
}
@media screen and (max-width: 840px) {
  .concept_page .concept_page_link {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
  }
}
.concept_page .concept_page_link .btn {
  width: 305px;
  height: 60px;
  background: #d1d1d1;
}
.concept_page .concept_page_link .btn a {
  height: 100%;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.concept_page .concept_page_link .btn a .text {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 255px;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  text-align: center;
}
.concept_page .concept_page_link .btn a .arrow {
  width: 80px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.concept_page .concept_page_link .btn a .arrow img {
  width: 55px;
  height: 10px;
  transform: translateY(-50%);
}
.concept_page .concept_page_img {
  width: 100%;
  height: auto;
}
.concept_page .concept_page_img img {
  width: 100%;
  height: auto;
}
.concept_page .concept_page_inner {
  box-sizing: border-box;
  max-width: 1160px;
  width: 100%;
  padding: 80px 20px 20px 40px;
  margin: 0 auto;
  color: #000;
  position: relative;
}
@media screen and (max-width: 450px) {
  .concept_page .concept_page_inner {
    padding: 80px 20px 20px 20px;
  }
}
.concept_page .concept_page_inner .heading {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: flex-end;
  flex-wrap: wrap;
}
@media screen and (max-width: 991px) {
  .concept_page .concept_page_inner .heading {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
  }
}
@media screen and (max-width: 840px) {
  .concept_page .concept_page_inner .heading {
    flex-direction: column;
    justify-content: center;
  }
}
.concept_page .concept_page_inner h2 {
  font-size: 45px;
  color: #fff;
  letter-spacing: 0.1em;
  font-weight: 600;
  font-style: italic;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.4);
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif; /*代用フォントです。本番はモリサワに変えてください*/
  margin: 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 450px) {
  .concept_page .concept_page_inner h2 {
    font-size: 32px;
  }
}
.concept_page .concept_page_inner h3 {
  font-size: 30px;
  color: #262626;
  letter-spacing: 0.1em;
  line-height: 1.8;
  font-style: italic;
  margin-top: 20px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 450px) {
  .concept_page .concept_page_inner h3 {
    font-size: 20px;
  }
}
.concept_page .concept_page_inner .concept_page_num {
  width: auto;
  height: 220px;
  transform: translateY(50%);
  position: relative;
  z-index: 1;
  margin-left: auto;
}
@media screen and (max-width: 991px) {
  .concept_page .concept_page_inner .concept_page_num {
    width: 80px;
    height: auto;
    padding-right: 20px;
    transform: translateY(0);
  }
}
@media screen and (max-width: 840px) {
  .concept_page .concept_page_inner .concept_page_num {
    width: 50px;
    padding: 0;
    margin-bottom: 20px;
  }
}
.concept_page .concept_page_inner .concept_page_num img {
  width: auto;
  height: 100%;
}
@media screen and (max-width: 991px) {
  .concept_page .concept_page_inner .concept_page_num img {
    width: 100%;
    height: auto;
  }
}
.concept_page .concept_page_inner p {
  font-size: 16px;
  letter-spacing: 0.05em;
  text-align: justify;
  font-family: "MFW-HiraginoUDSansStdN-W3";
}
.concept_page .concept_page_inner p strong {
  font-family: var(--main-font);
}
@media screen and (max-width: 840px) {
  .concept_page .concept_page_inner p .del {
    display: none;
  }
}
.concept_page .concept_page_inner .small {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0;
}
.concept_page.concept_page_en p {
  text-align: left;
}
.concept_page.concept_page_en dl.indent_txt {
  display: flex;
  flex-flow: row wrap;
}
.concept_page.concept_page_en dl.indent_txt dt,
.concept_page.concept_page_en dl.indent_txt dd {
  font-family: "MFW-HiraginoUDSansStdN-W3";
}
.concept_page.concept_page_en dl.indent_txt dt {
  width: 125px;
}
.concept_page.concept_page_en dl.indent_txt dd {
  padding-left: 10px;
  width: calc(100% - 185px);
  margin-left: 0;
}
.concept_page.concept_page_en h2 {
  text-align: left;
}
.concept_page.concept_page_en h3 {
  text-align: left;
  font-size: 27px;
}
.concept_page.concept_page_en .heading {
  text-align: left;
}

.comment {
  width: 100%;
  margin-left: auto;
  font-size: 12px !important;
}

.page-template-page_niwa .hiddenx {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.page-template-page_niwa .hiddenx::-webkit-scrollbar {
  display: none;
}

.calendar {
  margin-top: 32px;
}
.calendar iframe {
  width: 100%;
}

.kicc-Page__Main .column3-inner.column3-inner-pbox {
  margin: 0 auto;
  padding: 0;
  border: 3px solid #ffdc6f;
  margin-top: 10px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-evenly;
}
@media screen and (max-width: 450px) {
  .kicc-Page__Main .column3-inner.column3-inner-pbox {
    flex-flow: column;
    align-items: center;
    margin-bottom: 40px;
    display: flex;
  }
}

@media screen and (max-width: 450px) {
  .column3-item-1-pbox img {
    margin-bottom: 40px;
  }
}

/* Google Map埋め込みのレスポンシブ */
@media screen and (max-width: 450px) {
  .map {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 75%; /* 比率を4:3に固定 */
  }
}

/* Google Mapのiframe */
@media screen and (max-width: 450px) {
  .map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

/*追記2024-04-18*/
.error .wpcf7-not-valid-tip {
  display: none;
}

.error .error-message {
  color: #dc3232;
  display: none;
}

.error:has(.wpcf7-not-valid-tip) .error-message {
  display: block;
} 
/*追記2024-04-24*/
.pamph_layout {
  display: flex;
  flex-flow: row wrap;
  gap: 30px;
}
.pamph_layout .pamph_item {
  width: 240px;
}
.pamph_layout .pamph_item .pamph_pdf {
  position: relative;
}
.pamph_layout .pamph_item .pamph_pdf::before {
  content: "\f1c1";
  display: inline-block;
  font: normal normal normal 40px/1 FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-left: 5px;
  color: #000;
  position: absolute;
  bottom: 19px;
  right: 7px;
  z-index: 1;
}
.pamph_layout .pamph_item .pamph_search {
  position: relative;
}
.pamph_layout .pamph_item .pamph_search::before {
  content: "";
  background-image: url(../img/icon_search.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 50px;
  height: 50px;
  position: absolute;
  bottom: 15px;
  right: 12px;
  z-index: 1;
}
.pamph_layout .pamph_item p {
  margin: 0;
}
.pamph_layout .pamph_item img {
  border: 0.5px solid #ddd;
}

/*追記2024-07-02*/
.pamph_layout-wt {
  display: flex;
  flex-flow: row wrap;
  gap: 30px;
}
.pamph_layout-wt .pamph_item-wt {
  width: 240px;
}
.pamph_layout-wt .pamph_item-wt .pamph_pdf-wt {
  position: relative;
}
.pamph_layout-wt .pamph_item-wt .pamph_pdf-wt::before {
  content: "\f1c1";
  display: inline-block;
  font: normal normal normal 40px/1 FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-left: 5px;
  color: #000;
  background-color: #fff;
  padding: 3px;
  position: absolute;
  bottom: 19px;
  right: 7px;
  z-index: 1;
}
.pamph_layout-wt .pamph_item-wt .pamph_search-wt {
  position: relative;
}
.pamph_layout-wt .pamph_item-wt .pamph_search-wt::before {
  content: "";
  background-image: url(../img/icon_search.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 50px;
  height: 50px;
  position: absolute;
  bottom: 15px;
  right: 12px;
  z-index: 1;
}
.pamph_layout-wt .pamph_item-wt p {
  margin: 0;
}
.pamph_layout-wt .pamph_item-wt img {
  border: 0.5px solid #ddd;
}

/*追記2024-06-06*/
.bar {
  width: 100%;
  height: auto;
  margin: 0;
}
.bar.bar_mv {
  transform: translateY(-69%);
  margin-bottom: -20%;
}
.bar.bar_openday {
  margin-bottom: 20px;
}
.bar.whiteback_openday {
  transform: translateY(99%);
  margin-top: -5%;
}
.bar.bar_openday2 {
  transform: translateY(-100%);
  margin-bottom: -20%;
}

#insta {
  margin-top: 8px;
}
#insta .outer05 {
  max-width: 1000px;
  margin: 0 auto;
}
#insta .outer05 .flex {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  width: calc(100% - 12px);
  margin: 0 auto;
}
#insta .outer05 .flex .static_post {
  width: calc((100% - 20px) / 3 - 12px);
  background: linear-gradient(0deg, rgb(207, 190, 165) 0%, rgb(146, 105, 41) 70%);
  border-radius: 15px;
  padding: 10px 10px 25px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  position: relative;
  flex-flow: column;
}
#insta .outer05 .flex .static_post .inner {
  max-height: 500px;
  overflow: scroll;
}
#insta .outer05 .flex .static_post .pickup {
  width: 110px;
  margin: 7px 0;
}
#insta .outer05 .flex .static_post::before {
  content: "";
  width: 30px;
  height: 30px;
  background-image: url(../img/insta_clip.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 10px;
  top: -12px;
}
#insta .outer05 .flex .static_post .instagram-media {
  width: 98% !important;
  border: none !important;
  margin: 0 auto !important;
  min-width: initial !important;
  max-width: initial !important;
}
@media screen and (max-width: 450px) {
  #insta .outer05 .flex .static_post {
    width: 88%;
  }
}
#insta .outer05 .flex .latest_post {
  width: calc((100% - 20px) / 3 * 2);
  box-sizing: border-box;
  padding: 0;
  display: flex;
  gap: 10px;
  align-items: start;
  justify-content: space-around;
  flex-flow: row wrap;
}
@media screen and (max-width: 450px) {
  #insta .outer05 .flex .latest_post {
    width: 88%;
  }
}
#insta #sbi_load {
  display: inline-block;
  vertical-align: top;
  zoom: 1;
  padding: 7px 14px;
  margin: 5px auto 0 auto;
  background: #333;
  border: none;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.5;
  border-radius: 4px;
  box-sizing: border-box;
  background: rgb(0, 74, 128);
}
#insta #sbi_load a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
#insta #sbi_load svg {
  font-size: 15px;
  height: 1em;
  display: inline-block;
}

.sbi_photo_wrap {
  border-radius: 10px;
  overflow: hidden;
}

#sb_instagram #sbi_images {
  padding: 0 !important;
  display: flex;
  gap: 10px;
  margin-bottom: 50px;
}

.sbi_item {
  width: calc((100% - 10px) / 2 - 12px);
  display: flex;
  justify-content: start;
  flex-flow: column;
  /* padding: 0 7px; */
  align-items: center;
}
.sbi_item a img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  aspect-ratio: 1/1;
  border-radius: 10px;
}
.sbi_item p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
  width: 100%;
  /* font-weight: normal; */
  text-align: justify;
  font-size: 16px;
  /* letter-spacing: 0; */
  line-height: 1.7;
}
@media screen and (max-width: 540px) {
  .sbi_item p {
    font-size: 14px;
    -webkit-line-clamp: 5;
  }
}

#sb_instagram .sbi_photo_wrap {
  width: calc(100% - 12px);
}

.insta_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0;
}

.insta_list li {
  position: relative;
  width: calc((100% - 40px) / 3);
}

@media screen and (max-width: 750px) {
  .insta_list li {
    width: calc((100% - 20px) / 2);
  }
}
.insta_list li::before {
  content: "";
  display: block;
  padding-top: 100%;
}

.insta_list a {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.insta_list img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.insta_btn {
  background-color: #000;
  padding: 0.5em 1em;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  cursor: pointer;
  transition: 0.3s;
}

.insta_btn a {
  color: #fff;
  text-decoration: none;
}

.insta_btn:hover {
  background-color: #999;
}

.acordion_title,
.acordion_wrap {
  max-width: 800px;
  margin: 10px auto;
}

.acordion_title {
  cursor: pointer;
  background-color: #004a80;
  margin-top: 20px;
  color: #fff;
  position: relative;
  text-align: center;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.acordion_title:nth-of-type(1) {
  margin-top: 50px;
}
.acordion_title::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url(../img/arrow_u_b.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(-100%, -50%) rotate(180deg);
  transition: 0.3s;
  filter: brightness(0) invert(1);
}
.acordion_title.close::after {
  transform: translate(-100%, -50%) rotate(0deg);
}

.acordion_wrap {
  display: none;
}

/*20241031追加*/
.chflex {
  display: flex;
}

@media screen and (max-width: 750px) {
  .chflex {
    display: initial;
  }
}
/*ここまで*/
/*20250107追加*/
.yusen_box {
  position: relative;
  margin: 2em auto;
  padding: 1.2em;
  background-color: #fff;
  border: 2px solid #ff00ff;
  width: 90%;
}

.yusen_title {
  position: absolute;
  padding: 0 1em;
  left: -5px;
  top: -15px;
  font-weight: bold;
  background-color: #ff00ff;
  color: #fff;
  border-radius: 5px;
}

.parking_box {
  position: relative;
  margin: 2em auto;
  padding: 1.2em;
  background-color: #fff;
  border: 2px solid #ff00ff;
  width: 90%;
}
@media screen and (max-width: 540px) {
  .parking_box {
    font-size: 18px;
    width: 100%;
    padding: 0.3rem 0.8rem;
  }
}

.parking_title {
  position: absolute;
  display: inline-block;
  top: -3rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 1rem;
  background-color: #ff00ff;
  color: #fff;
  font-size: 1.6em;
  max-width: 600px;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 540px) {
  .parking_title {
    font-size: 18px;
    width: 90%;
    padding: 0.3rem 0.8rem;
    top: -3.5rem;
  }
}

.parking_text {
  margin: 30px 20px;
}
@media screen and (max-width: 540px) {
  .parking_text {
    margin: 25px 10px;
  }
}

.parking_box-n {
  position: relative;
  margin: 2em auto;
  padding: 1.2em;
  background-color: #fff;
  border: 2px solid #001f4d;
  width: 90%;
}
@media screen and (max-width: 540px) {
  .parking_box-n {
    font-size: 18px;
    width: 100%;
    padding: 0.3rem 0.8rem;
  }
}

.parking_title-n {
  position: absolute;
  display: inline-block;
  top: -3rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 1rem;
  background-color: #001f4d;
  color: #fff;
  font-size: 1.6em;
  max-width: 600px;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 540px) {
  .parking_title-n {
    font-size: 18px;
    width: 90%;
    padding: 0.3rem 0.8rem;
    top: -2rem;
  }
}

.parking_text-n {
  margin: 30px 20px;
}
@media screen and (max-width: 540px) {
  .parking_text-n {
    margin: 25px 10px;
  }
}

/*20250107追加　ここまで*/
/*20250210追加　ここから*/
.img-w35per {
  margin: 0 auto;
  width: 35%;
}
@media screen and (max-width: 540px) {
  .img-w35per {
    width: 100%;
  }
}

/*20250210追加　ここまで*/
/*20250218追加　ここから*/
.d-table {
  clear: both;
  display: table;
  padding-bottom: 1em;
}

.fleft44 {
  float: left;
  width: 44%;
}
@media screen and (max-width: 540px) {
  .fleft44 {
    width: 100%;
  }
}

.fright44 {
  float: right;
  width: 44%;
}
@media screen and (max-width: 540px) {
  .fright44 {
    width: 100%;
    margin-top: 30px;
  }
}

/*20250218追加　ここまで*/
/* 20250219ここから */
.arrow-mid_btn3_wrap .boxlunch_arrow-mid_btn {
  margin-bottom: 20px;
  width: 100%;
  margin-left: 5px;
  margin-right: 5px;
}

.boxlunch_arrow-mid_btn a {
  display: block;
  padding: 15px 0;
  border: 1px solid #c9a063;
  font-size: 16px;
  background-image: url(../img/top/arrow01.png);
  background-position: left 16px center;
  background-repeat: no-repeat;
  text-align: center;
  background-color: #c9a063;
  color: #fff;
}

.boxlunch_arrow-mid_btn a:hover {
  opacity: 0.6;
  transition: opacity 0.2s;
  text-decoration: none;
}

.btn_pink a {
  background-color: #bb1250;
  color: #fff;
  border: 1px solid #bb1250;
}

.boxlunch_box_pink {
  background-color: #fbe3d6;
  padding: 20px;
  margin: 3em 0 2em;
}

.boxlunch_box_pink_column2_container {
  display: flex;
  padding: 20px;
}
@media screen and (max-width: 540px) {
  .boxlunch_box_pink_column2_container {
    flex-direction: column;
  }
}

.boxlunch_box_pink_text {
  max-width: 330px;
}
@media screen and (max-width: 540px) {
  .boxlunch_box_pink_text {
    width: 100%;
  }
}

@media screen and (max-width: 540px) {
  .boxlunch_box_pink_text a {
    margin: 0 auto;
  }
}

@media screen and (max-width: 540px) {
  .boxlunch_box_pink_image {
    width: 100%;
  }
}

.boxlunch_box_pink_image {
  padding-left: 80px;
  flex: 1;
  min-width: 300px;
}

.boxlunch_list_container {
  display: flex; /* 横並びにする */
  justify-content: start;
  flex-flow: row wrap;
}
@media screen and (max-width: 540px) {
  .boxlunch_list_container {
    flex-direction: column; /* list-container全体を縦並びにする */
    align-items: center; /* 中央揃え */
  }
}

.sandwich-container {
  justify-content: safe center;
}

.boxlunch_list {
  list-style-type: none;
  padding: 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column; /* 縦並びにする */
  width: 33.3333333333%;
}
@media screen and (max-width: 1270px) {
  .boxlunch_list {
    width: 50%;
  }
}
@media screen and (max-width: 540px) {
  .boxlunch_list {
    width: 100%; /* 各リストが横幅いっぱいに広がる */
  }
}

.boxlunch_list li {
  display: flex;
  align-items: flex-start; /* 各項目の先頭を揃える */
}
.boxlunch_list li:nth-of-type(1) {
  height: 150px;
}
.boxlunch_list li:nth-of-type(3) {
  height: 65px;
}
.boxlunch_list li:nth-of-type(4) {
  height: 85px;
}
@media screen and (max-width: 540px) {
  .boxlunch_list li {
    flex-direction: row; /* 各項目を横並びにする */
    justify-content: flex-start; /* 項目を左寄せ */
  }
}

.sandwich-container .sandwich_list li:nth-of-type(2) {
  height: 110px;
}
.sandwich-container .sandwich_list li:nth-of-type(4) {
  height: auto;
}
.sandwich-container .sandwich_list li:nth-of-type(5) {
  flex-flow: column;
}
.sandwich-container .sandwich_list li:nth-of-type(5) p {
  font-size: 14px;
  height: 65px;
  margin-bottom: 0;
}
.sandwich-container a.arrow {
  margin: 0;
  margin-top: 5px;
}

.boxlunch_list li img {
  width: 80%;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  max-height: 150px;
}
@media screen and (max-width: 540px) {
  .boxlunch_list li img {
    width: 60%;
  }
}

.boxlunch_list li a {
  width: 100%;
  box-sizing: border-box;
}

.boxlunch_list .sandwich {
  width: 50%;
}

.boxlunch_list h3 {
  width: 100%;
  margin: 0;
}

.boxlunch_list .sandwich .tate {
  flex-direction: column;
}

/* 20250219ここまで */
/* 20250225ここから */
.arrow-big_btn a.pdf-icon-big::after {
  content: "\f1c1";
  display: inline-block;
  font: normal normal normal 18px/1 FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-left: 5px;
}

/* 20250225ここまで */
/*20250227ここから*/
.table-title_n {
  background-color: #001f4d;
  color: white;
  font-size: 17px;
  padding: 10px;
  width: 48%;
  text-align: center;
}
@media screen and (max-width: 540px) {
  .table-title_n {
    width: 100%;
    font-size: 15px;
  }
}

.table-title_p {
  background-color: #bb1250;
  color: white;
  font-size: 17px;
  padding: 10px;
  width: 48%;
  text-align: center;
}
@media screen and (max-width: 540px) {
  .table-title_p {
    width: 100%;
    font-size: 15px;
  }
}

/*20250227ここまで*/
/*20250307ここから ケータリングページのランチ用*/
.kicc-Page__Main .column3-inner .column3-item-2.w70pct {
  width: 70%;
}

/*20250307ここまで*/
/*20250312ここから ドリンク・軽食ページ用*/
.fairtrade-p {
  float: left;
}

.fairtrade-img {
  float: right;
  width: 80px;
}

/*20250312ここまで*/
/*20250407ここから*/
.l-style-i li {
  list-style: initial;
}

/*20250407ここまで*/
/*20250408ここから*/
.taBold {
  font-weight: bold;
}

.taRed {
  color: red;
}

/*20250408ここまで*/
/*20250415ここから ICC Kyoto Catering Service用*/
.text-logo-magenta {
  color: #bb1250;
}

.text-1_4em {
  font-size: 1.4em;
}

/*20250415ここまで*/
/*20250418ここから*/
.boxlunch_box_pink p {
  padding-left: 20px;
}

.boxlunch_box_pink_image.boxlunch_box_pink_image-en {
  padding-left: 90px;
}

.boxlunch_box_pink_image.boxlunch_box_pink_image-en img {
  width: 350px;
}

.arrow-mid_btn3_wrap .boxlunch_arrow-mid_btn.boxlunch_arrow-mid_btn-en {
  width: 360px;
}

.sandwich-container.sandwich-container-en .sandwich_list li:nth-of-type(2) {
  height: 90px;
}

.sandwich-container.sandwich-container-en .sandwich_list li:nth-of-type(3) {
  height: 90px;
}

.sandwich-container.sandwich-container-en .sandwich_list li:nth-of-type(4) {
  height: auto;
}

.sandwich-container.sandwich-container-en .sandwich_list li:nth-of-type(5) {
  flex-flow: column;
}

.sandwich-container.sandwich-container-en .sandwich_list li:nth-of-type(5) p {
  font-size: 14px;
  height: 65px;
  margin-bottom: 0;
}

@media screen and (max-width: 600px) {
  .sandwich-container .beverages-and-refreshments .fleft44, .sandwich-container .beverages-and-refreshments .fright44 {
    width: 100%;
  }
}

.sandwich-container.beverages-and-refreshments li:nth-of-type(2) {
  height: 140px;
}

.sandwich-container.beverages-and-refreshments li:nth-of-type(3) {
  height: 90px;
}

.sandwich-container.beverages-and-refreshments li:nth-of-type(4) {
  height: 150px;
}

.sandwich-container.beverages-and-refreshments h3 {
  margin-bottom: 15px;
}

h5.h5_buffetlunch {
  font-style: 1.3em;
  text-align: center;
  width: 100%;
  margin: 20px auto 0;
}

p.text_buffetlunch {
  margin: 0;
}

.text_buffetlunch p {
  margin-bottom: 0;
}

/*20250418ここまで*/
/*20250423ここから*/
.parking-info {
  display: inline-block;
}
@media screen and (max-width: 540px) {
  .parking-info {
    width: 100%;
  }
}

.parking-calendar_btn {
  width: 250px;
  float: right;
  margin: 0 40px 20px 0;
}
@media screen and (max-width: 790px) {
  .parking-calendar_btn {
    float: none;
    margin: 0 auto;
  }
}
@media screen and (max-width: 540px) {
  .parking-calendar_btn {
    width: 100%;
  }
}

.parking-calendar_btn a {
  display: block;
  padding: 15px 0;
  border: 1px solid #5ABAB7;
  font-size: 20px;
  background-image: url(../img/top/arrow01.png);
  background-position: left 16px center;
  background-repeat: no-repeat;
  text-align: center;
  background-color: #5ABAB7;
  color: #fff;
}

.parking-calendar_btn a:hover {
  text-decoration: none;
}

/*20250423ここまで*/
/*20250512ここから*/
.pamph_layout_2colum {
  display: flex;
  flex-flow: row wrap;
  gap: 30px;
}
.pamph_layout_2colum .pamph_item_2colum-l {
  width: 55%;
  margin-right: 3%;
  margin-left: 2%;
}
@media screen and (max-width: 540px) {
  .pamph_layout_2colum .pamph_item_2colum-l {
    width: 100%;
    margin: initial;
  }
}
.pamph_layout_2colum .pamph_item_2colum-l .pamph_pdf_2colum-l {
  position: relative;
}
.pamph_layout_2colum .pamph_item_2colum-l .pamph_pdf_2colum-l::before {
  content: "\f1c1";
  display: inline-block;
  font: normal normal normal 40px/1 FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-left: 5px;
  color: #000;
  position: absolute;
  bottom: 19px;
  right: 7px;
  z-index: 1;
}
.pamph_layout_2colum .pamph_item_2colum-l .pamph_search_2colum-l {
  position: relative;
}
.pamph_layout_2colum .pamph_item_2colum-l .pamph_search_2colum-l::before {
  content: "";
  background-image: url(../img/icon_search.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 50px;
  height: 50px;
  position: absolute;
  bottom: 15px;
  right: 12px;
  z-index: 1;
}
.pamph_layout_2colum .pamph_item_2colum-l p {
  margin: 0;
}
.pamph_layout_2colum .pamph_item_2colum-l img {
  border: 0.5px solid #ddd;
}
.pamph_layout_2colum .pamph_item_2colum-r {
  width: 240px;
}
@media screen and (max-width: 540px) {
  .pamph_layout_2colum .pamph_item_2colum-r {
    width: 100%;
  }
}
.pamph_layout_2colum .pamph_item_2colum-r .pamph_pdf_2colum-r {
  position: relative;
}
.pamph_layout_2colum .pamph_item_2colum-r .pamph_pdf_2colum-r::before {
  content: "\f1c1";
  display: inline-block;
  font: normal normal normal 40px/1 FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-left: 5px;
  color: #000;
  position: absolute;
  bottom: 19px;
  right: 7px;
  z-index: 1;
}
.pamph_layout_2colum .pamph_item_2colum-r .pamph_search_2colum-r {
  position: relative;
}
.pamph_layout_2colum .pamph_item_2colum-r .pamph_search_2colum-r::before {
  content: "";
  background-image: url(../img/icon_search.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 50px;
  height: 50px;
  position: absolute;
  bottom: 15px;
  right: 12px;
  z-index: 1;
}
.pamph_layout_2colum .pamph_item_2colum-r p {
  margin: 0;
}
.pamph_layout_2colum .pamph_item_2colum-r img {
  border: 0.5px solid #ddd;
}

/*20250512ここまで*/
/*採用情報ページ*/
.recruitC_select {
  line-height: 1.8em;
}

.recruitC_selectbox {
  padding: 1em 2em;
  border: 2px solid #959595;
  max-width: 500px;
}

.recruitC_list01 {
  background-color: #ad8652 !important;
  color: white;
  font-size: 18px;
}

.recruitC_list02 {
  background-color: #959595 !important;
  color: white;
}

/*採用情報ページ　ここまで*/
/*文字列を中央寄せ・左揃え*/
.taCenter-l {
  text-align: left;
  display: inline-block;
}

/*文字列を中央寄せ・左揃え　ここまで*/
/*「えらべる」ケータリングメッセージ*/
.yc-box {
  margin-bottom: 1em;
  background-color: #bb8e6b;
  color: #ffffff;
  padding: 1rem;
  text-align: center;
}

.yc-box p {
  margin-bottom: 0px;
}

/*「えらべる」ケータリングメッセージ　ここまで*/
/*「えらべる」ケータリング見出し*/
.yc-midashi_s {
  color: #bb8e6b;
  font-size: 16px;
  font-family: serif;
  font-weight: bold;
}

.yc-midashi {
  padding: 0.5em;
  color: #bb8e6b;
  background: #000000;
  margin-bottom: 1em;
  font-size: 18px;
  text-align: center;
  font-family: serif;
  font-weight: bold;
}

/*「えらべる」ケータリング見出し　ここまで*/
/*余白*/
.pl-1em {
  padding-left: 1em !important;
}

.mb-1em {
  margin-bottom: 1em !important;
}

/*テキストの水平方向の揃え位置*/
.taCenter {
  text-align: center;
}

.taRight {
  text-align: right;
}

/* 20250826 Free Public Wifi table */
.table-col-30-35-35 th:nth-child(1) {
  width: 30%;
}

.table-col-30-35-35 td:nth-child(2),
.table-col-30-35-35 td:nth-child(3) {
  width: 35%;
}

.mb0 {
  margin-bottom: 0px !important;
}

/* 20260113 ここから */
/* 複数行テキストを「塊として中央配置」し、行頭は左揃えにする */
.text-block-center {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  text-align: left;
  word-break: break-word;
}/*# sourceMappingURL=re_style.css.map */