@charset "UTF-8";
/* CSS Document */
body {
  font-family: "しっぽり明朝", serif;
  color: #333333;
  background-color: #ffffff;
  font-weight: 100;
  overflow: auto;
}
/*スクロールリンクの形状*/
.scroll-top {
	/*表示位置*/
	position: fixed;
	right: 20px;
	bottom: 10px;
	z-index: 2;
	/*はじめは非表示*/
	opacity: 0;
	visibility: hidden; 
	transition: opacity .5s, visibility .5s; /*それぞれに0.5秒の変化のアニメーション*/
	/*縦書き*/
	-webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
	/*改行禁止*/
    white-space: nowrap;
	/*矢印の動き*/
	animation: arrowmove 1s ease-in-out infinite;
}

@keyframes arrowmove{
      0%{bottom:20px;}
      50%{bottom:25px;}
     100%{bottom:20px;}
 }


/*.scroll-viewクラスがついたら出現*/
.scroll-top.scroll-view {
	opacity: 1;
	visibility: visible;
}

/*リンク全体の aタグの形状*/
.scroll-top a {
	text-decoration: none;
	color: #666;
	text-transform: uppercase;
	font-size:0.9rem;
    display: block;
}

/*スクロールリンクの形状*/

.js-scroll a::after{
	content:"";
	position: absolute;
	top:0;
	right:0;
	width:1px;
	height: 60px;
	background:#666;
}

.js-scroll a::before {
    content: "";
    position: absolute;
    top: 40px;
    right: -6px;
    width: 1px;
    height: 20px;
    background: #666;
    transform: skewX(-31deg);
}

/*Edge IE11 hack*/
_:-ms-lang(x), .js-scroll a::before{
	right:-11px;
}

/*ページトップリンクの形状*/

.js-pagetop a::after{
	content:"";
	position: absolute;
	top:0;
	right:0;
	width:1px;
	height: 80px;
	background:#666;
}

.js-pagetop a::before {
    content: "";
    position: absolute;
    top: 0;
    right: -6px;
    width: 1px;
    height: 20px;
    background: #666;
    transform: skewX(31deg);
}

/*Edge IE11 hack*/
_:-ms-lang(x), .js-pagetop a::before{
	right:0;
}
/*///////////header//////////*/
.header_cover {
  margin: 0 auto;
  max-width: 1400px;
  z-index: 999;
}
.header {
  padding: 40px 0 40px;
  position: fixed;
  display: flex;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 999;
}
.header h1 img {
  width: 220px;
  height: auto;
  padding-left: 80px;
}
nav {
  padding-left: 260px;
  padding-right: 50px;
  display: flex;
  align-items: center;
}
.header nav ul a:hover {
  color: #999999;
}
.header nav ul li {
  float: left;
  padding-left: 80px;
}
.header nav ul li a {
  color: #333333;
  text-decoration: none;
  font-size: 1.6rem;
  line-height: 1.5rem;
}
.header nav ul li a span {
  font-size: 0.6rem;
}
@media(max-width:960px) {
  .header {
    position: fixed;
    display: flex;
    top: 0px;
    margin: 0 auto;
    padding: 20px 0 20px;
    background-color: rgba(255, 255, 255, 0.8);
    width: 960px;
  }
  .header h1 img {
    width: 200px;
    height: auto;
    padding-left: 50px;
    padding-top: 10px;
  }
  .header_cover {
    margin: 0 auto;
    max-width: 960px;
  }
  /*//////////hamburger//////////*/
  .nav_toggle {
    position: fixed;
    width: 1.75rem;
    height: 1.5rem;
    top: 40px;
    right: 130px;
  }
  .nav_toggle i {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #333;
    position: absolute;
    transition: transform .5s, opacity .5s;
  }
  .nav_toggle i:nth-child(1) {
    top: 0;
  }
  .nav_toggle i:nth-child(2) {
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .nav_toggle i:nth-child(3) {
    bottom: 0;
  }
  .nav_toggle.show i:nth-child(1) {
    transform: translateY(10px) rotate(-45deg);
  }
  .nav_toggle.show i:nth-child(2) {
    opacity: 0;
  }
  .nav_toggle.show i:nth-child(3) {
    transform: translateY(-12px) rotate(45deg);
  }
  .nav {
    position: fixed;
    top: 3rem;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s, visibility .5s;
  }
  .nav.show {
    display: block;
    opacity: 1 !important;
    visibility: visible !important;
    background-color: rgba(255, 255, 255, 0.8);
    width: 300px;
    margin-top: 30px;
  }
  .nav_menu_ul {
    align-items: center;
    padding-top: 50px;
  }
  .nav_menu_li {
    padding-top: 10px;
  }
}
@media(max-width:480px) {
  .header {
    position: fixed;
    display: flex;
    top: 0px;
    margin: 0 auto;
    padding: 20px 0 20px;
    background-color: rgba(255, 255, 255, 0.8);
    width: 375px;
  }
  .header h1 img {
    width: 150px;
    height: auto;
    padding-left: 30px;
    padding-top: 10px;
  }
  .header_cover {
    margin: 0 auto;
    max-width: 375px;
  }
  /*//////////hamburger//////////*/
  .nav_toggle {
    position: fixed;
    width: 1.75rem;
    height: 1.5rem;
    top: 30px;
    left: 330px;
  }
  .nav_toggle i {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #333;
    position: absolute;
    transition: transform .5s, opacity .5s;
  }
  .nav_toggle i:nth-child(1) {
    top: 0;
  }
  .nav_toggle i:nth-child(2) {
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .nav_toggle i:nth-child(3) {
    bottom: 0;
  }
  .nav_toggle.show i:nth-child(1) {
    transform: translateY(10px) rotate(-45deg);
  }
  .nav_toggle.show i:nth-child(2) {
    opacity: 0;
  }
  .nav_toggle.show i:nth-child(3) {
    transform: translateY(-12px) rotate(45deg);
  }
  .nav {
    position: fixed;
    top: 3rem;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s, visibility .5s;
  }
  .nav.show {
    display: block;
    opacity: 1 !important;
    visibility: visible !important;
    background-color: rgba(255, 255, 255, 0.8);
    width: 300px;
    margin-top: 30px;
  }
  .nav_menu_ul {
    align-items: center;
    padding-top: 50px;
  }
  .nav_menu_li {
    padding-top: 10px;
  }
}
/*///////////footer//////////*/
.footer {
  max-width: 1400px;
  margin: 0 auto;
  background-color: #796e90;
  height: 250px;
}
.footer_wrapper {
  display: flex;
  justify-content: space-between;
  max-width: 1400px;
  padding-top: 50px;
}
.footer_logo a img {
  width: 220px;
  height: auto;
  padding-left: 80px;
}
.sns_links ul {
  display: flex;
  list-style: none;
  padding-left: 50px;
  padding-right: 50px;
}
.sns_links ul li {
  padding-right: 50px;
}
.copyright {
  color: #ffffff;
  display: flex;
  justify-content: center;
  padding-top: 130px;
}
@media(max-width:480px) {
  .footer {
    max-width: 375px;
  }
  .footer_wrapper {
    flex-direction: column;
  }
  .footer_logo a img {
    display: block;
    width: 170px;
    height: auto;
    margin: 0 auto;
    padding-left: 0;
  }
  .sns_links ul {
    display: flex;
    list-style: none;
    justify-content: space-between;
    padding: 50px 130px 0px;
  }
  .sns_links ul li {
    padding-right: 0px;
  }
  .sns_links ul li img {
    width: 30px;
    height: 30px;
  }
  .copyright {
    color: #ffffff;
    display: flex;
    justify-content: center;
    padding-top: 50px;
  }
  small {
    color: #ffffff;
    font-size: 0.8rem;
  }
}