@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: url("../img/test103.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/test103.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/test102.png");
	background-repeat: no-repeat;
	background-position: 10% 50%;
	background-size: cover  
	}
}
/* ------ title ------ */
.ac-title {
	margin-bottom: 20px;
	}

.ac-title h2 {
	font-size: 20px;
	margin-top: 20px;
	margin-right: 15px;
	margin-bottom: 0px;
	margin-left: 15px;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 15px;
	background-color: #eaf4fc;
	border-bottom-width: 3px;
	border-left-width: 3px;
	border-bottom-style: solid;
	border-left-style: solid;
	border-bottom-color: #2ca9e1;
	border-left-color: #2ca9e1;
	width: auto;
	padding: 8px;
}

.ac-title span.s10 {
	display: block;
	padding-left: 20px;
	border-left-width: 18px;
	border-left-style: double;
	border-left-color: #2ca9e1;
}

.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 ------ */
ol,
ul,
li {
  list-style: disc
}

detail {
    width: 100%;
	display: inline-block;
    padding-bottom: 35px;
}
.detail .column  {
	width: 50%;
	text-align: center;
	margin-top: 20px;
	float: left;
}
.detail .column .pic {
    width: auto;
	hight: auto;
    text-align: center
}
.detail .column .left .activekato {
	padding-top: 0px;
	width: auto;
	margin: 5%;
}
.detail .column .left .activekato ul li {
    list-style: none;
    font-size: 15px;
    padding-left: 10%;
	padding-top: 1%;
	padding-bottom: 1%;
    font-style: normal;
    font-weight: lighter;
}
.detail .column .left .activekato table {
	border: 1px solid #bfff7f;
}
.detail .column .left .activekato table td {
	padding-left: 28px;
	padding-top: 15px;
	padding-bottom: 15px;
}
.midashi {
	font-weight: bold;
	color: #3E7CFF;
	font-size: 16px;
	margin-top: 4%;
	margin-left: 2%;
	margin-bottom: 4%;
	margin-right: 10%;
	padding-bottom: 1%;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #3E7CFF;
}
    
.detail .column .activekato .left table p {
    color: #000;
	font-size: 15px;
    text-align: left;
    line-height: 25px;
    font-weight: bold;
    margin: 5%;
}

.detail .column .right table {
    width: auto;
    display: run-in;
}
.column .box27 {
	position: relative;
	border: 2px solid #ffd900;
	width: auto;
	margin-top: 5%;
	margin-right: 5%;
	margin-left: 5%;
	padding: 2%
}
.column .box27 .box-title {
	position: absolute;
	display: inline-block;
	top: -27px;
	left: -2px;
	padding: 0 17px;
	height: 30px;
	line-height: 30px;
	vertical-align: middle;
	font-size: 14px;
	color: #8d6449;
	font-weight: bold;
	border-radius: 5px 5px 0 0;
	background-color: #ffd900;
}
.column .box27 p {
    padding: 0;
    font-size: 14px;
    color: #000;
    text-align: left;
    line-height: 24px;
    font-weight: bold;
    margin: 2%;
}

.column .box27 li {
	font-size: 13px;
	font-style: normal;
	color: #333;
	margin-left: -5px;
	margin-top: 0px;
}
.detail .column .right .l3 {
    width: auto;
	color: #333;
	font-weight: normal;
	background-color: #F0F8FF;
	font-size: 14px;
	border: 1px solid #2ca9e1;
	padding: 4%;
	margin: 5%;
}

.detail .column .right .l3 li {
    margin-left: 3%;
	margin-right: 5%;
	margin-top: 5%;
	margin-bottom: 2%;
	text-align: left;
}

.midashi2 {
	font-weight: bold;
	color: #2ca9e1;
	font-size: 16px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #2ca9e1;
	padding-left: 0px;
}
.photo {
	text-align: center;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box
}
 .indent02 {
    text-indent: 1em;
    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;
}
.intro .column p {
    width: 80%;
    margin-left: 0px;
    text-align: left;
}
.column {
	width: 100%;
	margin-top: 0px;
}
.detail {
    width: 100%;
}
.detail .column {
	width: 100%;
}
.detail .column .activekato {
	width: 100%;

}
.detail .column .activekato table {
    width: 100%;
}

.detail .column .right table {
	width: 100%;
}
.column .box27 {
	width: auto;
}
}
/* 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;
}
.detail {
    width: 100%;
}
.detail .column {
	width: 100%;
}
.detail .column .activekato {
	width: 100%;

}
.detail .column .activekato table {
    width: 100%;
}

.detail .column .right table {
	width: 100%;
}
.column .box27 {
	width: auto;
}
}
/* Small Desktops */
@media (min-width: 768px) and (max-width: 1096px) {

.intro .column p {
    width: 80%;
    text-align: left;
}
.detail {
    width: 100%;
}
.detail .column {
	width: 100%;
}
.detail .column .activekato {
	width: 100%;

}
.detail .column .activekato table {
    width: 100%;
}

.detail .column .right table {
	width: 100%;
}
.column .box27 {
	width: auto;
}
}
		
