@charset "UTF-8";
/*--------------------------------------------------------------
reset.min.css
リセット関係・clearfixなど

fonts.min.css
フォントアイコンを記載したcss

common.css
レイアウト、TOPのスタイルを記載したcss

sub.css
下層のレイアウトを記載したcss
--------------------------------------------------------------*/
/* fontIcon
:before,
:after {
	content: "\f099";
	font-family: "icomoon";
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	font-weight: 900;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
}
/* google font 

font-family: 'Lato', sans-serif;
font-family: 'Noto Sans JP', sans-serif;
font-family: 'Oswald', sans-serif;

英語
font-family: 'Source Sans 3',
sans-serif;
/* ------------------------------------------------------------ */
/* 全デバイス/画面サイズに共通 かつ 
　　479：スマートフォン縦：基本・レイアウト指定 */
/* ------------------------------------------------------------ */
* html body {
  background: url(../../../../../../index.html) fixed;
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
}
/*ナビ表示のときはスクロールしないように*/
html.is-locked {
  overflow-y: hidden;
}
body {
  margin: 0;
  padding: 0;
  background: #f3f5f7;
  color: #595757;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400;
  font-style: normal;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI",
    "Helvetica Neue", HelveticaNeue, Verdana, Meiryo, sans-serif;
  overflow-wrap: break-word;
  text-size-adjust: 100%;
  font-feature-settings: "palt";
  letter-spacing: 1.6px;
}
.sp {
  display: block;
}
.pc {
  display: none;
}
.pc1024 {
  display: none;
}
@media (min-width: 751px) {
  /*電話番号リンクをスマホのみ有効にする*/
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/* ------------------------------------------------------------ */
/* img */
/* ------------------------------------------------------------ */
.main-logo,
.thum,
.image,
.banner {
  text-align: center;
}
/* ------------------------------------------------------------ */
/* link */
/* ------------------------------------------------------------ */
::selection {
  color: #383838;
  background: rgba(0, 0, 0, 0.1);
  text-shadow: none;
}
::-moz-selection {
  color: #383838;
  background: rgba(0, 0, 0, 0.1);
  text-shadow: none;
}
a {
  color: #3e463b;
  cursor: pointer;
  line-height: inherit;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
a:link {
  color: #3e463b;
  text-decoration: none;
}
a:visited {
  color: #3e463b;
  text-decoration: none;
}
a:hover {
  color: #3e463b;
  opacity: 0.8;
  text-decoration: none;
}
a:active {
  color: #3e463b;
  text-decoration: none;
}
/* ------------------------------------------------------------ */
/* ボタン */
/* ------------------------------------------------------------ */
.btn {
  text-align: center;
  height: auto;
  padding: 0.3em 0;
  margin: 1em auto;
}
.btn a {
  position: relative;
  width: 100%;
  display: inline-block;
  text-align: center;
  font-weight: 600;
  color: #fff;
  background: #01a68d;
  border: 2px solid #01a68d;
  border-radius: 30px;
  padding: 0.6em 2em;
  margin: 0.5em 0;
}
.btn a:hover {
  color: #3f4141;
  background: #fff;
  border: 2px solid #01a68d;
}
/*
.btn a::after {
  position: absolute;
  content: "\e910";
  font-family: "icomoon";
  width: 20px;
  height: 26px;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  transition: all .3s linear;
}
*/
.btn a:hover::after {
  right: 10px;
}

p.btn_gray {
  width: 210px;
  padding: 0.5em;
  text-align: center;
  color: #fff;
  background: #999;
  border-radius: 30px;
  margin: 1em auto;
}

.content_btn {
  width: 48%;
  text-align: center;
  font-weight: 600;
  color: #fff;
  background: #01a68d;
  /*
  color: #fff;
  background: #11A68D;
*/
  border-radius: 30px;
  padding: 0.3em 0;
  margin: 0.5em 0;
}
.english_btn {
  text-align: center;
  font-family: "Oswald", sans-serif;
}
.english_btn a {
  background: #01a68d;
  color: #fff;
  padding: 0.3em 1.8em;
  border-radius: 30px;
}
.sponsor_btn a {
  display: inline-block;
  background: #fff;
  color: #3f4141 !important;
  padding: 0.3em 1em;
  border-radius: 30px;
  margin: 0 auto;
}
/* ------------------------------------------------------------ */
/* common layouts */
/* ------------------------------------------------------------ */
.wrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.inner {
  width: 100%;
  max-width: 100%;
  height: auto;
  padding: 0 1em;
  margin: 0 auto;
  clear: both;
}
.inner::after {
  content: "";
  clear: both;
  display: block;
}
/* ------------------------------------------------------------ */
/* header */
/* ------------------------------------------------------------ */
.main-header {
  position: relative;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  top: 0;
  left: 0;
  z-index: 9999;
  /* スマホ用の慣性スクロール */
  -webkit-overflow-scrolling: touch;
  padding: 0.5em;
}
.show-nav .main-header {
  position: fixed;
}
.main-header.is_fixed {
  position: fixed;
  /*  height: 102px;*/
  background: url("../img/mv82.png") center / 260% no-repeat;
  box-shadow: 15px 15px 30px rgb(0, 0, 0, 0.3);
  display: flex;
  animation: DownHeader 0.5s forwards;
}
@keyframes DownHeader {
  0% {
    opacity: 0;
    transform: translateY(-170px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.main-header .main-logo {
  position: relative;
  font-size: 2rem;
  font-weight: 500;
  text-align: left;
}
.main-header .main-logo a {
  color: #fff;
}
.main-header .main-logo a span,
.mv_logo span {
  display: block;
  width: 80%;
  font-size: 1rem;
}
.main-header .flx_box {
  align-items: flex-start;
}
/* hamburger */
.hamburger {
  position: absolute;
  width: 32px;
  height: 22px;
  top: 30px;
  right: 22px;
}
.hamburger button {
  min-height: inherit;
  position: relative;
  width: 100%;
  height: 100%;
  outline: none;
}
.hamburger span {
  height: 2px;
  width: 100%;
  display: block;
  background: #fff;
  transition: all 0.3s ease-in-out;
  position: absolute;
  left: 0;
}
.hamburger span:first-of-type {
  top: 0;
}
.hamburger span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
.hamburger span:nth-of-type(3) {
  bottom: 0;
}
.hamburger.is-open span:first-of-type {
  top: 10px;
  transform: rotate(45deg);
}
.hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}
.hamburger.is-open span:nth-of-type(3) {
  top: 10px;
  transform: rotate(-45deg);
  left: 0;
}
.main-header .header_btnbox {
  margin: 1.5em 1em;
  align-items: center;
}
#searchform {
  position: relative;
  display: flex;
  width: 200px;
  background: #fff;
  border-radius: 30px;
  padding: 0 0.8em;
  margin: 0 1em 0 0;
}
#searchform label.search_txt {
  margin: 0 1em 0 0;
}
#searchform label.search_txt input[type="text"] {
  border: 0;
  cursor: text;
  /*  box-shadow: 0 0 1px 0 rgba(0,0,0,0.5);*/
}
#searchform label.search_txt input[type="text"]:focus {
  /*  box-shadow: 0 0 1px 0 rgba(255,153,0,1);*/
  outline: 0;
}
#searchform label.search_btn {
  top: 0;
  right: 1.5em;
  cursor: pointer;
}
#searchform label.search_btn input[type="submit"] {
}
/*
.fa-search::before {
  font-family: 'icomoon';
  content: "\e986";
  font-weight: 400;
  
}
*/
/* ------------------------------------------------------------ */
/* gnav */
/* ------------------------------------------------------------ */
.spnav {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  z-index: 999;
  -webkit-transition: transform 0.3s;
  transition: transform 0.3s;
  background: url("../img/mv82.png") center / cover no-repeat;
}
.show-nav .spnav {
  transform: translateX(0);
  pointer-events: auto;
  overflow-y: auto;
  text-align: center;
}
.spnav_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: auto;
  opacity: 0;
  position: relative;
  padding: 110px 0 1.5em;
  z-index: 999;
}
.show-nav .spnav_inner {
  opacity: 1;
  transition: 1.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.3s;
}
.hidden-nav.overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  display: block;
  background: rgba(0, 0, 0, 0.2);
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 10;
}
.show-nav .hidden-nav.overlay {
  opacity: 1;
  visibility: visible;
}
.spnav .reserve_fixed {
  margin: 0 0 1em 0;
}
/* ------------------------------------------------------------ */
/* nav-menu */
/* ------------------------------------------------------------ */
.nav-menu {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  margin: 0 auto;
}
.menu-item {
  margin: 1em 0;
}
.menu-item > a,
.menu-item > p {
  position: relative;
  display: block;
  width: 100%;
  color: #fff;
  font-weight: 500;
  line-height: 1.5;
  overflow: hidden;
  z-index: 2;
}
[class*=" fa-"],
[class^="fa-"] {
  line-height: 1.5;
}
.menu-item > p {
  width: 60%;
  margin: 0 auto;
}
.menu-item > p .ttl_lang,
.menu-item a .ttl_lang {
  display: block;
  font-size: 1.4rem;
  color: #595757;
}
.menu-item.sns_area > a {
  display: inline;
}
.menu-item.workshop {
  position: relative;
}
.menu-item.sns_area {
  display: flex;
  justify-content: center;
  text-align: center;
  margin: 2em;
}
.menu-item.sns_area a {
  border: 1px solid #595757;
  border-radius: 50%;
  font-size: 2rem;
  display: block;
  width: 35px;
  height: 35px;
  margin: 0 1em;
}
.facebook,
.instagram {
  width: 35px;
  height: 35px;
  margin: 0 0.5em;
}
.facebook a,
.instagram a {
  border: 1px solid #333;
  border-radius: 50%;
  font-size: 2rem;
  display: block;
  width: 100%;
  height: 100%;
}
.facebook a span,
.instagram a span {
  display: inline-block;
  padding: 0 0 0.3em 0.4em;
}
.facebook a:hover {
  color: #1877f2;
}
.instagram a:hover {
  color: #cf2e92;
}
/*アコーディオン*/
.menu-item .nav_ttl {
  position: relative;
  /*  padding-right: 3em;*/
}
.menu-item .nav_ttl::before {
  content: "";
  display: block;
  width: 1em;
  height: 2px;
  background: #357d54;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.menu-item .nav_ttl::after {
  content: "";
  display: block;
  width: 2px;
  height: 1em;
  background: #357d54;
  position: absolute;
  top: 50%;
  right: 0.5em;
  transform: translate(50%, -50%);
}
.menu-item .nav_ttl.is-open::after {
  content: none;
}
.nav_cnt {
  display: none;
}
.nav_cnt.is-open {
  display: block;
}
.nav-child li a {
  display: block;
  padding: 0.8em 1.5em;
  font-size: 1.6rem;
}
/* ------------------------------------------------------------ */
/* mainvisual */
/* ------------------------------------------------------------ */
.mainvisual {
  position: relative;
  padding: 3em 0;
}
.mainvisual::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 786px;
  top: -135px;
  left: 0;
  background: url(../img/mv_02.svg) -43% 83% / 170% no-repeat,
    url(../img/mv82.png) center / cover no-repeat;
  /*  transform: rotate(30deg) scale(-1, 1);*/
  z-index: -2;
}
.mainvisual .mv {
  position: absolute;
  top: 60%;
  right: 0;
  width: 90%;
}
/*
.mainvisual .mv::before {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  background: url("../img/koushou_hiroshima.png") center /contain no-repeat;
}
*/
.mainvisual .mv img {
  border-radius: 50px 0 0 50px;
}
/*
.mainvisual::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 60vh;
  top: -80px;
  left: 0;
  background: url(../../../../../../index.html) center / cover no-repeat;
  transform: rotate(30deg) scale(-1, 1);
  z-index: -1;
}
*/
.mainvisual .mv_logo {
  font-size: 2.8rem;
  font-weight: 500;
  padding: 0 0 0 0.5em;
  color: #fff;
}
.mainvisual .mv_ttl {
  font-size: 2.6rem;
  line-height: 1.5;
  font-weight: 500;
  white-space: nowrap;
  color: #fff;
  padding: 0 0 6em 0.5em;
}
.mainvisual .mv_ttl span {
  display: inline-block;
}
.mainvisual .mv_ttl .small {
  font-size: 1.4rem;
  margin: 0 0.3em;
}
.mainvisual .mv_ttl .en {
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 1.4rem;
}
.mainvisual .mv_ttl .point {
  display: block;
  width: 130px;
  font-size: 1.4rem;
  text-align: center;
  font-weight: 700;
  background: #fff;
  color: #041aba;
  padding: 0.1em 0.5em;
  border-radius: 6px;
  margin: 0.5em 0;
}
.mainvisual .mv_ttl .flx_box.date_catch {
  flex-direction: column;
}
.mainvisual .mv_ttl .flx_box.date_catch > .flx_item:nth-of-type(1) {
  margin: 0;
}
.mainvisual .mv_ttl .flx_box {
  font-size: 3.5rem;
  justify-content: flex-start;
  margin: 0.5em 0 0 0;
}
.mainvisual .mv_ttl .flx_box .num {
  text-align: center;
  line-height: 1.3;
}
.mainvisual .mv_ttl .flx_box .num:nth-of-type(3) {
  margin-right: 0.5em;
}
.mainvisual .mv_ttl .flx_box .num:nth-of-type(4) {
  margin-right: 0.5em;
}
.mainvisual .mv_ttl .flx_box .num:nth-of-type(5) {
  margin-right: 0.5em;
}
/* ------------------------------------------------------------ */
/* common content */
/* ------------------------------------------------------------ */
.content {
  width: 100%;
  height: auto;
  min-height: 50vh;
  position: relative;
  /*  padding-top: 60vh;*/
  margin: 0 auto;
  z-index: 3;
}
.base {
  width: 100%;
  height: auto;
  /*  position: relative;*/
  padding: 2.5em 0;
  margin: 0 auto;
}
.bg_color {
  background: #eaeaea;
}
.swiper-slide {
  width: 100%;
  height: 100%;
}
.swiper-slide img {
  object-fit: cover;
  height: 400px;
}
.wht_box {
  /*  width: 95%;*/
  background: #fff;
  box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.2);
  padding: 0 0 2em 0;
  /*  margin: 1em auto;*/
  margin: 1em 0.5em;
}
section {
  position: relative;
  z-index: 1;
}
/* amnimation */
.animationTarget {
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  transition: 1s;
}
.animationTarget.left {
  transform: translateX(-50px);
}
.animationTarget.right {
  transform: translateX(50px);
}
.animationTarget.show,
.animationTarget.left.show,
.animationTarget.right.show {
  transform: none;
  opacity: 1;
}
/*
  opacity: 0;
  transform: translateY(50px);
  transition: 1s;
*/
/*
.animationTarget.show {
  opacity: 1;
  transform: none;
}
*/
.p {
  margin: 1em 0;
}
.mv-slider img {
  width: 100%;
}
section .imgbox {
  width: 100%;
  margin: 0 0 1em 0;
}
section .imgbox img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}
a.link {
  display: inline-block;
  letter-spacing: 0;
  font-size: 0.8em;
  text-decoration: underline solid #aaa 1px;
  text-underline-position: under;
  line-height: 1.4;
  word-break: break-all;
}
p.comment {
  font-weight: bold;
  font-size: 1.4rem;
}
p.notice {
  text-align: center;
  color: #01a68d;
  font-weight: 600;
}
.scale_img {
  overflow: hidden;
}
.scale_img img {
  transition: all 0.3s;
}
a:hover .scale_img img {
  transform: scale(1.2);
}
.top #sec01,
.top #sec02,
.main-footer {
  position: relative;
  z-index: 1;
}
.top #sec01::before {
  position: absolute;
  content: "";
  background: url("../img/bg_02.svg") center / contain no-repeat;
  top: -100px;
  left: -50px;
  width: 200px;
  height: 200px;
  z-index: -1;
}
.top #sec02::before {
  position: absolute;
  content: "";
  background: url("../img/bg_01.svg") center / contain no-repeat;
  top: -100px;
  left: -50px;
  width: 200px;
  height: 200px;
  z-index: -1;
}
.top #sec02::after {
  position: absolute;
  content: "";
  background: url(../img/bg_01.svg) center / contain no-repeat;
  bottom: -100px;
  right: -53px;
  transform: rotate(45deg);
  width: 200px;
  height: 200px;
  z-index: -10;
}
#topics .main_ttl,
#content .main_ttl,
#schedule .main_ttl {
  color: #fff;
  /* background: #0e5cd3; */
  background: #4366b0;
  padding: 0.5em 0 0.1em;
}
/* textAnimation */
@keyframes showTextFromBottom {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0%);
  }
}
.textAnimation span {
  display: inline-block;
}

.textAnimation span {
  display: inline-block;
}
.textAnimation > span {
  overflow: hidden;
}
.textAnimation > span > span {
  animation: showTextFromBottom 1s backwards;
}
.timetable_img {
  margin: 1em 0;
}
#content .program_box .programimg {
  display: block;
  width: 202px;
  height: 286px;
  background: rgba(0, 0, 0, 0.1);
  text-align: center;
  line-height: 17;
  color: #01a68d;
  font-weight: 700;
  margin: 0 auto;
}

.table {
  margin: 0 0 2em 0;
}
.table a:hover dt,
.table a:hover dd {
  opacity: 0.8;
}
.table dl,
#table tr {
  width: 100%;
  border-bottom: 1px solid #b2b2b2;
  padding: 0.8em 0;
}
.table dt,
#table td:first-child {
  font-size: 1.4rem;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
}
#table td {
  padding: 1em 0;
}
.table dd,
#table td:nth-of-type(2) {
  font-weight: 600;
  line-height: 1.5;
  color: #134071;
}
#access .table dl {
  padding: 0.8em 0 0.3em;
}
#access .table dt {
  font-size: 1.4rem;
  margin: 0 0 0.5em 0;
}
#access .table dd {
  font-size: 1.4rem;
  font-weight: 400;
  color: #595757;
}
.p_bold {
  font-weight: 600;
}
.top #sec01 .flx_box {
  flex-direction: column;
  margin: 0 0 1em 0;
}
.top #sec02 {
  background: #2e3d4a;
  padding: 3em 0;
}
.top #sec02 .flx_box {
  flex-direction: column;
}
#access,
#areamap {
  width: 95%;
  background: #fff;
  padding: 2em 0;
  margin: 1em auto;
}
#access .main_ttl,
#areamap .main_ttl {
  color: #2e3d4a;
}
#access .googlemap iframe {
  width: 100%;
}
#access .p_bold {
  text-align: center;
}
#schedule {
  margin: 0 0.5em 4em;
}
/*
#schedule .main_ttl {
  color: #fff;
  background: #0E5CD3;
  background: #4366b0;
  padding: 0.3em 0;
}
*/
/* 内容が入ったら削除 */
.p.notice {
  height: 240px;
  width: 240px;
  background: rgba(0, 0, 0, 0.1);
  text-align: center;
  line-height: 15;
  margin: 1em auto;
}

/* ここまで */
.note {
  font-size: 1.2rem;
  margin: 1em 0;
}
#content .program_box {
  flex-direction: column;
  align-items: center;
}
#content .program_box img {
  display: block;
  margin: 0 auto;
}
/* ------------------------------------------------------------ */
/* ttl */
/* ------------------------------------------------------------ */
.main_ttl {
  font-family: "Lato", sans-serif;
  font-size: 2.8rem;
  line-height: 1.4;
  margin: 0 auto 1em;
  text-align: center;
}
.sub_ttl {
  position: relative;
  font-size: 1.8rem;
  padding: 0 0 0 1em;
  margin: 1em 0 0;
}
.sub_ttl:before {
  position: absolute;
  content: "";
  width: 7px;
  height: 100%;
  /* background: #0e5cd3; */
  background: #4366b0;
  left: 0;
  top: 0;
}
.en_ttl {
  display: block;
  color: #357d54;
  font-family: "Source Sans 3", sans-serif;
  letter-spacing: 0.3rem;
  font-weight: 500;
}
/* ------------------------------------------------------------ */
/* flx_box */
/* ------------------------------------------------------------ */
.flx_box {
  display: flex;
  justify-content: space-between;
  /*  flex-direction: column;*/
  /*  flex-wrap: wrap;*/
}
.sche.flx_box {
  flex-direction: column;
}
.flx_item {
  margin: 0 0 1em 0;
  width: 100%;
}
/* ------------------------------------------------------------ */
/* list */
/* ------------------------------------------------------------ */
.pointList {
  margin: 0 auto 1em;
}
.pointList li {
  position: relative;
  padding-left: 1em;
  margin: 0 auto 0.5em;
}
.pointList li::before {
  content: "";
  display: block;
  position: absolute;
  width: 5px;
  height: 5px;
  background: #000;
  border-radius: 50%;
  top: 0.75em;
  left: 3px;
}

/* ------------------------------------------------------------ */
/* banner_area */
/* ------------------------------------------------------------ */

.banner_area {
  background: #fff;
}

.banner_area .flx_box {
  flex-wrap: wrap;
  padding: 0.5em 0;
}
.banner_area .flx_box.flx_4cols .flx_item {
  width: calc(100% / 2 - 1em);
  text-align: center;
  padding: 1.5em 0;
  margin: 0 0.5em;
}

/* ------------------------------------------------------------ */
/* animation */
/* ------------------------------------------------------------ */
@keyframes fadeInup {
  0% {
    opacity: 0;
    transform: translateY(50%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIndown {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}
.fadeInup {
  opacity: 0;
  animation: fadeInup 2s ease-in-out 0.3s 1 forwards;
}
.fadeIn {
  opacity: 0;
  animation: fadeIn 2s ease-in-out 2.5s 1 forwards;
}
/*
.inview {
  opacity: 0;
}
*/
/* ------------------------------------------------------------ */
/* form  */
/* ------------------------------------------------------------ */
.form_box {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.form_box .hissu {
  display: inline-block;
  padding: 5px;
  margin: 0 5px;
  font-size: 0.8em;
  line-height: 1;
  color: #fff;
  background: #ff005b;
}
.form_box dl {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 1em 0;
}
.form_box dt {
  width: 100%;
  font-weight: bold;
  padding: 5px 0;
}
.form_box dd {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.form_box span {
  display: inline-block;
  margin: 0 5px;
}
.form_box .note {
  padding: 5px;
  font-size: 0.8em;
  color: #ff005b;
  letter-spacing: 0;
}
.form_box input[type="tel"],
.form_box input[type="text"],
.form_box select,
.form_box textarea {
  border: 1px solid #bfbfbf;
  vertical-align: middle;
}
.form_box input[type="text"].sizeS {
  width: 40%;
  max-width: 150px;
}
.form_box label.select {
  width: 100%;
  position: relative;
}
.form_box label.select::before {
  content: "▼";
  display: block;
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  font-size: 0.7em;
  pointer-events: none;
}
.form_box label.select select {
  padding-right: 2em;
}
.form_box label.check,
.form_box label.radio {
  display: inline-block;
  margin-right: 1em;
}
/* .form_box label.radio {
  position: relative;
  padding-left: 1.8em;
} */
.form_box input[type="text"],
.form_box textarea,
.form_box label.select select {
  appearance: none;
}
.form_box input[type="text"]:focus,
.form_box textarea:focus,
.form_box label.select select:focus {
  outline: 0;
  box-shadow: 0 0 5px 2px rgb(165, 214, 210);
}
.form_box label.radio input[type="radio"],
.form_box label input[type="checkbox"] {
  position: relative;
  appearance: none;
  border: 1px solid #ddd;
  width: 20px;
  height: 20px;
}
.form_box label.radio input[type="radio"] {
  /* position: absolute;
  display: inline-block;
  vertical-align: middle;
  background: #fff;
  appearance: none; */
  border-radius: 50%;
  /* border: 1px solid #ddd; */
  /* width: 20px;
  height: 20px; */
  /* top: 4px;
  left: 0;
  padding: 0;
  margin: 0; */
}
.form_box input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  background: #000;
  width: 13px;
  height: 13px;
  display: inline-block;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.form_box label input[type="checkbox"]:checked::after {
  content: "\e908";
  position: absolute;
  color: #000;
  font-family: "icomoon";
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: 900;
  /* text-rendering: auto;
	-webkit-font-smoothing: antialiased; */
}
.submit-item {
  text-align: center;
  padding: 2em 0;
}
.submit-item input[type="button"],
.submit-item input[type="reset"],
.submit-item input[type="back"],
.submit-item input[type="submit"] {
  font-weight: bold;
  display: inline-block;
  letter-spacing: 0.075em;
  min-width: 200px;
  color: #fff;
  background: #ff005b;
  border: 2px solid #ff005b;
  margin: 0 auto;
  padding: 12px 1em;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.submit-item input[type="button"]:hover,
.submit-item input[type="reset"]:hover,
.submit-item input[type="back"]:hover,
.submit-item input[type="submit"]:hover {
  background: #fff;
  color: #ff005b;
}
/* ------------------------------------------------------------ */
/* footer */
/* ------------------------------------------------------------ */
.main-footer {
  position: relative;
  width: 100%;
  /*  padding: 0 5%;*/
  background: url("../img/footer82.png") center / cover no-repeat;
  color: #fff;
  margin: 0 auto;
  z-index: 2;
}
.main-footer .logo {
  font-weight: 500;
}
.main-footer .pagetop {
  position: absolute;
  width: 65px;
  height: 65px;
  right: 10px;
  top: -100px;
  text-align: center;
}
.main-footer .pagetop a {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  font-family: "Source Sans 3", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.2rem;
  line-height: 1.5;
  padding: 0.8em 0;
  color: #595757;
  background: #fff;
  border: 1px solid #595757;
  border-radius: 50%;
}
.main-footer .logo {
  font-size: 2rem;
  padding: 1em 0;
}
.main-footer .logo span {
  display: block;
  font-size: 1rem;
  width: 80%;
}
.main-footer .flx_box {
  display: flex;
  flex-direction: column;
}
.main-footer .flx_box .flx_item {
  text-align: left;
  margin: 1em 0;
}
.main-footer a {
  color: #fff;
}
.main-footer .address {
  text-align: right;
  font-size: 1.4rem;
}
.copy {
  padding: 3em 0 1em;
  text-align: center;
  font-size: 1rem;
}
@media screen and (min-width: 336px) {
  .mainvisual::before {
    height: 745px;
  }
}
@media screen and (min-width: 480px) {
  /* スマートフォン横 */
  .sp {
    display: block;
  }
  .spnav {
    width: 350px;
  }
  .base {
    padding: 3em 0;
  }
  .wh_box {
    padding: 3% 4%;
  }
  .mainvisual::before {
    height: 800px;
  }
  .mainvisual .mv {
    top: 50%;
  }
  .mainvisual .mv_ttl {
    padding: 0 0 8em 0.5em;
  }
  /* ------------------------------------------------------------ */
  /* flx_box */
  /* ------------------------------------------------------------ */
  /* 2カラム */
  .flx_2cols .flx_item {
    width: calc(100% / 2 - 0.5em);
  }
  /* 3カラム */
  .flx_3cols .flx_item {
    width: calc(100% / 3 - 0.5em);
  }
  /* 4カラム */
  .flx_4cols .flx_item {
    width: calc(100% / 4 - 0.5em);
  }
  /* ------------------------------------------------------------ */
  /* form  */
  /* ------------------------------------------------------------ */
  .form_box dt {
    width: 25%;
    padding-right: 1em;
  }
  .form_box dd {
    width: 75%;
  }
}
@media screen and (min-width: 700px) {
  /* デスクトップ/タブレット横 */
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
  /* main-header */
  .main-header {
    padding: 0 1em;
  }
  .main-header .main-logo {
    margin: 0.8em;
    width: 100%;
  }
  .main-header.is_fixed .main-logo {
    width: 500px;
    margin: 0.5em;
  }
  .main-header .main-logo span {
    display: block;
    /*    font-family: 'Oswald', sans-serif;*/
    font-size: 1rem;
  }
  .mainvisual::before {
    height: 62.5vh;
    top: -108px;
    background: url(../img/mv_02.svg) -233% -250% / 121% no-repeat,
      url(../img/mv82.png) center / cover no-repeat;
  }
  /*
  .mainvisual .mv::before {
    width: 100px;
    height: 100px;
  }
*/
  .main-header .flx_box {
    flex-wrap: nowrap;
  }
  .gnav {
    position: absolute;
    width: 68%;
    background: #fff;
    left: 0;
    padding: 0 2em;
    border-radius: 0 30px 30px 0;
    box-shadow: 15px 15px 30px rgb(0, 0, 0, 0.3);
  }
  .main-header.is_fixed .gnav {
    width: 58%;
    right: 0;
    left: auto;
    top: 67px;
    border-radius: 30px 0 0 30px;
    padding: 0 1em;
  }
  .main-header.is_fixed > .flx_box {
    width: 100%;
    justify-content: space-between;
  }
  .main-header.is_fixed .flx_box.header_btnbox {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-end;
    margin: 1em 0;
  }
  .main-header.is_fixed #searchform {
    margin: 1em 1em 1em 0;
  }
  .main-header.is_fixed .english_btn a {
    padding: 0.1em 1.8em;
    font-size: 1.4rem;
  }
  .main-header.is_fixed .menu-item {
    margin: 0.8em 0;
  }
  .menu-item > a,
  .menu-item > p {
    color: #284b7f;
    font-size: 1.4rem;
    font-weight: 600;
  }
  .main-header.is_fixed .menu-item > a {
    font-size: 1.2rem;
  }
  .nav-menu {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: inherit;
    margin: 0 auto;
  }
  /* common content */
  .inner {
    position: relative;
    padding: 0 1em;
    z-index: 2;
  }
  .base {
    padding: 4em 0;
  }
  .mainvisual::before {
    width: 100%;
    height: 579px;
    top: -132px;
    left: 0;
  }
  .mainvisual .mv {
    top: 27%;
    width: 45%;
  }
  .mainvisual .mv_ttl {
    font-size: 3rem;
    line-height: 1;
    padding: 2em 0 0 1em;
  }
  .mainvisual .mv_ttl .point {
    font-size: 1.4rem;
    padding: 0.2em 0.5em;
  }
  .mainvisual .mv_ttl .date_catch > .flx_item:nth-of-type(1) {
    margin: 0 1em 0 0;
  }
  .mainvisual .mv_ttl .flx_box {
    margin: 0.2em 0 0 0;
  }
  .mainvisual .mv_ttl .flx_box .num {
    font-weight: 700;
    font-size: 4.5rem;
  }
  .swiper-slide img {
    object-fit: cover;
    height: 70%;
  }
  .mainvisual .main_catch {
    top: 2em;
    right: 3em;
  }
  .btn a {
    width: 240px;
  }
  .table dl {
    display: flex;
  }
  .table dt {
    font-size: 1.4rem;
    width: 110px;
  }
  .table dt,
  .table dd {
    padding: 0.5em 0;
  }
  .table dt {
    width: 120px;
    font-size: 1.4rem;
    font-family: "Oswald", sans-serif;
    font-weight: 600;
  }
  #table td:first-child {
    width: 120px;
  }
  .table dd {
    width: 90%;
    color: #134071;
  }
  section .imgbox img {
    width: 100%;
    height: 320px;
    object-fit: cover;
  }
  #topics.wht_box,
  #content.wht_box {
    width: calc(100% / 2 - 1em);
    background: #fff;

    margin: 1em auto;
  }
  .top #sec01 .flx_box {
    flex-direction: inherit;
    margin: 0 auto;
  }

  .top #sec01::before {
    top: -50px;
    left: -127px;
    width: 300px;
    height: 300px;
  }
  #content .program_box .flx_item:first-child {
    width: 47%;
  }
  #content .program_box .programimg {
    display: block;
    width: 160px;
    height: 220px;
    line-height: 14;
  }
  .top #sec02 > .flx_box {
    flex-direction: inherit;
    /*
  background: #2E3D4A;
  padding: 3em 0;
*/
  }
  #access,
  #areamap {
    width: calc(100% / 2 - 1em);
    background: #fff;
    margin: 2em 0.5em;
  }
  #areamap .flx_box {
    flex-direction: column;
  }
  /* 内容が入ったら削除 */
  .p.notice {
    height: 315px;
    width: 315px;
    line-height: 19;
  }
  /* ここまで */

  /* banner_area */

  .banner_area .flx_box.flx_4cols .flx_item {
    width: calc(100% / 4 - 2em);
    /* text-align: center;
  padding: 1.5em 0;
  margin: 0 0.5em; */
  }

  #schedule {
    margin: 0 0.5em 5em;
  }
  .main-footer .person {
    font-size: 1.2rem;
    margin: 1em 3em 1em 0;
  }
  .main-footer .person dl {
    display: flex;
  }
  .main-footer .person dl dt {
    margin: 0 1em 0 0;
  }
  .main-footer .sponsor_btn {
    margin: 1em 0;
  }
  /* ------------------------------------------------------------ */
  /* flx_box */
  /* ------------------------------------------------------------ */
  /* 2カラム */
  .flx_2cols .flx_item {
    width: calc(100% / 2 - 1em);
  }
  .flx_item {
    margin: 0;
    width: inherit;
  }
  /* 3カラム */
  .flx_3cols .flx_item {
    width: calc(100% / 3 - 1em);
  }
  /* 4カラム */
  .flx_4cols .flx_item {
    width: calc(100% / 4 - 1em);
    /*    margin: 0 1em 2em 0;*/
  }
  /* ------------------------------------------------------------ */
  /* footer */
  /* ------------------------------------------------------------ */
  .main-footer .pagetop {
    right: 10%;
  }
  .main-footer .flx_box {
    flex-direction: inherit;
    flex-wrap: nowrap;
    align-items: flex-end;
  }
  .main-footer .flx_box .flx_item {
    text-align: left;
    margin: 2em 0 0;
  }
  .main-footer .logo {
    font-size: 3rem;
    width: 75%;
    margin: 0;
  }
  .main-footer p.address {
    font-size: 1.2rem;
    white-space: nowrap;
    margin: 0 0 1.2em 0;
  }
  .main-footer .btn_store,
  .main-footer .btn_contact {
    width: 170px;
    text-align: center;
    margin: 0 auto 1em;
  }
  .main-footer .btn_store a,
  .main-footer .btn_contact a {
    font-size: 1.4rem;
  }
  .menu-item.sns_area {
    display: flex;
    justify-content: center;
    text-align: center;
    margin: 1em;
  }
  .copy {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1024px) {
  .pc1024 {
    display: block;
  }
  /*
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
*/
  /*
  .sp {
    display: none;
  }
*/
  /* ------------------------------------------------------------ */
  /* header */
  /* ------------------------------------------------------------ */
  .main-header {
    padding: 0 1em 1.5em 0.5em;
  }
  .main-header.is_fixed .main-logo {
    width: 100%;
  }
  .main-header .main-logo a {
    font-size: 4rem;
    line-height: 1.5;
  }
  .main-header.is_fixed .main-logo a {
    font-size: 3rem;
  }
  .main-header.is_fixed .gnav {
    width: 600px;
    top: 75px;
  }
  .main-header.is_fixed .menu-item > a {
    font-size: 1.6rem;
  }
  .main-header.is_fixed .reserve_fixed {
    top: 8em;
  }
  .main-header .main-logo a:hover {
    opacity: 1;
  }
  .main-header.is_fixed .flx_box.header_btnbox {
    margin: 0;
  }
  .main-header.is_fixed .english_btn a {
    padding: 0.5em 1.8em;
    font-size: 1.6rem;
  }
  .main-header.is_fixed .english_btn {
    margin: 0.3em;
  }
  /* ------------------------------------------------------------ */
  /* gnav */
  /* ------------------------------------------------------------ */
  .gnav {
    width: 680px;
  }
  /* nav-menu */
  .nav-menu {
    justify-content: space-between;
  }
  .menu-item > p.pc_menu {
    width: inherit;
  }
  .menu-item > a,
  .menu-item > p {
    font-size: 1.6rem;
    white-space: nowrap;
  }
  .menu-item a,
  .menu-item.workshop {
    position: relative;
    text-align: center;
    letter-spacing: 0.1rem;
  }
  .menu-item a::hover {
    opacity: 0.6;
  }
  .menu-item .nav_submenu {
    visibility: hidden;
    position: absolute;
    width: 147px;
    height: 0;
    opacity: 0;
    left: -19px;
    background: url("../../../../../../index.html") center / cover no-repeat;
    box-shadow: 0 5px 5px rgb(0, 0, 0, 0.2);
    z-index: 5;
  }
  .menu-item.workshop .nav_submenu li a {
    display: block;
    line-height: 1.5;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 1.5em 0;
  }
  .menu-item.workshop .nav_submenu li a .ttl_lang {
    display: block;
    font-size: 1.4rem;
    color: #585d56;
  }
  .menu-item.workshop:hover .nav_submenu {
    visibility: visible;
    height: auto;
    opacity: 1;
    padding: 1em 0;
    transition: all 0.5s ease;
  }
  .menu-item a .ttl_lang,
  .menu-item.workshop .pc_menu .ttl_lang {
    display: block;
    font-size: 1.4rem;
    color: #585d56;
  }
  .btn_store a,
  .btn_contact a {
    font-size: 1.4rem;
    padding: 0;
    margin: 0.5em 0;
  }
  /* ------------------------------------------------------------ */
  /* common content */
  /* ------------------------------------------------------------ */
  .inner {
    max-width: 1200px;
  }
  .base {
    padding: 5em 0;
  }
  /*
  .content {
    padding-top: 95px;
  }
*/
  .mainvisual {
    padding: 0;
  }
  .mainvisual .mv {
    top: 22%;
    width: 50%;
  }
  /*
  .mainvisual .mv::before {
    width: 150px;
    height: 150px;
  }
*/
  .mainvisual::before {
    height: 646px;
    top: -155px;
    background: url(../img/mv_02.svg) 222% -9% / 80% no-repeat,
      url(../img/mv82.png) center / cover no-repeat;
  }
  .mainvisual .mv_ttl {
    font-size: 4rem;
    line-height: 1;
    padding: 3em 0 4em 0.6em;
  }
  .mainvisual .mv_ttl .flx_box .num {
    font-size: 4rem;
  }
  .mainvisual .mv_ttl .flx_box.date_catch {
    flex-direction: inherit;
  }
  .mainvisual .mv_ttl .flx_box.date_catch > .flx_item:nth-of-type(1) {
    margin: 0 0.5em 0 0;
  }
  .mainvisual .mv_ttl .flx_box {
    align-items: center;
  }
  .mainvisual .mv_ttl .small {
    font-size: 3.6rem;
    margin: 0 0.3em;
  }
  .top #sec01 {
    margin: 0 1em 0;
  }
  section .inner::after {
    top: 0;
    left: 0;
  }
  .wht_box .inner,
  #access .inner {
    padding: 0 2em;
  }
  #content .program_box {
    flex-direction: inherit;
    align-items: center;
  }
  #content .program_box .flx_item:first-child {
    width: 50%;
  }
  #content .program_box .flx_item:last-child {
    width: 40%;
    margin: 0 1em;
  }
  .sche.flx_box {
    flex-direction: inherit;
  }
  .content_btn {
    width: 50%;
    margin: 0.5em auto;
  }
  .sche .content_btn {
    margin: 0.5em;
  }
  /*
  .top #sec02 .flx_box {
    flex-direction: inherit;
}
*/
  /*
  #areamap .flx_box {
    align-items: center;
}
*/
  #areamap .fix_item {
    width: 320px;
    margin: 0 auto;
  }
  #areamap .btn a {
    width: 250px;
  }
  .main-footer .btn_area {
    display: flex;
  }
  .main-footer .menu-item.sns_area {
    display: flex;
    justify-content: flex-start;
    text-align: center;
    margin: 0;
  }
}
@media screen and (min-width: 1180px) {
  .mainvisual::before {
    height: 695px;
  }
  .mainvisual .mv_ttl {
    font-size: 4.5rem;
    padding: 3em 0 4em 0.6em;
  }
  .mainvisual .mv_ttl .flx_box .num {
    font-size: 5rem;
  }
  .mainvisual .mv {
    top: 16%;
  }
}
@media screen and (min-width: 1360px) {
  .mainvisual::before {
    height: 789px;
  }
  .mainvisual .mv_ttl {
    padding: 3em 0 6em 0.6em;
  }
}
@media screen and (min-width: 1500px) {
  .mainvisual::before {
    background: url(../img/mv_02.svg) 180% -20% / 75% no-repeat,
      url(../img/mv82.png) center / cover no-repeat;
  }
}
@media screen and (min-width: 1750px) {
  .mainvisual::before {
    height: 819px;
  }
  .mainvisual .mv_ttl {
    font-size: 6rem;
    padding: 3em 0 4em 0.6em;
  }
  .mainvisual .mv {
    top: 0;
    width: 850px;
  }
}
