@charset "utf-8";

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  font-weight: inherit;
  vertical-align: baseline;
}

html {
  height: 100%;
  box-sizing: border-box;
  background-image: url("");
}

* {
  box-sizing: inherit;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ",
    Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #2c2c2c;
  line-height: 1.6;
  font-weight: 500;
}

li {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  vertical-align: bottom;
}

p {
  text-align: justify;
  text-justify: inter-ideograph;
}
h1 {
  font-size: calc(1.375rem + 1.5vw);
  font-weight: 900;
}
h2 {
  font-size: calc(1.375rem + 0.5vw);
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: -20px;
}
h3 {
  font-size: 1.375rem;
  font-weight: 600;
}
:root {
  --color-1: rgb(230, 0, 18);
  --color-11: rgba(230, 0, 18, 0.2);
  --color-12: rgb(170, 0, 18);
  --color-2: rgb(255, 111, 183);
  --color-21: rgba(255, 111, 183, 0.2);
  --color-3: rgb(250, 220, 5);
  --color-31: rgba(250, 220, 5, 0.2);
  --color-4: rgb(70, 80, 233);
  --color-41: rgba(70, 80, 233, 0.2);
  --color-5: rgb(255, 160, 45);
  --color-51: rgba(255, 160, 45, 0.2);
  --color-6: rgb(20, 160, 45);
  --color-61: rgba(20, 160, 45, 0.2);
}

/*==========================================
  メニューの設定
  ============================================*/
.header {
  display: inline-block;
  position: fixed;
  background: linear-gradient(var(--color-1), var(--color-12));
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  width: 100vw;
  height: 50px;
  top: 0;
  z-index: 500;
}
.header_pc {
  position: relative;
  display: flex;
  width: 93%;
  max-width: 1280px;
  margin: 0 auto;
}
.header_pc a {
  color: #fff;
  margin-top: 3px;
}
.header_pc span {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: left;
  margin-top: 7px;
}
.navbar-nav {
  display: flex;
  flex-direction: row;
  justify-content: start;
}
.nav-item {
  font-size: 1.2rem;
}
nav .nav-link::after {
  content: "|";
  color: white;
  margin-left: 5px;
}
.nav-link-last::after {
  content: none;
}

/*スマホ・タブレット対応849px以下（ナビの横幅の関係）の形状*/
@media screen and (min-width: 849px) {
  .nav_mb {
    display: none;
  }
}
@media screen and (max-width: 848px) {
  .header_pc {
    padding: 0;
    display: none;
  }
  .nav_mb {
    margin-top: 2px;
  }
  .header_pc ul {
    display: block;
  }
  .drawer_nav span {
    display: inline-block;
    margin: 10px 10px 10px 60px;
    text-align: center;
    position: relative;
    top: -65px;
    font-size: 1.2rem;
    font-weight: 600;
  }
}

/* =================================
ハンバーガーボタン
================================== */

body {
  overflow-x: hidden;
}
.nav {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  align-items: center;
}
.drawer_button {
  width: 25px;
  height: 20px;
  position: relative;
  top: -10px;
  background-color: transparent;
  border: none;
  /* margin-top: -7px; */
}
.drawer_button span {
  position: absolute;
  width: 100%;
  left: 0px;
  height: 2px;
  background-color: white;
  transition: 0.5s;
}
.drawer_button span:first-of-type {
  /* ハンバーガーメニューの1番目の線 */
  top: 0;
}
.drawer_button span:nth-of-type(2) {
  /* ハンバーガーメニューの2番目の線 */
  top: 50%;
}
.drawer_button span:last-of-type {
  /* ハンバーガーメニューの3番目の線 */
  top: 100%;
}
.drawer_button.active span:first-of-type {
  /* ハンバーガーメニューの1番目の線 */
  top: 50%;
  transform: rotate(35deg);
}
.drawer_button.active span:nth-of-type(2) {
  /* ハンバーガーメニューの2番目の線 */
  opacity: 0; /* 透明にする */
}
.drawer_button.active span:last-of-type {
  /* ハンバーガーメニューの3番目の線 */
  top: 50%;
  transform: rotate(-35deg);
}
.drawer_nav span {
  top: -62px;
  left: 20px;
}
.drawer_nav_menu {
  background: linear-gradient(to right, var(--color-12), var(--color-1));
  position: fixed;
  top: 0px;
  width: 85%;
  height: 100%;
  right: 0px;
  transform: translateX(100%);
  transition: 0.5s;
  z-index: 5;
  padding-top: 50px;
}
.drawer_nav_contents {
  border: #fff solid 1px;
  padding: 30px 0;
  border-radius: 10px;
  width: 60%;
  margin: 0 auto;
  line-height: 1.5rem;
}
.drawer_nav_item {
  text-align: left;
  font-weight: bold;
  list-style: none;
  letter-spacing: 0.5rem;
  padding-left: 50px;
}
.drawer_nav_link {
  color: #fff;
  text-decoration: none;
}
.drawer_nav_menu.active {
  transform: translateX(0);
}
.drawer_nav_menu_contents {
  line-height: 1.2;
  width: 80%;
  /* margin: 0 auto; */
  margin-left: 15%;
}

/*====スマホ対応終わり==============*/

/* =================================
ページトップボタン
================================== */
.pagetop {
  height: 40px;
  width: 40px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: white;
  border: solid 2px #2c2c2c;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
.pagetop_arrow {
  height: 20px;
  width: 20px;
  border-top: 3px solid #2c2c2c;
  border-right: 3px solid #2c2c2c;
  transform: translateY(20%) rotate(-45deg);
}

/* ================================= リンクの調整
================================= */
.anchor {
  display: block;
  padding-top: 50px;
  margin-top: -50px;
}

/* ==================トップのヒーローイメージ================= */
.logo-bg {
  background-color: var(--color-1);
  width: 100%;
  height: 480px;
  position: absolute;
}
.head_image {
  width: 100%;
  position: relative;
  margin-top: 50px;
  margin-bottom: 50px;
  z-index: 50;
}
.head_image_sm {
  width: 100%;
  margin-top: 50px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1399px) {
  .logo-bg {
    height: 420px;
  }
}
@media screen and (max-width: 1199px) {
  .logo-bg {
    height: 350px;
  }
}
@media screen and (max-width: 991px) {
  .logo-bg {
    height: 270px;
  }
}
@media screen and (max-width: 767px) {
  .logo-bg {
    display: none;
  }
  .head_image {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .head_image_sm {
    display: none;
  }
}

/* ==================================はじめに===================== */
.naiyo p:first-child {
  font-weight: 600;
}
.zuroku_yoyaku {
  font-weight: 600;
  font-size: 1.2rem;
  margin-top: 40px;
  width: fit-content;
  padding: 5px 30px 5px 5px;
  border-radius: 5px;
  background-color: var(--color-1);
  color: #fff;
}

/* ==================================開催概要
================================== */
.gaiyo table {
  width: 100%;
}
.gaiyo ul {
  margin-left: 1rem;
}
.gaiyo th {
  width: 6rem;
}
.gaiyo td {
  padding-left: 20px;
}
.gaiyo-p {
  font-weight: 600;
  margin-top: 10px;
}
.gaiyo-span {
  margin-left: 7.5rem;
}
@media screen and (max-width: 767px) {
  .gaiyo th,
  .gaiyo td {
    display: block;
  }
  .gaiyo th {
    width: 100%;
  }
  .gaiyo-span {
    margin-left: 1.5rem;
  }
}

/* ==================================メインエリア
================================== */

/* .main-contents {
  position: relative;
} */

/* ==================================展示構成
================================== */
.kousei {
}
.kousei-section {
  margin: 0 0 2rem 2rem;
}
.kousei-wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.kousei-p {
  margin-left: 2rem;
  margin-bottom: ;
  width: 100%;
}
.kousei-p span {
  font-weight: 600;
}
.kousei-img {
  display: flex;
  flex-direction: row;
  gap: 100px;
  width: 95%;
  margin-left: 2rem;
  margin-right: 2rem;
}
.kousei-img2 figure {
  margin-top: 10px;
  width: 80%;
  justify-self: flex-end;
}
.kousei-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
figure {
  display: flex;
  flex-flow: column;
  max-width: 800px;
  align-self: flex-end;
}
figcaption {
  color: #231815;
  font: smaller sans-serif;
  padding: 3px;
  text-align: right;
}
figure p {
  font-size: .9rem;
  font-weight: 600;
  width: fit-content;
  padding: 5px 10px;
  margin: 15px auto 0;
  border-radius: 5px;
  background-color: var(--color-1);
  color: #fff;
}

@media screen and (max-width: 767px) {
  .kousei-img {
    display: inline-block;
  }
  .kousei-img figure {
    margin-bottom: 10px;
  }
  .kousei-wrap {
    display: inline-block;
  }
  .kousei-p,
  .kousei-img {
    width: 90%;
    margin: 0 auto;
  }
  .kousei-p {
    margin-bottom: 20px;
  }
  .kousei-img2 figure {
    justify-self: center;
  }
}

/* ================================== 
イベント
================================== */

.event-wrap {
  margin-left: 1rem;
}
.event-span {
  font-weight: 600;
  margin-right: 10px;
}
.event-card {
  width: 47.5%;
}
.event-card:last-child {
  margin-left: 14px !important;
}
.event-card .card-header {
  background-color: var(--color-1);
  color: #fff;
  line-height: 1.5rem;
}
.event-card table {
  margin: 1rem;
}
.event-card th {
  background: #f8f6f2;
  vertical-align: text-top;
  padding: 0 0.5rem;
  line-height: 1;
  width: 5rem;
  text-align: justify;
  text-align-last:justify;
}
.event-card td {
  padding: 1rem 0.5rem 0.5rem;
}

@media screen and (max-width: 991px) {
  .event-card:last-child {
    margin-left: 5px !important;
  }
}
@media screen and (max-width: 767px) {
  .event-card {
    width: 100%;
  }
  .event-card th,
  .event-card td {
    padding: 1rem;
    display: block;
  }
  .event-card th {
    line-height: 0.5rem;
    width: 100%;
    text-align: left;
    text-align-last: left;
  }
  .event-card:last-child {
    margin-left: 0px !important;
  }
  .bari_last br {
    display: none;
  }
}

/* ===アクセス===================== */
.annai {
  position: relative;
  margin-bottom: 50px;
}
.access_conte_1,
.access_conte_2 {
  margin-left: 2rem;
}
.access_conte_2 {
  margin-top: 100px;
}
.info_mapWrap {
  width: 100%;
  margin: 0 10px;
}
.info_mapWrap iframe {
  width: 90%;
  margin: 10px 20px;
  border: solid #000 1px;
}
.bus_wrap {
  position: relative;
  top: -80px;
}
.info_head {
  font-size: larger;
  font-weight: bold;
}
.info_text a {
  text-decoration: none;
}
.bus_info {
  width: 90%;
  border: solid #000 1px;
  margin: -70px auto 20px;
  padding: 10px 30px;
}
.bus_info a {
  text-decoration: none;
}
.kousoku_wrap {
  margin-left: 1rem;
}
.kousoku_wrap li,
.ferry_wrap li {
  list-style: square;
  margin-left: 2rem;
}
.kbus_wrap a {
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .info_mapWrap iframe {
    width: 100%;
    margin: 5px;
  }
}

/* ===フッター===================== */
footer {
  background: linear-gradient(var(--color-12), var(--color-1));
  color: #fff;
  height: 150px;
}
footer img {
  width: 200px;
  position: relative;
  top: 30px;
  margin-bottom: 20px;
}

