@charset "UTF-8";
/* ----------------------------------------------------------------------------------------
固定css
-------------------------------------------------------------------------------------------- */
a {
 display: block;
}
a.opacity:hover {
 opacity: .6;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.totop a {
	display: none!important;
}
html {
	scroll-behavior: smooth;
}
/* ----------------------------------------------------------------------------------------
813px以上の固定css(PC)
-------------------------------------------------------------------------------------------- */
@media screen and (min-width: 813px) {
.sp {
  display: none;
 }
 .pc {
  display: block;
 }
.home {
  position: fixed;
  top: 15px;
  left: 20px;
  width: 20%;
  max-width: 120px;
  z-index: 1000;
}
}
/* ----------------------------------------------------------------------------------------
今回追加した813px以上のcss(PC)
-------------------------------------------------------------------------------------------- */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
main {
  position: relative;
  z-index: 0;
  font-size: 16px;
  color: #fff;
	line-height: 1.2;
	background-color: #151515;
}
/*----------------------------------------------------------------
汎用
----------------------------------------------------------------*/
.small {
	font-size: 75%;
}
.big {
	font-size: 150%;
}
.bold {
	font-weight: 700;
}
.tac {
	text-align: center;
}
.ls0 {
	letter-spacing: 0;
}
.p15 {
	padding: 15px 0;
}
.pb10 {
	padding-bottom: 10px;
}
small {
	font-weight: 400;
}
.italic {
	font-style: italic
}
.max_line {
	text-decoration: #cc0033 underline;
	text-decoration-thickness: 8px;
}
.poi_line {
	text-decoration: #bc9500 underline;
	text-decoration-thickness: 8px;
}
.w90 {
	width: 90%;
	margin: auto;
}
.mw1200 {
	max-width: 1200px;
	width: 90%;
	margin: auto;
}
.mt40 {	
	margin-top: 40px;
}
.mt20 {	
	margin-top: 20px;
}
.border0 {
	border: 0px solid #151515!important;
}
.relative {
	position: relative;
}
.blue_tx {
	color: #1161af;
}
.tac {
	text-align: center;
}
.border {
	border: 1px solid #ddd;
}
/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
  transition: 1.0s ease-in-out;
  transform: translateY(20px);
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}
.start {
  display: none;
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
  opacity: 0;
  transform: translateY(50px);
  }
  to {
  opacity: 1;
  transform: translateY(0);
  }
}
/*----------------------------------------------------------------
BTN
----------------------------------------------------------------*/
.btn {
	position: relative;
}
.btn a,.btn button {
  font-weight: 600;
  position: relative;
  display: block;
  padding: 10px 0;
	min-height: 60px;
	align-content: center;
	max-width: 450px;
	margin: auto ;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
	background: linear-gradient(90deg,rgba(255, 187, 43, 1) 0%, rgba(255, 9, 119, 1) 100%);
	border-radius: 100px;
	font-size: 1.1em;
	color: #fff!important;
}
.btn.contents a {
	background: linear-gradient(90deg,rgba(32, 84, 189, 1) 0%, rgba(247, 7, 111, 1) 100%);
	color: #fff!important;
}
.btn a span.arrow {
	background: url("../images/arrow.webp") no-repeat center right / 100%;
	width: 28px;
	height: 28px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 15px;
	transition: all 0.3s;
}
.btn button span.arrow {
	background: url("../images/arrow.webp") no-repeat center right / 100%;
	width: 35px;
	height: 35px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 15px;
	transition: all 0.3s;
}
.btn a:hover span.arrow {
	right: 10px;
}
.btn_flex {
	display: flex;
	justify-content: center;
	max-width: 1000px;
	width: 90%;
	margin: 30px auto;
}
/*----------------------------------------------------------------
TOP
----------------------------------------------------------------*/
.max_line {
	text-decoration-thickness: 5px;
}
.poi_line {
	text-decoration-thickness: 5px;
}

.logo_box {
	position: relative;
	top: 0;
	left: 0;
	margin: 0 auto 40px;
	width: 100%;
	align-content: center;
}
h1 {
	margin: auto;
	width: 30%;
	position: absolute;
	top: 25%;
	left: 50%;
	transform: translate(-50%);
}
.top_lead {
	font-size: clamp(20px, 2.3vw, 36px);
	text-align: center;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 50px;
	position: relative;
	display: inline-block;
}
.top_lead small {
	font-weight: 500;
}
.top_lead span,span.lemino_tx {
	background: linear-gradient(90deg,rgba(255, 190, 40, 1) 0%, rgba(255, 19, 112, 1) 100%); 
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 700;
}
.attention_tx {
	text-align: center;
	font-size: 0.9em;
	font-weight: 300;
	padding-top: 10px;
}
.lead_tx {
	text-align: center;
	font-weight: 400;
	font-size: 1.3em;
	padding: 50px 0;
	line-height: 1.8;
}
span.more {
	display: inline-block;
	background: linear-gradient(90deg,rgba(255, 190, 40, 1) 0%, rgba(255, 19, 112, 1) 100%);
	font-weight: 700;
	color: #fff;
	margin: 15px 0;
	padding: 5px 15px 8px;
	border-radius: 100px;
	text-shadow: 2px 2px 6px rgba(0,0,0,0.3);
}


.attention_list {
	text-align: left;
	font-size:0.85em;
	padding: 10px 0;
}
.attention_list li {
	padding: 2px 0;
}
.pop {	
	max-width: 150px;
	width: 14%;
	position: absolute;
	top: -60%;
	right: 20px;
}
/*----------------------------------------------------------------
SECTION
----------------------------------------------------------------*/
.contents_wrap {
	padding: 80px 0;
	text-align: center;
	border-top: 3px dotted #555;
	width: 100%;
	margin: auto;
}
.bg_white {
	background: url("../images/bg_dot.webp") repeat top left / 10px #fff;
	color: #151515;
	border-top: 0 dotted #555;
	position: relative;
}
.contents_wrap.bg_white::after {
	display: inline-block;
	content: "";
	background: url("../images/bg_round.png") no-repeat top center / 100% auto;
	width: 100%;
	min-height: 60px;
	position: absolute;
	top: 0;
	left: 0;
}
main h2 {
	font-size: 40px;
	font-weight: 700;
	text-align: center;
	padding-bottom: 30px;
	letter-spacing: 3px;
	background: url("../images/h2_bottom.webp") no-repeat bottom center/120px;
	line-height: 1.5;
}
main h2.long_tx {
	letter-spacing: 0;
	font-size: 36px;
}
.contents_box {
	width: 80%;
	margin: 40px auto;
	/*background: linear-gradient(44deg,rgba(254, 8, 115, 0.2) 0%, rgba(255, 184, 44, 0.2) 100%);*/
	background: linear-gradient(135deg,rgba(255, 243, 235, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 240, 246, 1) 100%);
	border-radius: 20px;
	color: #151515;
}
.contents_box h3 {
	font-size: 28px;
	font-weight: 700;
	background: url(../images/bg_title.webp) no-repeat center / 1500px, linear-gradient(to right, #fc8e3d 0%, #ff0576 100%);
	padding: 30px 0;
	border-radius: 20px 20px 0 0;
	color: #fff;
}
.section_lead {
	font-size: 1.3em;
	font-weight: 600;
	padding: 30px 0 0;
	line-height: 1.5;
}
/*-------------------------------------------------------------------
content_inner
-------------------------------------------------------------------*/
.contents_inner {
	padding: 3em;
}
.contents_list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 100%;
}
.contents_list.arrange04 li{
	width: 24%;
}
.contents_list.arrange04 li:nth-of-type(n+5) {
	margin-top: 3%;
}
.contents_list.arrange03 li{
	width: 32%;
}
.contents_list.arrange03 li:nth-of-type(n+4) {
	margin-top: 3%;
}
.contents_flex {
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: center;
}
.contents_flex .left_box {
	width: 45%;
}
.contents_flex .right_box {
	width: 52%;
}
.tag {
	background-color: #275ECD;
	padding: 5px;
	border-radius: 4px;
	font-size: 1.1em;
	letter-spacing: 5px;
	font-weight: 500;
	color: #FFF;
}
.tag.start_date {
	background-color: #fe0972;
}
.contents_img {
	margin: 10px 0;
}
.description {
	margin-bottom: 30px;
	text-align: left;
	line-height: 1.5;
}
/*----------------------------------------------------------------
アコーディオン
----------------------------------------------------------------*/
.js-accordion-all {
  position: relative;
	margin-top: 4%;
	width: 100%;
	padding-bottom: 20px;
}
/* ボタン */
.js-accordion-btn {
  cursor: pointer;
  display: inline-block;
  margin: auto;
  padding: 5px 15px 7px;;
  position: absolute;
	bottom: 10px;
	left: 0;
	right: 0;
  text-align: center;
  transition: all .5s;
  width: fit-content;
	background-color: #fe0972;
	border: 1px solid #fe0972;
	color: #fff;
	font-weight: 600;
	z-index: 9999;
}
/* 続きを読むボタンの表記 */
.js-accordion-btn::after {
  content: "もっと見る";
}
/* ボタンhover時のスタイル */
.js-accordion-btn:hover {
  background-color: #fff;
	color: #fe0972;
  transition: all 0.3s ease-in-out;
}
/* 閉じるボタンの位置 */
.js-accordion-btn.is-show {
  bottom: -20px;
}
/* 閉じるボタンの表記 */
.js-accordion-btn.is-show::after {
  content: "閉じる";
}
.accordion-text {
  overflow: hidden;
  position: relative;
  transition: height 0.5s ease;
}
.accordion-text.is-hide {
}
/* テキストをグラデーションで隠す */
.js-accordion-all .accordion-text::before {
  background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 60%, rgba(255,255,255,1) 100%);
  background:linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 60%, rgba(255,255,255,1) 100%);
  bottom: 0;
  content: "";
  height: 150px; /* グラデーションで隠す高さ */
  position: absolute;
  width: 100%;
	left: 0;
	display: inline-block;
	z-index: 0;
}
/* 続きを見るボタンをクリックしたらテキストを隠しているグラデーションを消す */
.js-accordion-btn.is-show + .accordion-text::before {
  display: none;
}
 .js-accordion-text {
	overflow: hidden;
  transition: height 0.5s ease;
 }
/*-------------------------------------------------------------------
Artist
-------------------------------------------------------------------*/
.artist_list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 5%;
}
.artist_list.mt0 {
	margin-top: 0;
}
.artist_list li {
	width: inherit;
	margin-right: 2%;
}
.artist_list li img {
	box-sizing: border-box;
	height: 12vw;
	width: auto;
}
.artist_list li:last-of-type {
	margin-right: 0;
}
.artist_list li:nth-of-type(n+4) {
	margin-top: 3%;
}
.artist_list.arrange_04 li {
	margin-top: 0;
}
.fv.artist_list li:nth-of-type(n+4) {
	margin-top: 0;
}
.fv.artist_list li img {
	height: 11vw;
}
.artist_img {
	margin-bottom: 5px;
}
.artist_name {
	text-align: left;
}
.artist_copy {
	font-size: 0.7em;
	font-weight: 300;
	text-align: right;
}
.copy {
	margin: auto;
	text-align: center;
	font-size: 12px;
	font-weight: 300;
	padding: 40px 0;
}
.and_more {
	font-size: 5vh;
	font-weight: 600;
	padding-bottom: 20px;
}
/* ------------------------------------
規約
--------------------------------------*/
.tokuten_scroll {
  color: #fff; 
  overflow: hidden;
  max-width: 1000px;
  margin:30px auto 0;
	width: 90%;
  font-size: 12px;
  font-weight: 400;
  padding: 1px;
}
.tokuten_scroll .inn {
  height: 200px;
  overflow-y: scroll;
  text-align: left;
  background-color: rgba(0,12,35,0.5);
  padding: 15px  ;
}
.tokuten_scroll .inn .inn_box {
  margin-bottom: 2em;
}
.tokuten_scroll .inn .inn_box > ul > li {
  text-indent: -1em;
  margin-left: 1em;
  margin-bottom: 0.3em;
}
.tokuten_scroll .inn .inn_box > ul > li a{
  color: #fff;
  display: inline;
  text-decoration: underline;
}
.tokuten_scroll .inn::-webkit-scrollbar {
    width: 12px;
    margin-right: 10px;
 }
.tokuten_scroll .inn::-webkit-scrollbar-thumb {
    background: #fff;
    width: 10px;
    border-radius: 100px;
}
/*----------------------------
追従
----------------------------*/
.lp_cta_fixed.is-fixed {
  padding: .5em;
  text-align: center;
  width: 100%;
  background-color:rgba(21,21,21,0.7);
  position: fixed;
  bottom: 0;
  left: 0;
  font-weight: 700;
	display: block;
	z-index: 78;
  }
.lp_cta_fixed .point_cp {
  text-decoration: underline;
  font-size: 16px;
  padding-bottom: 10px;
}
.btn_wrap {
  display: flex;
  margin: auto;
  justify-content: center;
	width: 80%;
}
.btn.fix::before {
  display: none;
}
.btn.fix {	
	width: 48%;
	margin-right: 2%;
}
.btn.fix:last-of-type {	
	margin-right: 0;
}
.btn.fix a {
	 font-size: 18px;
	 border: 0;
	 letter-spacing: 0;
	 width: 100%;
	 max-width: 1000px;
	 box-shadow: 0 0 0 rgba(0,0,0,0);
	 height: 70px;
	align-items: center;
	padding: 22px 0;
}
.btn.fix.orange a {
	padding: 13px 0;
}
/* ----------------------------------------------------------------------------------------
今回追加した812px以下のcss(SP)
-------------------------------------------------------------------------------------------- */
@media screen and (max-width: 812px) {
/*----------------------------------------------------------------
TOP
----------------------------------------------------------------*/
.mt40 {	
	margin-top: 20px;
}
.logo_box {
	margin: 0 auto 20px;
}
h1 {
	width: 50%;
}
.top_lead {
	font-size: clamp(18px, 2.2vw, 36px);
	margin-bottom: 20px;
}
.attention_tx {
	font-size: 0.9em;
	padding-top: 10px;
}
.lead_tx {
	font-size: clamp(14px, 2.4vw, 20px);
	padding: 20px 0;
}
span.more {
	margin: 5px 0;
	padding: 5px 15px 8px;
}
.pop {	
	width: 20%;
	top: -60%;
	right: 0;
}
/*----------------------------------------------------------------
BTN
----------------------------------------------------------------*/
.btn a,.btn button {
  font-weight: 500;
	min-height: 50px;
	width: 100%;
	font-size: 1em;
}
.btn a span.arrow {
	background: url("../images/arrow.webp") no-repeat center right / 100%;
	width: 24px;
	height: 24px;
}
/*----------------------------------------------------------------
SECTION
----------------------------------------------------------------*/
.contents_wrap {
	padding: 40px 0;
}
.bg_white {
	background: url("../images/bg_dot.webp") repeat top left / 8px #fff;
}
.contents_wrap.bg_white::after {
	min-height: 40px;
}
main h2 {
	font-size: 28px;
	padding-bottom: 20px;
	letter-spacing: 1px;
	background: url("../images/h2_bottom.webp") no-repeat bottom center/80px;
}
main h2.long_tx {
	letter-spacing: 0;
	font-size: 22px;
}
.contents_box {
	width: 90%;
	margin: 30px auto;
}
.contents_box h3 {
	font-size: 17px;
	padding: 20px 10px;
	background: url(../images/bg_title.webp) no-repeat center / 750px, linear-gradient(to right, #fc8e3d 0%, #ff0576 100%);
}
.section_lead {
	font-size: 0.9em;
	padding: 10px 0 0;
}
/*-------------------------------------------------------------------
content_inner
-------------------------------------------------------------------*/
.contents_inner {
	padding: 1em;
}
.contents_list.arrange04 li{
	width: 48%;
}
.contents_list.arrange04.sp4 li {
	width: 30%;
	margin-top: 0!important;
}
.contents_list.arrange04 li:nth-of-type(n+3) {
	margin-top: 3%;
}
.contents_list.arrange03 li{
	width: 48%;
}
.contents_list.arrange03 li:nth-of-type(n+3) {
	margin-top: 3%;
}
.contents_flex {
	flex-direction: column;
}
.contents_flex .left_box {
	width: 100%;
}
.contents_flex .right_box {
	width: 100%;
}
.tag {
	font-size: 0.9em;
	letter-spacing: 2px;
}
.contents_img {
	margin: 5px 0;
}
.description {
	margin: 10px 0;
	font-size: 0.9em;
}
.fv.artist_list li {
	width: inherit;
	margin-right: 2%!important;
	margin-top: 0!important;
}
.fv.artist_list li img {
	height: 11.5vw;
}
/*----------------------------------------------------------------
アコーディオン
----------------------------------------------------------------*/
.accordion {
  position: relative;
	margin-top: 4%;
}
/* 閉じるボタンの位置 */
.accordion-btn.is-show {
  bottom: 0;
}
.accordion-text.is-hide {
  height: 120px; 
}
/* テキストをグラデーションで隠す */
.accordion-text::before {
  height: 100px; /* グラデーションで隠す高さ */
}
/*-------------------------------------------------------------------
Artist
-------------------------------------------------------------------*/
.artist_list {
	margin-top: 5%;
}
.artist_list.mt0 {
	margin-top: 0;
}
.artist_list li {
	width: 48%;
	margin-right: 2%;
}
.artist_list li img {
	box-sizing: border-box;
	width: 100%;
	height: 100%;
}

.artist_list li:last-of-type {
	margin-right: 0;
}
.artist_list li:nth-of-type(2n) {
	margin-right: 0;
}
.artist_list li:nth-of-type(n+3) {
	margin-top: 3%;
}
.artist_list.arrange_04 li {
	margin-top: 3%;
}
/*--------------------------
パーツ
--------------------------*/
.artist_name {
	font-size: 14px;
}
.artist_list.fd_column li .artist_name {
	text-align: center;
}
.copy {
	width: 90%;
	padding: 40px 0 20px;
}
.and_more {
	font-size: 5vh;
}
/* ------------------------------------
規約
--------------------------------------*/
.tokuten_scroll {
  width: 90%;
  font-size: 12px;
}
.tokuten_scroll .inn {
  height: 220px;
  padding: 10px  ;
}
.tokuten_scroll .inn .inn_box {
  margin-bottom: 2em;
}
.tokuten_scroll .inn::-webkit-scrollbar {
    width: 10px;
 }
/*----------------------------------------------------------------
追従
----------------------------------------------------------------*/
.lp_cta_fixed .point_cp {
  font-size: 12px;
  padding-bottom: 5px;
}
.btn_wrap {
  display: flex;
  width: 98%;
  margin: auto;
  justify-content: space-between;
}
.btn.fix {
  width:100%;
}

.btn.fix a {
  margin-top: 0;
  width: 100%;
  margin-bottom: 0;
  font-size: 14px;
  padding: 10px 0;
}
.btn.fix a {
	 height: inherit;
	padding: 6px 0;
}
.btn.fix.orange a {
	padding: 5px 0;
}
/* ----------------------------------------------
ハンバーガーメニュー
------------------------------------------------*/
#nav-drawer {
  position: relative;
	font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}
.nav-unshown {
  display:none;/*チェックボックス等は非表示に*/
}
/*アイコンのスペース*/
#nav-open {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 50px;
  height:50px;
  right: 0;
  top: 0;
  z-index: 99999;
	border-radius: 0 0 0 10px;
	background-color: #2064dc;
}
/*ハンバーガーの形をCSSで表現*/
#nav-open span.nav_line {
	position: absolute;
	left: 15px;
  height: 3px;/*線の太さ*/
  width: 20px;/*長さ*/
  background:  #fff;
  display: block;
  content: '';
  cursor: pointer;
  transition: 0.5s;
  z-index: 9999;
  border-radius: 20px;
}
#nav-open span.nav_line.first {
	top: 12px;
}
#nav-open span.nav_menu {
	position: absolute;
	font-size: 9px;
	bottom: 3px;
}
/* アイコンがクリックされたらMENUを消す */
#nav-input:checked ~ #nav-open span.nav_menu {
  opacity: 0;
}
/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#nav-input:checked ~ #nav-open span.nav_line.first {
  transform: rotate(225deg);
	top: 23px;
}
#nav-input:checked ~ #nav-open span.nav_line.second {
  transform: rotate(-225deg);
}  
/*閉じる用の薄黒箇所*/
#nav-close {
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #000;
  opacity: 0;
  transition: .3s ease-in-out;
}
/*メニューの中身*/
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  width: 90%;
  max-width: 300px;
  height: 100vh;
  background:#000;
  transition: .3s ease-in-out;
  -webkit-transform: translateX(105%);
  transform: translateX(105%);
  color: #fff;
}
.nav_item {
  text-align: center;
  font-size: 20px;
  padding: 100px 20px 0;
  position: relative;
}
.nav_item li{
	border-bottom:1px solid #e54a0a;
	padding-bottom: 15px;
	margin: 0 0 15px;
}
.nav_item li:last-of-type{
	border-bottom:0 dashed #791f97;
}
.nav_item li a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 160%;
}
.nav_item li a span {
  font-family: "gooddog-new", sans-serif,Optima;
	font-weight: 400;
	font-style: normal;
	font-size: 30px;
}
.hum_sns {
	text-align: center;
}
.hum_sns li a {
	max-width: 80px;
	margin: auto;
}
/*チェックがついたら表示させる*/
#nav-input:checked ~ #nav-close {
  opacity: .5;
  display: block;
}
#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
	height: 100vh;
}
.header_menu{
 display: flex;
 display: -moz-flex;
 display: -o-flex;
 display: -webkit-flex;
 display: -ms-flex;
 flex-direction: row;
 -moz-flex-direction: row;
 -o-flex-direction: row;
 -webkit-flex-direction: row;
 -ms-flex-direction: row;
}
}
@media screen and (max-width: 370px) {
	.btn::before {
	display: none;
}
}
/* ----------------------------------------------------------------------------------------
812px以下の固定css(SP)
-------------------------------------------------------------------------------------------- */
@media screen and (max-width: 812px) {
 .common_footer_wrapper .footer_inner {
  width: 93%!important;
 }
 /*ユーザーエージェント出し分け用*/
.iphone .android_show, .iphone .pc_show {display:none;}
.android .iphone_show, .android .pc_show {display:none;}
.pc .iphone_show, .pc .android_show {display:none;}
.pc .visible .iphone_show, .pc .visible .android_show {display:block;}
body {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic", Helvetica, sans-serif;
  }
 .sp {
  display: block;
 }
 .pc {
  display: none;
 }
 .home {
  position: fixed;
  top: 14px;
  left: 10px;
  width: 20%;
  max-width: 130px;
  z-index: 1000;
 }
}
