@charset "UTF-8";
/* CSS Document */
@import url("https://use.fontawesome.com/releases/v5.7.0/css/all.css");
@import url('https://fonts.googleapis.com/css?family=Open+Sans&display=swap');
@import url('https://fonts.googleapis.com/css?family=Kosugi+Maru&display=swap');
body {
  width: 100vw;
  font-family: 游ゴシック体, 'Yu Gothic', "Helvetica Neue", Helvetica, Arial, "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  min-height: calc(100vh - 14px);
  position: relative;
}
main {
  margin: 80px 8vw 0;
	padding-bottom: 150px;
}
.border_top{
    width: 100vw;
    height: 14px;
    background: #6cbb5a;
    position: fixed;
    top: 0;
    z-index: 9999;
}

.border_bottom{
    width: 100vw;
    height: 14px;
    background: #6cbb5a;
    position: absolute;
    bottom: 0;
}
/*----------------------------
親要素をはみ出して横幅100%にする
------------------------------*/
.fluid-box {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.fluid-box-inner {
  margin: 0 auto;
}
p {
  font-size: 1rem;
  color: #333;
  line-height: 1.5em;
}
a {
  display: block;
  color: #333;
  text-decoration: none;
}
a:hover {
  opacity: .6;
}
img {
  max-width: 100%;
  height: auto;
}
ul li {
  list-style: none;
}
section {
  margin-bottom: 70px;
	width: 100%;
}
.box_white, .box_gray {
  background: #fff;
  border-radius: 30px;
  box-shadow: 4px 8px 8px 0 rgba(5, 5, 5, .08);
}
.box_gray {
background: #F4F5F7;
}
.main .box_white, .main .box_gray {
  padding: 20px 25px;
}
.flex {
  display: flex;
}
.mb0 {
  margin-bottom: 0px !important;
}
.mb10 {
  margin-bottom: 10px !important;
}
.mb20 {
  margin-bottom: 20px !important;
}
.mb30 {
  margin-bottom: 30px !important;
}
.mb40 {
  margin-bottom: 40px !important;
}
.mb50 {
  margin-bottom: 50px !important;
}
.mt10 {
  margin-top: 10px !important;
}
.mt20 {
  margin-top: 20px !important;
}
.mt30 {
  margin-top: 30px !important;
}
.mt40 {
  margin-top: 40px !important;
}
.mt50 {
  margin-top: 50px !important;
}
.txt_c {
  text-align: center !important;
}
.txt_l {
  text-align: left !important;
}

.fwb{
  font-weight: bold !important;
}

.fcRed{
  color: red !important;
}


/*-----------------------
ボタン
-------------------------*/
.btn {
  width: 242px;
  margin: 20px auto 0;
  overflow: hidden;
  padding: 12px 0;
  border-radius: 30px;
  background-color: #E59C4D;
  color: #fff;
  position: relative;
  text-align: center;
}
.top .btn{
   background-color: #6cbb5a; 
}
.btn div {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn:hover span {
  transform: translateX(15px);
}
.btn:hover svg {
  opacity: 1;
  transform: translate(15px, -50%);
}
.btn span {
  display: inline-block;
  transition: transform .3s cubic-bezier(.455, .03, .515, .955);
}
.btn svg {
  position: absolute;
  top: 50%;
  left: 10px;
  fill: #fff;
  opacity: 0;
  transform: translate(-10px, -50%);
  transition: opacity .3s .05s cubic-bezier(.455, .03, .515, .955), transform .3s .05s cubic-bezier(.455, .03, .515, .955);
}
.btn a {
  color: #fff;
}
.btn a:hover {
  opacity: 1;
}
/*-----------------------
fadein
-------------------------*/
.fadeIn {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 500ms;
}
.fadeIn.is-show {
  opacity: 1;
  transform: translate(0, 0);
}
/* 2つ目の要素に200msのdelayをかける */
ul > .fadeIn:nth-of-type(2) {
  -moz-transition-delay: 200ms;
  -webkit-transition-delay: 200ms;
  -o-transition-delay: 200ms;
  -ms-transition-delay: 200ms;
}
/* 3つ目の要素に400msのdelayをかける */
ul > .fadeIn:nth-of-type(3) {
  -moz-transition-delay: 300ms;
  -webkit-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
}
ul > .fadeIn:nth-of-type(4) {
  -moz-transition-delay: 400ms;
  -webkit-transition-delay: 400ms;
  -o-transition-delay: 400ms;
  -ms-transition-delay: 400ms;
}
ul > .fadeIn:nth-of-type(5) {
  -moz-transition-delay: 500ms;
  -webkit-transition-delay: 500ms;
  -o-transition-delay: 500ms;
  -ms-transition-delay: 500ms;
}
ul > .fadeIn:nth-of-type(6) {
  -moz-transition-delay: 600ms;
  -webkit-transition-delay: 600ms;
  -o-transition-delay: 600ms;
  -ms-transition-delay: 600ms;
}
ul > .fadeIn:nth-of-type(7) {
  -moz-transition-delay: 700ms;
  -webkit-transition-delay: 700ms;
  -o-transition-delay: 700ms;
  -ms-transition-delay: 700ms;
}
ul > .fadeIn:nth-of-type(8) {
  -moz-transition-delay: 800ms;
  -webkit-transition-delay: 800ms;
  -o-transition-delay: 800ms;
  -ms-transition-delay: 800ms;
}
ul > .fadeIn:nth-of-type(9) {
  -moz-transition-delay: 900ms;
  -webkit-transition-delay: 900ms;
  -o-transition-delay: 900ms;
  -ms-transition-delay: 900ms;
}
ul > .fadeIn:nth-of-type(10) {
  -moz-transition-delay: 1000ms;
  -webkit-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
}

/*-----------------------
header
-------------------------*/
header {
  width: 88vw;
  padding: 10px 6vw;
  justify-content: space-between;
  position: fixed;
  top: 14px;
  z-index: 9999;
  background: rgba(255, 255, 255, 1);
	display: flex;
}
header > p {
  margin-right: 40px;
}
header > p > img {
  margin-right: 20px;
}
header .grobal_menu_pc {
  width: 500px;
  padding-top: 10px;
  justify-content: space-between;
  position: relative;
}
header .grobal_menu_pc {
  width: 500px;
  padding-top: 10px;
  justify-content: space-between;
  position: relative;
}
header .grobal_menu_pc > li:nth-child(even)::before {
  content: '';
  width: 2px;
  height: 20px;
  background: #fff;
  display: block;
}
header .grobal_menu_pc > li {
  padding-bottom: 1px;
  color: hsl(222, 25%, 14%);
  position: relative;
}
header .grobal_menu_pc > li::after {
  content: '';
  position: absolute;
  height: 2px;
  width: 100%;
  left: 0;
  bottom: 0;
  opacity: 0;
  transform: translateY(3px);
  background: #6cbb5a;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
header .grobal_menu_pc > li:hover::after {
  opacity: 1;
  transform: translateY(0);
}
header .grobal_menu_pc > li a:hover {
  opacity: 1;
}
header .grobal_menu_pc > .li_movielist {
  position: relative;
}
header .grobal_menu_pc > li .gm_movie {
  width: 300px;
  padding: 10px;
  padding-top: 20px;
  display: none;
  position: absolute;
  top: 28px;
  background: rgba( 108,187,90 , .8 );
  z-index: 2;
}
header .grobal_menu_pc > li .gm_movie li {
  margin: 12px auto;
}
header .grobal_menu_pc > li .gm_movie li::before {
  content: '>';
  display: inline;
  font-size: 12px;
  margin-right: 6px;
  vertical-align: text-bottom;
  color: #fff;
}
header .grobal_menu_pc > li .gm_movie li a {
  display: inline-block;
  color: #fff;
}
header .grobal_menu_pc > li .gm_movie li a:hover {
  opacity: .6;
}

.hamburger_menu {
  display: none;
}
/*-----------------------
footer
-------------------------*/
footer div {
  width: 100vw;
  height: 16vw;
}
/*-----------------------
下層ページ
-------------------------*/
.top_img {
  height: 320px;
  background-image: url("../img/under_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 60px;
  margin-top: 60px;
	background-position: 50% 43%;
}
.top_img div {
  margin: 0 8vw;
  text-align: center;
}
.top_img h2, .education h2 {
  font-size: 2.6rem;
  text-align: center;
  display: inline-block;
  line-height: 1.2em;
  color: #333;
  letter-spacing: 0.1em;
  margin-top: 148px;
}
.top_img h2::after, .education h2::after {
  content: '';
  width: 80px;
  height: 5px;
  background: #6CBA5A;
  display: block;
  margin: 16px auto;
}
.top_img p {
  font-size: 1.25rem;
  color: #333;
}
.right_box {
  /*width: calc(100% - 345px);*/
  background: #F4F5F7;
  padding: 40px;
}
h3 {
  font-size: 24px;
  font-weight: 100;
  margin-bottom: 20px;
  position: relative;
  padding: .5rem 0;
  border-bottom: 3px solid #6CBA5A;
	margin-top: 20px;
}

h3:first-child{
	margin-top: 0;
}
h3:before {
  position: absolute;
  bottom: -14px;
  left: 1em;
  width: 0;
  height: 0;
  content: '';
  border-width: 14px 12px 0;
  border-style: solid;
  border-color: #6CBA5A transparent transparent;
}
h3:after {
  position: absolute;
  bottom: -10px;
  left: 1em;
  width: 0;
  height: 0;
  content: '';
  border-width: 14px 12px 0;
  border-style: solid;
  border-color: #F4F5F7 transparent transparent;
}
h4 {
  color: #6CBA5A;
  font-size: 17px;
	padding: 3px;
	line-height: 1.6;
	box-sizing: border-box;
}
/*-----------------------
学会
-------------------------*/

.dawnload a{
    display: inline-block;
    border-bottom: 1px solid ;
    color: #E76264;
    font-weight: bold;
}


.atention{
	padding:20px;
  margin-bottom: 30px;
	box-sizing: border-box;
  background-color: #e86969;
	border: 2px solid #e86969;
}
.atention>p{
	text-align: center;
	/* color: #e86969; */
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
}
.award{
	background:#EC1855; 
	color: #fff; 
	padding:2px 10px;
	font-weight: bold; 
	display: block; 
	margin-bottom: 5px; 
	width: 250px;
		  text-align: center;
	box-sizing: border-box;
}
@media screen and (max-width:767px) {
	  header {
    background: none;
  }
  header > p > img, header > p > a > img {
    max-width: 86%;
    display: block;
  }
  .side_menu, .grobal_menu_pc {
    display: none;
  }
  .hamburger_menu {
    display: block;
    position: fixed;
    right: 10px;
    top: 30px;
    z-index: 9999;
  }
  .menu-trigger, .menu-trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
  }
  .menu-trigger {
    position: relative;
    width: 50px;
    height: 44px;
    z-index: 9999;
  }
  .menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #6cbb5a;
    border-radius: 4px;
  }
  .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  .menu-trigger span:nth-of-type(2) {
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
  }
  .menu-trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(20px) rotate(-315deg) scale(.8);
    transform: translateY(20px) rotate(-315deg) scale(.8);
    background: #fff;
  }
  .menu-trigger.active span:nth-of-type(2) {
    width: 60px;
    height: 60px;
    background-color: transparent;
    border: 3px solid #fff;
    border-radius: 50%;
  }
  .menu-trigger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-20px) rotate(315deg) scale(.8);
    transform: translateY(-20px) rotate(315deg) scale(.8);
    background: #fff;
  }
  .navmenu {
    background: #6cbb5a;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 990;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 29px;
    transform: translateY(-100%);
    transition: all 0.5s;
    width: 100%;
  }
  .navmenu > ul {
    width: 90vw;
    margin: 0 auto;
    padding: 0;
    overflow: scroll;
  }
  .navmenu > ul li {
    font-size: 0.7em;
    list-style-type: none;
    padding-bottom: 5px;
    width: 100%;
    border-bottom: 2px dotted #fff;
    color: #fff;
    position: relative;
  }
  .navmenu > ul > li::after {
    content: '▶︎';
    display: inline;
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 16px;
  }
  .navmenu > ul li.movie {
    border-bottom: none;
  }
  .navmenu > ul li:last-child {
    padding-bottom: 0;
  }
  .navmenu > ul li a {
    display: block;
    color: #fff;
  }
  .navmenu.active {
    transform: translateY(0%);
  }
  .acMenu dt {
    display: block;
    text-align: left;
    cursor: pointer;
    border-bottom: 2px dotted #fff;
  }
  .acMenu dd {
    width: 100%;
    line-height: 50px;
    text-align: center;
    display: none;
  }
  .acMenu dd ul {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: left;
  }
  .acMenu dd ul li {
    width: 48%;
    font-size: 20px;
    border-bottom: none;
  }

  .btn {
    width: 60vw;
    margin: 20px auto 0;
  }
  footer div {
    height: 26vw;
  }
  .border_bottom{
    position: fixed;
    bottom: 0;
  }
	.award{
	width: 100%;
}

}
@media (orientation: landscape) {}


