@charset "utf-8";
/* text size */
.contentmiddle{
	font-size:21px;
	line-height:1.8;
	letter-spacing:1.7;
}
.contentmiddle_child{
	font-size:21px;
	line-height:1.8;
	letter-spacing:1.7;
}
/* sidebar setting*/
.sidebar{
    background:#FFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
	position:fixed;
    top:150px;	
}
.sidebar .sidebar_title {
    background: rgba(55, 55, 55, 1.0);
	padding:20px;
    text-align: center;
    color:#FFF;
    font-weight:bold;
    letter-spacing:5px;
	margin-top:-25px;
	position:sticky;
	
}
.sidebar a{
	font-size:19px;
	padding-left:50px;
}
.sidebar a:hover{
  color:#0481A2;
  border-bottom:solid #0481A2;
}
.contentmiddle{
	position:relative;
}




/*　HAMBURGER MENU MAKING　*/
.HAMBURGER {
  margin: 0px;
  padding-bottom:44px;
  font-family:serif;color:
}

/* Navbar & Navmenu color */
:root {
  --background-navbar:#619454;/* memo→rgba(55, 55, 55, 0.98)*/
}

.header {
  background: var(--background-navbar);
  position: fixed;
  width: 100%;
  height: 52px;
}

/* Nav items */
.menu {
  list-style: none;
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  margin-top: 52px;
  padding: 0 0 10px 0;
  clear: both;
  background: var(--background-navbar);
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  transform: scale(1, 0);
  transform-origin: top;
}

/* Hamburger menu button */
.menu-btn:checked ~ .menu {
  transform: scale(1, 1);
  transform-origin: top;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

/* Hamburger menbu text */
.menu a {
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 16px;
  text-transform: capitalize;
  color: #ddd;
  opacity: 0;
  transition: 0.5s;
}

.menu li {
  border-top: 1px solid rgb(75, 75, 75);
  opacity: 0;
  transition: 0.5s;
}

.menu-btn:checked ~ .menu a,
.menu-btn:checked ~ .menu li {
  opacity: 1;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
}

.menu-btn {
  display: none;
}

.menu-icon {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding: 24px 14px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.navicon {
  background: #ddd;
  display: block;
  height: 3px;
  width: 26px;
  position: relative;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before,
.navicon:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  background: #ddd;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before {
  top: 9px;
}

.navicon:after {
  bottom: 9px;
}

/* Hamburger Menu Animation Start */
.menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.menu-btn:checked ~ .menu-icon .navicon:after {	
  transform: rotate(45deg);
}

.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before {
  top: 0;
}
.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  bottom: 0;
}

.menu-btn:checked ~ .menu-icon .navicon {
  background: rgba(0, 0, 0, 0);
  transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
/* Hamburger Menu Animation End */

/* Navbar Container */
.navtext-container {
  width: 100%;
  height: 52px;
  position: absolute;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Navbar Text */
.navtext a{
  position: relative;
  text-transform: uppercase;
  color:#ddd;
  letter-spacing: 6px;
  font-size: 20px;
}
.text{
    padding-top:30px;
    padding-left:20px;
    padding-right:20px;
    margin-left:10px;
    }
/* HOME HAMBERGUR MENU fade */
.top a{
  display:block;
  width:100vw;
  padding-top:15px;
  padding-bottom:15px;
  padding-left:45px;
}
.top {
  position: relative;
  display: inline-block;
  transition: .3s;
}
.top a:hover {
  color: #fff;
  background-color:#7D7D7D;
}


/* header decoration */
.section2{
	padding-top:300px;
	background-color:#00000D;
    opacity: .9;
    color: #FFF;
    height: 100%;
    width: 100%;
	z-index:100;
}
.introduction{
	padding-bottom:170px;
	text-align:center;
}


/* pointer showing */
/* CONTAINER */
.container a, .next a, .back a{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 -70px;
  padding:1em 2em;
  width: 200px;
  color: #000;
  font-size: 18px;
  font-weight: 700;
  transition: 0.3s;
}
.container a::after, .back a::after, .next a::after{
  content: '';
  width: 5px;
  height: 5px;
  border-top: 3px solid rgba(55, 55, 55, 0.9);
  border-right: 3px solid rgba(55, 55, 55, 0.9);
  transform: rotate(45deg);
}

.container a:hover, .back a:hover, .next a:hover{
  transform: translateY(3px);
  text-decoration: none;
  box-shadow: 0 2px 0 #aaaaaa;
}
.container a{
  background-color: rgba(55, 55, 55, 0.3);
  box-shadow: 0 5px 0 #aaaaaa;
}

/* BACK*/
.back a{
  background-color: #6DBADD;
  box-shadow: 0 5px 0 #0B4A52;
}

/* NEXT */
.next a{
  background-color: #E46141;
  box-shadow: 0 5px 0 #5D1400;
}
.lead{
  padding: 50px 20px;
}





/* people */
.balloon1{
  position: relative;
  padding: 20px;
  border-radius: 10px;
  color: #ffffff;
  background-color: #79CEAE;
  margin-left: 110px;          /* 左に余白を設ける */
}
/* 画像 - 絶対配置で左上に配置 */
.balloon1 .icon{
  position: absolute;
  left: -110px;
  top: 0;
}
/* 三角アイコン */
.balloon1::before{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: -15px;
  top: 20px;
  border-right: 15px solid #79CEAE;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}

/*information type*/
.information0{
	padding-bottom:30px;
}

.information1{
	vertical-align: middle;
	padding-left:12px;
}

.information2{
	vertical-align: middle;
	padding-right:12px;
}

.information3{
	padding-top:70px;
}

.information000{
	padding-bottom:0px;
}
.information0000{
	padding-top:100px;
}

/* website child_title showing */
.head_test {
  background:rgba(55, 55, 55, 0.9) ; /*背景色*/
  padding: 0.5em;/*文字周りの余白*/
  color: white;/*文字を白に*/
  border-radius: 0.1em;/*角の丸み*/
  font-size:23px;
}
.head_test_center{
	text-align: center;
	padding-bottom:30px;
}
.head_test_center:first-letter {
	font-size: 2em;
	color: #000DE3;
}
.head_test_center:after{
	background-color:#000DE3;
    content: "";
    display: block;
    height: 2px;
    margin: 1px auto;
    position: relative;
    width:50px;
}
.head_test_child{
  border-bottom: solid 3px #414141;
  position: relative;
  font-size:25px;
}
.head_test_child:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #F2EFE2;
  bottom: -3px;
  width: 5%;
}







/* Introduction decoration changing */
.header{
	z-index:100;
}
a{
	text-decoration: none;
}
.border_UNDERplusTOP{
	line-height:3.0;
	color:#283B65;
	border-top:solid #283B65 1px;
	border-bottom:solid #283B65 1px;
}
.question{
	color:orangered;
	font-size:22px;
}
.quote{
	text-align:right;
	padding-right:20px;
}
.quote a{
	color:#00AB7A;
	text-decoration:underline;
}


/*フェードイン*/
body {
    animation: fadeIn 3s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
}
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}


/* for Activity Record html */
.cp_timeline04 {
	position: relative;
	margin: 3em auto;
	padding-bottom: 2em;
}
.cp_timeline04:before {
	position: absolute;
	top: 0px;
	left: 45px;
	width: 3px;
	height: 100%;
	content: '';
	background: #e91e63;
}
.cp_timeline04 .timeline_item {
	margin: 0px 0px 0px 80px;
}
.cp_timeline04 .timeline_item .time_date .time {
	font-family: serif;
	font-size: 6em;
	font-weight: bold;
	position: relative;
	margin: 0;
	letter-spacing: 3px;
	color: rgba(108,154,190,0.60);
}
.cp_timeline04 .timeline_item .time_date .time:before {
	position: absolute;
	top: 50%;
	left: -42px;
	width: 10px;
	height: 10px;
	content: '';
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
	border: 3px solid #e91e63;
	background: #fff;
}
.cp_timeline04 .timeline_item .time_date .flag {
	font-size: 1.5em;
	font-weight: bold;
	margin: 0;
	margin-top: -60px;
	color: #880e4f;
}
.cp_timeline04 .timeline_item .desc {
	font-size: 0.8em;
	line-height: 20px;
	margin-top: 10px;
	padding-left: 20px;
	border-left: 1px solid #880e4f;
}
@media only screen and (max-width: 767px) {
	.cp_timeline04:before {
		left: 15px;
	}
	.cp_timeline04 .timeline_item .time_date .time:before {
		left: -32px;
	}
	.cp_timeline04 .timeline_item {
		margin: 0px 0px 0px 40px;
	}
	.cp_timeline04 .timeline_item .desc {
		padding-left: 0px;
		border-top: 1px solid #880e4f;
		border-left: none;
	}
}


/* importance showin(underline) */
.importance{
	background: linear-gradient(transparent 70%,#F6BA00 85%);
}