/*----------スマートフォン主体----------*/

/*----------リセット----------*/
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td {
	margin:0;
	padding:0;
}

iframe {
  vertical-align: bottom;/*下の隙間を消す用*/
}

img {
  vertical-align: bottom;/*下の隙間を消す用*/
}


/*----------共通設定----------*/
html {
font-size:62.5%;/*pxだと10px;*/
}

body {
 	font-family: 'メイリオ','ヒラギノ角ゴ Pro W3','ヒラギノ明朝','Hiragino Kaku Gothic Pro',Meiryo,'ＭＳ Ｐゴシック',sans-serif,serif;
	background: #FFFFFF;
	color: #3F4A4F;
  font-size: 1.4rem;/*14px*/
	overflow-x: hidden;/*横スクロール強制的に消す*/
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1.6rem;/*16px*/
  }
}

main {
  display: block;/*IE用*/
	background: #F8F8F8;
}

/*IE用*/
_:-ms-input-placeholder, :root wbr {
	display: block;
}

/*文字行間*/
p {
	line-height: 1.4em;
}
@media screen and (min-width: 768px) {
  p {
  	line-height: 1.6em;
  }
}

/*テキストリンク用*/
a {
	color: #C80000;
}
a:hover {
	color: #EE0000;
	text-decoration: none;
}

a:active {
  position: relative;
  top: 2px;
}


/*----------レイアウト関連----------*/
/*白背景 下に隙間*/
.section {
  width: 100%;
	height: 100%;
	padding: 0;
  margin: 0 0 4px 0;
  background: #FFFFFF;
	box-shadow: 0px 1px 12px rgba(200, 200, 200, 0.1);
}
/*-----アプリ一覧・アプリ詳細ページ共通 アイコン設定 タブレットパソコン-----*/
@media screen and (min-width: 568px) {
  /*白背景 下に隙間*/
  .section {
    margin: 0 0 8px 0;
  }
}

.container {
  width: auto;
  padding: 0;
  margin: auto;
}
/*パソコン*/
@media screen and (min-width: 960px) {
  .container {
    width: 896px;
    margin: auto;
  }
}

/*----------見出し関連----------*/
/*各見出し*/
h2.headline_title {
	color: #FFFFFF;
	line-height: 1.2;
	padding: 16px 0;
	margin: 0 auto 4px;
	font-size: 2rem;/*20px*/
  text-align: center;
	word-break: keep-all;
	box-shadow: 0px 1px 12px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  h2.headline_title {
		font-size: 2.6rem;/*26px*/
		padding: 32px 0;
		margin: 0 auto 8px;
  }
}

/*改行用*/
h2.headline_title br {
	display: inline;
}
@media screen and (min-width: 768px) {
	h2.headline_title br {
		display: none;
	}
}

/*----------リスト関連----------*/
ul li {
  list-style: none;
}


/*----------文字色関連----------*/
/*白文字*/
.text_white {
  color: #FFFFFF;
}

/*黒文字*/
.text_black {
  color: #3F4A4F;
}


/*-----アプリ一覧・アプリ詳細ページ共通 アイコン設定-----*/
/*アプリアイコン*/
 .appli_icon {
	margin: 0 16px 0 0;
 	display: flex;
	align-items: center;
}
/*IE用*/
_:-ms-input-placeholder, :root .appli_icon {
	display: table;
}

/*アプリアイコンサイズ*/
 .appli_icon img {
   width: 60px;
   height: 60px;
   border-radius: 14px;
   border: 1px solid #eaeaea;
	 background: #FFFFFF;
	 box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2);
 }
 @media screen and (min-width: 568px) {
  .appli_icon img {
    width: 104px;
    height: 104px;
    border-radius: 20px;
  }
}

/*----------行間関連----------*/
/*「メンバー」・「リンク」 コンテンツ終わりがテキストセンターの場合*/
p.text_center_last {
	clear: both;/*IE用*/
  text-align: center;
	word-break: keep-all;
  margin: 32px auto;
}
/*改行用*/
p.text_center_last br {
  display: inline;
}
@media screen and (min-width: 768px) {
	p.text_center_last br {
    display: none;
  }
}


/*「アプリ詳細」文字 スペース用 */
p.text_space {
  margin: 16px 0 0;
}

/*※部分*/
p.info {
	font-size: 1.2rem;/*12px*/
	line-height: 1.5;
}


/*----------ボタン関連----------*/
/*大きいボタン*/
.botton_big {
  width: 200px;
	padding: 8px 0;
	margin: 16px auto 0;
}
@media screen and (min-width: 960px) {
  .botton_big {
  	width: 50%;
		padding: 16px 0;
		font-size: 1.8rem;/*18px*/
  }
}

/*小さいボタン*/
.botton_small {
  width: 200px;
	padding: 8px 0;
	margin: 16px auto 0;
}

/*ボタン アニメーション設定*/
.botton_anime {
	display: block;
	color: #3F4A4F;
  border-radius: 64px;
  cursor: pointer;
  text-align: center;
	text-decoration: none;
	background: #FFFFFF;
	border: 4px solid #F8F8F8;
  z-index: 0;
  position: absolute;
	top: 0;
  left: 0;
  box-shadow: 0px 0px 2px #AAAAAA, 0px 0px 2px #AAAAAA;
  transition-duration: 0.2s;
	box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}

.botton_anime_hover {
  overflow: hidden;
  position: relative;
}

.botton_anime_hover:hover {
  color: #FFFFFF;
  border: 4px solid #F8F8F8;
  box-shadow: 0px 0px 2px #DDDDDD, 0px 0px 2px #DDDDDD;
}

/*背景アニメーション*/
.botton_anime_hover:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	z-index: -1;
	transition: all 0.4s;
  transform-origin: left top;
  transform: skewX(-45deg) scale(1.2, 1);
  background: #374142;/*ボタン背景*/
}

.botton_anime_hover:hover:after,
.botton_anime_hover:active:after {
	width: 100%;
}

.botton_anime_hover:active {
  position: relative;
  top: 4px;
}

/*右矢印*/
.botton_anime_hover:before {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: 2px solid #FFFFFF;
  border-right: 2px solid #FFFFFF;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 8%;
  margin-top: -5px;
}

/*----------色設定----------*/

/*アプリ一覧 カテゴリ各背景色 サブカテゴリ文字色設定*/
/*新作*/
.color_new {
  background:linear-gradient(135deg, #fedf00 0%, #ff9500 100%);
}
.text_color_new {
  color: #ffa900;
}

/*あそんでまなべるシリーズ*/
.color_learn {
  background:linear-gradient(135deg, #b1ea4d 0%, #3da60b 100%);
}
.text_color_learn {
  color: #3da60b;
}

/*学習補助ツール*/
.color_assist {
  background:linear-gradient(135deg, #FFFFC7 0%, #00B7FF 50%, #5578ea 100%);
}
.text_color_assist {
  color: #6078ea;
}

/*ゲーム*/
.color_game {
  background:linear-gradient(135deg, #ff1800 0%, #a90011 100%);
}
.text_color_game {
  color: #DF0012;
}

/*子供向け*/
.color_kids {
  background:linear-gradient(135deg, #fecf00 0%, #FF4F13 100%);
}
.text_color_kids {
  color: #ff9500;
}

/*にがおえやさん*/
.color_portrait {
  background:linear-gradient(135deg, #fdfd04 0%, #ff1ec9 100%);
}
.text_color_portrait {
  color: #fe856d;
}

/*ツール*/
.color_tool {
  background:linear-gradient(135deg, #0feeb4 0%, #0372d8 100%);
}
.text_color_tool {
  color: #09b2c6;
}

/*インタラクティブ*/
.color_interactive {
  background:linear-gradient(135deg, #f02fc2 0%, #6094ea 100%);
}
.text_color_interactive {
  color: #a365d7;
}


/*--------アプリ詳細カラー--------*/

/*----無彩色系----*/
/*国旗クイズ*/
/*たし算パズル */
/*たのしいおつかい*/
/*ぼくのえほん*/
.color_white {
  background:linear-gradient(135deg, #EEEEEE 0%, #F4F4F4 100%);
}

/*日本の地理*/
.color_dark_gray {
  background:linear-gradient(135deg, #505050 0%, #323232 100%);
}

/*ギャラクシーペイント*/
/*カイトウキューブ*/
/*Magical Rays*/
/*マジカルショット*/
/*月の満ち欠けアシスト*/
.color_black {
  background:linear-gradient(135deg, #2C313A 0%, #0E131C 100%);
}


/*----黄茶色系----*/
/*人体模型パズル*/
.color_yellow {
  background:linear-gradient(135deg, #FFED1E 0%, #FECF00 100%);
}

/*なぞってご祝儀*/
.color_light_beige {
  background:linear-gradient(135deg, #EAD1B0 0%, #C9BA8B 100%);
}

/*アイテムショップ グレー*/
.color_gray_beige {
  background:linear-gradient(135deg, #BFB9AC 0%, #A19B8E 100%);
}
/*アイテムショップ 赤系*/
.color_dark_red {
  background:linear-gradient(135deg, #B04957 0%, #922B39 100%);
}

/*旧国名パズル*/
.color_dark_beige {
  background:linear-gradient(135deg, #94856A 0%, #76674C 100%);
}

/*京都府地図パズル*/
.color_dark_brown {
  background:linear-gradient(135deg, #462D24 0%, #280F06 100%);
}


/*----オレンジ色系----*/
/*すいすい家系図*/
/*エレベーター*/
/*ポイポイショッピング*/
.color_yellow_orange {
  background:linear-gradient(135deg, #fecf00 0%, #ff9500 100%);
}

/*日本地図クイズ*/
.color_orange {
  background:linear-gradient(135deg, #FF901E 0%, #FF7200 100%);
}


/*----ピンク色系----*/
/*にがおえやさん - キュート*/
.color_pastel_pink {
  background:linear-gradient(135deg, #FFF4FF 0%, #FFD6F2 100%);
}

/*ポイポイショッピング　薄い黄色ピンク*/
.color_yellow_pink {
  background:linear-gradient(135deg, #FFFAF6 0%, #F9DFD8 100%);
}


/*----ピンク紫----*/
/*スートパズル*/
.color_pink_purple {
  background:linear-gradient(135deg, #F36265 0%, #961276 100%);
}


/*----緑色系----*/
/*日本地図パズル*/
.color_green {
  /*background:linear-gradient(135deg, #70FF39 0%, #52E61B 100%);*/
  background:linear-gradient(135deg, #70FF39 0%, #4cac00 100%);
}

/*インドネシア・ドイツ*/
.color_tokiwa_green {
  background:linear-gradient(135deg, #48ab28 0%, #3a8920 100%);
}


/*世界地図パズル*/
.color_matcha {
  background:linear-gradient(135deg, #BAE533 0%, #9CC715 100%);
}

/*ありえんエスケープ : ラン＆ジャンプ*/
.color_mint_green {
  background:linear-gradient(135deg, #2FD598 0%, #11B77A 100%);
}

/*にがおえやさん - アニマル*/
.color_pastel_green {
  background:linear-gradient(135deg, #BFFFC6 0%, #A1F5A8 100%);
}

/*ぼくもできる どうぶつでんわ*/
.color_yellow_green {
  background:linear-gradient(135deg, #58F88B 0%, #3ADA6D 100%);
}

/*mew mew Train*/
.color_dark_matcha {
  background:linear-gradient(135deg, #9EAA4D 0%, #808C2F 100%);
}


/*----緑青色系----*/
/*Hello! Baby*/
.color_pastel_blue_green {
  background:linear-gradient(135deg, #C9FDE8 0%, #ABDFCA 100%);
}

/*日本の国立公園 ありえん蚊プチャー*/
.color_dark_blue_green {
  background:linear-gradient(135deg, #4E7B80 0%, #305D62 100%);
}

/*イタリア フランス*/
.color_emerald_green {
  background:linear-gradient(135deg, #45CBAE 0%, #27AD90 100%);
}

/*おじぎ帳 アイコン背景*/
.color_blue_green {
  background:linear-gradient(135deg, #44D516 0%, #1BA9ED 100%);
}
/*おじぎ帳 赤系背景*/
.color_reddish {
  background:linear-gradient(135deg, #840E0B 0%, #660000 100%);
}

/*展開図アシスト アイコン色*/
.color_mint_blue {
  background:linear-gradient(135deg, #44C3B7 0%, #26A599 100%);
}
.color_beige {
  background:linear-gradient(135deg, #F2E8D5 0%, #D4CAB7 100%);
}


/*----青色系----*/
/*スノープラネット 薄め*/
.color_snow_ice {
  background:linear-gradient(135deg, #F0FFFF 0%, #E6F5F5 100%);
}

/*スノープラネット2 濃いめ*/
.color_snow {
  background:linear-gradient(135deg, #B3FDFF 0%, #09B1DD 100%);
}

/*あそんでまなべる 九九*/
.color_light_blue {
  background:linear-gradient(135deg, #1EEAFF 0%, #00CCFF 100%);
}

/*星座パズル*/
.color_dark_blue {
  background:linear-gradient(135deg, #2A3A72 0%, #000036 100%);
}
/*----------色設定ここまで----------*/


/*----------ヘッダー----------*/
header {
	background: #374142;
}

/*横幅レイアウト*/
.header_area {
  width: 100%;
  height: 48px;
	padding: 0;
	margin: 0 auto;
	display: flex;
	align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 960px) {
  /*横幅レイアウト*/
  .header_area {
  	width: 896px;
  }
}


/*ロゴ*/
h1.logo a {
	display: block;
  width: 130px;
  margin: 0 0 0 16px;
  background-size: 120px;
	background-image: url(../image/logo.svg);
	background-repeat: no-repeat;
	background-position: center;
	text-indent:100%;
	white-space: nowrap;
	overflow: hidden;
}
/* スマートフォン（幅375px以下のデバイスに適用）*/
@media screen and (max-width:374px) {
  h1.logo a {
    width: 80px;
    background-size: 80px;
    background-image: url(../image/logo.svg);
    background-repeat: no-repeat;
    background-position: center;
  }
}
@media screen and (min-width: 568px) {
  h1.logo a {
    width: 160px;
    background-size: 160px;
  }
}


/*言語ボタン設定*/
ul.language {
	display: flex
}

ul.language li {
  /*均等に隙間を埋める*/
  flex-grow: 1;
}

/*ボタン設定*/
ul.language li a {
	position: relative;
	width: 36px;
	height: 48px;
  padding: 0 4px;
	font-size: 0.9rem;/*9px*/
  line-height: 1;
	color: #FFFFFF;
	background: #3F4A4F;
  text-align: center;
	text-decoration: none;
	word-break: keep-all;

	display: flex;
	align-items: center;
	justify-content: center;

	/*ホバーアニメーション設定*/
	transition: all 0.4s;
	z-index: 0;
}
@media screen and (min-width: 568px) {
	ul.language li a {
  	height: 48px;
  	width: 80px;
  	font-size: 1.2rem;/*12px*/
  }
}
/*改行用*/
ul.language li br {
  display: inline;
}
@media screen and (min-width: 320px) {
  /*改行用*/
  ul.language li br {
    display: none;
  }
}


/*ホバーアニメーション 背景*/
ul.language li a:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background:linear-gradient(0deg, #DD0000 0%, #C80000 100%);
  z-index: -1;
	transition: all 0.2s;
}

ul.language li a:hover:after,
ul.language li a:active:after {
	height: 100%;
}

ul.language li a:hover{
	color: #FFFFFF;
}

/*アクティブ*/
ul.language li.active a,
ul.language li.active a:active {
	color: #3F4A4F;
	font-weight: bold;
	background: #FFFFFF;
}
ul.language li.active a::after {
	background: #FFFFFF;
}




/*ヘッダーメニュー*/
ul.menu {
	background: #F8F8F8;
	border-bottom: 1px solid #FFFFFF;
	display: flex;
	justify-content: flex-start;
}

ul.menu li {
  /*均等に隙間を埋める*/
  flex-grow: 1;
}

/*ボタン設定*/
ul.menu li a {
  position: relative;
	height: 58px;/*border分足すと64px*/
  text-decoration: none;
	color: #3F4A4F;
	font-size: 1.4rem;/*14px*/

	display: flex;
	align-items: center;
	justify-content: center;

	/*ホバーアニメーション設定*/
	transition: all 0.2s;
	z-index: 0;
}

/*ホバーアニメーション ボトムライン*/
ul.menu li a:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background:linear-gradient(0deg, #EE0000 0%, #C80000 100%);
  z-index: -1;
	transition: all 0.2s;
}

ul.menu li a:hover:after,
ul.menu li a:active:after {
	height: 6px;
}

ul.menu li a:hover {
	color: #C80000;
}

/*アクティブ*/
ul.menu li.active a,
ul.menu li.active a:active {
	color: #3F4A4F;
	font-weight: bold;
	background: #F8F8F8;
}
ul.menu li.active a::after {
	background: #3F4A4F;
  height: 6px;/*border分*/
}

/* スマートフォン横・タブレット・パソコン（幅568pxから1920pxまでのデバイスに適用）*/
/*メニュー*/
@media screen and (min-width: 960px) {
  ul.menu {
  	display: flex;
  	justify-content: center;
  }
  ul.menu li {
    /*均等に隙間を埋める 解除*/
    flex-grow: 0;
  }

  /*ボタン設定*/
  ul.menu li a {
  	width: 224px;
  }
}
/*----------ヘッダーここまで----------*/


/*----------トップページ設定----------*/


/*----トップページメインイメージ----*/
/*基準*/
.color_top_image {
  width: 100vw;
  height: 100%;
  background:radial-gradient(circle at 0 0, #2BD2EB 20%,#09B0E6 50%, #09B0E6 100%);
  overflow: hidden;
}

.top_image_container {
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.top_image {
  width: 70vw;
  padding-top: 43%;/*画像レスポンシブ用*/
  color: #FFFFFF;
  background-image:url(../image/top_image.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  text-indent:100%;
  white-space: nowrap;
  overflow: hidden;
}
/*日本語の場合*/
h2.jp {
  width: auto;
	color: #FFFFFF;
  text-align: left;
  font-size: 3.4vw;
  margin: 0 0 0 8%;
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
  filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.3) );
	white-space: nowrap;
}
/*英語の場合*/
h2.eng {
  width: auto;
  color: #FFFFFF;
  text-align: left;
  font-size: 3vw;
  margin: 0 0 0 8%;
  padding: 0;
	line-height: 1.1;
  letter-spacing: 1px;
  filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.3) );
  white-space: nowrap;
}

/*サイト名*/
h2.jp span.company_name {
  font-size: 1.26em;
  letter-spacing: 0.8px;
}

h2.eng span.company_name {
	font-size: 1.22em;
  letter-spacing: 0.8px;
}

/*サイト名 ルビ*/
h2.jp rt,
h2.eng rt {
	font-size: 0.3em;
}

h2.jp span.text_normal,
h2.eng span.text_normal {
	font-size: 0.9em;
}

h2.jp span.text_small,
h2.eng span.text_small {
	font-size: 0.6em;
  font-weight: normal;
}

/*スマートフォン 縦向きの設定*/
@media only screen and (max-device-width: 767px) and (orientation: portrait) {
  .color_top_image {
    width: 100vw;
    height: 100%;
    background:radial-gradient(circle at center 0%, #2BD2EB 10%,#09B0E6 50%, #09B0E6 100%);
    overflow: hidden;
  }

  .top_image_container {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .top_image {
    width: 100vw;
    padding-top: 64%;/*画像レスポンシブ用*/
    margin: 7vh 0 9vh;
  }

  /*日本語の場合*/
  h2.jp {
    font-size: 9vw;
    margin: 12vh auto 0;
  }

  /*英語の場合*/
  h2.eng {
    font-size: 7.8vw;
    margin: 12vh auto 0;
  }
}

/*スマートフォン 横向きの設定*/
@media only screen and (min-device-width: 568px) and (orientation: landscape) {
  .color_top_image {
    width: 100vw;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background:radial-gradient(circle at 0 0, #2BD2EB 20%,#09B0E6 50%, #09B0E6 100%);
  }
  .top_image {
    padding-top: 43%;/*画像レスポンシブ用*/
    background-size: contain;
  }

  /*日本語の場合*/
  h2.jp {
    font-size: 3.4vw;
		margin: 0 0 0 8%;
  }

  /*英語の場合*/
  h2.eng {
    font-size: 3vw;
		margin: 0 0 0 8%;
  }
}

/*タブレット パソコン 幅1920px以上 横向きの設定*/
@media screen and (min-width: 1920px) {
  .color_top_image {
    width: 100%;
    height: 860px;
    background:radial-gradient(circle at 0 0, #2BD2EB 20%,#09B0E6 50%, #09B0E6 100%);
    overflow: hidden;
  }
  
  .top_image_container {
    width: 1920px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .top_image {
    width: 60%;
    height: 860px;
    padding-top: 0;/*画像レスポンシブ用*/
    color: #FFFFFF;
    background-image:url(../image/top_image.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    text-indent:100%;
    white-space: nowrap;
    overflow: hidden;
    }

  /*日本語の場合*/
  h2.jp {
    font-size: 64px;
    margin: 0 0 0 8%;
  }

  /*英語の場合*/
  h2.eng {
    font-size: 64px;
    margin: 0 0 0 8%;
  }
}
/*----トップページメインイメージここまで----*/


/*トップページ用タイトル共通*/
h2.top_title {
  line-height: 1.2;
  padding: 16px 0;
  margin: 0 auto;
  font-size: 2.8rem;/*28px*/
  text-align: center;
  white-space: nowrap;
  filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.2) );
}
@media screen and (min-width: 568px) {
  h2.top_title {
    padding: 32px 0;
    font-size: 3.2rem;/*32px*/
  }
}


/*----公式SNS----*/
/*背景色*/
.color_top_sns {
  background:radial-gradient(circle, #F4F4F4 0%, #FFFFFF 100%);
}

/*ライン*/
h2.sns {
  width: 90%;
  border-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(40, 40, 40, 0.3), rgba(0, 0, 0, 0)) 1/0 0 1px;
  border-style: solid;
}


/*snsシェアボタン*/
ul.sns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 16px 0 0;
  margin: 0 auto;
}

ul.sns li {
  display: flex;
  justify-content: center;
  width: 20%;
}

ul.sns li a {
  display: block;
  width: 80px;
  height: 80px;
  font-size: 1rem;/*10px*/
  text-decoration: none;
  color: #3F4A4F;
  margin: 0 8px 16px;
  border: none;
  background: none;
  text-align: center;
}
@media screen and (min-width: 768px) {
  ul.sns li a {
    font-size: 1.4rem;/*14px*/
  }
}

.sns_name {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.sns_logo {
  width: 48px;
  height: 48px;
}

.sns_logo img {
  width: 48px;
}

/*ホバー時*/
ul.sns li a:hover {
  width: 80px;
  height: 80px;
  background: none;
  color: #888888;
}

ul.sns li a:hover .sns_logo img {
  border-radius: 50%;
  background: #FFFFFF;
}


/*----スマートフォン アプリ----*/
.top_smartphone {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background-size:52%,52%,cover;
  background-image: url(../image/smartphone_bg_left.png),url(../image/smartphone_bg_right.png),radial-gradient(circle, #ffd100 0%, #ffa900 100%);
  background-repeat: no-repeat,no-repeat,no-repeat;
  background-position:left -85px top -87px,right -85px bottom -90px,0;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 374px) {
  .top_smartphone {
    height: 240px;
    background-size:40%,35%,cover;
    background-position:left -25% top -60px,right -20% bottom -45px,0;
  }
}
@media screen and (min-width: 460px) {
  .top_smartphone {
    height: 300px;
    background-size:40%,35%,cover;
    background-position:left -15% top -80px,right -15% bottom -80px,0;
  }
}
@media screen and (min-width: 960px) {
  .top_smartphone {
    padding: 0;
    background-size:40%,35%,cover;
    background-position:left -15% top 70%,right -15% bottom 70%,0;
  }
}
@media screen and (min-width: 1920px) {
  .top_smartphone {
    background-size:760px,690px,cover;
    background-position:left -170px top 70%,right -200px bottom 70%,0;
  }
}


/*ボタンカラーホバー設定*/
.top_smartphone .botton_anime_hover::after {
  background:linear-gradient(135deg, #ffd100 0%, #ffa900 100%);
}


/*----トップページラボ----*/
.top_lab {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background-size:15%,15%,cover;
  background-image: url(../image/bg_lab_left.png),url(../image/bg_lab_right.png),linear-gradient(135deg, #45FFE8 0%, #6F62EC 50%, #F438A0 100%);
  background-repeat: no-repeat,no-repeat,no-repeat;
  background-position:left 7% top 75%,left 93% top 75%,0;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 374px) {
  .top_lab {
    height: 240px;
    background-size:15%,15%,cover;
    background-position:left 3% top 74%,left 97% top 74%;
  }
}
@media screen and (min-width: 568px) {
  .top_lab {
    height: 300px;
    background-size:15%,15%,cover;
    background-position:left 15% top 50%,left 85% top 50%;
  }
}
@media screen and (min-width: 1920px) {
  .top_lab {
    height: 300px;
    background-size:300px,300px,cover;
    background-position:left 15% top 50%,left 85% top 50%;
  }
}


/*ボタンカラーホバー設定*/
.top_lab .botton_anime_hover::after {
  background:linear-gradient(135deg, #FCEFEC 0%, #FDCFCC 25%, #D89BC4 50%, #AAE1F9 75%, #E4F5FE 100%);
}



/*トップページ　ブラウザ版*/
.top_wgl {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background-size:100%,100%,cover;
  background:linear-gradient(135deg, #0feeb4 0%, #0372d8 100%);
  background-repeat: no-repeat,no-repeat,no-repeat;
  background-position:left 7% top 75%,left 93% top 75%,0;
  display: flex;
  align-items: center;
}


/*----スマートフォンアプリ トップページラボ共通----*/
/*タイトル*/
.top_smartphone h2.top_title,
.top_lab h2.top_title,
.top_wgl h2.top_title {
  padding: 0;
}

/*説明文*/
.top_smartphone p.text_center,
.top_lab p.text_center,
.top_wgl p.text_center {
  text-align: center;
  white-space: nowrap;
  margin: 16px auto;
  padding: 0;
  filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.2) );
}

/*改行用*/
.top_smartphone br,
.top_lab br {
  display: inline;
}
@media screen and (min-width: 1200px) {
  .top_smartphone br,
  .top_lab br {
    display: none;
  }
}




/*----ツィート----*/
/*背景色*/
.color_twitter {
  background:linear-gradient(#1EA0F2 0%, #506BEF 100%);
}

.top_twitter {
  padding: 0 0 32px;
  border-radius: 8px;
  width: 90%;
  /*height: 90vh;*/
  /*height: 50vh;*/
  height: 480px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

@media screen and (min-width: 960px) {
  .top_twitter {
    width: 896px;
    /*height: 92vh;*/
    height: 480px;
  }
  
}

/*----------トップページここまで----------*/

/*----------アプリ一覧・リンク一覧ページ共通----------*/
.list {
  width: auto;
  padding: 16px 16px;
  background-image:url(../image/list_arrow.svg);
  background-repeat: no-repeat;
  background-position: left 94% center;
  background-size: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (min-width: 568px) {
  .list {
    padding: 16px 44px;
    background-position: left 94% center;
  }
}
@media screen and (min-width: 960px) {
  .list {
		width: 720px;
    padding: 16px 0;
		margin: auto;
  }
}

/*アプリ一覧内の広告用*/
.list_ad {
  width: auto;
  padding: 16px 16px;
  background-repeat: no-repeat;
  background-position: left 94% center;
  background-size: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (min-width: 568px) {
  .list_ad {
    padding: 16px 44px;
    background-position: left 94% center;
  }
}
@media screen and (min-width: 960px) {
  .list_ad {
		width: 720px;
    padding: 16px 0;
		margin: auto;
  }
}

/*説明文*/
.list_read {
	width: 100%;
  margin: 0 32px 0 0;
}
@media screen and (min-width: 568px) {
  .list_read {
    margin: 0 4% 0 0;
  }
}
@media screen and (min-width: 960px) {
	.list_read {
    margin: 0 72px 0 0;
  }
}

.list_read p {
  font-size: 1.2rem;/*12px*/
  margin: 4px 0 0 ;
  line-height: 1.2;
}
@media screen and (min-width: 568px) {
.list_read p{
  font-size: 1.6rem;/*16px*/
  }
}


/*タイトル*/
.list_read h3.list_title {
  font-size: 1.6rem;/*16px*/
  line-height: 1.2;
  margin: 0 auto;
}
@media screen and (min-width: 568px) {
.list_read h3.list_title {
  font-size: 2.4rem;/*24px*/
  }
}


/*タイトル小さめ*/
.list_read h3.list_title span {
  font-size: 1.4rem;/*14px*/
  margin: 0 4px 0 0;
}
@media screen and (min-width: 568px) {
.list_read h3.list_title span {
    font-size: 2.4rem;/*24px*/
  }
}


/*タイトル改行用*/
.list_read br {
  display: inline;
}
@media screen and (min-width: 568px) {
  /*タイトル改行用*/
  .list_read br {
    display: none;
  }
}


/*サブカテゴリ*/
h4.sub_category {
  font-size: 1.6rem;/*16px*/
  padding: 8px 0 8px;
  margin: 0 auto 4px;
  text-align: center;
  color: #FFF;
}
@media screen and (min-width: 568px) {
  h4.sub_category {
    margin: 0 auto 8px;
    font-size: 2.2rem;/*22px*/
  }
}


/*文字色設定*/
.list_link a {
  color: #3F4A4F;
  text-decoration: none;
}


/*リンク ホバー設定*/
.list_link a:hover .section {
	background:linear-gradient(0deg, #FFFFFF 0%,#FFFF00 50%, #FFFFFF 100%);
}


/*新作・人気設定*/
p.new {
  width: 32px;
  height: auto;
  font-size: 1rem;/*10px*/
  padding: 2px 0 0;
  margin: 0 0 -16px;
  background:linear-gradient(135deg, #fedf00 0%, #ff9500 100%);
  color: #FFFFFF;
  text-align: center;
  border-radius: 2px;
  position: relative;
  top: 8px;
  left: 8px;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 568px) {
  p.new {
    width: 48px;
    font-size: 1.4rem;/*14px*/
    margin: 0 0 -24px;
    border-radius: 4px;
    position: relative;
    top: 4px;
    left: 32px;
  }
}
@media screen and (min-width: 960px) {
  p.new {
    position: relative;
    top: 4px;
    left: 76px;
  }
}

p.new span {
  filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.1) );
}
/*----------アプリ一覧・リンク一覧ページ共通ここまで----------*/

/*----------アプリ詳細ページ----------*/

/*----背景----*/
.appli_detail {
	width: 100%;
	height: 100%;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
/*タブレット*/
@media screen and (min-width: 768px) {
  .appli_detail {
  	width: 100%;
  	height: 460px;
  	background-image: url("../image/bg_tab.png");
  	background-position: center;
  	background-repeat: no-repeat;
  	background-size: 768px;
  }
}
/*タブレット*/
@media screen and (min-width: 1024px) {
  .appli_detail {
  	width: 100%;
  	height: 600px;
  	background-image: url("../image/bg_tab.png");
  	background-position: center;
  	background-repeat: no-repeat;
  	background-size: 1024px;
  }
}
/*パソコン*/
@media screen and (min-width: 1369px) {
  .appli_detail {
  	width: 100%;
  	height: 860px;
  	background-image: url("../image/bg_pc.png");
  	background-position:center;
  	background-repeat: no-repeat;
  	background-size: 1800px;
  }
}

/*※ここから追加*/
/*----背景 横向き----*/
.appli_detail_beside {
	width: 100%;
	height: 100%;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
/*タブレット*/
@media screen and (min-width: 768px) {
  .appli_detail_beside {
  	width: 100%;
  	height: 460px;
  	background-image: url("../image/bg_tab_beside.png");
  	background-position: center;
  	background-repeat: no-repeat;
  	background-size: 768px;
  }
}
/*タブレット*/
@media screen and (min-width: 1024px) {
  .appli_detail_beside {
  	width: 100%;
  	height: 600px;
  	background-image: url("../image/bg_tab_beside.png");
  	background-position: center;
  	background-repeat: no-repeat;
  	background-size: 1024px;
  }
}
/*パソコン*/
@media screen and (min-width: 1369px) {
  .appli_detail_beside {
  	width: 100%;
  	height: 860px;
  	background-image: url("../image/bg_pc_beside.png");
  	background-position:center;
  	background-repeat: no-repeat;
  	background-size: 1800px;
  }
}
/*※ここまで追加*/

/*----アプリの全体レイアウト----*/
.appli_detail_container {
	width: 100%;
	display: flex;
	align-items: center;
	flex-direction: column;
}
/*タブレット*/
@media screen and (min-width: 768px) {
  .appli_detail_container {
  	width: auto;
    margin: 32px auto;
    display: flex;
    align-items: center;
    flex-direction: row;
  }
}
/*パソコン*/
@media screen and (min-width: 1369px) {
  .appli_detail_container {
  	width: 896px;
    display: flex;
    align-items: center;
    flex-direction: row;
  }
}

/*※ここから追加*/
/*----一番上のスマートフォン設定 横向き----*/
.appli_detail_sp_beside {
  width: 100%;
  height: 160px;
  margin: 0 auto;
  position: relative;
  top: 32px;
  left: 0px;
  background-image: url("../image/sp_beside.png"),
  url("../image/bg_sp_beside.png");
  background-size: 280px, 400px;
  background-repeat: no-repeat,no-repeat;
  background-position: center,center;
  text-align: center;
  filter: drop-shadow(0px 5px 10px rgba(255, 255, 255, 0.5) );
}
/*320px以下の場合 背景装飾を消す*/
@media screen and (max-width: 320px) {
  .appli_detail_sp_beside {
    background-image: url("../image/sp_beside.png");
    background-size: 280px;
    background-repeat: no-repeat;
    background-position: center;
  }
}
@media screen and (max-width: 319px) {
  .appli_detail_sp_beside {
    width: 100%;
    height: 120px;
    margin: 0 auto;
    position: relative;
    top: 32px;
    left: 0px;
    background-image: url("../image/sp_beside.png");
    background-size: 220px;
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
    filter: drop-shadow(0px 5px 10px rgba(255, 255, 255, 0.5) );
  }
}

@media screen and (min-width: 568px) {
  .appli_detail_sp_beside {
    width: 100%;
    height: 288px;
    margin: 0 auto;
    position: relative;
    top: 59px;
    left: 0px;
    background-image: url("../image/sp_beside.png"),
    url("../image/bg_sp_beside.png");
    background-size: 520px, 720px;
    background-repeat: no-repeat,no-repeat;
    background-position: center,center;
    text-align: center;
  }
}
/*タブレット*/
@media screen and (min-width: 768px) {
  .appli_detail_sp_beside {
    width: 296px;
    height: 145px;
    margin: 0 -12px 0 -72px;
    position: relative;
    top: 0px;
    left: 0px;
    background-image: url("../image/sp_beside.png");
    background-size: 296px;
    background-repeat: no-repeat;
    background-position: center;
    text-align: justify;
  }
}
/*タブレット*/
@media screen and (min-width: 1024px) {
  .appli_detail_sp_beside {
    width: 344px;
    height: 169px;
    margin: 0 -12px 0 -96px;
    position: relative;
    top: 0px;
    left: 0px;
    background-image: url("../image/sp_beside.png");
    background-size: 344px;
    background-repeat: no-repeat;
    background-position: center;
    text-align: justify;
  }
}
/*パソコン*/
@media screen and (min-width: 1369px) {
  .appli_detail_sp_beside {
    width: 464px;
    height: 227px;
    margin: 0 -12px 0 -112px;
    position: relative;
    top: 0px;
    left: 0px;
    background-image: url("../image/sp_beside.png");
    background-size: 464px;
    background-repeat: no-repeat;
    background-position: center;
    text-align: justify;
  }
}

/*----スクリーンショット画像設定----*/
.appli_detail_sp_beside img {
  width: 268px;
  height: 124px;
  border-radius: 14px;
  position: relative;
  top: 18px;
  left: 0px;
}
@media screen and (max-width: 319px) {
  .appli_detail_sp_beside img {
    width: 212px;
    height: 98px;
    border-radius: 11px;
    position: relative;
    top: 11px;
    left: 0;
  }
}
@media screen and (min-width: 568px) {
  .appli_detail_sp_beside img {
    width: 502px;
    height: 232px;
    border-radius: 28px;
    position: relative;
    top: 28px;
    left: 0;
  }
}
/*タブレット*/
@media screen and (min-width: 768px) {
  .appli_detail_sp_beside img {
    width: 282px;
    height: 130px;
    border-radius: 15px;
    position: relative;
    top: 7px;
    left: 7px;
  }
}
/*タブレット*/
@media screen and (min-width: 1024px) {
  .appli_detail_sp_beside img {
    width: 328px;
    height: 152px;
    border-radius: 17px;
    position: relative;
    top: 8px;
    left: 8px;
  }
}
/*パソコン*/
@media screen and (min-width: 1369px) {
  .appli_detail_sp_beside img {
    width: 444px;
    height: 205px;
    border-radius: 23px;
    position: relative;
    top: 11px;
    left: 10px;
  }
}
/*※ここまで追加*/
  

/*----一番上のスマートフォン設定----*/
.appli_detail_sp {
	width: 100%;
	height: 320px;
	margin: 0 auto;
  position: relative;
  top: 40px;
  left: 0px;
	background-image: url("../image/sp.png"),
	url("../image/bg_sp.png");
	background-size: 140px, 330px;
	background-repeat: no-repeat,no-repeat;
	background-position: center,center;
	text-align: center;
  filter: drop-shadow(0px 5px 10px rgba(255, 255, 255, 0.5) );
 }
 @media screen and (min-width: 568px) {
  .appli_detail_sp {
 		width: 540px;
 		height: 460px;
 		margin: 0 auto;
 		position: relative;
 		top: 40px;
 		left: 0px;
 		background-image: url("../image/sp.png"),
 		url("../image/bg_sp.png");
 		background-size: 225px, 540px;
 		background-repeat: no-repeat,no-repeat;
 		background-position: center,center;
 		text-align: center;
   }
 }
  /*タブレット*/
  @media screen and (min-width: 768px) {
    .appli_detail_sp {
      width: 160px;
      height: 327px;
      margin: 0 0 0 -12px;
      position: relative;
      top: 0px;
      left: 0px;
      background-image: url("../image/sp.png");
      background-size: 160px;
      background-repeat: no-repeat;
      background-position: center;
      text-align: justify;
     }
   }
  /*タブレット*/
  @media screen and (min-width: 1024px) {
    .appli_detail_sp {
      width: 204px;
      height: 417px;
      margin: 0 0 0 36px;
      position: relative;
      top: 0px;
      left: 0px;
      background-image: url("../image/sp.png");
      background-size: 204px;
      background-repeat: no-repeat;
      background-position: center;
      text-align: justify;
     }
   }
  /*パソコン*/
  @media screen and (min-width: 1369px) {
    .appli_detail_sp {
      width: 280px;
      height: 572px;
      margin: 0 0 0 34px;
      position: relative;
      top: 0px;
      left: 0px;
      background-image: url("../image/sp.png");
      background-size: 280px;
      background-repeat: no-repeat;
      background-position: center;
      text-align: justify;
    }
  }

/*----スクリーンショット画像設定----*/
 .appli_detail_sp img {
	 width: 126px;
   height: 273px;
	 border-radius: 14px;
   position: relative;
   top: 24px;
   left: 0px;
}
@media screen and (min-width: 568px) {
	.appli_detail_sp img {
		width: 204px;
		height: 442px;
		border-radius: 24px;
		position: relative;
		top: 9px;
		left: 0;
	}
}
/*タブレット*/
@media screen and (min-width: 768px) {
	.appli_detail_sp img {
		width: 144px;
		height: 312px;
		border-radius: 16px;
    position: relative;
		top: 7px;
		left: 8px;
  }
}
/*タブレット*/
@media screen and (min-width: 1024px) {
	.appli_detail_sp img {
		width: 184px;
		height: 398px;
		border-radius: 20px;
    position: relative;
		top: 9px;
		left: 10px;
  }
}
/*パソコン*/
@media screen and (min-width: 1369px) {
	.appli_detail_sp img {
		width: 254px;
		height: 550px;
		border-radius: 30px;
		position: relative;
		top: 11px;
		left: 13px;
	}
}



/*----アプリの詳細部分----*/
.appli_unit {
	width: 100%;
	margin: 0;
	padding: 40px 0 16px;
  background: #F8F8F8;
	display: flex;
	align-items: center;
	flex-direction: column;
}
@media screen and (min-width: 568px) and (max-width: 767px) {
  .appli_unit {
    padding: 64px 0 16px;
  }
}
/*タブレット*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .appli_unit {
  	width: 348px;
  	margin: 0 0 8px 24px;
  	padding: 0;
    background: none;
  	display: flex;
  	align-items: center;
  	flex-direction: column;
  }
}
/*タブレット*/
@media screen and (min-width: 1024px) {
  .appli_unit {
  	width: 520px;
  	margin: 0 0 16px 24px;
  	padding: 0;
    background: none;
  	display: flex;
  	align-items: center;
  	flex-direction: column;
  }
}
/*パソコン*/
@media screen and (min-width: 1369px) {
  .appli_unit {
  	width: 520px;
  	margin: 0 0 16px 34px;
  	padding: 0;
    background: none;
  	display: flex;
  	align-items: center;
  	flex-direction: column;
  }
}

/*----アプリアイコン----*/
/*タブレット*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .appli_unit .appli_icon img {
    width: 70px;
    height: 70px;
    border-radius: 14px;
   }
}


/*----ストアボタンを下段にするための要素----*/
.appli_text {
	display: flex;
  margin: 0 16px;
  align-items: center;
}
@media screen and (min-width: 568px) {
  .appli_text {
    width: 520px;
    margin: 0 30px;
  }
}
@media screen and (min-width: 768px) {
  .appli_text {
    width: 100%;
    margin: 0 30px;
  }
}


/*----アプリの概要----*/
.appli_content {
	margin: 0;
	padding: 0;
}
/*タブレット*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .appli_content {
    margin: 0 -6px;
  }
}

/*--アプリタイトル--*/
h2.appli_title {
  color: #3F4A4F;
  font-size: 2.4rem;/*24px*/
  font-weight: bolder;
  line-height: 1;
  margin: 0;
  padding: 8px 0;
  text-align: left;
}
@media screen and (min-width: 568px) {
  h2.appli_title {
  	font-size: 3.6rem;/*36px*/
  	font-weight: bolder;
  	line-height: 1;
  	margin: 0;
  	padding: 8px 0;
    text-align: left;
  }
}
/*タブレット*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  h2.appli_title {
    font-size: 2.3rem;/*23px*/
  	font-weight: bolder;
  	line-height: 1;
  	margin: 0;
  	padding: 8px 0;
    text-align: left;
  }
}

/*※ここから追加*/
/*--アプリタイトル小さめ--*/
/*スマートフォン*/
h2.appli_title span {
  font-size: 2rem;/*20px*/
}
/*タブレット*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  h2.appli_title span {
    font-size: 2rem;/*20px*/
  }
}
/*パソコン*/
@media screen and (min-width: 1024px) {
  h2.appli_title span {
      font-size: 3.1rem;/*31px*/
  }
}

/*--アプリタイトル改行用--*/
h2.appli_title br {
  display: none;
}
@media screen and (min-width: 768px) {
  h2.appli_title br {
    display: inline;
  }
}
/*※ここまで追加*/

/*----アプリ一言----*/
h3.appli_summary {
	font-size: 1.4rem;/*14px*/
	line-height: 1.2;
	font-weight: bold;
}
@media screen and (min-width: 568px) {
  h3.appli_summary {
  	font-size: 1.8rem;/*18px*/
  	line-height: 1.2;
    font-weight: bold;
  }
}
/*タブレット*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  h3.appli_summary {
    font-size: 1.15rem;/*11.5px*/
    line-height: 1.2;
    font-weight: bold;
  }
}

/*----ジャンル・プライス----*/
.genre_price {
  display: flex;
  width: 100%;
  color: #FFFFFF;
  background: #3F4A4F;
  padding: 4px 0;
  margin: 16px 0 0;
  justify-content: center;
}

p.genre {
	padding: 0 16px 0 0;
	margin: 0;
	border-right: 1px solid #FFF;
}
p.price {
	margin: 0;
	padding: 0 8px;
}

/*タブレット*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .genre_price {
    margin: 8px 0 0;
  }
  .genre_price p {
    font-size: 1rem;/*10px*/
  }
}


/*----ストアボタン----*/
.appli_store_unit {
	width: auto;
	margin: 8px 0 0 0;
	display: flex;
	justify-content: center;
}
/*タブレット*/
@media screen and (min-width: 768px) {
  .appli_store_unit {
    margin: 0;
  }
}


.appli_store_botton {
	display: flex;
	width: auto;/*ボタン数3つ 3カラムの場合*/
	/*width: 236px;ボタン数4つ 2カラムの場合*/
	margin: auto;
}
@media screen and (min-width: 568px) {
  .appli_store_botton {
  	display: flex;
  	width: auto;/*ボタン数3つ 3カラムの場合*/
  	/*width: 290px;ボタン数4つ 2カラムの場合*/
  	margin:0 auto;
    padding: 0;
  }
}
/*タブレット*/
@media screen and (min-width: 768px) and (max-width: 1023px){
  .appli_store_botton {
  	display: flex;
  	width: auto;/*ボタン数3つ 3カラムの場合*/
  	/*width: 240px;ボタン数4つ 2カラムの場合*/
  	margin:0 auto;
    padding: 0;
  }
}
/*パソコン*/
@media screen and (min-width: 1024px) {
  .appli_store_botton {
  	display: flex;
  	width: auto;/*ボタン数3つ 3カラムの場合*/
  	/*width: 360px;ボタン数4つ 2カラムの場合*/
  	margin:0 auto;
    padding: 0;
  }
}




/*----ストアボタンサイズ----*/
.appli_store_botton img {
  width: 108px;
  height: 32px;
}
@media screen and (min-width: 568px) {
  .appli_store_botton img {
    width: 135px;
    height: 40px;
  }
}
/*タブレット*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .appli_store_botton img {
    width: 89px;
    height: 26px;
  }
}

.appli_store_botton ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

/*----ストアボタン隙間----*/
.appli_store_botton ul li {
  margin: 5px 5px 0 ;
  text-align: center;
  /*並列・縦列・隙間埋め*/
  flex-grow: 1;
  box-sizing: border-box;
}
@media screen and (min-width: 568px) {
  .appli_store_botton ul li {
  	margin: 5px 10px 0 0 ;
  }
}
/*タブレット*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .appli_store_botton ul li {
  	margin: 5px 7px 0 0 ;
  }
}


/*----QRコード----*/
.qr {
  display: none;
}
/*タブレット*/
@media screen and (min-width: 768px) {
  .qr {
  	margin: 5px 0 0 0;
  	display: flex;
  	align-items: center;
  	justify-content: center;
  }
  .qr img {
    width: 44px;
    height: 44px;
    border: 1px solid #eaeaea;
  }
}
/*パソコン*/
@media only screen and (min-width: 1024px) {
  .qr img {
    width: 66px;
    height: 66px;
    border: 1px solid #eaeaea;
  }
}


/*----アワード----*/
.award {
	width: 100%;
	margin: auto;
	padding: 8px 0;
	background: #374142;
}

.award_area {
	width: 100%;
	margin: auto;
	display: flex;
	align-items: center;
  flex-direction: column;
}
/*タブレット*/
@media screen and (min-width: 768px) {
  .award_area {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: row;
  }
}
/*パソコン*/
@media screen and (min-width: 960px) {
  .award_area {
  	width: 896px;
    display: flex;
    align-items: center;
    flex-direction: row;
  }
}

/*----アワード文字色----*/
.award_area span {
	display: inline-block;
	font-weight: bold;
	color: rgba(0, 0, 0, 0);
	background-image: linear-gradient(180deg, #FFDE00 0%, #FFDE00 49%, #FF8700 50%, #FFDE00 100%);
	background-clip: text;
	-webkit-background-clip: text;
}
/*グラデーションがダメな場合*/
/*IE用*/
_:-ms-input-placeholder, :root .award_area span {
  color: #FFDE00;
  background: none;
}

/*----アワード個別設定----*/
.award_case {
  width: 256px;
	margin: auto;
	padding: 8px 0;
	text-align:center;
	font-weight: bold;
	background-image: url("../image/award_bg_left.svg"),url("../image/award_bg_right.svg");
	background-position:2%,98%;
	background-repeat: no-repeat,no-repeat;
	background-size: 10%, 10%;
}

/*----デバイス・国----*/
.device_country_area {
	font-style: normal;
}
.device_country_area span.device {
	font-size: 1.4rem;/*14px*/
	margin: 0 2px 0 0;
	color: rgba(0, 0, 0, 0);
	background-image: linear-gradient(180deg, #FFFFFF 25%,  #9b8d7e 100%);
  background-clip: text;
  -webkit-background-clip: text;
}
/*グラデーションがダメな場合*/
/*IE用*/
_:-ms-input-placeholder, :root .device_country_area span.device {
  color: #cfbfbf;
  background: none;
}

/*----国名----*/
.device_country_area span.country {
	font-size: 1.4rem;/*14px*/
	padding: 0 4px;
	margin: 0 2px 0 0;
  line-height: 1.4;
	background: linear-gradient(180deg, #FFDE00 0%, #FFDE00 49%, #FF8700 50%, #FFDE00 100%);
	color: #374142;
	border-radius: 2px;
}

.category_rank_area {
	display: flex;
	align-items: center;
}


/*----カテゴリ----*/
.category_area {
	width: 156px;
	text-align: right;
	margin: 0 0 0 16px;
}

.category_area_long {
	width: auto;
	margin: 0 16px;
}

span.category,
span.ranking {
	font-size: 1.5rem;/*15px*/
  line-height: 1;
  padding: 0;
}

span.ranking {
  position: relative;
  top: -4px;
}


/*----ランク----*/
.rank_area {
	width: auto;
	line-height: 1;
	color: rgba(0, 0, 0, 0);
	background-image: linear-gradient(180deg, #FFDE00 0%, #FFDE00 49%, #FF8700 50%, #FFDE00 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.rank_area span.rank {
	font-size: 4rem;/*40px*/
	position: relative;
	top: 0;
	color: rgba(0, 0, 0, 0);
	background-image: linear-gradient(180deg, #FFDE00 0%, #FFDE00 49%, #FF8700 50%, #FFDE00 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

/*----ランクのカテゴリ無しの表示 追加----*/
.category_rank_area div.rankcenter {
	margin: 0 16px;
  width: 100%;
}
/*----ランクの日付 追加----*/
div.category_rank_date{
  color: #808a8a;
  font-size: 0.5rem;
}

/*----位----*/
.rank_area span.rank_s {
	font-size: 2.4rem;/*24px*/
  position: relative;
	top: -2px;
	color: rgba(0, 0, 0, 0);
	background-image: linear-gradient(180deg, #FFDE00 0%, #FFDE00 49%, #FF8700 50%, #FFDE00 100%);
  background-clip: text;
  -webkit-background-clip: text;
}
/*グラデーションがダメな場合*/
/*IE用*/
_:-ms-input-placeholder, :root .rank_area,
_:-ms-input-placeholder, :root .rank_area span.rank,
_:-ms-input-placeholder, :root .rank_area span.rank_s {
  color: #FFDE00;
  background: none;
}


/*----ダウンロード----*/
.appli_download {
	width: 90%;
	height: auto;
	padding: 8px 0;
	margin: 5px auto;
  border-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(210, 210, 210, 0.3), rgba(0, 0, 0, 0)) 1/1px 0 1px;
	border-style: solid;
}

.appli_download_bg {
	width: auto;
	margin: auto;
	text-align:center;
	font-family: serif;
  font-weight: bold;
  background-image: url("../image/download_bg_left.svg"),url("../image/download_bg_right.svg");
  background-position:1%,99%;
  background-repeat: no-repeat,no-repeat;
	background-size: 60px, 60px;
}
@media screen and (max-width: 374px) {
	.appli_download_bg {
	  background-size: 48px, 48px;
	}
}
@media screen and (min-width: 568px) {
  .appli_download_bg {
  	width: 520px;
  }
}
@media screen and (min-width: 320px) and (max-width: 568px) {
  .appli_download p {
		width: 70%;
		margin: auto;
  }
}

.appli_download span.unit {
  display: inline-block;
	margin: 0 0 0 5px;
	position: relative;
	top: 4px;
	font-size: 4rem;/*40px*/
	line-height: 1;
  color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(180deg, #FFDE00 0%, #FFDE00 49%, #FF8700 50%, #FFDE00 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.appli_download span.download_text {
  display: inline-block;
  letter-spacing: -0.05em;
	font-size: 2.4rem;/*24px*/
  line-height: 1.2;
  padding: 0 4px 0 0;
  color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(180deg, #FFDE00 0%, #FFDE00 49%, #FF8700 50%, #FFDE00 100%);
  background-clip: text;
  -webkit-background-clip: text;
}
@media screen and (max-width: 374px) {
	.appli_download span.download_text {
		font-size: 2rem;/*20px*/
	}
}

/*グラデーションがダメな場合*/
/*IE用*/
_:-ms-input-placeholder, :root .appli_download span.unit ,
_:-ms-input-placeholder, :root .appli_download span.download_text {
  color: #FFDE00;
  background: none;
}

.appli_download span.download_text i {
  letter-spacing: 0.1em;
  padding: 0 4px;
}


/*----アプリの内容----*/
/*スマートフォンのレイアウト*/
.layout_left,
.layout_center,
.layout_right {
  padding: 32px 16px;
	display: flex;
	align-items: center;
  justify-content: center;
	flex-direction: column;
}


.layout_center {
	text-align: left;
}
@media screen and (min-width: 768px) {
  /*文章が左のレイアウト*/
  .layout_left {
    padding: 32px 24px 64px;
		display: flex;
    /*並列レイアウト*/
    flex-direction: row;
  }

  /*すべてが真ん中のレイアウト*/
  .layout_center {
    padding: 64px 24px;
    text-align: center;
		display: flex;
    /*縦列レイアウト*/
		flex-direction: column;
  }

	.layout_center .layout_center_area {
		display: flex;
		flex-direction: row;
	}

  /*文章が右のレイアウト*/
  .layout_right {
    padding: 32px 24px 64px;
		display: flex;
    /*並列レイアウト*/
		flex-direction: row-reverse;
  }
}

/*※ここから追加*/
/*768px以上のスクリーンショット横向き1列のレイアウト設定*/
@media screen and (min-width: 768px) {
	.layout_center .beside_cols {
    display: flex;
    /*縦列レイアウト*/
    flex-direction: column;
  }
}
/*768px以上1023px以下のスクリーンショット横向き2列のレイアウト解除設定*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
	.layout_center .beside_rows {
    display: flex;
    /*縦列レイアウト*/
    flex-direction: column;
  }
}
/*※ここまで追加*/


/*----見出しの設定----*/
h4.appli_read_title {
	margin: 0 0 16px 0;
	font-size: 2.4rem;/*24px*/
	line-height: 1;
  text-align: center;
	word-break: keep-all;
}
@media screen and (min-width: 768px) {
  h4.appli_read_title {
   font-size: 3.2rem;/*32px*/
  }

	/*文章が左のレイアウト*/
  .layout_left h4.appli_read_title {
    text-align: left;
  }

  /*すべてが真ん中のレイアウト*/
  .layout_center h4.appli_read_title {
    text-align: center;
  }

  /*文章が右のレイアウト*/
  .layout_right h4.appli_read_title {
    text-align: left;
  }
}

/*----リード設定----*/
.appli_read {
	margin: 0;
	padding: 0;
}
@media screen and (min-width: 768px) {
  .appli_read {
    width: 100%;
    margin: 0 48px;
		padding: 0;
  }

  /*文章が左のレイアウト*/
  .layout_left .appli_read {
    margin: 0 32px 0 auto;
  }

  /*すべてが真ん中のレイアウト*/
  .layout_center .appli_read {
    margin: 0;
  }

  /*文章が右のレイアウト*/
  .layout_right .appli_read {
		margin: 0 auto 0 32px;
  }
}


/*----改行用----*/
.appli_read br {
  display: none;
}
/*タブレット*/
@media screen and (min-width: 768px) and (max-width: 959px) {
	.appli_read br {
    display: inline;
	}
}
/*パソコン*/
@media screen and (min-width: 960px) {
	.appli_read br {
		display: none;
	}
}

/*アプリ詳細のメンバー紹介*/
@media screen and (min-width: 768px) {
  .container ul.read_text {
    height: auto;
  }
}


/*----コンテンツ内のスマートフォン スクリーンショット画像設定----*/
.sp {
  width: 270px;
  height: 551px;
  padding: 0 13px;
  margin: 32px auto 0;
  background-image: url("../image/sp.png");
  background-size: 270px;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(0px 10px 10px rgba(0, 0, 0, 0.2) );
}
/*IE用*/
@media screen and (min-width: 768px) {
  _:-ms-input-placeholder, :root .sp {
    width: 376px;
  }
}
/*タブレット*/
@media screen and (min-width: 768px) and (max-width: 959px) {
.sp {
  width: 224px;
  height: 457px;
  padding: 0 13px;
  margin: 32px auto 0;
  background-image: url("../image/sp.png");
  background-size: 224px;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(0px 10px 10px rgba(0, 0, 0, 0.2) );
  }
}

.sp img {
  width: 244px;
  height: 528px;
  border-radius: 28px;
  position: relative;
  top: 12px;
  left: 13px;
}
/*タブレット*/
@media screen and (min-width: 768px) and (max-width: 959px) {
  .sp img {
    width: 202px;
    height: 437px;
    border-radius: 24px;
    position: relative;
    top: 10px;
    left: 0px;
  }
}
/*パソコン*/
@media screen and (min-width: 960px) {
  .sp img {
   position: relative;
   left: 0px;
  }
}

/*320px以下の設定*/
@media screen and (max-width: 319px) {
  .sp {
    width: 140px;
    height: 286px;
    padding: 0 13px;
    margin: 32px auto 0;
    background-image: url("../image/sp.png");
    background-size: 140px;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0px 10px 10px rgba(0, 0, 0, 0.2) );
  }
}
/*※ここまで追加*/

/*※ここから追加*/
/*320px以下の設定*/
@media screen and (max-width: 319px) {
  .sp img {
    width: 126px;
    height: 273px;
    border-radius: 14px;
    position: relative;
    top: 7px;
    left: 7px;
  }
}  
/*※ここまで追加*/

/*※ここから追加*/
/*----コンテンツ内のスマートフォン スクリーンショット画像設定 横向き----*/
.sp_beside {
  width: 312px;
  height: 153px;
  padding: 0 13px;
  margin: 32px auto 0;
  background-image: url("../image/sp_beside.png");
  background-size: 312px;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(0px 10px 10px rgba(0, 0, 0, 0.2) );
}
@media screen and (max-width: 319px) {
  .sp_beside {
    width: 220px;
    height: 108px;
    padding: 0 13px;
    margin: 32px auto 0;
    background-image: url("../image/sp_beside.png");
    background-size: 220px;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0px 10px 10px rgba(0, 0, 0, 0.2) );
  }
}
/*タブレット パソコン*/
@media screen and (min-width: 568px) {
  .sp_beside {
    width: 551px;
    height: 270px;
    padding: 0 13px;
    margin: 32px auto 0;
    background-image: url("../image/sp_beside.png");
    background-size: 551px;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0px 10px 10px rgba(0, 0, 0, 0.2) );
  }
}
/*スクリーンショット横向き用 2つで横並びの場合の設定 背景*/
@media screen and (min-width: 1024px) and (max-width: 1365px) {
  .beside_rows .sp_beside {
    width: 480px;
    height: 235px;
    padding: 0 13px;
    margin: 32px auto 0;
    background-image: url("../image/sp_beside.png");
    background-size: 480px;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0px 10px 10px rgba(0, 0, 0, 0.2) );
  }
}

.sp_beside img {
  width: 298px;
  height: 138px;
  border-radius: 16px;
  position: relative;
  top: 8px;
  left: 7px;
}
@media screen and (max-width: 319px) {
  .sp_beside img {
    width: 212px;
    height: 98px;
    border-radius: 11px;
    position: relative;
    top: 5px;
    left: 4px;
  }
}
/*タブレット パソコン*/
@media screen and (min-width: 568px) {
  .sp_beside img {
    width: 528px;
    height: 244px;
    border-radius: 28px;
    position: relative;
    top: 13px;
    left: 11px;
  }
}
@media screen and (min-width: 768px) {
  .sp_beside img {
    position: relative;
    left: 0;
  }
}
/*スクリーンショット横向き用 2つで横並びの場合の設定 画面*/
@media screen and (min-width: 1024px) and (max-width: 1365px) {
  .beside_rows .sp_beside img {
    width: 460px;
    height: 213px;
    border-radius: 24px;
    position: relative;
    top: 11px;
    left: 0;
  }
}
/*※ここまで追加*/


/*----スマートフォンの側が無い画像設定----*/
figure.appli_image {
	width: 238px;
	margin: 32px 0 0;
	border: 1px solid #FFF;
  filter: drop-shadow(0px 5px 5px rgba(0, 0, 0, 0.2) );
}
/*IE用*/
_:-ms-input-placeholder, :root figure.appli_image {
	box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}

 @media screen and (min-width: 768px) {
	 _:-ms-input-placeholder, :root figure.appli_image {
		 width: 337px;
	 }
}

figure.appli_image img {
  width: 238px;
}


/*----キャプション設定----*/
figcaption {
  width: 238px;
  margin: 0;
  padding: 8px 0 0;
  background: #3F4A4F;
}

figcaption p {
  font-size: 1.1rem;/*11px*/
  color: #FFFFFF;
	padding: 0 8px 8px;
}

figcaption a {
	color: #FFFFFF;
}

figcaption a:hover {
	color: #FFBB00;
}


/*----スクリーンショットの画面が並ぶ場合----*/
.layout_center_area figure {
	width: auto;
	margin: 0 8px 32px;
	text-align: center;
	background: #F8F8F8;
}
/*タブレット*/
@media screen and (min-width: 768px) {
	.layout_center_area figure {
		 width: 238px;
		 margin: 0 16px 32px;
		 flex-grow: 1;
		 box-sizing: border-box;
		 background: #F8F8F8;
		 text-align: center;
	 }
}
/*パソコン*/
@media screen and (min-width: 1024px) {
	.layout_center_area figure {
		 width: 400px;
		 margin: 0 16px 32px;
		 flex-grow: 1;
		 box-sizing: border-box;
		 background: #F8F8F8;
		 text-align: center;
	 }
}

.layout_center_area figure img {
	width: 220px;
}

/*----キャプション----*/
.layout_center_area figcaption {
	width: 238px;
	margin:0 auto 8px;
}
@media screen and (min-width: 768px) {
	.layout_center_area figcaption {
		 width: 100%;
	}
}

.layout_center_area figure p.fig_title {
	font-size: 1.4rem;/*14px*/
	line-height: 1.4;
}

.layout_center_area figure p.fig_text {
	padding: 0 0 16px;
	line-height: 1;
}

.layout_center_area figure p em {
	font-weight: bold;
	font-style: normal;
}

/*IE用*/
/*メンバー紹介*/
_:-ms-input-placeholder, :root .layout_center .card_member {
	display: flex;
  width: 100%;
}

/*----ヘルプ説明----*/
p.appli_botton_read {
  text-align: center;
	word-break: keep-all;
  margin: 0 auto;
}


/*----動画部分----*/
/*縦型*/
.appli_movie_vertical {
	margin: 32px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .appli_movie_vertical {
    height: 700px;
    margin: 64px auto;
		background-image: url("../image/bg_movie.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 45% 45%;
    padding: 0;
  }
}
@media screen and (min-width: 1024px) {
  .appli_movie_vertical {
    height: 1080px;
    margin: 64px auto;
		background-image: url("../image/bg_movie.svg");
    background-size: 945px;
    background-repeat: no-repeat;
    background-position: 45% 45%;
    padding: 0;
  }
}
@media screen and (min-width: 1920px) {
  .appli_movie_vertical {
    background-position: center 45%;
  }
}

.appli_movie_vertical iframe {
  width: 300px;
  height: 533px;
	padding: 4px;
  /*透明枠*/
  border: 1px solid rgba( 255, 255, 255, 0.18 );
  background: rgba(255, 255, 255, 0.1);
	box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
}
@media screen and (min-width: 1024px) {
  .appli_movie_vertical iframe {
    position: relative;
    width: 405px;
    height: 720px;
		padding: 8px;
  }
}


/*横型*/
.appli_movie_beside {
  position: relative;
  padding-top: 56.25%;/*動画レスポンシブ用*/
	margin-top: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .appli_movie_beside {
    height: 700px;
    margin: 64px auto;
		background-image: url("../image/bg_movie.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50% 45%;
    padding: 0;
  }
}
@media screen and (min-width: 1024px) {
  .appli_movie_beside {
    height: 1080px;
    background-size: 945px;
  }
}

.appli_movie_beside iframe {
  position: absolute;
  top: 0;
	left: 0;
  width: 100%;
  height: 100%;
  border: none;
  background: rgba(255, 255, 255, 0.1);
	box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
}
@media screen and (min-width: 768px) {
  .appli_movie_beside iframe {
    position: relative;
		top: -64px;
    width: 568px;
    height: 307px;
		padding: 8px;
		border: 1px solid rgba( 255, 255, 255, 0.18 );
  }
}
@media screen and (min-width: 1024px) {
  .appli_movie_beside iframe {
    width: 750px;
    height: 405px;
  }
}

/*※ここから追加*/
/*320px以下の設定*/
@media screen and (max-width: 319px) {
  .appli_movie_vertical iframe {
    width: 160px;
    height: 285px;
    padding: 2px;
    /*透明枠*/
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
  }
}
/*※ここまで追加*/

/*----その他の見出しデザイン----*/
h5.appli_other_title {
	font-size: 2.4rem;/*24px*/
  padding: 16px;
  text-align: center;
}

/*見出しデザイン*/
@media screen and (min-width: 568px) {
  h5.appli_other_title {
		font-size: 3.2rem;/*32px*/
  }
}


/*----よくあるご質問 お問い合わせ共通----*/
.faq_area {
	width: 88%;
	margin: 16px auto 0;
}
@media screen and (min-width: 958px) {
  .faq_area {
  	width: 820px;
		margin: 32px auto 0;
  }
}

/*----吹き出しデザイン----*/
.question {
	position:relative;
  padding: 16px;
	margin: 0 auto 8px;
	color: #FFFFFF;
	background: #3f4a4f;
  border: 1px solid #CCCCCC;
	border-radius: 8px 8px 8px 0;
	font-weight: bold;
	box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}

/*----質問----*/
/*三角部分*/
.question:before {
  content: '';
	position: absolute;
  bottom: -1px;
	left: -16px;
	border-style: solid;
	border-width: 0 16px 16px 0;
	border-color: rgba(0, 0, 0, 0) #FFBB00 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);/*吹き出し矢印*/
}

.answer {
	position:relative;
  padding: 16px;
  margin: 0 auto 32px;
  background: #FFFFFF;
  border: 1px solid #CCCCCC;
	border-radius: 8px 8px 0 8px;
	box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}

/*----答え----*/
/*三角部分*/
.answer:before {
  content: '';
	position: absolute;
	bottom: -1px;
	right: -16px;
	border-style: solid;
	border-width: 0 0 16px 16px;
	border-color: rgba(0, 0, 0, 0)  rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #3F4A4F;/*吹き出し矢印*/
}

.answer p.space {
  margin: 16px 0 0;
}


/*----紹介サイト----*/
.introduction_area {
  display: flex;
  margin: 0 auto 4px;
}

ul.other_site {
	margin: 0 auto 32px;
	padding: 0 16px;
	border-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(40, 40, 40, 0.3), rgba(0, 0, 0, 0)) 1/1px 0 1px;
  border-style: solid;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
	ul.other_site {
  	display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

ul.other_site li {
	margin: 8px 0;
}

/*タブレット*/
@media screen and (min-width: 768px) {
  ul.other_site li {
    flex-grow: 1;
    width: 45%; /*カラムの幅 2列の場合*/
    box-sizing: border-box;
    margin: 16px 8px;
  }
}
/*パソコン*/
@media screen and (min-width: 959px) {
  ul.other_site li {
    flex-grow: 1;
  	/*現在、自動で折り返してます*/
  	/*width: 100%; カラムの幅 1列の場合*/
  	width: 50%; /*カラムの幅 2列の場合*/
  	/*width: 33.3%; カラムの幅 3列の場合*/
    box-sizing: border-box;
  	margin: 16px 0;
  }
}

ul.other_site li a {
	display:block;
	margin: 0;
	text-decoration: none;
	color: #3F4A4F;
	display: flex;
	align-items: center;
}

ul.other_site li a:hover {
	color: #999999;
}

ul.other_site li img {
	margin: 0 16px 0 0;
	border: 4px solid #F8F8F8;
	box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2);
}



/*----レビュー----*/
.review_area {
  display: flex;
}

@media screen and (min-width: 768px) {
  .review_area {
    margin: 0 auto 16px;
  }
}

ul.review {
	display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  ul.review {
		margin: 0 auto 32px;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

ul.review li {
	padding: 16px;
	margin: 0 16px 16px;
  background: #F8F8F8;
}
@media screen and (min-width: 768px) {
  ul.review li {
    flex-grow: 1;
  	width: 30%;
    box-sizing: border-box;
  	margin: 0 16px;
  }
  ul.review li:nth-of-type(2) {
  	margin: 0;
  }
}

.review_rating{
    position: relative;
    z-index: 0;
    display: inline-block;
    color: #CCCCCC;
}

.review_rating:before, .review_rating:after{
    content: '★★★★★';
}

.review_rating:after{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    overflow: hidden;
    color: #FFBB00; /* イエローカラー 自由に設定化 */
}

.review_rating[data-rate="5"]:after{ width: 100%; } /* 星5 */
.review_rating[data-rate="4"]:after{ width: 80%; } /* 星4 */
.review_rating[data-rate="3"]:after{ width: 60%; } /* 星3 */
.review_rating[data-rate="2"]:after{ width: 40%; } /* 星2 */
.review_rating[data-rate="1"]:after{ width: 20%; } /* 星1 */
.review_rating[data-rate="0"]:after{ width: 0%; } /* 星0 */


/*----広告上のアプリ概要----*/
.appli_footer {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
@media screen and (min-width: 568px) {
  .appli_footer .appli_unit {
    padding: 16px 0;
  }
}
@media screen and (min-width: 768px) {
  .appli_footer {
    padding: 0;
  }
	.appli_footer .appli_unit {
		padding: 0 0 16px;
	}
}

/*----広告上フッター部分 アプリの詳細部分----*/
/*タブレットの幅768pxのサイズでは小さいためPCと同じサイズを適用*/
/*アプリアイコン*/
/*タブレット*/
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .appli_unit_footer .appli_icon img {
    width: 104px;
    height: 104px;
    border-radius: 20px;
   }
}

.appli_unit_footer {
	width: 100%;
	margin: 0;
  padding: 16px 0;
  background: #F8F8F8;
	display: flex;
	align-items: center;
	flex-direction: column;
}
/*パソコン*/
@media screen and (min-width: 768px) {
  .appli_unit_footer {
  	width: 520px;
  	margin: 0 0 16px 34px;
  	padding: 0;
    background: none;
  	display: flex;
  	align-items: center;
  	flex-direction: column;
  }
}

/*※ここから追加*/
/*アプリタイトル小さめ*/
@media screen and (min-width: 768px) {
  .appli_unit_footer h2.appli_title span {
      font-size: 3.1rem;/*31px*/
  }
}
/*※ここまで追加*/

/*アプリの概要*/
.appli_content {
	margin: 0;
	padding: 0;
}

/*アプリタイトル*/
.appli_unit_footer h2.appli_title {
  color: #3F4A4F;
  font-size: 2.4rem;/*24px*/
  font-weight: bolder;
  line-height: 1;
  margin: 0;
  padding: 8px 0;
  text-align: left;
}
@media screen and (min-width: 568px) {
  .appli_unit_footer h2.appli_title {
  	font-size: 3.6rem;/*36px*/
  	font-weight: bolder;
  	line-height: 1;
  	margin: 0;
  	padding: 8px 0;
    text-align: left;
  }
}

/*アプリ一言*/
.appli_unit_footer h3.appli_summary {
	font-size: 1.4rem;/*14px*/
	line-height: 1.2;
	font-weight: bold;
}
@media screen and (min-width: 568px) {
  .appli_unit_footer h3.appli_summary {
  	font-size: 1.8rem;/*18px*/
  	line-height: 1.2;
    font-weight: bold;
  }
}

/*ジャンル・プライス*/
.appli_unit_footer .genre_price {
  display: flex;
  width: 100%;
  color: #FFFFFF;
  background: #3F4A4F;
  padding: 4px 0;
  margin: 16px 0 0;
  justify-content: center;
}

.appli_unit_footer p.genre {
	padding: 0 16px 0 0;
	margin: 0;
	border-right: 1px solid #FFF;
}
.appli_unit_footer p.price {
	margin: 0;
	padding: 0 8px;
}
/*タブレット*/
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .appli_unit_footer .genre_price p {
    font-size: 1.6rem;/*16px*/
  }
}

/*ストアボタン*/
.appli_unit_footer .appli_store_unit {
	width: auto;
	margin: 8px 0 0 0;
	display: flex;
	justify-content: center;
}

.appli_unit_footer .appli_store_botton {
	display: flex;
	width: auto;/*ボタン数3つ 3カラムの場合*/
	/*width: 236px;ボタン数4つ 2カラムの場合*/
	margin: auto;
}
@media screen and (min-width: 568px) {
  .appli_unit_footer .appli_store_botton {
  	display: flex;
  	width: auto;/*ボタン数3つ 3カラムの場合*/
  	/*width: 380px;ボタン数4つ 2カラムの場合*/
  	margin: 0 auto;
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  .appli_unit_footer .appli_store_unit {
    margin: 0;
  }
}



/*ストアボタンサイズ*/
.appli_unit_footer .appli_store_botton img {
  width: 108px;
  height: 32px;
}
@media screen and (min-width: 568px) {
  .appli_unit_footer .appli_store_botton img {
    width: 135px;
    height: 40px;
  }
}

.appli_unit_footer .appli_store_botton ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

/*ストアボタン隙間*/
.appli_unit_footer .appli_store_botton ul li {
  margin: 5px 5px 0 ;
  text-align: center;
  /*並列・縦列・隙間埋め*/
  flex-grow: 1;
  box-sizing: border-box;
}
@media screen and (min-width: 568px) {
  .appli_unit_footer .appli_store_botton ul li {
  	margin: 5px 10px 0 0 ;
  }
}

/*QRコード*/
.appli_unit_footer .qr {
  display: none;
}
/*タブレット*/
@media screen and (min-width: 768px) {
  .appli_unit_footer .qr {
  	margin: 5px 0 0 0;
  	display: flex;
  	align-items: center;
  	justify-content: center;
  }
  .appli_unit_footer .qr img {
    width: 66px;
    height: 66px;
  }
}

/*----------アプリ詳細ページここまで----------*/

/*----------ラボページ----------*/

/*----色設定----*/
.color_lab {
  background:linear-gradient(135deg, #45FFE8 0%, #6F62EC 50%, #F438A0 100%);
}

.color_holoLens {
  background:linear-gradient(135deg, #FCEFEC 0%, #FDCFCC 25%, #D89BC4 50%, #AAE1F9 75%, #E4F5FE 100%);
}

.color_piyocom {
  background:linear-gradient(135deg, #F3FDFF 0%, #FFAA00 30%, #FFAA00 70%, #F3FDFF 100%);
}

.color_webgl {
  background:linear-gradient(135deg, #19E3B1 0%, #167C7E 25%, #222C37 75%, #19E3B1 100%);
}

.lab {
  display: grid;
	margin: 16px auto;
	gap: 32px 0;
  /*1列レイアウト*/
	grid-template-columns: repeat(auto-fit, 1fr);
}

@media screen and (min-width: 768px) {
  .lab {
    margin: 32px auto;
    /*2列レイアウト*/
    grid-template-columns: repeat(2, 1fr);
  }
}


/*ラボ枠*/
.card_lab {
  width: auto;
  padding:0 0 16px;
  margin: 0 16px;
  border: 1px solid #585858;
  background: #222222;
  color: #FFF;
  text-align: center;
  border-radius: 8px;
}
/*IE用*/
@media screen and (max-width: 767px) {
  _:-ms-input-placeholder, :root .card_lab {
    display: block;
		margin: 16px;
  }
}
@media screen and (min-width: 768px) {
  _:-ms-input-placeholder, :root .card_lab {
    display: block;
    float: left;
    width: 46%;
    margin: 16px 16px 0;
  }
}
.profile_lab {
  height: 80px;
  border-radius: 8px 8px 0 0;
  margin: 0 0 16px;
}

.profile_lab img.face_lab {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 5px solid #222222;
  background: #222222;
  position: relative;
  top: 36px;
  left: -35%;/*顔の位置*/
	box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 960px) {
  .profile_lab img.face_lab {
    width: 80px;
    height: 80px;
    position: relative;
    top: 16px;
    left: -34%;/*顔の位置*/
  }
}

.name_lab {
  font-size: 2rem;/*20px*/
  line-height: 1;
  font-weight: bold;
  color: #FFFFFF;
  position: relative;
  top: -35px;
}
@media screen and (min-width: 960px) {
  .name_lab {
    position: relative;
    top: -56px;
  }
}

.name_lab ruby {
	position: relative;
  top: -8px;
}

.name_lab a {
  text-decoration: none;
  color: #FFFFFF;
}

.card_read_lab {
  text-align: left;
  padding: 0;
}

.card_read_lab ul {
  display: flex;
  align-items: center;
  height: 85px;
  margin: 0;
  border-bottom: 1px solid #585858;
}

.card_read_lab ul li {
  margin: 8px 8px 8px 16px;
  line-height: 1.2;
  text-align: left;
	display: flex;
	align-items: center;
}

.card_read_lab ul.appli_icon {
  position: relative;
  width: 100%;
  padding: 8px 0 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border: none;
}

.card_read_lab ul.appli_icon li {
  margin: 4px 2px;
  box-sizing: border-box;
  flex-shrink: 1;
}

/*アイコンのサイズ*/
.card_read_lab .appli_icon img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #eaeaea;
	background: #FFFFFF;
	box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2);
}

/*リンク文字*/
.card_read_lab a {
  color: #FFF;
  text-decoration: none;
}

/*リンク レイアウト*/
.list_lab {
  width: auto;
  padding: 8px 16px;
  border-bottom: 1px solid #585858;
  background-image:url(../image/list_arrow_white.svg);
  background-repeat: no-repeat;
  background-position: left 95% center;
  background-size: 5px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/*ホバー*/
.card_lab a:hover .list_lab {
  background: #374142;
  background-image:url(../image/list_arrow_white.svg);
  background-repeat: no-repeat;
  background-position: left 95% center;
  background-size: 5px;
}

/*タイトル*/
.list_read_lab h3.list_title {
  font-size: 1.6rem;/*16px*/
  line-height: 1.2;
  margin: 0 auto;
}

/*タイトル小さめ*/
.list_read_lab h3.list_title span {
  font-size: 1.4rem;/*14px*/
  margin: 0 4px 0 0;
}

/*タイトル改行用*/
.list_read_lab h3 br {
  display: inline;
}

/*強制改行用*/
.list_read_lab h3 span.br {
  font-size: 1.6rem;/*16px*/
  display: block;
}
@media screen and (min-width: 568px) {
  /*タイトル改行用*/
  .list_read_lab h3 br {
    display: none;
  }
}


/*スマートフォン タブレットのリンク無効化*/
/*縦向きのみの記述*/
/*リンクを切ってもらっていたけど、スマートフォンからもリンクいけるようにする
@media only screen and (max-device-width: 1366px) and (orientation:portrait) {
  .lab a {
    pointer-events: none;
  }
  .lab a .list_lab {
    background: none;
  }
}
*/
/*横向きのみの記述*/
/*
@media only screen and (max-device-width: 1366px) and (orientation:landscape) {
  .lab a {
    pointer-events: none;
  }
  .lab a .list_lab {
    background: none;
  }
}
*/

/*ラボページ用 広告ダークモード*/
.ad_lab {
  width: 100%;
  padding: 16px 0;
  margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

/*----------ラボページここまで----------*/

/*----------Aboutページ----------*/

/*メンバー紹介*/
.about {
  margin: 16px auto 0;
  display: grid;
  gap: 32px 0;
  /*1列レイアウト*/
  grid-template-columns: repeat(auto-fit, 1fr);
}
@media screen and (min-width: 768px) {
  .about {
    margin: 32px auto 0;
    /*2列レイアウト*/
    grid-template-columns: repeat(2, 1fr);
  }
}


/*メンバー枠*/
.card_member {
  width: auto;
  padding:0 0 16px;
  margin: 0 16px;
  border: 1px solid #F8F8F8;
  background: #FFFFFF;
  text-align: center;
  border-radius: 8px;
	box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;/*アプリボタン下揃えレイアウト用*/
}
/*IE用*/
_:-ms-input-placeholder, :root .layout_center .card_member {/*アプリ詳細*/
  width: 100%;
}

@media screen and (max-width: 767px) {
  _:-ms-input-placeholder, :root .card_member {
    display: block;
		margin: 16px;
  }
}
@media screen and (min-width: 768px) {
  _:-ms-input-placeholder, :root .card_member {
    display: block;
    float: left;
    width: 46%;
    margin: 16px;
  }
}

/*顔 名前の背景*/
.profile {
  height: 80px;
  border-radius: 8px 8px 0 0;
  margin: 0 0 16px;
}


/*顔*/
.profile img.face {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 5px solid #F8F8F8;
  background: #F8F8F8;
  position: relative;
  top: 36px;
  left: -35%;/*顔の位置*/
	box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 960px) {
  .profile img.face {
    width: 80px;
    height: 80px;
    position: relative;
    top: 16px;
    left: -34%;/*顔の位置*/
  }
}


/*名前*/
.name {
  font-size: 2rem;/*20px*/
  line-height: 1;
  font-weight: bold;
  color: #FFFFFF;
  position: relative;
  top: -35px;
}
@media screen and (min-width: 960px) {
  .name {
    position: relative;
    top: -56px;
  }
}


/*sns関連*/
ul.member_sns {
  width: 40px;
  position: relative;
  top: -30px;
  left: 80%;/*アイコンの位置 複数の場合変更*/
  display: flex;
}
@media screen and (min-width: 960px) {
ul.member_sns {
    position: relative;
    top: -50px;
    left: 80%;/*アイコンの位置 複数の場合変更*/
  }
}

ul.member_sns li {
  width: auto;
  margin: 0 8px 0 0;
  background: #FFFFFF;
  border-radius: 50%;
	box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2);
}


ul.member_sns img {
  width: 40px;
}


/*プロフィール読み物*/
.card_read {
  text-align: left;
  padding: 0;
}

.card_read ul.read_text {
  padding: 0;
  margin: 24px 0 0;
}
/*IE用*/
_:-ms-input-placeholder, :root .card_read ul.read_text {
	margin: 40px 0 0;
}

@media screen and (min-width: 768px) {
  .card_read ul.read_text {
    height: 90px;/*アプリアイコンの位置合わせ*/
  }
}
@media screen and (min-width: 768px) {
  .layout_center ul.read_text {
    height: auto;/*アプリ詳細用*/
  }
}


.card_read ul.read_text li {
  margin: 8px 8px 8px 16px;
  line-height: 1.2;
  text-align: left;
	display: flex;
	align-items: center;
}

/*プロフィール内のアプリボタンの位置 高さが変わっても下に合わせる用*/
.botton_bottom {
  border-top: 1px solid #F8F8F8;
  margin-top: auto;
}




/*メンバー紹介 アプリアイコン部分*/
.card_read ul.appli_icon {
  position: relative;
  width: 100%;
  padding: 8px 0 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.card_read ul.appli_icon li {
  margin: 4px 2px;
  box-sizing: border-box;
  flex-shrink: 1;
}

/*アイコンのサイズ*/
.card_read .appli_icon img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #eaeaea;
	background: #FFFFFF;
	box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2);
}



/*----------活動履歴---------*/
.history {
  margin: 32px auto;
  display: grid;
  gap: 16px 0;
  /*1列レイアウト*/
  grid-template-columns: repeat(auto-fit, 1fr);
}


/*活動履歴 枠*/
.card_history {
  position: relative;
  width: auto;
  padding:0;
  margin: 0 16px;
  text-align: center;
  border-radius: 8px;

  display: flex;
  flex-direction: column;/*アプリボタン下揃えレイアウト用*/
  flex-grow: 1;/*枠レイアウト用*/
  box-sizing: border-box;/*枠レイアウト用*/
}


/*改行用*/
.history_read br {
  display: inline;
}
@media screen and (min-width: 568px) {
 .history_read br {
    display: none;
  }
}

/*透明の帯*/
.year {
  position: relative;
  padding:0;
  margin: 0;
  background:linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #FFFFFF 50%, rgba(0, 0, 0, 0) 100%);
	filter: drop-shadow(0px 1px 8px rgba(0, 0, 0, 0.1) );
}

/*接続画像 上〇設定*/
.year::before {
  content: '●';
	display: block;
  font-size: 1.4rem;/*14px*/
  margin: 0 -7px;
  position: absolute;
  top: -10px;
  left: 50%;
  color: #FFFFFF;
}
.year_top::before {
  display: none;
}


/*接続画像 下〇設定*/
.year::after {
  content: '●';
	display: block;
  font-size: 1.4rem;/*14px*/
  margin: 0 -7px;
  position: absolute;
  bottom: -10px;
  left: 50%;
  color: #FFFFFF;
}


.year p {
  position: relative;
  top: 0;
  width: 90%;
  display: block;
  font-size: 2.4rem;/*24px*/
  line-height: normal;
  font-weight: bold;
  padding: 4px 0 0;
  margin: 8px auto;
}

/*帯の下線設定*/
.year p::before {
  width: 100%;
  content: '';
	display: block;
  position: absolute;
  top: -8px;
}
.year p::after {
  width: 100%;
  content: '';
	display: block;
  position: absolute;
  bottom: -8px;
}

.year p span {
  font-size: 1.2rem;/*12px*/
}

.history_read {
  padding: 0;
  margin: 0;
  border: none;
}

.history_read ul.text {
  padding: 0;
  margin: 0;
  border: none;
}

.history_read ul.text li {
  position: relative;
  padding: 6px 0 8px;
  margin: 6px auto;
  background: #F8F8F8;
}

.history_read ul.text li:first-child {
  margin: 18px auto 6px;
}

.history_read ul.text li:last-child {
  margin: 0 auto;
}
/*iPhon5*/
@media screen and (max-width: 374px) {
  .history_read ul.text li {
    font-size: 1.2rem;/*12px*/
  }
}

/*区切り〇設定*/
/*上部分*/
.history_read ul.text li:first-child::before {
  content: '●';
	display: block;
  font-size: 1rem/*10px*/;
  margin: 0 -5px;
  position: absolute;
  top: -12px;
  left: 50%;
}
/*下部分*/
.history_read ul.text li::after {
  content: '●';
	display: block;
  font-size: 1rem/*10px*/;
  margin: 0 -5px;
  position: absolute;
  bottom: -8px;
  left: 50%;
}
/*一番最後は表示しない*/
.history_read ul.text li:last-child::after {
  display: none;
}


/*活動履歴 アプリアイコン部分*/
.history_read ul.appli_icon {
  position: relative;
  width: 100%;
  padding: 0 0 8px;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: #F8F8F8;
}
/*IE用*/
_:-ms-input-placeholder, :root .history_read ul.appli_icon {
	margin: 0 0 16px;
}

/*下部分*/
.history_read ul.appli_icon::after {
  content: '●';
	display: block;
  font-size: 1rem/*10px*/;
  margin: 0 -5px;
  position: absolute;
  bottom: -12px;
  left: 50%;
  color: #FECF00;
}
.history_read ul.appli_icon_end::after {
  display: none;
}


.history_read ul.appli_icon li {
  margin: 4px 2px;
  box-sizing: border-box;
  flex-shrink: 1;
}

/*活動履歴 アプリアイコンのサイズ*/
.history_read ul.appli_icon img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #eaeaea;
	background: #FFFFFF;
	box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2);
}

/*----活動履歴 色設定----*/
/*--水色--*/
.text_color_history_lightblue {
  color: #27c8c4;
}
/*●の色 前の色*/
.color_history_lightblue .year::before {
  color: #117FBC;
}
.color_history_lightblue .year p::after {
  border-image: linear-gradient(to right, rgba(0, 0, 0, 0), #27c8c4, rgba(0, 0, 0, 0)) 1/0 0 8px;
  border-style: solid;
}
/*●の色*/
.color_history_lightblue .year::after,
.color_history_lightblue .history_read ul.text li::before,
.color_history_lightblue .history_read ul.text li::after,
.color_history_lightblue .history_read ul.appli_icon::after {
  color: #27c8c4;
}


/*--緑色--*/
.text_color_history_green {
  color: #96C701;
}
/*●の色 前の色*/
.color_history_green .year::before {
  color: #38B9B5;
}
.color_history_green .year p::after {
  border-image: linear-gradient(to right, rgba(0, 0, 0, 0), #96C701, rgba(0, 0, 0, 0)) 1/0 0 8px;
  border-style: solid;
}
/*●の色*/
.color_history_green .year::after,
.color_history_green .history_read ul.text li::before,
.color_history_green .history_read ul.text li::after,
.color_history_green .history_read ul.appli_icon::after {
  color: #96C701;
}

/*--黄色--*/
.text_color_history_yellow {
  color: #ffbb00;
}
/*●の色 前の色*/
.color_history_yellow .year::before {
  color: #96C701;
}
.color_history_yellow .year p::after {
  border-image: linear-gradient(to right, rgba(0, 0, 0, 0), #ffbb00, rgba(0, 0, 0, 0)) 1/0 0 8px;
  border-style: solid;
}
/*●の色*/
.color_history_yellow .year::after,
.color_history_yellow .history_read ul.text li::before,
.color_history_yellow .history_read ul.text li::after,
.color_history_yellow .history_read ul.appli_icon::after {
  color: #ffbb00;
}

/*--赤色--*/
.text_color_history_red {
  color: #D91111;
}
/*●の色 前の色*/
.color_history_red .year::before {
  color: #ffbb00;
}
.color_history_red .year p::after {
  border-image: linear-gradient(to right, rgba(0, 0, 0, 0), #D91111, rgba(0, 0, 0, 0)) 1/0 0 8px;
  border-style: solid;
}
/*●の色*/
.color_history_red .year::after,
.color_history_red .history_read ul.text li::before,
.color_history_red .history_read ul.text li::after,
.color_history_red .history_read ul.appli_icon::after {
  color: #D91111;
}


/*--赤紫色--*/
.text_color_history_redpurple {
  color: #ce1085;
}
/*●の色 前の色*/
.color_history_redpurple .year::before {
  color: #D91111;
}
.color_history_redpurple .year p::after {
  border-image: linear-gradient(to right, rgba(0, 0, 0, 0), #ce1085, rgba(0, 0, 0, 0)) 1/0 0 8px;
  border-style: solid;
}
/*●の色*/
.color_history_redpurple .year::after,
.color_history_redpurple .history_read ul.text li::before,
.color_history_redpurple .history_read ul.text li::after,
.color_history_redpurple .history_read ul.appli_icon::after {
  color: #ce1085;
}


/*--青紫色--*/
.text_color_history_purple {
  color: #6354c5;
}
/*●の色 前の色*/
.color_history_purple .year::before {
  color: #ce1085;
}
.color_history_purple .year p::after {
  border-image: linear-gradient(to right, rgba(0, 0, 0, 0), #6354c5, rgba(0, 0, 0, 0)) 1/0 0 8px;
  border-style: solid;
}
/*●の色*/
.color_history_purple .year::after,
.color_history_purple .history_read ul.text li::before,
.color_history_purple .history_read ul.text li::after,
.color_history_purple .history_read ul.appli_icon::after {
  color: #6354c5;
}


/*--青色--*/
.text_color_history_blue {
  color: #117FBC;
}
/*●の色 前の色*/
.color_history_blue .year::before {
  color: #6354c5;
}
.color_history_blue .year p::after {
  border-image: linear-gradient(to right, rgba(0, 0, 0, 0), #117FBC, rgba(0, 0, 0, 0)) 1/0 0 8px;
  border-style: solid;
}
/*●の色*/
.color_history_blue .year::after,
.color_history_blue .history_read ul.text li::before,
.color_history_blue .history_read ul.text li::after,
.color_history_blue .history_read ul.appli_icon::after {
  color: #117FBC;
}

/*----------Aboutページここまで----------*/

/*----------リンク一覧----------*/

/*-----リンク一覧 バナー設定-----*/
/*リンク一覧バナー*/
 .link_icon {
	margin: 0 16px 0 0;
	display: flex;
	align-items: center;
}
/*IE用*/
_:-ms-input-placeholder, :root .link_icon {
	display: table;
}

/*リンク一覧バナーサイズ*/
 .link_icon img {
	border: 4px solid #F8F8F8;
	box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2);
 }
 @media screen and (min-width: 568px) {
  .link_icon img {
    width: 88px;
  }
}


/*スマートフォン・タブレットはリンクについて非表示
  .link_about {
    display: none;
  }*/
  /*リンクについて表示*/
  .link_about {
    display: block;
  }

/*リンク一覧 リンクバナー*/
ul.link_banner {
  height: auto;
  padding: 16px 0;
  margin: 0 16px;

  display: flex;
  flex-wrap: wrap;
  align-items: center;

  /*ライン*/
  border-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(40, 40, 40, 0.3), rgba(0, 0, 0, 0)) 1/0 0 1px;
  border-style: solid;
}

ul.link_banner li {
  width: 33%;
  text-align: center;
  flex-grow: 1;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  ul.link_banner li {
    width: auto;
  }
}

/*----------リンク一覧ここまで----------*/

/*----------プライバシーポリシー----------*/
.privacy {
  padding: 1px 8px 8px 16px;
  margin: 16px;
  background: #FFFFFF;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  .privacy {
    padding: 32px 64px 64px;
		margin: 32px 16px;
  }
}
@media screen and (min-width: 960px) {
  .privacy {
    padding: 32px 64px 64px;
    margin: 32px 0;
  }
}

.privacy h3.title {
  margin: 32px 0 0 0;
}

.privacy p {
  margin-left: 16px;
  margin-right: 16px;
}
.privacy p.info {
  margin: 16px;
}

/*----------プライバシーポリシーここまで----------*/

/*----------お問い合わせ----------*/

/*リスト 黒丸ありの場合*/
ul.dot {
  margin: 16px 0;
}
ul.dot li {
  list-style: disc;
  margin: 0 0 0 24px;
}
@media screen and (min-width: 768px) {
  ul.dot li {
    margin: 0 0 0 32px;
  }
}

/*リスト テキストリンクの場合*/
ul.dot_link li {
  list-style: disc;
  margin: 0 0 0 24px;
}
@media screen and (min-width: 768px) {
  ul.dot_link li {
    margin: 0 0 0 32px;
  }
}

/*リスト 四角ありの場合*/
ul.square li {
  list-style: square;
}


/*お問い合わせフォームここから*/
.form_area {
  width: 88%;
  margin: 0 auto 32px;
}
@media screen and (min-width: 960px) {
  .form_area {
    width: 820px;
    margin: 0 auto 32px;
  }
}

.translate_form{
  padding-top: 16px;
  margin-top: 16px;

}
.translate_form,.translate_form select,.translate_form option{
  font-size: 2.0rem;
}


/*必須設定*/
.required {
  width: 200px;
  padding: 2px;
  margin: 16px auto 8px;
  font-size: 1.4rem;/*14px*/
  background:linear-gradient(135deg, #ff1800 0%, #a90011 100%);
  color: #FFFFFF;
  border-radius: 4px;
  text-align: center;
  position: relative;
  top: -2px;
}
@media screen and (min-width: 958px) {
	.required {
		margin: 32px auto 8px;
  }
}

.form_title {
  display: flex;
  margin: 0 auto 16px;
  justify-content: center;
  flex-direction: column;
}
@media screen and (min-width: 960px) {
  .form_title {
    width: 820px;
  }
}

form input,
form textarea {
  padding: 8px;
  border: 1px solid #AAAAAA;
  border-radius: 8px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1) inset;
}
@media screen and (min-width: 960px) {
  form input,
  form textarea {
    width: 800px;
  }
}

/*入力時の枠色変更*/
input:focus,
textarea:focus {
  border: 2px solid #09b4c5;
  outline: 0;
	padding: 7px 8px;
}

label {
  font-weight: bold;
}

/*確認ボタン*/
.form_botton {
  margin: auto;
  text-align: center;
}

.form_botton input:hover {
  color: #FFFFFF;
  background: #3F4A4F;
}

/*入力フォームのエラー時のメッセージ表示*/
form span.error{
  color: #ff1800; 
  padding: 3px 0px 0px 0px;
}

a#contact{
  color: #FFFFFF;
}

a#contact:active {
  position: relative;
  top: 0px;
}

/*追加分*/


div.mailcomment p{
  padding: 8px;
  border: 1px solid #AAAAAA;
  border-radius: 8px;
  background: #FFFFFF;
}

div.mailcomment {
  width: 88%;
  margin: 16px auto 24px;
}
@media screen and (min-width: 960px) {
  div.mailcomment {
    width: 820px;
    margin: 0 auto 32px;
  }
}

@media screen and (min-width: 960px) {
  div.mailcomment {
    width: 800px;
  }
}



/*----------お問い合わせここまで----------*/


/*----------広告----------*/
.ad {
  width: 100%;
  padding: 16px 0;
  margin: 0 auto;
  background: #FFFFFF;

	display: flex;
	align-items: center;
	justify-content: center;
}


/*----------フッター----------*/
footer {
	width: 100%;
}

/*各 背景色*/
.footer_menu {
	background:#F8F8F8;
}
.footer_sns {
	background:#3F4A4F;
  border-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(210, 210, 210, 0.3), rgba(0, 0, 0, 0)) 1/0 0 1px;
  border-style: solid;
}
.footer_store_botton {
	background:#374142;
  border-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(210, 210, 210, 0.3), rgba(0, 0, 0, 0)) 1/0 0 1px;
  border-style: solid;
}

/*footer共通*/
footer ul {
	width: 100%;
	margin: auto;
	text-align: center;
	display: flex;
	align-items: center;
  justify-content: center;
	justify-content: flex-start;
  flex-wrap: wrap;
}

footer ul li {
  flex-grow: 1;
  box-sizing: border-box;
}

.footer_menu ul li {
  width: auto;
}

.footer_sns ul li {
  width: auto;
}

.footer_store_botton ul li {
  width: auto;
}

/*フッター アイコン*/
footer ul li img {
	width: 48px;
  margin: 8px 0;
}


/*フッターメニュー スマートフォン*/
.footer_menu ul {
	width: 100%;
	margin: 0 auto;

	display: flex;
	justify-content: center;
  flex-direction: column;
}
.footer_menu ul li {
	width: 100%; /*カラムの幅 スマートフォンの場合*/
	word-break: keep-all;
}
.footer_menu ul li a {
	position: relative;
	height: 60px;
	margin: 0;
	padding: 0 16px;
	border-bottom:2px solid #FFFFFF;
	color: #3F4A4F;
	font-size: 1.2rem;/*12px*/
	text-decoration: none;

  display: flex;
	align-items: center;
}

.footer_menu ul li a:hover {
	color: #C80000;
}

/*右矢印*/
.footer_menu ul li a:before {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: 2px solid #3F4A4F;
  border-right: 2px solid #3F4A4F;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 5%;
  margin-top: -6px;
}
.footer_menu ul li a:hover:before {
	border-top: 2px solid #C80000;
  border-right: 2px solid #C80000;
}




/*フッターメニュー タブレット パソコン*/
@media screen and (min-width: 768px) {
  footer ul {
  	width: 100%;
  }

  .footer_menu ul li {
    width: 14.2857%;
  }

  /*フッターメニュー アニメーション*/
  .footer_menu ul {
  	width: 100%;
    justify-content: center;
    flex-direction: row;
  }

  /*フッターアニメーション*/
  .footer_menu ul li a {
  	position: relative;
    height: 58px;
  	margin: 0;
  	padding: 0;
  	color: #3F4A4F;
  	font-size: 1.2rem;/*12px*/
  	text-decoration: none;

    display: flex;
  	align-items: center;
  	justify-content: center;

		/*ホバーアニメーション設定*/
		z-index: 0;
    transition: all 0.2s;
  }

  .footer_menu ul li a::after {
		content: '';
    position: absolute;
  	bottom: 0;
  	left: 0;
  	width: 100%;
  	height: 0;
	  background:linear-gradient(0deg, #EE0000 0%, #C80000 100%);
  	z-index: -1;
  	transition: all 0.2s;
  }

  .footer_menu ul li a:hover:after,
  .footer_menu ul li a:active:after {
  	height: 4px;
  }

  .footer_menu ul li a:hover {
		color: #C80000;
  }

  /*右矢印 非表示*/
  .footer_menu ul li a:before {
    display: none;
  }
}

/*フッターメニュー パソコン*/
@media screen and (min-width: 958px) {
  footer ul {
    width: 896px;
  }
  /*フッターメニュー アニメーション*/
  .footer_menu ul {
    width: 896px;
  }
}



/*コピーライト*/
.copyright {
	height: 160px;
	color: #F8F8F8;
	background:#374142;
	display: flex;
	align-items: center;
	justify-content: center;
  flex-direction: column;
}
.copyright img {
  width: 40px;
  margin: 16px 0 20px;
}

.copyright p {
	margin: 0 0 16px;
	padding: 0;
}
.copyright_link a{
	color: #F8F8F8;
  font-size: 1.2rem;
}

.copyright_link a:hover{
	color: #F8F8F8;

}
