@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 }
}
/* ------ main visual ------ */
.mainVisualWrap {
  width: 100%;
  min-width: 1200px;
  height: 72vh;
  position: relative;
}
.mainVisualWrap .slider {
  height: 72vh;
  overflow: hidden
}
.mainVisualWrap .slider img {
    max-width: initial;
    height: 72vh;

}
@media screen and (max-width: 768px) {
  .mainVisualWrap {
    min-width: inherit;
    height: 560px;
	width: auto;
	object-position: 50% 50%;
  }
  .mainVisualWrap .slider { height: 560px }
  .mainVisualWrap .slider img { display: none }
  .mainVisualWrap .slider li { height: 560px }
  .mainVisualWrap .slider .slider01 {
    background: url("../img/activetop_sp10.png") no-repeat;
    background-size: cover;
	object-position: 50% 50%;
  }
  .mainVisualWrap .slider .slider02 {
    background: url("../img/test102.png") no-repeat;
    background-size: cover
  }
}
/* Small Tablets */
@media (min-width: 321px)and (max-width: 767px) {
  .mainVisualWrap {
    min-width: inherit;
    height: 560px;
	object-position: 50% 50%;
  }
  .mainVisualWrap .slider { height: 560px }
  .mainVisualWrap .slider img { display: none }
  .mainVisualWrap .slider li { height: 560px }
  .mainVisualWrap .slider .slider01 {
    background: url("../img/activetop_sp10.png") no-repeat;
    background-size: cover;
	object-position: 50% 50%;
  }
  .mainVisualWrap .slider .slider02 {
    background: url("../img/test110.png") no-repeat;
    background-size: cover;
	object-position: 50% 50%;
  }
}	
@media (max-width: 320px) {
   .mainVisualWrap {
    min-width: inherit;
    height: 560px;
	object-position: 50% 50%;
  }
  .mainVisualWrap .slider { height: 560px }
  .mainVisualWrap .slider img { display: none }
  .mainVisualWrap .slider li { height: 560px }
  .mainVisualWrap .slider .slider01 {
    background: url("../img/activetop_sp10.png") no-repeat;
    background-size: cover;
	object-position: 50% 50%;
  }
  .mainVisualWrap .slider .slider02 {
    background: url("../img/test110.png") no-repeat;
    background-size: cover;
	object-position: 50% 50%;
  }
}
	
/* ------ 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;
  margin-top: 60px;
  background: url("../img/activetop_mn2.png") no-repeat;
  background-size: cover
}
#menu .menuMainInner {
  width: 1200px;
  margin: 0 auto;
  position: relative
}
#menu .menuMainBox {
  width: 500px;
  height: 680px;
  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 {
    height: 400px;
    background: url("../img/activetop_mn2.png") no-repeat;
	background-position: 2% 10%;
  }
  #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 }
}

/* ------ column ------ */
#column {
  padding-top: 80px;
  margin-top: -80px
}
.intro {
	display: inline-block;
	background-color: #3E7CFF;
	padding-bottom: 35px;
}
.column {
	color: #FFFFFF;
	width: 50%;
	text-align: center;
	margin-top: 50px;
	float: left;
}
.intro .column p {
    color: #FFFFFF;
    padding-left: 0px;
    padding-right: 0px;
    text-align: left;
    line-height: 25px;
    font-weight: lighter;
    margin-left: 40px;
    margin-right: 0px;
    margin-top: 40px;
    width: 80%;
    margin: 4%;
}
.profile {
	width: 100%;
	margin-top: 1%;
	display: block;	
}
.profile2 {
	width: 100%;
	display: none;
}
.photo {
	text-align: center;
	margin-top: 4%;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box
}
 .indent02 {
    text-indent: 1em;
    text-align: left;
}
/* ------ gallery ------ */
.gallery {
	clear: both;
	display: inline-block;
	width: auto;
	background-color: #FFFFFF;
	/* [disabled]min-width: 400px;
*/
	padding-bottom: 35px;
	padding-top: 0px;
	margin-top: -5px;
	margin-bottom: 0px;
}
.thumbnail {
    width: 23%;
    text-align: center;
    float: left;
    margin-top: 35px;
    background-color: #F1F6FF;
    padding-bottom: 20px;
    margin-left: 1%;
    margin-right: 1%;
    border-radius: 3px;
    padding-top: 20px;
    border-bottom: 4px solid #3E7CFF;
	transition: all 0.5s linear;
}
.thumbnail:hover {
    background-color: #B9CFFF;
    color: #FFFFFF;
    cursor: pointer;
}
.gallery .thumbnail h4 {
    margin-top: 5px;
    margin-bottom: 5px;
    color: #3E7CFF;
    text-align: left;
    padding-left: 30px;
    padding-right: 20px;
    font-size: 16px;
}
.gallery .thumbnail p {
    margin: 0;
    color: #000000;
    text-align: left;
    padding-left: 30px;
	padding-right: 20px;
    font-weight: normal;
}
.cards {
	width: 80%;
	height: auto;
	margin-left: 4%;
	margin-right: 4%;

}
/* ------ news ------ */
#news {
  padding-top: 40px;
  margin-top: -40px
}
#news .inner {
  width: auto;
  text-align: center;
  padding: 80px 10px;
  margin: 0 auto
}
#news h2 {
  font-size: 2.4rem;
  letter-spacing: 0.09em
}
#news .newsWrap {
  width: auto;
  text-align: left;
  margin-top: 20px
}
#news .newsWrap dl {
  width: 900px;
  font-size: 0;
  padding: 25px 20px;
  margin: 0 auto;
  border-bottom: 1px solid #c1c1c1
}
#news .newsWrap dt {
  width: 120px;
  font-size: 1.4rem;
  letter-spacing: 0.09em;
  vertical-align: top;
  display: inline-block
}
#news .newsWrap dd {
  width: 740px;
  font-size: 1.6rem;
  letter-spacing: 0.09em;
  vertical-align: top;
  display: inline-block
}
#news .newsWrap dd a {
  color: #e21412;
  text-decoration: underline
}
@media screen and (max-width: 768px) {
#news {
    padding-top: 30px;
    margin-top: -30px
  }
#news .inner {
    width: auto;
    padding: 4%;
	margin: 5%;
  }
#news h2 { font-size: 2rem }
#news .newsWrap dl {
    width: 100%;
    padding: 20px 0
  }
#news .newsWrap dt {
    width: 100%;
    display: block
  }
#news .newsWrap dd {
    width: 100%;
    margin-top: 10px;
    display: block
  }
}
/* ------ shop ------ */
#shop {
  padding-top: 40px;
  margin-top: -40px
}
#shop .inner {
    width: auto;
    text-align: center;
    margin: 5%
}
#shop h2 {
  font-size: 2.4rem;
  letter-spacing: 0.09em
}
#shop .shopWrap {
  font-size: 0;
  margin-top: 60px;
  margin-bottom: 60px;
}
#shop .shopWrap .shopInfo {
    width: 600px;
    font-size: 1.6rem;
    letter-spacing: 0.09em;
    vertical-align: middle;
    text-align: left;
    margin-left: 60px;
    display: inline-block
}
#shop .shopWrap .shopInfo .daihyo {
    font-size: 1.6rem;
}
#shop .shopWrap .shopInfo dl {
  padding: 20px;
  margin: 0 auto;
  border-bottom: 1px solid #c1c1c1
}
#shop .shopWrap .shopInfo dl:first-child { border-top: 1px solid #c1c1c1 }
#shop .shopWrap .shopInfo dt {
  font-size: 1.3rem;
  letter-spacing: 0.09em;
}
#shop .shopWrap .shopInfo dd {
  font-size: 1.6rem;
  letter-spacing: 0.09em;
  margin-top: 10px
}
.info {
    vertical-align: middle;
    margin-top: 4%;
    margin-right: 0%;
    margin-left: 0%;
    margin-bottom: 4%;
    display: inline-block;
	text-align: center;
}
@media screen and (max-width: 768px) {
#shop {
    padding-top: 30px;
    margin-top: -30px
  }
#shop .inner {
    width: auto;
    padding: 4%;
    margin: 5%
  }
#shop h2 { font-size: 2rem }
#shop .shopWrap .shopInfo {
    width: auto;
    margin-top: 50px;
	margin-bottom: 50px;
    margin-left: 4%;
    display: block
}
#shop .shopWrap .shopInfo dl {
    width: 90%;
    margin: 0;
	padding: 20px 20px
  }
#shop .shopWrap .shopInfo dt {
    width: 100%;
    display: block
  }
#shop .shopWrap .shopInfo dd {
    width: 100%;
    margin-top: 10px;
    display: block
  }
}
/* 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: 60px;
	padding-bottom: 60PX;
}
.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;
}
.thumbnail {
	width: 100%;
	margin: 2%;
}
.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;
}
.text_column {
	width: 100%;
	text-align: left;
	padding: 0;
}
.thumbnail {
	width: 100%;
	margin: 2%;
}

.text_column {
    padding-left: 20px;
    padding-right: 20px;
    width: 90%;
    text-align: left;
}
.column {
	width: 100%;
	margin-left: 0px;
	margin-right: 0px;
}
.profile {
	width: 100%;
	margin-top: 1%;
	display: none;
}
.profile2 {
	width: 100%;
	margin-top: 1%;
	display: block;
    }

.intro .column p {
	width: 90%;
	text-align: left;
	padding-left: 0px;
}
.cards {
	width: 80%;
	height: auto;
	margin-left: 4%;
	margin-right: 4%;
}
}
/* Small Desktops */
@media (min-width: 768px) and (max-width: 1096px) {
.thumbnail {
	width: 45%;
    margin: 2%;
}
.text_column {
    width: 100%;
    margin: 0;
    padding: 20px;
    text-align: left;
}
.intro .column p {
    width: 80%;
    text-align: left;
}
}
@media (max-width: 400px) {
.gallery .thumbnail h4 {
    padding-left: 40px;
}
.gallery .thumbnail p {
    padding-left: 40px; 
}	
}		
/* ------ compliance ------ */
#compliance {
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 30px;
  margin-bottom: 40px;
  text-align: center;
}
#compliance .inner {
    width: 800px;
    text-align: center;
    padding-top: 10px;
	padding-bottom: 0px;
    margin: 0 auto;
    display: inline-block;
    background-color: #D3EEF1;
    list-style-position: inside;
}
#compliance .inner .subject h2 {
    font-size: 1.5rem;
    letter-spacing: 0.09em;
    margin-bottom: 10px;	
}
#compliance .paragraph p {
    text-align: left;
    font-size: 1.2rem;
    letter-spacing: 0.09em;
    margin-top: 1px;
	margin-left: 20px;
	margin-right: 20px;
}
#compliance .complianceWrap {
    text-align: left;
    margin-top: 0px
}
#compliance .complianceWrap dl {
    width: 700px;
    font-size: 0;
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 0px;
	padding-bottom: -50px;
}
#compliance .complianceWrap dt {
    width: 200px;
    font-size: 1.2rem;
    letter-spacing: 0.09em;
    vertical-align: top;
    display: inline-block;
    margin-top: 10px; 	  	  
}
#compliance .complianceWrap dd {
    width: 700px;
    font-size: 1.2rem;
    letter-spacing: 0.09em;
    vertical-align: top;
    display: inline-block;
    margin-top: 0px; 	
	margin-left: 30px;
	margin-right: 10px;
	margin-bottom: 10px;
}
#compliance .complianceWrap dd a {
    color: #e21412;
    text-decoration: underline
}
@media screen and (max-width: 768px) {
#compliance {
    padding-top: 60px;
    margin-top: -30px
  }
#compliance .inner {
    width: 100%;
    padding: 20px 4% 20px
  }
#compliance h2 { font-size: 2rem }
#compliance .complianceWrap dl {
    width: 100%;
    padding: 20px
  }
#compliance .complianceWrap dt {
    width: 100%;
    display: block
  }
#compliance .complianceWrap dd {
    width: 100%;
    margin-top: 10px;
    padding-right: 20px;
  }
} 
