@charset "UTF-8";
/*--------------------------------------
box
--------------------------------------*/
/*--header--*/
.header {
  position: fixed;
  padding: 24px 30px 0 0;
  height: 95px;
  width: 100%;
  background: #F8FBFF;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .12);
  z-index: 999;
  pointer-events: none;
}
.header-inner {
  display: flex;
  align-items: center;
}
.header-logo {
  width: 220px;
  padding-left: 30px;
  transition: all 0.5s ease;
  border-style: none;
  position: absolute;
  z-index: 1000;
  top: 10px;
  pointer-events: auto;
}
.header-logo:hover {
  opacity: 0.9;
  transition: all .3s;
}
.experience-area {
  max-width: 100%;
  margin-left: auto;
  padding-right: 40px;
  width: 295px;
}
.experience-btn__link {
  transition: all 0.5s ease;
  box-sizing: border-box;
  background: #001A2C;
  display: block;
  color: #fff;
  font-size: 18px;
  line-height: 2.5;
  padding: 3px 30px;
  text-align: center;
  text-decoration: none;
  pointer-events: auto;
}
.experience-btn__link:hover {
  opacity: 0.6;
  color: #fff;
}
.tortuga-logo {
  margin: 0 3px 2px 0;
  height: 30px;
  width: 37px;
  vertical-align: middle;
  border-style: none;
}
@media (max-width: 768px) {
  .header {
    height: 85px;
  }
  .header-logo {
    top: 9px;
    width: 190px;
    padding-left: 25px;
  }
  .experience-area {
    display: none;
  }
}
@media (max-width: 480px) {
  .header {
    height: 75px;
  }
  .header-logo {
    width: 160px;
    padding-left: 16px;
    top: 8px;
  }
}
/*--end//header--*/
/*--video--*/
#video-container {
  padding-top: 56.25%;
  width: 100%;
  position: relative;
}
#video {
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  padding-top: 95px;
}
@media (max-width: 768px) {
  #video {
    padding-top: 85px;
  }
}
@media (max-width: 480px) {
  #video {
    padding-top: 75px;
  }
}
/*--end//video--*/
.u-inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 0 62px;
}
/*--information--*/
.info-container {
  display: grid;
  box-sizing: border-box;
  gap: 0 120px;
  padding: 210px 0 87px;
  height: 740px;
  pointer-events: auto;
}
.info-head {
  grid-row: 1/2;
}
.info-title {
  font-size: 40px;
  letter-spacing: 2px;
  font-weight: bold;
}
.info-title__sub {
  font-size: 18px;
  font-weight: 500;
  font-weight: bold;
}
.info-conts {
  grid-row: 1/3;
}
.tab {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 1rem;
}
.info-item {
  display: none;
}
.info-item + label {
  position: relative;
  order: -1;
  cursor: pointer;
  margin-right: 20px;
  padding: 20px 0 5px;
  width: 130px;
  font-size: 22px;
  white-space: nowrap;
  text-align: center;
  font-weight: 500;
}
.info-item + label:hover {
  color: #BBAF01;
}
.info-item + label::after {
  content: '';
  /*絶対配置で線の位置を決める*/
  position: absolute;
  bottom: 0;
  left: 10%;
  /*線の形状*/
  width: 80%;
  height: 2px;
  background: #BBAF01;
  /*アニメーションの指定*/
  transition: all .3s;
  transform: scale(0, 1); /*X方向0、Y方向1*/
  transform-origin: center top; /*上部中央基点*/
}
.info-item + label:hover::after, .info-item:checked + label::after {
  transform: scale(1, 1); /*X方向にスケール拡大*/
}
.tab-content {
  width: 100%;
  height: 0;
  overflow: hidden;
}
.info-item:checked + label {
  transition: color .5s ease-in-out;
  color: #BBAF01;
  font-weight: 500;
}
.info-item:checked + label + .tab-content {
  height: auto;
  opacity: 1;
  color: #333;
  transition: opacity .5s ease-in-out;
}
.info-article__conts ul {
  margin-top: 20px;
}
.info-list {
  display: flex;
  flex-wrap: wrap;
}
.info-article__item {
  box-sizing: border-box;
  border-bottom: 1px solid #333;
}
.info-article__item:hover {
  background-color: #E7E9DC;
  transition: all 0.5s ease;
}
.info-article__link {
  transition: all 0.5s ease;
  display: flex;
  flex-wrap: wrap;
  padding: 50px 0 25px;
}
.info-article__meta {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  padding-left: 13px;
}
.info-article__sp {
  display: flex;
  align-items: center;
}
.info-article__cat {
  font-size: 16px;
  margin-right: 25px;
  padding: 9px 20px;
  box-sizing: border-box;
  border: 1px solid;
  line-height: 1;
  background: #fff;
  min-width: 106px;
  font-weight: 500;
}
.info-article__date {
  font-size: 16px;
  margin-right: 25px;
  line-height: 1.6;
  font-weight: 500;
}
.info-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1; /* 制限したい行数が3の場合 */
  overflow: hidden;
  font-weight: 500;
}
.info-area__btn {
  align-self: end;
}
.btn-link {
  padding: 30px 0;
  border-radius: 100px;
  border: 1px solid #333;
  background: #fff;
  transition: ease .2s;
  position: relative;
  overflow: hidden;
  display: block;
  width: 210px;
}
.btn-link:hover span {
  color: #fff;
}
.btn-text {
  text-align: center;
  color: #333;
}
.btn-link span {
  position: relative;
  color: #333;
  border-radius: 100px;
}
.bgleft:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: #BBAF01;
  width: 100%;
  height: 100%;
  /*アニメーション*/
  transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
  border-radius: 100px;
}
.bgleft:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
@media (max-width: 1024px) {
  .info-container {
    display: block;
    height: 950px;
    padding: 185px 0 87px;
  }
  .info-list {
    margin-top: 60px;
  }
  .info-area__btn {
    display: flex;
    margin-top: 65px;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .u-inner {
    box-sizing: border-box;
    padding: 0 50px;
  }
  .info-container {
    box-sizing: border-box;
    padding-top: 170px;
    display: block;
    height: 895px;
  }
  .info-title {
    font-size: 32px;
  }
  .info-title__sub {
    font-size: 16px;
  }
  .info-item + label {
    font-size: 19px;
  }
  .info-conts {
    flex-wrap: wrap;
    margin-top: 40px;
  }
  .info-list {
    margin: 0;
    justify-content: center;
  }
  .info-article__link {
    display: block;
    padding: 40px 0 8px;
  }
  .info-article__meta {
    margin-bottom: 20px;
  }
  .info-article__cat {
    padding: 7px 12px;
    min-width: 90px;
  }
  .info-article__date {
    margin-right: 20px;
  }
  .info-area__btn {
    margin-top: 60px;
    justify-content: center;
  }
  @media (max-width: 717px) {
    .info-container {
      height: 945px;
    }
  }
  @media (max-width: 480px) {
    .u-inner {
      padding: 0 32px;
    }
    .info-container {
      padding-top: 130px;
      height: 860px;
    }
    .info-article__meta {
      display: block;
      margin-bottom: 0;
    }
    .info-article__sp {
      display: flex;
    }
    .info-conts {
      margin-top: 30px;
    }
    .info-article__conts ul {
      margin-top: 10px;
    }
    .info-title {
      font-size: 24px;
      letter-spacing: 1px;
    }
    .info-title__sub {
      font-size: 14px;
      letter-spacing: 1px;
    }
    .info-item + label {
      width: 97px;
      font-size: 16px;
    }
    .info-article__date {
      font-size: 14px;
      margin-right: 8px;
    }
    .info-article__cat {
      font-size: 14px;
      padding: 4px 8px;
      min-width: 73px;
      margin-right: 8px;
    }
    .info-text {
      font-size: 14px;
      margin-top: 12px;
    }
    .info-article__head {
      font-size: 15px;
    }
    .info-area__btn {
      margin-top: 50px;
    }
  }
}
/*--end//information--*/
/*--ABOUT--*/
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeUpTrigger {
  opacity: 0;
}
.pct-block {
  position: relative;
  width: 100%;
  padding-top: 40px;
}
.pct-block ul {
  display: flex;
}
.pct-block li {
  width: 25%;
}
.pct-block li img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #BBAF01;
  border-radius: 5px;
  width: 55px;
  height: 55px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  transition: all 0.3s;
}
#page-top a:hover {
  background: #777;
}
/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 5px;
  bottom: 10px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateX(100px);
}
/*　左の動き　*/
#page-top.LeftMove {
  animation: LeftAnime 0.5s forwards;
}
@keyframes LeftAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/*　右の動き　*/
#page-top.RightMove {
  animation: RightAnime 0.5s forwards;
}
@keyframes RightAnime {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 1;
    transform: translateX(100px);
  }
}
.about-container {
  position: relative;
  width: 100%;
  background: linear-gradient(45deg, #001A2C, #0F2738, #6F7E88); /*グラデーションを定義*/
  background-size: 200% 200%; /*サイズを大きくひきのばす*/
  animation: bggradient 20s ease infinite;
  padding: 230px 0 130px;
  box-sizing: border-box;
  color: #fff;
}
@keyframes bggradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.academy-concept__title {
  position: absolute;
  top: -42px;
  right: 0;
  left: 0;
  margin: auto;
  font-size: 64px;
  text-align: center;
  font-family: "Noto Sans Japanese", sans-serif;
  font-weight: 600;
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 2px;
}
.about-head {
  display: flex;
  justify-content: space-between;
}
.about-title {
  font-size: 40px;
  letter-spacing: 2px;
  font-weight: bold;
}
.about-title__sub {
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: bold;
}
.about-content {
  display: flex;
  justify-content: space-between;
}
.about-lead {
  font-size: 32px;
  line-height: 1.6;
  width: 48%;
  margin-bottom: 30px;
}
.about-logo {
  position: absolute;
  right: 30px;
  top: 85px;
  opacity: 0.3;
}
.about-text {
  font-size: 16px;
  line-height: 2.8;
  width: 48%;
}
.about-area__img {
  width: 45%;
  max-height: 39vw;
  overflow: hidden;
}
.about-pct {
  width: 100%;
  height: 40vw;
  object-fit: cover;
  border: none;
  transform: scale(1.1);
}
.about-area__btn {
  margin-top: 50px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .pct-block {
    padding-top: 0;
  }
  .pct-block ul {
    display: flex;
    flex-wrap: wrap;
  }
  .pct-block li {
    width: 50%;
    padding: 0;
    margin-bottom: -15px;
  }
  .pct-block li img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  .about-container {
    padding: 120px 0 120px;
  }
  .academy-concept__title {
    font-size: 48px;
    top: -32px;
  }
  .about-head {
    display: block;
  }
  .about-title {
    font-size: 32px;
  }
  .about-title__sub {
    margin-bottom: 50px;
    font-size: 16px;
  }
  .about-head {
    width: 100%;
  }
  .about-lead {
    margin-bottom: 30px;
    width: 100%;
    font-size: 26px;
  }
  .about-content {
    display: block;
  }
  .about-area__img {
    width: 100%;
    margin-bottom: 15px;
    max-height: 63vw;
  }
  .about-pct {
    height: 65vw;
  }
  .about-text {
    width: 100%;
    line-height: 2.5;
  }
  .about-area__btn {
    margin-top: 40px;
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 580px) {
  .academy-concept__title {
    font-size: 38px;
    top: -25px;
  }
}
@media (max-width: 480px) {
  .academy-concept__title {
    font-size: 28px;
    top: -18px;
  }
  .about-container {
    padding: 80px 0 80px;
  }
  .about-title {
    font-size: 24px;
    letter-spacing: 1px;
  }
  .about-title__sub {
    font-size: 14px;
    margin-bottom: 40px;
  }
  .about-logo {
    width: 220px;
    top: 115px;
  }
  .about-lead {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .about-pct {
    height: 257px;
  }
  .about-area__img {
    margin-bottom: 15px;
    height: 250px;
  }
}
/*--end//about--*/
/*--feature--*/
.feature-container {
  padding: 130px 0 130px;
}
.feature-head {
  display: flex;
  justify-content: center;
}
.feature-title__img {
  width: 165px;
}
.feature-title {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 2px;
}
.feature-title__sub {
  font-size: 18px;
  text-align: center;
  letter-spacing: 1px;
  font-weight: bold;
}
.feature-list {
  display: flex;
  margin-top: 75px;
}
.icon-number {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  height: 85px;
  width: 85px;
  border-radius: 50%;
  line-height: 85px;
  text-align: center;
  background: #BBAF01;
  font-size: 32px;
  color: #fff;
  font-style: normal;
}
.icon-number span {
  font-weight: 500;
}
.feature-item01 {
  width: 100%;
}
.feature-item02 {
  margin: 0 50px;
  width: 100%;
}
.feature-item03 {
  width: 100%;
}
.feature-img {
  margin: 65px 0 25px;
  max-height: 25vw;
  overflow: hidden;
  
}
.feature-pct1 {
  height: 25vw;
	width: 27vw;
  object-fit: cover;
}
.feature-pct2 {
  height: 25vw;
  object-fit: cover;
  filter: brightness(1.2);
}
.feature-pct3 {
  height: 25vw;
  object-fit: cover;
}
.feature-label {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: bold;
  text-align: center;
}
.feature-text {
  line-height: 1.7;
  font-size: 16px;
}
@media (max-width: 1024px) {
  .icon-number {
    height: 75px;
    width: 75px;
    line-height: 75px;
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .feature-container {
    padding: 120px 0 120px;
  }
  .feature-title {
    font-size: 32px;
  }
  .feature-title__sub {
    font-size: 16px;
  }
  .feature-title__img {
    width: 133px;
  }
  .feature-list {
    display: block;
    padding: 0 50px;
    margin-top: 50px;
  }
  .feature-img {
    max-height: 55vw;
    display: flex;
    justify-content: center; 
  }
  .feature-item02 {
    margin: 80px 0;
  }
  .feature-pct1 { 
    height: 55vw;
	width: 72vw; 
  }
  .feature-pct2 {
    height: 56vw;
  }
  .feature-pct3 {
    height: 56vw;
  }
}
@media (max-width: 480px) {
  .feature-head {
    padding: 0;
  }
  .feature-list {
    padding: 0;
    margin-top: 30px;
  }
  .feature-container {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .icon-number {
    height: 60px;
    width: 60px;
    line-height: 60px;
    font-size: 20px;
  }
  .feature-img {
    margin: 35px 0 25px;
  }
  .feature-item02 {
    margin: 55px 0;
  }
  .feature-title__img {
    width: 100px;
    object-fit: cover;
  }
  .feature-title {
    font-size: 24px;
    letter-spacing: 1px;
  }
  .feature-title__sub {
    font-size: 14px;
  }
  .feature-label {
    font-size: 20px;
  }
   .feature-pct1 { 
	width: 86vw;
  }  
 .feature-pct2 {
    width: 85vw;
  }
}
/*--end//feature--*/
/*--CLASS--*/
.bk-Square {
  background: #EBEFF4;
  padding: 100px 50px;
  text-align: center;
}
.class-title {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 2px;
}
.class-title__sub {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 1px;
}
.class-item01 {
  font-size: 22px;
  display: flex;
  align-items: center;
  gap: 0 60px;
  margin-top: 75px;
}
.class-detail01 {
  grid-column: 2/3;
  text-align: center;
  width: 50%;
}
.class-item02 {
  font-size: 22px;
  text-align: center;
  margin-top: 120px;
  display: flex;
  gap: 0 60px;
  flex-direction: row-reverse;
  align-items: center;
}
.class-detail02 {
  width: 50%;
}
.class-item03 {
  font-size: 22px;
  text-align: center;
  display: flex;
  gap: 0 60px;
  align-items: center;
  margin-top: 120px;
}
.class-detail03 {
  width: 50%;
}
.class-area__img {
  overflow: hidden;
  max-height: 30vw;
}
.class-pct1 {
  height: 25vw;
  object-fit: cover;
}
.class-pct2 {
  height: 25vw;
  object-fit: cover;
  transform: scale(1.2);
}
.class-pct3 {
  height: 25vw;
  object-fit: cover;
	transform: scale(1.1);
}
.class-label {
  font-size: 24px;
  font-weight: bold;
}
.class-label span {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: -20px;
  text-decoration: underline;
  text-decoration-thickness: 0.3em;
  text-decoration-color: rgba(187, 175, 1, 0.4);
}
.class-spread {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  margin-top: 15px;
}
.class-grade01 {
  padding: 15px;
  background: #CCCFD2;
  border: solid 1px #778ca3;
  font-weight: 600;
}
.class-time {
  padding: 15px;
  background-color: #fff;
  border: solid 1px #778ca3;
  font-weight: 600;
}
.class-time2 {
  padding: 15px;
  background-color: #fff;
  border: solid 1px #778ca3;
  font-weight: 600;
vertical-align: middle;
}
.class-streng {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  margin-top: 15px;
}
.class-grade02 {
  padding: 15px;
  background: #DDDCAB;
  border: solid 1px #778ca3;
  font-weight: 600;
}
.class-text {
  line-height: 1.7;
  margin-top: 25px;
  font-size: 20px;
  font-weight: 500;
}
.class-area__btn {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}
.class-grade03 {
  padding: 15px;
  background: #A6B0B8;
  border: solid 1px #778ca3;
  font-weight: 600;
}
@media (max-width: 768px) {
  .bk-Square {
    padding: 90px 40px;
  }
  .class-list {
    display: block;
  }
  .class-item01 {
    display: block;
    margin-top: 50px;
  }
  .class-detail01 {
    width: 100%;
    margin-top: 25px;
  }
  .class-item02 {
    margin-top: 80px;
    display: block;
  }
  .class-detail02 {
    width: 100%;
    margin-top: 25px;
  }
  .class-item03 {
    display: block;
    margin-top: 80px;
  }
  .class-detail03 {
    width: 100%;
    margin-top: 25px;
  }
  .class-area__img {
    max-height: 47vw;
  }
  .class-pct1 {
    height: 47vw;
  }
  .class-pct2 {
    height: 51vw;
    transform: scale(1.1);
  }
  .class-pct3 {
    height: 47vw;
  }
  .class-area__btn {
    margin-top: 40px;
  }
  .class-title {
    font-size: 32px;
  }
  .class-title__sub {
    font-size: 16px;
  }
  @media (max-width: 480px) {
    .bk-Square {
      padding: 70px 25px;
    }
    .class-title {
      font-size: 24px;
      letter-spacing: 1px;
    }
    .class-title__sub {
      font-size: 14px;
      letter-spacing: 1px;
    }
    .class-label {
      font-size: 20px;
    }
    .class-label span {
      font-size: 16px;
      margin-bottom: 10px;
      margin-top: -10px;
    }
    .class-item01 {
      margin-top: 40px;
    }
    .class-item02 {
      margin-top: 60px;
    }
    .class-item03 {
      margin-top: 60px;
    }
    .class-spread {
      font-size: 16px;
    }
    .class-streng {
      font-size: 16px;
    }
    .class-text {
      font-size: 16px;
    }
    .class-pct1 {
      height: 47.5vw;
    }
    .class-pct2 {
      height: 43vw;
    }
  }
}
/*--end//CLASS--*/
/*--staff--*/
.staff-container {
  padding-top: 130px;
}
.staff-head {
  margin-bottom: 38px;
}
.staff-title {
  font-size: 40px;
  letter-spacing: 2px;
  font-weight: bold;
}
.staff-title__sub {
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: bold;
}
.staff-content {
  display: flex;
}
.staff-area__img {
  max-height: 28vw;
  width: 560px;
  overflow: hidden;
}
.staff-pct {
  width: 100%;
  height: 28vw;
  object-fit: cover;
  transform: scale(1.3);
}
.staff-area__text {
  margin-left: 85px;
}
.staff-text {
  font-size: 24px;
  line-height: 1.7;
  font-weight: 500;
}
.staff-area__btn {
  margin-top: 50px;
}
@media (max-width: 768px) {
  .staff-container {
    padding-top: 120px;
  }
  .staff-content {
    display: block;
  }
  .staff-title {
    font-size: 32px;
  }
  .staff-title__sub {
    font-size: 16px;
  }
  .staff-area__img {
    width: auto;
    max-height: 45vw;
  }
  .staff-pct {
    height: 45vw;
  }
  .staff-area__text {
    margin: 0;
  }
  .staff-text {
    margin-top: 30px;
    font-size: 20px;
  }
  .staff-area__btn {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: 40px;
  }
}
@media (max-width: 480px) {
  .staff-container {
    padding-top: 80px;
  }
  .staff-head {
    margin-bottom: 30px;
  }
  .staff-title {
    font-size: 24px;
    letter-spacing: 1px;
  }
  .staff-title__sub {
    font-size: 14px;
  }
  .staff-text {
    margin-top: 25px;
    font-size: 16px;
  }
}
/*--end//staff--*/
/*--bnrs--*/
.bnrs-container {
  padding: 130px 0px 100px;
}
.bnrs-list {
  display: flex;
  flex-wrap: wrap;
}
.bnrs-item {
  width: 50%;
  box-sizing: border-box;
}
.bnrs-area__img {
  position: relative;
  padding: 18%;
  border: 1px solid #F8FBFF;
  background-color: #3B3B3B;
}
.bnrs-pct {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}
.bnrs-title {
  position: absolute;
  top: 35%;
  left: 15%;
  font-size: 3vw;
  color: #fff;
  font-weight: bold;
}
.bnrs-text {
  position: absolute;
  top: 60%;
  left: 15%;
  font-size: 1.5vw;
  color: #fff;
  font-weight: 500;
}
.bnrs-item:hover {
  opacity: 0.7;
  transition: all .3s;
  cursor: pointer;
}
@media (max-width: 768px) {
  .bnrs-container {
    padding: 120px 0px 120px;
  }
  .bnrs-list {
    display: block;
  }
  .bnrs-item {
    width: 100%;
  }
  .bnrs-title {
    font-size: 5.5vw;
  }
  .bnrs-text {
    font-size: 2.5vw;
  }
}
@media (max-width: 480px) {
  .bnrs-container {
    padding: 80px 0px 80px;
  }
}
/*--end//bnrs--*/
/*--gallery--*/
.gallery-container {
  padding-bottom: 130px;
}
.gallery-content {
  display: flex;
}
.gallery-head {
  margin-bottom: 38px;
}
.gallery-title {
  font-size: 40px;
  letter-spacing: 2px;
  font-weight: bold;
}
.gallery-title__sub {
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: bold;
}
.gallery-text {
  font-size: 24px;
}
.gallery-list__wrap {
  display: flex;
  margin: 0 calc(50% - 50vw);
  margin-top: 80px;
}
.gallery-list__wrap:hover .gallery-list {
  animation-play-state: paused;
}
.gallery-list {
  display: flex;
  animation: loop-slide 30s infinite linear 1s both;
}
@-webkit-keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.gallery-item {
  margin-right: 40px;
  width: 400px;
}
.gallery-area__img {
  height: auto;
}
.gallery-account {
  margin: 2px 0 0 50px;
  font-weight: 500;
}
.gallery-account__link {
  display: flex;
  font-size: 24px;
  transition: all 0.5s ease;
}
.gallery-account__ico {
  height: 30px;
  width: 30px;
  margin: -4px 15px 0 0;
}
@media (max-width: 768px) {
  .gallery-content {
    display: block;
  }
  .gallery-container {
    padding-bottom: 120px;
  }
  .gallery-account {
    margin: 40px 0 0;
  }
  .gallery-account__link {
    justify-content: center;
  }
  .gallery-head {
    font-size: 32px;
  }
  .gallery-title__sub {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .gallery-container {
    padding-bottom: 80px;
  }
  .gallery-head {
    margin-bottom: 30px;
  }
  .gallery-title {
    font-size: 24px;
    letter-spacing: 1px;
  }
  .gallery-title__sub {
    font-size: 14px;
  }
  .gallery-text {
    font-size: 16px;
  }
  .gallery-account__ico {
    margin: -3px 15px 0 0;
  }
  .gallery-item {
    width: 260px;
  }
  .gallery-list__wrap {
    margin-top: 60px;
  }
  .gallery-account__link {
    font-size: 20px;
  }
}
/*--end//gallery--*/
/*--contact--*/
.contact-container {
  position: absolute;
  display: flex;
  color: #fff;
  padding: 0 62px;
  background: linear-gradient(45deg, #001A2C, #0F2738, #6F7E88); /*グラデーションを定義*/
  background-size: 200% 200%; /*サイズを大きくひきのばす*/
  animation: bggradient 20s ease infinite;
  height: 275px;
  width: 100%;
  cursor: pointer;
  transition: all .3s;
}
.contact-container a {
  display: flex;
  align-items: center;
}
.contact-head {
  margin-right: 100px;
  line-height: 2;
}
.contact-title {
  font-size: 40px;
  letter-spacing: 2px;
  font-weight: bold;
  color: #FFF;
}
.contact-title__sub {
  margin-top: -5px;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: bold;
  color: #FFF;
}
.contact-logo {
  position: absolute;
  opacity: 0.3;
  width: 210px;
  left: 230px;
  top: 40px;
}
.contact-text {
  font-size: 24px;
  line-height: 2;
  color: #fff;
}
.contact-container:hover {
  opacity: 0.7;
}
.contact-area__btn {
  /*波紋の基点とするためrelativeを指定*/
  position: relative;
  /*波紋の形状*/
  display: inline-block;
  min-width: 90px;
  min-height: 90px;
  border-radius: 50%;
  color: #fff;
  outline: none;
  border: 7px solid;
  /*アニメーションの設定*/
  transition: all .3s;
  left: 30px;
}
.contact-area__btn:hover {
  background: #ABA000;
}
.contact-area__btn::after, .contact-area__btn::before {
  content: '';
  /*絶対配置で波形の位置を決める*/
  position: absolute;
  left: -25%;
  top: -25%;
  /*波形の形状*/
  border: 1px solid #fff;
  width: 150%;
  height: 150%;
  border-radius: 50%;
  /*はじめは不透明*/
  opacity: 1;
  /*ループするアニメーションの設定*/
  animation: 1s circleanime linear infinite;
}
/*波形のアニメーション*/
@keyframes circleanime {
  0% {
    transform: scale(0.68);
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
.contact-area__btn span::after {
  content: '';
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  display: inline-block;
  min-width: 20px;
  min-height: 20px;
  border-top: solid 8px #fff;
  border-right: solid 8px #fff;
  transform: rotate(45deg);
  top: 25px;
  left: 20px;
}
@media (max-width: 900px) {
  .contact-head {
    margin-right: 50px;
  }
}
@media (max-width: 768px) {
  .contact-container {
    display: block;
    padding: 25px 50px;
  }
  .contact-container a {
    display: block;
  }
  .contact-title {
    font-size: 32px;
  }
  .contact-title__sub {
    font-size: 16px;
  }
  .contact-head {
    margin: 0;
  }
  .contact-logo {
    left: 170px;
  }
  .contact-text {
    margin: 10px 70px 0 0;
    font-size: 20px;
  }
  .contact-area__btn {
    min-width: 70px;
    min-height: 70px;
    left: 88.5%;
    bottom: 80px;
  }
  .contact-area__btn span::after {
    min-width: 15px;
    min-height: 15px;
    top: 19px;
    left: 15px;
  }
}
@media (max-width: 480px) {
  .contact-container {
    padding: 20px 50px;
  }
  .contact-title {
    font-size: 24px;
    letter-spacing: 1px;
  }
  .contact-title__sub {
    font-size: 14px;
  }
  .contact-logo {
    width: 120px;
    top: 30px;
    left: 200px;
  }
  .contact-text {
    margin-top: 5px;
    font-size: 16px;
  }
  .contact-area__btn {
    min-width: 50px;
    min-height: 50px;
    left: 86%;
    bottom: 57px;
    border: 5px solid;
  }
  .contact-area__btn span::after {
    top: 13px;
    left: 11px;
    min-width: 10px;
    min-height: 10px;
    border-top: solid 6px #fff;
    border-right: solid 6px #fff;
  }
}
/*--end//contact--*/
/*--footer--*/
.footer-container {
  display: flex;
  justify-content: space-between;
  padding-top: 400px;
}
.footer-info {
  margin-right: 55px;
}
.footer-logo {
  width: 230px;
  padding: 0;
  transition: all 0.5s ease;
  border-style: none;
}
.footer-account {
  margin-top: 50px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
}
.footer-nav a {
  transition: all 0.5s ease;
}
.footer-nav-list-child__wrap {
  border-top: 1px solid;
  margin-top: 5px;
  padding-top: 10px;
  width: 288px;
}
.footer-nav-list-child__wrap2 {
  border-top: 1px solid;
  margin-top: 5px;
  padding-top: 15px;
  width: 288px;
}
.footer-nav-list-child__item {
  font-size: 16px;
  line-height: 2;
}
.footer-nav-list-child__item a {
  cursor: pointer;
}
.footer-nav__group {
  margin-left: 35px;
}
.footer-nav-list__item {
  margin-top: 10px;
  font-size: 24px;
  font-weight: 400;
}
.footer-nav-list__item a:hover {
  color: #BBAF01;
}
.footer-nav-list__item span {
  font-size: 14px;
  margin-left: 11px;
}
.footer-contact {
  margin-left: 130px;
}
.footer-account__link {
  display: flex;
  font-size: 24px;
  transition: all 0.5s ease;
}
.footer-account__ico {
  height: 40px;
  width: 40px;
  margin: -1px 25px 0 0;
}
.footer-sub__container {
  margin: 130px 0 60px;
}
.footer-sub__cr {
  font-size: 14px;
}
.accordion-check {
  display: none;
}
@media (max-width: 768px) {
  .footer-container {
    padding-top: 370px;
  }
}
@media (max-width: 680px) {
  .footer-container {
    display: block;
    padding-top: 340px;
  }
  .footer-info {
    margin-top: 25px;
  }
  .footer-logo {
    margin-bottom: 35px;
    width: 200px;
  }
  .footer-account {
    margin: 0;
  }
  .footer-account__ico {
    height: 40px;
    width: 40px;
    margin: -2px 20px 0 0;
  }
  .footer-nav {
    display: block;
    margin-top: 70px;
  }
  .footer-nav__group {
    margin: 0;
  }
  .footer-nav-list__item {
    font-size: 20px;
  }
  .footer-nav-list-child__wrap {
    width: 100%;
  }
  .footer-nav-list-child__wrap2 {
    width: 100%;
  }
  .accordion-label {
    position: relative;
    display: block;
    cursor: pointer;
  }
  .accordion-label::after {
    position: absolute;
    top: 50%;
    right: 0px;
    height: 100%;
    width: 40px;
    transform: translateY(-50%) rotate(0deg);
    color: #333;
    text-align: center;
    font-size: 1.5rem;
    content: '+';
  }
  .footer-nav-list-child__wrap {
    height: 0;
    overflow: hidden;
    transition: all .5s;
  }
  .accordion-check:checked ~ .footer-nav-list-child__wrap {
    height: auto;
    opacity: 1;
    padding: 1rem;
  }
  .accordion-check:checked + .accordion-label:after {
    transform: translateY(-50%) rotate(45deg);
  }
}
@media (max-width: 480px) {
  .footer-container {
    padding-top: 340px;
  }
  .footer-info {
    margin: 0;
  }
  .footer-logo {
    width: 155px;
    margin-bottom: 30px;
  }
  .footer-account__link {
    font-size: 16px;
    font-weight: 500;
  }
  .footer-account__ico {
    height: 30px;
    width: 30px;
    margin: -3px 15px 0 0;
  }
  .footer-nav {
    margin-top: 60px;
  }
}
.slide-in {
  overflow: hidden;
  display: inline-block;
}
/*左右のアニメーション*/
.leftAnime {
  opacity: 0; /*事前に透過0にして消しておく*/
}
.slideAnimeLeftRight {
  animation-name: slideTextX100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes slideTextX100 {
  from {
    transform: translateX(-100%); /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  animation-name: slideTextX-100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes slideTextX-100 {
  from {
    transform: translateX(100%); /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
/*--end//footer--*/
/*--------------------------------------
nav-list__child-item-link

--------------------------------------*/