@charset "UTF-8";
@font-face {
  font-family: 'us101';
  src: url('../font/US101.TTF') format('truetype');
}
@font-face {
  font-family: 'Helvetica Bold';
  src: url('../font/Helvetica Bold.ttf') format('truetype');
}
.pc_mode {
  display: block;
}

.sp_mode {
  display: none;
}

a {
  text-decoration: none;
  color: #231815;
}
/*
見出し用
font-family: a-otf-midashi-go-mb31-pr6n, sans-serif;
font-weight: 600;
font-style: normal;
*/
.font_01{
  font-family: a-otf-midashi-go-mb31-pr6n, sans-serif;
  font-weight: 600;
  font-style: normal;
}
.font_02{
  font-family: us101;
}
.font_03{
  font-family: Helvetica Bold;
}

a:hover {
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  opacity: .7;
}

li {
  list-style: none;
}

.m_0_auto {
  margin: 0 auto;
}

/****
ふわっとするやつ用CSS
__________________________*/
.fuwatAnime {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-name: fuwatAnime;
  animation-name: fuwatAnime;
  visibility: visible !important;
}

@-webkit-keyframes fuwatAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fuwatAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

body {
  font-family: '小塚ゴシック Pro','Kozuka Gothic Pro',sans-serif;
  line-height: 1.75;
  color: #333333;
  letter-spacing: 0.1em;
  font-size: 15px;
  font-weight: 600;
}

header{
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  height: 95px;
  box-shadow: 0px 6px 8px -3px rgba(80,80,80,0.6);
  -webkit-box-shadow: 0px 6px 8px -3px rgba(80,80,80,0.6);
  -moz-box-shadow: 0px 6px 8px -3px rgba(80,80,80,0.6);
  background-color: #ffffff;
  z-index: 3;
}

header .header_inner{
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
  align-items: center;
}
header .header_inner .header_logo{
  width: 13.93vw;
  max-width: 223px;
  text-align: center;
  line-height: 1;
  padding-top: 0.3125vw;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

header .header_inner .header_logo img{
  width: 100%;
}
header .header_inner .contact_btn{
  width: 200px;
  text-align: center;
}
header .header_inner .contact_btn a{
  display: block;
  width: 100%;
  max-height: 95px;
  line-height: 95px;
  color: #ffffff;
  background: linear-gradient(90deg, #026dbd, #0c1f3f);
  font-size: 18px;
  position: relative;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
}


header .header_inner .open_btn{
  width: 50px;
  height: 32px;
  margin-left: 60px;
}
header .header_inner .open_btn div{
  position: relative;
  height: 100%;
  width: 100%;
}
header .header_inner .open_btn div:hover{
  cursor: pointer;
}
header .header_inner .open_btn div span{
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #231815;
}
header .header_inner .open_btn div span:nth-of-type(1){
  top: 0;
}
header .header_inner .open_btn div span:nth-of-type(2){
  top: 0;
  bottom: 0;
  margin: auto 0;
}
header .header_inner .open_btn div span:nth-of-type(3){
  bottom: 0;
}

header .header_inner .open_btn div{
  transition: all .4s;
}
header .header_inner .open_btn div:hover{
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}
header .header_inner .open_btn div:hover span:nth-of-type(1){
  -webkit-transform: translateY(16px) rotate(-45deg);
  transform: translateY(16px) rotate(-45deg);
}
header .header_inner .open_btn div:hover span:nth-of-type(2){
  -webkit-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
}
header .header_inner .open_btn div:hover span:nth-of-type(3){
  bottom: 0;
  opacity: 0;
}


.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(20px) rotate(-45deg);
  transform: translateY(20px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2) {
  -webkit-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
}
.menu-trigger.active span:nth-of-type(3) {
  opacity: 0;
}


.open_menu_fix{
  position: fixed;
  top: -100vh;
  height: 100vh;
  min-height: 650px;
  overflow: auto;
  left: 0;
  background-color: #ffffff;
  z-index: 100;
  width: 100%;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
}
.open_menu_fix.open{
  top: 0;
}
.open_menu_fix .open_menu_inner{
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
}
.open_menu_fix .open_menu_inner .close_btn{
  position: absolute;
  top: 50px;
  left: 50px;
  width: 72px;
  height: 72px;
  display: flex;
}
.open_menu_fix .open_menu_inner .close_btn > div {
  width: 72px;
  height: 72px;
}
.open_menu_fix .open_menu_inner .close_btn > div:hover {
  cursor: pointer;
}

.open_menu_fix .open_menu_inner .close_btn > div span {
  width: 100%;
  height: 2px;
  background-color: #231815;
  display: block;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
}

.open_menu_fix .open_menu_inner .close_btn > div span:nth-of-type(1) {
  -webkit-transform: translateY(25px) rotate(45deg);
          transform: translateY(25px) rotate(45deg);
}

.open_menu_fix .open_menu_inner .close_btn > div span:nth-of-type(2) {
  -webkit-transform: translateY(22px) rotate(-45deg);
          transform: translateY(22px) rotate(-45deg);
}

.open_menu_fix .open_menu_inner .close_btn > div:hover span:nth-of-type(1) {
  -webkit-transform: translateY(18px) rotate(405deg);
          transform: translateY(18px) rotate(405deg);
}

.open_menu_fix .open_menu_inner .close_btn > div:hover span:nth-of-type(2) {
  -webkit-transform: translateY(16px) rotate(-405deg);
          transform: translateY(16px) rotate(-405deg);
}
.open_menu_fix .open_menu_inner .open_menu_left{
  width: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.open_menu_fix .open_menu_inner .open_menu_left > div{
  width: 100%;
}
.open_menu_fix .open_menu_inner .open_menu_left .open_menu_fix_logo{
  /* width: 14.75vw;
  max-width: 236px; */
  width: 236px;
  margin: 0 auto 2.8125vw;
  line-height: 0;
}
.open_menu_fix .open_menu_inner .open_menu_left .open_menu_fix_logo img{
  width: 100%;
}
.open_menu_fix .open_menu_inner .open_menu_left .open_menu_left_wrap{
  max-width: 448px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.open_menu_fix .open_menu_inner .open_menu_left .open_menu_left_wrap .open_menu_left_wrap_link{
  width: 160px;
  text-align: center;
}
.open_menu_fix .open_menu_inner .open_menu_left .open_menu_left_wrap .open_menu_left_wrap_link a{
  display: block;
  width: 100%;
  font-size: 31px;
  letter-spacing: 0;
  margin-bottom: 3.125vw;
  font-family: Helvetica Bold;
}
.open_menu_fix .open_menu_inner .open_menu_left .open_menu_left_wrap .open_menu_left_wrap_link a:last-of-type{
  margin-bottom: 0;
}

.open_menu_fix .open_menu_inner .open_menu_right{
  width: 40%;
}
.open_menu_fix .open_menu_inner .open_menu_right .open_menu_right_content{
  height: 20%;
  box-sizing: border-box;
  border-bottom: 2.5px solid #ffffff;
}
.open_menu_fix .open_menu_inner .open_menu_right .open_menu_right_content:last-of-type{
  border: none;
}
.open_menu_fix .open_menu_inner .open_menu_right .open_menu_right_content a{
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  position: relative;
  background-color: rgb(0,0,0,0.3);
  overflow: hidden;
}
.open_menu_fix .open_menu_inner .open_menu_right .open_menu_right_content a::before{
  content: '';
  position: absolute;
  top: 0;
  left: -1px;
  bottom: 0;
  display: block;
  margin: auto 0;
  width: 15px;
  background-image: url(../img/common/pc_arrow_1.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}
.open_menu_fix .open_menu_inner .open_menu_right .open_menu_right_content a span{
  color: #ffffff;
  font-size: 35px;
  padding-left: 30px;
}
.open_menu_fix .open_menu_inner .open_menu_right .open_menu_right_content a .bg_img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  line-height: 0;
  overflow: hidden;
}
.open_menu_fix .open_menu_inner .open_menu_right .open_menu_right_content a .bg_img img{
  width: 100%;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
}
.open_menu_fix .open_menu_inner .open_menu_right .open_menu_right_content a:hover .bg_img img{
  transform: scale(1.1,1.1);
}
#top_wrap .swiper_over_ray{
  position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0,0,0,0.3);
    z-index: 1;
}
.swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 0;
    right: 25px;
    height: 0;
    width: 12px;
    top: 0;
    margin: auto;
    left: auto;
}
.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #ffffff;
}
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    display: block;
    border-radius: 100%;
    background: transparent;
    opacity: 1;
    border: 2px solid #ffffff;
}
.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 8px 0px;
}
.swiper-slide {
    line-height: 0;
}
.swiper-slide img{
  width: 100%;
}
.swiper-button-next, .swiper-button-prev{
  display: none;
}

.page_title_sec{
    width: 100%;
    background-color: #AFD6E3;
    position: relative;
    padding: 8.35vw 0 9.8vw;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}
.page_title_sec h2{
  font-size: 45px;
  letter-spacing: 0.18em;
  margin-bottom: 1.25vw;
}
.page_title_sec p{
  font-size: 18px;
  letter-spacing: 0.12em;
}
.page_title_sec .page_title_text_img{
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -0.9375vw;
  line-height: 0;
}
.page_title_sec .page_title_text_img img{
  height: 8.4375vw;
  margin: 0 auto;
}
.work_type_sec{
  width: 100%;
}
.work_type_sec .work_type_inner{
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.work_type_sec .work_type_inner .work_type_content{
  width: 20%;
  padding-bottom: 5.3125vw;
}
.work_type_sec .work_type_inner .work_type_content a{
  display: block;
  width: 100%;
  height: 100%;
}
.work_type_sec .work_type_inner .work_type_content a .work_type_content_img{
  line-height: 0;
  overflow: hidden;
}
.work_type_sec .work_type_inner .work_type_content a .work_type_content_img img{
  width: 100%;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
}
.work_type_sec .work_type_inner .work_type_content a:hover .work_type_content_img img{
  width: 100%;
  transform: scale(1.1,1.1);
}
.work_type_sec .work_type_inner .work_type_content a h3{
  font-size: 20px;
  text-align: center;
  margin-top: 0.9375vw;
}
#top_wrap .work_type_sec{
  background-color: #AFD6E3;
}

.news_list_sec{
  width: 100%;
  margin-top: 4.375vw;
}
.news_list_sec .news_list_sec_inner{
  width: 75vw;
  max-width: 1200px;
  margin: 0 auto;
}
.news_list_sec .news_list_sec_inner h2{
  font-size: 50px;
  letter-spacing: 0.12em;
}
.news_list_sec .news_list_sec_inner .news_list_sec_flex{
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.news_list_sec .news_list_sec_inner .news_list_sec_flex .news_list_sec_flex_content{
  width: 22.5vw;
  max-width: 360px;
}
.news_list_sec .news_list_sec_inner .news_list_sec_flex .news_list_sec_flex_content .news_list_sec_flex_content_img{
  overflow: hidden;
  line-height: 0;
}
.news_list_sec .news_list_sec_inner .news_list_sec_flex .news_list_sec_flex_content .news_list_sec_flex_content_img img{
  width: 100%;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;

}
.news_list_sec .news_list_sec_inner .news_list_sec_flex .news_list_sec_flex_content:hover .news_list_sec_flex_content_img img{
  transform: scale(1.1,1.1);
}


.news_list_sec .news_list_sec_inner .news_list_sec_flex .news_list_sec_flex_content h3{
  font-size: 20px;
  margin-top: 0.625vw;
  line-height: 1.75;
}
.news_list_sec .news_list_sec_inner .btn_01{
  margin: 3.625vw auto 9.375vw;
}
.btn_01{
  width: 180px;
  margin: 0 auto;
}
.btn_01 a{
  display: block;
  width: 100%;
  background: linear-gradient(90deg, #026dbd, #0c1f3f);
  color: #ffffff;
  font-size: 18px;
  font-family: a-otf-midashi-go-mb31-pr6n, sans-serif;
  font-weight: 600;
  font-style: normal;
  border-radius: 18.5px;
  text-align: center;
  padding: 4.5px 0;
}

.btn_02{
  width: 300px;
}
.btn_02 a{
  display: block;
  width: 100%;
  background: linear-gradient(90deg, #026dbd, #0c1f3f);
  color: #ffffff;
  font-size: 24px;
  font-family: a-otf-midashi-go-mb31-pr6n, sans-serif;
  font-weight: 600;
  font-style: normal;
  border-radius: 35.5px;
  text-align: center;
  padding: 14.0px 0;
}


.foot_bnr_sec{
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.foot_bnr_sec .foot_bnr_sec_content{
  width: 50%;
}
.foot_bnr_sec .foot_bnr_sec_content a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 25vw;
  max-height: 400px;
  position: relative;
  background-color: rgb(0,0,0,0.3);
  text-align: center;
  color: #ffffff;
}
.foot_bnr_sec .foot_bnr_sec_content a .foot_bnr_sec_content_text{
  z-index: 1;
}
.foot_bnr_sec .foot_bnr_sec_content a h3{
  font-family: Helvetica Bold;
  font-size: 45px;
  margin-bottom: 12px;
}
.foot_bnr_sec .foot_bnr_sec_content a p{
  font-size: 19px;
}
.foot_bnr_sec .foot_bnr_sec_content a .foot_bnr_sec_content_bg{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  line-height: 0;
}
.foot_bnr_sec .foot_bnr_sec_content a .foot_bnr_sec_content_bg img{
  width: 100%;
  line-height: 0;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
}
.foot_bnr_sec .foot_bnr_sec_content a:hover .foot_bnr_sec_content_bg img{
  transform: scale(1.1,1.1);
}
footer{
  background-color: #F5F4F4;
}
footer .footer_inner{
  width: 87.5vw;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding-top: 6.1875vw;
}
footer .footer_inner .footer_left{
  width: 21.875vw;
  max-width: 350px;
}
footer .footer_inner .footer_left .footer_logo_img{
  width: 11.5625vw;
  max-width: 185px;
  margin-bottom: 2.1875vw;
}
footer .footer_inner .footer_left .footer_left_info h1{
  font-size: 20px;
  letter-spacing: 0.12em;
}
footer .footer_inner .footer_left .footer_left_info p{
  font-size: 14px;
  letter-spacing: 0.12em;
  line-height: 1.96;
}
footer .footer_inner .footer_right{
  margin-top: 3.4375vw;
}
footer .footer_inner .footer_right .footer_right_menu{
  max-width: 710px;
  width: 44.375vw;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .footer_inner .footer_right .footer_right_menu a{
  font-family: Helvetica Bold;
  font-size: 16px;
  letter-spacing: 0.14em;
  display: block;
  min-width: 40px;
}
footer .footer_inner .footer_right .footer_right_menu a:first-of-type{
  margin-left: 0;
}
footer .footer_inner .footer_right .footer_right_menu a:last-of-type{
  margin-right: 0;
}

footer .copyright{
  width: 87.5vw;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.875vw 0;
  text-align: right;
  font-family: Helvetica Bold;
  font-size: 16px;
  letter-spacing: 0.14em;
}
.work_type_sec .work_type_inner.sp_mode{
  display: none;
}
@media screen and (min-width: 1600px) {

}
@media screen and (max-width: 1600px) {
  .open_menu_fix .open_menu_inner .open_menu_right .open_menu_right_content a .bg_img img {
      width: auto;
      height: 100%;
  }

}


@media screen and (max-width: 640px) {
  .pc_mode {
    display: none;
  }
  .sp_mode {
    display: block;
  }
  body {
    font-size: 18px;
  }
  header .header_inner .contact_btn {
      display: none;
  }
  header .header_inner .header_logo {
      width: 34.84375vw;
      padding-top: 0.78125vw;
  }
  header .header_inner .open_btn {
      width: 72px;
      height: 46px;
      margin-left: 24px;
      margin-top: 25px;
  }
  .open_menu_fix {
      position: fixed;
      top: -200vh;
      height: 100%;
      min-height: 650px;
  }
  .open_menu_fix .open_menu_inner {
      display: flex;
      flex-wrap: wrap;
  }
  .open_menu_fix .open_menu_inner .open_menu_left {
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: flex-start;
  }
  .open_menu_fix .open_menu_inner .open_menu_right {
      width: 100%;
  }
  .open_menu_fix .open_menu_inner .open_menu_left .open_menu_fix_logo {
      width: 216px;
      margin: 9.6875vw auto 6.5625vw;
      line-height: 0;
  }
  .open_menu_fix .open_menu_inner .close_btn > div {
      width: 70px;
      height: 70px;
  }
  .open_menu_fix .open_menu_inner .close_btn {
      position: absolute;
      top: 7.8125vw;
      left: 7.8125vw;
      width: 70px;
      height: 70px;
      display: flex;
  }
  .open_menu_fix .open_menu_inner .open_menu_left .open_menu_left_wrap .open_menu_left_wrap_link a {
      margin-bottom: 6.25vw;
  }
  .open_menu_fix .open_menu_inner .open_menu_left .open_menu_left_wrap .open_menu_left_wrap_link a:last-of-type {
      margin-bottom: 6.25vw;
  }
  .sp_menu_title{
    text-align: center;
    font-size: 30px;
    margin: 3.125vw auto 2.34vw;
  }
  .open_menu_fix .open_menu_inner .open_menu_right .open_menu_right_content {
      height: 180px;
      box-sizing: border-box;
      border-bottom: 2.5px solid #ffffff;
  }
  .page_title_sec h2 {
      font-size: 55px;
      letter-spacing: 0.18em;
      margin-bottom: 4.9vw;
      font-family: a-otf-midashi-go-mb31-pr6n, sans-serif;
      font-weight: 600;
      font-style: normal;
  }
  .page_title_sec {
      padding: 15.625vw 0 23.31vw;
  }
  .page_title_sec p {
      font-size: 18px;
      letter-spacing: 0.12em;
      width: 80vw;
      margin: 0 auto;
  }
  .page_title_sec .page_title_text_img img {
      height: 16.25vw;
      margin: 0 auto;
  }
  .page_title_sec .page_title_text_img {
      bottom: -1.5vw;
  }

  #top_wrap .work_type_sec {
      background-color: transparent;
  }
  .work_type_sec .work_type_inner.pc_mode{
    display: none;
  }

  .work_type_inner.sp_mode .work_type_content{
    height: 180px;
    box-sizing: border-box;
    border-bottom: 2.5px solid #ffffff;
    width: 100%;
    padding-bottom: 0;
  }
  .work_type_inner.sp_mode .work_type_content:last-of-type{
    border: none;
  }
  .work_type_inner.sp_mode .work_type_content a{
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    position: relative;
    background-color: rgb(0,0,0,0.3);
    overflow: hidden;
  }
  .work_type_inner.sp_mode .work_type_content a::before{
    content: '';
    position: absolute;
    top: 0;
    left: -1px;
    bottom: 0;
    display: block;
    margin: auto 0;
    width: 15px;
    background-image: url(../img/common/pc_arrow_1.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
  }
  .work_type_inner.sp_mode .work_type_content a span{
    color: #ffffff;
    font-size: 35px;
    padding-left: 30px;
  }
  .work_type_inner.sp_mode .work_type_content a .bg_img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
    line-height: 0;
    overflow: hidden;
  }
  .work_type_inner.sp_mode .work_type_content a .bg_img img{
    width: auto;
    height: 100%;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -ms-transition: 0.5s;
  }
  .work_type_inner.sp_mode .work_type_content a:hover .bg_img img{
    transform: scale(1.1,1.1);
  }
  .work_type_sec .work_type_inner.sp_mode{
    display: flex;
    flex-wrap: wrap;
  }
  .news_list_sec {
      overflow: hidden;
  }
  .news_list_sec .news_list_sec_inner .news_list_sec_flex .news_list_sec_flex_content h3 {
    font-size: 20px;
    margin-top: 1vw;
    text-align: center;
    line-height: 1.5;
  }
  .news_list_sec .news_list_sec_inner .btn_01 {
      margin: 6.25vw auto 13.125vw;
  }
  .news_list_sec .news_list_sec_inner h2 {
      font-size: 75px;
      letter-spacing: 0.12em;
      text-align: center;
  }
  .btn_01 {
      width: 43.44vw;
      margin: 0 auto;
  }
  .btn_01 a {
    display: block;
    width: 100%;
    background: linear-gradient(90deg, #026dbd, #0c1f3f);
    color: #ffffff;
    font-size: 26.5px;
    font-family: a-otf-midashi-go-mb31-pr6n, sans-serif;
    font-weight: 600;
    font-style: normal;
    border-radius: 5vw;
    text-align: center;
    padding: 1.1vw 0;
  }
  .foot_bnr_sec .foot_bnr_sec_content {
      width: 100%;
  }
  .foot_bnr_sec {
    flex-wrap: wrap;
  }
  .foot_bnr_sec .foot_bnr_sec_content a {
    height: 50vw;
    max-height: none;
  }
  .foot_bnr_sec .foot_bnr_sec_content a h3 {
    font-family: Helvetica Bold;
    font-size: 45px;
    margin-bottom: 0;
  }
  footer .footer_inner {
    width: 87.5vw;
    max-width: none;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding-top: 6.1875vw;
    flex-wrap: wrap;
  }
  footer .footer_inner .footer_left .footer_logo_img {
    width: 100%;
    max-width: none;
    margin-bottom: 7.03125vw;
    text-align: center;
  }
  footer .footer_inner .footer_left .footer_logo_img img{
    width: 39.84vw;
  }
  footer .footer_inner .footer_left {
    width: 100%;
    max-width: none;
    text-align: center;
  }
  footer .footer_inner .footer_left .footer_left_info h1 {
    font-size: 27px;
    letter-spacing: 0.12em;
    margin-bottom: 1.565vw;
  }
  footer .footer_inner .footer_left .footer_left_info p {
    font-size: 22px;
    letter-spacing: 0.12em;
    line-height: 1.96;
  }
  footer .footer_inner .footer_right {
    margin-top: 3.4375vw;
    width: 100%;
  }
  footer .footer_inner .footer_right .footer_right_menu {
    max-width: 410px;
    width: 64.062vw;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto;
    margin-top: 4.25vw;
  }
  footer .footer_inner .footer_right .footer_right_menu a {
    font-family: Helvetica Bold;
    font-size: 26px;
    letter-spacing: 0;
    display: block;
    min-width: 40px;
    width: 140px;
    text-align: center;
    margin-bottom: 4.6875vw;
  }
  
  footer .copyright {
      padding: 3.125vw 0 6.093vw;
      font-size: 16px;
      text-align: center;
  }
}

