@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;600;700&family=Noto+Sans+JP:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,700;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@700&display=swap");
/* 基本 + ヘッダ・フッタ非表示
____________________*/
#Header, #Globalnavi, .leadSection {
  display: none !important;
}
.footerTagline, .footerTagline, #footer, #footerLinks, #footerCopy, .pagetop, .pageLink {
  display: none;
}
.p-registered, .l-pagetop.p-pagetop, .l-footer.p-footer {
  display: none !important;
}
#container:after {
  content: none;
}
#container {
  width: 100%;
  margin: auto;
}
.column2R #main {
  float: none;
  width: auto;
}
/*=========================================================================
//
// Base
//
==========================================================================*/
/* CSS Remedy */
*, ::after, ::before {
  box-sizing: border-box
}
html {
  line-sizing: normal
}
body {
  margin: 0
}
h1 {
  font-size: 2rem
}
h2 {
  font-size: 1.5rem
}
h3 {
  font-size: 1.17rem
}
h4 {
  font-size: 1rem
}
h5 {
  font-size: .83rem
}
h6 {
  font-size: .67rem
}
h1 {
  margin: .67em 0
}
pre {
  white-space: pre-wrap
}
hr {
  border-style: solid;
  border-width: 1px 0 0;
  color: inherit;
  height: 0;
  overflow: visible
}
audio, canvas, embed, iframe, img, object, svg, video {
  display: block;
  vertical-align: middle;
  max-width: 100%
}
canvas, img, svg, video {
  height: auto
}
audio {
  width: 100%
}
img {
  border-style: none
}
svg {
  overflow: hidden
}
article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block
}
[type=checkbox], [type=radio] {
  box-sizing: border-box;
  padding: 0
}
/*-------------------------------------------------------------------------
 base setting
--------------------------------------------------------------------------*/
html {
  height: 100%;
  font-size: 62.5%;
}
body, input, textarea, select, option, button {
  /* font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, 游ゴシック体, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "ＭＳ Ｐゴシック", sans-serif; */
  font-family: 'Noto Sans JP', 'Inter', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, 'Hiragino Kaku Gothic Pro', Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1.8;
  color: #231814 !important;
  font-size: 1.6rem;
  position: relative;
}
body {
  position: relative;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
@media (max-width: 767px) {
  body {
    min-width: inherit;
    min-width: auto;
  }
  body, input, textarea, select, option, button {
    font-size: 1.4rem;
  }
}
a {
  color: #001e60 !important;
  text-decoration: none !important;
  outline: none;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
p {
  margin-block-start: 1em;
  margin-block-end: 1em;
}
ul, ol, li {
  margin: 0;
  padding: 0;
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* image
----------------------------------------------------------- */
a img, img {
  border: 0;
  -ms-interpolation-mode: bicubic;
  vertical-align: bottom;
}
.img {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: auto;
}
.img_hover:hover {
  opacity: 1;
  -webkit-animation: flash 1.5s;
  animation: flash 1.5s;
}
@-webkit-keyframes flash {
  0% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}
@keyframes flash {
  0% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}
/*=========================================================================
//
// Utility
//
==========================================================================*/
.bg_blue {
  background: #001e60;
}
.bg_lime {
  background: #c4d600;
}
.bg_gray {
  background: #f6f6f6;
}
.bg_black {
  background: #000;
  color: #fff !important;
}
/*-------------------------------------------------------------------------
 btn
--------------------------------------------------------------------------*/
.btn {}
.link_area {
  text-align: center;
}
.common_txt_link {
  display: inline-block;
  margin: 60px auto 0;
}
.common_txt_link a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.6em 1.3em 0.5em 1em;
  background-color: #fff !important;
  border: 3px solid #103482;
  color: #103482 !important;
  font-size: 2.2rem;
  line-height: 1.5;
  font-weight: bold;
  text-decoration: none !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s
}
.common_txt_link a::before {
  content: "";
  display: inline-block;
  margin-right: 1.5em;
  width: 0.7em;
  height: 0.7em;
  border-top: 3px solid #103482;
  border-right: 3px solid #103482;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s
}
@media screen and (max-width: 479px) {
  .common_txt_link a::before {
   /* border-width: 2px */
  }
}
@media screen and (min-width: 480px) {
  .common_txt_link a:hover {
    background-color: #103482 !important;
    color: #fff !important;
  }
  .common_txt_link a:hover::before {
    border-color: #fff
  }
}
@media screen and (max-width: 767px) {
  .common_txt_link {
    display: inline-block;
    margin: 30px auto 0;
  }
  .common_txt_link a {
    font-size: 1.8rem;
  }
}
/*=========================================================================
//
// layout
//
==========================================================================*/
/*-------------------------------------------------------------------------
 main
--------------------------------------------------------------------------*/
.main {
  position: relative;
}
@media (max-width: 767px) {
  .main {}
}
.section {
  padding: 0 0 80px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .section {
    padding: 0 0 40px;
  }
}
.inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 767px) {
  .inner {}
}
/*=========================================================================
//
// Theme(look&feel)
//
==========================================================================*/
.header {
  /* background: #001e60; */
  /* background: rgba(255, 255, 255, .3); */
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  -webkit-transition: all 0.3s;
  transition: all 0.3s
}
.header.scroll {
  background: #001e60;
}
.header .logo img.w {
  display: none;
}
.header.scroll .logo img.w {
  display: block;
}
.header.scroll .logo img.n {
  display: none;
}
.header-inner {
  display: flex;
  /* max-width: 1300px; */
  max-width: 95%;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}
.header .logo {
  width: 220px;
}
@media (max-width: 1024px) {
  .header .logo {
    display: none;
  }
}
/* cta btn */
.cta {
  display: flex;
}
.cta li {
  width: 260px;
}
.cta li:first-child a {
  background: #00a2e6;
  color: #fff !important;
}
.cta li:last-child a {
  background: #001e60;
  color: #c4d600 !important;
  transform: skewX(-15deg);
}
.header.scroll .cta li:last-child a {
  background: #c4d600;
  color: #001e60 !important;
  transform: skewX(-15deg);
}
.cta a {
  text-align: center;
  display: block;
  padding: 16px 0;
  font-weight: bold;
  /* font-style: italic; */
  position: relative;
  z-index: 1;
  transition: .3s;
}
/* hover */
.cta li:first-child a:hover {
  background: #20bbfc;
}
.cta li:last-child a:hover {
  background: #000A32;
}
.header.scroll .cta li:last-child a:hover {
  background: #e2f701;
}
/* 矢印 */
.cta a::before {
  content: "";
  display: inline-block;
  margin: 0 2em 0 -1.5em;
  width: 0.7em;
  height: 0.7em;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cta li:last-child a::before {
  border-top: 3px solid #c4d600;
  border-right: 3px solid #c4d600;
}
.cta a:hover::before {
  margin: 0 2em 0 -1em;
}
.header.scroll .cta li:last-child a::before {
  border-top: 3px solid #001e60;
  border-right: 3px solid #001e60;
}
.cta li:first-child {
  display: none;
}
@media (max-width: 1024px) {
  .cta {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    z-index: 999;
  }
  .cta li {
    width: inherit;
    flex: 1;
  }
  .cta li:first-child {
    display: block;
  }
  .cta li:last-child a {
    transform: none !important;
  }
  .header .cta li:last-child a {
    background: #c4d600;
    color: #001e60 !important;
  }
  .cta li:last-child a::before {
    border-top: 3px solid #001e60;
    border-right: 3px solid #001e60;
  }
}
/*-------------------------------------------------------------------------
 mainvisual
--------------------------------------------------------------------------*/
#top-main {
  width: 100%;
  background: #95efe8;
  position: relative;
  z-index: -1;
}
#top-main img.sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  #top-main img.pc {
    display: none;
  }
  #top-main img.sp {
    display: block;
  }
}
/*スクロールダウン全体の場所*/
.scrolldown {
  position: absolute;
  bottom: 50%;
  left: 15%;
  animation: arrowmove 1.3s ease-in-out infinite;
}
/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove {
  0% {
    bottom: 10%;
  }
  50% {
    bottom: 12%;
  }
  100% {
    bottom: 10%;
  }
}
/*Scrollテキストの描写*/
.scrolldown span {
  position: absolute;
  left: -20px;
  bottom: 10px;
  color: #fff !important;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
/* 矢印の描写 */
.scrolldown:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: -9px;
  width: 1px;
  height: 30px;
  background: #fff;
  transform: skewX(-31deg);
}
.scrolldown:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1px;
  height: 60px;
  background: #fff;
}
@media screen and (max-width:1024px) {
  .scrolldown {
    display: none;
  }
}
/*-------------------------------------------------------------------------
 
--------------------------------------------------------------------------*/
#main_container {
  position: relative;
  z-index: 1;
  background: #fff;
}
@media screen and (max-width:767px) {
  #main_container {
    z-index: 0;
  }
}
/*-------------------------------------------------------------------------
 タイトル
--------------------------------------------------------------------------*/
/* 0 */
.common_ttl_area_0 {
  background: url(/5info/img/debutcampaign/bg_ttl.png) center bottom no-repeat;
  background-size: cover;
  /* background: #001e60; */
  color: #ed1e79 !important;
  text-align: center;
  padding: 80px 20px;
  margin: 0 auto;
}
.common_ttl_area_0 h1 {
  font-style: italic;
  margin: 0;
  font-size: 5rem;
  line-height: 1.5;
}
@media (max-width: 1200px) {
  .common_ttl_area_0 {
    padding: 40px 20px;
  }
  .common_ttl_area_0 h1 {
    font-size: 4rem;
  }
}
@media (max-width: 767px) {
  .common_ttl_area_0 {
    padding: 40px 20px;
  }
  .common_ttl_area_0 h1 {
    font-size: 2.4rem;
  }
  .common_ttl_area_0 h1 br {
    display: none;
  }
}
/* 1 */
.common_ttl_area_1 {
  background: #001e60;
  color: #c4d600 !important;
  text-align: center;
  padding: 80px 20px;
}
.common_ttl_area_1 h2 {
  margin: 0;
  font-size: 4rem;
  line-height: 1.5;
}
.common_ttl_area_1 span {
  color: #fff !important;
}
@media (max-width: 767px) {
  .common_ttl_area_1 {
    background: #001e60;
    color: #c4d600 !important;
    text-align: center;
    padding: 40px 20px;
  }
  .common_ttl_area_1 h2 {
    margin: 0;
    font-size: 2rem;
    line-height: 1.5;
  }
}
/* 2 */
.common_ttl_area_2 {
  background: #000A32;
  color: #fff !important;
  text-align: center;
  padding: 40px 20px;
}
.common_ttl_area_2 h2 {
  margin: 0;
  font-size: 3rem;
}
.common_ttl_area_2 span {}
@media (max-width: 767px) {
  .common_ttl_area_2 {
    padding: 28px 20px;
  }
  .common_ttl_area_2 h2 {
    font-size: 2rem;
  }
}
.gaming_pc .common_ttl_area_2 {
  background: #d6dddd;
  color: #001e60 !important;
}
/* 3 */
.common_ttl_area_3 {
  padding: 60px 20px;
}
@media (max-width: 767px) {
  .common_ttl_area_3 {
    padding: 40px 20px;
  }
}
/* 5 */
.common_ttl_area_5 {
  background: #000A32;
  color: #fff !important;
  text-align: center;
  padding: 40px 20px;
}
.common_ttl_area_5 h2 {
  margin: 0;
  font-size: 3rem;
}
.common_ttl_area_5 span {}
@media (max-width: 767px) {
  .common_ttl_area_5 {
    padding: 28px 20px;
  }
  .common_ttl_area_5 h2 {
    font-size: 2rem;
  }
}
/*-------------------------------------------------------------------------
 footer
--------------------------------------------------------------------------*/
.footer {
  position: relative;
  padding: 80px 0;
  background: #fff;
}
.footer .logo {
  margin: 0 auto;
  width: 220px;
}
.footer p {
  text-align: center;
  margin: 40px 0 0;
  font-size: 1.3rem;
}
@media (max-width: 767px) {
  .footer {
    padding: 40px 0 100px;
  }
  .footer .logo {
    margin: 0 auto;
    width: 180px;
  }
  .footer p {
    margin: 20px 0 0;
    font-size: 1.1rem;
  }
}
/* page-top */
#page-top {
  margin: 0;
}
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #001e60;
  width: 60px;
  height: 50px;
  color: #fff !important;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none !important;
  font-size: 0.6rem;
  transition: all 0.3s;
}
#page-top a:hover {
  background: #777;
}
/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateX(100px);
}
/*　左の動き　*/
#page-top.LeftMove {
  animation: LeftAnime 0.5s forwards;
}
@keyframes LeftAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/*　右の動き　*/
#page-top.RightMove {
  animation: RightAnime 0.5s forwards;
}
@keyframes RightAnime {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 1;
    transform: translateX(100px);
  }
}
/*=========================================================================
//
// details
//
==========================================================================*/
/*-------------------------------------------------------------------------
 キャンペーン
--------------------------------------------------------------------------*/
#campaign {
  background: #f1f1f1;
  padding: 0;
  color: #103482 !important;
}
/* #campaign h1{
  margin: 0 auto;
  width: 90%;
} */
#campaign h3 {
  text-align: center;
  margin: 0;
  font-size: 2.6rem;
}
@media (max-width: 767px) {
  #campaign h3 {
    text-align: center;
    margin: 0;
    font-size: 2rem;
  }
}
/* 景品
----------------------------------------------------------- */
.prize_area {
  padding: 60px 0;
}
@media (max-width: 767px) {
  .prize_area {
    padding: 40px 0;
  }
}
.prize_area ul {
  margin: 50px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.prize_area li {
  width: 30%;
  margin: 0 auto 30px;
  background: #fff;
  padding: 30px 20px 0;
}
.prize_ttl {
  border-top: 2px solid #001e60;
  border-bottom: 2px solid #001e60;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.prize_ttl span {
  font-size: 1.3rem;
}
.prize_catch {
  width: 70%;
  border-right: 1px solid #001e60;
  font-size: 1.6rem;
  margin: 0;
}
.prize_num {
  width: 30%;
  text-align: center;
  font-size: 3rem;
  font-family: 'Inter', sans-serif;
}
.prize_num p {
  margin: .5em 0;
}
.prize_num span {
  font-size: 1.5rem;
}
.prize_memo {
  margin-top: -30px;
  text-align: right;
  font-size: 1.4rem;
}
@media (max-width: 1200px) {
  .prize_area li {
    width: 48%;
  }
}
@media (max-width: 767px) {
  .prize_area ul {
    margin: 30px auto 0;
    flex-direction: column;
  }
  .prize_area li {
    width: 90%;
  }
  .prize_catch {
    font-size: 1.6rem;
  }
}
/* 概要
----------------------------------------------------------- */
.outline_area {
  background: #001e60;
  padding: 60px 0;
}
.outline_area h3 {
  color: #fff;
}
.outline_area dl {
  max-width: 1100px;
  padding: 0 20px;
  margin: 40px auto;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  justify-content: center;
  /* color: #fff; */
  margin-bottom: 1em;
}
.outline_area dt {
  /* color: #c4d600;
  border: 1px solid #c4d600; */
  /* color: #103482;
  border: 2px solid #103482; */
  color: #fff;
  border: 1px solid #ed1e79;
  background: #ed1e79;
  font-weight: bold;
  width: 20%;
  text-align: center;
  padding: .5em 0;
}
.outline_area dd {
  margin: -5px 0 0;
  width: 80%;
  color: #fff !important;
}
.outline_area dd a {
  color: #fff !important;
  /* color: #103482; */
  text-decoration: underline;
}
.outline_area dd a:hover {
  /* color: #c4d600; */
  color: #007bc7 !important;
}
.outline_area dd span {
  display: block;
}
.outline_area dd br.sp {
  display: none;
}
@media (max-width: 767px) {
  .outline_area {
    padding: 40px 0;
  }
  .outline_area dl {
    flex-direction: column;
    gap: 1rem;
  }
  .outline_area dt {
    width: 100%;
  }
  .outline_area dd {
    width: 100%;
    margin: 0;
  }
  .outline_area dd br.sp {
    display: block;
  }
}
/* 応募
----------------------------------------------------------- */
.entry_area {
  padding: 60px 0;
  border-top: 1px solid #001e60;
}
@media (max-width: 767px) {
  .entry_area {
    padding: 40px 0;
  }
}
.cta_entry {
  width: 100%;
  max-width: 800px;
  margin: 40px auto 0;
  text-align: center;
}
.cta_entry a {
  display: block;
  text-decoration: none !important;
  /* background: #000; */
  /* color: #c4d600; */
  background: #c4d600;
  color: #000 !important;
  font-size: 3rem;
  transform: skewX(-15deg);
  /* font-style: italic; */
  font-weight: bold;
  padding: 18px 30px;
  position: relative;
  z-index: 0;
  transition: .3s;
}
.cta_entry a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  /* background: #c4d600; */
  background: #000;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease .3s;
}
.cta_entry a:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}
/* 矢印 */
.cta_entry a::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 37%;
  right: 10%;
  /* margin: 0 0 0 1.5em; */
  width: 0.7em;
  height: 0.7em;
  /* border-top: 5px solid #c4d600;
  border-right: 5px solid #c4d600; */
  border-top: 5px solid #000;
  border-right: 6px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cta_entry a:hover {
  /* color: #000; */
  color: #c4d600 !important;
}
.cta_entry a:hover::after {
  right: 9%;
  /* border-top: 5px solid #000;
  border-right: 5px solid #000; */
  border-top: 5px solid #c4d600;
  border-right: 6px solid #c4d600;
}
@media (max-width: 767px) {
  .cta_entry {
    max-width: 90%;
    margin: 20px auto 0;
  }
  .cta_entry a {
    font-size: 1.8rem;
  }
  /* 矢印 */
  .cta_entry a::after {
    content: "";
    top: 40%;
    right: 10%;
    border-top: 3px solid #000;
    border-right: 4px solid #000;
  }
  .cta_entry a:hover::after {
    border-top: 3px solid #c4d600;
    border-right: 4px solid #c4d600;
  }
}
/* 注意事項 */
.entry_notice {
  max-width: 800px;
  padding: 0 20px;
  margin: 40px auto 0;
  text-align: center;
}
.entry_notice br.sp {
  display: none;
}
.entry_notice p:first-child {
  font-weight: bold;
}
.entry_notice span {
  display: block;
}
@media (max-width: 767px) {
  .entry_notice br.sp {
    display: block;
  }
}
/*-------------------------------------------------------------------------
 Win11 共通
--------------------------------------------------------------------------*/
.about .about_box {
  display: flex;
  margin-top: 60px;
}
.about .about_box > div {
  flex: 1;
}
.about .about_box .img_box {}
.about .about_box .txt_box .ttl_area {
  background-image: -webkit-linear-gradient(315deg, #f8f8f8 0%, #f8f8f8 30%, #d6dddd 70%, #d6dddd 100%);
  background-image: linear-gradient(135deg, #f8f8f8 0%, #f8f8f8 30%, #d6dddd 70%, #d6dddd 100%);
  border-top: 4px solid #103482;
  padding: 5% 8%;
}
.about .about_box .txt_box .ttl_area p {
  margin: 0;
  font-weight: bold;
  color: #103482 !important;
  font-size: 2.2rem;
  line-height: 2;
}
.about .about_box .txt_box .txt_area {
  padding: 5% 8%;
}
.about .about_box .txt_box .txt_area p {
  margin: 0;
  font-weight: bold;
  line-height: 2;
}
@media (max-width: 767px) {
  .about .about_box {
    margin-top: 40px;
    flex-direction: column;
  }
  .about .about_box > div {
    width: 100%;
  }
  .about .about_box .txt_box .ttl_area {
    padding: 4%;
  }
  .about .about_box .txt_box .ttl_area p {
    font-size: 1.8rem;
  }
  .about .about_box .txt_box .txt_area {
    padding: 4%;
  }
}
/*-------------------------------------------------------------------------
 llust_area
--------------------------------------------------------------------------*/
.illust_area {
  background: #001e60;
  background: rgb(0, 10, 50);
  background: linear-gradient(180deg, rgba(0, 10, 50, 1) 0%, rgba(0, 30, 96, 1) 100%);
  padding: 30px 0 80px;
}
.type {
  padding: 40px 0;
}
@media (max-width: 767px) {
  .illust_area {
    padding: 20px 0 40px;
  }
  .type {
    padding: 40px 0;
  }
}
.type_tile {
  display: flex;
  gap: 3rem;
  align-items: center;
  position: relative;
  margin: 60px 0;
}
.type_tile::after {
  content: '';
  position: absolute;
  width: 70%;
  height: 70%;
  background: rgba(255, 255, 255, 0.1);
  right: 10%;
  top: 20%;
  z-index: 0;
}
.type_tile:nth-child(2n) {
  flex-direction: row-reverse;
}
.type_tile figure {
  width: 50%;
  margin: 0;
  z-index: 1;
}
.type_text {
  width: 50%;
  color: #fff !important;
  font-size: 1.8rem;
  font-style: italic;
  z-index: 1;
}
@media (max-width: 767px) {
  .type_tile, .type_tile:nth-child(2n) {
    flex-direction: column;
    gap: 0;
    margin: 30px 0;
  }
  .type_tile::after {
    display: none;
  }
  .type_tile figure {
    width: 90%;
  }
  .type_text {
    width: 90%;
    font-size: 1.6rem;
  }
}
.common_ttl_area_4 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  margin: 0 auto;
  border-top: 4px double rgb(0 123 199 / 50%);
  border-bottom: 4px double rgb(0 123 199 / 50%);
  padding: 20px 0;
}
.illust_area h3 {
  color: #fff !important;
  margin: 0;
  text-align: center;
  font-size: 2.6rem;
}
.common_ttl_area_4 span {
  color: #fff !important;
  font-weight: bold;
  font-family: 'Inter', sans-serif;
  font-style: italic;
  background: #007bc7;
  margin-right: 1em;
  font-size: 2rem;
  line-height: 1;
  padding: 8px 30px;
  box-shadow: 4px 4px rgba(0, 123, 199, 0.5);
}
@media (max-width: 1024px) {
  .common_ttl_area_4 {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .illust_area h3 {
    font-size: 1.8rem;
  }
  .common_ttl_area_4 span {
    font-size: 1.4rem;
    padding: 8px 10px;
  }
}
/* ボタン */
.cta-link {
  margin: 40px auto 0;
  text-align: center;
}
.cta-link a {
  border: 1px solid #007bc7;
  padding: 1em 40px;
  color: #fff !important;
  line-height: 1;
  position: relative;
  z-index: 0;
  transition: .3s;
}
.cta-link a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: rgba(0, 123, 199, 0.5);
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease .3s;
}
.cta-link a:hover {
  color: #f1f1f2 !important;
}
.cta-link a:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}
@media (max-width: 767px) {
  .cta-link a {
    padding: 1em 30px;
  }
}
@media (max-width: 480px) {
  .cta-link a {
    padding: 1em 20px;
  }
}
/*-------------------------------------------------------------------------
  おすすめモデル
--------------------------------------------------------------------------*/
.recommend_model {
  border: 2px solid rgb(0 123 199 / 50%);
  padding: 30px 40px 50px;
  width: 80%;
  margin: 0 auto;
}
.recommend_model_ttl {
  color: #fff !important;
  text-align: center;
  background: rgb(0 123 199 / 20%);
  padding: .5em;
  font-weight: bold;
}
.recommend_model_block {
  display: flex;
  justify-content: space-around;
}
.recommend_model_text {
  width: 60%;
  color: #fff !important;
}
.recommend_model_text h4 {
  font-size: 2.5rem;
  margin: 0 0 30px;
}
.recommend_model_block ul {}
.recommend_model_block li {
  display: flex;
  gap: 1rem;
  margin: 0 0 .5em;
}
.recommend_model_block span:first-child {
  background: rgba(255, 255, 255, .1);
  color: #fff !important;
  padding: 0;
  width: 30%;
  text-align: center;
  font-weight: bold;
  font-size: 1.4rem;
}
.recommend_model_block span:last-child {}
.recommend_model_block figure {
  width: 30%;
  margin: 0;
}
@media (max-width: 1100px) {
  .recommend_model {
    border: 2px solid rgb(0 123 199 / 50%);
    padding: 30px 40px 50px;
    width: 95%;
  }
  .recommend_model_text h4 {
    font-size: 2rem;
    margin: 0 0 30px;
  }
}
@media (max-width: 767px) {
  .recommend_model {
    padding: 20px 20px 50px;
    width: 100%;
  }
  .recommend_model_block {
    flex-direction: column-reverse;
  }
  .recommend_model_text {
    width: 100%;
  }
  .recommend_model_text h4 {
    font-size: 1.8rem;
    margin: 0 0 20px;
  }
  .recommend_model_block figure {
    width: 80%;
    margin: 0 auto;
  }
}
@media (max-width: 414px) {
  .recommend_model_block li {
    flex-direction: column;
  }
  .recommend_model_block span:first-child {
    width: inherit;
  }
}
/*-------------------------------------------------------------------------
  タブ
--------------------------------------------------------------------------*/
@media (max-width: 767px) {}
/*-------------------------------------------------------------------------
 Windows 11
--------------------------------------------------------------------------*/
.win11_area {}
.win11_area h2 {
  background: #0078D4;
  color: #fff !important;
  text-align: center;
  font-size: 3rem;
  margin: 0;
  padding: 40px 20px;
}
@media (max-width: 767px) {
  .win11_area h2 {
    font-size: 2rem;
    padding: 28px 20px;
  }
}
/*-------------------------------------------------------------------------
 おすすめPC
--------------------------------------------------------------------------*/
.recommend_area {
  background: #000;
  color: #fff !important;
}
.recommend_list {
  max-width: 1180px;
  padding: 0 20px;
  margin: 0 auto 40px;
}
.recommend_area h2 {
  text-align: center;
  color: #c4d600 !important;
  margin: 0;
  font-size: 3rem;
}
.recommend_list h3 {
  text-align: center;
  font-size: 2rem;
  margin: 0;
}
.recommend_list ul {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 40px;
}
.recommend_list ul li {
  flex: 1;
  background: rgba(255, 255, 255, .1);
  padding: 1em;
}
.recommend_note {}
.recommend_desktop {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .recommend_area h2 {
    font-size: 1.8rem;
  }
  .recommend_desktop {
    margin-top: 40px;
  }
  .recommend_list ul {
    flex-direction: column;
  }
  .recommend_list ul li {
    width: 100%;
  }
}
.recommend_list figure {
  margin: 10px auto;
  max-width: 80%;
}
@media (max-width: 767px) {
  .recommend_list figure {
    margin: 10px auto 0;
    max-width: 70%;
  }
}
.recommend_text_area {
  padding: 10px 20px;
}
.catch {
  font-size: 2rem;
}
.primename {
  font-weight: bold;
}
.spec {
  border-top: 1px dotted #fff;
  border-bottom: 1px dotted #fff;
  padding: 10px 0;
}
.price {
  font-size: 1.8rem;
  font-family: 'inter', sans-serif;
  font-weight: bold;
}
@media (max-width: 767px) {
  .catch {
    font-size: 1.8rem;
  }
  .price {
    font-size: 1.6rem;
  }
}
.recommend_link {
  display: flex;
  gap: 5rem;
  justify-content: center;
}
.recommend_link li {
  width: 30%;
}
.recommend_link li p {
  background: rgba(255, 255, 255, .1);
  /* border: 1px solid #007bc7; */
  font-size: 2rem;
  margin: 0;
  padding: 1em;
  color: #fff !important;
  font-weight: bold;
  position: relative;
  z-index: 0;
  transition: .3s;
}
.recommend_link li p span {
  display: block;
  font-size: 1.3rem;
  border-top: 1px dotted rgba(255, 255, 255, .3);
  margin-top: 12px;
  padding-top: 12px;
  color: #fff !important;
}
.recommend_link li p::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: rgba(0, 123, 199, 0.5);
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease .3s;
}
.recommend_link li p:hover {
  color: #f1f1f2 !important;
}
.recommend_link li p:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}
.recommend_link_memo p {
  text-align: center;
  font-size: 1.4rem;
  margin-top: 2em;
}
@media (max-width: 767px) {
  .recommend_link {
    margin: 0 auto;
    gap: 2rem;
    flex-direction: column;
    width: 90%;
  }
  .recommend_link li {
    width: 100%;
  }
  .recommend_link li p {
    padding: 1em;
  }
  .recommend_link_memo p {
    text-align: left;
    margin-top: 1em;
  }
}
/*-------------------------------------------------------------------------
 movie
--------------------------------------------------------------------------*/
.movie_area {
  background: #001e60;
}
.movie_area .common_ttl_area_3 {
  padding: 60px 20px 30px;
}
.movie_area h2 {
  text-align: center;
  color: #fff !important;
  margin: 0;
  font-size: 3rem;
}
.movie_box {
  width: 800px;
  margin: 0 auto;
}
.movie_area p {
  color: #fff !important;
  font-size: 2rem;
}
.youtube_movie {
  margin: 20px auto;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0px;
  position: relative;
  overflow: hidden;
}
.youtube_movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .movie_area .common_ttl_area_3 {
    padding: 40px 20px 20px;
  }
  .movie_area .inner {
    padding: 0 20px;
  }
  .movie_area h2 {
    font-size: 2rem;
  }
  .movie_box {
    width: 100%;
  }
  .movie_area p {
    font-size: 1.6rem;
  }
  .youtube_movie {
    margin: 0 auto;
  }
}
/*-------------------------------------------------------------------------
 バナー
--------------------------------------------------------------------------*/
.banner_area {
  background: #fff;
  padding: 80px 0 0;
  border-top: 1px solid #ddd;
}
.banner_area ul {
  display: flex;
  justify-content: space-between;
}
.banner_area li {
  width: 32%;
}
@media (max-width: 767px) {
  .banner_area {
    padding: 40px 0 20px;
  }
  .banner_area .inner {
    padding: 0 20px;
  }
  .banner_area ul {
    flex-direction: column;
  }
  .banner_area li {
    width: 100%;
  }
  .banner_area li:nth-child(2) {
    margin: 2em 0;
  }
}
/*-------------------------------------------------------------------------
 animation
--------------------------------------------------------------------------*/
/* にゅーん（滑らかに変形して出現） */
.smooth {
  animation-name: smoothAnime;
  animation-duration: .8s;
  animation-fill-mode: forwards;
  transform-origin: left;
  opacity: 0;
}
@keyframes smoothAnime {
  from {
    transform: translate3d(0, 50%, 0) skewY(8deg);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0) skewY(0);
    opacity: 1;
  }
}
/* ふわっ（下から） */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ふわっ（左から）*/
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* ふわっ（右から） */
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.smoothTrigger, .fadeUpTrigger, .fadeLeftTrigger, .fadeRightTrigger {
  opacity: 0;
}
/*
タブ実装 */
.tab_area {
  max-width: 1300px;
  margin: 40px auto 0;
  color: #fff !important;
}
@media only screen and (max-width: 1300px) {
  .tab_area {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 767px) {
  .tab_area {
    margin: 20px auto 0;
  }
}