@charset "UTF-8";
:root {
  --color-primary: #D60000;
  --color-secondary: #2F9E69;
  --color-primary-dark: #B20000;
  --color-primary-light: #FFDFDF;
  --color-secondary-light: #EBFFFF;
  --color-accent: #f8eab8;
  --color-bg: #A3E7FC;
  --color-bg-light: #907240;
  --color-black: #343a40;
  --color-dark: #272c30;
  --color-grey: #7d7d7d;
  --color-grey-light: #f4f5f5;
  --color-white: #FFFFFF;
  --color-attention: #F44336;
  --font-family-roboto: 'Roboto', serif;
  --font-family-roboto-slab: 'Roboto Slab', serif;
}
/**************** Base ****************/
html {
  font-size: 62.5%;
  color: #444;
  /*transition: all 0.5s ease 0s;*/
  overflow-x: hidden;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  line-height: 1.45;
  /* -webkit-text-size-adjust: 100%; */
  /* -webkit-tap-highlight-color: rgba(0, 0, 0, 0); */
}
body {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 1.5rem;
  margin: 0;
  background-image: url("../img/nois.png");
  background-color: var(--color-primary);
  background-repeat: repeat;
  /*background-color: #F5F5F5; #fffdfb*/
  overflow-x: hidden !important;
}
body, a {
  color: #444;
  line-height: 1.7em;
}
a {
  text-decoration: none;
  color: #4b4b4b;
}
a:hover {
  text-decoration: none;
  color: #4b4b4b;
  /* Font setting */
}
section {
  width: 100%;
  /*height: 100vh; 
    display: flex;
    align-items: center;
    justify-content: center;*/
  position: relative;
  z-index: 1;
}
.rounded {
  border-radius: 0.6rem !important;
}
.rounded-large {
  border-radius: 2.6rem !important;
}
.rounded-top {
  border-radius: 0.6rem 0.6rem 0 0 !important;
}
.inline-item {
  display: inline-block; /* インラインブロックにする */
}
/* スマートフォン用のスタイル */
.text-center-change {
  text-align: center;
}
/* デスクトップ用のスタイル */
@media screen and (min-width: 834px) {
  .text-center-change {
    text-align: left;
  }
}
/**************** Loading ****************/
#loader {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  background-color: #fff;
  z-index: 10000;
}
#loader h2 {
  text-align: center;
  color: white;
  font-size: 45px;
  line-height: 90px;
  letter-spacing: 15px;
  transition-delay: 5s;
  animation: float 2s linear infinite;
  animation-direction: alternate;
}
#loader.loaded {
  animation: fadeOut 1s forwards;
}
@keyframes float {
  from {
    transform: rotate(5deg);
  }
  to {
    transform: rotate(-5deg);
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    display: none;
    opacity: 0;
    z-index: -1;
  }
}
/**************** Color ****************/
.primary-color {
  background-color: var(--color-primary);
}
.secondary-color {
  background-color: var(--color-secondary);
}
.primary-light-color {
  background-color: var(--color-primary-light);
}
.secondary-light-color {
  background-color: var(--color-secondary-light);
}
.black-color {
  background-color: var(--color-black);
}
.grey-color {
  background-color: var(--color-grey);
}
.grey-dark-color {
  background-color: #343a40;
}
.grey-light-color {
  background-color: var(--color-grey-light);
}
.white-color {
  background-color: var(--color-white);
}
.bg-color {
  background-color: var(--color-bg);
}
/**************** Text-Color ****************/
.primary-text {
  color: var(--color-primary);
}
.secondary-text {
  color: var(--color-secondary);
}
.contact-text{
  color: var(--color-accent);
}
.grey-text {
  color: var(--color-grey);
}
.grey-light-text {
  color: var(--color-grey-light);
}
.white-text {
  color: var(--color-white);
}
.small-text {
  font-size: 1.2rem;
  line-height: 1.75;
}
/**************** Space ****************/
.section-wrapper-t {
  padding: 60px 0 0 0;
}
.section-wrapper {
  padding: 60px 0 80px 0;
}
.section-wrapper-small {
  padding: 20px 0 20px 0;
}
.space-small-bottom {
  padding-bottom: 20px;
}
@media screen and (max-width: 834px) {
  .section-wrapper {
    padding: 80px 0 80px 0;
  }
	  .section-wrapper-t {
    padding: 80px 0 20px 0;
  }
  .section-wrapper-small {
    padding: 40px 0 40px 0;
  }
}
/**************** Image ****************/
img {
  width: 100%;
  height: auto;
}
.card-img img {
  width: 700px;
  height: auto;
}
#img {
  position: fixed;
  top: 50%;
  left: 50%;
}
#svg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
.img-fluid {
  max-width: 100%;
  height: auto;
}
/**************** Download ****************/
/* btn-download */
.bnr-space{
  position: fixed;
  bottom: 8%;
  right: 230px;
  width: 300px;
  z-index: 101;
  cursor: pointer;
}
.change_dark {
  position: fixed;
  bottom: 0%;
  right: 0%;
  width: 160px;
  height: 160px;
  z-index: 100;
  cursor: pointer;
}
.change_dark .pick-btn {
  position: absolute;
  width: 180px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.circle {
  animation: rotate-anime 32s linear infinite;
}
@keyframes rotate-anime {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media screen and (min-width: 834px) {
  .change_dark {
    right: 1%;
    width: 220px;
    height: 220px;
  }
  .change_dark .pick-btn {
    width: 230px;
  }
}
/**************** Botan ****************/
.blur.blurin {
  animation: .4s blurIn 0s forwards;
}
.blur {
  opacity: 0;
  filter: blur(10px);
}
.download-button {}
.download-button a {
  display: block;
  padding: 16px 32px;
  color: #111;
  font-weight: 700;
  line-height: 1;
  background-image: linear-gradient(23deg, #1688c1, #343a40, #2F9E69);
  background-repeat: no-repeat;
  background-size: 400% 400%;
  animation: headerContactButton 8s ease infinite;
  transition: .2s;
  border-radius: 50vh;
}
@keyframes headerContactButton {
  0% {
    background-position: 10% 50%
  }
  25% {
    background-position: 90% 50%
  }
  50% {
    background-position: 50% 90%
  }
  50% {
    background-position: 10% 90%
  }
  100% {
    background-position: 10% 50%
  }
}
/*＝＝＝＝＝＝＝＝＝＝＝全体＝＝＝＝＝＝＝＝＝＝＝＝＝*/
video {
  display: block;
  width: 94%;
  height: 680px;
  object-fit: cover;
  position: absolute;
  top: 5px;
  left: 10px;
}
.inline-item {
  display: inline-block; /* インラインブロックにする */
}
/**************** Header ****************/
/* ヘッダー02 */
.logo {
  position: absolute;
  float: left;
}
.logo img {
  padding: 20px 0 0 0;
  width: 80px;
  opacity: 0;
}
@media screen and (max-width: 834px) { /* 834px以下*/
  .logo img {
    opacity: 1;
  }
}
.header-inner {
  position: absolute;
  z-index: 100;
  display: flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 80px;
}
.header-change {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  position: fixed;
  top: -105px;
  transition: .5s;
  align-items: center;
  width: 100%;
  z-index: 2
}
.header-change.show {
  top: 0;
}
.header-change .gnav__menu__item a {
  color: #fff;
  text-decoration: none;
}
.header-buttons {
  display: flexbox;
  display: flex;
  margin: 0 -5px;
}
.header-logo {
  width: 130px;
  margin: 15px 20px 20px 0;
}
/* ここから下がハンバーガーメニューに関するCSS */
.nav {
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 112;
}
.icon-insta {
  position: fixed;
  top: 15px;
  right: 80px;
  z-index: 113;
	width:60px;
	background: var(--color-primary);
    border-radius: 30px;
}
/* チェックボックスを非表示にする */
.drawer_hidden {
  display: none;
}
/* ハンバーガーアイコンの設置スペース */
.drawer_open {
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100; /* 重なり順を一番上にする */
  cursor: pointer;
  background: var(--color-primary);
  border-radius: 30px;
}
/* ハンバーガーメニューのアイコン */
.drawer_open span, .drawer_open span:before, .drawer_open span:after {
  content: '';
  display: block;
  height: 1px;
  width: 40px;
  border-radius: 3px;
  background: var(--color-white);
  transition: 0.5s;
  position: absolute;
}
/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
  bottom: 8px;
}
/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
  top: 8px;
}
/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked ~ .drawer_open span {
  background: rgba(255, 255, 255, 0);
}
/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked ~ .drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#drawer_input:checked ~ .drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
}
.cp_link {
  position: relative;
  padding: 0.1em 0.3em;
  display: inline-block;
  transition: .3s;
}
.cp_link::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  content: '';
  width: 0;
  height: 1px;
  background-color: #4b4b4b;
  transition: .3s;
  transform: translateX(-50%);
}
.cp_link:hover::after {
  width: 100%;
}
/* メニューのデザイン*/
.nav_content {
  width: 30%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%; /* メニューを画面の外に飛ばす */
  z-index: 99;
  background: var(--color-primary-dark);
  transition: .5s;
}
/* メニュー黒ポチを消す */
.nav_list {
  list-style: none;
  padding-top: 100px;
}
/* メニューデザイン */
.nav_item {
  font-size: 18px;
  font-weight: 700;
  border-top: 1px solid var(--color-primary);
  margin-bottom: 0;
}
.nav_item a {
  display: block;
  padding: 15px 20px 15px 0;
}
.nav_item:last-child {
  border-bottom: 1px solid var(--color-primary);
}
/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked ~ .nav_content {
  left: 70%; /* メニューを画面に入れる */
}
/*834px以下の見え方*/
@media screen and (max-width:834px) {
  .nav_item {
    font-size: 14px;
    font-weight: 700;
    border-top: 1px solid var(--color-primary);
    margin-bottom: 0;
  }
  /* メニューのデザイン*/
  .nav_content {
    width: 100%;
  }
  #drawer_input:checked ~ .nav_content {
    left: 0; /* メニューを画面に入れる */
  }
}
.nav-pc {
  display: flexbox;
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-content: space-between;
  -ms-flex-positive: 1;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}
li {
  margin: 0 0 0 10px;
  font-size: 14px;
}
.nav_content ul {
  display: block;
}
@media screen and (max-width: 950px) { /* 929px以下*/
  .header-logo {
    width: 100px;
    margin: 10px 20px 20px 0;
  }
  .header-inner {
    padding: 0 10px 0 20px;
  }
}







/*＝＝＝＝＝＝＝＝＝＝＝パーツ-ボタン＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*ページ遷移ボタン*/
.taikenday{
  font-size: 22px;
  font-weight: bold;
}
.button-taiken {
  display: flex;
  align-items: center;
  width: 90%;
  height: 80px;
  background-color: var(--color-white);
  border: 2px solid var(--color-primary);
  border-radius: 8px 40px 40px 8px;
  padding: 0 5px 0 10px;
  color: var(--color-primary);
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
}
.button {
  display: flex;
  align-items: center;
  width: 80%;
  height: 70px;
  background-color: var(--color-white);
  border: 2px solid var(--color-primary);
  border-radius: 8px 35px 35px 8px;
  padding: 0 5px 0 10px;
  color: var(--color-primary);
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
}
button span {
  text-align: left; /* 左寄せにする */
}
.button-text {
  padding-left: 10px;
  padding-right: 20px;
  flex: 1;
}
.button-icon {
  width: 50px;
  height: 50px;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  overflow: hidden; /* 追加 */
}
.button-icon img {
  width: 80%; /* 追加 */
  display: block; /* 追加 */
  margin: auto; /* 追加 */
}
@media(hover: hover) {
  .button:hover {
    animation: botan-color 0.3s linear forwards;
    color: var(--color-white);
  }
  .button:hover .button-icon {
    animation: icon-color 0.3s linear forwards;
  }
  .button-taiken:hover {
    animation: botan-color 0.3s linear forwards;
    color: var(--color-white);
  }
  .button-taiken:hover .button-icon {
    animation: icon-color 0.3s linear forwards;
  }
}
@keyframes icon-color {
  from {
    background-color: var(--color-primary);
  }
  to {
    background-color: var(--color-primary);
  }
}
@keyframes botan-color {
  from {
    background-color: var(--color-white);
  }
  to {
    background-color: var(--color-primary-dark);
  }
}
/*体験ボタン2*/
.uiverse {
  position: relative;
  background: var(--color-accent);
  color: var(--color-primary);
  padding: 1.3em 1em;
  font-size: 2.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.tooltip {
  position: absolute;
  top: 0;
  font-size: 14px;
  background: #ffffff;
  color: #ffffff;
  padding: 5px 8px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.tooltip::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background: #ffffff;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
@media screen and (max-width:834px) {
  .uiverse {
    font-size: 1.8rem;
  }
}
@media (min-width: 951px) { /* 930px以上*/
  .uiverse:hover .tooltip {
    top: -45px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  svg:hover span, svg:hover .tooltip {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
  }
  .uiverse:hover, .uiverse:hover .tooltip, .uiverse:hover .tooltip::before {
    background: linear-gradient(320deg, rgb(255, 255, 255), rgb(255, 255, 255));
    color: var(--color-primary);
  }
}
/*＝＝＝＝＝＝＝＝＝＝＝メインビジュアル＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.logo-mark {
  position: absolute;
  width: 360px;
  margin-top: 130px;
  margin-left: -180px;
  z-index: 100;
}
.logo-mark-second {
  position: absolute;
  width: 300px;
  margin-top: 150px;
  margin-left: 0px;
  z-index: 100;
  display: block;
}
@media screen and (max-width: 834px) {
  .logo-mark {
    width: 280px;
    margin-top: 110px;
    margin-left: -140px;
  }
  .logo-mark-second {
    width: 220px;
    margin-top: 100px;
    margin-left: 0;
    display: none;
  }
}
.m-image {
  background-image: url("../img/main-bg.png");
  background-size: cover;
  background-position: center;
  background-color: var(--color-white);
}
/* ロゴのフェードインアニメーション */
.logo-mark {
  opacity: 0;
  animation: logo-fade-in 1s forwards;
  animation-delay: 1s;
}
@keyframes logo-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* メインビジュアルのCSS */
.main-visual {
  position: relative;
  width: 100%;
  height: 700px;
  z-index: 50;
}
.image {
  position: absolute;
  top: 500px;
  opacity: 0;
  z-index: 0;
}
.image:nth-child(odd) {
  left: 50%;
  animation: left-fade-in 0.7s forwards;
}
.image:nth-child(even) {
  left: 50%;
  animation: right-fade-in 0.7s forwards;
}
.image:nth-child(1) {
  width: 220px;
  height: 440px;
  margin-top: -500px;
  margin-left: -70px;
  animation-delay: 2s;
}
.image:nth-child(2) {
  width: 330px;
  height: 330px;
  margin-top: -450px;
  margin-left: -320px;
  animation-delay: 2.5s;
}
.image:nth-child(3) {
  width: 200px;
  height: 400px;
  margin-top: -440px;
  margin-left: 0px;
  animation-delay: 2.9s;
}
.image:nth-child(4) {
  width: 220px;
  height: 440px;
  margin-top: -340px;
  margin-left: -240px;
  animation-delay: 3.2s;
}
.image:nth-child(5) {
  width: 190px;
  height: 380px;
  margin-top: -350px;
  margin-left: 70px;
  animation-delay: 3.4s;
}
.image:nth-child(6) {
  width: 210px;
  height: 420px;
  margin-top: -280px;
  margin-left: -240px;
  animation-delay: 3.5s;
}
.image:nth-child(7) {
  width: 340px;
  height: 340px;
  margin-top: -240px;
  margin-left: -10px;
  animation-delay: 3.6s;
}
.image:nth-child(8) {
  width: 250px;
  height: 250px;
  margin-top: -105px;
  margin-left: -320px;
  animation-delay: 3.7s;
}
.image:nth-child(9) {
  width: 310px;
  height: 310px;
  margin-top: -135px;
  margin-left: 80px;
  animation-delay: 3.8s;
}
@media screen and (max-width: 834px) {
  .image:nth-child(1) {
    width: 200px;
    height: 400px;
    margin-top: -490px;
    margin-left: -70px;
    animation-delay: 2s;
  }
  .image:nth-child(2) {
    width: 320px;
    height: 320px;
    margin-top: -450px;
    margin-left: -310px;
    animation-delay: 2.5s;
  }
  .image:nth-child(3) {
    width: 190px;
    height: 380px;
    margin-top: -440px;
    margin-left: 0px;
    animation-delay: 2.9s;
  }
  .image:nth-child(4) {
    width: 210px;
    height: 420px;
    margin-top: -360px;
    margin-left: -220px;
    animation-delay: 3.2s;
  }
  .image:nth-child(5) {
    width: 180px;
    height: 360px;
    margin-top: -350px;
    margin-left: 50px;
    animation-delay: 3.4s;
  }
  .image:nth-child(6) {
    width: 200px;
    height: 400px;
    margin-top: -280px;
    margin-left: -240px;
    animation-delay: 3.5s;
  }
  .image:nth-child(7) {
    width: 330px;
    height: 330px;
    margin-top: -240px;
    margin-left: -10px;
    animation-delay: 3.6s;
  }
  .image:nth-child(8) {
    width: 240px;
    height: 240px;
    margin-top: -105px;
    margin-left: -220px;
    animation-delay: 3.7s;
  }
  .image:nth-child(9) {
    width: 310px;
    height: 310px;
    margin-top: -120px;
    margin-left: 0px;
    animation-delay: 3.8s;
  }
}
@keyframes left-fade-in {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes right-fade-in {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes logo-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*  Text Scroll Animation */
.wrapper-loop {
  margin: -1000px 0 0 0;
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100vw;
  height: 980px;
  overflow: hidden;
  z-index: 3;
}

.marquee-anim {
  transition: all .3s;
}

.marquee-anim {
  opacity: 1;
  animation: marquee 360s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  transform: translate(-50%, 0%);
  white-space: nowrap;
  margin-top: -3vh;
}

@keyframes marquee {
  0% {
    transform: translate(-40%, 0%);
  }
  100% {
    transform: translate(-60%, 0%);
  }
}

.marquee-inline {
  display: block;
  padding-right: 0.5em;
  font-size: 100rem;
  font-weight: 600;
	font-family: 'Unica One', cursive;
  letter-spacing: 0.1em;
  white-space: nowrap;
  color: var(--color-primary);
  text-align: center;
}
@media screen and (max-width: 834px) {
	.wrapper-loop {
  margin: -690px 0 0 0;
  height: 660px;
	}
.marquee-inline {
  font-size: 80rem;
  letter-spacing: 0.1em;
}
}

.inline-item {
  display: inline-block; /* インラインブロックにする */
}
/*＝＝＝＝＝＝＝＝＝＝＝メッセージ＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.message-title {
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.1em;
}
.message-lead {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.8;
}
.message-point {
  font-size: 2.48rem;
  font-weight: 700;
  line-height: 1.6;
}
.message-attention {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
}
.message-comment {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
}
.win-img{
	    position: relative;
    top: -130px;
	z-index: -1;
}
@media screen and (max-width:834px) {
  .message-title {
    font-size: 2.8rem;
  }
  .message-lead {
    font-size: 1.6rem;
    line-height: 1.75;
  }
  .message-point {
    font-size: 2rem;
  }
  .message-comment {
    font-size: 1.5rem;
    line-height: 1.6;
  }
	.win-img{
    top: -60px;
}
}
/*吹き出し*/
.message-comment-box {
  position: relative;
  display: inline-block;
  margin: 1.5em 0;
  padding: 7px 10px;
  min-width: 120px;
  max-width: 100%;
  background: var(--color-primary-light);
  border-radius: 15px;
}
.message-comment-box:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 40px;
  margin-right: -15px;
  border: 10px solid transparent;
  border-top: 15px solid var(--color-primary-light);
}
.message-comment-box p {
  margin: 0;
  padding: 0;
}
/*＝＝＝＝＝＝＝＝＝＝＝トップ-チーム紹介＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.team-title {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.75;
}
.team-lead {
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1.75;
}
@media screen and (max-width:834px) {
  .team-title {
    font-size: 2.2rem;
    line-height: 1.75;
  }
  .team-lead {
    font-size: 1.6rem;
    line-height: 1.75;
  }
}
/*＝＝＝＝＝＝＝＝＝＝＝トップ-活動内容＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.action-title {
  font-size: 2.9rem;
  font-weight: 700;
  line-height: 1.45;
}
.action-month {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
  padding-bottom: 3px;
  color: var(--color-primary-light);
}
.action-lead {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.6;
}
.action-point {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width:834px) {
  .action-title {
    font-size: 2.2rem;
    line-height: 1.45;
  }
  .action-lead {
    font-size: 1.6rem;
    line-height: 1.6;
  }
  .action-point {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
/*スライダー*/
#section-gallery {
  .swiper-wrapper {
    margin: -30px 0px;
  }
}
.swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  -o-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
  align-items: center;
  img {
    width: 100%;
    height: auto;
  }
}
.swiper-slide {
  width: 500px !important;
  margin: 0 24px;
}
@media screen and (max-width: 834px) {
  .swiper-slide {
    width: 350px !important;
    margin: 0 14px;
  }
}
// firefox
@-moz-document url-prefix() {
  .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    -o-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
    align-items: center;
  }
}
/*＝＝＝＝＝＝＝＝＝＝＝保護者の方へ＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.parents-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.1em;
}
.parents-lead {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.8;
}
.parents-num {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.45;
  padding-bottom: 5px;
  color: var(--color-primary);
}
.parents-point {
  font-size: 2.48rem;
  font-weight: 700;
  line-height: 1.45;
}
.parents-comment {
  /*font-size: 2.4rem;*/
  font-size: 1.65vw;
  font-weight: 400;
  line-height: 2.25;
  color: var(--color-white);
  padding-top: 60px;
}
.point-comment-line {
  border-top: 1px solid var(--color-grey-light);
}
@media screen and (max-width:834px) {
  .parents-title {
    font-size: 2.2rem;
    line-height: 1.45;
  }
  .parents-lead {
    font-size: 1.6rem;
    line-height: 1.6;
  }
  .parents-num {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.45;
  }
  .parents-point {
    font-size: 1.6rem;
    line-height: 1.6;
  }
  .parents-comment {
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.25;
    padding-top: 50px;
  }
}
/*＝＝＝＝＝＝＝＝＝＝＝Footer＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.footer-bg {
  background-image: url(../img/nois.png);
  background-repeat: repeat;
}
.logo-footer img {
  width: 300px;
}
.logo-footer {
  float: left;
}
.copyright-text {
  font-size: 1.2rem;
  line-height: 1.75;
  color: var(--color-grey);
}
.footer-logo-mark {
  width: 140px;
  padding-bottom: 20px;
}
.concept-title {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.75;
}
.concept-comment {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.75;
}
/*＝＝＝＝＝＝＝＝＝＝＝セカンド-common＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.second-page-bg {
  /*background-image: url("../img/bg-uniform.png");*/
  background-repeat: no-repeat;
  background-position: right 20px top -100px;
  background-size: 400px;
}
@media screen and (max-width:834px) {
  .second-page-bg {
    background-position: right 0px top -40px;
    background-size: 250px;
  }
}
.second-title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-primary-light);
}
.second-heading {
  font-size: 3.6rem;
}
.second-heading span {
  display: flex;
  align-items: center;
  color: var(--color-primary-light);
  font-size: 1.25rem;
  font-weight: 700;
}
.second-heading span::before {
  content: '';
  display: inline-block;
  margin-right: 7px;
  width: 10px;
  height: 2px;
  background-color: var(--color-primary-light);
}
.second-english-title {
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-primary-light);
  font-family: 'Unica One', cursive;
}
/*＝＝＝＝＝＝＝＝＝＝＝セカンド-チーム紹介＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.page-team-name {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.6;
}
.page-team-item {
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.6;
  padding-bottom: 3px;
  color: var(--color-primary-light);
}
.page-team-lead {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.75;
}
@media screen and (max-width:834px) {
  .page-team-name {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.6;
  }
  .page-team-item {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.6;
  }
  .page-team-lead {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.75;
  }
}
/*＝＝＝＝＝＝＝＝＝＝＝セカンド-保護者の方へ＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.page-parents-lead {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width:834px) {
  .page-parents-lead {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.6;
  }
}
/*＝＝＝＝＝＝＝＝＝＝＝セカンド-活動内容＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.page-action-title {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width:834px) {
  .page-action-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.6;
  }
}
.match-name {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6;
}
.match-score {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.6;
  /*font-family: 'Jost', sans-serif;*/ font-family: 'Unica One', cursive;
}
.match-line {
  display: inline-block;
  vertical-align: middle;
}
.match-position {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 5px;
}
.badge-class {
  display: inline-block;
  padding: 0.4em 0.5em;
  font-size: 85%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 1rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.badge-class-color {
  background-color: #fff;
  color: var(--color-primary);
  border: solid;
  border-color: #fff;
  border-width: 2px;
}
.container {
  display: flex;
  width: 100%;
}
.pc-padding {
  padding-left: 5vw;
  padding-right: 5vw;
  /*padding-left: 60px;*/
  /*padding-right: 60p;x*/
}
/* パソコンの画面でのスタイル */
@media screen and (min-width: 834px) {
  .left-col {
    width: 50%;
    height: 100vh;
    overflow: auto;
    background-color: var(--color-white);
    opacity: 0; /* 最初は透明にする */
    animation: fadeIn 2s ease-in-out forwards; /* フェードインアニメーションを追加 */
  }
  .right-col {
    width: 50%;
    height: 100vh;
    overflow: auto;
  }
  .left-content {
    display: flex;
    justify-content: center; /* 横方向に中央揃え */
    align-items: center; /* 縦方向に中央揃え */
    height: 100%;
    background-image: url("../img/main-bg.png");
    background-size: cover;
    background-position: center;
  }
  .left-content-team {
    display: flex;
    justify-content: center; /* 横方向に中央揃え */
    align-items: center; /* 縦方向に中央揃え */
    height: 100%;
    background-image: url("../img/bg-team.webp");
    background-size: cover;
    background-position: center;
    background-color: var(--color-white);
  }
	  .left-content-action {
    display: flex;
    justify-content: center; /* 横方向に中央揃え */
    align-items: center; /* 縦方向に中央揃え */
    height: 100%;
    background-image: url("../img/bg-action.webp");
    background-size: cover;
    background-position: center;
    background-color: var(--color-white);
  }
	  .left-content-parent {
    display: flex;
    justify-content: center; /* 横方向に中央揃え */
    align-items: center; /* 縦方向に中央揃え */
    height: 100%;
    background-image: url("../img/bg-parent.webp");
    background-size: cover;
    background-position: center;
    background-color: var(--color-white);
  }
	  .left-content-member {
    display: flex;
    justify-content: center; /* 横方向に中央揃え */
    align-items: center; /* 縦方向に中央揃え */
    height: 100%;
    background-image: url("../img/bg-member.webp");
    background-size: cover;
    background-position: center;
    background-color: var(--color-white);
  }
}
@media screen and (max-width: 833px) {
  .pc-padding {
    padding-left: 0px;
    padding-right: 0px
  }
  .container {
    display: block;
    width: 100%;
  }
  .left-col {
    order: 1;
    width: 100%;
    height: auto;
    background-color: var(--color-white);
    opacity: 0; /* 最初は透明にする */
    animation: fadeIn 2s ease-in-out forwards; /* フェードインアニメーションを追加 */
  }
  .right-col {
    order: 2;
    width: 100%;
    height: auto;
  }
  .left-content {
    display: flex;
    justify-content: center; /* 横方向に中央揃え */
    align-items: center; /* 縦方向に中央揃え */
    background-image: url("../img/main-bg.png");
    background-size: cover;
    background-position: center;
    background-color: var(--color-white);
  }
  .left-content-team {
    display: flex;
    justify-content: center; /* 横方向に中央揃え */
    align-items: center; /* 縦方向に中央揃え */
    background-size: cover;
    background-position: center;
    background-color: var(--color-white);
  }
  .left-content-action {
    display: flex;
    justify-content: center; /* 横方向に中央揃え */
    align-items: center; /* 縦方向に中央揃え */
    background-size: cover;
    background-position: center;
    background-color: var(--color-white);
  }
	.match-name {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.6;
}
} /* フェードインアニメーションの定義 */
@keyframes fadeIn {
  0% {
    opacity: 0; /* 最初は透明 */
    background-color: var(--color-primary); /* 最初の背景色 */
  }
  100% {
    opacity: 1; /* 最後は不透明 */
    background-color: var(--color-white); /* 変化後の背景色 */
  }
}
.mv-main {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.mv-wrap-main {
  position: relative;
  height: 520px;
}
.mv-main video {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.mv-bg-main {
  display: block;
  width: 100%;
  height: 520px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(72, 160, 180, 0.4);
  z-index: 2;
}
.mv-txt-main {
  color: #fff;
  width: 100%;
  position: absolute;
  /*top: 0;*/
  /*bottom: 0;*/
  left: 0;
  right: 0;
  z-index: 3;
  margin: auto;
  text-align: center;
}
.mv-main-copy-wrap {
  display: block;
}
@media screen and (min-width: 834px) {
  .about-title {
    font-size: 4.4rem;
  }
  .about-sub-title {
    font-size: 1.8rem;
  }
  .img-3point {
    max-width: 450px;
  }
  .mv-wrap-main {
    position: relative;
    height: 600px;
  }
  .mv-main video {
    height: 600px;
  }
  .mv-bg-main {
    height: 600px;
  }
}
.team-box-position {
  position: relative;
  top: -100px;
  z-index: 1;
}
/* fadeUp */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.member-number {
  font-size: 2.6rem;
}
.member-name {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.75;
  font-weight: 700;
  font-family: 'Unica One', cursive;
}
.member-lead {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.75;
}

/*＝＝＝＝＝＝＝＝＝＝＝Contact＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.contact-logo {
  padding: 20px 0 0 0;
  width: 80px;
}
.contact-title {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.1em;
 color: var(--color-white);

}
.contact-lead {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.8;
		  	  color: var(--color-white);

}
.contact-point {
  font-size: 2.48rem;
  font-weight: 700;
  line-height: 1.6;
}

@media screen and (max-width:834px) {
  .contact-title {
    font-size: 2.8rem;
  }
  .contact-lead {
    font-size: 1.4rem;
    line-height: 1.75;
  }
  .contact-point {
    font-size: 2rem;
  }
}

