@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td {
    margin: 0;
    padding: 0;
}

html {
    color: #FFF;
    background: #000;
    font-family: "Noto Sans JP",sans-serif;
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
  font-size: 0.7rem;
  line-height: 1.6;
  letter-spacing: 0.01rem;
  font-feature-settings: 'palt';
  -webkit-text-size-adjust: 100%;
}

@media screen and (min-width: 600px) {
  body,p {
    font-size: 0.8rem;
  }
}

@media screen and (min-width: 1024px) {
  body,p {
    font-size: 0.9rem;
  }
}

@media screen and (min-width: 1440px) {
  body,p {
    font-size: 1rem;
  }
}

a {
  text-decoration: none;
  color: #FFF;
}
img {
    max-width: 100%;
    height: auto;
    border: 0;
    vertical-align: top;
}
table {
  border-collapse: collapse;
}
ol, ul {
    list-style: none;
}

a:link, a:visited, a:active, a:hover {
    overflow: hidden;
    outline: none;
}

.tb-only,
.pc-only {
  display: none;
}

@media screen and (min-width: 600px) {
  .sp-only {
    display: none;
  }
  .tb-only {
    display: block;
  }
}

@media screen and (min-width: 1024px) {
  .tb-only {
    display: none;
  }
  .pc-only {
    display: block;
  }
}

/*-- ここからHEADER --*/
.logo_group{
  display: flex;
  align-items: center;
}
header {
  box-shadow: 0px 3px 15px rgba(0,0,0,0.2);
  z-index: 99;
  width: 100%;
  background-color: rgba(0,0,0,0.7);
}
.header {
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  padding: 0 1.5em;
}
.logo_group{
  display: flex;
  align-items: center;
}
.h_logo{
  width: 120px;
  padding: 10px 0 8px;
  line-height: 0.3;
}
.header h1 {
  margin: 0;
  padding: 0;
}
.header nav {
  margin: 0 0 0 auto;
}
.header ul {
  list-style: none;
  margin: 0;
  display: flex;
}
.pc-nav li {
  margin: 0 0 0.2em 2em;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color:#d9d9d9;
  position: relative;
}
.pc-nav a::after {
  position: absolute;
  top: 20px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #ff0;
  bottom: 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  }
  
.pc-nav a:hover::after {
  visibility: visible;
  bottom: 12px;
  opacity: 1;
  }

@media screen and (max-width: 768px) {
  .header {
    padding: 0 1em;
  }
  .pc-nav {
      display: none;
  }
}
/*-- ここまでHEADER --*/

/* ここからMAIN VISUAL */
.mv__pc{
  display: none;
}
.mv__sp{
  overflow: hidden;
}
.mv__sp__hero{
 box-sizing: border-box;
}
.mv__sp__hero img{
  width: 100%;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}
.mv__title{
  text-align: center;
  padding: 6% 8vw;
}
.mv__maintitle{
  font-size: 1.2rem;
  line-height: 1.3;
}
.mv__subtitle{
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.4em 0 1.5em;
}

.slide-in {
  overflow: hidden;
  display: inline-block;
}
.slide-in_inner {
  display: inline-block;
}
.leftAnime{
  opacity: 0;
}
.slideAnimeLeftRight {
  animation-name:slideTextX100;
  animation-duration: 0.7s;
  animation-fill-mode:forwards;
    opacity: 0;
}
@keyframes slideTextX100 {
  from {
  transform: translateY(100%);
        opacity: 0;
  }
  to {
  transform: translateY(0);
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  animation-name:slideTextX-100;
  animation-duration:0.7s;
  animation-fill-mode:forwards;
    opacity: 0;
}
@keyframes slideTextX-100 {
  from {
  transform: translateX(100%);
    opacity: 0;
  }
  to {
  transform: translateX(0);
    opacity: 1;
  }
}
.mv__logo{
  display: flex;
  justify-content: center;
  padding: 8vw 0 2vw;
}
.ap_logo{
  width: 80px;
}
.rtx_logo{
  width: 80px;
  padding: 0 0 0 1.5em;
}

@media screen and (min-width: 600px) {
.mv__maintitle{
  font-size: 4vw;
  font-weight: bold;
}
.mv__logo{
  padding: 4vw 0 2vw;
}
.ap_logo {
  width: 120px;
}
.rtx_logo {
  width: 120px;
}
}

@media screen and (min-width: 1024px) {
.mv__sp{
  display: none;
}
.mv__pc {
  display: block;
  background: url(../images/bg_mv_pc.jpg);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  height: 78vh;
}
.mv__title{
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: left;
  padding: 7% 0 0 4%;
}
.mv__maintitle{
  font-size: 2.3rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.mv__subtitle{
  font-size: 1.2rem;
}
.mv__text{
  padding-right: 9.5%;
}
.mv__logo {
  justify-content: flex-start;
  padding: 4vw 0 0;
}
.ap_logo {
  width: 130px;
}
}

@media screen and (min-width: 1440px) {
  .mv__maintitle{
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.25;
  }
  .mv__subtitle {
    padding: 0.8em 0 1.3em;
  }
  .rtx_logo {
    width: 120px;
    padding: 0 0 0 2em;
  }
}

@media screen and (min-width: 1920px) {
  .mv__pc {
    height: 85vh;
  }
  .mv__title {
    padding: 7% 0 0 10%;
  }
  .mv__maintitle{
    font-size: 3.3rem;
    line-height: 1.3;
  }
  .mv__text {
    padding-right: 24%;
  }
  .mv__subtitle {
    padding: 0.8em 0 2em;
  }

}
/* ここまでMAIN VISUAL */

/* main{
  background-image: url(../images/nvidia-background-d.jpg);
} */
.bg_dg{
  background: #1a1a1a;
}
.l-inner{
  padding: 0 8vw;
}
@media screen and (min-width: 1440px) {
  .inner{
    padding: 0 14vw;
  }
}

/* ここから recommend */
.item{
  padding: 12vw 4vw 0;
  margin: 0 auto;
  background: #1A1A1A;
}
.item_text{
  padding: 8vw 16vw 14vw;
  text-align: center;
}
.item_title{
  font-size: 4.4vw;
  font-weight: bold;
  text-align: center;
}
.item_wrap{
  padding: 8vw 8vw 3vw;
}
.product{
  margin: 0 auto 8vw;
  text-align: center;
}
.product img{
  max-width: 80%;
  margin: 0 auto;
}
.product_name{
  font-size: 3.4vw;
  padding: 4vw 0 1.7vw;
}
.product_price{
  font-size: 4vw;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.product_price i{
  font-size: 3.2vw;
  letter-spacing: 0.2em;
}
.product button{
  background: #77b900;
  color: #fff;
  border: none;
  position: relative;
  font-size: 3vw;
  font-weight: 600;
  padding: 2vw 4vw;
  margin: 4vw auto;
  cursor: pointer;
  transition: 800ms ease all;
  outline: none;
}
.product button:hover{
  background:#000;
  color:#FFF;
}
.product button:before,button:after{
  content:'';
  position:absolute;
  top:0;
  right:0;
  height:2px;
  width:0;
  background: #77b900;
  transition:400ms ease all;
}
.product button:after{
  right:inherit;
  top:inherit;
  left:0;
  bottom:0;
}
.product button:hover:before,button:hover:after{
  width:100%;
  transition:800ms ease all;
}

@media screen and (min-width: 600px) {
.item {
  padding: 8vw 8% 0;
}
.item_text {
  padding: 4vw 10vw 12vw;
}
.item_title {
  font-size: 1.3rem;
}
.item_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1em;
  padding: 6vw 4% 0;
}
.product_name {
  padding: 3vw 0 1vw;
  font-size: 0.8rem;
}
.product_price {
  font-size: 1rem;
}
.product_price i {
  font-size: 0.85rem;
}
.product button {
  font-size: 0.8rem;
  padding: 0.3em 1.2em;
  margin: 1.6em auto;
}
}

@media screen and (min-width: 1024px) {
  .item {
    padding: 6em 0;
}
.item_wrap {
  padding: 4em 0 0;
  width: 800px;
  margin: 0 auto;
}
.item_title {
  font-size: 1.4rem;
}
.product {
  margin: 0 auto;
}
.product_name {
  font-size: 1.2rem;
  padding: 3vw 0 0.5vw;
}
.product_price {
  font-size: 1.8rem;
}
.product_price i {
  font-size: 1.1rem;
}
.product button {
  font-size: 1rem;
  padding: 0.3em 1.5em;
  margin: 1.5em auto 0;
}
}
/* ここまで recommend */

/* ここから tokucho */
.tokucho{
  padding: 8vw 4vw;
  text-align: center;
}
.tokucho__ttl{
  padding: 2vw 0 0;
  line-height: 1.4;
}
.tokucho__image{
  padding: 0 8vw;
}
.tokucho__textwrap p{
  padding: 0 0 3vw;
}
.tokucho_wrap{
  padding: 4vw 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1em 1em;
}
.tokucho_item{
  padding: 3vw 2vw;
  background: #1A1A1A;
}
.tokucho_item img{
  max-width: 30px;
  margin: 0 auto;
}
.tokucho_title{
  font-size: 0.7rem;
  line-height: 1.4;
  padding: 3vw 0 1vw;
}
.tokucho_text{
  font-size: 0.57rem;
}

@media screen and (min-width: 600px) {
.tokucho {
  padding: 6em 0;
}
.tokucho__main{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0 1em;
  padding: 4em 0;
  width: 540px;
  margin: 0 auto;
}
.tokucho__image {
  padding: 0;
  max-width: 240px;
}
.tokucho_wrap{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5em 1.5em;
  padding: 0 6%;
}
.tokucho_item {
  padding: 2em;
}
.tokucho_item img {
  max-width: 45px;
}
.tokucho_title {
  font-size: 0.9rem;
  padding: 1.5em 0 0.7em;
}
.tokucho_text{
  font-size: 0.75rem;
  padding: 0 1.5em;
}
}

@media screen and (min-width: 1024px) {
  .tokucho__contents{
    max-width: 1000px;
    margin: 0 auto;
  }
  .tokucho__ttl {
    font-size: 1.4rem;
    padding: 1em 0 0;
  }
  .tokucho__main{
    width: 680px;
  }
  .tokucho__image {
    max-width: 280px;
  }
  .tokucho__textwrap h3{
    font-size: 1.2rem;
  }
  .tokucho__textwrap p {
    padding: 0 0 2em;
  }
  .tokucho_wrap {
    grid-template-columns: repeat(4, 1fr);
    padding: 0;
    max-width: 1000px;
    margin: 0 auto;
  }
  .tokucho_item {
    padding: 2em 1em;
  }
  .tokucho_title {
    padding: 1.5em 0 1em;
    font-weight: 500;
  }
  .tokucho_text {
    padding: 0;
    font-size: 0.8rem;
  }
}
/* ここまで tokucho */

/* ここから performance */
.performance{
  padding: 4vw 4vw 12vw;
  text-align: center;
}
.performance__ttl{
  padding: 0 0 4vw;
}
.performance__add{
  padding: 1.5em 0 0.5em;
}
.performance__caution{
  color: #ccc;
  font-size: 0.6rem;
  line-height: 1.4;
  padding: 0 4vw;
}

@media screen and (min-width: 1024px) {
  .performance {
    padding: 6em 0 8em;
    text-align: center;
}
  .performance__contents{
    max-width: 1000px;
    margin: 0 auto;
  }
  .performance__ttl {
    font-size: 1.4rem;
    padding: 0 0 2em;
  }
  .performance__add{
    padding: 2rem 0 1em;
  }
  .performance__caution{
    font-size: 0.75rem;
    line-height: 1.6;
    padding: 0;
  }
}
/* ここまで performance */

/* ここから center-main bg */
.center_mainbg{
  text-align: center;
  background: url(../images/ray_tracing_pc.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  height: 73vh;
}
.center__ttl{
  padding: 2vw 0 0;
  line-height: 1.4;
}
.center__text {
  padding: 4vw 0;
}

@media screen and (min-width: 600px) {
  .center_mainbg {
    padding: 0 0 6em;
  }
}

@media screen and (min-width: 1024px) {
  .center_mainbg {
    padding: 2em 0 8em;
    height: 74vh;
}
  .center_mainbg__contents{
    max-width: 1000px;
    margin: 0 auto;
  }
  .center__ttl {
    font-size: 1.4rem;
    padding: 1em 0 0;
  }
  .center__text {
    padding: 2em 4em 6em;
  }
}
/* ここまで center-main bg */

/* ここから dlss */
.dlss{
  text-align: center;
}
.dlss_wrap_pc{
  display: none;
}
.dlss_wrap{
  padding: 8vw 8vw 0;
  color: #FFF;
}
.dlss_subtitle{
  font-size: 0.7rem;
}
.dlss_title{
  font-size: 1.1rem;
  font-weight: bold;
  padding: 0.2em 0 0.8em;
}

@media screen and (min-width: 600px) {
.dlss_wrap_sp{
  display: none;
}
.dlss_wrap_pc{
  display: block;
  background: url(../images/dlss4_tb.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 400px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: left;
}
.dlss_wrap {
  padding: 13% 0 0 10%;
}
.dlss_subtitle{
  font-size: 0.85rem;
}
.dlss_title{
  font-size: 1.3rem;
  font-weight: bold;
  padding: 0.3em 0 1em;
}
.dlss_detail{
  font-size: 0.8rem;
}
}

@media screen and (min-width: 1024px) {
  .dlss_wrap_pc {
    height: 500px;
  }
  .dlss_wrap {
    padding: 18% 4% 0 10%;
  }
  .dlss_title{
    font-size: 1.4rem;
    padding: 0.7em 0 1.5em;
  }
  .dlss_detail{
    font-size: 0.9rem;
  }
}

@media screen and (min-width: 1440px) {
.dlss_wrap_pc{
  background: url(../images/dlss4_pc.jpg);
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 600px;
}
.dlss_wrap {
  padding: 18% 8% 0 10%;
}
.dlss_detail {
  font-size: 1rem;
}
.dlss_subtitle {
  font-size: 1rem;
}
}

@media screen and (min-width: 1920px) {
  .dlss_wrap {
    padding: 17% 10% 0 20%;
  }
}
/* ここまで dlss */

/* ここから compare */
.compare_mainbg{
  text-align: center;
  padding: 4em 0;
}
.compare__ttl{
  padding: 2vw 0 0;
  line-height: 1.4;
}
.compare__text {
  padding: 4vw 0;
}
.compare__caution{
  font-size: 0.6rem;
  padding: 0.7em 4%;
  line-height: 1.2;
}
.js-img-compare{
  width: 100%;
  margin: 4vw 0 0;
}
.images-compare-label{
  font-family: 'GeForce-Bold';
  font-size: 1.5rem;
  background: rgba(119,185,0,0.2);
  color:#FFF;
}

@media screen and (min-width: 600px) {
  .compare__caution {
    font-size: 0.7rem;
    padding: 0 4% 1em;
  }
}

@media screen and (min-width: 1024px) {
  .compare_mainbg {
    padding: 6em 0 8em;
}
  .compare_mainbg__contents{
    max-width: 1000px;
    margin: 0 auto 1.5em;
  }
  .compare__ttl {
    font-size: 1.4rem;
    padding: 1em 0 0;
  }
  .compare__text {
    padding: 2em 4em 4em;
  }
  .compare__caution {
    font-size: 0.8rem;
    padding: 0;
}
  .js-img-compare {
    max-width: 900px !important;
    margin: 0 auto;
}
}
/* ここまで compare */

/* ここから reflex */
.reflex{
  text-align: center;
}
.reflex_wrap_pc{
  display: none;
}
.reflex_wrap{
  padding: 2vw 8vw 8vw;
  color: #FFF;
}
.reflex_subtitle{
  font-size: 0.7rem;
}
.reflex_title{
  font-size: 1.1rem;
  font-weight: bold;
  padding: 0.2em 0 0.8em;
}

@media screen and (min-width: 600px) {
.reflex_wrap_sp{
  display: none;
}
.reflex_wrap_pc{
  display: block;
  background: url(../images/reflex2_tb.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 380px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: left;
}
.reflex_wrap {
  padding: 18% 0 0 10%;
}
.reflex_subtitle{
  font-size: 0.85rem;
}
.reflex_title{
  font-size: 1.3rem;
  font-weight: bold;
  padding: 0.3em 0 1em;
}
.reflex_detail{
  font-size: 0.8rem;
}
}

@media screen and (min-width: 1024px) {
  .reflex_wrap_pc {
    height: 420px;
  }
  .reflex_wrap {
    padding: 16% 4% 0 10%;
  }
  .reflex_title{
    font-size: 1.4rem;
    padding: 0.7em 0 1.5em;
  }
  .reflex_detail{
    font-size: 0.9rem;
  }
}

@media screen and (min-width: 1440px) {
.reflex_wrap_pc{
  background: url(../images/reflex2_pc.jpg);
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 560px;
}
.reflex_wrap {
  padding: 18% 8% 0 10%;
}
.reflex_detail {
  font-size: 1rem;
}
.reflex_subtitle {
  font-size: 1rem;
}
}

@media screen and (min-width: 1920px) {
  .reflex_wrap_pc{
    height: 600px;
  }
  .reflex_wrap {
    padding: 17% 10% 0 20%;
  }
}
/* ここまで reflex */

/* ここから max_q */
.max_q{
  padding: 8vw 0 0;
  text-align: center;
}
.max_q__ttl{
  padding: 2vw 0 0;
  line-height: 1.4;
}
.max_q__text {
  padding: 4vw 0;
}

@media screen and (min-width: 1024px) {
  .max_q {
    padding: 8em 0 0;
    text-align: center;
}
  .max_q__contents{
    max-width: 1000px;
    margin: 0 auto;
  }
  .max_q__ttl {
    font-size: 1.4rem;
    padding: 1em 0 0;
  }
  .max_q__text {
    padding: 2em 0 4em;
  }
}
/* ここまで max_q */

/* ここから aipc */
.aipc{
  text-align: center;
}
.aipc_wrap_pc{
  display: none;
}
.aipc_wrap{
  padding: 8vw;
  color: #FFF;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.6);
}
.aipc_subtitle{
  font-size: 0.7rem;
}
.aipc_title{
  font-size: 1.1rem;
  font-weight: bold;
  padding: 0.2em 0 0.8em;
}

@media screen and (min-width: 600px) {
.aipc_wrap_sp{
  display: none;
}
.aipc_wrap_pc{
  display: block;
  background: url(../images/rtx_ai_tb.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 380px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: left;
}
.aipc_wrap {
  padding: 18% 12% 0 10%;
}
.aipc_subtitle{
  font-size: 0.85rem;
}
.aipc_title{
  font-size: 1.3rem;
  font-weight: bold;
  padding: 0.3em 0 1em;
}
.aipc_detail{
  font-size: 0.8rem;
}
}

@media screen and (min-width: 1024px) {
  .aipc_wrap_pc {
    height: 480px;
  }
  .aipc_wrap {
    padding: 18% 13% 0 10%;
  }
  .aipc_title{
    font-size: 1.4rem;
    padding: 0.7em 0 1.5em;
  }
  .aipc_detail{
    font-size: 0.9rem;
  }
}

@media screen and (min-width: 1440px) {
.aipc_wrap_pc{
  background: url(../images/rtx_ai_pc.jpg);
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 560px;
}
.aipc_wrap {
  padding: 18% 14% 0 10%;
}
.aipc_detail {
  font-size: 1rem;
}
.aipc_subtitle {
  font-size: 1rem;
}
}

@media screen and (min-width: 1920px) {
  .aipc_wrap_pc{
    height: 680px;
  }
  .aipc_wrap {
    padding: 20% 18% 0 20%;
  }
}
/* ここまで aipc */

/* ここから creator */
.creator{
  text-align: center;
}
.creator_wrap_pc{
  display: none;
}
.creator_wrap{
  padding: 8vw 8vw 0;
  color: #FFF;
}
.creator_subtitle{
  font-size: 0.7rem;
}
.creator_title{
  font-size: 1.1rem;
  font-weight: bold;
  padding: 0.2em 0 0.8em;
}

@media screen and (min-width: 600px) {
.creator_wrap_sp{
  display: none;
}
.creator_wrap_pc{
  display: block;
  background: url(../images/creator_tb.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 380px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: left;
}
.creator_wrap {
  padding: 18% 0 0 10%;
}
.creator_subtitle{
  font-size: 0.85rem;
}
.creator_title{
  font-size: 1.3rem;
  font-weight: bold;
  padding: 0.3em 0 1em;
}
.creator_detail{
  font-size: 0.8rem;
}
}

@media screen and (min-width: 1024px) {
  .creator_wrap_pc {
    height: 420px;
  }
  .creator_wrap {
    padding: 14% 0 0 10%;
  }
  .creator_title{
    font-size: 1.4rem;
    padding: 0.7em 0 1.5em;
  }
  .creator_detail{
    font-size: 0.9rem;
  }
}

@media screen and (min-width: 1440px) {
.creator_wrap_pc{
  background: url(../images/creator_pc.jpg);
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 560px;
}
.creator_wrap {
  padding: 18% 10% 0 10%;
}
.creator_detail {
  font-size: 1rem;
}
.creator_subtitle {
  font-size: 1rem;
}
}

@media screen and (min-width: 1920px) {
  .creator_wrap_pc{
    height: 680px;
  }
  .creator_wrap {
    padding: 20% 14% 0 20%;
  }
}
/* ここまで creator */

/* ここから creator add */
.creator_add_wrap{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5em 2em;
  padding: 8vw;
}
.creator_sttl{
  font-size: 0.7rem;
  padding: 4vw 0 0;
}
.creator_add_text{
  font-size: 0.65rem;
  text-align: left;
  padding: 1.5vw 0 0;
}

@media screen and (min-width: 600px) {
  .creator_add_wrap{
    padding: 0 14% 6em;
  }
  .creator_add_text {
    font-size: 0.7rem;
    line-height: 1.4;
  }
}

@media screen and (min-width: 1024px) {
  .creator_add_wrap{
    grid-template-columns: repeat(4,1fr);
    gap: 0 2em;
    padding: 6em 8%;
  }
  .creator_add_text {
    font-size: 0.8rem;
  }
}

@media screen and (min-width: 1440px) {
  .creator_add_wrap{
    padding: 0 16% 8em;
    gap: 0 2.5em;
  }
  .creator_sttl {
    font-size: 0.8rem;
  }
  .creator_ttl{
    font-size: 1.05rem;
  }
  .creator_add_text {
    font-size: 0.9rem;
    line-height: 1.5;
    padding: 1rem 0 0;
  }
}

@media screen and (min-width: 1920px) {
  .creator_add_wrap{
    padding: 0 18% 10em;
  }
}
/* ここまで creator add */

/* ここから student */
.student{
  text-align: center;
}
.student_wrap_pc{
  display: none;
}
.student_wrap{
  padding: 4vw 8vw 0;
  color: #FFF;
}
.student_title{
  font-size: 1.1rem;
  font-weight: bold;
  padding: 0.2em 0 0.8em;
}
.student_bg_sp{
  background: url(../images/student_sp.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
/* @media screen and (min-width: 600px) {
.student_wrap_sp{
  display: none;
}
.student_wrap_pc{
  display: block;
  background: url(../images/student_pc.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  height: 380px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: left;
}
.student_wrap {
  padding: 18% 0 0 10%;
}
.student_title{
  font-size: 1.3rem;
  font-weight: bold;
  padding: 0.3em 0 1em;
}
.student_detail{
  font-size: 0.8rem;
}
} */

@media screen and (min-width: 1024px) {
  .student_wrap_sp{
    display: none;
  }
  .student_wrap_pc{
    display: block;
    background: url(../images/student_pc.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 100%;
    height: 480px;
    display: flex;
    justify-content: center;
    flex-direction: column-reverse;
    text-align: left;
  }
  .student_wrap {
    padding: 4em 6em 4em 50%;
    width: calc(50% - 6em);
  }
  .student_title{
    font-size: 1.4rem;
    padding: 0.7em 0 1.5em;
  }
  .student_detail{
    font-size: 0.9rem;
  }
}

@media screen and (min-width: 1920px) {
  .student_wrap_pc{
    background-position: center right;
    height: 520px;
  }
  .student_wrap {
    width: calc(50% - 26em);
}
}
/* ここまで student */

/* ここから function */
.function{
  padding: 10vw 0 8vw;
  text-align: center;
}
.function__ttl{
  padding: 0 0 4vw;
  line-height: 1.3;
}
.function_wrap{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2em 1em;
}
.function_item{
  background: #1A1A1A;
}
.function_textwrap{
  padding: 1vw 4vw 4vw;
}
.function_title{
  font-size: 0.7rem;
  line-height: 1.4;
  padding: 3vw 0 1vw;
}
.function_text{
  font-size: 0.7rem;
  line-height: 1.4;
  text-align: left;
}

@media screen and (min-width: 600px) {
.function {
  padding: 6em 0;
}
.function_wrap{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3em 2em;
  padding: 0 6%;
}
.function_item {
  padding: 0 0 1em;
}
.function_title {
  font-size: 0.8rem;
  padding: 1em 0;
}
.function_text{
  font-size: 0.7rem;
  line-height: 1.4;
}
.function_textwrap {
  padding: 1em 2em;
}
}

@media screen and (min-width: 1024px) {
  .function__ttl {
    font-size: 1.4rem;
    padding: 0 0 2em;
  }
  .function_wrap {
    max-width: 860px;
    margin: 0 auto;
  }
  .function_textwrap {
    padding: 1em 2.5em 1.5em;
}
  .function_title {
    padding: 1.5em 0 1em;
    font-size: 0.9rem;
    font-weight: 500;
  }
  .function_text {
    padding: 0;
    font-size: 0.8rem;
  }
}

@media screen and (min-width: 1440px) {
  .function_title {
    font-size: 1.05rem;
  }
  .function_text{
      font-size: 0.9rem;
      line-height: 1.5;
  }
}
/* ここまで function */

/* ここから bottom */
.bottom {
  padding: 4vw 12vw 12vw;
}
.bottom_caution{
  color: #ccc;
  font-size: 0.54rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 1024px) {
  .bottom {
    padding: 4em 0;
    margin: 0 auto;
  }
  .bottom_caution{
    width: 720px;
    margin: 0 auto;
    font-size: 0.6rem;
    letter-spacing: 0.05vw;
  }
}

/* ここまで bottom */

/* ここから フッター */
#footer {
  background: #1a1a1a;
}
#footer a:hover {
  list-style: none;
}
#footer .primary {
  padding: 6vw 8vw;
}
#footer .secondary {
  background: #000;
  padding: 3vw 0;
}
#footer .primary img {
  width: 30%;
}
#footer .navi {
  display: flex;
  padding: 3vw 1vw 0;
}
#footer .navi li {
  list-style: none;
  padding: 1vw 3vw 1vw 0;
  font-size: 2.7vw;
}
#footer .copyright {
  text-align: center;
  margin: 0 auto;
  color: #a5a5a5;
  font-size: 2.1vw;
}

@media screen and (min-width: 600px) {
  #footer .primary {
    padding: 3vw 14vw 2vw;
    text-align: center;
  }
  #footer .primary img {
    width: 18%;
  }
  #footer .navi li {
    font-size: 0.8rem;
    padding: 0.9vw 1.5vw;
  }
  #footer .navi {
    justify-content: center;
    padding: 1.7vw 0 0;
  }
  #footer .navi i{
    padding-right: 0.4em;
  }
  #footer .secondary {
    padding: 1.3vw 0;
  }
  #footer .copyright {
    font-size: 1vw;
  }
}

@media screen and (min-width: 1024px) {
  #footer .primary img {
    width: 12%;
  }
  #footer .navi {
    padding: 0.8vw 0 0;
  }
  #footer .navi li {
    font-size: 0.8rem;
    padding: 1em;
  }
  #footer .primary {
    padding: 2vw 14vw 1vw;
  }
  #footer .copyright {
    font-size: 0.7rem;
  }
}
/* ここまで フッター */

/* go to TOP */
#page-top a{
  display: flex;
  justify-content:center;
  align-items:center;
  background:#76b900;
  border-radius: 5px;
  width: 60px;
  height: 60px;
  color: #fff;
  text-align: center;
  text-transform: uppercase; 
  text-decoration: none;
  font-size:0.6rem;
  transition:all 0.3s;
}
#page-top a:hover{
  background: #507d00;
}
#page-top {
  position: fixed;
  right: 10px;
  z-index: 2;
    /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}
@media screen and (max-width: 768px) {
  #page-top a{
    opacity: 0.5;
  }
}
#page-top.UpMove{
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}
#page-top.DownMove{
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
    opacity: 1;
  transform: translateY(0);
  }
  to {
    opacity: 1;
  transform: translateY(100px);
  }
}
.pagetop:hover {
  opacity: .8;
}
/* go to TOP */