@charset "UTF-8";

/* ==========================================================================
   common
   ========================================================================== */
body{
  background: #fcfcfc;
}

@media screen and (min-width: 960px){
.contents-wrap{
  width: 100%;
  position:relative;
  display: block;
  overflow: hidden;
}
.padding{
  padding: 80px 0 100px 0;
}
.overflow{
  overflow: hidden;
}
.contents-area{
  max-width: 1000px;
  margin: 0 auto;
  display: block;
}
}

@media screen and (min-width: 480px) and (max-width:959px) {
.contents-wrap{
  width: 100%;
  position:relative;
  overflow: hidden;
}
.padding{
  padding: 50px 0;
}
.overflow{
  overflow: hidden;
}
.contents-area{
  width: 92%;
  padding: 0 4%;
  display: block;
}
}

@media screen and (max-width:479px) {
.contents-wrap{
  width: 100%;
  position:relative;
  overflow: hidden;
}
.padding{
  padding: 40px 0;
}
.overflow{
  overflow: hidden;
}
.contents-area{
  width: 90%;
  padding: 0 5%;
  display: block;
}
}


/* ==========================================================================
   transition
   ========================================================================== */
/*body::after{
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color:#fff;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s ease;
}
body.transition::after{
  opacity: 1;
}
body.transition article{
}*/


/* ==========================================================================
   header-nav
   ========================================================================== */
@media screen and (min-width: 960px){
.header-nav{
  z-index:10;
  width: calc(100% - 100px);
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  position: relative;
  background: #fff;
}
.header-nav .logo{
  width: 320px;
  height: auto;
  display: block;
  float: left;
  transition: 0.2s ease;
  margin: 0 38px 0 30px;
}
.header-nav .logo img{
  width: 100%;
  height: auto;
  display: block;
}
.header-nav .txt-header{
  width: auto;
  height: 22px;
  display: block;
  float: left;
  margin: 2px 0 0 0;
}
.header-nav .txt-menu{
  width: 41px;
  height: 20px;
  display: block;
  position: absolute;
  top: 50px;
  right: 120px;
  display: none;
}
}

@media screen and (min-width: 480px) and (max-width:959px) {
.header-nav{
  z-index:10;
  width: calc(100% - 100px);
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  position: relative;
  background: #fff;
}
.header-nav .logo{
  width: 230px;
  height: auto;
  display: block;
  float: left;
  transition: 0.2s ease;
  margin: 0 20px 0 25px;
}
.header-nav .logo img{
  width: 100%;
  height: auto;
  display: block;
}
.header-nav .txt-header{
  width: auto;
  height: 16px;
  display: block;
  float: left;
  margin: 2px 0 0 0;
}
.header-nav .txt-menu{
  width: 41px;
  height: 20px;
  display: block;
  position: absolute;
  top: 50px;
  right: 120px;
  display: none;
}
}

@media screen and (max-width:479px) {
.header-nav{
  z-index:10;
  width: calc(100% - 100px);
  width: 100%;
  height: 70px;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  background: #fff;
}
.header-nav .logo{
  width: 195px;
  height: auto;
  display: block;
  float: left;
  transition: 0.2s ease;
  margin: 2px 0 0 5%;
}
.header-nav .logo img{
  width: 100%;
  height: auto;
  display: block;
}
.header-nav .txt-header{
  width: auto;
  height: 15px;
  display: block;
  margin: -18px 0 0 6%;
}
.header-nav .txt-menu{
  display: none;
}
}



/* ==========================================================================
   drawer_menu
   ========================================================================== */
@media screen and (min-width: 960px){
.drawer_menu{
  width: 100px;
  height: 100px;
  background: #84aed9;
  position: fixed;
  top: 0;
  right: 0;
  display: block;
  z-index: 1100;
}
.drawer_menu a{
  color: inherit;
  text-decoration: none;
  display: block;
  transition: 0.2s ease-in-out;
}
.drawer_menu a:visited{
  color: inherit;
}
.drawer_menu .drawer_bg{
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 900;
  background-color: rgba(0, 0, 0, 0.6);
  background-color: rgba(80, 177, 192, 0.6);
  background-color: rgba(87, 56, 115, 0.4);
  background-color: rgba(187, 196, 239, 0.7);
  display: none;
  top: 0;
  left: 0;
}
.drawer_menu .drawer_button{
  display: block;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
  z-index: 1200;
  color: #276490;
  margin: 39px 0 0 35px;
}
.drawer_menu .drawer_nav_wrapper{
  width: 460px;
  height: 100%;
  transition: all 0.2s;
  transform: translate(460px);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  background-color: #FFF;
  display: flex;
	align-items: center;
}
.drawer_menu .drawer_nav_wrapper.open{
  transform: translate(0);
}
.menu-trigger,
.menu-trigger span{
  display: inline-block;
  transition: all .2s;
  box-sizing: border-box;
}
.menu-trigger{
  position: relative;
  width: 30px;
  height: 22px;
}
.menu-trigger span{
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #222;
  background-color: #fff;
}
.menu-trigger span:nth-of-type(1){
  top: 0;
}
.menu-trigger span:nth-of-type(2){
  top: 10px;
}
.menu-trigger span:nth-of-type(3){
  bottom: 0;
}
.menu-trigger.active span:nth-of-type(1){
  transform: translateY(10px) rotate(-45deg);
  background-color: #333;
}
.menu-trigger.active span:nth-of-type(2){
  opacity: 0;
  background-color: #333;
}
.menu-trigger.active span:nth-of-type(3){
  transform: translateY(-10px) rotate(45deg);
  background-color: #333;
}
.drawer_menu .drawer_nav{
  padding: 0 50px;
}
.drawer_menu .drawer_nav li{
  margin-left: 10px;
  margin-bottom: 8px;
  font-size: 2.6rem;
  font-weight: 400;
  letter-spacing: 1em;
  line-height: 30px;
  color: #333;
}
.drawer_menu .drawer_nav li a img{
  transition: all 0.2s ease;
}
.drawer_menu a:hover img{
  opacity: 0.5;
}
}

@media screen and (min-width: 480px) and (max-width:959px) {
.drawer_menu{
  width: 80px;
  height: 80px;
  background: #84aed9;
  position: fixed;
  top: 0;
  right: 0;
  display: block;
  z-index: 1100;
}
.drawer_menu a{
  color: inherit;
  text-decoration: none;
  display: block;
  transition: 0.2s ease-in-out;
}
.drawer_menu a:visited{
  color: inherit;
}
.drawer_menu .drawer_bg{
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 900;
  background-color: rgba(0, 0, 0, 0.6);
  background-color: rgba(80, 177, 192, 0.6);
  background-color: rgba(87, 56, 115, 0.4);
  background-color: rgba(187, 196, 239, 0.7);
  display: none;
  top: 0;
  left: 0;
}
.drawer_menu .drawer_button{
  display: block;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
  z-index: 1200;
  color: #276490;
  margin: 29px 0 0 25px;
}
.drawer_menu .drawer_nav_wrapper{
  width: 320px;
  height: 100%;
  transition: all 0.2s;
  transform: translate(320px);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  background-color: #FFF;
  display: flex;
	align-items: center;
}
.drawer_menu .drawer_nav_wrapper.open{
  transform: translate(0);
}
.menu-trigger,
.menu-trigger span{
  display: inline-block;
  transition: all .2s;
  box-sizing: border-box;
}
.menu-trigger{
  position: relative;
  width: 30px;
  height: 22px;
}
.menu-trigger span{
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #222;
  background-color: #fff;
}
.menu-trigger span:nth-of-type(1){
  top: 0;
}
.menu-trigger span:nth-of-type(2){
  top: 10px;
}
.menu-trigger span:nth-of-type(3){
  bottom: 0;
}
.menu-trigger.active span:nth-of-type(1){
  transform: translateY(10px) rotate(-45deg);
  background-color: #333;
}
.menu-trigger.active span:nth-of-type(2){
  opacity: 0;
  background-color: #333;
}
.menu-trigger.active span:nth-of-type(3){
  transform: translateY(-10px) rotate(45deg);
  background-color: #333;
}
.drawer_menu .drawer_nav{
  padding: 0 0 0 50px;
}
.drawer_menu .drawer_nav li{
  margin-bottom: 8px;
  font-size: 2.6rem;
  font-weight: 400;
  letter-spacing: 1em;
  line-height: 30px;
  color: #333;
}
.drawer_menu .drawer_nav li a img{
  transition: all 0.2s ease;
}
.drawer_menu a:hover img{
  opacity: 0.5;
}
}

@media screen and (max-width:479px) {
.drawer_menu{
  width: 70px;
  height: 70px;
  background: #84aed9;
  position: fixed;
  top: 0;
  right: 0;
  display: block;
  z-index: 1100;
}
.drawer_menu a{
  color: inherit;
  text-decoration: none;
  display: block;
  transition: 0.2s ease-in-out;
}
.drawer_menu a:visited{
  color: inherit;
}
.drawer_menu .drawer_bg{
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 900;
  background-color: rgba(187, 196, 239, 0.7);
  display: none;
  top: 0;
  left: 0;
}
.drawer_menu .drawer_button{
  display: block;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
  z-index: 1200;
  color: #276490;
  margin: 24px 0 0 20px;
}
.drawer_menu .drawer_nav_wrapper{
  width: 300px;
  height: 100%;
  transition: all 0.2s;
  transform: translate(300px);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  background-color: #FFF;
  display: flex;
	align-items: center;
}
.drawer_menu .drawer_nav_wrapper.open{
  transform: translate(0);
}
.menu-trigger,
.menu-trigger span{
  display: inline-block;
  transition: all .2s;
  box-sizing: border-box;
}
.menu-trigger{
  position: relative;
  width: 30px;
  height: 22px;
}
.menu-trigger span{
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #222;
  background-color: #fff;
}
.menu-trigger span:nth-of-type(1){
  top: 0;
}
.menu-trigger span:nth-of-type(2){
  top: 10px;
}
.menu-trigger span:nth-of-type(3){
  bottom: 0;
}
.menu-trigger.active span:nth-of-type(1){
  transform: translateY(10px) rotate(-45deg);
  background-color: #333;
}
.menu-trigger.active span:nth-of-type(2){
  opacity: 0;
  background-color: #333;
}
.menu-trigger.active span:nth-of-type(3){
  transform: translateY(-10px) rotate(45deg);
  background-color: #333;
}
.drawer_menu .drawer_nav{
  padding: 0 0 0 40px;
}
.drawer_menu .drawer_nav li{
  margin: 1px 0;
  color: #333;
  padding: 0;
}
.drawer_menu .drawer_nav li a img{
  width: auto;
  height: 21px;
  transition: all 0.2s ease;
}
}


/* ==========================================================================
   home
   ========================================================================== */
@media screen and (min-width: 960px){
.main-visual .visual{
  width: 50%;
  height: 48.2vw;
  float: left;
  display: flex;
	align-items: center;
	justify-content: center;
}
.main-visual .shiro{
  background-image: url(../images/bg-shiro.jpg);
  background-position: center;
  background-size: cover;
}
.main-visual .some{
  background-image: url(../images/bg-some.jpg);
  background-position: center;
  background-size: cover;
}
.main-visual .visual .object-wrap{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 60px 0 0 0;
}
.main-visual .visual .icon img{
  width: auto;
  height: 5vw;
  min-height: 87px;
  margin: 0 0 20px 0;
}
.main-visual .visual .btn a{
  width: 260px;
  height: 56px;
  display: flex;
	align-items: center;
	justify-content: center;
  box-sizing:border-box;
  border: 0px solid #222;
  background: #fff;
}
.main-visual .visual .btn a:hover img{
  opacity: 0.4;
}
.main-visual .visual .btn a img{
  width: 115px;
  height: 18px;
  padding: 0 0 0 10px;
  transition: all 0.2s ease;
}
}

@media screen and (min-width: 480px) and (max-width:959px) {
.main-visual .visual{
  width: 100%;
  height: 50vh;
  float: left;
  display: flex;
	align-items: center;
	justify-content: center;
}
.main-visual .shiro{
  background-image: url(../images/bg-shiro.jpg);
  background-position: center;
  background-size: cover;
}
.main-visual .some{
  background-image: url(../images/bg-some.jpg);
  background-position: center;
  background-size: cover;
}
.main-visual .visual .object-wrap{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 60px 0 0 0;
}
.main-visual .visual .icon img{
  width: auto;
  height: 86px;
  margin: -36px 0 22px 0;
}
.main-visual .visual .btn a{
  width: 230px;
  height: 46px;
  display: flex;
	align-items: center;
	justify-content: center;
  box-sizing:border-box;
  border: 0px solid #222;
  background: #fff;
}
.main-visual .visual .btn a img{
  width: auto;
  height: 17px;
  padding: 0 0 0 10px;
}
}

@media screen and (max-width:479px) {
.main-visual .visual{
  width: 100%;
  height: 45vh;
  float: left;
  display: flex;
	align-items: center;
	justify-content: center;
}
.main-visual .shiro{
  background-image: url(../images/bg-shiro.jpg);
  background-position: center;
  background-size: cover;
}
.main-visual .some{
  background-image: url(../images/bg-some.jpg);
  background-position: center;
  background-size: cover;
}
.main-visual .visual .object-wrap{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 60px 0 0 0;
}
.main-visual .visual .icon img{
  width: auto;
  height: 64px;
  margin: -40px 0 10px 0;
}
.main-visual .visual .btn a{
  width: 170px;
  height: 40px;
  display: flex;
	align-items: center;
	justify-content: center;
  box-sizing:border-box;
  border: 0px solid #222;
  background: #fff;
}
.main-visual .visual .btn a img{
  width: auto;
  height: 16px;
  padding: 0 0 0 10px;
}
}


/* ==========================================================================
   home-news
   ========================================================================== */
@media screen and (min-width: 960px){
.home .news{
  padding: 96px 0 170px;
  overflow: hidden;
}
.home .bannar-area {
  padding-bottom: 96px;
  text-align: center;
}
.home .bannar-area img {
  max-width: 480px;
  width: 100%;
  height: auto;
  transition: opacity 0.25s;
}
.home .bannar-area a:hover img {
  opacity: .8;
}
.home .news .contents-area{
  position: relative;
  overflow: hidden;
}
.home .section-ttl{
  width: 100%;
  height: 28px;
  float: left;
  margin: 0 0 56px 0px;
}
.home .section-ttl img{
  width: 410px;
  height: 28px;
  display: block;
}
.home .news ul{
  width: 100%;
  display: block;
  float: left;
  border-top: 1px solid #ddd;
}
.home .news ul li{
  padding: 8px 0;
  border-bottom: 1px solid #ddd;
}
.home .news ul li a{
  line-height: 1em;
  letter-spacing: 0.1em;
  display: flex;
	align-items: center;
  flex-direction: row;
  position: relative;
}
.home .news ul li a:after{
	content: "";
	width: 14px;
	height: 14px;
	position: absolute;
	top: 50%;
	right: 10px;
	margin: -7px 0 0 0;
	background: url(../images/icon-arrow.svg) no-repeat 0 0;
	background-size: 14px 14px;
	cursor: pointer;
}
.home .news ul li a .thumbnail{
  width: 130px;
  height: 84px;
  margin: 0 30px 0 0;
  overflow: hidden;
  display: flex;
	align-items: center;
	justify-content: center;
  background: #eee;
}
.home .news ul li a .thumbnail img{
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.2s ease;
}
.home .news ul li a:hover .thumbnail img{
  opacity: 0.7;
}
.home .news ul li a .data{
  font-size: 1.6rem;
  line-height: 1em;
  margin: 0 20px 0 0;
  font-weight: 100;
  transition: all 0.2s ease;
}
.home .news ul li a .cat{
  width: 100px;
  height: 22px;
  line-height: 22px;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-align: center;
  color: #fff;
  border-radius: 1px;
  background: #84aed9;
  margin: 0 20px 0 0;
  transition: all 0.2s ease;
}
.home .news ul li a .ttl{
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  transition: all 0.2s ease;
}
.home .news ul li a:hover .ttl{
  opacity: 0.6;
}
.home .news ul li a:hover .data{
  opacity: 0.6;
}
.home .news ul li a:hover .cat{
  opacity: 0.6;
}
.home .link{
  margin: 50px 0 0 0;
  float: left;
}
.home .link a{
  display: block;
  float: left;
  margin: 0 36px 0 0;
  transition: all 0.2s ease;
}
.home .link a:hover{
  opacity: 0.5;
}
.home .link a img{
  width: auto;
  height: 16px;
  display: block;
}
}

@media screen and (min-width: 480px) and (max-width:959px) {
.home .news{
  padding: 80px 0;
  overflow: hidden;
}
.home .bannar-area {
  padding-bottom: 80px;
  text-align: center;
}
.home .bannar-area img {
  max-width: 480px;
  width: 100%;
  height: auto;
  transition: opacity 0.25s;
}
.home .bannar-area a:hover img {
  opacity: .8;
}
.home .news .contents-area{
  position: relative;
  overflow: hidden;
}
.home .section-ttl{
  width: 100%;
  height: auto;
  float: left;
  margin: 0 0 40px 0;
}
.home .section-ttl img{
  width: 360px;
  height: auto;
  display: block;
}
.home .news ul{
  width: 100%;
  display: block;
  float: left;
  border-top: 1px solid #ddd;
}
.home .news ul li{
  padding: 8px 0;
  border-bottom: 1px solid #ddd;
}
.home .news ul li a{
  line-height: 1em;
  letter-spacing: 0.1em;
  display: flex;
	align-items: center;
  flex-direction: row;
  position: relative;
}
.home .news ul li a:after{
	content: "";
	width: 14px;
	height: 14px;
	position: absolute;
	top: 50%;
	right: 5px;
	margin: -7px 0 0 0;
	background: url(../images/icon-arrow.svg) no-repeat 0 0;
	background-size: 14px 14px;
	cursor: pointer;
}
.home .news ul li a .thumbnail{
  width: 110px;
  height: 76px;
  margin: 0 20px 0 0;
  overflow: hidden;
  display: flex;
	align-items: center;
	justify-content: center;
  background: #eee;
}
.home .news ul li a .thumbnail img{
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.2s ease;
}
.home .news ul li a:hover .thumbnail img{
  opacity: 0.7;
}
.home .news ul li a .data{
  font-size: 1.4rem;
  line-height: 1em;
  margin: 0 15px 0 0;
  font-weight: 100;
  transition: all 0.2s ease;
}
.home .news ul li a .cat{
  width: 100px;
  height: 22px;
  line-height: 22px;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-align: center;
  color: #fff;
  border-radius: 1px;
  background: #84aed9;
  margin: 0 15px 0 0;
  transition: all 0.2s ease;
}
.home .news ul li a .ttl{
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  transition: all 0.2s ease;
}
.home .link{
  margin: 40px 0 0 0;
  float: left;
}
.home .link a{
  display: block;
  float: left;
  margin: 0 36px 0 0;
  transition: all 0.2s ease;
}
.home .link a img{
  width: auto;
  height: 16px;
  display: block;
}
}

@media screen and (max-width:479px) {
.home .news{
  padding: 50px 0;
  overflow: hidden;
}
.home .bannar-area {
  padding-bottom: 50px;
  text-align: center;
}
.home .bannar-area img {
  max-width: 480px;
  width: 100%;
  height: auto;
  transition: opacity 0.25s;
}
.home .bannar-area a:hover img {
  opacity: .8;
}
.home .news .contents-area{
  position: relative;
  overflow: hidden;
}
.home .section-ttl{
  width: 100%;
  height: auto;
  float: left;
  margin: 0 0 30px 0px;
}
.home .section-ttl img{
  width: 300px;
  height: auto;
  display: block;
}
.home .news ul{
  width: 100%;
  display: block;
  float: left;
  border-top: 1px solid #ddd;
}
.home .news ul li{
  width: 100%;
  padding: 8px 0;
  display: block;
  float: left;
  border-bottom: 1px solid #ddd;
}
.home .news ul li a{
  line-height: 1em;
  letter-spacing: 0.1em;
  position: relative;
  display: block;
}
.home .news ul li a:after{
	content: "";
	width: 14px;
	height: 14px;
	position: absolute;
	top: 50%;
	right: 0px;
	margin: 30px 0 0 0;
	background: url(../images/icon-arrow.svg) no-repeat 0 0;
	background-size: 14px 14px;
	cursor: pointer;
}
.home .news ul li a .thumbnail{
  width: 94px;
  height: 70px;
  overflow: hidden;
  display: flex;
	align-items: center;
	justify-content: center;
  background: #eee;
  float: left;
}
.home .news ul li a .thumbnail img{
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.2s ease;
}
.home .news ul li a:hover .thumbnail img{
  opacity: 0.7;
}
.home .news ul li a .data{
  width: 110px;
  font-size: 1.5rem;
  line-height: 1.4em;
  font-weight: 100;
  display: block;
  float: left;
  transition: all 0.2s ease;
  margin: 3px 0 0 18px;
}
.home .news ul li a .cat{
  width: 94px;
  height: 18px;
  line-height: 18px;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-align: center;
  color: #fff;
  border-radius: 1px;
  background: #84aed9;
  margin: 5px 0 0 0;
  transition: all 0.2s ease;
  display: block;
  float: left;
}
.home .news ul li a .ttl{
  width: 60%;
  font-size: 1.4rem;
  line-height: 1.5em;
  letter-spacing: 0;
  font-weight: 500;
  transition: all 0.2s ease;
  display: block;
  float: left;
  margin: 5px 0 0 18px;
}
.home .link{
  margin: 35px 0 0 0;
  float: left;
}
.home .link a{
  width: 100%;
  display: block;
  float: left;
  margin: 0 0 15px 0;
  transition: all 0.2s ease;
}
.home .link a:last-child{
  margin: 0 0 0 0;
}
.home .link a img{
  width: auto;
  height: 16px;
  display: block;
}
}


/* ==========================================================================
   home-img-bg
   ========================================================================== */
@media screen and (min-width: 960px){
.copy-bg{
  height: 55vh;
  background: #eee;
  overflow: hidden;
}
.copy-bg img{
  width: 100%;
  height: auto;
}
}

@media screen and (min-width: 480px) and (max-width:959px) {
.copy-bg{
  height: 50vh;
  background: #eee;
  overflow: hidden;
}
.copy-bg img{
  width: auto;
  height: 100%;
}
}

@media screen and (max-width:479px) {
.copy-bg{
  height: 45vh;
  background: #eee;
  overflow: hidden;
}
.copy-bg img{
  width: auto;
  height: 100%;
}
}


/* ==========================================================================
   home-img-copy
   ========================================================================== */
@media screen and (min-width: 960px){
.img-copy{
  height: 55vh;
  margin: -55vh 0 0 0;
  display: flex;
	align-items: center;
	justify-content: center;
}
.img-copy img{
  width: auto;
  height: 40px;
  display: block;
}
}

@media screen and (min-width: 480px) and (max-width:959px) {
.img-copy{
  height: 50vh;
  margin: -50vh 0 0 0;
  display: flex;
	align-items: center;
	justify-content: center;
}
.img-copy img{
  width: auto;
  height: 30px;
  display: block;
}
}

@media screen and (max-width:479px) {
.img-copy{
  height: 45vh;
  margin: -45vh 0 0 0;
  display: flex;
	align-items: center;
	justify-content: center;
}
.img-copy img{
  width: auto;
  height: 25px;
  display: block;
}
}


/* ==========================================================================
   home-products
   ========================================================================== */
@media screen and (min-width: 960px){
.home .products{
  padding: 170px 0;
  overflow: hidden;
}
.home .body{
  font-family: 'Noto Serif JP', serif;
  font-size: 1.5rem;
  line-height: 2.3em;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin: 0 0 64px 0;
}
.link-btn{
  width: 100%;
  display: flex;
	flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: row;
  margin: 0 0 -32px 0;
}
.link-btn:after{
  content:"";
  display: block;
  width: 320px;
}
.link-btn li{
  width: 320px;
  height: auto;
  margin: 0 0 35px 0;
}
.link-btn li a{
  width: 320px;
  height: 94px;
  border: 1px solid #aaa;
  background-color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.link-btn li a::before{
	content: "";
	width: 94px;
	height: 94px;
	position: absolute;
	top: 0;
	left: 0;
	cursor: pointer;
}
.link-btn .btn-01 a::before{
	background: url(../images/btn-bg-img01.jpg) no-repeat 0 0;
	background-size: 94px 94px;
}
.link-btn .btn-02 a::before{
	background: url(../images/btn-bg-img02.jpg) no-repeat 0 0;
	background-size: 94px 94px;
}
.link-btn .btn-03 a::before{
	background: url(../images/btn-bg-img03.jpg) no-repeat 0 0;
	background-size: 94px 94px;
}
.link-btn .btn-04 a::before{
	background: url(../images/btn-bg-img04.jpg) no-repeat 0 0;
	background-size: 94px 94px;
}
.link-btn .btn-05 a::before{
	background: url(../images/btn-bg-img05.jpg) no-repeat 0 0;
	background-size: 94px 94px;
}
.link-btn .btn-06 a::before{
	background: url(../images/btn-bg-img06.jpg) no-repeat 0 0;
	background-size: 94px 94px;
}
.link-btn .btn-07 a::before{
	background: url(../images/btn-bg-img07.jpg) no-repeat 0 0;
	background-size: 94px 94px;
}
.link-btn .btn-08 a::before{
	background: url(../images/btn-bg-img08.jpg) no-repeat 0 0;
	background-size: 94px 94px;
}
.link-btn .btn-09 a::before{
	background: url(../images/btn-bg-img09.jpg) no-repeat 0 0;
	background-size: 94px 94px;
}
.link-btn .btn-10 a::before{
	background: url(../images/btn-bg-img10.jpg) no-repeat 0 0;
	background-size: 94px 94px;
}
.link-btn .btn-11 a::before{
	background: url(../images/btn-bg-img11.jpg) no-repeat 0 0;
	background-size: 94px 94px;
}
.link-btn .btn-12 a::before{
	background: url(../images/btn-bg-img12.jpg) no-repeat 0 0;
	background-size: 94px 94px;
}
.link-btn li a:after{
	content: "";
	width: 14px;
	height: 14px;
	position: absolute;
	top: 50%;
	right: 10px;
	margin: -7px 0 0 0;
	background: url(../images/icon-arrow.svg) no-repeat 0 0;
	background-size: 14px 14px;
	cursor: pointer;
}
.link-btn li a img{
  width: 180px;
	height: 16px;
  margin: 0 0 0 80px;
  display: block;
  transition: all 0.2s ease;
}
.link-btn li a:hover img{
  opacity: 0.4;
}
.link-btn li p{
  font-size: 1.4rem;
  line-height: 1.7em;
  font-weight: 300;
  letter-spacing: 0.5px;
  color: #000;
  margin: 8px 0 0 0;
}
}

@media screen and (min-width: 480px) and (max-width:959px) {
.home .products{
  padding: 80px 0;
  overflow: hidden;
}
.home .body{
  font-family: 'Noto Serif JP', serif;
  font-size: 1.5rem;
  line-height: 2.3em;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin: 0 0 30px 0;
}
.home .body .for-pc{
  display: none;
}
.link-btn{
  width: 100%;
  display: flex;
	flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: row;
  margin: 0 0 -20px 0;
}
.link-btn:after{
  content:"";
  display: block;
  width: 48%;
}
.link-btn li{
  width: 48%;
  height: auto;
  margin: 0 0 20px 0;
}
.link-btn li a{
  width: 100%;
  height: 76px;
  border: 1px solid #ddd;
  background-color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.link-btn li a::before{
	content: "";
	width: 76px;
	height: 76px;
	position: absolute;
	top: 0;
	left: 0;
	cursor: pointer;
}
.link-btn .btn-01 a::before{
	background: url(../images/btn-bg-img01.jpg) no-repeat 0 0;
	background-size: 76px 76px;
}
.link-btn .btn-02 a::before{
	background: url(../images/btn-bg-img02.jpg) no-repeat 0 0;
	background-size: 76px 76px;
}
.link-btn .btn-03 a::before{
	background: url(../images/btn-bg-img03.jpg) no-repeat 0 0;
	background-size: 76px 76px;
}
.link-btn .btn-04 a::before{
	background: url(../images/btn-bg-img04.jpg) no-repeat 0 0;
	background-size: 76px 76px;
}
.link-btn .btn-05 a::before{
	background: url(../images/btn-bg-img05.jpg) no-repeat 0 0;
	background-size: 76px 76px;
}
.link-btn .btn-06 a::before{
	background: url(../images/btn-bg-img06.jpg) no-repeat 0 0;
	background-size: 76px 76px;
}
.link-btn .btn-07 a::before{
	background: url(../images/btn-bg-img07.jpg) no-repeat 0 0;
	background-size: 76px 76px;
}
.link-btn .btn-08 a::before{
	background: url(../images/btn-bg-img08.jpg) no-repeat 0 0;
	background-size: 76px 76px;
}
.link-btn .btn-09 a::before{
	background: url(../images/btn-bg-img09.jpg) no-repeat 0 0;
	background-size: 76px 76px;
}
.link-btn .btn-10 a::before{
	background: url(../images/btn-bg-img10.jpg) no-repeat 0 0;
	background-size: 76px 76px;
}
.link-btn .btn-11 a::before{
	background: url(../images/btn-bg-img11.jpg) no-repeat 0 0;
	background-size: 76px 76px;
}
.link-btn .btn-12 a::before{
	background: url(../images/btn-bg-img12.jpg) no-repeat 0 0;
	background-size: 76px 76px;
}
.link-btn li a:after{
	content: "";
	width: 14px;
	height: 14px;
	position: absolute;
	top: 50%;
	right: 10px;
	margin: -7px 0 0 0;
	background: url(../images/icon-arrow.svg) no-repeat 0 0;
	background-size: 14px 14px;
	cursor: pointer;
}
.link-btn li a img{
  width: 180px;
	height: 16px;
  margin: 0 0 0 70px;
  display: block;
  transition: all 0.2s ease;
}
.link-btn li p{
  font-size: 1.4rem;
  line-height: 1.7em;
  font-weight: 300;
  letter-spacing: 0.5px;
  color: #000;
  margin: 8px 0 0 0;
}
}

@media screen and (max-width:479px) {
.home .products{
  padding: 50px 0;
  overflow: hidden;
}
.home .body{
  font-family: 'Noto Serif JP', serif;
  font-size: 1.4rem;
  line-height: 2.0em;
  letter-spacing: 0.05em;
  margin: 0 0 30px 0;
}
.home .body .for-pc{
  display: none;
}
.link-btn{
  width: 100%;
  display: flex;
	flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: row;
  margin: 0 0 -20px 0;
}
.link-btn:after{
  content:"";
  display: block;
  width: 100%;
}
.link-btn li{
  width: 100%;
  height: auto;
  margin: 0 0 20px 0;
}
.link-btn li a{
  width: 100%;
  height: 74px;
  border: 1px solid #ddd;
  background-color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.link-btn li a::before{
	content: "";
	width: 74px;
	height: 74px;
	position: absolute;
	top: 0;
	left: 0;
	cursor: pointer;
}
.link-btn .btn-01 a::before{
	background: url(../images/btn-bg-img01.jpg) no-repeat 0 0;
	background-size: 74px 74px;
}
.link-btn .btn-02 a::before{
	background: url(../images/btn-bg-img02.jpg) no-repeat 0 0;
	background-size: 74px 74px;
}
.link-btn .btn-03 a::before{
	background: url(../images/btn-bg-img03.jpg) no-repeat 0 0;
	background-size: 74px 74px;
}
.link-btn .btn-04 a::before{
	background: url(../images/btn-bg-img04.jpg) no-repeat 0 0;
	background-size: 74px 74px;
}
.link-btn .btn-05 a::before{
	background: url(../images/btn-bg-img05.jpg) no-repeat 0 0;
	background-size: 74px 74px;
}
.link-btn .btn-06 a::before{
	background: url(../images/btn-bg-img06.jpg) no-repeat 0 0;
	background-size: 74px 74px;
}
.link-btn .btn-07 a::before{
	background: url(../images/btn-bg-img07.jpg) no-repeat 0 0;
	background-size: 74px 74px;
}
.link-btn .btn-08 a::before{
	background: url(../images/btn-bg-img08.jpg) no-repeat 0 0;
	background-size: 74px 74px;
}
.link-btn .btn-09 a::before{
	background: url(../images/btn-bg-img09.jpg) no-repeat 0 0;
	background-size: 74px 74px;
}
.link-btn .btn-10 a::before{
	background: url(../images/btn-bg-img10.jpg) no-repeat 0 0;
	background-size: 74px 74px;
}
.link-btn .btn-11 a::before{
	background: url(../images/btn-bg-img11.jpg) no-repeat 0 0;
	background-size: 74px 74px;
}
.link-btn .btn-12 a::before{
	background: url(../images/btn-bg-img12.jpg) no-repeat 0 0;
	background-size: 74px 74px;
}
.link-btn li a:after{
	content: "";
	width: 14px;
	height: 14px;
	position: absolute;
	top: 50%;
	right: 10px;
	margin: -7px 0 0 0;
	background: url(../images/icon-arrow.svg) no-repeat 0 0;
	background-size: 14px 14px;
	cursor: pointer;
}
.link-btn li a img{
  width: auto;
	height: 16px;
  margin: 0 0 0 65px;
  display: block;
  transition: all 0.2s ease;
}
.link-btn li p{
  font-size: 1.4rem;
  line-height: 1.7em;
  font-weight: 300;
  letter-spacing: 0.5px;
  color: #000;
  margin: 8px 0 0 0;
}
}


/* ==========================================================================
   home-about
   ========================================================================== */
@media screen and (min-width: 960px){
.home .about{
  padding: 170px 0;
  overflow: hidden;
}
.home .about .link-btn{
  margin: 0 0 -20px 0;
}
.home .about .link-btn li{
  margin: 0 0 20px 0;
}
}

@media screen and (min-width: 480px) and (max-width:959px) {
.home .about{
  padding: 80px 0;
  overflow: hidden;
}
.home .about .link-btn{
  margin: 0 0 -20px 0;
}
.home .about .link-btn li{
  margin: 0 0 20px 0;
}
}

@media screen and (max-width:479px) {
.home .about{
  padding: 50px 0;
  overflow: hidden;
}
.home .about .link-btn{
  margin: 0 0 -20px 0;
}
.home .about .link-btn li{
  margin: 0 0 20px 0;
}
}


/* ==========================================================================
   product
   ========================================================================== */
@media screen and (min-width: 960px){
.page-header{
  width: 100%;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-header{
  background-image: url(../images/header-products.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
.page-header img{
  margin: 6px 0 0 0;
}
.products .for-sp{
  display: none;
}
.products .cat-ttl{
  width: 100%;
  float: left;
  margin: 90px 0 60px 0;
  font-size: 2.2rem;
  line-height: 1em;
  letter-spacing: 0.15em;
  font-weight: 500;
  color: #3a3a78;
}
.products .product-cat{
  width: 170px;
  float: left;
  margin: 0 0 80px 0;
}
.products .product-cat h4{
  width: 100%;
  font-weight: 600;
  line-height: 1em;
  letter-spacing: 0.15em;
  padding: 0 0 12px 0;
  margin: 0 0 12px 0;
  border-bottom: 1px solid #ccc;
  float: left;
}
.products .product-cat ul{
  width: 100%;
  float: left;
  padding: 0 0 25px 0;
}
.products .product-cat li a{
  width: 100%;
  font-size: 1.3rem;
  line-height: 1em;
  display: block;
  float: left;
  padding: 0 0 12px 0;
  transition: all 0.2s ease;
}
.products .product-cat li a:hover{
  opacity: 0.5;
}
.products .product-list{
  width: calc(100% - (5.8% + 170px));
  float: right;
}
.products .product-list ul{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 0 80px 0;
}
.products .product-list ul li{
  width: 32.7%;
  height: auto;
  display: block;
  margin: 0 0 8px 0;
  position: relative;
}
.products .product-list ul:after{
  content:"";
  display: block;
  width: 32.7%;
}
.products .product-list ul li a{
  display: block;
  transition: all 0.2s ease;
}
.products .product-list ul li a:hover{
  opacity: 0.5;
}
.products .product-list ul li img{
  width: 100%;
  height: auto;
  display: block;
}
}

@media screen and (min-width: 480px) and (max-width:959px) {
.page-header{
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-header{
  background-image: url(../images/header-products.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
.page-header img{
  width: auto;
  height: 22px;
  display: block;
  margin: 2px 0 0 0;
}
.products{
  font-size: 1.4rem;
}
.products .padding-product{
  padding: 40px 0 60px 0;
}
.products .for-pc{
  display: none;
}

.products .product-cat-sp{
	width: 100%;
  overflow: hidden;
}
.products .product-cat-sp dt{
  width: 100%;
  height: 50px;
  font-size: 1.4rem;
  line-height: 50px;
  text-align: center;
  box-sizing: border-box;
  border: 1px solid #ddd;
	position: relative;
  padding: 0;
  margin: 0;
}
.products .product-cat-sp dt:after{
	content: '';
	display: inline-block;
	width: 14px;
	height: 14px;
	background-image: url(../images/icon-off.svg);
	background-size: contain;
	position: absolute;
	top: 50%;
	right: 0;
	margin: -7px 17px 0 0;
}
.products .product-cat-sp dt.active:after{
  content: '';
	display: inline-block;
	width: 14px;
	height: 14px;
	background-image: url(../images/icon-on.svg);
	background-size: contain;
	position: absolute;
	top: 50%;
	right: 0;
	margin: -7px 17px 0 0;
}
.products .product-cat-sp dd{
	display: none;
  overflow: hidden;
  margin: 0;
  padding: 0 2%;
}
.products .product-cat-sp dd ul{
  width: 50%;
  display: block;
  float: left;
  padding: 0;
  margin: 0;
}
.products .product-cat-sp dd ul h4{
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1em;
  letter-spacing: 0.1em;
  padding: 0 0 6px 0;
  margin: 25px 0 10px 0;
  border-bottom: 1px solid #ccc;
  float: left;
}
.products .product-cat-sp dd ul li{
  width: 100%;
  float: left;
  display: block;
}
.products .product-cat-sp dd ul li a{
  font-size: 1.3rem;
  line-height: 1em;
  letter-spacing: 0em;
  padding: 7px 0;
  display: block;
}

.products .cat-ttl{
  width: 100%;
  float: left;
  margin: 30px 0 20px 0;
  font-size: 1.8rem;
  line-height: 1em;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #3a3a78;
}
.products .product-list{
  width: 100%;
}
.products .product-list ul{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 0 80px 0;
}
.products .product-list ul li{
  width: 32.7%;
  height: auto;
  display: block;
  margin: 0 0 8px 0;
  position: relative;
}
.products .product-list ul:after{
  content:"";
  display: block;
  width: 32.7%;
}
.products .product-list ul li a{
  display: block;
  transition: all 0.2s ease;
}
.products .product-list ul li img{
  width: 100%;
  height: auto;
  display: block;
}
}

@media screen and (max-width:479px) {
.page-header{
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-header{
  background-image: url(../images/header-products.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
.page-header img{
  width: auto;
  height: 19px;
  display: block;
  margin: 2px 0 0 0;
}
.products{
  font-size: 1.4rem;
}
.products .padding-product{
  padding: 20px 0 50px 0;
}
.products .for-pc{
  display: none;
}

.products .product-cat-sp{
	width: 100%;
  overflow: hidden;
}
.products .product-cat-sp dt{
  width: 100%;
  height: 50px;
  font-size: 1.4rem;
  line-height: 50px;
  text-align: center;
  box-sizing: border-box;
  border: 1px solid #ddd;
	position: relative;
  padding: 0;
  margin: 0;
}
.products .product-cat-sp dt:after{
	content: '';
	display: inline-block;
	width: 14px;
	height: 14px;
	background-image: url(../images/icon-off.svg);
	background-size: contain;
	position: absolute;
	top: 50%;
	right: 0;
	margin: -7px 17px 0 0;
}
.products .product-cat-sp dt.active:after{
  content: '';
	display: inline-block;
	width: 14px;
	height: 14px;
	background-image: url(../images/icon-on.svg);
	background-size: contain;
	position: absolute;
	top: 50%;
	right: 0;
	margin: -7px 17px 0 0;
}
.products .product-cat-sp dd{
	display: none;
  overflow: hidden;
  margin: 0;
  padding: 0 2%;
}
.products .product-cat-sp dd ul{
  width: 50%;
  display: block;
  float: left;
  padding: 0;
  margin: 0;
}
.products .product-cat-sp dd ul h4{
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1em;
  letter-spacing: 0.1em;
  padding: 0 0 6px 0;
  margin: 25px 0 10px 0;
  border-bottom: 1px solid #ccc;
  float: left;
}
.products .product-cat-sp dd ul li{
  width: 100%;
  float: left;
  display: block;
}
.products .product-cat-sp dd ul li a{
  font-size: 1.3rem;
  line-height: 1em;
  letter-spacing: 0em;
  padding: 7px 0;
  display: block;
}

.products .cat-ttl{
  width: 100%;
  float: left;
  margin: 20px 0 15px 0;
  font-size: 1.6rem;
  line-height: 1em;
  letter-spacing: 0.15em;
  font-weight: 500;
  color: #3a3a78;
}
.products .product-list{
  width: 100%;
}
.products .product-list ul{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 0 50px 0;
}
.products .product-list ul li{
  width: 48.6%;
  height: auto;
  display: block;
  margin: 0 0 8px 0;
  position: relative;
}
.products .product-list ul:after{
  content:"";
  display: block;
  width: 48.6%;
}
.products .product-list ul li a{
  display: block;
}
.products .product-list ul li img{
  width: 100%;
  height: auto;
  display: block;
}
}


/* ==========================================================================
   story
   ========================================================================== */
@media screen and (min-width: 960px){
.story{
  font-size: 1.5rem;
}
.story .ori{
  margin: 0 0 80px 0;
}
.story .some{
  padding: 90px 0 0 0;
  border-top: 1px solid #ddd;
}
.story .section-ttl{
  width: auto;
  height: 24px;
  margin: 7px 0 0 0;
}
.story .section-ttl img{
  width: auto;
  height: 100%;
  display: block;
}
.story h3{
  width: 100%;
  font-size: 2.4rem;
  line-height: 1.8em;
  letter-spacing: 0.15em;
  font-weight: 500;
  margin: 60px 0 25px 0;
  float: left;
}
.story h4{
  width: 100%;
  font-size: 2.0rem;
  line-height: 1.2em;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin: 0 0 23px 0;
  float: left;
  color: #3a3a78;
}
.story .sha,
.story .flow,
.story .some-kiji{
  overflow: hidden;
  margin: 80px 0 0 0;
}
.story .sha p{
  width: 666px;
  display: block;
  float: left;
  margin: 0 30px 0 0;
}
.story .sha img{
  width: 300px;
  height: auto;
  display: block;
  float: right;
  margin: -38px 0 0 0;
}
.story .flow ul,
.story .some-kiji ul{
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 10px 0 0 0;
}
.story .flow{
  padding: 0 0 30px 0;
}
.story .flow li{
  width: 31%;
  display: block;
  float: left;
}
.story .flow li img{
  width: 75%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.story .flow .arrow{
  margin: 110px 0 0 0;
}
.story .flow .arrow .sp{
  display: none;
}
.story .flow .arrow img{
  width: 24px;
  height: 24px;
}
.story .flow ul p,
.story .some-kiji ul p{
  font-size: 1.4rem;
  line-height: 2.0em;
  letter-spacing: 0;
  margin: 15px 0 0 0;
}
.story .origara{
  width: 100%;
  margin: 60px 0 0 0;
  overflow: hidden;
}
.story .origara span{
  width: 377px;
  height: auto;
  display: block;
  float: left;
  margin: 0 70px 0 10px;
}
.story .origara img{
  display: block;
}
.story .origara span p{
  font-size: 1.3rem;
  display: inline-block;
  margin: 0 0 20px 0;
}
.story .some-kiji li{
  width: 31.5%;
  display: block;
  float: left;
}
.story .some-kiji li img{
  width: 100%;
  height: auto;
  display: block;
}
}

@media screen and (min-width: 480px) and (max-width:959px) {
.story{
  font-size: 1.4rem;
  line-height: 1.8em;
  letter-spacing: 0;
}
.story .for-pc{
  display: none;
}
.story .ori{
  margin: 0 0 50px 0;
}
.story .some{
  padding: 50px 0 0 0;
  border-top: 0.5px solid #ddd;
}
.story .section-ttl{
  width: auto;
  height: 20px;
  margin: 7px 0 0 0;
}
.story .section-ttl img{
  width: auto;
  height: 100%;
  display: block;
}
.story h3{
  width: 100%;
  font-size: 2.1rem;
  line-height: 1.8em;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin: 30px 0 25px 0;
  float: left;
}
.story h4{
  width: 100%;
  font-size: 1.8rem;
  line-height: 1.2em;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin: 0 0 20px 0;
  float: left;
  color: #3a3a78;
}
.story .sha,
.story .flow,
.story .some-kiji{
  overflow: hidden;
  margin: 50px 0 0 0;
}
.story .sha p{
  width: 62%;
  display: block;
  float: left;
  margin: 0 0 0 0;
}
.story .sha img{
  width: 31%;
  height: auto;
  display: block;
  float: right;
  margin: -35px 0 0 0;
}
.story .flow ul,
.story .some-kiji ul{
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 10px 0 0 0;
}
.story .flow{
  padding: 0 0 30px 0;
}
.story .flow li{
  width: 30%;
  display: block;
  float: left;
}
.story .flow li img{
  width: 75%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.story .flow .arrow{
  margin: 70px 0 0 0;
}
.story .flow .arrow .sp{
  display: none;
}
.story .flow .arrow img{
  width: 24px;
  height: 24px;
}
.story .flow ul p,
.story .some-kiji ul p{
  margin: 15px 0 0 0;
}
.story .origara{
  width: 100%;
  margin: 30px 0 0 0;
  overflow: hidden;
}
.story .origara span{
  width: 300px;
  height: auto;
  display: block;
  float: left;
  margin: 0 55px 0 15px;
}
.story .origara span:last-child{
  margin: 0 0 0 0;
}
.story .origara img{
  width: 300px;
  height: auto;
  display: block;
}
.story .origara span p{
  font-size: 1.3rem;
  display: inline-block;
  margin: 0 0 20px 0;
}
.story .some-kiji li{
  width: 31.5%;
  display: block;
  float: left;
}
.story .some-kiji li img{
  width: 100%;
  height: auto;
  display: block;
}
}

@media screen and (max-width:479px) {
.story{
  font-size: 1.4rem;
  line-height: 1.8em;
  letter-spacing: 0;
}
.story .for-pc{
  display: none;
}
.story .ori{
  margin: 0 0 50px 0;
}
.story .some{
  padding: 50px 0 0 0;
  border-top: 0.5px solid #ddd;
}
.story .section-ttl{
  width: auto;
  height: 17px;
  margin: 7px 0 0 0;
}
.story .section-ttl img{
  width: auto;
  height: 100%;
  display: block;
}
.story h3{
  width: 100%;
  font-size: 1.7rem;
  line-height: 1.8em;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin: 30px 0 25px 0;
  float: left;
}
.story h4{
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.2em;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin: 0 0 15px 0;
  float: left;
  color: #3a3a78;
}
.story .sha,
.story .flow,
.story .some-kiji{
  overflow: hidden;
  margin: 50px 0 0 0;
}
.story .sha p{
  width: 100%;
  display: block;
  float: left;
  margin: 0 0 20px 0;
}
.story .sha img{
  width: 70%;
  height: auto;
  display: block;
  float: right;
  padding: 0 15%;
}
.story .flow ul,
.story .some-kiji ul{
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 10px 0 0 0;
}
.story .flow{
  padding: 0 0 30px 0;
}
.story .flow li{
  width: 100%;
  display: block;
  float: left;
}
.story .flow li img{
  width: 65%;
  height: auto;
  display: block;
  padding: 0 17.5%;
}
.story .flow .arrow{
  width: 100%;
  margin: 20px 0 30px 0;
}
.story .flow .arrow .pc{
  display: none;
}
.story .flow .arrow img{
  width: 24px;
  height: 24px;
  margin: 0 auto;
  display: block;
}
.story .flow ul p,
.story .some-kiji ul p{
  margin: 10px 0 0 0;
}
.story .origara{
  width: 100%;
  margin: 20px 0 0 0;
  overflow: hidden;
}
.story .origara span{
  display: block;
  float: left;
}
.story .origara img{
  width: 90%;
  height: auto;
  display: block;
  padding: 0 5%;
}
.story .origara span p{
  display: inline-block;
  margin: 15px 0 15px 0;
}
.story .some-kiji li{
  width: 100%;
  display: block;
  float: left;
  margin: 0 0 30px 0;
}
.story .some-kiji li:last-child{
  margin: 0 0 0 0;
}
.story .some-kiji li img{
  width: 100%;
  height: auto;
  display: block;
}
}


/* ==========================================================================
   history
   ========================================================================== */
@media screen and (min-width: 960px){
.history{
  font-size: 1.5rem;
}
.history h4{
  width: 30%;
  font-size: 2.2rem;
  line-height: 1.2em;
  letter-spacing: 0.15em;
  font-weight: 500;
  margin: 0 0 40px 0;
  float: left;
  color: #3a3a78;
}
.history .banzuke{
  margin: 0 0 80px 0;
  padding: 80px 0 0 0;
  overflow: hidden;
}
.history .banzuke p{
  width: 30%;
  float: left;
}
.history .banzuke img{
  width: 65%;
  height: auto;
  float: right;
  margin: 3px 0 0 0;
}
.history .prize{
  margin: 0 0 -40px 0;
  padding: 70px 0 0 0;
  border-top: 1px solid #ddd;
  overflow: hidden;
}
.history .prize ul{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.history .prize ul:after{
  content:"";
  display: block;
  width: 30%;
}
.history .prize li{
  width: 30%;
  display: block;
  float: left;
  margin: 0 0 40px 0;
}
.history .prize li img{
  width: 100%;
  height: auto;
  display: block;
}
.history .prize p{
  font-size: 1.4rem;
  line-height: 2.0em;
  letter-spacing: 0;
  margin: 15px 0 0 0;
}
}

@media screen and (min-width: 480px) and (max-width:959px) {
.history{
  font-size: 1.4rem;
  line-height: 1.8em;
  letter-spacing: 0;
}
.history .for-pc{
  display: none;
}
.history h4{
  width: 40%;
  font-size: 1.6rem;
  line-height: 1.2em;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin: 0 0 20px 0;
  float: left;
  color: #3a3a78;
}
.history .banzuke{
  margin: 0 0 40px 0;
  padding: 50px 0 0 0;
  overflow: hidden;
}
.history .banzuke p{
  width: 45%;
  float: left;
}
.history .banzuke img{
  width: 50%;
  height: auto;
  float: right;
  margin: 3px 0 0 0;
}
.history .prize{
  margin: 0 0 0 0;
  padding: 40px 0 0 0;
  border-top: 0.5px solid #ddd;
  overflow: hidden;
}
.history .prize ul{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.history .prize ul:after{
  content:"";
  display: block;
  width: 31%;
}
.history .prize li{
  width: 31%;
  display: block;
  float: left;
  margin: 0 0 40px 0;
}
.history .prize li img{
  width: 100%;
  height: auto;
  display: block;
}
.history .prize p{
  margin: 15px 0 0 0;
}
}

@media screen and (max-width:479px) {
.history{
  font-size: 1.4rem;
  line-height: 1.8em;
  letter-spacing: 0;
}
.history .for-pc{
  display: none;
}
.history h4{
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.2em;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin: 0 0 20px 0;
  float: left;
  color: #3a3a78;
}
.history .banzuke{
  margin: 0 0 40px 0;
  padding: 40px 0 0 0;
  overflow: hidden;
}
.history .banzuke p{
  width: 100%;
  float: left;
}
.history .banzuke img{
  width: 100%;
  height: auto;
  float: right;
  margin: 0 0 20px 0;
}
.history .prize{
  margin: 0 0 0 0;
  padding: 30px 0 0 0;
  border-top: 0.5px solid #ddd;
  overflow: hidden;
}
.history .prize ul{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.history .prize ul:after{
  content:"";
  display: block;
  width: 100%;
}
.history .prize li{
  width: 100%;
  display: block;
  float: left;
  margin: 0 0 40px 0;
}
.history .prize li img{
  width: 70%;
  height: auto;
  display: block;
  padding: 0 15%;
}
.history .prize p{
  margin: 15px 0 0 0;
}
}


/* ==========================================================================
   company
   ========================================================================== */
@media screen and (min-width: 960px){
.company{
  font-size: 1.5rem;
}
.company table{
  width: 100%;
  font-size: 1.5rem;
  line-height: 1.6em;
  border-top: 1px solid #ddd;
  margin: 80px 0 80px 0;
}
.company table th{
  width: 160px;
  text-align: left;
  padding: 24px 0;
  border-bottom: 1px solid #ddd;
}
.company table td{
  padding: 24px 0;
  border-bottom: 1px solid #ddd;
}
.company iframe{
  width: 100%;
  height: 800px;
  border: 0;
}
}

@media screen and (min-width: 480px) and (max-width:959px) {
.company{
  font-size: 1.4rem;
  line-height: 1.8em;
  letter-spacing: 0;
}
.company .for-pc{
  display: none;
}
.company table{
  width: 100%;
  font-size: 1.4rem;
  line-height: 1.6em;
  border-top: 0.5px solid #ddd;
  margin: 50px 0 50px 0;
}
.company table th{
  width: 160px;
  text-align: left;
  padding: 18px 0;
  border-bottom: 0.5px solid #ddd;
}
.company table td{
  padding: 16px 0;
  border-bottom: 0.5px solid #ddd;
}
.company iframe{
  width: 100%;
  height: 600px;
  border: 0;
}
}

@media screen and (max-width:479px) {
.company{
  font-size: 1.4rem;
  line-height: 1.8em;
  letter-spacing: 0;
}
.company .for-pc{
  display: none;
}
.company table{
  width: 100%;
  font-size: 1.3rem;
  line-height: 1.6em;
  border-top: 0.5px solid #ddd;
  margin: 50px 0 50px 0;
}
.company table th{
  width: 110px;
  text-align: left;
  padding: 15px 0;
  border-bottom: 0.5px solid #ddd;
}
.company table td{
  padding: 15px 0;
  border-bottom: 0.5px solid #ddd;
}
.company iframe{
  width: 100%;
  height: 500px;
  border: 0;
}
}


/* ==========================================================================
   faq
   ========================================================================== */
@media screen and (min-width: 960px){
.faq-list{
	width: 100%;
  border-bottom: 1px solid #eee;
}
.faq-list dt{
  font-size: 1.6rem;
  line-height: 1.5em;
  font-weight: 500;
  border-top: 1px solid #eee;
  cursor:pointer;
	position: relative;
  padding: 25px 80px 25px 15px;
  margin: 0 0 0 0;
}
.faq-list dt:after{
	content: '';
	display: inline-block;
	width: 14px;
	height: 14px;
	background-image: url(../images/icon-off.svg);
	background-size: contain;
	position: absolute;
	top: 50%;
	right: 0;
	margin: -7px 18px 0 0;
}
.faq-list dl:last-child{
	margin: 0;
}
.faq-list dt.active:after{
  content: '';
	display: inline-block;
	width: 14px;
	height: 14px;
	background-image: url(../images/icon-on.svg);
	background-size: contain;
	position: absolute;
	top: 50%;
	right: 0;
	margin: -7px 18px 0 0;
}
.faq-list dd{
  font-size: 1.5rem;
  line-height: 1.8em;
  letter-spacing: 0;
  width: calc(100% - 210px);
	display: none;
	padding: 0 0 25px 60px;
  margin: 0;
}
.faq-list dd a{
  text-decoration: underline;
}
}

@media screen and (min-width: 480px) and (max-width:959px) {
.faq-list{
	width: 100%;
  border-bottom: 0.5px solid #ddd;
  margin: 5px 0 0 0;
}
.faq-list dt{
  font-size: 1.4rem;
  line-height: 1.5em;
  font-weight: 500;
  border-top: 0.5px solid #ddd;
  cursor:pointer;
	position: relative;
  padding: 24px 60px 24px 10px;
  margin: 0 0 0 0;
}
.faq-list dt:after{
	content: '';
	display: inline-block;
	width: 14px;
	height: 14px;
	background-image: url(../images/icon-off.svg);
	background-size: contain;
	position: absolute;
	top: 50%;
	right: 0;
	margin: -7px 18px 0 0;
}
.faq-list dl:last-child{
	margin: 0;
}
.faq-list dt.active:after{
  content: '';
	display: inline-block;
	width: 14px;
	height: 14px;
	background-image: url(../images/icon-on.svg);
	background-size: contain;
	position: absolute;
	top: 50%;
	right: 0;
	margin: -7px 18px 0 0;
}
.faq-list dd{
  font-size: 1.4rem;
  line-height: 1.8em;
  letter-spacing: 0;
  width: calc(100% - 60px);
	display: none;
	padding: 0 0 30px 10px;
  margin: 0;
}
.faq-list dd a{
  text-decoration: underline;
}
}

@media screen and (max-width:479px) {
.faq-list{
	width: 100%;
  border-bottom: 0.5px solid #ddd;
}
.faq-list dt{
  font-size: 1.4rem;
  line-height: 1.5em;
  font-weight: 500;
  border-top: 0.5px solid #ddd;
  cursor:pointer;
	position: relative;
  padding: 20px 60px 20px 0;
  margin: 0 0 0 0;
}
.faq-list dt:after{
	content: '';
	display: inline-block;
	width: 14px;
	height: 14px;
	background-image: url(../images/icon-off.svg);
	background-size: contain;
	position: absolute;
	top: 50%;
	right: 0;
	margin: -7px 18px 0 0;
}
.faq-list dl:last-child{
	margin: 0;
}
.faq-list dt.active:after{
  content: '';
	display: inline-block;
	width: 14px;
	height: 14px;
	background-image: url(../images/icon-on.svg);
	background-size: contain;
	position: absolute;
	top: 50%;
	right: 0;
	margin: -7px 18px 0 0;
}
.faq-list dd{
  font-size: 1.4rem;
  line-height: 1.8em;
  letter-spacing: 0;
  width: calc(100% - 20px);
	display: none;
	padding: 0 0 30px 10px;
  margin: 0;
}
.faq-list dd a{
  text-decoration: underline;
}
}


/* ==========================================================================
   contact
   ========================================================================== */
@media screen and (min-width: 960px){
.contact-form{
  width: 100%;
  margin: 80px 0 40px 0;
  overflow: hidden;
}
.contact-form dl{
  width: 100%;
  display: block;
  float: left;
  margin: 0;
}
.contact-form dt{
  width: 240px;
  font-weight: 500;
  display: block;
  float: left;
  padding: 14px 0;
}
.contact-form dd{
  width: 720px;
  display: block;
  float: right;
  padding: 10px 0 10px 0;
}
.contact-form span{
  color: #DC143C;
  font-weight: 300;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea{
  width: 100%;
  resize: vertical;
  padding: 0.8em 0.6em;
  font-size: 1.5rem;
  border: 1px solid #ccc;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  box-sizing: border-box;
  margin: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.contact .submit{
  width: 440px;
  height: 54px;
  position: relative;
  background: #333;
  margin: 0 auto 10px;
}
.contact .submit:after{
	content: "";
	width: 14px;
	height: 14px;
	position: absolute;
	top: 50%;
	right: 13px;
	margin: -7px 0 0 0;
	background: url(../images/icon-arrow.svg) no-repeat 0 0;
	background-size: 14px 14px;
}
.contact input[type="submit"]{
  width: 440px;
  height: 54px;
  font-size: 116%;
  font-weight: 400;
  color: #fff;
  line-height: 54px;
  display: block;
  text-align: center;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
  background: #333;
}
}

@media screen and (min-width: 480px) and (max-width:959px) {
.contact{
  font-size: 1.4rem;
  line-height: 1.8em;
  letter-spacing: 0;
}
.contact-form{
  width: 100%;
  margin: 40px 0 20px 0;
  overflow: hidden;
}
.contact-form dl{
  width: 100%;
  display: block;
  float: left;
  margin: 0;
}
.contact-form dt{
  width: 100%;
  display: block;
  float: left;
  padding: 0;
}
.contact-form dd{
  width: 100%;
  display: block;
  float: right;
  padding: 6px 0 16px 0;
}
.contact-form span{
  color: #DC143C;
  font-weight: 300;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea{
  width: 100%;
  resize: vertical;
  padding: 0.7em 0.6em;
  font-size: 1.5rem;
  border: 1px solid #ccc;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  box-sizing: border-box;
  margin: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.contact .submit{
  width: 300px;
  height: 50px;
  position: relative;
  background: #333;
  margin: 0 auto 10px;
}
.contact .submit:after{
	content: "";
	width: 14px;
	height: 14px;
	position: absolute;
	top: 50%;
	right: 13px;
	margin: -7px 0 0 0;
	background: url(../images/icon-arrow.svg) no-repeat 0 0;
	background-size: 14px 14px;
}
.contact input[type="submit"]{
  width: 300px;
  height: 50px;
  font-size: 116%;
  font-weight: 400;
  color: #fff;
  line-height: 50px;
  display: block;
  text-align: center;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
  background: #333;
}
}

@media screen and (max-width:479px) {
.contact{
  font-size: 1.4rem;
  line-height: 1.8em;
  letter-spacing: 0;
}
.contact-form{
  width: 100%;
  margin: 40px 0 30px 0;
  overflow: hidden;
  font-size: 1.4rem;
}
.contact-form dl{
  width: 100%;
  display: block;
  float: left;
  margin: 0;
}
.contact-form dt{
  width: 100%;
  display: block;
  float: left;
  padding: 0;
}
.contact-form dd{
  width: 100%;
  display: block;
  float: right;
  padding: 2px 0 10px 0;
}
.contact-form span{
  color: #DC143C;
  font-weight: 300;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea{
  width: 100%;
  resize: vertical;
  padding: 0.6em 0.6em;
  font-size: 1.6rem;
  border: 1px solid #ccc;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  box-sizing: border-box;
  margin: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.contact .submit{
  width: 100%;
  height: 50px;
  position: relative;
  background: #333;
  margin: 0 auto 10px;
}
.contact .submit:after{
	content: "";
	width: 14px;
	height: 14px;
	position: absolute;
	top: 50%;
	right: 13px;
	margin: -7px 0 0 0;
	background: url(../images/icon-arrow.svg) no-repeat 0 0;
	background-size: 14px 14px;
}
.contact input[type="submit"]{
  width: 100%;
  height: 50px;
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
  line-height: 50px;
  display: block;
  text-align: center;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
  background: #333;
}
}


/* ==========================================================================
   news & blog
   ========================================================================== */
@media screen and (min-width: 960px){
.single .contents-area{
  padding: 0 0 0 0;
}
.blog .page-header{
  background-image: url(../images/header-blog.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
.arekore .page-header{
  background-image: url(../images/header-arekore.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
.album .page-header{
  background-image: url(../images/header-album.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
.single .post{
  width: 850px;
  margin: 0 auto;
  overflow: hidden;
}
.single .post h3{
  font-size: 2.3rem;
  line-height: 1.7em;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin: 0 0 50px 0;
}
.single .post ul{
  width: 100%;
  float: left;
  padding: 0 0 60px 0;
}
.single .post ul .body{
  width: 100%;
  float: left;
  font-size: 1.5rem;
  padding: 0 0 50px 0;
}
.single .post ul li{
  width: 100%;
  float: left;
  margin: 20px 0 70px 0;
  position: relative;
}
.single .post ul li:last-child{
  margin: 20px 0 0 0;
}
.single .post .post_data{
  width: 100%;
  float: left;
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  font-weight: 100;
  margin: 0 0 5px 0;
}
.single .post li .post_cat{
  font-size: 1.3rem;
  position: absolute;
  top: 47px;
  right: 0;
  padding: 5px 12px;
  font-weight: 500;
  line-height: 1em;
  letter-spacing: 0.01em;
  text-align: center;
  color: #fff;
  border-radius: 1px;
  background: #84aed9;
}
.single .post .post_title{
  width: 700px;
  font-size: 2.3rem;
  line-height: 1.7em;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #3a3a78;
}
.single .post .post_title a{
  font-size: 2.2rem;
  line-height: 1.7em;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #3a3a78;
  transition: all 0.2s ease;
}
.single .post .post_title a:hover{
  opacity: 0.4;
}
.single .post .post_tag{
  width: 100%;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: #777;
  text-align: right;
  margin: 20px 0 0 0;
  padding: 10px 0 0 0;
  border-top: 1px solid #ddd;
  float: left;
}
.single .post .post_content{
  padding: 30px 0;
  float: left;
}
.single .post .post_content p{
  width: 100%;
  font-size: 1.6rem;
  line-height: 2.2em;
  letter-spacing: 0;
}
.single .post .post_content p a{
  text-decoration: underline;
}
.single .post .post_content p a:hover{
  color: #aaa;
}
.single .post .post_content img{
  width: auto;
  height: auto;
  max-width: 680px;
  max-height: 680px;
  margin: 22px 0 25px 0;
  display: block;
}
.single .post .page_btn{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 60px 0 0 0;
  float: left;
}
.single .post .page_btn a{
  width: 240px;
  height: 46px;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
  margin: 5px 0;
}
}

@media screen and (min-width: 480px) and (max-width:959px) {
.single{
  font-size: 1.4rem;
  line-height: 1.8em;
  letter-spacing: 0;
}
.blog .page-header{
  background-image: url(../images/header-blog.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
.arekore .page-header{
  background-image: url(../images/header-arekore.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
.album .page-header{
  background-image: url(../images/header-album.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
.single .post{
  width: 100%;
  overflow: hidden;
}
.single .post h3{
  font-size: 2.0rem;
  line-height: 1.7em;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin: 0 0 50px 0;
}
.single .post ul{
  width: 100%;
  float: left;
  padding: 0 0 40px 0;
}
.single .post ul .body{
  width: 100%;
  float: left;
  padding: 0 0 40px 0;
}
.single .post ul li{
  width: 100%;
  float: left;
  margin: 0 0 50px 0;
  position: relative;
}
.single .post ul li:last-child{
  margin: 20px 0 0 0;
}
.single .post .post_data{
  width: 100%;
  float: left;
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  font-weight: 100;
  margin: 0 0 2px 0;
}
.single .post li .post_cat{
  font-size: 1.2rem;
  position: absolute;
  top: 7px;
  right: 0;
  padding: 3px 8px;
  font-weight: 500;
  line-height: 1em;
  letter-spacing: 0.01em;
  text-align: center;
  color: #fff;
  border-radius: 1px;
  background: #84aed9;
}
.single .post .post_title{
  width: 100%;
  font-size: 2.0rem;
  line-height: 1.6em;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #3a3a78;
}
.single .post .post_title a{
  font-size: 1.8rem;
  line-height: 1.6em;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #3a3a78;
  transition: all 0.2s ease;
}
.single .post .post_tag{
  width: 100%;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: #777;
  text-align: right;
  margin: 12px 0 0 0;
  padding: 5px 0 0 0;
  border-top: 1px solid #ddd;
  float: left;
}
.single .post .post_content{
  padding: 20px 0;
  float: left;
}
.single .post .post_content p{
  width: 100%;
  font-size: 1.5rem;
  line-height: 2.2em;
  letter-spacing: 0;
}
.single .post .post_content p a{
  text-decoration: underline;
}
.single .post .post_content img{
  width: auto;
  height: auto;
  max-width: 600px;
  max-height: 600px;
  margin: 17px 0 20px 0;
  display: block;
}
.single .post .page_btn{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 30px 0 0 0;
  float: left;
}
.single .post .page_btn a{
  width: 240px;
  height: 46px;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
  margin: 5px 0;
}
}

@media screen and (max-width:479px) {
.single{
  font-size: 1.4rem;
  line-height: 1.8em;
  letter-spacing: 0;
}
.blog .page-header{
  background-image: url(../images/header-blog.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
.arekore .page-header{
  background-image: url(../images/header-arekore.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
.album .page-header{
  background-image: url(../images/header-album.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
.post{
  width: 100%;
  padding: 0 0 0 0;
  overflow: hidden;
}
.post h3{
  font-size: 2.3rem;
  line-height: 1.7em;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin: 0 0 50px 0;
}
.post ul{
  width: 100%;
  float: left;
  padding: 0 0 40px 0;
}
.post ul .body{
  width: 100%;
  float: left;
  font-size: 1.4rem;
  padding: 0 0 40px 0;
}
.post ul li{
  width: 100%;
  float: left;
  margin: 0 0 40px 0;
  position: relative;
}
.post ul li:last-child{
  margin: 20px 0 0 0;
}
.post .post_data{
  width: 100%;
  float: left;
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  font-weight: 100;
  margin: 0 0 0 0;
}
.post li .post_cat{
  font-size: 1.2rem;
  position: absolute;
  top: 7px;
  right: 0;
  padding: 3px 8px;
  font-weight: 500;
  line-height: 1em;
  letter-spacing: 0.01em;
  text-align: center;
  color: #fff;
  border-radius: 1px;
  background: #84aed9;
}
.post .post_title{
  width: 100%;
  font-size: 1.8rem;
  line-height: 1.6em;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #3a3a78;
}
.post .post_title a{
  font-size: 1.8rem;
  line-height: 1.6em;
  letter-spacing: 0;
  font-weight: 500;
  color: #3a3a78;
  transition: all 0.2s ease;
}
.post .post_tag{
  width: 100%;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: #777;
  text-align: right;
  margin: 10px 0 0 0;
  padding: 2px 0 0 0;
  border-top: 1px solid #ddd;
  float: left;
}
.post .post_content{
  padding: 20px 0;
  float: left;
}
.post .post_content p{
  width: 100%;
  font-size: 1.5rem;
  line-height: 2.2em;
}
.post .post_content p a{
  text-decoration: underline;
}
.post .post_content img{
  width: 100%;
  height: auto;
  margin: 20px 0 20px 0;
  display: block;
}
.post .page_btn{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 30px 0 0 0;
  float: left;
}
.post .page_btn a{
  width: 240px;
  height: 46px;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
  margin: 5px 0;
}
}


/* ==========================================================================
   footer
   ========================================================================== */
@media screen and (min-width: 960px){
.footer{
  position: relative;
  background: #f3f3f3;
}
footer{
  padding: 110px 0 80px;
  overflow: hidden;
  display: flex;
	align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
  position: relative;
}

footer .logo-block{
  width: 275px;
  height: 360px;
  margin: 3px 0 0 0;
}
footer .logo a{
  width: 275px;
  height: auto;
  display: block;
}
footer .logo a img{
  width: 100%;
  height: auto;
  display: block;
}
footer .logo p{
  margin: 18px 0 30px 0;
  font-size: 1.3rem;
  line-height: 1.6em;
  font-weight: 300;
}
footer .logo p .map a{
  margin: 5px 0 0 0;
  font-size: 1.2rem;
  font-weight: 500;
  transition: all 0.2s ease;
}
footer .logo p .map a:hover{
  opacity: 0.4;
}

footer .footer-btn .btn{
  width: 275px;
  height: 54px;
  display: block;
  float: left;
  margin: 0 0 10px 0;
}
footer .footer-btn .btn a{
  width: 275px;
  height: 54px;
  display: flex;
	align-items: center;
	justify-content: center;
  position: relative;
  background: #333;
}
footer .footer-btn .btn a:after{
	content: "";
	width: 14px;
	height: 14px;
	position: absolute;
	top: 50%;
	right: 13px;
	margin: -7px 0 0 0;
	background: url(../images/icon-arrow.svg) no-repeat 0 0;
	background-size: 14px 14px;
	cursor: pointer;
}
footer .footer-btn .btn a img{
  width: auto;
  height: 16px;
  display: block;
  transition: all 0.2s ease;
}
footer .footer-btn .btn a:hover img{
  opacity: 0.4;
}

footer .footer-nav{
  width: auto;
  height: 360px;
  display: block;
}
footer .footer-nav ul{
  width: 166px;
  display: block;
  float: left;
  margin: 0 15px 0 0;
}
footer .footer-nav ul.sns{
  width: 100px;
}
footer .footer-nav ul li a{
  font-size: 1.3rem;
  line-height: 1.7em;
  letter-spacing: 0em;
  font-weight: 100;
  display: block;
  transition: 0.2s ease;
}
footer .footer-nav ul h5{
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.3rem;
  line-height: 1.1em;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin: 0 0 12px 0;
  color: #333;
}
footer .footer-nav ul li a:hover{
  opacity: 0.4;
}

.footer .copyright{
  font-family: 'Noto Sans JP', sans-serif;
  width: 300px
  color: #777;
  font-size: 1.2rem;
  line-height: 1em;
  letter-spacing: 0.1em;
  position: absolute;
  bottom: 30px;
  left: 50%;
  margin: 0 0 0 -150px;
}
}

@media screen and (min-width: 480px) and (max-width:959px) {
.footer{
  position: relative;
  background: #f3f3f3;
}
footer{
  padding: 50px 10px 0;
  overflow: hidden;
  display: flex;
	align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
  position: relative;
}
footer .logo-block{
  width: 275px;
  height: 370px;
  margin: 3px 0 0 0;
}
footer .logo a{
  width: 275px;
  height: auto;
  display: block;
}
footer .logo a img{
  width: 100%;
  height: auto;
  display: block;
}
footer .logo p{
  margin: 15px 0 20px 0;
  font-size: 1.3rem;
  line-height: 1.6em;
  font-weight: 300;
}
footer .logo p .map a{
  margin: 5px 0 0 0;
  font-size: 1.2rem;
  font-weight: 500;
  transition: all 0.2s ease;
}
footer .footer-btn .btn{
  width: 275px;
  height: 50px;
  display: block;
  float: left;
  margin: 0 0 10px 0;
}
footer .footer-btn .btn a{
  width: 275px;
  height: 50px;
  display: flex;
	align-items: center;
	justify-content: center;
  position: relative;
  background: #333;
}
footer .footer-btn .btn a:after{
	content: "";
	width: 14px;
	height: 14px;
	position: absolute;
	top: 50%;
	right: 13px;
	margin: -7px 0 0 0;
	background: url(../images/icon-arrow.svg) no-repeat 0 0;
	background-size: 14px 14px;
	cursor: pointer;
}
footer .footer-btn .btn a img{
  width: auto;
  height: 16px;
  display: block;
  transition: all 0.2s ease;
}
footer .footer-nav{
  width: auto;
  height: 360px;
  display: block;
}
footer .footer-nav .for-pc{
  display: none;
}
footer .footer-nav ul{
  width: 166px;
  display: block;
  float: left;
  margin: 0 15px 0 0;
}
footer .footer-nav ul.sns{
  width: 100px;
}
footer .footer-nav ul li a{
  font-size: 1.3rem;
  line-height: 1.7em;
  letter-spacing: 0em;
  font-weight: 100;
  display: block;
  transition: 0.2s ease;
}
footer .footer-nav ul h5{
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.3rem;
  line-height: 1.1em;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin: 0 0 12px 0;
  color: #333;
}
.footer .copyright{
  font-family: 'Noto Sans JP', sans-serif;
  width: 100%;
  color: #777;
  font-size: 1.2rem;
  line-height: 1em;
  letter-spacing: 0.1em;
  text-align: center;
  position: absolute;
  bottom: 25px;
  left: 0;
  margin: 0 0 0 0;
}
}

@media screen and (max-width:479px) {
.footer{
  position: relative;
  background: #f3f3f3;
}
footer{
  padding: 50px 0 0;
  overflow: hidden;
  position: relative;
}
footer .logo-block{
  width: 100%;
  height: 370px;
  margin: 3px 0 0 0;
}
footer .logo a{
  width: 100%;
  height: auto;
  display: block;
}
footer .logo a img{
  width: 100%;
  height: auto;
  display: block;
}
footer .logo p{
  margin: 10px 0 25px 0;
  font-size: 1.4rem;
  line-height: 1.6em;
  font-weight: 300;
}
footer .logo p .map a{
  margin: 8px 0 0 0;
  font-size: 1.4rem;
  font-weight: 300;
  transition: all 0.2s ease;
}
footer .footer-btn .btn{
  width: 100%;
  height: 50px;
  display: block;
  float: left;
  margin: 0 0 10px 0;
}
footer .footer-btn .btn a{
  width: 100%;
  height: 50px;
  display: flex;
	align-items: center;
	justify-content: center;
  position: relative;
  background: #333;
}
footer .footer-btn .btn a:after{
	content: "";
	width: 14px;
	height: 14px;
	position: absolute;
	top: 50%;
	right: 13px;
	margin: -7px 0 0 0;
	background: url(../images/icon-arrow.svg) no-repeat 0 0;
	background-size: 14px 14px;
	cursor: pointer;
}
footer .footer-btn .btn a img{
  width: auto;
  height: 16px;
  display: block;
  transition: all 0.2s ease;
}
footer .footer-nav{
  width: 100%;
  height: 390px;
  display: flex;
  flex-direction: row;
}
footer .footer-nav .for-pc{
  display: none;
}
footer .footer-nav ul{
  width: 170px;
  display: block;
  float: left;
  margin: 0 0 0 5px;
}
footer .footer-nav ul.sns{
  width: 115px;
}
footer .footer-nav h5.sns-ttl{
  margin: -6px 0 12px 0;
}
footer .footer-nav ul li a{
  font-size: 1.5rem;
  line-height: 1.8em;
  letter-spacing: 0.05em;
  font-weight: 100;
  display: block;
  transition: 0.2s ease;
}
footer .footer-nav ul h5{
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.5rem;
  line-height: 1.1em;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin: 0 0 12px 0;
  color: #333;
}
.footer .copyright{
  font-family: 'Noto Sans JP', sans-serif;
  width: 100%;
  color: #777;
  font-size: 1.2rem;
  line-height: 1em;
  letter-spacing: 0.1em;
  text-align: center;
  position: absolute;
  bottom: 25px;
  left: 0;
  margin: 0 0 0 0;
}
}


/* ==========================================================================
   pagenavi
   ========================================================================== */
@media screen and (min-width: 960px){
.wp-pagenavi{
	width: 100%;
	overflow: hidden;
	font-size: 1.5rem;
	text-align: center;
  margin: 0 0 100px 0;
}
.wp-pagenavi a, .wp-pagenavi .current{
	width: 30px;
	height: 30px;
	text-align: center;
	line-height: 30px;
	border: 1px solid #9c9c9c;
	color: #999;
	margin: 0 6px;
	display: inline-block;
	transition: 0.2s ease;
}
.wp-pagenavi a:hover{
	color: #181818;
	border: 1px solid #181818;
}
.wp-pagenavi .current{
	color: #fff;
  border: 1px solid #181818;
  background: #181818;
}
}

@media screen and (min-width: 480px) and (max-width:959px) {
.wp-pagenavi{
	width: 100%;
	overflow: hidden;
	font-size: 1.5rem;
	text-align: center;
  margin: 0 0 20px 0;
}
.wp-pagenavi a, .wp-pagenavi .current{
	width: 30px;
	height: 30px;
	text-align: center;
	line-height: 30px;
  border: 1px solid #9c9c9c;
	color: #999;
	margin: 0 3px;
	display: inline-block;
}
.wp-pagenavi .current{
	color: #fff;
  border: 1px solid #181818;
  background: #181818;
}
}

@media screen and (max-width:479px) {
.wp-pagenavi{
	width: 100%;
	overflow: hidden;
	font-size: 1.5rem;
	text-align: center;
  margin: 0 0 20px 0;
}
.wp-pagenavi a, .wp-pagenavi .current{
	width: 25px;
	height: 25px;
	text-align: center;
	line-height: 25px;
  border: 1px solid #9c9c9c;
	color: #999;
	margin: 0 3px;
	display: inline-block;
}
.wp-pagenavi .current{
	color: #fff;
  border: 1px solid #181818;
  background: #181818;
}
}
