@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--*/
/*--top--*/
.top-img {
  position: relative;
  height: 850px;
  background-position: center;
  background-size: 100% auto;
  background-color: #3B3B3B;
}
.top-pct {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}
.top-title {
  position: absolute;
  top: 58%;
  color: #fff;
  font-size: 64px;
  font-weight: bold;
}
.top-title__sub {
  position: absolute;
  top: 68%;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
}
.top-lead {
  color: #FFF;
  position: absolute;
  top: 78%;
  font-size: 36px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .top-img {
    height: 690px;
  }
  .top-title {
    font-size: 48px;
  }
  .top-title__sub {
    font-size: 20px;
  }
  .top-lead {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .top-img {
    height: 580px;
  }
  .top-title {
    font-size: 32px;
  }
  .top-title__sub {
    font-size: 14px;
  }
  .top-lead {
    font-size: 20px;
  }
}
/*--end//top--*/
/*--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;
}
#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);
  }
}
.u-inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 0 62px;
}
#about-container {
  position: relative;
  width: 100%;
  background: linear-gradient(45deg, #001A2C, #0F2738, #6F7E88); /*グラデーションを定義*/
  background-size: 200% 200%; /*サイズを大きくひきのばす*/
  animation: bggradient 20s ease infinite;
  padding: 130px 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%;
  }
}
.about-content01 {
  display: grid;
  gap: 0 90px;
}
.about-area__img {
  max-height: 33vw;
  overflow: hidden;
}
.about-head01 {
  grid-column: 2/3;
}
.concept-title {
  font-size: 40px;
  letter-spacing: 2px;
  font-weight: bold;
}
.about-logo {
  position: absolute;
  right: 30px;
  top: 85px;
  opacity: 0.3;
}
.about-text {
  font-size: 16px;
  line-height: 2.8;
}
.about-pct1 {
  width: 100%;
  height: 35vw;
  object-fit: cover;
  border: none;
  transform: scale(1.1);
}
.about-content02 {
  display: grid;
  gap: 0 90px;
  margin-top: 120px;
}
.about-thought__img {
  max-height: 33vw;
  overflow: hidden;
  grid-column: 2/3;
}
.about-pct2 {
  height: 42vw;
  object-fit: cover;
  border: none;
  transform: scale(1.1);
}
.about-head02 {
  grid-row: 1/2;
}
@media (max-width: 768px) {
  .u-inner {
    box-sizing: border-box;
    padding: 0 50px;
  }
  .about-content01 {
    display: block;
  }
  .about-content02 {
    display: block;
    margin-top: 80px;
  }
  .about-logo {
    top: 565px;
  }
  .about-head01 {
    text-align: center;
  }
  .about-head02 {
    text-align: center;
  }
  .academy-concept__title {
    font-size: 48px;
    top: -32px;
  }
  .about-title__sub {
    margin-bottom: 50px;
  }
  .about-area__img {
    width: 100%;
    max-height: 56vw;
    margin-bottom: 25px;
  }
  .about-pct1 {
    height: 56vw;
    transform: scale(1.2);
  }
  .about-thought__img {
    max-height: 56vw;
    width: 100%;
    margin-bottom: 25px;
  }
  .about-pct2 {
    height: 72vw;
  }
  .concept-title {
    text-align: center;
    font-size: 32px;
  }
  .about-text {
    width: 100%;
    line-height: 2.5;
    text-align: justify;
  }
}
@media (max-width: 480px) {
  #about-container {
    padding: 80px 0 80px;
  }
  .u-inner {
    padding: 0 32px;
  }
  .about-area__img {
    height: 250px;
    margin-bottom: 25px;
  }
  .about-pct1 {
    height: 250px;
  }
  .about-logo {
    top: 385px;
    width: 220px;
  }
  .concept-title {
    font-size: 24px;
    letter-spacing: 1px;
  }
  .about-text {
    line-height: 1.7;
  }
  .about-thought__img {
    height: 250px;
    margin-bottom: 25px;
  }
  .about-pct2 {
    height: 313px;
  }
}
/*--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;
  }
  .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--*/
/*--access--*/
#access-container {
  padding-bottom: 130px;
}
.access-head {
  margin-bottom: 38px;
}
.access-title {
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 2px;
}
.access-title__sub {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 1px;
}
.access-content {
  display: flex;
}
.access-item1 {
  display: flex;
  padding-top: 30px;
  border-bottom: 1px solid;
}
.access-item2 {
  display: flex;
  padding-top: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid;
}
.access-area__img {
  width: 450px;
  max-height: 28vw;
}
.area-pct {
  height: 23vw;
  object-fit: cover;
}
.access-list {
  margin-left: 85px;
}
.access-list h3 {
  font-size: 24px;
  border-bottom: 1px solid;
  font-weight: 500;
}
.access-label {
  flex: 0 0 100px;
  line-height: 35px;
}
.access-text {
  line-height: 35px;
}
.fa-map {
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  border: 0.1em solid currentColor;
  border-radius: 40% 60% 0% 100% / 40% 100% 0% 60%;
  box-sizing: content-box;
  transform: rotate(45deg);
}
.fa-map:before {
  content: '';
  position: absolute;
  top: 18%;
  left: 18%;
  width: 0.336em;
  height: 0.336em;
  border: 0.1em solid currentColor;
  border-radius: 50%;
  box-sizing: border-box;
}
.access-text a {
  transition: all 0.5s ease;
  border-bottom: solid 1px #d6d6d6;
}
.access-text a:hover {
  color: #BBAF01;
}
@media (max-width: 768px) {
  #access-container {
    padding-bottom: 120px;
  }
  .access-content {
    display: block;
  }
  .access-area__img {
    width: 100%;
    max-height: 56vw;
  }
  .area-pct {
    height: 375px;
    height: 56vw;
  }
  .access-list {
    margin-left: 0px;
    margin-top: 30px;
  }
  .access-title {
    font-size: 32px;
  }
  .about-title__sub {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .access-head {
    margin-bottom: 25px;
  }
  .access-title {
    font-size: 24px;
    letter-spacing: 1px;
  }
  .access-title__sub {
    font-size: 14px;
  }
  .access-list {
    margin-top: 20px;
  }
  .access-list h3 {
    font-size: 20px;
  }
  .access-item1 {
    padding-top: 25px;
  }
  .access-item2 {
    padding-top: 25px;
    padding-bottom: 15px;
  }
  #access-container {
    padding-bottom: 80px;
  }
}
/*--end//access--*/
/*--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--*/