@charset "UTF-8";

/* ------ common ------ */
* {
  margin: 0;
  padding: 0;
  word-break: break-all;
  line-break: strict;
  outline: none;
  box-sizing: border-box
}
html {
  font-family: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic Pro", "Meiryo UI", "Meiryo", "MS PGothic", sans-serif;
  font-size: 62.5%;
  font-weight: 600;
  font-style: normal;
  line-height: 1.6;
  font-feature-settings: "palt";
  -webkit-overflow-scrolling: touch
}
body {
    height: 100%;
    color: #000;
    font-size: 1.5rem;
    font-style: normal;
    background: #fff;
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-text-size-adjust: 100%;
    transform: none;
}
img { max-width: 100% }
ol,
ul,
li {
  list-style: none
}
table {
  border-spacing: 0;
  border-collapse: collapse
}
form label { cursor: pointer }
input,
textarea {
}
a {
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease-in-out
}
a:hover {
  color: #000;
  outline: none
}
a:focus { outline: none }
input[type=submit] { transition: all 0.3s ease-in-out }
a img { border: none }
.cf::after {
  content: "";
  display: block;
  clear: both
}
::-moz-selection {
  color: #fff;
  background: #000
}
::selection {
  color: #fff;
  background: #000
}
::-webkit-input-placeholder { color: #999 }
::-moz-placeholder {
  color: #999;
  opacity: 1
}
:-ms-input-placeholder { color: #999 }

/* ------ header ------ */
header {
    width: 100%;
    height: 80px;
    background-color: #fff;
    top: 0;
    box-shadow: 0 0 5px rgb(0,0,0,0.3);
    z-index: 100;
    position: fixed;
}

header .inner cf {
    width: 100%;
    font-size: 0;
    margin: 0;
}

header .logo {
    vertical-align: middle;
    padding: 0 0 0 20px;
    display: inline-block;
    z-index: 100
}
header .logo a { display: block }
header .logo h1,
header .logo p {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 80px;
  letter-spacing: 0.2em;
  transition: all 0.3s;
  display: inline-block
}
header .logo h1 span,
header .logo p span {
  font-size: 2.4rem;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 769px) {
  header .menuBtn { display: none }
}
@media screen and (max-width: 768px) {
  header { height: 60px }
  header .inner { padding: 0 0 0 4% }
  header .logo {
    width: 260px;
    padding: 0
  }	
  header .logo h1,
  header .logo p {
    font-size: 1.4rem;
    line-height: 10px
  }
  header .logo h1 span,
  header .logo p span {
    font-size: 2.0rem
  }
   /* menu trigger */
  .menuBtn {
    width: 60px;
    height: 60px;
    text-align: center;
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    z-index: 100
  }
  .menuTrigger,
  .menuTrigger span {
    transition: all .4s;
    display: inline-block
  }
  .menuTrigger .menuIcon {
    width: 25px;
    height: 20px;
    position: relative;
    top: 20px;
    display: inline-block
  }
  .menuTrigger span {
    width: 100%;
    height: 3px;
    background: #3E7CFF;
    position: absolute;
    left: 0
  }
  .menuTrigger span:nth-child(1) { top: 0 }
  .menuTrigger span:nth-child(2) { top: 9px }
  .menuTrigger span:nth-child(3) { bottom: 0 }
  .menuTrigger span:nth-child(1) { animation: menu-bar01 .75s forwards }
  .menuTrigger.active span:nth-child(1) { transform: translateY(9px) rotate(-45deg) }
  .menuTrigger.active span:nth-child(2) {
    left: 50%;
    animation: active-menu-bar02 .8s forwards;
    opacity: 0
  }
  }
  @-webkit-keyframes active-menu-bar02 {
    100% { height: 0 }
  }
  @keyframes active-menu-bar02 {
    100% { height: 0 }
  }
  .menuTrigger.active span:nth-child(3) { transform: translateY(-9px) rotate(45deg) }

/* ------ nav ------ */
header nav {
  text-align: center;
  vertical-align: top;
  display: inline-block;
  float: right
}
header nav .globalNav ul {
  height: 80px;
  font-size: 0
}
header nav .globalNav li {
  height: 80px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 80px;
  letter-spacing: 0.09em;
  text-align: center;
  position: relative;
  display: inline-block
}
header nav .globalNav li::before {
  content: "";
  width: 1px;
  height: 40%;
  margin: auto;
  background: #999;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0
}
header nav .globalNav li a {
  padding: 0 10px;
  display: block;
  z-index: 1
}
header nav .globalNav li a:hover { color: #3E7CFF }

@media screen and (min-width: 769px) {
  header nav .snsWrap { display: none }
}
@media screen and (max-width: 768px) {
  header nav {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    border-top: 1px solid #c1c1c1;
    position: fixed;
    top: 60px;
    right: -100%;
    transition: all 0.3s ease-in-out;
    float: none;
    overflow-y: scroll
  }
  header nav.open {
    min-height: 100vh;
    padding-bottom: 100px;
    background: #fff;
    right: 0;
    z-index: 99
  }
  header nav .globalNav ul {
    height: auto;
    margin-top: 60px
  }
  header nav .globalNav li {
    height: 60px;
    font-size: 1.8rem;
    line-height: 60px;
    display: block
  }
  header nav .globalNav li::before {
    width: 0;
    height: 0
  }
  header nav .snsWrap {
    margin-top: 30px;
    display: block
  }
  header nav .snsWrap ul { font-size: 0 }
  header nav .snsWrap li {
    width: 26px;
    vertical-align: middle;
    display: inline-block
  }
  header nav .snsWrap li + li { margin-left: 40px }
}
/* ------ menu ------ */
#menu {
  padding-top: 80px;
  margin-top: -80px
}
#menu .inner {
  text-align: center;
  padding: 80px 0
}
#menu h2 {
  font-size: 2.4rem;
  letter-spacing: 0.09em
}
#menu .menuMain {
  width: 100%;
  height: 680px;
  position: relative;
  margin-top: 60px;
  background-image: url("../img/activetop2.png");
  background-repeat: no-repeat;
  background-position: 40% 40%;
  background-size: cover
}
#menu .menuMainInner {
  width: 1200px;
  margin: 0 auto;
  position: relative
}
#menu .menuMainBox {
  width: 500px;
  height: 480px;
  text-align: left;
  padding: 80px;
  background: rgba(255,255,255,0.7);
  position: absolute;
  top: 0;
  right: 40px
}
#menu .menuMainBox h3 {
  font-size: 2.8rem;
  letter-spacing: 0.09em;
}
#menu .menuMainBox p {
  font-size: 1.6rem;
  letter-spacing: 0.09em;
  margin-top: 30px
}
@media screen and (max-width: 768px) {
  #menu {
    padding-top: 60px;
    margin-top: -60px
  }
  #menu .inner {
    text-align: center;
    padding: 60px 0 20px
  }
  #menu h2 { font-size: 2rem }
  #menu .menuMain {
    width: auto;
	height: 60vh;
	background-repeat: no-repeat;
    background-position: 60% 40% 20% 80%;
    background-image: url(../img/activetop_sp2.png);
	background-size: cover;
}
  #menu .menuMainInner {
    width: 100%;
    padding: 0 4%;
  }
  #menu .menuMainBox {
    width: 90%;
    height: 400px;
    padding: 60px 40px;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
  }
  #menu .menuMainBox h3 { font-size: 2rem }
  #menu .menuMainBox p { margin-top: 20px }
}

@media screen and (max-width: 479px) {
  #menu .menuMain {
    width: auto;
	height: 45vh;
    background-image: url("../img/activetop_sp2.png");
	background-repeat: no-repeat;
	background-position: 10% 50%;
	background-size: cover  
  }
}
/* ------ title ------ */
.ac-title {
	margin-bottom: 20px;
	}

.ac-title h2 {
	font-size: 20px;
	color: #003399;
	margin-top: 20px;
	margin-right: 15px;
	margin-bottom: 0px;
	margin-left: 15px;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 15px;
	border-bottom-width: 1px;
	border-left-width: 14px;
	border-bottom-style: solid;
	border-left-style: double;
	border-bottom-color: #00008B;
	border-left-color: #3E7CFF;	
}	
.ac-title h5 {
	font-size: 16px;
	color: #3E7CFF;
	margin-top: 10px;
	margin-right: 15px;
	margin-bottom: 0px;
	margin-left: 15px;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 15px;
}	
/* ------ column ------ */
.terakoya {
    display: inline-block;
    padding-bottom: 35px;
}
.column {
	width: 50%;
	font-weight: normal;
	text-align: left;
	float: left;
}
.title10 {
    width: 100％;
	color: #3E7CFF;
    background-color: #eaf4fc;
    font-size: 15px;
    padding: 1%;
    border-bottom-width: 3px;
    border-left-width: 3px;
    border-bottom-style: solid;
    border-left-style: solid;
    border-bottom-color: #2ca9e1;
    border-left-color: #2ca9e1;
    margin-left: 3%;
	margin-right: 3%;
    text-align: left;
}

.title10 span.s10 {
	display: block;
	padding-left: 10px;
	border-left-width: 14px;
	border-left-style: double;
	border-left-color: #2ca9e1;
}
.title12 {
    width: 100％;
    color: #FF7FDA;
    background-color: #FFD7F3;
    font-size: 15px;
    padding: 1%;
    border-bottom-width: 3px;
    border-left-width: 3px;
    border-bottom-style: solid;
    border-left-style: solid;
    border-bottom-color: #FF7FDA;
    border-left-color: #FF7FDA;
    margin-left: 3%;
    margin-right: 3%;
    text-align: left;
}
.title12 span.s12 {
	display: block;
	padding-left: 10px;
	border-left-width: 14px;
	border-left-style: double;
	border-left-color: #FF7FDA;
}
.terakoya .column h3 {
	margin-bottom: 18px;
}
.terakoya .column hr {
	width: 80%;
	margin-left: 10%;
}
.terakoya .column p {
    width: auto;
	font-size: 15px;
	color: #000;
    padding: 0px;
    text-align: left;
    line-height: 25px;
    font-weight: normal;
    margin: 5%;
}
.terakoya .column .l2 {
	font-size: 15px;
	font-weight: normal;
	color: #000;
}	
.terakoya .column .l2 a {
	color: #36C;
	text-decoration: none;
}
.terakoya .column .profile  {
    font-size: 14px;
    background-color: #CCFFFF;
    border-radius: 5px;
    padding: 3%;
}
.terakoya .column .profilephoto {
    width: auto;
	text-align: center;
    background-color: #6E6DF8;
    border-radius: 0px;
    padding: 1%;
}
#terakoyanittei .title11 {
	width: 100%;
	color: #FFF;
	background-color: #2ca9e1;
	font-size: 15px;
	padding: 1%;
	width: auto;
	margin-left: 2%;
	margin-right: 2%;
	text-align: left;
}

#terakoyanittei .title11 span.s11 {
	display: block;
	padding-left: 12px;
	border-left-width: 14px;
	border-left-style: solid;
	border-left-color: #eaf4fc;
}
#terakoyanittei {
	width: 100%;
	color: #000;
	display: inline-block;
	text-align: center;
	margin-top: 0px;
	padding-bottom: 35px;
}
#terakoyanittei .inner h3 {
	margin-bottom: 10px;
}
#terakoyanittei table {
	width: 90%;
	margin-left: 5%;
	margin-right: 5%;
	margin-top: 2%;
	font-size: 15px;
	padding: 10%;
}
#terakoyanittei table td {
	font-size: 16px;
	padding: 1%;
	text-align: right;
}	
#terakoyanittei .left {
	font-size: 16px;
	padding: 1%;
	text-align: left;
}
@media screen and (max-width: 479px) {
#terakoyanittei{
	width: 100%;	
}
#terakoyanittei table {
	width: 90%;
	font-size: 13px;
	margin: 5%;
}
#terakoyanittei .title12 {
	width: 100%;	
}
#terakoyanittei table td {
	font-size: 13px;
	padding: 1%;
	text-align: right;
}	
#terakoyanittei .left {
	font-size: 13px;
	padding: 1%;
	text-align: left;
}
}
@media screen and (max-width: 320px) {
#terakoyanittei{
	width: 100%;	
}
#terakoyanittei .title12 {
	width: 100%;	
}
#terakoyanittei table {
	width: 90%;
	font-size: 12px;
	margin: 5%;
}
#terakoyanittei table td {
	font-size: 12px;
	padding: 1%;
	text-align: right;
}	
#terakoyanittei .left {
	font-size: 12px;
	padding: 1%;
	text-align: left;
}
}
/* footer */
.button {
	width: 200px;
	margin-top: 40px;
	margin-right: auto;
	margin-bottom: auto;
	margin-left: auto;
	padding-top: 20px;
	padding-right: 10px;
	padding-bottom: 20px;
	padding-left: 10px;
	text-align: center;
	vertical-align: middle;
	border-radius: 0px;
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: 2px;
	border: 3px solid #FFFFFF;
	color: #FFFFFF;
	transition: all 0.3s linear;
}
.button:hover {
    background-color: #6A99FF;
    color: #FFFFFF;
    cursor: pointer;
}
.copyright {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #FFFFFF;
    color: #000000;
    font-weight: lighter;
    letter-spacing: 2px;
    border-top-width: 2px;
    font-family: Arial, Helvetica, sans-serif;
}
footer {
	color: #000000;
	background-color: #3E7CFF;
	padding-top: 10px;
	padding-bottom: 10PX;
}
.intro {
	display: inline-block;
	background-color: #3E7CFF;
}

.hero_header {
    padding-left: 10px;
    padding-right: 10px;
    line-height: 22px;
    text-align: center;
    color: #FFFFFF;
    font-weight: lighter;
}

/* Mobile */
@media (max-width: 320px) {
.logo {
	width: 100%;
	text-align: left;
	margin-top: 13px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.text_column {
    width: 100%;
    text-align: left;
    padding-left: 20px;
}
.intro .column p {
    width: 80%;
    margin-left: 0px;
    text-align: left;
}
.column {
	width: 100%;
	margin-top: 0px;
}
}
/* Small Tablets */
@media (min-width: 321px)and (max-width: 767px) {
.logo {
	width: 100%;
	text-align: center;
	margin-top: 13px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.column {
	width: 100%;
	margin-left: 0px;
	margin-right: 0px;
}
.profile {
	width: 70%;
}
.intro .column p {
	width: 90%;
	text-align: left;
	padding-left: 0px;
}
}

/* Small Desktops */
@media (min-width: 768px) and (max-width: 1096px) {
.intro .column p {
    width: 80%;
    text-align: left;
}
}
