html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-size: 1.8rem;
  line-height: 1.75;
  line-break: strict;
  word-wrap: break-word;
  overflow-wrap: break-word;
  letter-spacing: 0.2rem;
  font-feature-settings: "palt";
  position: relative;
  text-align: justify;
}
@media screen and (max-width: 840px) {
  body {
    font-size: 1.5rem;
    letter-spacing: 0.1rem;
  }
}
body.open {
  overflow: hidden;
}

img {
  width: 100%;
  height: auto;
}

p {
  text-align: justify;
  position: relative;
}

.inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  width: 95%;
}

.detail {
  font-size: 1.2rem;
  letter-spacing: 0;
}

main {
  overflow-x: hidden;
}

/*-------------------------*/
body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  color: #000;
}

.fix-back {
  position: fixed;
  z-index: -1;
  background-image: url(images/back.webp);
  background-size: 6%;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.menu {
  z-index: 100;
  transition: all ease 0.3s;
  position: fixed;
  opacity: 0;
  transform: translateX(100%);
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  background-color: rgba(66, 129, 150, 0.8);
  padding: 30px;
  overflow: scroll;
}
.menu.open {
  opacity: 1;
  transform: translateX(0);
}
.menu .menu-wrap {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-flow: column;
}
.menu .menu-wrap a {
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-family: "MFW-MNewsMPro-Light";
  letter-spacing: 0;
  font-size: 2rem;
  transition: all ease 0.3s;
}
.menu .menu-wrap a:hover {
  filter: drop-shadow(6px 6px 6px #fff);
}
.menu .maki {
  width: 70%;
  max-width: 1000px;
  margin-bottom: 100px;
}
@media screen and (max-width: 540px) {
  .menu .maki {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .menu {
    display: flex;
    flex-flow: row wrap;
  }
  .menu .maki {
    width: 50%;
  }
  .menu .menu-wrap {
    width: 50%;
    justify-content: space-evenly;
    padding-left: 120px;
  }
  .menu .menu-wrap a {
    font-size: 3rem;
  }
}

.hamburger {
  cursor: pointer;
  width: 50px;
  aspect-ratio: 1/1;
  flex-flow: column;
  justify-content: center;
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 100;
  padding: 6px;
  transition: all ease 0.3s;
  gap: 7px;
  display: flex;
  transform-origin: center;
}
.hamburger span {
  width: 100%;
  height: 3px;
  transition: all ease 0.3s;
}
.hamburger span:nth-of-type(1) {
  background-color: #428196;
}
.hamburger span:nth-of-type(2) {
  background-color: #454545;
}
.hamburger span:nth-of-type(3) {
  background-color: #428196;
}
.hamburger:hover {
  gap: 9px;
}
.hamburger.open {
  background: transparent;
  border: none;
}
.hamburger.open:hover {
  gap: 7px;
}
.hamburger.open span:nth-of-type(1) {
  background-color: #fff;
  transform: translateY(5px) rotate(225deg);
}
.hamburger.open span:nth-of-type(2) {
  display: none;
}
.hamburger.open span:nth-of-type(3) {
  background-color: #fff;
  transform: translateY(-5px) rotate(135deg);
}

dl {
  display: flex;
  flex-flow: row wrap;
}
dl dt,
dl dd {
  border-bottom: 1px solid #454545;
  padding: 20px 0;
  font-weight: normal;
}
dl dt:nth-last-of-type(1),
dl dd:nth-last-of-type(1) {
  border-bottom: none;
}
dl dt {
  font-size: 2rem;
  font-family: "MFW-MNewsMPro-Light";
  letter-spacing: 0;
  color: #428196;
  width: 130px;
  padding-right: 10px;
}
dl dd {
  width: calc(100% - 130px);
  line-height: 1.5;
  color: #000;
  font-size: 1.6rem;
}
@media screen and (max-width: 540px) {
  dl dt,
  dl dd {
    width: 100%;
  }
  dl dt {
    padding-bottom: 0;
    border-bottom: none;
  }
  dl dd {
    padding-left: 0;
  }
}

.map {
  max-width: 66.6666666667%;
  aspect-ratio: 16/9;
  margin-bottom: 30px;
}
.map p {
  margin-bottom: 20px;
}
.map iframe {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 540px) {
  .map {
    max-width: initial;
  }
}

@media screen and (max-width: 540px) {
  .pc {
    display: none;
  }
}

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

.detail {
  margin-top: 10px;
  line-height: 1.5;
  display: block;
  color: #428196;
}

#outline,
#faq,
#credit,
#contact {
  background-color: #fff;
}

#about h2,
#outline h2,
#faq h2,
#access h2 {
  width: 180px;
  margin-left: auto;
}
@media screen and (max-width: 540px) {
  #about h2,
  #outline h2,
  #faq h2,
  #access h2 {
    margin-left: initial;
    width: 100%;
  }
}
#about .inner,
#outline .inner,
#faq .inner,
#access .inner {
  display: flex;
  flex-flow: row wrap;
  max-width: initial;
  width: 100%;
}
#about .inner .left,
#outline .inner .left,
#faq .inner .left,
#access .inner .left {
  width: 25%;
  padding-right: 7.5rem;
  padding: 75px 0;
  border-right: 0.5px solid #112f50;
}
@media screen and (max-width: 540px) {
  #about .inner .left,
  #outline .inner .left,
  #faq .inner .left,
  #access .inner .left {
    padding: 35px 0;
    width: 100%;
    border-right: none;
  }
}
#about .inner .right,
#outline .inner .right,
#faq .inner .right,
#access .inner .right {
  flex: 1;
  padding: 75px 0;
}
@media screen and (max-width: 540px) {
  #about .inner .right,
  #outline .inner .right,
  #faq .inner .right,
  #access .inner .right {
    padding: 35px 0;
  }
}
@media screen and (max-width: 540px) {
  #about .inner,
  #outline .inner,
  #faq .inner,
  #access .inner {
    width: 95%;
  }
}

#about .left {
  position: relative;
}
#about .right .lead,
#about .right .txt {
  padding-left: 7.5rem;
  max-width: 66.6666666667%;
}
@media screen and (max-width: 540px) {
  #about .right .lead,
  #about .right .txt {
    padding-left: initial;
    max-width: initial;
  }
}
#about .border {
  border-bottom: 0.5px solid #112f50;
}
#about .lead {
  font-size: 2.6rem;
  font-family: "MFW-MNewsMPro-Light";
  letter-spacing: 0;
  color: #428196;
  padding-bottom: 4rem;
}
@media screen and (max-width: 540px) {
  #about .lead {
    font-size: 1.8rem;
    padding-bottom: 2rem;
  }
}
#about .txt {
  padding-top: 4rem;
}
@media screen and (max-width: 540px) {
  #about .txt {
    padding-top: 2rem;
  }
}
#about .il {
  width: 14rem;
  position: absolute;
  bottom: 10px;
  right: 50px;
}
@media screen and (max-width: 540px) {
  #about .il {
    width: 11rem;
    bottom: 10px;
    right: 10px;
  }
}

#outline .left {
  position: relative;
}
#outline .il {
  width: 29rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 540px) {
  #outline .il {
    right: -5%;
  }
}
#outline .inner .right dl {
  padding-left: 7.5rem;
  max-width: 66.6666666667%;
}
@media screen and (max-width: 540px) {
  #outline .inner .right dl {
    padding-left: initial;
    max-width: initial;
  }
}

h2 {
  font-family: "MFW-MNewsMPro-Light";
  letter-spacing: 0;
  font-size: 3rem;
  color: #454545;
  line-height: 1.5;
}
h2 span {
  color: #428196;
  font-size: 2.4rem;
  display: block;
  font-family: "minion-pro", serif;
  font-weight: 400;
  font-style: normal;
}

#guest {
  background-color: #1f1f1f;
}
#guest .inner {
  border-left: 0.5px solid #fff;
  border-right: 0.5px solid #fff;
  padding: 75px 0 120px;
  position: relative;
  max-width: 860px;
}
#guest h2 {
  text-align: center;
  width: 100%;
  color: #fff;
}
#guest .txt {
  color: #fff;
  padding: 72px 50px;
}
#guest .guest-wrap {
  background-color: #fff;
  padding: 48px 50px;
  font-size: 1.6rem;
  display: flex;
  flex-flow: row wrap;
  gap: 10px 25px;
  position: relative;
  align-items: start;
}
#guest .guest-wrap h3 {
  font-size: 3rem;
  font-family: "MFW-MNewsMPro-Light";
  letter-spacing: 0;
  width: 100%;
  order: 1;
}
@media screen and (max-width: 540px) {
  #guest .guest-wrap h3 {
    order: 1;
  }
}
#guest .guest-wrap .left {
  flex: 1;
  order: 3;
  order: 2;
}
@media screen and (max-width: 540px) {
  #guest .guest-wrap .left {
    font-size: 1.5rem;
  }
}
#guest .guest-wrap .right {
  width: 360px;
  height: auto;
  background-color: #ddd;
  order: 3;
}
@media screen and (max-width: 540px) {
  #guest .guest-wrap .right {
    order: 2;
    width: 100%;
  }
}
#guest .guest-wrap::before, #guest .guest-wrap::after {
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  width: 4%;
  aspect-ratio: 1;
}
#guest .guest-wrap::after {
  clip-path: polygon(0 0, 100% 0, 0 100%);
  background-color: #428196;
}
#guest .guest-wrap::before {
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  background-color: #1f1f1f;
}
@media screen and (max-width: 540px) {
  #guest .guest-wrap {
    padding: 25px 20px;
  }
}
#guest .il {
  width: 174px;
  position: absolute;
  left: -95px;
  bottom: 20px;
}
@media screen and (max-width: 540px) {
  #guest .il {
    width: 154px;
    left: -25px;
  }
}

#program {
  padding: 75px 0;
}
#program h2 {
  text-align: center;
  width: 100%;
}
#program .program-wrap {
  display: flex;
  flex-flow: row wrap;
  border-left: 0.5px solid #112f50;
  border-right: 0.5px solid #112f50;
  margin: 30px 0;
  position: relative;
}
#program .program-wrap .left {
  background-color: #fff;
  width: 50%;
  border-right: 0.5px solid #112f50;
}
@media screen and (max-width: 540px) {
  #program .program-wrap .left {
    width: 100%;
  }
}
#program .program-wrap .right {
  background-color: #fff;
  flex: 1;
}
#program .program-wrap .right h3,
#program .program-wrap .right .date {
  color: #428196;
}
#program .program-wrap article {
  padding: 30px;
  border-bottom: 0.5px solid #112f50;
}
#program .program-wrap article:nth-last-of-type(1) {
  border-bottom: none;
}
#program .program-wrap .date {
  font-family: "minion-pro", serif;
  font-weight: 400;
  font-style: normal;
  border-bottom: 0.5px solid #112f50;
  font-size: 4.5rem;
  color: #112f50;
  text-align: center;
}
#program .program-wrap .date span {
  font-size: 3.5rem;
}
#program .program-wrap h3 {
  font-size: 3rem;
  font-family: "MFW-MNewsMPro-Light";
  letter-spacing: 0;
  color: #112f50;
  line-height: 1.5;
  margin-bottom: 15px;
}
#program .program-wrap h3 span {
  display: block;
}
#program .program-wrap figure {
  margin-top: 15px;
}
#program .program-wrap .il {
  position: absolute;
  right: -30px;
  bottom: -35px;
  width: 146px;
}
@media screen and (max-width: 840px) {
  #program .program-wrap .il {
    right: 20px;
  }
}
@media screen and (max-width: 540px) {
  #program .program-wrap .il {
    bottom: -50px;
    width: 120px;
  }
}
@media screen and (max-width: 540px) {
  #program .program-wrap {
    gap: 20px;
  }
}
@media screen and (max-width: 540px) {
  #program {
    padding-bottom: 10px;
  }
}

#note {
  margin-top: 70px;
}
#note .inner {
  padding: 50px 0;
  background-image: repeating-linear-gradient(90deg, #112f56, #112f56 8px, transparent 8px, transparent 14px);
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 100% 1px;
  display: flex;
  flex-flow: row wrap;
}
#note .inner .left {
  width: 247px;
}
@media screen and (max-width: 540px) {
  #note .inner .left {
    width: 100%;
  }
}
#note .inner .left h2 {
  text-align: left;
}
#note .inner .right {
  flex: 1;
}
#note .inner .right .bold {
  font-weight: bold;
}
@media screen and (max-width: 540px) {
  #note .inner {
    gap: 20px;
  }
}

#accommodation {
  margin-top: 70px;
}
#accommodation .inner {
  padding: 50px 0;
  background-image: repeating-linear-gradient(90deg, #112f56, #112f56 8px, transparent 8px, transparent 14px);
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 100% 1px;
  display: flex;
  flex-flow: row wrap;
}
#accommodation .inner .left {
  width: 247px;
}
@media screen and (max-width: 540px) {
  #accommodation .inner .left {
    width: 100%;
  }
}
#accommodation .inner .left h2 {
  text-align: left;
}
#accommodation .inner .right {
  flex: 1;
}
@media screen and (max-width: 540px) {
  #accommodation .inner {
    gap: 20px;
  }
}

#faq .inner .right,
#access .inner .right {
  padding-left: 7.5rem;
}
@media screen and (max-width: 540px) {
  #faq .inner .right,
  #access .inner .right {
    padding-left: initial;
    padding-top: 0;
  }
}

.q_head {
  max-width: 66.6666666667%;
  color: #428196;
  font-family: "MFW-MNewsMPro-Light";
  letter-spacing: 0;
}
@media screen and (max-width: 540px) {
  .q_head {
    max-width: initial;
  }
}

.q_answer {
  max-width: 66.6666666667%;
  font-size: 1.6rem;
  padding-left: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid #428196;
  margin-bottom: 20px;
}
@media screen and (max-width: 540px) {
  .q_answer {
    max-width: initial;
  }
  .q_answer:nth-last-of-type(1) {
    border-bottom: none;
  }
}

#access h3 {
  font-size: 2.5rem;
  font-family: "MFW-MNewsMPro-Light";
  letter-spacing: 0;
  margin-bottom: 20px;
}
#access .right {
  position: relative;
}
#access .right .il {
  width: 217px;
  position: absolute;
  right: -30px;
  bottom: 20px;
}
@media screen and (max-width: 540px) {
  #access .right .il {
    width: 177px;
    right: -20px;
    bottom: -33px;
  }
}

#credit {
  padding: 75px 0;
}
#credit h2 {
  text-align: center;
  width: 100%;
}
#credit h3 {
  font-size: 2rem;
  text-align: center;
  color: #454545;
}
#credit .credit-wrap {
  margin: 60px auto;
  display: flex;
  flex-flow: column;
  gap: 60px;
  align-items: center;
}
#credit .item figure {
  height: 46px;
  margin-top: 20px;
}
#credit .item figure img {
  height: 100%;
  width: auto;
}

#contact {
  padding: 75px 0;
}
#contact h2 {
  text-align: center;
  width: 100%;
}
#contact .txt {
  text-align: center;
  margin: 60px auto;
}

.fix_btn {
  width: 156px;
  aspect-ratio: 1/1;
  background-color: #454545;
  display: block;
  clip-path: polygon(100% 0, 100% 80%, 80% 100%, 0 100%, 0 0);
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding-top: 13px;
}
.fix_btn span {
  display: block;
  line-height: 1;
  letter-spacing: 0;
}
.fix_btn span:nth-of-type(1) {
  color: #fff;
  font-size: 3rem;
  font-family: "MFW-MNewsMPro-Light";
  letter-spacing: 0;
}
.fix_btn span:nth-of-type(2) {
  color: #428196;
  font-size: 2.4rem;
  font-family: "minion-pro", serif;
  font-weight: 400;
  font-style: normal;
}
.fix_btn span:nth-of-type(3) {
  width: 31px;
  aspect-ratio: 1/1;
  border-radius: 50px;
  background-color: #428196;
}
.fix_btn::after {
  content: "";
  clip-path: polygon(0 0, 100% 0, 0 100%);
  background-color: #428196;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  aspect-ratio: 1/1;
}
.fix_btn .arrow {
  margin-top: 15px;
  position: relative;
}
.fix_btn .arrow::after {
  content: "";
  background-image: url(images/arrow.webp);
  width: 8.5px;
  aspect-ratio: 1/2;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 540px) {
  .fix_btn {
    width: 100%;
    bottom: 0;
    right: 0;
    flex-flow: row;
    aspect-ratio: initial;
    padding: 10px;
    clip-path: polygon(100% 0, 100% 40%, 92% 100%, 0 100%, 0 0);
  }
  .fix_btn .arrow {
    margin-top: 0;
  }
}

.form {
  max-width: 1000px;
  margin: 0 auto;
}
.form .address-out {
  width: 160px !important;
}
.form input,
.form textarea {
  background-color: #fff;
  font-size: 18px;
  border-radius: 10px;
  padding: 10px 15px;
  border: 1px solid #ddd;
}
.form dt {
  width: 300px;
}
.form dd {
  width: calc(100% - 300px);
}
@media screen and (max-width: 540px) {
  .form .mwform-radio-field {
    display: block;
    margin-left: 0 !important;
    margin-bottom: 5px !important;
  }
  .form dt,
  .form dd {
    width: 100%;
  }
  .form input[type=text],
  .form input[type=email],
  .form input[type=url],
  .form textarea {
    width: 100%;
  }
}

.go {
  text-align: center;
}
.go input {
  background-color: #428196;
  color: #fff;
}
.go button[type=submit] {
  border-radius: 10px;
  padding: 10px 15px;
  border: 1px solid #ddd;
  background-color: #428196;
  color: #fff;
}

.page section {
  padding: 20px 0;
}
.page section .inner {
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  padding: 30px;
  border-radius: 30px;
  margin-top: 50px;
}
.page h2 {
  text-align: center;
  width: 100%;
}
.page #mv figure {
  max-width: 500px;
  margin: 10px auto;
  width: 95%;
}/*# sourceMappingURL=style.css.map */