@charset "utf-8";
/* CSS Document */

/* body ----------------------------------------------------------- */

body {
  margin: 0;
  padding: 0;
  font-size: 1.6rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 1px;
  text-spacing-trim: space-all;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  background: #f4f6f7;
  color: #333;
}

html { 
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%; /*rem算出をしやすくするために*/
  scroll-behavior: smooth;
}

a {
  font-weight: bold;
  text-decoration: underline;
  color: #003779;
}

a:hover { color: #4fa9cf;}
a img { border: 1px solid #f4f6f7;}
a img:hover { filter: contrast(120%);}
img { vertical-align: middle;}
.bold { font-weight: 700;}
.center{ text-align: center;}
.right{ text-align: right;}
.under{ text-decoration: underline;}
.letter{ letter-spacing: 0.5rem;}

.red { color: #DC0509;}
.marker{ background: linear-gradient(transparent 50%,rgba(243,170,193,0.5) 50%);}

.border1{ border-bottom: 1px dashed #1F2C5C;}
.border2{ border-bottom: 1px dashed #477591;}
.border3{ border-bottom: 1px dashed #C08754;}

.pc { display: initial;}
.sp { display: none;}

/* body end ----------------------------------------------------------- */

/* header ----------------------------------------------------------- */

.bg {
  background-image: url(img/bg.png);
  background-repeat: no-repeat;
  background-position: center 60%;
  background-size: contain;
}

header {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  border-bottom: none;
  background: none;
}

.header-box{
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.h-menu {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-end;
  align-items: right;
  position: relative;
  max-width: 1200px;
  width: 100%;
  text-align: right;
}

.h-menu li {
  display: inline-block;
  margin: 5px auto;
  padding: 5px 10px;
  border-left: 2px solid #005497;
}

.h-menu li a{
  font-size: 1.4rem;
  font-weight: bold;
  text-decoration: none;
  color: #005497;
}

.h-menu li a:hover{ color: #0082C6;}

.logo {
  position: relative;
  height: auto;
  margin: 0 20px;
  padding: 0;
  /* text-align: center; */
}

.logo h1{
  font-size: 5.0rem;
  margin: 30px auto;
  padding: 10px 20px;
  line-height: 1.0;
  text-align: center;
  color: #f4f6f7;
}

.number{ font-size: 4.0rem;}

.logo img {
  position: relative;
  max-width: 700px;
  width: 100%;
  border: none;
}

/*header end ----------------------------------------------------------- */

/* base ----------------------------------------------------------- */

#wrap { margin: 0;}

.content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: center;
  max-width: 1400px;
  width: 100%;
  min-height: auto;
  margin: 0 auto;
  padding: 0;
}

/* その場で */
.fadein{
  animation-name: fadeinanime;
  animation-duration:1s;
  animation-fill-mode: forwards;
  opacity: 0;
  }
  
  @keyframes fadeinanime{
    from {
      opacity: 0;
    }
  
    to {
      opacity: 1;
    }
  }

/* base end ----------------------------------------------------------- */

/* sidebar ----------------------------------------------------------- */

.navi {
  -webkit-flex: 1;
  flex: 0 0 1;
  display: block;
  position: relative;
  max-width: 350px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  overflow: hidden;
  top: 0;
  left: 0;
  background: none;
}

.navi.top{ margin-top: 150px;}

.side {
  -webkit-flex: 1;
  flex: 0 0 400px;
  height: 100%;
  margin: 0 auto;
  padding: 0;
}

.etc {
  width: 100%;
  padding: 0;
  text-align: center;
  margin-bottom: 20px;
}

.etc h4{
  width: 100%;
  margin: 15px auto 10px;
  padding: 5px;
  border-radius: 20px;
  border-bottom: none;
  background: #0082C6;
  color: #f4f6f7;
}

.etc.no-blur h4{ text-shadow: none;}

.etc img {
  max-width: 250px;
  width: 100%;
  margin-bottom: 10px;
  border: 1px solid #f4f6f7;
}

/* sidebar end ----------------------------------------------------------- */

/* menu ----------------------------------------------------------- */

.gnavi {
  position: relative;
  margin: 10px auto 30px;
  padding: 0;
}

.gnavi li {
  list-style: none;
  margin: 0 0 5px 0;
  padding: 0;
}

.gnavi li a{
  display: inline-block;
  position: relative;
  width: 100%;
  padding: 10px 0 10px 0;
  box-sizing: border-box;
  line-height: 25px;
  text-align: center;
  letter-spacing: 1px;
  text-decoration: none;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  border-radius: 5px;
  border: none;
  background: #005497;
  color: #f4f6f7;
}

.gnavi li a:hover{ 
 background-color: #ffd800;
 color: #005497;
}

/* 開いてるページの色のみ変更 */
/* .gnavi ul li a.current{
  background-color: #ED7700;
} */

/* .n-icon li a { background: url(img/h-icon.png) no-repeat left center / 10%;} */

/* navi logo */
/* .n-logo{ text-align: center;}

.n-logo img{
  max-width: 120px;
  width: 100%;
  margin: 10px auto;
  border: none;
  background: #f4f6f7;
} */

/* menu end ----------------------------------------------------------- */

/* main ----------------------------------------------------------- */

.main {
  -webkit-flex: 1;
  flex: 1;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto 20px;
}

.home-image {
  position: relative;
  text-align: center;
  width: 100%;
  height: auto;
  margin: 0 auto 20px;
  padding-bottom: 10px;
}

.home-image img{
	max-width: 1000px;
  width: 100%;
}

/* main ----------------------------------------------------------- */

/* section ----------------------------------------------------------- */

section {
  display: block;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto 50px;
  padding: 30px 30px 30px;
  border-radius: 0;
  background: #f4f6f7;
}

/* section:last-of-type{
  margin: 0 auto;
} */

/* section end ----------------------------------------------------------- */

/* font ----------------------------------------------------------- */

h1, h2, h3, h4, h5,.en h1,caption,
/* .h-menu,.gnavi,.menu,.gp-box,.p-title,.btn-box,.p-menu, */
.fee,.tab li a,.scroll dt,.p-box dt {
  font-family: fot-tsukumin-pr6n, sans-serif;
  font-style: normal;
  font-weight: 600;
}

/* font end ----------------------------------------------------------- */


/* text ----------------------------------------------------------- */

p, h1, h2, h3, h4, h5, h6 { margin: 0; letter-spacing: 1px;}

h2, .en h1, .gp-box h4,.tp td { font-size: 2.5rem;}
h3, .p-section h3.date,.tp th{ font-size: 2.0rem;}
h4, .gnavi,.navi .btn-box,.side .btn-box,.gp-box h4 span,.main-text h3 span,.tab li a,caption{ font-size: 1.8rem;}
h5 { font-size: 1.7rem;}
h4 span, .btn-login .small, p{ font-size: 1.6rem;}

/* large */

.font-l { font-size: 2.3rem;}
.font-l.large{ font-size: 2.5rem;}

/* small */

.font-l .small{ font-size: 1.6rem;}
.small{ font-size: 1.4rem;}

/* subtitle */
h2 {
  margin: 10px auto 20px;
  padding: 10px 0;
  text-align: center;
  vertical-align: middle;
  outline: none;
  background-color: #0082C6;
  border-radius: 50px;
  border: none;
  color: #f4f6f7;
}

h3 {
  margin: 20px 0 10px;
  padding: 10px 15px 10px 15px;
  border-radius: 5px;
  border: none;
  background: linear-gradient(145deg,#003779,#4fa9cf);
  color: #f4f6f7;
}

h4 {
  margin: 10px 0;
  padding: 10px 20px 5px 20px;
  border-radius: 0;
  border-bottom: 1px solid #AAB2BD;
  background-color: none;
  color: #005497;
}

h5 {
  display: block;
  margin: 5px 0 10px 35px;
  padding: 0;
  text-indent: -10px;
  border-radius: 0;
  border-bottom: none;
  background: none;
  color: #005497;
}

h5::before{
  display: inline-block;
  position: relative;
  content: "\025c6";
  vertical-align: middle;
  top: -3px;
  left: -2px;
  color: #ffd800;
}

.grad{
  display: inline-block;
  background: -webkit-linear-gradient(145deg,#003779,#4fa9cf);
  background: linear-gradient(145deg,#003779,#4fa9cf);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 記号削除 */

.e-box h5::before,.j-box h5::before,.p-section h5::before,.p-box h5::before { content: "";}

/* <p> */
p {
  margin-bottom: 10px;
  padding: 0 30px;
}

p.top { margin-top: 10px;}
p.mtop { margin-top: -10px;}
p.bottom { margin-bottom: 20px;}
p.nobottom{ margin-bottom: 0;}

/* ※ */

.note,.note.p1,.note.p2,.note.p3 {
  position: relative;
  margin: 0 0 0 30px;
}

.note::before,.note.p1::before,.note.p2::before,.note.p3::before {
  position: absolute;
  top: 0;
  left: 0;
}

.note{ padding-left: 20px;}
.note.p1,.note.p2,.note.p3 { padding-left: 35px;}

.note::before{ content: "＊";}
.note.p1::before { content: "＊1";}
.note.p2::before { content: "＊2";}
.note.p3::before { content: "＊3";}

/* English */

.en .note{ padding-left: 10px;}
.en .note.p1,.en .note.p2,.en .note.p3 { padding-left: 25px;}

.en .note::before{ content: "*";}
.en .note.p1::before { content: "*1";}
.en .note.p2::before { content: "*2";}
.en .note.p3::before { content: "*3";}

/* 記号 */

.tri,.dia {
  margin: 0 0 0 30px;
  padding-left: 20px;
  position: relative;
}

.tri::before,.dia::before {
  position: absolute;
  top: 0;
  left: 0;
  color: #ffd800;
}

.tri::before { content: "\025b6";}
.dia::before{ content: "\025c6";}

/* text end ----------------------------------------------------------- */

/* Information ----------------------------------------------------------- */

.info-top{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.info-box.n-box{ max-width: 800px; width: 100%; margin-top: 0;}
.scroll.info-box{ max-width: 800px; width: 100%;}

.scroll{
  display: block;
  margin: 0 auto 10px;
  padding: 0;
  border-radius: 0;
  border: none;
  background: #f4f6f7;
}

.scroll h2{
  margin: 0;
  padding: 5px 0;
  text-align: center;
  outline: none;
  border-radius: 0;
  border: none;
  background: none;
  color: #005497;
}

.scroll-box {
  display: block;
  width: 100%;
  height: 250px;
  margin: 0;
  padding: 0;
  overflow-y: scroll;
  border-radius: 0;
}

.scroll dl{
  margin: 10px auto;
  padding: 10px 20px;
  vertical-align: middle;
}

.scroll dt {
  display: inline-block;
  padding: 5px 20px;
  background: none;
  color: #005497;
}

.scroll dd{
  width: auto;
  padding: 5px 30px;
  font-weight: bold;
  border-bottom: 1px solid #0082C6;
}

/* .scroll a{ color: #92d050;}
.scroll a:hover{ color: #e9546b;} */

/* Information end ----------------------------------------------------------- */

/* box ----------------------------------------------------------- */
/* all box */
.n-box, .j-box, .e-box{
  margin: 20px auto;
  padding: 10px;
  border-radius: 0;
}

/* n-box */
.n-box{
  max-width: 800px;
  width: 100%;
  border-radius: 10px;
  border: 2px solid #7D61A2;
  background: #f4f6f7;
}

.n-box h4{
  margin: 5px 0 10px;
  padding: 5px 15px;
  border-bottom: 2px solid #7D61A2;
  background: none;
  color: #333;
}

.n-box h5 { margin-left: 20px;}
.n-box p,.j-box p, .e-box p{ padding: 0 20px;}
.n-box .note,.e-box .note,.j-box .note{ margin-left: 20px;}
.n-box.at{ border: 3px solid #DC0509; background: #f4f6f7;}
.n-box.at h3,.n-box.at h4{ border-bottom: 1px solid #DC0509; color: #DC0509;}
.area .n-box{max-width: 650px;}

/* e-box */
.e-box {
  max-width: 900px;
  width: 100%;
  border-radius: 10px;
  border: 1px solid #fff;
  background: rgba(79,169,207,0.2);
}

.e-box h4, .j-box h4{
  display: block;
  width: 100%;
  margin: 0 0 15px;
  padding: 5px 20px;
  border-radius: 0;
  border-image: none;
  outline: none;
  background: none;
}

.e-box h4{
  border-bottom: 1px solid #fff;
  color: #003779;
}

.e-box h5{ border-left: 8px solid #0082C6; color: #005497;}

/* j-box */
.j-box{
  max-width: 800px;
  width: 100%;
  border-radius: 10px;
  border: 2px solid rgba(229,45,138,0.5);
  background-color: rgba(245,170,208,0.2);
}

.j-box h4{
  border-bottom: 2px solid rgba(229,45,138,0.5);
  color: rgba(229,45,138,0.9);
}

.j-box h5{ border-left: 8px solid rgba(245,170,208,0.9); color: rgba(237,105,172,0.9);}

/* j-box&e-box */

.j-box h5,.e-box h5{ 
  display: block;
  margin-left: 0;
  padding: 5px 10px 5px 20px;
  background:#fff;
}
.j-box h5::before,.e-box h5::before{ content: none;}

/* box end ----------------------------------------------------------- */

/* list ----------------------------------------------------------- */

ul,ol {
  margin: 0;
  padding: 0;
}

.list li .note{
  margin-left: 0;
  text-indent: 0;
}

.list .bottom li { margin-bottom: 10px;}

.list ul,
.list ol {
  list-style-position: inside;
  margin: 10px 0 10px;
  counter-reset: n-dec pn-1 pn-2;
}

.list li{ margin: 0 20px 0 45px;}
.list li li{ margin-left: 25px;}
.list td li{ margin-left: 25px;}
.list li p{ padding-left: 0;}
.list li .period dl{ margin: 0;}


/* ul all */

.disc li,.sq li {
  position: relative;
  list-style-type: none;
  text-indent: -2px;
}

.disc li::before,.sq li::before {
  display: inline-block;  /* インラインブロックにする */
  position: absolute;  /* 位置調整 */
  top: 0;  /* 位置指定 */
  left: -20px;
}

/* ● */
.disc li::before{
  content: "\025cf";
  color: #4fa9cf;
}

.e-box .disc li::before{ color: #0082C6;}
.j-box .disc li::before{ color: rgba(229,45,138,0.9);}

/* ■ */
.sq li::before{
  content: "\025a0";
  color: #4fa9cf;
}

/* 1) */
ol.pn-1 li{  counter-increment: pn-1;}
ol.pn-1 li:before{ 
  content: "" counter(pn-1) "）";
  left: -20px;
  color: #333;
}

/* (1) */

ol.pn-2 li{  counter-increment: pn-2;}
ol.pn-2 li:before { 
  content: "（" counter(pn-2) "）";
  left: -35px;
  color: #333;
}

/* 1. */

ol.dec li{ counter-increment: n-dec;}
ol.dec li::before{ 
  content: ""counter(n-dec)".";
  left: -20px;
  color: #333;
}

/* ol all */
ol.dec li, ol.pn-1 li, ol.pn-2 li{
  position: relative;
  list-style-type: none;
  text-indent: 0;
}

ol.dec li::before, ol.pn-1 li::before, ol.pn-2 li::before {
  position: absolute;
  top: 0;
}

/* list end ----------------------------------------------------------- */

/* button ----------------------------------------------------------- */

/*ボタン設定--まずはお決まりのボックスサイズ算出をborer-boxに */
*,*:before,*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

.btn {
  display: inline-block;
  position: relative;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 2.0rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1rem;
  border-radius: 50px;
  border: 1px solid #AAB2BD;
  color: #f4f6f7;
}

.btn-box,.poster-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  margin: 30px auto;
}

.btn-w { 
  max-width: 500px;
  width: 100%;
}

.btn-box a { margin-bottom: 10px;}
.table .btn-box{ margin: 0 auto;}

/* button個別 */
.btn-1 { background: #0082C6;}
.btn-2 { background: #80C493;}
.btn-3 { background: #F2A341;}
.btn-4 { background: #DE75A1;}
.btn-5 { background: #7D61A2;}
.btn-6 {
  background: linear-gradient(145deg,rgba(255,216,0,0.5), rgba(255,255,255,0)), url(img/bg.png) no-repeat center 20% / cover;
  border: 1px solid #0082C6;
  color: #005497;
  -webkit-text-stroke: 3px #f4f6f7;
  paint-order: stroke;
}

/* hover */
.btn:hover{ 
  filter: saturate(120%);
  color: #f4f6f7;
}
.btn-1:hover,.btn-2:hover,.btn-mw:hover{ background: linear-gradient(180deg,#3F8EBF,#A9D3E7);}
.btn-me:hover{ background: linear-gradient(180deg,#80C493 50%,#D8E9E2);}
.btn-3:hover,.btn-pp:hover{ background: linear-gradient(180deg,#D95032,#F2A341);}
.btn-4:hover,.btn-pdf:hover{ background: linear-gradient(180deg,#DE75A1,#ECC7DD);}
.btn-6:hover{
  background: linear-gradient(145deg,rgba(79,169,207,0.5), rgba(255,255,255,0)), url(img/bg.png) no-repeat center 20% / cover;
  color: #005497;
}

/* color change */

.btn.gray{ 
  cursor: default;
  filter: grayscale(100%);
  border: 2px solid #ccc;
  color: #ccc;
}

/* icon button */

.btn-mw { background: #005497;}
.btn-me { background: #497778;}
.btn-pp { background: #D95032;}
.btn-pdf { background: #e52d8a;}

/* login button */

.btn-login {
  max-width: 500px;
  width: 100%;
  font-size: 3.0rem;
  padding: 2rem 1rem;
  margin: 0 auto 20px;
}

.en .btn-login{ width: 100%;}

.btn-login .small {
  display: inline-block;
  font-size: 1.6rem;
  line-height: 2.5rem;
}

.btn-login .red{ color: #DC0509;}

.navi .btn-login{
  max-width: 350px;
  font-size: 1.8rem;
  margin: 0px auto;
}

/* poster-box */
.poster-box img {
  max-width: 500px;
  width: 100%;
  margin-bottom: 10px;
}
.etc-ev .poster-box img{ max-width: 350px;}
.poster-box.party img{ max-width: 700px;}

/* button end ----------------------------------------------------------- */

/* icon ----------------------------------------------------------- */

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 1,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24;
  vertical-align: middle;
}

/* アイコン装飾用css */
.icon{
  margin: 0 5px;
  padding: 0 0 3px;
  text-decoration: none;
  text-shadow: none;
  text-indent: 0;
}

.icon.i-c{
  padding: 5px;
  border-radius: 50%;
  border: none;
  background: #005497;
  color: #f4f6f7;
}

a .icon.i-c:hover{
  background: #ffd800;
  color: #005497;
}

h3 .icon{ filter: 0 0 10px #f4f6f7;}
/* .icon.ishadow{ text-shadow: 0 0 5px #1F2C5C,0 0 5px #1F2C5C,0 0 5px #1F2C5C,0 0 5px #1F2C5C,0 0 5px #1F2C5C;}
a:hover .icon.ishadow{ text-shadow: none;} */

/* アイコン横並び */

.icon-box{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 0 auto 20px;
  padding: 0 30px;
}

/* 特定の拡張子の場合自動で表示 */
.btn-box > a[href$=".docx"]::before,a[href$=".doc"]::before {
  display: inline-block;
  content: url("img/icon/word_icon.png");
  padding-right: 10px;
  vertical-align: middle;
}

.btn-box a[href$=".pdf"]::before {
  display: inline-block;
  content: url("img/icon/pdf_icon.png");
  padding-right: 10px;
  vertical-align: middle;
}

.btn-box a[href$=".xlsx"]::before {
  display: inline-block;
  content: url("img/icon/excel_icon.png");
  padding-right: 10px;
  vertical-align: middle;
}

.btn-box > a[href$=".pptx"]::before,a[href$=".ppt"]::before {
  display: inline-block;
  content: url("img/icon/pptx_icon.png");
  padding-right: 10px;
  vertical-align: middle;
}

.btn-box .noicon{ content: none;}

/* ボタンの背景色が白い場合
一部の場合は[:hover]の前にclass名入れる[例：a:is(.btn-5,.btn-6) ]*/

.btn-box a:is(.btn-5[href$=".docx"],.btn-5[href$=".doc"])::before{ content: url("img/icon/word_icon_g.png");}
.btn-box a:is(.btn-5[href$=".pdf"])::before { content: url("img/icon/pdf_icon_g.png");}
.btn-box a:is(.btn-5[href$=".xlsx"])::before { content: url("img/icon/excel_icon_g.png");}
.btn-box a:is(.btn-5[href$=".pptx"],.btn-5[href$=".ppt"])::before { content: url("img/icon/pptx_icon_g.png");}

/* icon end ----------------------------------------------------------- */

/* table ----------------------------------------------------------- */

.table { display: table; }
.table{ margin: 10px auto 20px;}
table{
  width: 100%;
  -webkit-text-size-adjust: 100%;
  word-break: break-word;
  word-wrap: break-word;
  table-layout: fixed;
  border-spacing: 0;
  border-collapse: collapse;
}
caption{
  margin: 5px auto 5px;
  padding: 5px 0;
  text-align: center;
  border: none;
  background: rgba(72,111,174,0.3);
  color: #486FAE;
}

th,td { vertical-align: middle;}
/* th{ color: rgba(85,58,75,0.7);} */
table p{ padding: 0;}
td h5,td p,td p.note{ margin-left: 0;}

/* top-period */

.tp-box{ 
  position: relative;
  margin: 0 auto 50px;
  align-items: center;
  background: none;
  border: none;
}

.tp table {
  display: block;
  max-width: 740px;
  width: 100%;
  margin: 0 auto;
  padding: 5px;
}

.tp th {
  width: 150px;
  padding: 5px;
  text-align: center;
  border-radius: 5px;
  border: none;
  outline: none;
  background: #005497;
  color: #f4f6f7;
}

.tp td {
  width: 540px;
  padding: 5px 0 5px 20px;
  font-weight: bold;
  border-bottom: none;
  background: none;
  color: #005497;
}

/* event */

.event table { width: 100%;}
.event tr { border-bottom: 1px solid #AAB2BD;}
.event th{
  width: 200px;
  margin: 10px 0;
  padding: 10px;
  text-align: center;
}
.event td{
  width: auto;
  padding: 10px 20px;
  font-weight: bold;
  text-align: left;
}
#event .event th{ width: 250px;}
.table.abst table{ margin: 10px 0 20px;}
.event.abst th { text-align: center;}
.event.abst th,.event.abst td,.event.ex th,.event.ex td{ padding: 5px 20px;}
.event.i-reading th{ color: #3366B0;}
.event.pre th{ width: 50%;}
.event.ex th{ width: 50px;}
.event.ex caption{ text-align: left; background: none; color: #333;}

/* committee */

.com th:first-child{ width: 150px;}

/* fee */

.fee table{ width: 100%;}
.fee tr:nth-child(even) { background: rgba(170,178,189,0.2);}
.fee th {
  width: 100%;
  padding: 10px 20px;
  text-align: center;
  background: rgba(0,130,198,0.3);
  border: 1px solid #AAB2BD;
  color: #003779;
}
.fee th:nth-of-type(1){ width: 450px;}
.fee td {
  width: 100%;
  padding: 10px;
  text-align: center;
  border: 1px solid #AAB2BD;
}
.fee td:nth-child(1){ 
  text-align: left;
  background-color: rgba(236,199,221,0.5);
}

.fee.party table{ max-width: 600px; margin: 0 auto;}
.fee.party th{ width: 100%;}

/* abstract */

.cat_table table {
  max-width: 900px;
  width: 100%;
  margin: 0; /* 横並びの時は左右の余白0 */
}
.cat_table tr:nth-child(odd) { background: rgba(170,178,189,0.1);}
.cat_table th{
  width: 50px;
  padding: 5px 10px;
  text-align: center;
  border-bottom: 1px solid #AAB2BD;
  background: rgba(229,45,138,0.2);
}
.cat_table td {
  width: auto;
  padding: 10px 10px; /* 余白指定 */
  font-weight: bold;
  border-bottom: 1px solid #AAB2BD;
}
.cat_table table p,.cat_table table p.note{ margin: 0;}

/* 横並び用 */

.cat_table-box{
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0;
}

.cat_table-box .cat_table table{ margin-bottom: 0;}
.cat_table-box .cat_table td{ width: 100%;}

/* unit */

.unit table{
  max-width: 900px;
  width: 100%;
  margin: 20px auto 40px;
  border-spacing: 0;
}

.unit tr:nth-child(odd){ background: rgba(110,115,122,0.1);}

.unit th{
  padding: 10px 0;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid #AAB2BD;
  border-right: 1px solid #999999;
}

.unit th:last-of-type{ border-right: none;}

.unit td{
  padding: 10px;
  text-align: center;
  border-bottom: 1px solid #AAB2BD;
  border-right: 1px solid #999999;
}

.unit td:first-of-type{ width: 90px;}
.unit td:nth-of-type(2){ width: 120px;}
.unit td:nth-of-type(3){ width: 300px;}
.unit td:nth-of-type(4){ width: 80px;}
.unit table td:last-of-type {
  width: 40px;
  border-right: none;
}

/* sponsorship */

.sponsor table {
  max-width: 600px;
  width: 100%;
  border-collapse: collapse;
  margin: 10px auto 20px;
  border-spacing: 0;
  word-break: break-word;
  word-wrap: break-word;
  table-layout: fixed;
}

.sponsor tr:nth-child(even) { background: rgba(250,246,168,0.3);}

.sponsor th {
  padding: 10px 20px;
  text-align: center;
  border: 1px solid #83aeb8;
  background: rgba(50,158,216,0.2);
}

.sponsor th:last-child{ width: 300px;}

.sponsor td {
  font-weight: 600;
  text-align: center;
  padding: 10px 20px;
  border: 1px solid #83aeb8;
}

/* table end ----------------------------------------------------------- */

/* greeting ----------------------------------------------------------- */

.g-box {
  display: flex;
  max-width: 1000px;
  width: 100%;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 10px auto;
  padding: 0;
}

.g-box img {
  display: block;
  max-width: 160px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  border-radius: 0;
}

.gp-box {
  max-width: 600px;
  width: 100%;
  line-height: 1.5;
  margin: 10px auto 0;
  padding: 0;
  text-align: left;
}

.gp-box h4{
  display: block;
  font-weight: 700;
  outline: none;
  background: none;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #AAB2BD;
  color: #333;
}

.main-text p {
 line-height: 25px;
 text-align: justify;
}

.main-text {
  margin: 20px auto;
  padding: 10px 0;
  border-top: none;
}

.main-text h3{
  text-align: center;
  margin: 10px auto;
  padding: 5px 0;
  border-bottom: none;
  background: none;
  color: #1F2C5C;
}

/* .main-text h3 span{ color: #333;} */

/* English */

.en .g-box {
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}

.en .gp-box {
  max-width: 1000px;
  margin: 10px 0 20px;
  padding: 0;
  text-align: right;
}

.en .g-box img {
  margin: 0 20px;
  padding: 0;
}

.en .main-text{
  border-top: none;
}

/* greeting end ----------------------------------------------------------- */

/* tab-menu ----------------------------------------------------------- */

/*tabの形状*/

.tab{
  position: relative;
  top: 1px;
}

.tab-menu{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}

.tab-menu li{
  text-align: center;
  white-space: wrap;
}

.tab-menu li a{
  display: block;
  margin: 0 2px;
  padding: 10px 20px;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #f4f6f7;
  border-bottom: none;
  color: #acacac;
  background: rgba(157,160,210,0.1);
}

/*liにactiveクラスがついた時の形状*/
.tab-menu li.active a{
  background: rgba(146,208,80,0.5);
  border: 1px solid #f4f6f7;
  border-bottom: none;
  color: #562E8C;
}

/*エリアの表示非表示と形状*/
.area {
  display: none; /*はじめは非表示*/
  opacity: 0; /*透過0*/
  margin: 0 2px;
  padding: 15px 0 0;
  background: none;
}

/*areaにis-activeというクラスがついた時の形状*/
.area.is-active {
    display: block;/*表示*/
    animation-name: displayAnime;/*ふわっと表示させるためのアニメーション*/
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

@keyframes displayAnime{
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* tab-menu end ----------------------------------------------------------- */

/* program ----------------------------------------------------------- */

/* p-menu */

.p-menu{
  width: 100%;
  margin: 20px auto;
  padding: 10px;
  outline: none;
  border-radius: 0;
  border: 1px solid #AAB2BD;
  background: rgba(244,246,247,0.5) url(img/bg.png) no-repeat center bottom / cover;
}

.p-menu ul{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}

.p-menu li{ width: auto;}

.p-menu li a{
  position: relative;
  padding: 5px 0;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #003779;
}

.p-menu li a:hover{ color: #4fa9cf;}

/* menu-arrow */

.n-arrow li a {
  position: relative;
  display: inline-block;
  padding-left: 25px;
  margin-left: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.n-arrow li a:before {
  content: '';
  width: 18px;
  height: 18px;
  background: none;
  outline: none;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}

.n-arrow li a:hover:before{ outline: none;}

.n-arrow li a:after {
  content: '';
  width:0;
  height:0;
  border-style:solid;
  border-width: 8px 0 8px 12px;
  border-color: transparent transparent transparent #005497;
  position: absolute;
  top: -2px;
  left: 6px;
  bottom: 0;
  margin: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.n-arrow li a:hover:after{
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  border-color: transparent transparent transparent #ffd800;
}

/* program */
.program h3.date{ text-align: center;}

/* p-section */

.p-section { margin: 20px auto 20px;}

.p-section h3{
  padding: 5px 10px;
  text-align: left;
  border-radius: 0;
  border-left: 6px solid;
  border-bottom: 1px solid;
  border-image: linear-gradient(145deg,#003779,#4fa9cf)6 1;
  background: none;
  color: #333;
}

.p-section h4{ 
  padding-bottom: 5px;
  border-bottom: 1px solid #AAB2BD;
  background: none;
  color: #005497;
}

.p-section h4 span{ 
  border: none;
  color:#0082C6;
}

.p-section h5{
  display: block;
  width: 100%;
  height: auto;
  margin: 10px 0;
  padding: 5px 10px 5px 30px;
  text-align: left;
  border-radius: 0;
  border: none;
  background: linear-gradient(90deg,rgba(242,163,65,0.2),rgba(222,117,161,0.2),rgba(125,97,162,0.2),rgba(63,142,191,0.2),rgba(128,196,147,0.2),rgba(63,142,191,0.2),rgba(125,97,162,0.2));
  color: #666;
}

.p-section .p-box h5{ margin-bottom: 0;}

/* 演題名 */

.p-title {
  margin: 10px 0;
  font-weight: bold;
  color: #e52d8a;
}

/* 座長・演者 */

.p-section dl{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0;
  padding: 0 20px 0 40px;
  line-height: 2;
}

.p-section dt{
  width: auto;
  margin: 0;
  padding: 0;
  letter-spacing: 1.5;
  text-align: left;
  font-weight: 500;
  vertical-align: middle;
  outline: none;
  border-radius: 0;
  border: none;
}

.p-section .og dt{
  max-width: 150px;
  letter-spacing: normal;
}

/* .p-section .og dd{ width: 100%;} */

.p-section dd{ 
  width: auto;
  margin: 0 20px;
  padding: 0;
  vertical-align: middle;
  font-weight: 500;
}

.p-section dd .p-title{ padding-left: 0;}

/* 共催 */

.p-section .co-sp dt{ color: #E65D7C;}
.p-section .co-sp dd{ color: #486FAE;}

/* 演者・演題名複数 */

.p-box {
  margin: 20px auto;
  padding: 5px 20px 10px;
  border-radius: 0;
  border: none;
  background: rgba(255,240,0,0.1);
}

.p-box h4{
  padding-top: 0;
  border-bottom: 1px solid #acacac;
  border-image: none;
  color: #1F2C5C;
}

/* 時計アイコン */

.time{
  text-align: right;
  font-weight: 600;
  vertical-align: middle;
  margin: 0;
  padding: 0 20px;
  color: #2862ae;
}

.time span{
  margin: -3px 5px 0 0;
  color: #83aeb8;
}

#unit .time{ text-align: left;}

/* 顔写真 */

.p-photo {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  text-align: center;
  align-items: center;
  margin: 10px auto 0;
}

.photo-box{
  max-width: 160px;
  width: 100%;
  margin-bottom: 10px;
}

.p-photo img {
  max-width: 160px;
  width: 80%;
  padding: 0 5px;
  border-radius: 50%;
}

.p-photo p{
  margin: 10px 0; /* HP毎に調整 */
  padding: 0;
}

/* 企業展示 */

.ex-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto 40px;
}

.ex-section {
  max-width: 700px;
  width: 100%;
  margin: 0;
  padding: 0 10px;
  vertical-align: middle;
}

.ex-img {
  max-width: 200px;
  width: 100%;
  margin: 10px auto;
  padding: 0 10px;
  vertical-align: middle;
  text-align: center;
}

.ex-img img {
  max-width: 160px;
  width: 100%;
}

/* program end ----------------------------------------------------------- */

/* accordion ----------------------------------------------------------- */

/*アコーディオン全体*/
.accordion-area{
  list-style: none;
  width: 96%;
  max-width: 900px;
  margin: 0 auto;
}

.accordion-area li{
  margin: 10px 0;
}

.accordion-area section {
  margin: 0;
  padding: 1%;
  border: 1px solid #ccc;
}

.accordion-area h4{ border-bottom: none;}

/*アコーディオンタイトル*/
.title {
  position: relative;/*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: normal;
  padding: 0 3% 0 50px;
  transition: all .5s ease;
}

/*アイコンの＋と×*/
.title::before,
.title::after{
  position: absolute;
  content:'';
  width: 15px;
  height: 2px;
  background-color: #2E8C35;
  
}
.title::before{
  top:48%;
  left: 15px;
  transform: rotate(0deg);
  
}
.title::after{    
  top:48%;
  left: 15px;
  transform: rotate(90deg);

}

/*　closeというクラスがついたら形状変化　*/

.title.close::before{
transform: rotate(45deg);
}

.title.close::after{
transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
  display: none;/*はじめは非表示*/
  background: #f3f3f3;
  margin:0;
  padding: 1%;
}

/* accordion end ----------------------------------------------------------- */

/* other ----------------------------------------------------------- */

/* dl */

dt{ vertical-align: middle;}
dd{ vertical-align: top;}

.period{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 20px auto;
}

.period dl{
  margin: 0 30px; /* 左寄せの場合はauto→0 */
  padding-bottom: 0;
}

.period dt{
  display: inline-block;
  width: auto;
  padding: 5px 20px;
  text-align: center;
}

.period dd{
  display: inline-block;
  width: auto;
  margin-left: 10px;
  padding: 5px 20px;
  text-align: left;
}

/* period & */

.period.center dl{
  margin: 0 auto; /* 左寄せの場合はauto→0 */
  padding: 0;
}
.period.date dd{ vertical-align: middle;}
.period.space dl{ margin: 5px 30px;}
.period.space.center dl{ margin: 10px auto;}
.period.color dt{ background: none; color: #0082C6;}
.period.ad dt{ width: 160px;}
.period.ayap dt{ width: 200px;}
.period.left dt{ text-align: left;}

/* other end ----------------------------------------------------------- */

/* flow ----------------------------------------------------------- */

/* ※＜重要＞ */

.imp-box{
  max-width: 670px;
  width: 100%;
  margin: 20px auto;
  padding: 20px;
  word-break: break-all;
  line-height: 1.5;
  border-radius: 10px;
  background: rgba(170,178,189,0.2);
}

.imp-box dl{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  margin: 0;
}

.imp-box dt{
  display: inline-block;
  width: 100px;
  height: auto;
  padding: 0;
  font-weight: 600;
  vertical-align: middle;
}

.imp-box dd{
  /* imp-boxのmax-widthに合わせて調整 */
  width: 560px;
  padding: 0;
  font-weight: 600;
  vertical-align: middle;
}

.e-box .imp-box,.j-box .imp-box{ background: rgba(255,255,255,0.7);}

/* フロー */

.flow {
  max-width: 700px;  
  width: 100%;
  margin: 20px auto;
}

.flow-box{
  max-width: 600px;
  width: 100%;
  display: block;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  margin: 10px auto 10px;
}

.flow-arrow{
  display: inline-block;
  margin: 10px auto 20px;
  vertical-align: middle;
  line-height: 1;
  width: 2em;
  height: 2em;
  border: 0.3em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
  color: #4fa9cf;
}

.btn-flow {
  max-width: 600px;
  width: 100%;
  height: 80px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 25px;
  cursor: default;
  border-radius: 10px;
  border: none;
  background: linear-gradient(180deg,#003779,#4fa9cf);
  color: #f4f6f7;
}

.btn-flow:hover{ filter: none;}

.btn-flow span {
  font-size: 1.4rem;
  font-weight: 500;
}

/* .flow-header{
  width: 60%;
  margin: 20px 15px 15px 10px;
  padding: 15px 10px 15px 15px;
  font-size: 2.0rem;
  font-weight: 600;
  background-color: rgba(213,127,113,0.5);
	outline: 3px solid #e9546b;
  border: 2px dotted #e9546b;
  color: #333;
} */

/* .flow-header .note{ margin-left: 0;} */

/* flow end ----------------------------------------------------------- */

/* coi ----------------------------------------------------------- */

.coi-table {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  text-align: center;
  align-items: center;
  margin: 0 auto;
}

.coi-box {
  max-width: 300px;
  width: 100%;
  margin-bottom: 10px;
}

.coi-table table {
  max-width: 300px;
  width: 100%;
  border-collapse: collapse;
  margin: 5px 10px;
}

.coi-table th{
  padding: 3px 8px;
  text-align: center;
  border: 2px solid rgba(86,46,140,0.5);
  background-color: rgba(86,46,140,0.8);
  color: #f4f6f7;
}

.coi-table td{
  border: 2px solid rgba(86,46,140,0.5);
  padding: 3px 8px;
}

/* coi end ----------------------------------------------------------- */

/* access ----------------------------------------------------------- */

/* google map 埋め込み用 */
.map {
  display: block;
  margin: 20px auto;
  text-align: center;
}

.map iframe {
  width: 90%;
  height: 450px;
}

/* access end ----------------------------------------------------------- */

/* movie ----------------------------------------------------------- */

/* 動画埋め込み用 */
.iframe-wrap {
  position: relative;
  max-width: 450px;
  width: 100%;
  padding-top: 56.25%;
  margin: 0 auto 50px;
  overflow: auto; 
  -webkit-overflow-scrolling:touch;
}

.iframe-wrap iframe {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    border:none;
    display:block;
}

/* 動画横並び用 */

.movie-flex{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 15px auto;
}

.movie-flex h3{
  font-size: 1.5rem;
  letter-spacing: 0;
  padding-left: 0;
  margin: 5px 0;
  border-bottom: 1px solid #9acdcd;
}

.movie-box{
  margin: 0 5px;
  width: 45%;
}

.iframe-wrap-flex {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin: 5px auto 20px;
  overflow:auto; 
  -webkit-overflow-scrolling:touch;
}
.iframe-wrap-flex iframe {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    border:none;
    display:block;
}

.vp-center{ align-items: flex-start;}

/* movie end ----------------------------------------------------------- */

/* banner ----------------------------------------------------------- */

.bn,.link{
  display: block;
  width: 100%;
  margin: 0 auto 30px;
  padding: 15px 50px;
  border-radius: 0;
}

.bn{ max-width: 700px;}
.link{ max-width: 1200px;}

.bn h2,.link h2{
  background-color: #0082C6;
  border-radius: 50px;
  border: none;
  color: #f4f6f7;
}

.sp-bn {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  text-align: center;
  align-items: center;
  margin: 0 auto;
}

.bn-box,.fp-box {
  max-width: 250px;
  width: 100%;
  margin-bottom: 10px;
}

.fp-box p{ 
  font-weight: 600;
  text-align: center;
}

.handson .fp-box { max-width: 350px;}

.sp-bn img {
  max-width: 250px;
  width: 100%;
  margin-bottom: 10px;
  border: 1px solid #f4f6f7;
}

.sp-bn.coi .bn-box,.sp-bn.coi img{ max-width: 300px;}
.sp-bn.coi img{ outline: 1px solid #999999;}

.sp-bn p {
  font-weight: 600;
  margin-bottom: 10px;  /* HP毎に調整 */
  margin-left: -10px;  /* HP毎に調整 */
}

/* banner end ----------------------------------------------------------- */

/* link ----------------------------------------------------------- */

.link a {
  text-decoration: none;
  color: #003779;
}

.link a:hover{ color: #4fa9cf;}

.link ul {
  margin: 20px 0 20px;
  padding: 0 10px;
}

.link li {
  list-style-type: none;
  position: relative;
  margin-left: 20px;
  padding: 5px 0;
  font-weight: bold;
  border-bottom: 1px solid #0082C6;
}

.link.list li { margin: 0;}

/* link end ----------------------------------------------------------- */

/* arrow ----------------------------------------------------------- */

/*リンクを右下に固定*/
#arrow {
  position: fixed;
  bottom: 5%;
  right: 1%;
  z-index: 2;
   /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}

#arrow a {
  /*天地中央にテキストを配置*/
  display: flex;
  align-items: center;
  justify-content: center;
  /*円の形状*/
  width: 60px;
  height: 60px;
  box-sizing: border-box;
  padding: 0 20px;
  line-height: 80px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 50%;
  outline: none;
  border: none;
  background: #005497;
  color: #f4f6f7;
}

#arrow a:hover { 
  border: none;
  background: #ffd800;
  color: #005497;
}

/*　上に上がる動き　*/

#arrow.upmove{
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#arrow.downmove{
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
    opacity: 1;
  transform: translateY(0);
  }
  to {
    opacity: 1;
  transform: translateY(100px);
  }
}

/* arrow up */
a.arrow-up {
  display: block;
  position: relative;
  text-align: center;
  background: currentColor;
}

a.arrow-up::after {
  content: '';
  position: absolute;
  width: 0.7em;
  height: 0.7em;
  box-sizing: border-box;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  border-bottom: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  transform: translateY(3px) rotate(-45deg);
  transform-origin: top right;
  top: 35%;
  bottom: 0;
  right: 50%;
}

a.arrow-up:hover::after{ transform: translateY(-5px) rotate(-45deg);}

/* arrow end ----------------------------------------------------------- */

/* contact ----------------------------------------------------------- */

.flexbox {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: center;
  margin: 0 auto;
}

.flexbox.flexbox-c{
  max-width: 1200px;
  width: 100%;
}

#contact{
  display: block;
  word-wrap: break-word;
  text-align: center;
  margin: 0 auto;
}

#contact h4{
  display: inline-block;
  letter-spacing: 1px;
  margin: 5px auto 5px;
  padding: 5px 20px 5px;
  border-radius: 20px;
  border: none;
  background-color: #0082C6;
  color: #f4f6f7;
}

.contact{
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.contact table {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  font-weight: bold;
  border-collapse: collapse;
  border-spacing: 0;
}

.contact th {
  width: 20%;
  text-align: center;
  vertical-align: middle;
  padding: 20px 10px;
  background: none;
  color: #0082C6;
}

.contact td {
  width: 60%;
  text-align: left;
  vertical-align: middle;
  padding: 20px 10px;
  color: #0082C6;
}

/* contact end ----------------------------------------------------------- */

/* footer ----------------------------------------------------------- */

footer {
  /* 以下 デザイン */
  width: 100%;
  padding: 20px 0 0;
  border-top: none;
  background: linear-gradient(0deg,rgba(255,255,255,0.9),rgba(255,255,255,0));
}
footer small { font-size: 1.5rem;}

.footer{
  width: 100%;
  padding: 20px 10px;
  text-align: center;
  font-weight: 600;
  background: none;
  color: #0082C6;
}

.footer-box{
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-around;
  align-items: flex-start;
}

/* footer end ----------------------------------------------------------- */

/* タブレット ----------------------------------------------------------- */

@media screen and (max-width: 1280px) {

.home-image img{
	max-width: 1000px;
  width: 80%;
}

}

@media screen and (max-width: 1024px) {

  body{ background-repeat: repeat-y;}

  .pc { display: none;}
  .sp { display: initial;}

  /* font */
  .menu li a { font-size: 1.6rem;}

  /* header */

  .logo h1 {
    font-size: 4.0rem;
    margin: 10px auto;
  }

  .logo{ text-align: left;}
  .logo img{ width: 100%;}
  .number{ font-size: 3.0rem;}
  .n-logo img{ width: 80%;}

  /* base */

  .bg {  background-position: center 20%;}

  .content {
    flex-direction: column;
    height: 100%;
    padding: 0;
  }

  /* side */

  .navi, .side {
    width: 100%;
    margin: 0 auto 50px;
    align-self: stretch;
  }

  /* .flexbox {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
  } */

  .etc{
    max-width: 100%;
    width: 100%;
    padding: 0 50px;
  }

  .etc h4{
    width: 100%;
    text-align: center;
}

  /* sp-menu */

  .gnavi{ margin: 0 auto 0;}
  .gnavi li a{ line-height: 20px;}

  /* ハンバーガー はじまり */

  /* ハンバーガーアイコンの設置スペース */
  .menu-btn {
    height: 50px;
    width: 55px;
    position: fixed;
    z-index: 9999;
    cursor: pointer;
    top: 10px;
    right: 10px;
    border-radius: 0;
    background: none;
  }

  /* ×に変化 */
  .menu-btn span{
    display: inline-block;
    position: absolute;
    transition: all .4s;
    width: 50%;
    height: 4px;
    left: 14px;
    border-radius: 2px;
    border: 1px solid #f4f6f7;
    background: #005497;
  }

  .menu-btn span:nth-of-type(1){ top: 15px;}
  .menu-btn span:nth-of-type(2){ top: 23px;}
  .menu-btn span:nth-of-type(3){ top: 31px;}

  .menu-btn.active span:nth-of-type(1){
    top: 18px;
    left: 13px;
    transform: translateY(6px) rotate(-45deg);
    width: 50%;
  }

  .menu-btn.active span:nth-of-type(2){ opacity: 0;}

  .menu-btn.active span:nth-of-type(3){
    top: 30px;
    left: 13px;
    transform: translateY(-6px) rotate(45deg);
    width: 50%;
  }

  /* ナビゲーション（メニュー） */

  .menu{
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position: fixed;
    z-index: -1;
    opacity: 0; /*はじめは透過0*/
    /*ナビの位置と形状*/
    top: 0;
    width: 100%;
    height: 100vh;
    background: #f4f6f7;
    /* background: url(img/bg.png) no-repeat center top / cover; */
    border-radius: 0;
    /* ぼかし */
    -webkit-background-filter: blur(5px);
    backdrop-filter: blur(5px);
    /*動き*/
    transition: all 0.3s;
  }

  /*アクティブクラスがついたら透過なしにして最前面へ*/
  .menu.panelactive{
    opacity: 1;
    z-index: 999;
  }

  /*ナビゲーションの縦スクロール*/
  .menu.panelactive .menu-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  /*ナビゲーション*/
  .menu ul{
    display: none;
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    width: 80%;
    padding: 0 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
  }

  .menu.panelactive ul{ display: block;}

 /*リストのレイアウト設定*/

 .menu li{
  list-style: none;
  text-align: center;
  margin: 5px auto;
  border: none;
 }

 .menu li a{
  display: block;
  text-decoration: none;
  padding: 10px 0;
  text-transform: none; /* 英語の表示 */
  letter-spacing: 0.1em;
  border-radius: 5px;
  background: #005497;
  color: #f4f6f7;
}

 .menu li a:hover,.menu li a:active{ 
  background-color: #ffd800;
  color: #005497;
}

 .menu li a:hover::before{
  left: 0;
  padding: 0;
 }

/* sp-menu end */

/* sp-main */

  .main {
    align-self: stretch;
    margin: 0 auto 20px;
    padding: 0 10px;
  }

  .home-image img { width: 100%;}

  section {
    margin: 0 20px 50px;
    padding: 20px 30px;
  }

  /* top登録期間 */

  .tp-box { margin: 0 auto 20px; padding: 10px;} 
  .tp table { max-width: 650px;}
  
  .tp th {
    width: 150px;
    font-size: 1.6rem;
    text-align: center;
    border-bottom: none;
  }
  
  .tp td {
    width: 500px;
    padding: 5px 0;
    font-size: 2.2rem;
    text-align: center;
  }

  /* information */
  .info-top{
    flex-wrap: wrap;
    flex-direction: column;
  }
  .info-box.n-box{ max-width: 800px;}
  .scroll{ margin: 0 auto 50px;}

  /* <p> */
  p { padding: 0 20px;}
  .note,.note.p1,.note.p2,.note.p3 { margin-left: 20px;}

  /* ボタン */

  .btn-box{ margin: 20px auto;}
  .btn { font-size: 1.8rem;}

  .btn-5{background-position: right 20%;}

  .btn-login {
    width: 550px;
    font-size: 2.3rem;
    padding: 2rem 1rem;
    margin: 10px 10px;
  }

  .btn-login .small{
    font-size: 1.4rem;
    line-height: 2.5rem;
  }

  /* icon */

  .icon-box{
    justify-content: center;
    margin: 10px auto 0;
  }

  /* program */

  .p-section dl{ padding: 0 20px 0 40px;}

  .p-box { padding: 10px;}
  .p-box dl{ padding: 0 20px 0 40px;}

  /* contact */

  .contact th { width: 150px;}
  .contact td { width: 450px;}

  /* footer */

  footer{ background-size: contain;}
  .footer-box{
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
  }
}

/* タブレット end ----------------------------------------------------------- */

/* android・iPhone ----------------------------------------------------------- */

@media screen and (max-width: 768px) {

  body{ font-size: 1.4rem;}

  .pc { display: none;}
  .sp { display: initial;}

  /* font */
  
  h2, .gp-box h4,.side-etc h4,.p-section h3.date { font-size: 1.8rem;}  
  h3, caption { font-size: 1.6rem;} 
  h4, h5, p, .gp-box h4 span, .main-text h3 span, .tab li a, .menu li a { font-size: 1.4rem;}

  /* large */
  .font-l{ font-size: 1.8rem;}
  .font-l.large { font-size: 2.0rem;}

  /* small */
  .font-l .small{ font-size: 1.4rem;}
  .small{ font-size: 1.4rem;}

  /* header */

  .bg { background-position: center 10%;}

  .logo img{
    width: 90%;
    margin-top: 0;
  }

   /* top登録期間 */

  .tp-box { margin: 0 auto 10px;}  
  .tp th { display: block; margin: 0 auto; font-size: 1.6rem;} 
  .tp td { display: block; width: 100%; font-size: 1.6rem;}

  /* side */

  .navi-etc,.side-etc{
    margin-bottom: 50px;
    padding: 0;
  }

  /* menu */

  .menu ul{ width: 100%;}

  /* main */

  .main {
    margin: 0 auto;
    padding: 0 10px;
  }

  section{
    margin: 0 auto 50px;
    padding: 20px 10px;
  }

  .scroll {
    margin: 0 auto 50px;
    padding: 0;
  }

  /* text */

  h4 { padding: 5px;}

  h5{
    margin-left: 20px;
    padding: 0 10px;
  }

  p { padding: 0 10px;}

  .note,.note.p1,.note.p2,.note.p3 { margin-left: 10px;}

  .note{ padding-left: 15px;}
  .note.p1,.note.p2,.note.p3 { padding-left: 25px;}

  .tri, .dia { margin: 0 0 0 10px;}

  /* list */
  .list li{ margin: 0 10px 0 25px;}

  /* button */
  .btn { font-size: 1.6rem;}
  .btn-login {
    font-size: 2.0rem;
    margin: 20px 10px 30px;
  }

  /* table */
  /* event */

  .event tr{ border-bottom: none;}
  .event th,.event td{
    display: block;
    width: 100%;
  }
  
  #event .event th{ width: 100%;}
  .event th { border-bottom: 1px solid #AAB2BD;}
  .event.pre th { width: 100%;}
  .event.i-reading td{ text-align: center; padding: 0;} 
  .event.ex th{display: block; width: 100%; text-align: center;}  
  .event.ex td{ padding: 0; text-align: center;} 

  /* greeting */

  .gp-box {
    display: block;
    max-width: 100%;
    line-height: 1.5;
    text-align: left;
  }

  .g-box img{
    display: block;
    max-width: 120px;
    width: 100%;
  }

  .en .g-box img{ margin: 0;}
  .g-box .gp-box p{ padding: 0 5px;}
  .g-box, .gp-box { padding: 0;}
  .main-text{ padding: 10px 0;}

  /* registration */

  .fee th,.fee td{ width: 165px;}
  .fee-sc{ display: block; overflow-x: auto;}
  .fee-sc th,.fee-sc td{ white-space: nowrap;}
  .fee-sc::-webkit-scrollbar{ width: 10px; height: 10px;}

  /* abstract */

  .cat_table table{ margin: 0;}

  .cat_table.spe th,.cat_table.spe td{
    display: block;
    width: 100%;
  }

  /* unit */
  .sponsor table{ overflow-y: scroll;}
  .sponsor th:last-child{ width: auto;}

  /* box */

  .n-box,.j-box,.e-box{
    padding: 10px 10px;
    margin: 20px auto 20px;
  }
  .n-box p,.j-box p,.e-box p{ padding: 0 20px;}

  .e-box h5,.j-box h5{ font-size: 1.6rem; margin-left: 0;}  
  .list .j-box li, .list .e-box li, .list .n-box li { margin: 10px 0 10px 20px;}

  /* program */

  .p-section dl{ padding: 5px;}
  .area{ padding: 20px 0;}

  .time{
    text-align: left;
    padding: 0 10px;
  }

  /* registration */

  /* 登録期間 */

  .period dl{
    margin: 5px auto; /* 左寄せの場合はauto→0 */
    padding: 0;
  }


  /* party */

  .period.party dt{ width: 100%;}

  /* award */

  .period.award dl{ margin: 5px auto;}
  .period.award dt{ width: 100%;}

  /* flow */
  .important li{ margin: 0;}

  .imp-box dl{
    flex-direction: column;
    flex-wrap: wrap;
  }

  .imp-box dd{ width: auto;}

  .flow { margin: 30px auto 20px;}

  .btn-flow,
  a.btn-flow,
  button.btn-flow{
    height: auto;
    padding: 2rem 4rem;
  }

  /* accordion */

  .accordion-area li{ margin: 0;}

  /* banner */

  .bn{
    display: block;
    margin: 0 auto 50px;
    padding: 10px 0;
  }

  .bn-box { max-width: 200px;}  
  .sp-bn img { max-width: 200px;}

  /* link */

  .link { padding: 15px 0;}

  .link ul { 
    margin: 20px 0;
    padding: 0;
  }

  /* arrow */

  #arrow a{
    width: 50px;
    height: 50px;
  }

  /* contact */

  .contact{ margin-bottom: 10px;}

  .contact th, .contact td{
    display: block;
    width: 100%;
    padding: 0 20px 10px;
  }

  .contact td{ text-align: center;}

  /* English */

  .en .contact table { max-width: 720px;}
  .en .contact td { width: auto;}

}

/* android・iPhone end ----------------------------------------------------------- */