body {
  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;
}

.big_title {
  font-size: 60px;
}

.small_title {
  font-size: 20px;
}

/* ヘッター */

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;
}

/* ヘッター終了 */


/* プロセスストーリー */

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

.process {
  width: 80.5vw;
  margin: 0 auto;
}

/* .process h1 {
  display: flex;
  flex-direction: column;
  text-align: center;
  line-height: 1.2;
  color: #163172;
  margin-bottom: 100px;
} */

.process_title {
  margin-bottom: 100px;
}

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

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

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


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

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

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

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

.process_title_main p:nth-child(6) {
  animation-delay: 0.6s
}

.process_title_main p:nth-child(7) {
  animation-delay: 0.7s
}


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

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



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

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


.process_story {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #fff;
  border-radius: 100px;
}




.process_first {
  width: 77.6%;
  margin: 0 auto;
  margin-bottom: 100px;
}

.process_first h2 {
  font-size: 40px;
  color: #052C92;
  text-align: center;
  margin-bottom: 60px;
  margin-top: 0px;
}




.process_september {
  padding-bottom: 40px;
  border-bottom: 1px solid #000;
}

.process_september h3 {
  text-align: center;
  margin-top: 0px;
  margin-bottom: 30px;
}

.process_september h3 span {
  font-size: 26px;
  padding: 5px 10px;
  border: 1px solid #000;
  margin-top: 0px;
  margin-bottom: 30px;
}

.process_september p {
  font-size: 20px;
  margin: 0px;
  text-align: center;
}




.process_October {
  padding-top: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #000;
}

.process_October h3 {
  text-align: center;
  margin-top: 0px;
  margin-bottom: 30px;
}

.process_October h3 span {
  font-size: 26px;
  padding: 5px 10px;
  border: 1px solid #000;
  margin-top: 0px;
  margin-bottom: 30px;
}

.process_October p {
  font-size: 20px;
  margin: 0px;
}

.process_start {
  padding-bottom: 25px;
}

.process_feel {
  color: red;
  font-weight: bold;
}



.process_december {
  padding-top: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #000;
}

.process_december h3 {
  text-align: center;
  margin-top: 0px;
  margin-bottom: 30px;
}

.process_december h3 span {
  font-size: 26px;
  padding: 5px 10px;
  border: 1px solid #000;
  margin-top: 0px;
  margin-bottom: 30px;
}

.process_december p {
  font-size: 20px;
  margin: 0px;
  text-align: center;
}




.process_second {
  width: 77.6%;
  margin: 0 auto;
  /* margin-bottom: 100px; */
}

.process_second h2 {
  font-size: 40px;
  color: #052C92;
  text-align: center;
  margin-bottom: 60px;
  margin-top: 0px;
}



.process_February {
  padding-top: 0px;
  padding-bottom: 40px;
  border-bottom: 1px solid #000;
}

.process_February h3 {
  text-align: center;
  margin-top: 0px;
  margin-bottom: 30px;
}

.process_February h3 span {
  font-size: 26px;
  padding: 5px 10px;
  border: 1px solid #000;
  margin-top: 0px;
  margin-bottom: 30px;
}

.process_February p {
  font-size: 20px;
  margin: 0px;
}

.process_restart {
  padding-bottom: 25px;
}

.process_restart span {
  color: red;
  font-weight: bold;
}

.process_work {
  text-align: center;
}




.process_cording {
  padding-top: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #000;
}

.process_cording h3 {
  text-align: center;
  margin-top: 0px;
  margin-bottom: 30px;
}

.process_cording h3 span {
  font-size: 26px;
  padding: 5px 10px;
  border: 1px solid #000;
  margin-top: 0px;
  margin-bottom: 30px;
}

.process_cording p {
  font-size: 20px;
  margin: 0px;
  text-align: center;
}

.process_cording h4 {
  font-size: 24px;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

.copy_first {
  margin-right: 35px;
}

.copy_second {
  margin-right: 35px;
}

.copy_final {
  margin: 0px;
}



.process_June {
  padding-top: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #000;
}

.process_June h3 {
  text-align: center;
  margin-top: 0px;
  margin-bottom: 30px;
}

.process_June h3 span {
  font-size: 26px;
  padding: 5px 10px;
  border: 1px solid #000;
  margin-top: 0px;
  margin-bottom: 30px;
}

.process_June p {
  display: flex;
  flex-direction: column;
  font-size: 20px;
  margin: 0px;
}

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

.life span {
  color: red;
  font-weight: bold;
}



.process_design {
  padding-top: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #000;
}

.process_design h3 {
  text-align: center;
  margin-top: 0px;
  margin-bottom: 30px;
}

.process_design h3 span {
  font-size: 26px;
  padding: 5px 10px;
  border: 1px solid #000;
  margin-top: 0px;
  margin-bottom: 30px;
}

.process_design p {
  display: flex;
  flex-direction: column;
  font-size: 20px;
  margin-top: 0px;
  margin-bottom: 40px;
  text-align: center;
}

.process_design_tool {
  display: flex;
  font-size: 16px;
  justify-content: center;
}

.photoshop {
  display: flex;
  margin-right: 90px;
}

.photoshop h3 {
  margin-right: 25px;
}

.Figma {
  display: flex;
}

.Figma h3 {
  margin-right: 25px;
}

.Figma p {
  display: flex;
  flex-direction: column;
}




.process_fictitious_site {
  padding-top: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #000;
}

.process_fictitious_site h3 {
  text-align: center;
  margin-top: 0px;
  margin-bottom: 30px;
}

.process_fictitious_site h3 span {
  font-size: 26px;
  padding: 5px 10px;
  border: 1px solid #000;
  margin-top: 0px;
  margin-bottom: 30px;
}

.process_fictitious_site p {
  display: flex;
  flex-direction: column;
  font-size: 20px;
  margin: 0px;
  text-align: center;
}



.process_portforio {
  padding-top: 40px;
  padding-bottom: 40px;
}

.process_portforio h3 {
  text-align: center;
  margin-top: 0px;
  margin-bottom: 30px;
}

.process_portforio h3 span {
  font-size: 26px;
  padding: 5px 10px;
  border: 1px solid #000;
  margin-top: 0px;
  margin-bottom: 30px;
}

.process_portforio p {
  display: flex;
  flex-direction: column;
  font-size: 20px;
  margin: 0px;
  text-align: center;
}



/* フッター */

.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;
  }
  
  /* ハンバーガーメニュー終了 */




  .process_wrapper {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .process {
    width: 92.5vw;
    margin: 0 auto;
  }

  /* .process h1 {
    text-align: center;
    margin-top: 0px;
    margin-bottom: 45px;
  } */

  .process_title {
    margin-bottom: 45px;
  }

  .process_title_main {
    margin: 0px;
  }

  .process_title_sub {
    margin: 0px;
  }

  .big_title {
    font-size: 32px;
  }
  
  .small_title {
    font-size: 12px;
  }

  .process_story {
    padding-top: 55px;
    padding-bottom: 55px;
  }

  .process_first {
    width: 83.5%;
    margin: 0 auto;
  }

  .process_first h2 {
    font-size: 26px;
    margin-top: 0px;
    margin-bottom: 35px;
  }

  .process_september {
    padding-bottom: 45px;
    border-bottom: none;
  }

  .process_september h3 {
    margin-bottom: 15px;
  }

  .process_september h3 span {
    font-size: 18px;
  }

  .process_september p {
    text-align: left;
    font-size: 15px;
  }


  .process_October {
    padding-top: 0px;
    padding-bottom: 45px;
    border-bottom: none;
  }

  .process_October h3 {
    margin-bottom: 15px;
  }

  .process_October h3 span {
    font-size: 18px;
  }

  .process_October p {
    text-align: left;
    font-size: 15px;
  }


  .process_december {
    padding-top: 0px;
    padding-bottom: 0px;
    margin-bottom: 80px;
    border-bottom: none;
  }

  .process_december h3 {
    margin-bottom: 15px;
  }

  .process_december h3 span {
    font-size: 18px;
  }

  .process_december p {
    text-align: left;
    font-size: 15px;
  }



  .process_second {
    width: 83.5%;
    margin: 0 auto;
  }

  .process_second h2 {
    font-size: 26px;
    margin-top: 0px;
    margin-bottom: 35px;
  }

  .process_February {
    padding-top: 0px;
    padding-bottom: 45px;
    border-bottom: none;
  }

  .process_February h3 {
    margin-bottom: 15px;
  }

  .process_February h3 span {
    font-size: 18px;
  }

  .process_February p {
    text-align: left;
    font-size: 15px;
  }


  .process_cording {
    padding-top: 0px;
    padding-bottom: 45px;
    border-bottom: none;
  }

  .process_cording h3 {
    margin-bottom: 15px;
  }

  .process_cording h3 span {
    font-size: 18px;
  }

  .process_cording p {
    text-align: left;
    font-size: 15px;
    margin-bottom: 20px;
  }

  .process_cording h4 {
    font-size: 16px;
    margin-top: 0px;
    margin-bottom: 15px;
  }

  .process_cording_Copying {
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .copy_first {
    margin-right: 0px;
  }

  .copy_second {
    margin-right: 0px;
  }



  .process_June {
    padding-top: 0px;
    padding-bottom: 45px;
    border-bottom: none;
  }

  .process_June h3 {
    margin-bottom: 15px;
  }

  .process_June h3 span {
    font-size: 18px;
  }

  .process_June p {
    text-align: left;
    font-size: 15px;
  }

  .retirement {
    margin-bottom: 20px;
  }



  .process_design {
    padding-top: 0px;
    padding-bottom: 45px;
    border-bottom: none;
  }

  .process_design h3 {
    margin-bottom: 15px;
  }

  .process_design h3 span {
    font-size: 18px;
  }

  .process_design p {
    text-align: left;
    font-size: 15px;
    margin-bottom: 20px;
  }

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

  .photoshop {
    margin-right: 0px;
  }

  .photoshop h3 {
    font-size: 16px;
    margin-right: 10px;
  }

  .photoshop p {
    font-size: 13px;
  }

  .Figma {
    margin-right: 0px;
  }

  .Figma h3 {
    font-size: 16px;
    margin-right: 10px;
  }

  .Figma p {
    font-size: 13px;
  }



  .process_fictitious_site {
    padding-top: 0px;
    padding-bottom: 45px;
    border-bottom: none;
  }

  .process_fictitious_site h3 {
    margin-bottom: 15px;
  }

  .process_fictitious_site h3 span {
    font-size: 18px;
  }

  .process_fictitious_site p {
    text-align: center;
    font-size: 15px;
  }



  .process_portforio {
    padding-top: 0px;
    padding-bottom: 0px;
    border-bottom: none;
  }

  .process_portforio h3 {
    margin-bottom: 15px;
  }

  .process_portforio h3 span {
    font-size: 18px;
  }

  .process_portforio p {
    text-align: center;
    font-size: 15px;
  }



  /* フッター */

  .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 <=1199px) {

  .process_wrapper {
    padding-top: 80px;
  }

  .big_title {
    font-size: 50px;
  }

  .small_title {
    font-size: 20px;
  }

  .process_story {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .process_first {
    margin-bottom: 60px;
  }

  .process_first h2 {
    margin-top: 0px;
    margin-bottom: 40px;
    font-size: 35px;
  }
  
  .process_first p {
    font-size: 18px;
  }

  .process_first h3 span {
    font-size: 20px;
  }

  .process_december p {
    text-align: left;
  }



  .process_second {
    margin-bottom: 0px;
  }

  .process_second p {
    font-size: 17px;
  }
  
  .process_second h2 {
    font-size: 35px;
    margin-top: 0px;
    margin-bottom: 40px;
  }

  .process_second h3 span {
    font-size: 20px;
  }

  .process_February {
    padding-top: 0px;
  }

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

  .photoshop {
    display: block;
    margin-right: 0px;
  }

  .photoshop h3 {
    margin-right: 0px;
    margin-bottom: 10px;
  }

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

  .Figma h3 {
    margin-right: 0px;
    margin-bottom: 10px;
  }

  .Figma p {
    margin-bottom: 0px;
  }

  .process_portforio {
    padding-bottom: 0px;
  }
}





@media (1200px<= width <=1400px) {

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





@media (max-width: 389px) {

  .process_first p {
    font-size: 14px;
  }

  .process_second p {
    font-size: 14px;
  }

  .process_cording_Copying span {
    display: block;
    text-align: center;
  }

  .photoshop {
    display: block;
    margin-bottom: 30px;
  }

  .photoshop h3 {
    margin-right: 0px;
    margin-bottom: 5px;
  }

  .photoshop p {
    text-align: center;
    margin-bottom: 0px;
  }

  .Figma {
    display: block;
  }

  .Figma h3 {
    margin-right: 0px;
    margin-bottom: 5px;
  }

  .Figma p {
    text-align: center;
    margin-bottom: 0px;
  }
}
