@charset "UTF-8";
/* -----------------------------------
リセットCSS
基本的には触らないでください
----------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");

input[type=submit] {
  -webkit-appearance: none;
  border-radius: 0;
}

html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

*,
*::after,
*::before {
  box-sizing: border-box;
}

img {
  border: none;
  max-width: 100%;
  height: auto;
}

video {
  width: 100%;
}

a {
  text-decoration: none;
}

ol,
ul {
  list-style: none;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
img,
p {
  margin: 0;
  padding: 0;
}

p {
	font-size: 16px;
}
hr {
  border: none;
  height: 1px;
  background: #f1eded;
  margin: 2em auto;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
p {
  line-height: 1.6em;
}

/* -----------------------------------
ベース設定
----------------------------------- */
* {
  box-sizing: border-box;
}

body {
  background-color: #ffffff;
  color: #522300;
  font-family: "Noto Sans JP", sans-serif;
  padding: 0;
  margin: 0;
  font-weight: 600;
  width: 100%;
  overflow-x: hidden;
}

/* つけるとスマホでしか表示されなくなるクラス */
.only-phone {
  display: inline-block;
}

@media (min-width: 500px) {
  .only-phone {
    display: none;
  }
}

/* つけるとタブレットでしか表示されなくなるクラス */
.only-pad {
  display: none;
}

@media (min-width: 500px) {
  .only-pad {
    display: inline-block;
  }
}

@media (min-width: 768px) {
  .only-pad {
    display: none;
  }
}

/* つけるとPCでしか表示されなくなるクラス */
.only-pc {
  display: none;
}

@media (min-width: 768px) {
  .only-pc {
    display: inline-block;
  }
}

/* つけるとPCで見たときだけ表示されなくなるクラス */
.except-pc {
  display: inline-block;
}

@media (min-width: 768px) {
  .except-pc {
    display: none;
  }
}

section {
  padding: 30px 0;
  z-index: 0;
}

@media (min-width: 768px) {
  section {
    padding: 70px 0;
  }
}

img.rounded {
  border-radius: 50%;
}

/* -----------------------------------
Flexbox設定
----------------------------------- */
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 5%;
  padding-left: 5%;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 768px) and (max-width: 1029px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 1030px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1240px) {
  .container {
    max-width: 1100px;
    padding-right: 0;
	padding-left: 0;
  }
}

.flex {
  display: flex;
  flex-wrap: wrap;
}
.flex-align-center {
  align-items: center;
}
.flex-reverse {
  flex-direction: row-reverse;
}
.flex-center {
  justify-content: center;
}
.center {
  text-align: center;
}
.max-100 {
  max-width: 100px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 0;
}
.max-200 {
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 0;
}
.max-300 {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 0;
}
.max-400 {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 0;
}
.max-500 {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 0;
}
.max-600 {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 0;
}
.max-700 {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 0;
}
.max-800 {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 0;
}
.max-900 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 0;
}
.mt-0 {
  margin-top: 0px !important;
  position: relative;
  z-index: 0;
}
.mb-0 {
  margin-bottom: 0px !important;
  position: relative;
  z-index: 0;
}
.ml-0 {
  margin-left: 0px !important;
  position: relative;
  z-index: 0;
}
.mt-10 {
  margin-top: 10px !important;
  position: relative;
  z-index: 0;
}
.mb-10 {
  margin-bottom: 10px !important;
  position: relative;
  z-index: 0;
}
.ml-10 {
  margin-left: 10px !important;
  position: relative;
  z-index: 0;
}
.mt-20 {
  margin-top: 20px !important;
  position: relative;
  z-index: 0;
}
.mb-20 {
  margin-bottom: 20px !important;
  position: relative;
  z-index: 0;
}
.ml-20 {
  margin-left: 20px !important;
  position: relative;
  z-index: 0;
}
.mt-30 {
  margin-top: 30px !important;
  position: relative;
  z-index: 0;
}
.mb-30 {
  margin-bottom: 30px !important;
  position: relative;
  z-index: 0;
}
.ml-30 {
  margin-left: 30px !important;
  position: relative;
  z-index: 0;
}
.mt-40 {
  margin-top: 40px !important;
  position: relative;
  z-index: 0;
}
.mb-40 {
  margin-bottom: 40px !important;
  position: relative;
  z-index: 0;
}
.ml-40 {
  margin-left: 40px !important;
  position: relative;
  z-index: 0;
}
.mt-50 {
  margin-top: 50px !important;
  position: relative;
}
.mb-50 {
  margin-bottom: 50px !important;
  position: relative;
}
.ml-50 {
  margin-left: 50px !important;
  position: relative;
}
.mt-60 {
  margin-top: 60px !important;
  position: relative;
}
.mb-60 {
  margin-bottom: 60px !important;
  position: relative;
}
.ml-60 {
  margin-left: 60px !important;
  position: relative;
}
.mt-70 {
  margin-top: 70px !important;
  position: relative;
}
.mb-70 {
  margin-bottom: 70px !important;
  position: relative;
}
.ml-70 {
  margin-left: 70px !important;
  position: relative;
}
.mt-80 {
  margin-top: 80px !important;
  position: relative;
}
.mb-80 {
  margin-bottom: 80px !important;
  position: relative;
}
.ml-80 {
  margin-left: 80px !important;
  position: relative;
}
.mt-90 {
  margin-top: 90px !important;
  position: relative;
}
.mb-90 {
  margin-bottom: 90px !important;
  position: relative;
}
.ml-90 {
  margin-left: 90px !important;
  position: relative;
}
.mt-100 {
  margin-top: 100px !important;
  position: relative;
}
.mb-100 {
  margin-bottom: 100px !important;
  position: relative;
}
.ml-100 {
  margin-left: 100px !important;
  position: relative;
}
.mt-110 {
  margin-top: 110px !important;
  position: relative;
}
.mb-110 {
  margin-bottom: 110px !important;
  position: relative;
}
.ml-110 {
  margin-left: 110px !important;
  position: relative;
}
.mt-120 {
  margin-top: 120px !important;
  position: relative;
}
.mb-120 {
  margin-bottom: 120px !important;
  position: relative;
}
.ml-120 {
  margin-left: 120px !important;
  position: relative;
}
.col-1 {
  width: calc((100% * 1) / 12);
  padding: 0 15px;
}
.col-lg1,
.col-md1,
.col-sm1,
.col-xl1 {
  width: 100%;
  margin-bottom: 40px;
}
.col-2 {
  width: calc((100% * 2) / 12);
  padding: 0 15px;
}
.col-lg2,
.col-md2,
.col-sm2,
.col-xl2 {
  width: 100%;
  margin-bottom: 40px;
}
.col-3 {
  width: calc((100% * 3) / 12);
  padding: 0 15px;
}
.col-lg3,
.col-md3,
.col-sm3,
.col-xl3 {
  width: 100%;
  margin-bottom: 40px;
}
.col-4 {
  width: calc((100% * 4) / 12);
  padding: 0 15px;
}
.col-lg4,
.col-md4,
.col-sm4,
.col-xl4 {
  width: 100%;
  margin-bottom: 40px;
}
.col-5 {
  width: calc((100% * 5) / 12);
  padding: 0 15px;
}
.col-lg5,
.col-md5,
.col-sm5,
.col-xl5 {
  width: 100%;
  margin-bottom: 40px;
}
.col-6 {
  width: calc((100% * 6) / 12);
  padding: 0 15px;
}
.col-lg6,
.col-md6,
.col-sm6,
.col-xl6 {
  width: 100%;
  margin-bottom: 40px;
}
.col-7 {
  width: calc((100% * 7) / 12);
  padding: 0 15px;
}
.col-lg7,
.col-md7,
.col-sm7,
.col-xl7 {
  width: 100%;
  margin-bottom: 40px;
}
.col-8 {
  width: calc((100% * 8) / 12);
  padding: 0 15px;
}
.col-lg8,
.col-md8,
.col-sm8,
.col-xl8 {
  width: 100%;
  margin-bottom: 40px;
}
.col-9 {
  width: calc((100% * 9) / 12);
  padding: 0 15px;
}
.col-lg9,
.col-md9,
.col-sm9,
.col-xl9 {
  width: 100%;
  margin-bottom: 40px;
}
.col-10 {
  width: calc((100% * 10) / 12);
  padding: 0 15px;
}
.col-lg10,
.col-md10,
.col-sm10,
.col-xl10 {
  width: 100%;
  margin-bottom: 40px;
}
.col-11 {
  width: calc((100% * 11) / 12);
  padding: 0 15px;
}
.col-lg11,
.col-md11,
.col-sm11,
.col-xl11 {
  width: 100%;
  margin-bottom: 40px;
}
.col-12 {
  width: calc((100% * 12) / 12);
  padding: 0 15px;
}
.col-lg12,
.col-md12,
.col-sm12,
.col-xl12 {
  width: 100%;
  margin-bottom: 40px;
}

@media (min-width: 481px) {
  .sm {
    flex-direction: row;
  }
  .col-sm1 {
    width: calc((100% * 1) / 12);
    padding: 0 15px;
  }
  .col-sm2 {
    width: calc((100% * 2) / 12);
    padding: 0 15px;
  }
  .col-sm3 {
    width: calc((100% * 3) / 12);
    padding: 0 15px;
  }
  .col-sm4 {
    width: calc((100% * 4) / 12);
    padding: 0 15px;
  }
  .col-sm5 {
    width: calc((100% * 5) / 12);
    padding: 0 15px;
  }
  .col-sm6 {
    width: calc((100% * 6) / 12);
    padding: 0 15px;
  }
  .col-sm7 {
    width: calc((100% * 7) / 12);
    padding: 0 15px;
  }
  .col-sm8 {
    width: calc((100% * 8) / 12);
    padding: 0 15px;
  }
  .col-sm9 {
    width: calc((100% * 9) / 12);
    padding: 0 15px;
  }
  .col-sm10 {
    width: calc((100% * 10) / 12);
    padding: 0 15px;
  }
  .col-sm11 {
    width: calc((100% * 11) / 12);
    padding: 0 15px;
  }
  .col-sm12 {
    width: calc((100% * 12) / 12);
    padding: 0 15px;
  }
}

@media (min-width: 768px) {
  .md {
    flex-direction: row;
  }
  .col-md1 {
    width: calc((100% * 1) / 12);
    padding: 0 15px;
  }
  .col-md2 {
    width: calc((100% * 2) / 12);
    padding: 0 15px;
  }
  .col-md3 {
    width: calc((100% * 3) / 12);
    padding: 0 15px;
  }
  .col-md4 {
    width: calc((100% * 4) / 12);
    padding: 0 15px;
  }
  .col-md5 {
    width: calc((100% * 5) / 12);
    padding: 0 15px;
  }
  .col-md6 {
    width: calc((100% * 6) / 12);
    padding: 0 15px;
  }
  .col-md7 {
    width: calc((100% * 7) / 12);
    padding: 0 15px;
  }
  .col-md8 {
    width: calc((100% * 8) / 12);
    padding: 0 15px;
  }
  .col-md9 {
    width: calc((100% * 9) / 12);
    padding: 0 15px;
  }
  .col-md10 {
    width: calc((100% * 10) / 12);
    padding: 0 15px;
  }
  .col-md11 {
    width: calc((100% * 11) / 12);
    padding: 0 15px;
  }
  .col-md12 {
    width: calc((100% * 12) / 12);
    padding: 0 15px;
  }
  .container {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media (min-width: 1030px) {
  .col-lg1 {
    width: calc((100% * 1) / 12);
    padding: 0 15px;
  }
  .col-lg2 {
    width: calc((100% * 2) / 12);
    padding: 0 15px;
  }
  .col-lg3 {
    width: calc((100% * 3) / 12);
    padding: 0 15px;
  }
  .col-lg4 {
    width: calc((100% * 4) / 12);
    padding: 0 15px;
  }
  .col-lg5 {
    width: calc((100% * 5) / 12);
    padding: 0 15px;
  }
  .col-lg6 {
    width: calc((100% * 6) / 12);
    padding: 0 15px;
  }
  .col-lg7 {
    width: calc((100% * 7) / 12);
    padding: 0 15px;
  }
  .col-lg8 {
    width: calc((100% * 8) / 12);
    padding: 0 15px;
  }
  .col-lg9 {
    width: calc((100% * 9) / 12);
    padding: 0 15px;
  }
  .col-lg10 {
    width: calc((100% * 10) / 12);
    padding: 0 15px;
  }
  .col-lg11 {
    width: calc((100% * 11) / 12);
    padding: 0 15px;
  }
  .col-lg12 {
    width: calc((100% * 12) / 12);
    padding: 0 15px;
  }
}

@media (min-width: 1240px) {
  .col-xl1 {
    width: calc((100% * 1) / 12);
    padding: 0 15px;
  }
  .col-xl2 {
    width: calc((100% * 2) / 12);
    padding: 0 15px;
  }
  .col-xl3 {
    width: calc((100% * 3) / 12);
    padding: 0 15px;
  }
  .col-xl4 {
    width: calc((100% * 4) / 12);
    padding: 0 15px;
  }
  .col-xl5 {
    width: calc((100% * 5) / 12);
    padding: 0 15px;
  }
  .col-xl6 {
    width: calc((100% * 6) / 12);
    padding: 0 15px;
  }
  .col-xl7 {
    width: calc((100% * 7) / 12);
    padding: 0 15px;
  }
  .col-xl8 {
    width: calc((100% * 8) / 12);
    padding: 0 15px;
  }
  .col-xl9 {
    width: calc((100% * 9) / 12);
    padding: 0 15px;
  }
  .col-xl10 {
    width: calc((100% * 10) / 12);
    padding: 0 15px;
  }
  .col-xl11 {
    width: calc((100% * 11) / 12);
    padding: 0 15px;
  }
  .col-xl12 {
    width: calc((100% * 12) / 12);
    padding: 0 15px;
  }
}

/* -----------------------------------
見出し、テキストなど
----------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol {
  line-height: 1.6em;
}

.font-design {
  font-family: "Noto Serif JP", serif;
}

@media (min-width: 768px) {
  .left-center {
    text-align: center;
  }
}

span.yellow {
  background: linear-gradient(transparent 60%, #efea44 60%);
}
.underline {
  text-align: center;
  font-size: 130%;
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  line-height: 1.6em;
  border-bottom: 1px solid;
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto 0;
  padding-bottom: 7px;
}

@media (min-width: 768px) {
  .underline {
    font-size: 150%;
  }
}

@media (min-width: 1030px) {
  .underline {
    font-size: 180%;
  }
}
.underline-movie {
    font-family: "Noto Sans JP", sans-serif;
    display: inline-block;
    padding: 20px 100px;
    border: 2px solid #007bff;
    background-color: #fff;
    color: #007BFF;
    font-size: 16px;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s;
    font-size: 180%;
    margin-top:20px;
}

@media (min-width: 768px) {
  .underline-movie {
    font-size: 150%;
  }
}

@media (min-width: 1030px) {
  .underline-movie {
    font-size: 150%;
  }
}
dl.event {
  max-width: 850px;
  margin: 30px auto;
  font-size: 120%;
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
dl.event dt {
  width: 140px;
}
dl.event dd {
  width: 100%;
  padding-left: 25px;
  margin-left: 0;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  dl.event {
    font-size: 140%;
    flex-direction: row;
  }

  dl.event dd {
    width: calc(100% - 140px);
  }
}

dl.event span.sm {
  font-size: 80%;
}
ul.list_checklist {
  list-style: disc outside;
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto;
  font-size: 115%;
  font-weight: bold;
}
ul.list_checklist li {
  line-height: 2em;
}

@media (min-width: 768px) {
  ul.list_checklist {
    width: 450px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  ul.list_checklist li {
    width: 250px;
    word-break: keep-all;
  }
  ul.list_checklist li:nth-of-type(2n) {
    width: 190px;
  }
}

.text-black {
  color: #000000;
  font-weight: 500;
}

/* -----------------------------------
リンク関係
----------------------------------- */
a {
  color: #E85400;
  transition: 0.3s;
  text-decoration: underline;
}
a:hover {
  color: #E85400;
  text-decoration:none;
}
a.btn {
  display: block;
  color: white;
  font-weight: 600;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 20px;
  min-width: 300px;
  border-radius: 50px;
  margin: 20px auto;
  background: #005bac;
  position: relative;
}
a.btn span.bg {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background-img: url(../img/border.png);
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: -1;
  background-repeat: repeat;
  background-position: center;
}
a.btn:hover {
  background: #005bac;
}
a.button {
  display: block;
  border: #005bac 3px solid;
  border-radius: 11px;
  font-weight: 900;
  font-size: 18px;
  color: #ffffff;
  text-align: center;
  position: relative;
  padding: 23px 15px 23px 55px;
  max-width: 500px;
  margin: 40px auto 55px;
}
a.button span.pdf {
  font-weight: 600;
  font-size: 85%;
  border: 1px solid;
  padding: 2px 3px;
  margin-left: 10px;
}
a.button.button01 {
  background: #ec6d65;
}
a.button.button01:hover {
  background: #f7938c;
}
a.button.button02 {
  background: #0dac67;
}
a.button.button02:hover {
  background: #31ca88;
}
a.button.button03 {
  background: #005bac;
}
a.button.button03:hover {
  background: #2780ce;
}
a.button.button03:after {
  content: "使用言語：日本語および英語(同時通訳あり)";
  display: block;
  position: absolute;
  font-size: 14px;
  color: #005bac;
  margin: auto;
  right: 0;
  left: 0;
  bottom: -40px;
}
a.button.button04 {
  background: #ec6d65;
  margin-bottom: 0;
}
a.button.button04:hover {
  background: #f7938c;
}

/* -----------------------------------
ヘッダー、メニュー等
----------------------------------- */
#pc-header {
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(255, 255, 255, 0.8);
	width: 100%;
	height: 90px;
	z-index: 200000;
}
.logo {
	position: absolute;
	left: 2%;
	top: 30px;
	z-index: 200000;
}
.logo h1 {
	margin: 0 !important;
	padding: 0 !important;
	line-height: 0;
}
.logo img {
	width: 340px;
}
.logo a:hover img {
	opacity: 0.7;
}

#pc-navi {
	position: absolute;
	z-index: 3;
	top: 0;
	right: 0;
	padding: 30px;
}
#pc-navi ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 35px;
}
#pc-navi ul li {
  margin: 0;
  font-size: 20px;
}
#pc-navi ul li a {
  text-decoration: none;
  color: #522300;
  font-weight: bold;
}
#pc-navi ul li a:hover {
  color: #e85400;	
}

@media (max-width: 1099px) {
	#pc-header {
		height: 60px;
	}
	.logo {
		top: 22px;
	}
	.logo img {
		width: 240px;
	}
	#pc-navi {
		padding: 20px;
		right: 0;
	}
	#pc-navi ul {
	  gap: 20px;
	}
	#pc-navi ul li {
	  margin: 0;
	  font-size: 14px;
	}
}
@media (max-width: 768px) {
	.logo {
		top: 18px;
		left: 18px;
	}
	.logo img {
		width: 180px;
	}
}

nav#globalnav {
  min-height: 100vh;
  /* Fallback */
  min-height: calc(var(--vh, 1vh) * 100);
  width: calc(100vw - (100vw - 100%));
  position: fixed;
  top: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.5s;
  background-color: #fff;
  background-image: url(../img/bg_menu.png);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transform: translateY(-30px);
  z-index: 40;
}
nav#globalnav.checked {
  transform: translate(0);
}
nav#globalnav .inner {
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: scroll;
  height: calc(100vh - 50px);
}
nav#globalnav .inner::-webkit-scrollbar {
  display: none;
}
nav#globalnav.checked {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
button#menubtn {
  background: url(../img/bg_spnavi.png) no-repeat center center !important;
  background-size: cover;
  margin: 0;
  cursor: pointer;
  border: 0;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  position: fixed;
  top: 5px;
  right: 5px;
  transition: 0.4s;
  z-index: 100;
  color: #522300;
}
button#menubtn:hover {
  cursor: pointer;
  background: url(../img/bg_menu.png) no-repeat center center;
  background-size: cover;
}
button#menubtn.active {
  background: url(../img/bg_menu_active.png) no-repeat center center !important;
  background-size: cover !important;
}
button#menubtn.active:hover {
  background: url(../img/bg_menu_active.png) no-repeat center center;
  background-size: cover;
}
button#menubtn#inmenu {
  color: #ffffff;
}
button#menubtn#inmenu-back {
  opacity: 0;
  width: 100vw;
  height: 100vh;
  top: 0;
  right: 0;
  z-index: -1;
}
#sp-navi {
	position: relative;
}
#header_menu {
  max-width: 280px;
  margin: 0 auto;
  padding: 130px 15px 0;
}
#header_menu ul.menu {
  padding: 0 20px;
  margin-bottom: 30px;
}
#header_menu ul.menu li a {
  display: block;
  color: #522300;
  font-size: 18px;
  line-height: 2.5em;
  font-weight: 700;
  text-decoration: none;
}
#header_menu ul.menu li a::before {
  content: '●';
  color: #E1CDE0;
  font-size: 16px;
  margin-right: 10px;
}
#header_menu ul.menu li a:hover {
  color: #e85400;
}
.globalnav-in {
	position: relative;
}
.nav-chara {
	position: absolute;
}
.nav-chara1 {
	width: 114px;
	height: auto;
	top: 50px;
	left:20px;
}
.nav-chara2 {
	width: 72px;
	height: auto;
	top: 130px;
	right: 20px;
}
.nav-chara3 {
	width: 102px;
	height: auto;
	margin: 30px 0 0 40px;
}
.chara-anime1 {
  animation: floating-y1 1.8s ease-in-out infinite alternate-reverse;
}
@keyframes floating-y1 {
  0% {
    transform: translateY(5%);
  }
  100% {
    transform: translateY(-5%);
  }
}
.chara-anime2 {
  animation: floating-y2 1.8s ease-in-out infinite alternate-reverse;
}
@keyframes floating-y2 {
  0% {
    transform: translateY(-5%);
  }
  100% {
    transform: translateY(5%);
  }
}
.menu-trigger .menu-trigger-inner,
.menu-trigger .menu-trigger-inner span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}
.menu-trigger .menu-trigger-inner {
  position: relative;
  background: none;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  height: 13px;
  width: 30px;
  display: block;
  margin: 0 auto 2px;
}
@media (min-width: 768px) {
  .menu-trigger .menu-trigger-inner {
    margin: 4px auto 6px;
  }
}
.menu-trigger .menu-trigger-inner span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #522300;
  border-radius: 4px;
}
.menu-trigger .menu-trigger-inner span:nth-of-type(1) {
  top: 0;
}
.menu-trigger .menu-trigger-inner span:nth-of-type(2) {
  top: 8px;
}
@media (min-width: 768px) {
  .menu-trigger .menu-trigger-inner span {
    height: 3px;
  }
  .menu-trigger .menu-trigger-inner span:nth-of-type(2) {
    top: 10px;
  }
}
.menu-trigger.active .menu-trigger-inner {
  transform: rotate(360deg);
}
.menu-trigger.active .menu-trigger-inner span:nth-of-type(1) {
  transform: translateY(4px) rotate(-25deg);
}
.menu-trigger.active .menu-trigger-inner span:nth-of-type(2) {
  transform: translateY(-4px) rotate(25deg);
}
@media (min-width: 768px) {
  .menu-trigger.active .menu-trigger-inner span:nth-of-type(1) {
    transform: translateY(5px) rotate(-25deg);
  }
  .menu-trigger.active .menu-trigger-inner span:nth-of-type(2) {
    transform: translateY(-5px) rotate(25deg);
  }
}

/* -----------------------------------
サブページ共通
----------------------------------- */
.subpage {
	background-color: #E1CDE0;
	background-image: url(../img/bg_subpage.png);
	background-repeat: no-repeat;
	background-position: center top;
	position: relative;
	width: 100%;
	margin: 90px 0 0 !important;
	padding: 0 !important;
}
.subpage main {
	margin: 0;
	padding: 60px 0 0 !important;	
}
.subpage .titlearea {
	text-align: center;
	width: 100%;
	margin-bottom: 50px;
}
.subpage .titlearea p {
	font-size: 20px;
}
.subpage-contents {
	background: #fff;
	padding: 70px 100px !important;
}

@media (max-width: 1099px) {
	.subpage {
		margin: 60px 0 0 !important;
	}	
}
@media (max-width: 768px) {
	.subpage {
		background-image: url(../img/bg_subpage_sp.png);
		background-size: contain;
		margin: -30px 0 0 !important;
	}
	.subpage main {
		margin: 0;
		padding: 40px 0 0 !important;	
	}
	.subpage .titlearea {
		text-align: center;
		width: 100%;
		margin-bottom: 20px;
	}
  .subpage-contents {
		background: #fff;
		padding: 40px 60px !important;
	}
	.subpage .titlearea p {
		font-size: 14px;
	}
}
@media (max-width: 1030px) {
	.subpage-contents {
		padding: 5% !important;
	}
}
@media (min-width: 1340px) {
  .subpage .container {
    max-width: 1300px;
    padding-right: 0;
	padding-left: 0;
  }
}

.table-base {
	border: none;
	width: 100%;
	text-align: left;
	border-bottom: #522300 solid 6px;
	border-collapse:collapse;
	word-break: break-all;
}
.table-base th {
	border-top: #522300 solid 6px;
	background: #f8f3f8;
	padding: 15px 35px;
	font-size: 28px;
	font-weight: 600;
}
.table-base th span {
	font-size: 40px;
}
.table-base td {
	border-top: #522300 solid 2px;
	padding: 15px 35px;
	font-weight: 400;
	font-size: 18px;
	line-height: 1.8;
	vertical-align: middle;
}
.dot-border-r {
	background-image: url(../img/border_dot.gif);
	background-repeat: repeat-y;
	background-position: right 6px;
}

@media (max-width: 769px) {
	.table-base {
		border-bottom: #522300 solid 4px;
	}
	.table-base th {
		border-top: #522300 solid 4px;
		padding: 10px;
		font-size: 18px;
	}
	.table-base th span {
		font-size: 20px;
	}
	.table-base td {
		border-top: #522300 solid 1px;
		padding: 10px;
		font-weight: 400;
		font-size: 12px;
		line-height: 1.6;
	}
	.dot-border-r {
		background-image: url(../img/border_dot_sp.png);
		background-repeat: repeat-y;
		background-position: right 3px;
	}
}

/* -----------------------------------
フッタ
----------------------------------- */
footer {
	margin-top: 60px;
}
.subpage-footer {
	margin-top: 0 !important;
}
footer #footer {
	border-top: 4px solid #CAADC9;
	border-bottom: 4px solid #CAADC9;
	padding: 40px 0;
}
.footer-flex {
	align-items: flex-end;
	margin: 0 !important;
	padding: 0 !important;
}
.footer-flex p {
  text-align: left;
  font-size: 14px;
  line-height: 1.6em;
  margin: 0;
}
.footer-flex .col-md5 {
	margin-bottom: 0 !important;
}
.footer-flex .col-md7 {
	margin-bottom: 0 !important;
}
.footer-flex .col-md5 p {
	margin: 0 !important;
	padding: 0 !important;
}
.footer-flex .col-md5 img {
	width: 100%;
	max-width: 400px;
	margin: 20px 0;
}
.footer-flex .col-md7 p {
	margin-top: 20px;
}
.footer-flex .col-md7 img {
	vertical-align: bottom;
	margin-left: 20px;
	margin-top: 10px;
}
.footer-flex .col-md7 a:hover img {
	opacity: 0.7;
}
#footer-navi .only-pc {
	margin: 15px auto !important;
	font-size: 14px;
}
#footer-navi .only-pc a {
	color: #522300;
	text-decoration: none;
}
#footer-navi .only-pc a:hover {
	color: #e85400;
}
#copyright {
  margin: 15px auto !important;
  text-align: right;
  font-size: 12px;
}

@media (max-width: 768px) {
	footer #footer {
		padding: 15px 0 20px;
	}
	.footer-flex .col-md5 {
		margin-bottom: 0 !important;
	}
	.footer-flex .col-md5 img {
		margin: 12px 0;
	}
	.footer-flex .col-md7 img {
		vertical-align: middle;
		margin-left: 15px;
	}
	.fukui-univ {
		margin-left: 60px !important;
	}
	.footer-flex .col-md7 p {
		margin-top: 10px !important;
	}
	#copyright {
	  text-align: center;
	}
}


/* -----------------------------------
トップページ
----------------------------------- */
#heroimg {
  margin: 90px 0 0px !important;
  padding: 0px !important;
}

@media (max-width: 1099px) {
	#heroimg {
	  margin-top: 60px !important;
	}
}

@media (max-width: 768px) {
	#heroimg {
	  margin-top: -30px !important;
	}
}
#heroimg img {
  width: 100% !important;
  height: auto;
  position: relative;
  margin: 0 !important;
  line-height: 0;
}

@media (min-width: 500px) {
  section#heroimg .heroimg_item02 img.excerpt-pc {
    width: 100%;
    max-width: 650px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 768px) {
  section#heroimg .heroimg_item02 img.excerpt-pc {
    display: none;
  }
}

#top-texts {
	text-align: center;
}
#top-texts h3 {
	color: #e85400;
	font-size: 30px;
	margin-bottom: 20px;
}
#top-texts p {
	font-size: 18px;
}

@media (max-width: 768px) {
	#top-texts {
		text-align: left;
		margin-bottom: 40px;
	}
	#top-texts h3 {
		font-size: 18px;
		margin-bottom: 20px;
	}
	#top-texts p {
		font-size: 14px;
	}
}

#top-intro {
	background-image: url("../img/bg_topcontent.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center top;
	width: 100%;
	padding: 70px 0 0;
	text-align: center;
}
.intro-entrancefree {
	margin-bottom: 20px;
}
.intro-entrancefree img {
	max-width: 740px;
	width: 100%;
	height: auto;
}
.intro-banners a img {
	transition-duration: .4s;
} 
.intro-banners a:hover img {
	transform: translateY(-10px);
}
.intro-movie {
	padding: 190px 0;
}
.intro-movie h2 {
	margin: 0 !important;
	padding: 0 !important;
}
.intro-movie h2 img {
	width: 174px;
	height: auto;
}
.intro-movie a:hover img {
	opacity: 0.7;
}

@media (max-width: 768px) {
	#top-intro {
		margin-top: -5%;
		background-image: url("../img/bg_topcontent_sp.png");
		background-size: contain;
		padding: 5% 0 0;
	}
	.intro-entrancefree {
		margin-bottom: 10%;
	}
	.intro-entrancefree{
		padding: 0 5%;
	}
	.intro-banners a img {
		max-width: 310px;
		margin-bottom: 3%;
	}
	.intro-movie {
		padding: 0 0 25%;
		background-image: url("../img/bg_movie_sp.png");
		background-size: 100% auto;
		background-repeat: no-repeat;
		background-position: center bottom;
		width: 112%;
		margin-left: -6%;
	}
	.intro-movie h2 img {
		max-width: 160px;
		width: 100%;
		height: auto;
	}
	.intro-movie a img {
		margin: 0 10%;
		width: 80%;
	}
}

#top-access {
	padding: 0;
	text-align: center;
}
#top-access h2 {
	margin: 0 !important;
	padding: 0 !important;
	line-height: 0 !important;
}
#top-access h2 img {
	width: 160px;
	height: auto;
}
#top-access .only-pc p {
	text-align: left;
	padding-top: 20px !important;
}
#top-access .except-pc img {
	display: block;
	max-width: 440px;
	width: 100%;
	margin: 0 auto 10px;
}
#top-access .except-pc p {
	max-width: 440px;
	margin: 30px auto;
	text-align: left;
	line-height: 1.6em;
}
#top-access p strong {
	display: block;
	font-size: 18px;
	margin-bottom: 50x;
}

@media (min-width: 768px) {
  #top-access h2 {
		text-align: left;
	}
	#top-access h2 img {
		width: 220px;
	}
}

/* -----------------------------------
プログラム
----------------------------------- */

#program-page h1 img {
	width: 382px;
	height: auto;
}
#program-page h2 {
	margin: 70px auto 40px;
}
#program-page h2 img {
	width: 200px;
	height: auto;
}
#program-page td h3 {
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 10px;
}
#program-page .subpage-contents p {
	font-size: 20px;
	line-height: 1.8;
}
.program-time {
	font-size: 24px !important;
	font-weight: 400;
	width: 240px;
	text-align: center;
}
.program-lecture {
	background: #f8f3f8;
  font-size: 20px;
  display: inline-block;
  padding: 5px 10px 5px 20px;
  position: relative;
  line-height: 1.4;
  margin-right: 30px;
}
.program-lecture2 {
	background: #f8f3f8;
  font-size: 20px;
  display: inline-block;
  padding: 5px 10px 5px 20px;
  position: relative;
  line-height: 1.4;
  margin-right: 30px;
}
.program-lecture::after {
	content: "";
  position: absolute;
  top: 0;
  right: -20px;
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 20px solid #f8f3f8;
}
img.icon-pdf {
	width: 16px;
	vertical-align: middle;
	margin-top: -3px;
}
img.icon-video {
	width: 30px;
	vertical-align: middle;
	margin-top: -3px;
}
#program-page td a.link-pdf {
	color: #E85400;
	text-decoration: underline;
}
#program-page td a.link-pdf:hover {
	text-decoration: none;
}
.program-btns {
}
.program-btns a {
	margin-top: 10px;
	display: inline-block;
	background: #FFF148;
	border-radius: 10px;
	padding: 12px 22px;
	font-size: 17px;
	color:#522300;
	margin-right: 15px;
	text-decoration: none;
}
.program-btns a:hover {
	background:#f2e005;
}

@media (max-width: 768px) {
	#program-page h1 img {
		width: auto;
		height: 52px;
	}
	#program-page h2 img {
		width: 120px !important;
		height: auto;
	}
	#program-page h2 {
		margin: 30px auto 20px;
	}
	#program-page .subpage-contents p {
		font-size: 14px;
		line-height: 1.8;
	}
	.program-time {
		font-size: 14px !important;
		width: 60px;
		padding-left: 0;
		padding-right: 0;
	}
	#program-page td h3 {
		font-size: 16px;
		font-weight: 500;
		margin-bottom: 8px;
	}
	.program-lecture {
	  font-size: 12px;
	  padding: 5px 5px 5px 10px;
	  position: relative;
	  line-height: 1.4;
	  margin-right: 30px;
	  margin-bottom: 7px;
	}
	.program-lecture2 {
	  font-size: 12px;
	  padding: 5px 5px 5px 10px;
	  position: relative;
	  line-height: 1.4;
	  margin-right: 30px;
	  margin-bottom: 7px;
	}
	.program-lecture::after {
	  right: -12px;
	  width: 0;
	  height: 0;
	  border-top: 14px solid transparent;
	  border-bottom: 14px solid transparent;
	  border-left: 14px solid #f8f3f8;
	}
	img.icon-pdf {
		width: 10px;
		vertical-align: middle;
		margin-top: 0;
	}
	img.icon-video {
		width: 20px;
		vertical-align: middle;
		margin-top: 0;
	}
	.program-btns a {
		margin-top: 5px;
		border-radius: 8px;
		padding: 10px 15px;
		font-size: 10px;
		margin-right: 5px;
	}

}

/* -----------------------------------
ブース
----------------------------------- */
#booth-page h1 img {
	width: 262px;
	height: auto;
}
#booth-page th {
	border-bottom: #522300 solid 6px;
	text-align: center;
}
#booth-page td {
	font-size: 24px;
	padding-top: 20px;
	padding-bottom: 20px;
}
.circle-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #522300;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  margin-right: 20px;
}

@media (max-width: 768px) {
	#booth-page h1 img {
		width: auto;
		height: 52px;
	}
	#booth-page th {
		border-bottom: #522300 solid 4px;
	}
	#booth-page td {
		font-size: 14px;
		padding: 7px 10px;
	}
	#booth-page td.dot-border-r {
		width: 140px;
		vertical-align: top;
	}
	.circle-number {
	  display: inline-flex;
	  align-items: center;
	  justify-content: center;
	  width: 20px;
	  height: 20px;
	  border-radius: 50%;
	  background: #522300;
	  color: #fff;
	  font-size: 12px;
	  font-weight: bold;
	  margin-right: 5px;
	}
}


/* -----------------------------------
過去のシンポジウム
----------------------------------- */
#symposia-page h1 img {
	width: 742px;
	height: auto;
}
#symposia-page th {
	border-bottom: #522300 solid 6px;
	text-align: center;
}
#symposia-page td {
	font-size: 24px;
	padding-top: 20px;
	padding-bottom: 20px;
}
#symposia-page td a {
	color: #522300;
	text-decoration: none;
}
#symposia-page td a:hover {
	color: #E85400;
	text-decoration: none;
}

@media (max-width: 768px) {
	#symposia-page h1 img {
		width: auto;
		height: 52px;
	}
	#symposia-page th {
		border-bottom: #522300 solid 4px;
	}
	#symposia-page td {
		font-size: 16px;
		padding-top: 15px;
		padding-bottom: 15px;
	}
}


/* -----------------------------------
リスト
----------------------------------- */
ul.ul {
  list-style: disc;
}
ul.ul li {
  margin-left: 30px;
  margin-bottom: 10px;
}

ol.ol li {
  margin-left: 30px;
  margin-bottom: 10px;
}