@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  vertical-align: top;
  width: 100%;
  height: auto;
}
img.mapen {
  width: 50%;
}
@media (max-width: 750px) {
  img.mapen {
    width: 100%;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  line-height: 30px;
  font-family: "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  background-color: #F2ECD9;
  color: var(--gray);
  scroll-behavior: smooth;
  position: relative;
  letter-spacing: 0.1em;
  font-weight: 600;
}
@media (max-width: 750px) {
  body {
    font-size: 15px;
    line-height: 26px;
  }
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #A71C4B;
  transition: all 0.3s;
}

a:active,
a:visited {
  color: #A71C4B;
  outline: none;
  text-decoration: none;
}

a.cream:active,
a.cream:visited {
  color: #A71C4B;
}

a:hover {
  opacity: 0.7;
}

.flex {
  display: flex;
  gap: 24px;
}
.flex.col {
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 750px) {
  .flex {
    flex-direction: column;
  }
}

.sp {
  display: none !important;
}

.pc {
  display: block !important;
}

@media (max-width: 750px) {
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
}
.red {
  color: #41000A;
}

.pink {
  color: #A71C4B;
}

.small {
  font-size: 14px;
  line-height: 20px;
}

.big {
  font-size: 20px;
}

.light {
  font-weight: 300;
}

.alignright {
  text-align: right;
}

.underline {
  padding-bottom: 2px;
  line-height: 18px;
  border-bottom: 1px solid #000;
  display: inline-block;
}

.top {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

section {
  width: 100%;
  max-width: 1040px;
  padding: 24px 0;
  margin: 0 auto;
}
@media (max-width: 750px) {
  section {
    padding: 16px;
  }
}

.cap {
  font-size: 12px;
  line-height: 20px;
}

.contentwrapper {
  background-color: #fff;
  margin: 0 auto;
  width: 100%;
  padding: 24px;
  border: 2px #A71C4B solid;
}
.contentwrapper.gr {
  border: 2px #26604F solid;
}
@media (max-width: 750px) {
  .contentwrapper {
    padding: 24px 16px;
  }
}
.contentwrapper.with_tab {
  padding: 0;
}

.tablist {
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  min-height: 70px;
  width: 100%;
  background-color: #A71C4B;
}
.tablist.gr {
  background-color: #26604F;
}
@media (max-width: 750px) {
  .tablist {
    flex-wrap: wrap;
    padding: 1rem 0;
  }
}
.tablist a {
  cursor: pointer;
  color: #fff;
  padding: 0 24px;
  letter-spacing: 0.25em;
}
.tablist a:hover {
  opacity: 1;
  color: #41000A;
}
.tablist a.current {
  color: #41000A;
  pointer-events: none;
}
.tablist a.disable {
  pointer-events: none;
  opacity: 0.5;
}
@media (max-width: 400px) {
  .tablist a {
    padding: 0 16px;
  }
}

.cont {
  padding: 24px 0;
}
@media (max-width: 750px) {
  .cont {
    padding: 0;
  }
}

.tabcont {
  padding: 24px;
  display: none;
}
.tabcont.show {
  display: block;
}
@media (max-width: 750px) {
  .tabcont {
    padding: 0;
  }
}

header {
  width: 100%;
  height: 120px;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
}
@media (max-width: 1170px) {
  header {
    height: 70px;
  }
}
header #headerwrap {
  width: 100%;
  height: 120px;
  background-color: #41000A;
  color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1170px) {
  header #headerwrap {
    height: 70px;
    padding: 0 16px;
  }
}
header #headerwrap #toplogo {
  display: flex;
  align-items: center;
  padding-left: 24px;
  transition: all 0.3s;
}
@media (max-width: 1170px) {
  header #headerwrap #toplogo {
    flex: 1 1 auto;
    padding-left: 0;
  }
}
header #headerwrap #toplogo img {
  width: 130px;
  height: auto;
}
header #headerwrap #toplogo:hover {
  opacity: 0.7;
}
header #headerwrap nav {
  padding: 0 24px;
}
@media (max-width: 1170px) {
  header #headerwrap nav {
    padding: 0;
  }
}
header #headerwrap nav ul {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  justify-content: left;
  height: 100%;
}
@media (max-width: 1170px) {
  header #headerwrap nav ul {
    flex-direction: column;
    display: none;
  }
  header #headerwrap nav ul.open {
    display: flex;
    position: absolute;
    background-color: #41000A;
    width: 100%;
    height: calc(100vh - 70px);
    top: 70px;
    left: 0;
    gap: 0;
    justify-content: center;
  }
  header #headerwrap nav ul.open li {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    position: relative;
    transition: all 0.3s;
  }
  header #headerwrap nav ul.open li:hover {
    opacity: 0.7;
  }
  header #headerwrap nav ul.open li .listbtn {
    background-color: #A71C4B;
    color: #fff;
    border-radius: 1000px;
    width: 50px;
    height: 50px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 50px;
    position: absolute;
    right: 48px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    pointer-events: none;
  }
  header #headerwrap nav ul.open li .listbtn.gr {
    background-color: #26604F;
  }
  header #headerwrap nav ul.open li .listbtn span {
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: rotate(315deg);
    width: 16px;
    height: 16px;
    margin-right: 8px;
  }
  header #headerwrap nav ul.open li a {
    padding: 0 48px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: 50px;
    width: 100%;
    font-size: 20px;
    height: calc((100vh - 110px) / 8);
    padding-right: 100px;
    text-align: left;
  }
  header #headerwrap nav ul.open li a:hover {
    color: #fff;
    opacity: 1;
  }
  header #headerwrap nav ul.open li a span {
    font-size: 14px;
  }
}
@media (max-width: 1170px) and (max-width: 400px) {
  header #headerwrap nav ul.open li a span {
    font-size: 12px;
  }
}
@media (max-width: 1170px) and (max-width: 400px) {
  header #headerwrap nav ul.open li a {
    font-size: 1rem;
  }
}
header #headerwrap nav ul li.disable {
  pointer-events: none;
  opacity: 0.5;
}
header #headerwrap nav ul li .listbtn {
  display: none;
}
header #headerwrap nav ul li a {
  word-break: auto-phrase;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
header #headerwrap nav ul li a span {
  font-size: 10px;
  display: block;
  line-height: 1rem;
}
header #headerwrap nav ul li a.current {
  color: #26604F;
}
header #headerwrap nav ul li a:hover {
  color: #26604F;
}
header #headerwrap .ticketbtn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #26604F;
  width: 120px;
  height: 154px;
  transition: all 0.5s;
  color: #41000A;
  position: absolute;
  top: 0;
  margin-top: -10px;
  right: 0;
}
header #headerwrap .ticketbtn:hover {
  background-color: #297c63;
  margin: 0;
}
header #headerwrap .ticketbtn:hover a {
  padding: 0;
}
header #headerwrap .ticketbtn a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding-top: 10px;
}
header #headerwrap .ticketbtn a img {
  width: 30px;
  height: 30px;
}
header #headerwrap .ticketbtn a span {
  color: #41000A;
  font-size: 14px;
  text-decoration: none;
}
@media (max-width: 1170px) {
  header #headerwrap .ticketbtn {
    position: fixed;
    top: 0;
    right: 70px;
    width: 80px;
    height: 100px;
    padding-top: 0;
    margin-top: 0;
    transition: all 0.3s;
    margin-top: -10px;
  }
  header #headerwrap .ticketbtn a {
    padding-top: 10px;
  }
  header #headerwrap .ticketbtn a img {
    width: 30px;
    height: auto;
  }
  header #headerwrap .ticketbtn a span {
    font-size: 12px;
  }
  header #headerwrap .ticketbtn a:hover {
    opacity: 0.7;
    margin-top: 0;
  }
}
@media (max-width: 400px) {
  header #headerwrap .ticketbtn {
    width: 58px;
    height: 100px;
  }
  header #headerwrap .ticketbtn a img {
    width: 30px;
  }
  header #headerwrap .ticketbtn a span {
    font-size: 9px;
  }
}
header #headerwrap #menuicon {
  display: none;
}
@media (max-width: 1170px) {
  header #headerwrap #menuicon {
    display: block;
    position: relative;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    cursor: pointer;
    transition: all 0.3s;
  }
  header #headerwrap #menuicon.open span {
    transition: 0.3s ease all;
  }
  header #headerwrap #menuicon.open span:nth-child(1) {
    top: 17px;
    transform: rotate(45deg);
  }
  header #headerwrap #menuicon.open span:nth-child(2) {
    display: none;
  }
  header #headerwrap #menuicon.open span:nth-child(3) {
    top: 17px;
    transform: rotate(-45deg);
  }
  header #headerwrap #menuicon span {
    background-color: #fff;
    height: 1px;
    width: 23px;
    left: 8.5px;
    position: absolute;
  }
  header #headerwrap #menuicon span:nth-child(1) {
    top: 11px;
  }
  header #headerwrap #menuicon span:nth-child(2) {
    top: 18px;
  }
  header #headerwrap #menuicon span:nth-child(3) {
    top: 25px;
  }
}
header #headerwrap #menuicon:hover {
  opacity: 0.7;
}
header #headerwrap #snsicon {
  display: flex;
  align-items: center;
  padding: 0 24px;
  transition: all 0.3s;
  gap: 1rem;
  margin-right: 120px;
}
@media (max-width: 1170px) {
  header #headerwrap #snsicon {
    flex: 0 0 20px;
    margin-right: 90px;
  }
}
@media (max-width: 400px) {
  header #headerwrap #snsicon {
    margin-right: 60px;
  }
}
header #headerwrap #snsicon img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}

#page_top {
  width: 100%;
  height: 120px;
}
@media (max-width: 1170px) {
  #page_top {
    height: 70px;
  }
}

#go_top {
  position: fixed;
  width: 10px;
  bottom: 24px;
  right: 16px;
  z-index: 99;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  opacity: 0;
  transition: all 0.8s ease;
}
#go_top.is-at-bottom {
  bottom: 220px;
}
#go_top.is-at-bottom:hover {
  bottom: 240px;
}
@media (max-width: 780px) {
  #go_top.is-at-bottom {
    bottom: 180px;
  }
  #go_top.is-at-bottom:hover {
    bottom: 200px;
  }
}
#go_top::before {
  content: "";
  width: 2px;
  height: 80px;
  bottom: 250px;
  pointer-events: none;
  background-color: #41000A;
}
#go_top::after {
  content: "TOP";
  writing-mode: vertical-rl;
  display: inline-block;
  z-index: 100;
  color: #41000A;
  font-weight: 600;
  pointer-events: none;
}
#go_top a {
  width: 100%;
  display: inline-block;
  height: 100%;
}
#go_top:hover {
  bottom: 44px;
  opacity: 0.7;
}

footer {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 40px 24px;
  margin: 0 auto;
  background-color: #41000A;
}
footer a {
  line-height: 20px;
  color: #fff;
  margin-bottom: 24px;
}
footer a:visited {
  color: #fff;
}
footer .copyright {
  color: #fff;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  text-align: right;
  display: block;
  border-top: 1px solid #fff;
  line-height: 1rem;
  padding-top: 24px;
  font-weight: 300;
}
@media (max-width: 1170px) {
  footer {
    flex-direction: column;
  }
  footer .copyright {
    flex-direction: column;
  }
}
@media (max-width: 780px) {
  footer {
    gap: 0;
    padding: 24px;
  }
}

button {
  width: 260px;
  height: 56px;
  background-color: #A71C4B;
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  border: none;
  font-weight: 600;
  margin: 24px auto;
  transition: all 0.3s;
  position: relative;
}
@media (max-width: 750px) {
  button {
    width: 100%;
  }
}
button.line::after {
  content: "";
  height: 1px;
  background-color: #fff;
  width: 40px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: -20px;
  transition: all 0.3s;
}
button.line:hover::after {
  right: -30px;
}
button:hover {
  opacity: 0.7;
}
button.gr {
  background-color: #26604F;
}
button.maru {
  height: 36px;
  border-radius: 1000px;
  margin: 0 auto;
}
button.disabled {
  background-color: #D9d9d9;
  color: #fff;
  pointer-events: none;
}
button.disabled:hover {
  opacity: 1;
}
button img {
  width: 30px;
  height: auto;
}

.tabbuttons {
  display: flex;
  width: 100%;
  padding: 16px 0;
  gap: 24px 10px;
  align-items: center;
  justify-content: space-around;
}
@media (max-width: 900px) {
  .tabbuttons {
    flex-wrap: wrap;
  }
}
.tabbuttons .tabbutton {
  background-color: #D9d9d9;
  color: #000;
  height: 56px;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-align: center;
  min-width: 160px;
}
.tabbuttons .tabbutton.gr.current {
  background-color: #26604F;
  color: #fff;
}
.tabbuttons .tabbutton.gr:hover {
  background-color: #26604F;
  color: #fff;
}
.tabbuttons .tabbutton.current {
  background-color: #A71C4B;
  color: #fff;
}
.tabbuttons .tabbutton:hover {
  background-color: #A71C4B;
  color: #fff;
}
.tabbuttons .tabbutton.disable {
  pointer-events: none;
  color: #8f8f8f;
}
@media (max-width: 750px) {
  .tabbuttons .tabbutton {
    flex: 0 0 45%;
    margin-top: 16px;
  }
}

.moviewrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

h2 {
  color: #A71C4B;
  font-size: 35px;
  position: relative;
  display: block;
  margin: 1rem 0;
}
h2.gr {
  color: #26604F;
}
h2 span {
  margin-top: 1rem;
  display: block;
  font-size: 20px;
}
@media (max-width: 750px) {
  h2 span {
    font-size: 1rem;
    line-height: 24px;
    margin-top: 8px;
  }
}
@media (max-width: 750px) {
  h2 {
    font-size: 30px;
    line-height: 30px;
  }
}

#sub h2 {
  margin-top: 60px;
}
@media (max-width: 750px) {
  #sub h2 {
    font-size: 30px;
    line-height: 40px;
  }
  #sub h2 span {
    font-size: 15px;
    margin: 0;
    line-height: 20px;
    margin-top: 6px;
  }
}

h3 {
  color: #A71C4B;
  font-size: 20px;
  position: relative;
  margin: 48px auto 16px;
  line-height: 30px;
}
h3.gr {
  color: #26604F;
}
@media (max-width: 750px) {
  h3 {
    font-size: 18px;
  }
}

#sub h3 {
  font-size: 28px;
}

#sub h4.gr {
  color: #26604F;
}
#sub h4.leftline {
  border-left: 10px solid #A71C4B;
  color: #A71C4B;
  padding-left: 10px;
}
#sub h4.leftline.gr {
  border-left: 10px solid #26604F;
  color: #26604F;
}

h5 {
  font-size: 16px;
  min-width: 120px;
  line-height: 20px;
}

.note {
  margin: 16px 0;
}

#sub {
  max-width: 1040px;
  margin: 0 auto;
  padding: 16px;
}
#sub section {
  margin: 24px auto;
}
#sub .flex {
  align-items: flex-start;
  justify-content: center;
}
@media (max-width: 750px) {
  #sub .flex {
    flex-direction: column;
    align-items: stretch;
  }
}
#sub .flex.imgbox {
  margin: 24px auto;
  justify-content: space-between;
  align-items: stretch;
}
#sub .flex.imgbox .imgitem {
  -o-object-fit: cover;
     object-fit: cover;
}
#sub .flex.imgbox div {
  flex: 1 1 auto;
}
#sub .flex.imgbox.yoko * {
  width: 50%;
  flex: 1 1 50%;
}
#sub .flex .left {
  flex: 0 0 35%;
}
@media (max-width: 750px) {
  #sub .flex .left {
    flex: 0 0 100%;
  }
}
#sub .flex .left button {
  width: 100%;
  margin: 0;
}
#sub .flex .right {
  flex: 0 0 65%;
}
@media (max-width: 750px) {
  #sub .flex .right {
    flex: 0 0 100%;
    padding-left: 0;
  }
}
#sub .flex .right ul.cap {
  margin: 0;
}
#sub .flex.basic {
  align-items: flex-start;
}
#sub .flex.basic .left,
#sub .flex.basic .right {
  flex: 1 1 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 750px) {
  #sub .flex.basic .left,
  #sub .flex.basic .right {
    width: 100%;
  }
}
#sub .flex.basic.kiku .left {
  flex: 1 1 70%;
}
#sub .flex.basic.kiku .right {
  flex: 1 1 30%;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 750px) {
  #sub .flex.basic.kiku .right {
    justify-content: space-around;
  }
}
#sub .flex.basic.kiku .right img {
  width: 150px;
  height: 150px;
}
@media (max-width: 400px) {
  #sub .flex.basic.kiku .right img {
    width: 120px;
    height: 120px;
  }
}
#sub .item {
  font-weight: 600;
  margin: 36px 0 6px;
}
#sub .item .flex.smallimg {
  align-items: flex-end;
}
#sub .item .flex.smallimg .left {
  flex: 1 1 auto;
}
#sub .item .flex.smallimg .right {
  flex: 0 0 40%;
}
@media (max-width: 750px) {
  #sub .item .flex.smallimg {
    align-items: center;
  }
  #sub .item .flex.smallimg .left,
  #sub .item .flex.smallimg .right {
    flex: 1 1 100%;
    width: 100%;
  }
}
#sub ul.cap {
  margin-top: 16px;
}
#sub ul.cap.petit {
  margin: 0;
}
#sub ul.cap li {
  padding-left: 16px;
  position: relative;
}
#sub ul.cap li::before {
  content: "※ ";
  position: absolute;
  left: 0;
  top: 0;
}
#sub ul.cap.en li::before {
  content: "＊ ";
}
#sub .buttonwrap {
  width: 100%;
  display: flex;
  gap: 24px;
  margin: 16px 0;
}
#sub .buttonwrap a {
  flex: 1 1 50%;
}
#sub .buttonwrap a button {
  width: 100%;
  height: 50px;
  font-weight: 300;
  font-size: 14px;
  margin: 0;
}
@media (max-width: 1000px) {
  #sub .buttonwrap {
    flex-direction: column;
    gap: 16px;
  }
  #sub .buttonwrap a {
    flex: 1 1 100%;
  }
}

#policy h4 {
  margin-top: 24px;
}

ol.num {
  list-style: none;
  padding: 0 1rem;
  margin: 0.5rem 0;
}
ol.num li {
  padding-left: 2rem;
  position: relative;
  counter-increment: cnt;
}
ol.num li::before {
  content: "(" counter(cnt) ")";
  position: absolute;
  left: -0.2rem;
  top: 0;
}

ul.dot li {
  font-weight: 300;
  padding-left: 1.2rem;
  position: relative;
}
ul.dot li::before {
  content: "・ ";
  position: absolute;
  left: 0;
  top: 0;
}
ul.attention {
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
}
ul.attention li {
  padding-left: 1.2rem;
  position: relative;
}
ul.attention li::before {
  content: "※ ";
  position: absolute;
  left: 0;
  top: 0;
}/*# sourceMappingURL=common.css.map */