@charset "UTF-8";

/** General Style **/

*{
	margin : 0;
	padding : 0;
}
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
html {
	font-size: 16px;
	width: 100%;
	/** scroll-behavior: smooth; **/
}
body {
	position: relative;
	width: 100%;
	font-family: vdl-v7marugothic,sans-serif;
	font-weight: 700;
	font-style: normal;
	color: #4f4367;
	background: #fff;
    line-height: 1.6;
	/** font-feature-settings: "palt"; **/
	-webkit-text-size-adjust: 100%;
	word-break:break-all;
	/** sanimation: fadeIn 3s forwards; **/
	overflow-x: hidden;
}
img {
	width: 100%;
	height: auto;
	border: none;
	vertical-align: bottom;
	image-rendering: auto;
}

/* chrome opera */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: .001dpcm) {
    img {
        image-rendering: -webkit-optimize-contrast;
    }
}

a img{
	border: none;
}
ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
a,
a:link,
a:visited {
	color: #F440AE;
	text-decoration: underline;
}
a:hover, a:active {
	opacity: 0.6;
}
h1, h2, h3, h4, h5 {
	margin: 0;
	padding: 0;
}
strong {
	  font-weight: 900;
}

/** アニメーション **/
@keyframes fadeIn {
  from {
	  opacity: 0;
  }
  to {
	  opacity: 1;
  }
}
@keyframes fadeOut {
  from {
	  opacity: 1;
  }
  to {
	  opacity: 0;
  }
}
@keyframes fadeInTop {
  from {
	  opacity: 0;
	  transform: translate(0, -50%);
	  transition: 2s;
  }
  to {
	  opacity: 1;
	  transform: translate(0, 0);
	  transition: 2s;
  }
}
@keyframes fadeOutTop {
  from {
	  opacity: 1;
	  transform: translate(0, 0);
	  transition: 2s;
  }
  to {
	  opacity: 0;
	  transform: translate(0, -100%);
	  transition: 2s;
  }
}
@keyframes fadeInBottom {
  0% {
	  opacity: 0;
	  transform: translate(0, 50%);
	  transition: 0.5s;
  }
  66% {
	  opacity: 0;
	  transform: translate(0, 50%);
	  transition: 0.5s;
  }
  100% {
	  opacity: 1;
	  transform: translate(0, 0);
	  transition: 0.5s;
  }
}
@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes zoomIn2 {
  0% {
    transform: scale(1.2) translate(0, 0);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1) translate(0, 0);
  }
}
@keyframes poyoyon {
  0%  {
    transform: scale(1.0, 1.0) translate(0, 0);
  }
  20% {
    transform: scale(0.9, 1.0) translate(0, 10px);
  }
  40% {
    transform: scale(1.1, 1.0) translate(0, 10px);
  }
  60% {transform: scale(0.9, 1.1) translate(0, -10px);
  }
  80% {
    transform: scale(1.0, 0.9) translate(0, 10px);
  }
  100% {
    transform: scale(1.0, 1.0) translate(0, 0);
  }
}
@keyframes poyoyon2 {
  0%  {
    transform: scale(1.0, 1.0) translate(0, 0);
  }
  90%  {
    transform: scale(1.0, 1.0) translate(0, 0);
  }
  92% {
    transform: scale(0.95, 1.0) translate(0, 5px);
  }
  94% {
    transform: scale(1.05, 1.0) translate(0, 5px);
  }
  96% {transform: scale(0.95, 1.05) translate(0, -5px);
  }
  98% {
    transform: scale(1.0, 0.95) translate(0, 5px);
  }
  100% {
    transform: scale(1.0, 1.0) translate(0, 0);
  }
}
@keyframes loop {
  0% {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(-200%);
  }
  to {
    transform: translateX(0%);
  }
}
@-webkit-keyframes swivel-horizontal {
from {
-webkit-transform: rotateY(0);
    }
to {
-webkit-transform: rotateY(360deg);
    }
}
@keyframes huru {
0% {transform: translate(0px, 0px) rotateZ(0deg)}
25% {transform: translate(2px, 2px) rotateZ(1deg)}
50% {transform: translate(0px, 2px) rotateZ(0deg)}
75% {transform: translate(2px, 0px) rotateZ(-1deg)}
100% {transform: translate(0px, 0px) rotateZ(0deg)}
}
@keyframes rotation {
0%{ transform:rotate(0);}
100%{ transform:rotate(360deg); }
}
@keyframes drop {
0%   { transform: scale(0.8, 1.4) translate(0%, -100%); }
10%  { transform: scale(0.8, 1.4) translate(0%, -15%); }
20%  { transform: scale(1.4, 0.6) translate(0%, 30%); }
30%  { transform: scale(0.9, 1.1) translate(0%, -10%); }
40%  { transform: scale(0.95, 1.2) translate(0%, -30%); }
50%  { transform: scale(0.95, 1.2) translate(0%, -10%); }
60%  { transform: scale(1.1, 0.9) translate(0%, 5%); }
70%  { transform: scale(1.0, 1.0) translate(0%, 0%); }
100% { transform: scale(1.0, 1.0) translate(0%, 0%); }
}

/** スクロールアニメ **/
.sa {
	opacity: 0;
	visibility: hidden;
	transform: translateY(50px);
	transition: all 0.5s;
}
.sa.is-show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0px);
}
.rotate.is-show {
	animation: swivel-horizontal 0.5s linear;
}
.poyo.is-show {
	animation: poyoyon 0.37s ease;
}
.drop {
	opacity: 0;
	visibility: hidden;
}
.drop.is-show {
	opacity: 1;
	visibility: visible;
	animation: drop 1.5s linear;
}
.puru {
	animation: poyoyon2 5s 5s infinite;
}
.rotation.is-show {
	animation: rotation 0.5s ease-in;
}

/** テーブルリセット **/
table {
  border: none;
  border-spacing: 0;
  border-collapse: separate;
}
th, td {
  border: none;
  text-align:left;
}

/** フォームリセット **/
input,
button,
select,
file,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
}
textarea {
	resize: vertical;
}
input[type='checkbox'],
input[type='radio'] {
	display: none;
}
input[type='submit'],
input[type='button'],
label,
file,
button,
select {
	cursor: pointer;
}

/** Layout **/

@keyframes wrapbg {
	0% {  background-position-x: 0;  }
	100% {  background-position-x: 756px;
		background-position-y: -756px; }
}

body::before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -10;
    width: 100%;
    height: 100vh;
    background: url(../img/fixed_bg_repeat.png) center top #fad951;
	background-repeat: repeat;
	background-size: cover;
	overflow: hidden;
    animation: wrapbg 30s infinite linear;
}

/** header **/
header {
	width: 100%;
	position: fixed;
    top: 0;
	left: 0;
    z-index: 0;
}
.loop_wrap {
	display: block;
	width: 100%;
	height: 160px;
	overflow: hidden;
	background: url(../img/fixed_bg_repeat.gif) center top;
	background-repeat: repeat-x;
	background-size: auto 100%;
	margin-top: calc(50vh - 80px);
}

/** 
.loop_wrap ul:first-child {
	animation: loop 100s -50s linear infinite;
}
.loop_wrap ul:last-child {
  animation: loop2 100s linear infinite;
}
 **/
.loop_wrap ul {
	display: flex;
}
.loop_wrap ul img {
	width: auto;
	height: 100%;
}

@media screen and (max-width: 960px) {
  .loop_wrap {
	  height: 88px;
	  margin-top: calc(50vh - 44px);
  }
}

/*メニューボタン*/
.nav-button {
	display: block;
	z-index: 20;
	position: fixed;
	top: 7px;
	right: 7px;
	width: 60px;
	height: 60px;
	transition: all 0.4s;
	cursor: pointer;
	pointer-events: auto;
	
}
@media screen and (max-width: 960px) {
  .nav-wrap ul.nav {
	  width: 70%;
	  margin: 25vw auto 0;
  }
  .nav-wrap li {
	  margin: 1em 0;
  }
}
.nav-button span {
	display: inline-block;
}
.nav-button span:nth-of-type(1) {
	display: inline-block;
}
.nav-button span:nth-of-type(2) {
	display: none;
}
.nav-button.active span:nth-of-type(1) {
	display: none;
}
.nav-button.active span:nth-of-type(2) {
	display: inline-block;
}
.nav-wrap.open {
	transform: translateY(0);
	opacity: 1;
}
.nav-wrap.close {
	transform: translateY(-100vh);
	transition: all 0s;
	opacity: 0;
}
.nav-button span:nth-of-type(1) {
	background: url(../img/fixed_menu_open_hv.png) center no-repeat;
	background-size: 100%;
}
.nav-button span:nth-of-type(2) {
	background: url(../img/fixed_menu_close_hv.png) center no-repeat;
	background-size: 100%;
}
.nav-button span img:hover, .nav-button span img:active {
	opacity: 0;
}

/*メニュー*/
.nav-wrap {
	position: fixed;
	right: 0;
	top: 0;
	display: block;
	z-index: 15;
	background: url(../img/menu_bg.png) center no-repeat #FAD852;
	background-size: auto 80%;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	opacity: 0;
}
.nav-wrap {
	transform: translateY(-100vh);
	transition: all .4s ease-out;
}
.nav-wrap ul.nav {
	position: relative;
	width: 352px;
	margin: 23vh auto 0;
}
.nav-wrap li {
	display: block;
	width: 100%;
	margin: 1.25em 0;
}
.nav-wrap ul.nav p {
	display: block;
	width: 100%;
	margin-bottom: 2em;
}
.nav-wrap li a {
	animation: none;
	transform: none;
	transition: unset;
}
a.bt_menu1 {
	display: block;
	width: 100%;
	height: auto;
	background: url(../img/menu_btn_top_hv.png) left top no-repeat;
	background-size: 100%;
}
a.bt_menu2 {
	display: block;
	width: 100%;
	height: auto;
	background: url(../img/menu_btn_info_hv.png) left top no-repeat;
	background-size: 100%;
}
a.bt_menu3 {
	display: block;
	width: 100%;
	height: auto;
	background: url(../img/menu_btn_goods_hv.png) left top no-repeat;
	background-size: 100%;
}
a.bt_menu4 {
	display: block;
	width: 100%;
	height: auto;
	background: url(../img/menu_btn_about_hv.png) left top no-repeat;
	background-size: 100%;
}
a.bt_menu5 {
	display: block;
	width: 100%;
	height: auto;
	background: url(../img/menu_btn_attention_hv.png) left top no-repeat;
	background-size: 100%;
}
ul.nav li a:hover, ul.nav li a:active {
	opacity: 1;
}
ul.nav li a img:hover {
	opacity: 0;
}

@media screen and (max-width: 960px) {
  .nav-wrap {
	  background: url(../img/menu_bg.png) center 18vw no-repeat #FAD852;
	  background-size: auto 61%;
  }
  .nav-wrap ul.nav {
	  width: 70%;
	  margin: 25vw auto 0;
  }
  .nav-wrap li {
	  margin: 1em 0;
  }
}

/** Contents **/
article {
	position: relative;
	width: 100%;
	margin: 0 auto;
	padding: 100px 0;
	clear: both;
	overflow: hidden;
}
article section {
	position: relative;
	width: 100%;
	max-width: 1080px;
	margin: 0 auto;
}
.top {
	margin-top: -30px;
}
.main_bg1 {
	display: block;
	margin: 0 auto;
	width: 65.74%;
	opacity: 0;
	animation: zoomIn 0.25s 0.3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
.main_bg {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 65.74%;
	opacity: 0;
	animation: zoomIn 0.25s 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
.main_img {
	position: absolute;
	display: block;
	width: 63.7%;
	top: -12px;
	left: 0;
	right: 0;
	margin: auto;
	opacity: 0;
	animation: zoomIn2 1s 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
.main_ttl {
	display: block;
	width: 86.3%;
	margin: -55px auto 0;
	opacity: 0;
	animation: zoomIn2 0.5s 0.3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@media screen and (max-width: 960px) {
  article {
	  padding: 70px 0;
  }
  article section {
	  width: 96%;
  }
  .main_bg1 {
	  width: 100%;
  }
  .main_bg {
	  width: 100%;
  }
  .main_img {
	  width: 96%;
  }
  .main_ttl {
	  width: 80%;
	  margin: -40px auto 0;
  }
}

/** Information **/
#Information + article {
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0px 0px 10px #00000029;
}
.ttl {
	display: block;
	width: 42.2%;
	margin: 0 auto 20px;
}
.info_txt {
	display: block;
	width: 83.3%;
	margin: 0 auto;
}

@media screen and (max-width: 960px) {
  .ttl {
	  width: 80.6%;
	  margin: 0 auto 10px;
  }
  info_txt {
	  width: 100%;
	  width: 80.6%;
  }
}

/** Goods **/
section.goods {
	width: 96%;
	padding: 100px 70px;
	background: rgba(255, 236, 90, 0.92);
	border: 6px dotted #B78788;
	border-radius: 30px;
	font-size: 0;
	color: #652E2F;
	box-shadow: 0px 0px 10px #00000029;
}
section.goods .ttl {
	margin: 0 auto 67px;
}

@media screen and (max-width: 1079px) {
  section.goods .ttl {
	  width: 43.06%;
  }
}

@media screen and (max-width: 960px) {
  section.goods {
	  width: 92%;
	  padding: 70px 4%;
	  border: 4px dotted #B78788;
  }
  section.goods .ttl {
	  width: 87.6%;
	  margin: 0 auto 56px;
  }
}

/** Goods個別 **/
.col_center {
	width: 94%;
	clear: both;
	margin: 0 auto;
	font-size: 0;
	text-align: left;
}
.goods_wrap {
	position: relative;
	display: inline-block;
	width: 48%;
	font-size: 1rem;
	line-height: 1.4;
	text-align: left;
	margin: 0 1% 3.6rem;
	padding: 1rem 0.75rem;
	border: 4px solid #E5B64E;
	background: #fff;
	vertical-align: top;
}
.goods_cap {
    position: absolute;
	display: block;
	top: -37px;
	left: -4px;
	width: auto;
	height: 33px;
}
.goods_ttl {
    font-size: 22px;
    color: #EF6BAC;
    font-weight: 900;
	line-height: 1.2;
    width: 100%;
    height: 1.4em;
    margin: 0 0 0.5em;
}
.goods_img {
	display: block;
	width: 100%;
	border: 2px solid #E5B64E;
	margin: 0 0 0.5em;
}
.goods_price {
	display: inline-block;
	font-size: 17px;
	color: #18B7ED;
	width: 100%;
	margin: 0 0 0.5em;
}
.goods_item {
	display: inline-block;
	width: 100%;
	height: 4.2em;
	margin: 0 0 0.5em;
	color: #652E2F;
}

@media screen and (max-width: 960px) {
  .col_center {
	  width: 100%;
  }
  .goods_wrap {
	  width: 100%;
  }
  .goods_ttl {
	  height: auto;
  }
  .goods_item {
	  height: auto;
  }
}

/** Goodsボタン・他 **/
.goods_btn {
	display: block;
	width: 42.7%;
	margin: 0 auto 3.6rem;
	background: url(../img/goods_btn_buy_hv.png) left top no-repeat;
	background-size: 100%;
}
a.goods_btn:hover, a.goods_btn:active {
	opacity: 1;
}
a.goods_btn img:hover {
	opacity: 0;
}
p.goods_btn img:hover {
	opacity: 1;
}
.goods_term {
	display: block;
	width: 100%;
	font-size: 0;
	text-align: center;
}
.goods_term div {
	display: block;
	width: 10rem;
	background: #652E2F;
	border-radius: 22px;
	font-size: 22px;
	color: #fff;
	line-height: 1;
	padding: 0.5rem 0;
	margin: 0 auto;
}
.goods_term p {
	display: inline-block;
	font-size: 2rem;
	color: #F440AE;
	font-weight: 800;
	font-feature-settings: "palt";
	vertical-align: baseline;
}
.goods_term p span {
	font-size: 1.5rem;
}

@media screen and (max-width: 960px) {
  a.goods_btn {
	  width: 100%;
	  margin: -1.5rem auto 2rem;
  }
  .goods_term div {
	  margin: 0 auto 1.5rem;
  }
  .goods_term p {
	  font-size: 1.5rem;
  }
  .goods_term p span {
	  font-size: 1rem;
  }
}

@media screen and (max-width: 960px) {
.goods_btn {
	width: 100%;
	margin: -1.5rem auto 2rem;
}
.goods_term div {
	margin: 0 auto 1.5rem;
}
.goods_term p {
	font-size: 1.5rem;
}
.goods_term p span {
	font-size: 1rem;
}
}


/** About **/
section.about {
	width: 96%;
	padding: 100px 110px;
	background: rgba(255, 255, 255, 0.92);
	border: 6px dotted #B78788;
	border-radius: 30px;
	font-size: 0;
	color: #652E2F;
	box-shadow: 0px 0px 10px #00000029;
}

@media screen and (max-width: 1079px) {
  section.about .ttl {
	  width: 43.06%;
  }
}

@media screen and (max-width: 960px) {
  section.about {
	  width: 92%;
	  padding: 70px 4%;
	  border: 4px dotted #B78788;
  }
  section.about .ttl {
	  width: 87.6%;
  }
}

/** About左右 **/
.about_wrap {
	position: relative;
	display: inline-block;
	width: 48%;
	margin: 0 1%;
	vertical-align: top;
}
div.about_wrap > img {
	display: block;
	width: 64%;
	margin: 0 auto 1rem;
}
h3 {
	font-size: 1.5rem;
	font-weight: 800;
	margin: 0 0 0.5em;
	vertical-align: baseline;
	font-feature-settings: "palt";
}
h3 span {
	font-size: 1rem;
}
.colorB {
	color: #18B7ED;
}
.colorR {
	color: #EF6BAC;
}
.about_wrap p {
	font-size: 1rem;
	margin: 0 0 0.5em;
	height: 8em;
}
.about_wrap a {
	display: inline-block;
	width: 48%;
	margin: 0 1%;
}
.about_btn1 {
	display: block;
	background: url(../img/about_btn_web_pc_hv.png) left top no-repeat;
	background-size: 100%;
}
.about_btn2 {
	display: block;
	background: url(../img/about_btn_twitter_pc_hv.png) left top no-repeat;
	background-size: 100%;
}
.about_btn3 {
	display: block;
	background: url(../img/about_btn_youtube_pc_hv.png) left top no-repeat;
	background-size: 100%;
}
.about_wrap a:hover, .about_wrap a:active {
	opacity: 1;
}
.about_wrap a img:hover {
	opacity: 0;
}

@media screen and (max-width: 960px) {
  .about_wrap {
	  width: 100%;
	  margin: 0;
  }
  div.about_wrap > img {
	  width: 56.6%;
	  margin: 0 auto 1rem;
  }
  .sp_margin {
	  padding-bottom: 2.5rem;
  }
  .about_wrap p {
	  margin: 0 0 0.5rem;
	  height: auto;
  }
  .about_wrap a {
	  width: 100%;
	  margin: 0 0 0.75rem;
  }
  .about_btn1 {
	  background: url(../img/about_btn_web_sp_hv.png) left top no-repeat;
	  background-size: 100%;
  }
  .about_btn2 {
	  background: url(../img/about_btn_twitter_sp_hv.png) left top no-repeat;
	  background-size: 100%;
  }
  .about_btn3 {
	  background: url(../img/about_btn_youtube_sp_hv.png) left top no-repeat;
	  background-size: 100%;
  }
}

@media screen and (max-width: 300px) {
  h3 {
	  font-size: 1.3rem;
  }
}

/** Attention **/
section.attention {
	width: 96%;
	padding: 100px 160px;
	background: rgba(255, 236, 90, 0.92);
	border: 6px dotted #B78788;
	border-radius: 30px;
	font-size: 0;
	color: #652E2F;
	box-shadow: 0px 0px 10px #00000029;
}
section.attention ul {
	width: 100%;
	font-size: 14px;
	margin: 0.8em 0 0;
}
section.attention ul li {
	margin-top: 10px;
	padding-left: 1em;
	text-indent: -1em;	
}
section.attention ul li::before {
    content: "●";
	font-size: 13px;
}
.blank {
    width: 1em;
    height: 1em;
    vertical-align: text-top;
    margin-right: 0.25em;
}
.btn2 {
	width: 44.4%;
	margin: 3em auto 0;
}

@media screen and (max-width: 1079px) {
  section.attention .ttl {
	  width: 43.06%;
  }
}

@media screen and (max-width: 960px) {
  section.attention {
	  width: 92%;
	  padding: 70px 4%;
	  border: 4px dotted #B78788;
  }
  section.attention .ttl {
	  width: 87.6%;
	  margin: 0 auto 56px;
  }
}

/** Share **/
.share {
	text-align: center;
	margin: 0 auto 110px;
}
.share p {
	width: 100%;
	margin: 1.6em auto 0;
}
.ttl2 {
	display: block;
	width: 26.4%;
	margin: 0 auto 20px;
}
.share p a {
	display: inline-block;
	width: 70px;
	margin: 0 5px;
}
.share_btn1 {
	background: url(../img/share_btn_twitter_hv.png) left top no-repeat;
	background-size: 100%;
}
.share_btn2 {
	background: url(../img/share_btn_line_hv.png) left top no-repeat;
	background-size: 100%;
}
.share_btn3 {
	background: url(../img/share_btn_facebook_hv.png) left top no-repeat;
	background-size: 100%;
}
.share p a:hover, .share p a:active {
	opacity: 1;
}
.share p a img:hover {
	opacity: 0;
}

@media screen and (max-width: 960px) {
  .ttl2 {
	  width: 68.8%;
	  margin: 0 auto 10px;
  }
}

/** footer **/
footer {
	position: relative;
	width: 100%;
	background: #4090C0;
	clear: both;
	font-size: 14px;
	color: #fff;
	text-align: center;
	margin: 0 auto;
	padding: 60px 0 30px;
}
.footer_top {
	position: absolute;
    display: block;
    top: -75px;
    left: 0;
    width: 100%;
    height: 75px;
    background: url(../img/footer_deco_repeat.png) center top repeat-x;
    background-size: auto 100%;
}
footer section {
	position: relative;
	display: block;
	width: 100%;
	max-width: 1080px;
	margin: 0 auto;
	font-size: 0;
}
.kunio {
	display: block;
	position: absolute;
	top: -175px;
    right: 90px;
	width: 97px;
	height: 147px;
	z-index: 1;
}
footer section a {
	display: inline-block;
	width: 20%;
	margin: 0 12px 60px;
}
.footer_btn1 {
	background: url(../img/footer_bnr_cover_hv.png) left top no-repeat;
	background-size: 100%;
}
.footer_btn2 {
	background: url(../img/footer_bnr_hololivepro_hv.png) left top no-repeat;
	background-size: 100%;
}
.footer_btn3 {
	background: url(../img/footer_bnr_hololive_hv.png) left top no-repeat;
	background-size: 100%;
}
footer section a:hover, footer section a:active {
	opacity: 1;
}
footer section a img:hover {
	opacity: 0;
}

@media screen and (max-width: 960px) {
  .footer_top {
	  top: -43px;
	  height: 43px;
  }
  footer section {
	  margin: 0 auto 40px;
  }
  .kunio {
	  top: -143px;
	  right: 7px;
	  width: 76px;
	  height: 115px;
  }
  footer section a {
	  width: 71%;
	  margin: 0 0 1.5rem;
  }
}

/** トップにもどる **/
.to-top {
	position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 81px;
    right: 7px;
    bottom: 0px;
    cursor: pointer;
	z-index: 10;
	background: url(../img/fixed_btn_pagetop_hv.png) left 81px no-repeat;
	background-size: auto 100%;
}
.to-top::before {
	content: "";
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 88px;
	height: 81px;
	background: url(../img/fixed_btn_pagetop.png) left top no-repeat;
	background-size: auto 100%;
	opacity: 1;
	z-index: 2;
}
.to-top:hover, .to-top:active {
	background: url(../img/fixed_btn_pagetop_hv.png) left top no-repeat;
	background-size: auto 100%;
	animation: huru 0.1s linear 5;
}
.to-top:hover::before, .to-topr:active::before {
	opacity: 0;
}
@media screen and (max-width: 960px) {
  .to-top {
	  width: 67px;
	  height: 61px;
	  background-size: auto 100%;
  }
  .to-top::before {
	  width: 67px;
	  height: 61px;
	  background-size: auto 100%;
  }
  .to-top:hover, .to-top:active {
	  background-size: auto 100%;
  }
   .to-top:active {
	  animation: none;
  }
}

/** PC／SP表示 **/
.pc {
	display: block;
}
.sp {
	display: none;
}

@media screen and (max-width: 960px) {
  .pc {
	  display: none;
  }
  .sp {
	  display: block;
  }
}
