@charset "utf-8";
/*=================================
1: reset-CSS
2: setting
3: header
4: gnav
5: contents
6: footer
=================================*/


/* 1: reset-CSS
================================== */
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/

html,
body,
div,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  font-weight: normal;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}

li {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/* 2: setting
================================== */
*,
*:before,
*:after {
  box-sizing: border-box;
}

/* clearfix*/
.cf:after {
  content: "";
  clear: both;
  display: block;
}

.clear {
  clear: both;
}

html {
  overflow: auto;
  font-size: 62.5%;
}

body {
  font-family: 'Noto Sans JP', sans-serif, 'Yu Gothic', '游ゴシック', '游ゴシック体', YuGothic, Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
  font-feature-settings: "palt";
  font-weight: 500;
  color: #383737;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  /* safari_textBold*/
  -webkit-text-size-adjust: 100%;
  /* safari_textBold*/
  overflow-x: hidden;
}

img {
  display: block;
  line-height: 0;
}

input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

:root {
  --primary: #4ea72e;
  --bg: #b6e0a6;
  --txt: #4b7929;
}
a {
  color: #0a75b8;
}

a img {
  -webkit-transition: all .2s;
  transition: all .2s;
}

a img:hover {
  opacity: .7;
}

.pdf {
  background: url(../img/icn_pdf.svg) right center no-repeat;
    background-size: auto;
  background-size: contain;
  margin-right: 8px;
  padding-right: 24px;
}


/* flexbox */
.flexbox_wap {
  /* 折り返しのみ */
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
}
  .day {width:6.5em;}

.flexbox_sbwap {
  /* 折り返し・水平方向端揃え */
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  /* Safari */
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
}

.flexbox_sb {
  /* 折り返しなし・水平方向端揃え */
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  /* Safari */
  justify-content: space-between;
}

.flexbox_c {
  /* 折り返しなし・水平中央揃え */
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  /* Safari */
  justify-content: center;
}

.flexbox_cwap {
  /* 折り返し・水平中央揃え */
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  /* Safari */
  justify-content: center;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
}

.flexbox_atc {
  /* 垂直方向中央揃え */
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  /* Safari */
  align-items: center;
}

.flexreverse {
  flex-direction: row-reverse;
}

/* text-decoration */
.fB {
  font-weight: bold;
}

.fS {
  font-size: 80%;
  font-weight: normal;
}

.fR {
  float: right;
}

.tC {
  text-align: center;
}

.mT1em {
  margin-top: 1em;
}

.mB1em {
  margin-bottom: 1em;
}

.mB40 {
  margin-bottom: 40px;
}

.mB0 {
  margin-bottom: 0 !important;
}

.p0 {
  padding-bottom: 0 !important;
}

.tR {
  text-align: right;
}

.link_blank {
  background: url(../img/icn_blank.svg) no-repeat right center;
  background-size: 14px;
  padding-right: 20px;
}

/* media query -> pc
=======================*/
@media all and (min-width: 768px) {
  html {
    min-width: 1000px;
  }

  body {
    font-size: 16px;
    font-size: 1.6rem;
  }
}


/* 3: header
================================== */
#header {
  background: #fff;
  position: relative;
  z-index: 10;
}

#header .flexbox_sb {
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  margin-left: 5px;
}

@media all and (min-width: 768px) {

  #header .inr {
    -webkit-align-items: center;
    /* Safari */
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }

  #header .flexbox_sb {
    justify-content: space-between;
    -webkit-justify-content: space-between;
    margin: 0 auto;
  }
}

.logo {
  margin: 5px 0 0 0;
}

.logo img {
  max-width: 100px;
  height: 55px;
}

.logo li:first-child {
  margin-right: 15px;
}

@media all and (min-width: 768px) {
  .logo img {
    max-width: 150px;
  }
}

/* 4: gnav
================================== */
.menu {
  display: none;
  position: absolute;
  top: 65px;
  right: 0;
  left: 0;
  width: 90%;
  margin: 0 auto;
  padding: 30px 0;
  background: var(--primary);
  z-index: 999;
}

.menu a {
  display: block;
  padding: 20px;
  color: #FFF;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
}

.menu_trigger {
  position: absolute;
  top: 18px;
  right: 15px;
  background: var(--primary);
  border-radius: 18px;
  border: none;
  width: 110px;
  height: 36px;
  text-indent: -900em;
  overflow: hidden;
  cursor: pointer;
  outline: none;
  z-index: 999;
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}

.menu_trigger img {
  position: absolute;
  top: 13px;
  left: 0;
  right: 0;
  width: 60px;
  height: auto;
  margin: 0 auto;
  padding-left: 20px;
}

.menu_trigger span {
  display: inline-block;
  transition: all .4s;
}

.menu_trigger span {
  position: absolute;
  left: 20px;
  width: 16px;
  height: 3px;
  background-color: #FFF;
}

.menu_trigger span:nth-of-type(1) {
  top: 13px;
}

.menu_trigger span:nth-of-type(2) {
  top: 21px;
}

.menu_trigger.active span {
  background-color: #FFF;
}

.menu_trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(4px) rotate(-45deg);
  transform: translateY(4px) rotate(-45deg);
}

.menu_trigger.active span:nth-of-type(2) {
  -webkit-transform: translateY(-4px) rotate(45deg);
  transform: translateY(-4px) rotate(45deg);
}

.layer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFF;
  opacity: 0.6;
  z-index: 5;
}

/* media query -> pc
=======================*/
@media all and (min-width: 768px) {
  .menu_trigger {
    display: none;
  }

  .menu {
    display: block;
    position: static;
    width: 100%;
    margin: 0 30px;
    padding: 20px 0;
    background: none;
    font-size: 0;
  }

  .menu a {
    position: relative;
    display: block;
    padding: 0;
    color: #000;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
  }

  .menu a:hover {
    color: #009999;
  }

  .menu a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 0;
    height: 3px;
    background-color: #009999;
    transition: .3s;
  }

  .menu a:hover::after {
    width: 100%;
  }

  .menu li {
    display: inline-block;
    padding-left: 20px;
    font-size: 1.6rem;
  }

  .menu li:first-child {
    padding-left: 0;
  }
}

/* 5: contents
================================== */
.sp_none {
  display: none;
}

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

  .pc_none {
    display: none;
  }
}

@media only screen and (min-width: 768px) {
  .section_inr {
    max-width: 1200px;
    margin: 0 auto;
  }
}

.section_inr h2 {
  font-size: 2.2rem;
  font-weight: bold;
  color: #FFF;
  text-align: center;
  position: relative;
  background: var(--primary);
  width: 100%;
  margin: 40px auto 40px;
}

@media only screen and (min-width: 768px) {
  .section_inr h2 {
    font-size: 2.4rem;
  }
}

.mainimg_bg {
    background: #5482b8; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(90deg, #5482B8 0%, #46AFBD 25%, #3EB592 50%, #ABAB4A 75%, #FF954F 100%, #FF954F 100%); /* Safari */
    background: -o-linear-gradient(90deg, #5482B8 0%, #46AFBD 25%, #3EB592 50%, #ABAB4A 75%, #FF954F 100%, #FF954F 100%); /* Opera */
    background: -moz-linear-gradient(90deg, #5482B8 0%, #46AFBD 25%, #3EB592 50%, #ABAB4A 75%, #FF954F 100%, #FF954F 100%); /* Firefox */
    background: linear-gradient(90deg, #5482B8 0%, #46AFBD 25%, #3EB592 50%, #ABAB4A 75%, #FF954F 100%, #FF954F 100%); /* Standard */
}

#main h1 {
  font-size: 3.2rem;
  color: #fff;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 10px;
  padding: 40px 16px;
  text-align: center;
}

.mainimg_bg p {
  color:white;
  padding-bottom:40px;
}


#main h1 span {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: 2.8rem;
  margin-bottom: 8px;
}
#main h1 img {
  width: 220px;
}
@media only screen and (min-width: 768px) {
  #main h1 {
    padding: 40px;
    font-size: 5.6rem;
    line-height: 2;
  }
  #main h1 span {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: center;
    justify-content: center;
    font-size: 4rem;
    margin-bottom: 0;
  }
  #main h1 img {
    width: 320px;
    padding-top: 10px;
    padding-right: 24px;
  }
}

.section_inr {
  padding: 0 24px 64px;
}

#outline {
  position: relative;
  z-index: 2;
}

.txt {
  margin-bottom: 40px;
}

@media only screen and (min-width: 768px) {
  .outlineflex {
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
  }

  .flyer {
    width:250px;
  }
}

.flyer {
	text-align:center;
	margin-top:1em;
}

.flyer img {
	max-width:100%;
	height:auto;
	margin:0 auto;
}

#outline dt {
  width: 100%;
  padding: 8px;
  background: var(--bg);
  color: #FFF;
  margin-right: 2em;
  text-align: center;
  font-weight: bold;
  border-radius: 3px;
  color: #222;
}

@media all and (min-width: 768px) {
  #outline dt {
    float: left;
    width: 9em;
    margin-bottom: 8px
  }
}

#outline dd {
  width: 100%;
  padding: 8px;
  color: var(--txt);
}

@media all and (min-width: 768px) {
  #outline dd {
    width: calc(100% - 11em);
    margin-left: 11em;
    margin-bottom: 8px;
  }
}

.btn {
  display: block;
  background: var(--primary);
  border: solid 1px var(--primary);
  color: white;
  font-weight: bold;
  font-size: 1.8rem;
  text-align: center;
  padding: 0.5em;
  border-radius: 10px;
  margin: 1em auto;
  box-shadow: 0px 0px 15px -5px #777777;
  text-decoration: none;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.btn:hover {
  background: white;
  color: var(--primary);
}

@media only screen and (min-width: 768px) {
  #outline dl {
    width: calc(100% -280px);
  }

  .outlineimg {
    width: calc(100% - 800px);
    text-align: center;
  }
}
#program {
    background: linear-gradient(138deg, #c9df770f 0%,#b3c77c0f 43%,#85dcab1a 100%)
}

#program table {
  width:100%;
}

#program td {
  font-size: 1.8rem;
  padding: 8px 8px 8px 32px;
  border-left: 5px solid var(--primary);
}

@media only screen and (max-width: 768px) {
  #program td {
    display:block;
    width:100%;
    padding-left: 16px;
    margin-bottom:1em;
  }
}

.flexbox_wap dl {
	width:50%;
}

.speaker .panelist {clear: both;}
.speaker .panelist .name{
  font-weight: bold;
  color: #333;}

#contact {
  background: #e2e9e9;
}
#contact p {
  text-align: center;
}

#contact p img {
  display: inline-block;
}

.flexbox_cwap li {
  margin: 0.5em;
}

.flexbox_cwap li a {
  position: relative;
  padding-left: 15px;
}

.flexbox_cwap li a::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 5px;
  position: absolute;
  left: 0;
  top: 35%;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.registrationList {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.registrationList li {
  padding: 0 16px;
}

@media only screen and (max-width: 768px) {
  #program td {
    display:block;
    width:100%;
    padding-left: 16px;
    margin-bottom:1em;
  }
}

/* 6: footer
================================== */
#footer {
  padding: 30px 20px;
  background: var(--primary);
}

.copy {
  text-align: center;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
}

/* go topボタン */
#page-top {
  position: fixed;
  bottom: 20px;
  right: 10px;
  font-weight: bold;
  font-size: 80%;
  z-index: 5;
  text-align: center;
}

#page-top a {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  background: var(--primary);
  ;
  color: #fff;
  opacity: 0.7;
}

#page-top a:hover {
  opacity: 0.7;
}

#page-top a:active {
  opacity: 1;
}

#page-top a:after {
  position: absolute;
  right: 15px;
  top: 40%;
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}


span.image_circle img {
  width:120px;
  height:120px;
  object-fit:cover;
  border-radius:50%;
  object-position:0px 0px;
  float:left;
  margin-bottom:16px;
  margin-right:16px;
}


/* media query -> sp
=======================*/
@media all and (min-width: 768px) {

  /* go topボタン */
  #page-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
  }

  #page-top a {
    width: 60px;
    height: 60px;
  }

  #page-top a:after {
    position: absolute;
    right: 21px;
    width: 17px;
    height: 17px;
  }

}


#program .section_inr,
#contact .section_inr{
  padding-top: 40px;
}
