@import url("https://fonts.googleapis.com/css2?family=Asar&family=Zen+Old+Mincho&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400&display=swap');

:root {
  /*variables css*/
  --header-height: 4rem;

  /*colors*/
  --title-color: #fff;
  --text-color: #fff;
  --body-color: #fefbfb;
  --container-color: #fff;

  /*font and typograph*/
  --body-font: "Arial", YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN",
    "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  --biggest-font-size: 2rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1.125rem;
  --normal-font-size: 0.938rem;
  --small-font-size: 0.813rem;

  /*font-weight*/
  --font-semi-bold: 600;
  --font-bold: 700;

  /*margin*/
  --mb-1: 0.5rem;
  --mb-2: 1rem;
  --mb-3: 1.5rem;
  --mb-4: 2rem;
  --mb-5: 2.5rem;
  --mb-6: 3rem;

  /*z index*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

@media screen and(min-width: 968px) {
  :root {
    --biggest-font-size: 3rem;
    --h2-font-size: 1.75rem;
    --h3-font-size: 1.125rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
  }
}

/*base*/
*,
::before,
::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  line-height: 1.6;
  position: relative;
  height: 100vh;
	background: #22335e;
}

h1,
h2,
h3,
ul,
p {
  margin: 0;
}

h1,
h2,
h3 {
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
}

ul {
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}
.video__area {
  position: relative;
  z-index: -1;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}

#video {
  position: fixed;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 177.77777778vh;
  height: 56.25vw;
  min-height: 100%;
  min-width: 100%;
}







.glass {
  width: 100%;
  max-width: 600px;
  padding: 20px;
  background-color: rgba(196, 196, 196, 0.1);
  border-radius: 5px;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.Text-Span {
  position: relative;
  z-index: 1;
  display: inherit;
}
.Text-Span:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: #fff;
  z-index: -1;
  transition: all 0.8s;
}
.Text-Span.isActive:after {
  width: 100%;
}

.scroll-text {
  display: inline-block;
  position: absolute;
  left: 50%;
  bottom: 10%;
  transform: translate(-50%, 0);
  z-index: 2;
  padding: 10px 10px 90px;
  overflow: hidden;
  color: #fff;
  font-size: 14px;
  font-family: "Josefin Sans", sans-serif;
  line-height: 1;
  letter-spacing: 0.2em;
  text-decoration: none;
  writing-mode: vertical-lr;
  transition: opacity 1s;
}
.scroll-text.contactArea {
  display: inline-block;
  position: absolute;
	left: auto;
  right: -10px;
  bottom: 0;
  transform: translate(-50%, 0);
  z-index: 2;
  padding: 10px 10px 90px;
  overflow: hidden;
  color: #fff;
  font-size: 14px;
  font-family: "Josefin Sans", sans-serif;
  line-height: 1;
  letter-spacing: 0.2em;
  text-decoration: none;
  writing-mode: vertical-lr;
  transition: opacity 1s;
}
.scroll-text.disable {
  opacity: 0;
}
.scroll-text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 80px;
  background: #fff;
}
.scroll-text::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 80px;
  background: rgba(255, 255, 255, 0.4);
}
.scroll-text::after {
  animation: sdl 3s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes sdl {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

/*class css*/
.section {
  padding: 4rem 0 2rem;
}
.right {
  text-align: right;
	font-size: 1.1rem;
}
#section__title {
  text-align: center;
  font-size: var(--mb-6);
  letter-spacing: 0.05em;
  font-weight: bold;
	line-height: 1;
	margin-top: 30px;
}

#section__title + p {
  text-align: center;
  font-size: 18px;
	margin: 15px 0 40px 0;
}

.contents__data {
  color: var(--title-color);
}

.contents__description {
	font-size: 1.1rem;
	line-height: 2.2;
	padding-top: 30px;
}
.contents__description span {
	display: block;
	margin-bottom: 20px;
}

/* layoout */
.l-main {
  overflow: hidden;
}

.bd-container {
  max-width: 1200px;
  width: 100%;
  /*width: calc(100% - 3rem);
  margin-left: var(--mb-3);*/
  margin-right: var(--mb-3);
}
.logoAction {
	padding-bottom: 60%;
}

.bd-grid {
  display: grid;
  gap: 1.5rem;
}

.l-header {
	/*position: fixed;*/
  width: 100%;
  background-color: #70707130;
}

/*nav*/
.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav__logo {
max-width: 50px;
margin: 0 auto;
}
.nav__logo img {
	text-align: center;
	margin-left: 1rem;
}

@media screen and (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    padding: 2.5rem 0;
    text-align: center;
    background-color: rgba(2, 34, 85, 0.8);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: 0.4s;
    box-shadow: 0 0 4px rgb(0 0 0 / 10%);
    z-index: var(--z-fixed);
  }
}
.nav__list {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.nav__item {
  margin-bottom: var(--mb-3);
  font-size: 18px;
}

.nav__link {
  display: inline-block;
  padding: 1rem;
  color: var(--body-color);
}
.nav__logo,
.nav__toggle {
  color: #fff;
  font-weight: var(--font-semi-bold);
}

.nav__link {
  transition: 0.3s;
}

.nav__toggle {
  font-size: 2.5rem;
  cursor: pointer;
  z-index: var(--z-fixed);
}

/*show menu*/
.show-menu {
  left: 0;
}

/* change background header */
.scroll-header {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}
section {
  padding-top: var(--mb-6);
}
#entry {
  padding-top: 0;
  height: calc(100vh - var(--header-height));
}
#entry .body {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: center;
}
/* main */
.entry__data {
  display: block;
  padding: 1rem;
  margin: 0 auto;
  background: rgba(2, 34, 85, 0.5);
}
.entry__data .logo__content {
  text-align: center;
}
.entry__data img {
  width: 80px;
}
.entry__content,
.entry__title {
  font-weight: normal;
  color: var(--body-color);
  margin-top: var(--mb-1);
  text-align: center;
}
.entry__title {
  font-size: var(--mb-2);
}
#Society .contents__description {
	font-size: 2rem;
	font-family: 'Noto Serif JP', serif;
	text-align: center;
	letter-spacing: 0.2em;
}
iframe {
  height: 300px;
}
.company__table .table__contents {
  padding: 15px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.company__table .table__contents span:first-child {
	width: 100px;
  margin-right: 1.3rem;
  display: inline-block;
  font-weight: bold;
}

footer {
  background: #022255;
  padding: var(--mb-1);
  color: var(--body-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 3rem;
  position: relative;
}

/* management */
h2.MV-title {
  font-size: var(--mb-6);
  font-weight: normal;
  text-align: center;
}
p.MV-title {
  font-size: var(--mb-3);

  color: var(--body-color);
  text-align: center;
}
p.MV-title.blue {
	color: #22335e;
	font-weight: bold;
}
.bigTitle {
  padding: 0;
  position: relative;
  height: 100vh;
}
.bigTitle .body {
  position: absolute;
  top: calc(50% - var(--header-height));
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  margin: 0 auto;
}

.table__title {
  font-size: var(--biggest-font-size);
}
.row_table,
.row_table td,
.row_table th {
  border-collapse: collapse;
  text-align: center;
  width: 100%;
}
.row_table tr {
  display: flex;
  margin: 1rem 0;
  align-items: center;
}
.row_table th {
  color: #fff;
  display: block;
  width: 60%;
  text-align: left;
  font-size: var(--mb-2);
}

.row_table td {
  text-align: left;
  display: block;
  width: 100%;
  padding: 6px 25px;
  border-left: 1px solid #fff;
}
.split-section {
  display: flex;
  flex-direction: column-reverse;
}
.split-section .contents__data {
  margin: 110px 0 0 0;
}
.split-section .contents__data.layout02 {
  margin: 30px 0 100px 0;
}
.split-section .glass {
  padding: 10px;
}
.profile__image {
  margin: 2rem auto;
  width: calc(100% - 3rem);
  max-width: 450px;
}
.profile__image img {
  width: 100%;
  max-width: 450px;
  padding: 80px 0 1rem 0;
}
table.stats {
  width: 100%;
}
table.stats th {
  text-align: left;
}
table.stats td {
  padding: 10px 5px;
  border-bottom: solid 1px #fff;
}
table.stats.grades tr:first-child td {
  border-top: solid 1px #fff;
}
table.stats td.br {
  border-right: solid 1px #fff;
}
p.statsTxt {
  font-weight: 600;
  margin-bottom: 5px;
  padding-bottom: 5px;
  font-size: 1.1rem;
}
table.stats.grades {
  margin-bottom: 20px;
}

.tabs {
  margin-top: 50px;
  margin: 0 auto;
}

.tab_item {
  width: calc(100% / 4);
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  text-align: center;
  color: #fff;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
}
.tab_item:hover {
  opacity: 0.75;
}

input[name="tab_item"] {
  display: none;
}

.tab__content {
  display: none;
  padding: 40px 0 0;
  clear: both;
  overflow: hidden;
}

/*選択されているタブのコンテンツのみを表示*/
#career-tab:checked ~ #career-tab,
#stats-tab:checked ~ #stats-tab,
#title-tab:checked ~ #title-tab,
#score-tab:checked ~ #score-tab {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  background-color: #fff;
  color: #022255;
}

ul.nengou {
  margin-top: 10px;
  padding-top: 10px;
  border-top: solid 1px #999999;
}

ul.nengou li {
  border-bottom: dotted 1px #999999;
  padding: 15px 0;
  font-weight: 700;
  display: grid;
  grid-template-columns: 120px 1fr;
}

.flow {
  padding-left: 120px;
  position: relative;
  margin: var(--mb-3) 0;
}
.flow::before {
  content: "";
  width: 1px;
  height: 105%;
  background: #fff;
  margin-left: -8px;
  display: block;
  position: absolute;
  top: -20px;
  left: 120px;
}
.flow > li {
  position: relative;
}
.flow > li:not(:last-child) {
  margin-bottom: 8vh;
}
.flow > li .icon {
  font-size: var(--normal-font-size);
  color: #fff;
  padding: 4px 0;
  display: block;
  position: absolute;
  top: 0;
  left: -120px;
  z-index: 100;
}

.flow > li div {
  padding-left: 10px;
  position: relative;
}
.flow > li div span {
  font-size: var(--mb-2);
}

.flow > li div::before {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  width: 10px;
  height: 10px;
  margin-top: -3px;
  background: #022255;
  border-radius: 50%;
  border: 1.5px solid #fff;
  left: -12px;
}
.flow > li div::after {
  width: 50px;
  border-bottom: 1px dashed #999;
  position: absolute;
  left: 5px;
}

.content-wrapper {
  min-height: 100%;
  position: relative;
}

.contact-form .form-field {
  position: relative;
  margin: 40px 0;
}
.contact-form .input-text,
textarea {
	display: block;
	width: 100%;
	height: 36px;
	background: none;
	border-width: 0 0 1px 0;
	border-color: #fff;
	font-size: 18px;
	line-height: 26px;
	font-weight: 400;
	color: #FFF;
}

.contact-form .input-text:focus,
textarea {
  outline: none;
}
textarea {
  height: 240px;
}

.contact-form .input-text:focus + .label,
.contact-form .input-text.not-empty + .label,
.contact-form .text-field #textarea + .label {
  /*transform: translateY(-24px);*/
}

.contact-form .label {
  /*position: absolute;
  bottom: 35px;*/
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  color: #fff;
  cursor: text;
  /*transition: transform 0.2s ease-in-out;*/
}

.contact-form textarea {
	width: 100% !important;
	height: 240px !important;
	outline: none;
	padding: 30px;
}


.contact-form .text-field #textarea + .label {
  bottom: 90%;
}
.text-field .form-field {
  margin: 60px 0 0;
}

.contact-form .submit-btn {
  display: inline-block;
  background-color: rgba(2, 34, 85, 0.7);
  color: #fff;
  letter-spacing: 2px;
  font-size: 16px;
  line-height: 24px;
  padding: 8px 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
#Contact .glass {
  /*background: rgba(2, 34, 85, 0.4);*/
  background: rgba(0, 0, 0, 0.6);
}






/* 追加 */

#Action .contents__description {
	font-size: 1.2rem;
	font-weight: bold;
	line-height: 1.4;
}
	#Action .contents__description span {
		margin-bottom: 30px;
	}

.large {
	font-weight: bold;
}

.pc {
	display: none;
}
#contactPage {
}
  /*#contactPage {
    background-image: url(../img/contact__image.png);
    background-repeat: no-repeat;
    background-size:contain;
    background-position: center top;
	margin-top: -100px;
	  
  }*/


#ytPlayerWrap{
  position: relative;
  height: 100vh;
  width: 100%;
}
.bgImg {
	position: fixed;
	top: 25%;
	width: 100%;
}
.bgImg img {
	position: absolute;
	width: 100%;
	height: auto;

}

#footerLink {
	text-align: center;
	margin-top: 100px;
}
	#footerLink li {
		display: inline;
		margin: 0 1rem;
	}
	#footerLink li a {
		color: #FFF;
	}


	#page_top{
	  width: 50px;
	  height: 50px;
	  position: fixed;
	  right: 10px;
	  bottom: 60px;
	  background: #22335e;
	  opacity: 0.6;
	}
	#page_top a{
	  position: relative;
	  display: block;
	  width: 50px;
	  height: 50px;
	  text-decoration: none;
	}
	#page_top a::before{
	  font-family: 'Font Awesome 5 Free';
	  font-weight: 900;
	  content: '\f106';
	  font-size: 20px;
	  color: #fff;
	  position: absolute;
	  width: 20px;
	  height: 20px;
	  top: -10px;
	  bottom: 0;
	  right: 0;
	  left: 0;
	  margin: auto;
	  text-align: center;
	}




/* PC独自 */
@media screen and (min-width: 768px) {
	
	.pc {
		display:block;
	}
	.sp {
		display: none;
	}

.bgImg {
	position: fixed;
	top: 0;
	width: 100%;
}
.bgImg img {
	position: absolute;
	width: calc(100vh * 1.375);
	height: 100vh;
	min-width: calc(100vh * 1.375);
	
	left: 50%;
	margin-left: calc(-100vh * 1.375 / 2);

}

	
	
  body {
    margin: 0;
  }
  .large {
    font-size: 30px;
  }
  .section__wrapper {
    max-width: 1200px;
    margin: 0 auto;
    width: calc(100% - 3rem);
  }
  .section {
    align-items: center;
    width: 65%;
  }
  .section:nth-of-type(even) {
    margin-left: auto;
  }
  #section__title {
    font-size: 80px;
    font-weight: bold;
  }
	
	.scroll-text {
	  bottom: 0%;
	}
	
  .scroll-text.contactArea {
    right: 10px;
  }

.nav__logo {
margin: 0;
}

.bgImg {
	top: 90px;
}
	
  .nav__list {
    display: flex;
    align-items: right;
    flex-direction: inherit;
	  padding-left: calc(600px);
  }

  .nav__item {
    margin-left: var(--mb-5);
    margin-bottom: 0;
  }

  #video {
    position: fixed;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: unset;
    height: unset;
    min-height: 100%;
    min-width: 100%;
    object-fit: cover;
  }
	
  #video02 {
    position: fixed;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: unset;
    height: unset;
    min-height: 100%;
    min-width: 100%;
    object-fit: cover;
  }
	
	
	
	
	
	
  .glass {
    padding: 3rem;
  }
  .entry__data {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--mb-3);
    gap: 1rem;
  }
  .entry__content,
  .entry__title {
    margin: 0;
  }
  .entry__title {
    font-size: var(--h2-font-size);
  }
  .contents__description {
    margin-top: var(--mb-6);
  }
  #Society .contents__description {
    font-size: 5rem;
  }
	
	

  iframe {
    max-width: 350px;
    height: 300px;
  }

  .company__table {
    margin-top: 5rem;
  }
  .company__table .table__contents {
    padding: 5px;
    display: inherit;
    flex-direction: inherit;
  }

  footer {
    flex-direction: inherit;
    justify-content: center;
    gap: 1rem;
  }

  /* management */
  h2.MV-title {
    font-size: 140px;
    font-weight: bold;
  }
  .MV-sub__txt {
    font-size: 24px;
  }
  .flow::before {
    margin-left: 0px;
  }
  .flow > li div {
    padding-left: 30px;
  }
  .flow > li div::before {
    left: -4.5px;
  }

  .split-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .split-section .glass {
    padding: 30px;
  }
  .profile__image {
    margin: 2rem 0;
    width: 100%;
    max-width: unset;
  }

  #Contact {
    width: 100%;
    padding: 3rem 0 2rem;
  }
  .contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 3rem;
  }
  .submit {
    grid-column: 2/3;
    text-align: right;
    margin: 0 !important;
  }
	
	.logoAction {
		padding-bottom: 10%;
	}
	
}

@media screen and (min-width: 968px) {
  .bd-container {
    margin-left: auto;
    margin-right: auto;
  }
  .nav {
    height: calc(var(--header-height) + 1.5rem);
    justify-content: flex-start;
  }
  .nav__logo {
    max-width: 75px;
  }
  .nav__toggle {
    display: none;
  }
  #Company .body {
    display: flex;
    align-items: flex-end;
    gap: 3rem;
  }
}
