@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,600;1,600&family=Noto+Sans+JP:wght@100..900&display=swap');

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Reset
	- Reset form
# Utilities
	- Accessibility
	- Helper
# Base
	- Box sizing
	- Typography
	- Elements
	- Links
	- Forms
# Layouts
# Effects
# Components
	- Header
	- Navigation
	- Footer
	- Main
	- Loader
# Plugins
# Media
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Comment
--------------------------------------------------------------*/
/* - Comment
----------------------------------------------*/
/*---------- Comment ----------*/
/**
 * Comment.
 */

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/
/* - Reset
----------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  box-sizing: content-box; /* Add the correct box sizing in Firefox. */
  height: 0; /* Add the correct box sizing in Firefox. */
  overflow: visible; /* Show the overflow in Edge and IE. */
}

img {
  border-style: none;
}

a {
  background-color: transparent;
}

/* - Reset form
----------------------------------------------*/
input,
select,
textarea,
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0;
  border: none;
  outline: none;
  background: none;
  border-radius: 0;
  cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none; /* Remove the style in Safari. */
}

input[type="submit"]:focus,
input[type="button"]:focus {
  outline-offset: -2px;
}

input[type="radio"],
input[type="checkbox"] {
  display: none;
}

input[type="radio"]:checked + label,
input[type="checkbox"]:checked + label {
}

textarea {
  resize: vertical;
  overflow: auto;
}

::-moz-selection,
::selection {
  background: #fff;
  text-shadow: none;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
/* - Accessibility
----------------------------------------------*/
/* - Helper
----------------------------------------------*/
.tc {
  text-align: center;
  justify-content: center;
  align-items: center;
}

.tl {
  text-align: left;
}

.tr {
  text-align: right;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb90 {
  margin-bottom: 90px;
}

.mb100 {
  margin-bottom: 100px;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mt60 {
  margin-top: 60px;
}

.mt70 {
  margin-top: 70px;
}

.mt80 {
  margin-top: 80px;
}

.mt90 {
  margin-top: 90px;
}

.mt100 {
  margin-top: 100px;
}

.hidden {
  display: none !important;
  visibility: hidden;
}

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

.invisible {
  visibility: hidden;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
/* - Box sizing
----------------------------------------------*/
*,
*:before,
*:after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

/* - Typography
----------------------------------------------*/
html {
  font-family: "Noto Sans JP", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-style: normal;
  font-size: 62.5%;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
  color: #000000;
}

.font-en {
  font-family: "Figtree", sans-serif;
  font-weight: 600;
}

small {
  font-size: 80%;
}

big {
  font-size: 120%;
}

b, strong {
  font-weight: bolder;
}

em, i {
  font-style: normal;
}

sup, sub {
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
  position: relative;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

blockquote {
  padding: 10px;
  background: lightgrey;
}

cite, dfn {
  font-style: italic;
}

abbr, acronym {
  background: lightgrey;
}

mark {
  background-color: lightpink;
  text-decoration: none;
}

ins {
  background-color: lightyellow;
  text-decoration: none;
}

del {
}

/* - Elements
----------------------------------------------*/
audio, canvas, iframe, img, svg, video {
  vertical-align: middle;
}

img,
svg {
  width: 100%;
  height: auto;
}

.autoImg {
  width: auto;
  max-width: 100%;
}

.js-tel {
  cursor: default;
}

.disp-pc {
  display: block;
}

.disp-sp {
  display: none;
}

@media only screen and (max-width: 767px) {
  .disp-pc {
    display: none;
  }

  .disp-sp {
    display: block;
  }
}

/* - Links
----------------------------------------------*/
a {
  color: inherit;
}

a,
a:hover,
a:active {
  text-decoration: none;
  outline: 0;
}

:focus {
  outline: none;
}

/* - Forms
----------------------------------------------*/
input, textarea {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;

  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-appearance: none;
  max-width: 100%;
  cursor: pointer;
}

/*
input[type="text"],
input[type="number"],
input[type="tel"],
input[type="email"],
input[type="button"],
input[type="submit"] {
    padding: 0;
    border: none;
    border-radius: 0;
    outline: none;
    background: none;

    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    box-sizing: border-box;
    cursor: pointer;
}
*/

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

input[type="radio"] {
  display: none;
}

input[type="radio"]:checked + label {
  background: #ff0000;
}

input[type="checkbox"] {
  display: none;
}

input[type="checkbox"]:checked + label {
  background: #ff0000;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
  border-radius: 0;
}

textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
}

button,
input[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
#page-wrapper {
  width: 100%;
  overflow: hidden;
}

.lyt-inner {
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
}

@media only screen and (max-width: 1024px) {
  #wrapper .lyt-inner{
		width: 100%;
		padding: 0;
	}
}

.flex-box{
	display: flex;
	flex-flow: row nowrap;
}

html{scroll-padding-top:120px;}
@media (max-width:767px){html{scroll-padding-top:80px;}}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
/* - Header
----------------------------------------------*/
#gHeader {
  width: 100%;
  height: 72px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 500;
  background: #fff;
}

.gH_logo {
  display: block;
  width: 146px;
  height: auto;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 200;
}

.head_btn {
  display: block;
  width: 146px;
  height: auto;
  position: absolute;
  top: 22px;
  right: 70px;
  z-index: 200;
}

@media only screen and (max-width: 1024px) {

}

@media only screen and (max-width: 767px) {
  #gHeader {
    height: 60px;
  }
  
  .gH_logo {
    width: 120px;
    top: 8px;
  }
  
  .head_btn {
    width: 130px;
    top: 18px;
    right: 70px;
  }
}


/* - Navigation
----------------------------------------------*/
/*---------- drawerSwitch ----------*/
.drawerSwitch {
  display: block;
  width: 55px;
  height: 55px;
  position: fixed;
  top: 8px;
  right: 10px;
  z-index: 200;
  cursor: pointer;
}

.drawerSwitch,
.drawerSwitch *,
.drawerSwitch *:before,
.drawerSwitch *:after {
  transition: all 300ms;
}

.drawerSwitch_border {
  display: block;
  width: 25px;
  height: 16px;
  margin: auto auto;
  position: relative;
}

.drawerSwitch_border span {
  display: block;
  width: 29px;
  height: 2px;
  background: #231815;
  position: absolute;
  left: 0;
}

.drawerSwitch_border span:nth-child(1) {
  top: 0;
}

.drawerSwitch_border span:nth-child(2) {
  top: 7px;
}

.drawerSwitch_border span:nth-child(3) {
  bottom: 0;
}

/* active */
.drawerSwitch[aria-expanded="true"] {
  background: transparent;
}

.drawerSwitch[aria-expanded="true"] .drawerSwitch_border span {
  background: #231815;
}

.drawerSwitch[aria-expanded="true"] .drawerSwitch_border span:nth-child(1) {
  transform: rotate(45deg);
  top: 7px;
}

.drawerSwitch[aria-expanded="true"] .drawerSwitch_border span:nth-child(2) {
  opacity: 0;
}

.drawerSwitch[aria-expanded="true"] .drawerSwitch_border span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 7px
}

@media only screen and (max-width: 1024px) {

}

@media only screen and (max-width: 767px) {
  .drawerSwitch {
    top: 2px;
    right: 15px;
  }
  
  .drawerSwitch_border {
    width: 30px;
  }

  .drawerSwitch_border span {
    width: 32px;
    height: 1px;
  }
}

/*---------- drawerNav ----------*/
#drawer {
  width: 100%;
  height: 100%;
  background: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  /*! overflow-y: scroll; */
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
}

#drawer[aria-expanded] {
  transition: all 400ms;
}

#drawer[aria-expanded="false"] {
  transform: translateY(-100%);
  visibility: hidden;
}

#drawer[aria-expanded="true"] {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

.gNav {
  display: block;
  width: 100%;
  padding: 40px 0;
  position: relative;
  border-top: 90px solid #ea0220;
}

.nav-list + .nav-list{
  margin-top: 30px;
}

.gNav_list-1st {
  width: 100%;
  margin: 0 auto;
  justify-content: center;
  gap:0 50px;
}

.gNav_item{
  font-size: 11px;
  font-weight: 600;
}

.gNav .menu-list li{
  padding: 10px 0;
  position: relative;
}

.gNav .menu-list.flex-box{
  align-items: center;
}

.gNav .menu-list.flex-box li:not(:last-of-type)::after{
  content: "/";
  position: absolute;
  font-size: 11px;
  padding: 0 0 0 6px;
}

.gNav .menu-list.flex-box{
  gap: 0 20px;
}

.gNav .menu-title{
  font-size: 25px;
  color: #ea0220;
}

.gNav .img-link{
  max-width: 256px;
  margin: 5px 0 0 0;
}

.gNav .indent .gNav_item{
  font-size: 14px;
  padding-left: 30px;
}

@media only screen and (max-width: 767px) {
  .gNav {
    border-top: 80px solid #ea0220;
  }

  .nav-list + .nav-list{
    margin-top: 10px;
  }

  .gNav_list-1st.flex-box {
    width: 90%;
    margin: 0 auto;
    flex-flow: column;
  }
  
  .nav-box + .nav-box{
    margin-top: 10px;
  }

  .gNav_item{
    font-size: 3vw;
  }

  .gNav .menu-list li{
    padding: 10px 0 5px 0;
  }

  .gNav .menu-list.flex-box li:not(:last-of-type)::after{
    font-size: 3vw;
  }

  .gNav .menu-list.flex-box{
    gap: 0 20px;
  }

  .gNav .menu-title{
    font-size: 8vw;
  }

  .gNav .img-link{
    max-width: 75%;
  }

  .gNav .indent .gNav_item{
    font-size: 3.5vw;
  }
  
  .gNav .img-link{
    margin: 5px 0 15px 0;
  }
  
}

/* - Footer
----------------------------------------------*/
/*--------------------------------------------------------------
## Footer
--------------------------------------------------------------*/
#gFooter {
  padding: 30px 0;
  position: relative;
}

.gF_logo {
  width: 120px;
  height: 38px;
  margin: 0 auto;
}

.gF_logo svg {
  fill: #fff;
}

.copyright {
  font-size: 1.1rem;
  margin: 30px 0 0 0;
  justify-content: center;
  align-items: center;
  gap:0 20px;
}

.copyright img{
  width: 44px;
}

@media only screen and (max-width: 767px) {
  .copyright {
    font-size: 2.2vw;
    margin: 0;
    gap:0 10px;
  }

  .copyright img{
    width: 32px;
  }
}

/*---------- .pagetop ----------*/
.pagetop {
  display: block;
  width: 40px;
  height: 40px;
  position: fixed;
  top: auto;
  bottom: 20px;
  right: 5%;
  opacity: 0;
}

.pagetop.is-bottom {
  position: absolute;
  top: -20px;
  bottom: auto;
  right: 5%;
}

.pagetop_inner {
  fill: #ccc;
}

.pagetop_arrow {
  stroke: #000;
}

/* - Anime
----------------------------------------------*/
.fadeUp {
  opacity: 0;
  transform: translateY(50px);
  transition: all 600ms cubic-bezier(0.33, 1, 0.68, 1);
}

.fadeUp.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.fadeToRight {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 600ms cubic-bezier(0.33, 1, 0.68, 1);
}

.fadeToRight.is-inview {
  opacity: 1;
  transform: translateX(0);
}

.fadeToLeft {
  opacity: 0;
  transform: translateX(50px);
  transition: all 600ms cubic-bezier(0.33, 1, 0.68, 1);
}

.fadeToLeft.is-inview {
  opacity: 1;
  transform: translateX(0);
}


/* - Main
----------------------------------------------*/
.flex-box{
	display: flex;
	flex-flow: row nowrap;
}

.link--red:after{
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  width: 14px;
  height: 14px;
  background: url("/newgrads/assets/img/arrow_red.svg") no-repeat center / contain;
  transform: translateY(-50%);
}

.link--white::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  width: 14px;
  height: 14px;
  background: url("/newgrads/assets/img/arrow_white.svg") no-repeat center / contain;
  transform: translateY(-50%);
}

@media only screen and (max-width: 767px) {
  .link--white::after{
    top: 45%;
    right: 5px;
    width: 16px;
    height: 16px;
    transform: translateY(-45%);
  }
  
  .link--red::after {
    top: 45%;
    right: 5px;
    width: 16px;
    height: 16px;
    transform: translateY(-45%);
  }
}

/* ---------------------------------
   13. modal
--------------------------------- */
.movie-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .35s ease, visibility .35s ease;
}

.movie-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.movie-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.75);
}

.movie-modal__content {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(90vw, 960px);
  transform: translate(-50%, -50%);
}

.movie-modal__movie {
  position: relative;
  padding-top: 56.25%;
  background: #000;
}

.movie-modal__movie iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.movie-modal__close {
  position: absolute;
  right: -16px;
  top: -46px;
  width: 36px;
  height: 36px;
  border: 0;
  background: none;
  cursor: pointer;
}

.movie-modal__close::before,
.movie-modal__close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 2px;
  background: #fff;
}

.movie-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.movie-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* ---------------------------------
   14. responsive
--------------------------------- */
@media (max-width: 1024px) {
  .sec__band {
    left: 0 !important;
    right: 0 !important;
    height: 320px;
  }

  .sec__stripe {
    left: 68%;
    height: 170px;
  }

  .font-en.sec-en {
    font-size: 64px;
    top: 0;
  }
  
  .section3 {
    padding: 92px 0 78px 0;
  }
  
  .section4 .sec__band {
    top: 4px;
  }
  
  .section5 {
    padding: 59px 0 0 0;
  }
}

@media (max-width: 767px) {
  #page-wrapper {
    padding: 60px 0 0;
  }

  .hero {
    /*! margin-bottom: 30px; */
  }

  .section1{
    padding: 0 0 40px 0;
  }
  
  .section3{
    padding: 12vw 0 10px 0;
  }
  
  .section5 {
    padding: 10vw 0 0 0;
  }

  .section2,
  .section4 {
    padding: 0;
  }

  .font-en.sec-en {
    top: 0;
    font-size: 10vw;
  }
  
  .section5 .font-en.sec-en {
    margin-left: -3px;
  }

  .card-list {
    flex-flow: row wrap;
    gap: 18px 12px;
  }

/*   .card-list--2,
  .card-list--3,
  .card-list--4,
  .top-wide-card {
    max-width: none;
    width: auto;
  } */

  .card-list--3 .top-card,
  .card-list--4 .top-card,
  .card-list--2 .top-card {
    width: calc(50% - 6px);
    flex: 0 0 calc(50% - 6px);
  }
  
  .section3 .card-list--4 .top-card{
    width: calc(50% - 26px);
    flex: 0 0 calc(50% - 26px);
  }
  
  .section4 .card-list--3 .top-card{
    width: calc(50% - 70px);
    flex: 0 0 calc(50% - 70px);
  }
  
  .section1 .top-card--movie {
    width: 50%;
    flex: 0 0 50%;
    margin: 0 auto;
    position: relative;
  }
  
  .section1 .top-card--movie:after {
    position: absolute;
    content: "";
    width: 70vw;
    height: 35vw;
    right: -24vw;
    top: 23px;
    background: url("/newgrads/assets/img/top/stripe-sp.png") no-repeat 0 0 / cover;
    z-index: -1;
  }

  .top-card__link,
  .top-wide-card__link,
  .top-card__movie-label {
    font-size: 3.2vw;
    line-height: 1.4;
    margin: 0;
  }
  
  .section4 .top-card:last-of-type .top-card__link{
    font-size: 2.8vw;
    line-height: 1.4;
    letter-spacing: -0.05em;
    padding: 2px 0 4px 0;
  }

  .movie-play {
    width: 42px;
    height: 42px;
  }

  .sec__stripe {
    background: none;
  }

  .sec__band {
    height: 47vw;
    top: 0;
  }

  .movie-modal__close {
    right: 0;
    top: -42px;
  }

  .section2 .section2__head {
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
  }

  .section2 .section2__head .top-wide-card__link {
    margin: 0;
    font-size: 4vw;
  }
}