@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: YuMincho, "Hiragino Mincho ProN", "Noto Serif JP", serif;
  color: #000;
  scroll-behavior: smooth;
  position: relative;
  letter-spacing: 0.1em;
  font-weight: 300;
  background-color: rgb(250, 251, 251);
}
@media (max-width: 750px) {
  body {
    font-size: 15px;
    line-height: 26px;
  }
}

ul {
  list-style: none;
}

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

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

a:hover {
  opacity: 0.7;
}

.flex {
  display: flex;
  gap: 24px;
}
.flex.col {
  flex-direction: column;
  gap: 1rem;
}
@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: #8C1C22;
}

.black {
  color: #000;
}

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

.little {
  font-size: 12px;
  line-height: 20px;
  margin-top: 1rem;
}

.big {
  font-size: 20px;
}

.bold {
  font-weight: 800;
}

.center {
  text-align: center;
}

.alignright {
  text-align: right;
}

.italic {
  font-style: italic;
}

.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;
  margin: 0 auto;
}
@media (max-width: 750px) {
  section {
    padding: 1rem;
  }
}

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

.contentwrapper {
  background-color: #fff;
  margin: 0 auto;
  width: 100%;
  border: 1px rgba(75, 82, 89, 0.3) solid;
  padding: 48px;
}
@media (max-width: 750px) {
  .contentwrapper {
    padding: 24px 1rem;
  }
}
.contentwrapper.with_tab {
  padding: 0;
}

.tablist {
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4B5259;
  min-height: 150px;
  width: 100%;
}
@media (max-width: 750px) {
  .tablist {
    flex-wrap: wrap;
    padding: 1rem 0;
    min-height: 0px;
    gap: 1rem;
  }
}
.tablist a {
  cursor: pointer;
  color: #000;
  padding: 0 24px;
  letter-spacing: 0.25em;
}
.tablist a:hover {
  opacity: 1;
  color: #8C1C22;
}
.tablist a.current {
  color: #8C1C22;
  pointer-events: none;
}
.tablist a.disable {
  pointer-events: none;
  opacity: 0.5;
}
@media (max-width: 400px) {
  .tablist a {
    padding: 0 1rem;
  }
}

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

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

#sub .tabcont {
  padding: 0;
}

.naname_bg {
  position: relative;
  z-index: 1;
  /* コンテンツを手前に表示するため */
  padding: 24px 0;
  margin-top: 140px;
  padding-top: 48px;
  margin-bottom: 48px;
}
.naname_bg .contentwrapper {
  background-color: #fff;
}
@media (min-width: 1800px) {
  .naname_bg {
    margin-top: 200px;
    padding-top: 0;
  }
}
@media (max-width: 750px) {
  .naname_bg {
    margin-top: 80px;
  }
}

/* 背景用の擬似要素 */
.naname_bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 10vw);
  background-color: #000;
  z-index: -1;
  transform: skewY(-5deg);
  transform-origin: top left;
}
@media (min-width: 1800px) {
  .naname_bg::before {
    height: calc(100% + 7vw);
  }
}

header {
  width: 100vw;
  height: 120px;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  background-color: #000;
}
@media (max-width: 1200px) {
  header {
    height: 70px;
  }
}
header #headerwrap {
  width: 100%;
  height: 120px;
  color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 1340px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  header #headerwrap {
    height: 70px;
    padding: 0 24px;
  }
}
header #headerwrap #toplogo {
  display: flex;
  align-items: center;
  transition: all 0.3s;
  flex: 0 0 auto;
  margin-left: 24px;
}
header #headerwrap #toplogo img {
  width: 150px;
  height: auto;
}
@media (max-width: 1200px) {
  header #headerwrap #toplogo {
    flex: 1 1 auto;
    padding-left: 0;
    z-index: 100;
  }
  header #headerwrap #toplogo img {
    width: 120px;
  }
}
@media (max-width: 500px) {
  header #headerwrap #toplogo {
    margin-left: 0;
  }
  header #headerwrap #toplogo img {
    width: 100px;
  }
}
header #headerwrap #toplogo:hover {
  opacity: 0.7;
}
header #headerwrap nav {
  padding-left: 24px;
  padding-right: 1rem;
  flex: 1 1 auto;
}
@media (max-width: 1200px) {
  header #headerwrap nav {
    padding: 0;
  }
}
header #headerwrap nav ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 100%;
}
@media (max-width: 1200px) {
  header #headerwrap nav ul {
    flex-direction: column;
    display: none;
  }
  header #headerwrap nav ul.open {
    display: flex;
    position: absolute;
    background-color: #000;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    gap: 0;
    justify-content: center;
    padding-top: 80px;
  }
  header #headerwrap nav ul.open hr {
    width: calc(100% - 24px);
    height: 1px;
    margin: 0;
  }
  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 a {
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 100%;
    font-size: 20px;
    height: calc((100vh - 110px) / 8);
    text-align: left;
    line-height: 26px;
  }
  header #headerwrap nav ul.open li a:hover {
    color: #fff;
    opacity: 1;
  }
  header #headerwrap nav ul.open li a span {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 1200px) and (max-width: 400px) {
  header #headerwrap nav ul.open li a span {
    font-size: 12px;
  }
}
@media (max-width: 1200px) and (max-width: 600px) {
  header #headerwrap nav ul.open li a {
    font-size: 0.8rem;
    line-height: 1rem;
    text-align: center;
  }
  header #headerwrap nav ul.open li a span {
    font-size: 10px;
  }
}
header #headerwrap nav ul li.disable {
  pointer-events: none;
  opacity: 0.5;
}
header #headerwrap nav ul li a {
  word-break: auto-phrase;
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border: none;
  padding: 1rem;
  height: 100%;
  line-height: 1.3rem;
}
header #headerwrap nav ul li a span {
  font-size: 10px;
  display: block;
  line-height: 1rem;
}
header #headerwrap nav ul li a.current {
  color: #9e242a;
  font-weight: 800;
}
header #headerwrap nav ul li a:hover {
  opacity: 0.7;
}
header #headerwrap #ticketbtn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(220, 221, 221, 0);
  border: 1px solid #000;
  width: 150px;
  height: 80px;
  transition: all 0.5s;
  color: #8C1C22;
  position: absolute;
  top: 130px;
  right: 24px;
  z-index: 100;
}
header #headerwrap #ticketbtn:hover {
  background-color: rgba(220, 221, 221, 0.4);
}
header #headerwrap #ticketbtn.is_black {
  background-color: #fff;
}
header #headerwrap #ticketbtn.is_black .ticimage {
  background-image: url(../images/common/icon/ic_tic.png);
}
header #headerwrap #ticketbtn.is_black:hover {
  opacity: 0.7;
}
header #headerwrap #ticketbtn a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #4B5259;
}
header #headerwrap #ticketbtn a .ticimage {
  width: 20px;
  height: 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/common/icon/ic_tic.png);
}
@media (max-width: 1200px) {
  header #headerwrap #ticketbtn a .ticimage {
    background-image: url(../images/common/icon/ic_tic_wh.png);
  }
}
header #headerwrap #ticketbtn a span {
  font-size: 10px;
  text-decoration: none;
  line-height: 14px;
}
@media (max-width: 1200px) {
  header #headerwrap #ticketbtn {
    position: initial;
    border: 1px solid #fff;
    background-color: transparent;
    padding-top: 0;
    margin-top: 0;
    transition: all 0.3s;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    margin-right: 1rem;
  }
  header #headerwrap #ticketbtn.is_black span {
    color: #4B5259;
  }
  header #headerwrap #ticketbtn a {
    flex-direction: row-reverse;
    padding: 10px;
  }
  header #headerwrap #ticketbtn a img {
    width: 30px;
    height: auto;
  }
  header #headerwrap #ticketbtn a span {
    font-size: 14px;
    color: #fff;
    padding-right: 4px;
  }
  header #headerwrap #ticketbtn a:hover {
    opacity: 0.7;
    margin-top: 0;
  }
}
@media (max-width: 400px) {
  header #headerwrap #ticketbtn a span {
    font-size: 9px;
  }
}
header #headerwrap #menuicon {
  display: none;
}
@media (max-width: 1200px) {
  header #headerwrap #menuicon {
    display: block;
    position: relative;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    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: 10px;
    transform: rotate(45deg);
  }
  header #headerwrap #menuicon.open span:nth-child(2) {
    display: none;
  }
  header #headerwrap #menuicon.open span:nth-child(3) {
    top: 10px;
    transform: rotate(-45deg);
  }
  header #headerwrap #menuicon span {
    background-color: #fff;
    height: 1px;
    width: 20px;
    left: 0;
    position: absolute;
  }
  header #headerwrap #menuicon span:nth-child(1) {
    top: 2px;
  }
  header #headerwrap #menuicon span:nth-child(2) {
    top: 10px;
  }
  header #headerwrap #menuicon span:nth-child(3) {
    top: 18px;
  }
}
header #headerwrap #menuicon:hover {
  opacity: 0.7;
}
header #headerwrap #snsicon {
  display: flex;
  align-items: center;
  padding-right: 24px;
  flex: 0 0 auto;
  transition: all 0.3s;
  gap: 1rem;
  height: 80px;
}
@media (max-width: 1200px) {
  header #headerwrap #snsicon {
    flex: 0 0 20px;
    margin-right: 0;
    border: none;
    z-index: 100;
    padding-right: 1rem;
  }
  header #headerwrap #snsicon a {
    flex: 0 0 20px;
    height: 20px;
  }
  header #headerwrap #snsicon a img {
    vertical-align: baseline;
  }
  header #headerwrap #snsicon hr {
    display: none;
  }
}
header #headerwrap #snsicon img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}
header #headerwrap hr {
  border: none;
  height: 30px;
  background-color: #DCDDDD;
  width: 1px;
  margin: 20px auto;
}

#page_top {
  width: 100%;
  height: 120px;
  background-color: #000;
}
@media (max-width: 1200px) {
  #page_top {
    height: 70px;
  }
}

#go_top {
  position: fixed;
  width: 30px;
  height: 30px;
  border: 1px solid #fff;
  border-radius: 300px;
  bottom: 24px;
  right: 1rem;
  z-index: 99;
  opacity: 0;
  transition: all 0.8s ease;
  background-color: #000;
}
#go_top a {
  width: 100%;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}
#go_top a span {
  display: block;
  width: 10px;
  height: 10px;
  background-image: url(../images/common/icon/ic_gotop.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: -2px;
}
#go_top:hover {
  bottom: 44px;
  opacity: 0.7;
}

#footer_roof {
  width: 100%;
  height: 9vw;
  background-color: #000;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  margin-bottom: -1px;
}

footer {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 40px 24px;
  margin: 0 auto;
  background-color: #000;
  text-align: center;
  gap: 24px;
  padding: 24px;
}
footer a {
  line-height: 20px;
  color: #fff;
  font-size: 14px;
}
footer a:visited {
  color: #fff;
}
footer .copyright {
  color: #fff;
  font-size: 10px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  display: block;
  line-height: 1rem;
}
@media (max-width: 1170px) {
  footer {
    flex-direction: column;
  }
  footer .copyright {
    flex-direction: column;
  }
}
@media (max-width: 780px) {
  footer {
    gap: 1rem;
    padding: 24px;
  }
}

button {
  width: 260px;
  height: 80px;
  background-color: #595757;
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  border: none;
  font-weight: 800;
  margin: 24px auto;
  transition: all 0.3s;
  position: relative;
  font-family: "YuMincho", "Hiragino Mincho", serif;
  min-width: 350px;
}
@media (max-width: 750px) {
  button {
    width: 100%;
    min-width: 200px;
  }
}
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.disabled {
  background-color: transparent;
  color: rgba(75, 82, 89, 0.3);
  border: 1px solid rgba(75, 82, 89, 0.3);
  pointer-events: none;
}
button.disabled:hover {
  opacity: 1;
}
button img {
  width: 30px;
  height: auto;
}

.tabbuttons {
  display: flex;
  width: 100%;
  padding: 1rem;
  gap: 1rem 24px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .tabbuttons {
    flex-wrap: wrap;
  }
}
.tabbuttons .tabbutton {
  background-color: transparent;
  color: #000;
  height: 50px;
  max-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-align: center;
  min-width: 160px;
  border: 1px solid #595757;
  line-height: 1.2rem;
}
.tabbuttons .tabbutton.current {
  background-color: #595757;
  color: #fff;
}
.tabbuttons .tabbutton:hover {
  background-color: #595757;
  color: #fff;
}
.tabbuttons .tabbutton.disable {
  pointer-events: none;
  opacity: 0.6;
}
@media (max-width: 750px) {
  .tabbuttons .tabbutton {
    flex: 0 0 45%;
    min-width: 120px;
  }
}

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

.slide-wrapper {
  padding-top: 48px;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.slide-wrapper .slide {
  height: 100%;
  display: flex;
  align-items: center;
  transition: all 0.3s;
}
.slide-wrapper .slide div {
  height: 100%;
  font-size: 16px;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  position: relative;
}
.slide-wrapper .slide div span {
  position: absolute;
  bottom: 10px;
  left: 16px;
  right: 16px;
  color: #fff;
  font-size: 12px;
  text-align: left;
}
.slide-wrapper .slide div img {
  max-height: 500px;
  max-width: 500px;
  -o-object-fit: contain;
     object-fit: contain;
}

.next {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 1rem;
  bottom: 50%;
  z-index: 10;
  cursor: pointer;
  border-top: solid 2px #000;
  border-right: solid 2px #000;
  transform: rotate(45deg) translateY(50%);
}

.prev {
  position: absolute;
  width: 30px;
  height: 30px;
  left: 36px;
  bottom: 50%;
  z-index: 10;
  cursor: pointer;
  border-top: solid 2px #000;
  border-right: solid 2px #000;
  transform: rotate(-135deg) translateY(-50%);
}

.pagination-container {
  display: flex;
  justify-content: space-between;
  gap: 5px;
  margin-top: 15px;
  width: 300px;
  padding: 0 10px;
  margin: 24px auto;
  box-sizing: border-box;
}

.pagination-bar {
  position: relative;
  height: 2px;
  background-color: rgba(75, 82, 89, 0.3);
  flex-grow: 1;
  cursor: pointer;
  overflow: hidden;
}

.bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: #000;
}

h2 {
  font-size: 26px;
  color: #000;
  text-align: center;
  height: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 60px auto 48px;
  font-weight: 800;
  flex-direction: row-reverse;
  gap: 2rem;
  line-height: 50px;
}
h2 span {
  font-size: 42px;
  display: block;
  text-align: center;
  letter-spacing: 0.03em;
  font-weight: 800;
  line-height: 52px;
}
@media (max-width: 750px) {
  h2 {
    flex-direction: column-reverse;
    font-size: 20px;
    line-height: 24px;
    margin-top: 40px;
    gap: 1rem;
  }
  h2 span {
    line-height: 40px;
    font-size: 30px;
  }
}

h3 {
  font-size: 30px;
  margin: 48px auto 1rem;
  line-height: 34px;
  color: #000;
  font-weight: 800;
}
@media (max-width: 750px) {
  h3 {
    font-size: 20px;
  }
}
h3.top {
  margin-top: 0;
}

h4 {
  color: #000;
  font-size: 20px;
  margin: 48px auto 1rem;
  width: auto;
  font-weight: 800;
}
h4.with_line {
  margin-left: 46px;
  position: relative;
  display: inline-block;
}
h4.with_line::before {
  content: "";
  width: 30px;
  height: 1px;
  background-color: #000;
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  left: -46px;
}
@media (max-width: 750px) {
  h4.with_line::before {
    width: 50px;
    left: -66px;
  }
}
h4.with_line.right {
  text-align: right;
  width: initial;
}
@media (max-width: 750px) {
  h4.with_line.right::before {
    width: 30px;
  }
}
@media (max-width: 750px) {
  h4 {
    font-size: 18px;
    line-height: 26px;
  }
}

h5 {
  font-size: 18px;
  min-width: 120px;
  line-height: 30px;
  font-weight: 800;
}
@media (max-width: 750px) {
  h5 {
    font-size: 1rem;
    line-height: 24px;
  }
}

#sub h2 {
  margin-top: 180px;
}
@media (max-width: 750px) {
  #sub h2 {
    margin-top: 140px;
  }
}
#sub h3 {
  margin-top: 100px;
}
#sub h3.top {
  margin-top: 0;
}
#sub .contentwrapper h3 {
  margin-top: 0;
}
.note {
  margin: 1rem 0;
}

#sub {
  margin: 0 auto;
}
#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;
    gap: 1rem;
  }
}
#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 1 40%;
}
@media (max-width: 750px) {
  #sub .flex .left {
    flex: 0 0 100%;
  }
}
#sub .flex .left button {
  width: 100%;
  margin: 0;
}
#sub .flex .right {
  flex: 0 1 60%;
}
@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 {
  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: 1rem auto;
  font-weight: 800;
}
#sub ul.cap.petit {
  margin: 0;
  font-size: 10px;
  font-weight: 300;
}
#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: 1rem 0;
}
#sub .buttonwrap a {
  flex: 1 1 50%;
}
#sub .buttonwrap a button {
  width: 100%;
  height: 50px;
  font-size: 14px;
  margin: 0;
}
@media (max-width: 1000px) {
  #sub .buttonwrap {
    flex-direction: column;
    gap: 1rem;
  }
  #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 {
  padding-left: 1.2rem;
  position: relative;
}
ul.dot li::before {
  content: "・ ";
  position: absolute;
  left: 0;
  top: 0;
}
ul.sq li {
  padding-left: 1.2rem;
  position: relative;
}
ul.sq li::before {
  content: "■ ";
  position: absolute;
  left: 0;
  top: 0;
}
ul.attention {
  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;
}

.mapimagebox {
  max-width: 500px;
}/*# sourceMappingURL=common.css.map */