body {
  /* font-family: 'Lato', sans-serif; */
  font-family: 'Gothic A1', sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #1C1C1C;
  letter-spacing: 0.1em;
  line-height: 1.8;
  width: 100%;
  transition: opacity 0.4s;
  transition-duration: 0.4s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: opacity;
  margin: 0px;
  letter-spacing: 0.05rem;
}

ul,
ol {
list-style: none;
padding: 0px;
}

a {
color: inherit;
text-decoration: none;
}

.main_title {
  font-size: 60px;
}

.main_title::after {
  display: inline-block;
  content: "";
  border-top: 1px solid #000000;
  width: 40px;
  margin-left: 5px;
  margin-right: 10px;
}

.small_title {
  font-size: 20px;
}

/* フェードイン */

.js-fade_left {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-60px);
  transition: opacity 1.5s,visibility 1.5s, transform 1.5s;
}

.scroll {
  opacity: 1;
  visibility: visible;
  transform: translateX(0px);
}

.js-fade {
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  transition: opacity 1s,visibility 1s, transform 1s;
}

.scroll {
  opacity: 1;
  visibility: visible;
  transform: translateX(0px);
}

/* フェードイン終了 */



/* ヘッター */

header {
  width: 100%;
  top: 0;
  background-color: #fff;
  z-index: 100;
}

.header_menu_wrapper {
  padding-top: 40px;
  background-color: #D6E4F080;
}

.header_nav_wraper {
  display: none;
}

.nav {
  display: none;
}

.header_menu {
  width: 83.3vw;
  margin: 0 auto;
}

.header_menu ul {
  display: flex;
  margin-bottom: 0px;
}

.header_menu li {
  margin-right: 60px;
}

.header_menu li a {
  font-size: 20px;
  position: relative;
  font-weight: bold;
}

.header_menu li a::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #163172;
  bottom: -7px;               /*アンダーラインがaタグの下端から現れる*/
  transform: scale(0, 1);     /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
  transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
  transition: transform 0.3s; /*変形の時間*/
}

.header_menu li a:hover::after {
  transform: scale(1, 1);     /*ホバー後、x軸方向に1（相対値）伸長*/
}

.header_menu li.current a::after {
  transform: scale(1, 1);
}

.header_menu li.current a::after {
  background: #163172;
}

.menu_last {
  margin-right: 0px;
}

/* ヘッター終了 */


/* about */

.about_wrapper {
  padding-top: 100px;
  padding-bottom: 120px;
  background-color: #D6E4F080;
}

.about_introduce {
  width: 48.6vw;
  margin: 0 auto;
}

.about_title {
  margin-bottom: 80px;
}

.about_title_main {
  display: flex;
  justify-content: center;
  margin-top: 0px;
  margin-bottom: 0px;
  font-weight: 600;
  line-height: 1.2;
  overflow: hidden;
}

.about_title_main p {
  color: #163172;
  font-weight: bold;
  letter-spacing: .06em;
  margin: 0;

  /* ここからアニメーション関係 */
  transform: translateY(2em);
  animation: textanimation 1s forwards;
}


.about_title_sub {
  display: flex;
  justify-content: center;
  margin-top: 0px;
  margin-bottom: 0px;
  font-weight: 600;
  line-height: 1.2;
  overflow: hidden;
}

.about_title_sub p {
  color: #163172;
  font-weight: bold;
  letter-spacing: .06em;
  margin: 0;

  /* ここからアニメーション関係 */
  transform: translateY(2em);
  animation: textanimation 1s forwards;
}

.about_title_main p:nth-child(1) {
  animation-delay: 0.1s
}
/* 2文字目 */
.about_title_main p:nth-child(2) {
  animation-delay: 0.2s
}
/* 3文字目 */
.about_title_main p:nth-child(3) {
  animation-delay: 0.3s
}
/* 4文字目 */
.about_title_main p:nth-child(4) {
  animation-delay: 0.4s
}
/* 5文字目 */
.about_title_main p:nth-child(5) {
  animation-delay: 0.5s
}


.about_title_sub p:nth-child(1) {
  animation-delay: 0.1s
}
/* 2文字目 */
.about_title_sub p:nth-child(2) {
  animation-delay: 0.2s
}
/* 3文字目 */
.about_title_sub p:nth-child(3) {
  animation-delay: 0.3s
}

.about_title_sub p:nth-child(4) {
  animation-delay: 0.4s
}
/* 5文字目 */
.about_title_sub p:nth-child(5) {
  animation-delay: 0.5s
}



@keyframes textanimation {
  0% {
      transform: translateY(2em);
  }

  100% {
      transform: translateY(0);
  }
}


.big_title {
  font-size: 60px;
}

.small_title {
  font-size: 20px;
}

.small_triangle {
  display: none;
}

/* .about_introduce h3 {
  margin-bottom: 45px;
  margin-top: 0px;
} */

.name_introduce {
  display: flex;
}

.name_introduce_main {
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-right: 25px;
  margin-top: 0px;
  margin-bottom: 0px;
}

.name_introduce_main p {
  color: #000000;
  font-weight: bold;
  letter-spacing: .06em;
  margin: 0;

  /* ここからアニメーション関係 */
  transform: translateY(2em);
  animation: textanimation 1s forwards;
}

.name_introduce_sub {
  display: flex;
  align-items: center;
  overflow: hidden;
  margin: 0px;
}

.name_introduce_sub p {
  color: #000000;
  font-weight: bold;
  letter-spacing: .06em;
  margin: 0;

  /* ここからアニメーション関係 */
  transform: translateY(6em);
  animation: textanimation 1s forwards;
}


.name_introduce_main p:nth-child(1) {
  animation-delay: 0.8s
}
/* 2文字目 */
.name_introduce_main p:nth-child(2) {
  animation-delay: 0.9s
}
/* 3文字目 */
.name_introduce_main p:nth-child(3) {
  animation-delay: 1s
}
/* 4文字目 */
.name_introduce_main p:nth-child(4) {
  animation-delay: 1.1s
}
/* 5文字目 */
.name_introduce_main p:nth-child(5) {
  animation-delay: 1.2s
}



.name_introduce_sub p:nth-child(1) {
  animation-delay: 1.5s
}
/* 2文字目 */
.name_introduce_sub p:nth-child(2) {
  animation-delay: 1.6s
}
/* 3文字目 */
.name_introduce_sub p:nth-child(3) {
  animation-delay: 1.7s
}
/* 4文字目 */
.name_introduce_sub p:nth-child(4) {
  animation-delay: 1.8s
}
/* 5文字目 */
.name_introduce_sub p:nth-child(5) {
  animation-delay: 1.9s
}

.name_introduce_sub p:nth-child(6) {
  animation-delay: 2s
}
/* 2文字目 */
.name_introduce_sub p:nth-child(7) {
  animation-delay: 2.1s
}
/* 3文字目 */
.name_introduce_sub p:nth-child(8) {
  animation-delay: 2.2s
}
/* 4文字目 */
.name_introduce_sub p:nth-child(9) {
  animation-delay: 2.3s
}
/* 5文字目 */
.name_introduce_sub p:nth-child(10) {
  animation-delay: 2.4s
}
.name_introduce_sub p:nth-child(11) {
  animation-delay: 2.5s
}
/* 2文字目 */
.name_introduce_sub p:nth-child(12) {
  animation-delay: 2.6s
}
/* 3文字目 */
.name_introduce_sub p:nth-child(13) {
  animation-delay: 2.7s
}
/* 4文字目 */
.name_introduce_sub p:nth-child(14) {
  animation-delay: 2.8s
}
/* 5文字目 */
.name_introduce_sub p:nth-child(15) {
  animation-delay: 2.9s
}

.name_introduce_sub p:nth-child(16) {
  animation-delay: 3s
}

.name_introduce_sub p:nth-child(17) {
  animation-delay: 3.1s
}

.name_introduce_sub p:nth-child(18) {
  animation-delay: 3.2s
}

.name_introduce_sub p:nth-child(19) {
  animation-delay: 3.3s
}

.name_introduce_sub p:nth-child(20) {
  animation-delay: 3.4s
}





@keyframes textanimation {
  0% {
      transform: translateY(2em);
  }

  100% {
      transform: translateY(0);
  }
}



.big_name {
  font-size: 50px;
  font-weight: 500;
  margin-right: 40px;
}

.small_name {
  font-size: 20px;
}

.explation_first {
  margin-top: 35px;
  margin-bottom: 30px;
  font-size: 16px;
}

.explation_second {
  margin-bottom: 30px;
  margin-top: 0px;
  font-size: 16px;
}

.explation_third {
  font-size: 16px;
  margin-top: 0px;
  margin-bottom: 0px;
}

.process_btn {
  text-align: center;
}

.process_btn a {
  display: inline-block;
  padding: 20px 90px;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  border-radius: 50px;
  background-color: #1E56A0;
  text-align: center;
  border: 2px solid #1E56A0;
  cursor: pointer;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}

.process_btn a:hover {
  background: #fff;
  color: #1E56A0;
}


/* Strengths */

.Strengths_wrapper {
  padding-top: 80px;
  padding-bottom: 120px;
  background-color: #1E56A0;
}

.Strengths {
  width: 79.9vw;
  margin: 0 auto;
}

.Strengths h2 {
  margin-top: 0px;
  margin-bottom: 70px;
  color: #fff;
}


.Strengths_main_title {
  font-size: 60px;
}

.Strengths_main_title::after {
  display: inline-block;
  content: "";
  border-top: 1px solid #fff;
  width: 40px;
  margin-left: 5px;
  margin-right: 10px;
}

.Sterengths_picture {
  text-align: center;
  margin-bottom: 70px;
}

.Strengths_list {
  display: flex;
  justify-content: center;
  color: #fff;
}

.Strengths_ingenuity {
  margin-right: 85px;
  width: 28%;
}

.Strengths_ingenuity h3 {
  font-size: 30px;
  margin-top: 0px;
  margin-bottom: 0px;
  padding-bottom: 10px;
  text-align: center;
  border-bottom: 1px solid #fff;
}

.Strengths_ingenuity p {
  padding-top: 25px;
  margin-top: 0px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 15px;
  margin-bottom: 0px;
  line-height: 2;
}

.Strengths_inquisitive {
  margin-right: 85px;
  width: 28%;
}

.Strengths_inquisitive h3 {
  font-size: 30px;
  margin-top: 0px;
  margin-bottom: 0px;
  padding-bottom: 10px;
  text-align: center;
  border-bottom: 1px solid #fff;
}

.Strengths_inquisitive p {
  padding-top: 25px;
  margin-top: 0px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 15px;
  margin-bottom: 0px;
  line-height: 2;
}

.Strengths_inclusive {
  width: 28%;
}

.Strengths_inclusive h3 {
  font-size: 30px;
  margin-top: 0px;
  margin-bottom: 0px;
  padding-bottom: 10px;
  text-align: center;
  border-bottom: 1px solid #fff;
}

.Strengths_inclusive p {
  padding-top: 25px;
  margin-top: 0px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 15px;
  margin-bottom: 0px;
  line-height: 2;
}

/* Strengths終了 */


/* likes */

.like_wrapper {
  padding-top: 60px;
  padding-bottom: 120px;
  background-color: #D6E4F080;
}

.like {
  width: 79.9vw;
  margin: 0 auto;
}

.like h2 {
  margin-bottom: 80px;
  margin-top: 0px;
  font-weight: 500;
}

.like_photo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.like_Castle {
  margin-right: 45px;
  margin-bottom: 45px;
}

.like_Nogizaka {
  margin-right: 45px;
}

.like_jiro {
  margin-right: 45px;
}

.like_shrines {
  margin-right: 45px;
}

/* like終了 */




/* フッター */

.footer_wrapper {
  padding-top: 40px;
  padding-bottom: 30px;
  background-color: #163172;
}

.footer {
  width: 83.3vw;
  margin: 0 auto;
}

.footer p {
  text-align: center;
  color: #fff;
  font-size: 50px;
  margin-top: 0px;
  margin-bottom: 55px;
}

.footer_btn {
  text-align: center;
  margin-bottom: 30px;
}

.footer_btn a {
  display: inline-block;
  padding: 20px 90px;
  font-size: 20px;
  color: #000;
  border-radius: 50px;
  background-color: #fff;
  text-align: center;
}

.icon {
  text-align: center;
}










@media (max-width: 760px) {

  /* ハンバーガーメニュー */

  .header_nav_wrapper {
    display: block;
    background-color: #D6E4F080;
  }

  .header_menu_wrapper {
    display: none;
  }

  .header_nav_menu {
    position: fixed;
    display: block;
    top: 20px;
    right: 10%;
    z-index: 40;
  }


  .nav_toggle {
    display: block;
    position: absolute;
    width: 1.75rem;
    height: 1.5rem;
    z-index: 30;
  }
  .nav_toggle i {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #163172;
    position: absolute;
    transition: transform .5s, opacity .5s;
  }
  .nav_toggle i:nth-child(1) {
    top: 0;
  }
  .nav_toggle i:nth-child(2) {
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .nav_toggle i:nth-child(3) {
    bottom: 0;
  }

  .nav_toggle.show i:nth-child(1) {
    transform: translateY(10px) rotate(-45deg);
  }
  .nav_toggle.show i:nth-child(2) {
    opacity: 0;
  }
  .nav_toggle.show i:nth-child(3) {
    transform: translateY(-12px) rotate(45deg);
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s, visibility .5s;
    background-color: #FFF;
    transition: all 0.3s;
    display: block;
    width: 100vw;
    height: 100%;
    /* transform: translateY(-24px); */
  }

  .nav.show {
    opacity: 1;
    visibility: visible;
    background-color: #1E56A0;
  }

  .nav ul {
    margin: 0px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .nav ul li {
    margin-bottom: 60px;
  }

  .nav ul li a{
    display: flex;
    flex-direction: column;
    text-align: center;
    color: #fff;
  }

  .header_main_menu {
    font-size: 24px;
  }

  .header_sub_menu {
    font-size: 13px;
  }
  
  /* ハンバーガーメニュー終了 */




  /* about_introduce */

  .about_wrapper {
    padding-top: 100px;
    padding-bottom: 60px;
    background-color: #D6E4F080;
  }

  .about_introduce {
    width: 88vw;
    margin: 0 auto;
  }

  /* .about_introduce h1 {
    margin-bottom: 60px;
  } */

  .about_title {
    margin-bottom: 60px;
  }

  .about_title_main {
    margin: 0px;
  }

  .about_title_sub {
    margin: 0px;
  }

  .big_title {
    font-size: 40px;
  }
  
  .small_title {
    font-size: 18px;
  }

  /* .about_introduce h3 {
    margin-bottom: 30px;
    text-align: center;
  } */

  .name_introduce_main {
    display: flex;
    text-align: center;
  }

  .big_name {
    font-size: 28px;
    margin-right: 10px;
  }

  .small_name {
    font-size: 13px;
  }

  .explation_first {
    margin-top: 0px;
    margin-bottom: 30px;
  }

  .explation_second {
    margin-top: 0px;
    margin-bottom: 30px;
  }

  .explation_third {
    margin-top: 0px;
    margin-bottom: 50px;
  }

  .process_btn a {
    padding: 15px 50px;
  }

  /* about_introduce終了 */




  /* Strengths ～強み～ */

  .Strengths_wrapper {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .Strengths {
    width: 82.2vw;
    margin: 0 auto;
  }

  .Strengths h2 {
    text-align: left;
    margin-bottom: 45px;
  }

  .Strengths_main_title {
    font-size: 30px;
  }

  .Sterengths_picture {
    margin-bottom: 80px;
    text-align: center;
  }

  .Strengths_list {
    display: flex;
    flex-direction: column;
  }

  .Strengths_ingenuity {
    margin-right: 0px;
    width: 97%;
    margin-bottom: 50px;
  }

  .Strengths_inquisitive {
    margin-right: 0px;
    width: 97%;
    margin-bottom: 50px;
  }

  .Strengths_inclusive {
    width: 97%;
  }

  .big_triangle {
    display: none;
  }

  .small_triangle {
    display: inline-block;
    text-align: center;
    width: 82vw;
    height: auto;
  }

  /* Strengths ～強み～　終了 */



  /* like ～好きなこと～ */

  .like_wrapper {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .like {
    width: 88vw;
    margin: 0 auto;
  }

  .like h2 {
    margin-bottom: 40px;
    font-weight: 600;
  }

  .like_hobby {
    width: 87.9vw;
    height: auto;
  }

  .like_Castle {
    margin-right: 0px;
    margin-bottom: 35px;
  }

  .like_Nogizaka {
    margin-right: 0px;
    margin-bottom: 35px;
  }

  .like_Giants {
    margin-right: 0px;
    margin-bottom: 35px;
  }

  .like_jiro {
    margin-right: 0px;
    margin-bottom: 35px;
  }

  .like_shrines  {
    margin-right: 0px;
    margin-bottom: 35px;
  }

  .like_view {
    margin-right: 0px;
    margin-bottom: 0px;
  }

  .main_title {
    font-size: 30px;
  }

  .small_title {
    font-size: 13px;

  }

  /* like ～好きなこと～  終了 */



  /* フッター */

  .footer_wrapper {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .footer {
    width: 88vw;
    margin: 0 auto;
  }

  .footer p {
    font-size: 28px;
    margin-bottom: 25px;
  }

  .footer_btn {
    margin-bottom: 15px;
  }

}









@media (761px<= width <=1023px) {

  .about_wrapper {
    padding-top: 80px;
  }

  .about_introduce {
    width: 88vw;
    margin: 0 auto;
  }

  .about_title {
    margin-bottom: 60px;
  }

  .big_title {
    font-size: 50px;
  }

  .small_title {
    font-size: 20px;
  }
}



@media (761px <= width <=1426px) {

  .Strengths_list {
    display: block;
  }

  .Strengths_ingenuity {
    width: 75%;
    margin: 0 auto;
    margin-bottom: 50px;
  }

  .Strengths_inquisitive {
    width: 75%;
    margin: 0 auto;
    margin-bottom: 50px;
  }

  .Strengths_inclusive {
    width: 75%;
    margin: 0 auto;
  }

  .like_photo {
    display: flex;
    justify-content: space-between;
  }

  .like_hobby {
    width: 37.6vw;
    height: auto;
  }

  .like_Castle {
    margin-right: 0px;
  }

  .like_Nogizaka {
    margin-right: 0px;
  }

  .like_Giants {
    margin-bottom: 45px;
  }

  .like_jiro {
    margin-right: 0px;
    margin-bottom: 45px;
  }

  .like_shrines {
    margin-right: 0px;
  }

}




@media (max-width: 375px) {

  .name_introduce {
    display: flex;
    flex-direction: column;
    margin-bottom: 45px;
  }

  .name_introduce_main  {
    display: flex;
    justify-content: center;
    margin-right: 0px;
  }

  .name_introduce_sub {
    justify-content: center;
  }

  .big_name {
    margin-right: 0px;
  }

  .process_btn a {
    font-size: 15px;
  }
}










