@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;
}
@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;
    margin-top: -10px;
  }
  .top-lead {
    font-size: 16px;
  }
}
/*--end//top--*/
.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;
}
/*--information--*/
.info-container {
  padding: 90px 110px 140px 110px;
}
.info-title {
  font-size: 40px;
  letter-spacing: 2px;
  font-weight: bold;
}
.info-title__sub {
  font-size: 18px;
  font-weight: 500;
  font-weight: bold;
}
.info-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.info-item {
  transition: all 0.5s ease;
  font-size: 22px;
  margin-right: 40px;
  padding: 20px 0 5px;
  width: 130px;
  max-width: 130px;
  box-sizing: border-box;
  border-bottom: 1px solid;
  color: #d8cfc6;
  text-align: center;
}
.info-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
	font-weight: 500;
}
.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: wrap;
  align-items: center;
		padding-left: 13px;
}
 .info-article__sp {
		  display: flex;
	  align-items: center;
	  }
.info-article__cat {
  font-size: 16px;
  margin: 0 25px 0 0;
  padding: 9px 20px;
  box-sizing: border-box;
  border: 1px solid;
  line-height: 1;
  background: #fff;
	font-weight: 500;
}
.info-article__date {
  font-size: 16px;
  margin: 0 25px 0 0;
  line-height: 1.6;
	font-weight: 500;
}
@media (max-width: 1040px) {
  .info-container {
    padding: 70px 0 110px 0;
  }
}
@media (max-width: 768px) {
  .u-inner {
    box-sizing: border-box;
    padding: 0 50px;
  }
  .info-container {
    box-sizing: border-box;
    display: block;
  }
  .info-title {
    font-size: 32px;
  }
  .info-title__sub {
    font-size: 16px;
  }
  .info-item + label {
    font-size: 19px;
  }
  .info-list {
    margin: 0;
    justify-content: center;
  }
  .info-article__link {
    display: block;
    padding: 40px 0 5px;
  }
  .info-article__meta {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
  }
  .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: 480px) {
    .info-container {
      padding: 60px 0 80px 0;
    }
	    .u-inner {
		  padding: 0 32px;
	  }
	  	  .info-article__meta {
		  display: block;
		  margin-bottom: 0;
	  }
	  .info-article__sp {
		  display: flex;
	  }

    .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: 0 8px 0 0;
    }
    .info-text {
      font-size: 14px;
		margin-top: 12px;
    }
    .info-article__head {
      font-size: 15px;
    }
    .info-area__btn {
      margin-top: 60px;
    }
  }
}
/*--end//information--*/
/*--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--*/