@charset "utf-8";

/*---------------------------------------------------------------------------------------------

ベース

---------------------------------------------------------------------------------------------*/

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

.mont {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.foot_triangle {
  position: absolute;
  right: 0;
  top: -50%;
}

.triangle_left {
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 75px solid transparent;
  border-bottom: 75px solid transparent;
  border-right: 75px solid #5d6ed3;
  border-left: 0;
}

.triangle_right {
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 75px solid transparent;
  border-bottom: 75px solid transparent;
  border-left: 75px solid #5d6ed3;
  border-right: 0;
}

@media screen and (max-width: 768px) {

  .triangle_left {
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 35px solid transparent;
    border-bottom: 35px solid transparent;
    border-right: 35px solid #5d6ed3;
    border-left: 0;
  }

  .triangle_right {
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 35px solid transparent;
    border-bottom: 35px solid transparent;
    border-left: 35px solid #5d6ed3;
    border-right: 0;
  }

}

/*---------------------------------------------------------------------------------------------

FLEX

---------------------------------------------------------------------------------------------*/

.flex {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
}

.al-start {
  -webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.al-center {
  -webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.jt-center {
  -webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.jt-around {
  -ms-flex-pack: distribute;
	justify-content: space-around;
}

.jt-between {
  -webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.jt-start {
  -webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.jt-end {
  -webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.flex_wrap {
  -ms-flex-wrap: wrap;
  	flex-wrap: wrap;
}

@media screen and (max-width: 768px) {

  .sp_noflex {
    display: block;
  }

  .sp_wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

}

/*---------------------------------------------------------------------------------------------

PC

---------------------------------------------------------------------------------------------*/

@media screen and (min-width: 769px) {

  .onlyPC {
    display: block;
  }

  .onlySP {
    display: none !important;
  }

}

/*---------------------------------------------------------------------------------------------

SP

---------------------------------------------------------------------------------------------*/


@media screen and (max-width: 768px) {

  .onlyPC {
    display: none !important;
  }

  .onlySP {
    display: block;
  }

}

/*---------------------------------------------------------------------------------------------

ハンバーガーメニュー

---------------------------------------------------------------------------------------------*/

.hamburger {
  display: block;
  position: absolute;
  z-index: 3;
  right: 20px;
  top: 15px;
  width: 40px;
  height: 30px;
  cursor: pointer;
  text-align: center;
}

.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 3px ;
  left    : 6px;
  background : #999999;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 10px;
}

.hamburger span:nth-child(2) {
  top: 20px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 16px;
  left: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index : 2;
  top  : 0;
  left : 0;
  background: #FFF;
  text-align: center;
  transform: translateY(-100%);
  transition: all 0.6s;
  width: 100%;
  height: 80vh;
}

nav.globalMenuSp ul {
  margin: 70px auto;
  padding: 0;
  width: 100%;
  display: block;
}

nav.globalMenuSp ul li {
  position: relative;
  list-style-type: none;
  padding: 0;
  width: 90%;
  margin: 15px auto;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
  -webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}

nav.globalMenuSp ul li a {
  display: block;
  padding: 1em 0;
  text-decoration :none;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateY(0%);
}


/*---------------------------------------------------------------------------------------------

フェードインアニメーション

---------------------------------------------------------------------------------------------*/


.view.on {
    opacity: 1;
    transform: translate(0px,0px);
    visibility: visible;
}
.view {
    transition: 1.2s;
    opacity: 0;
    transform: translate(0px,60px);
}

/*---------------------------------------------------------------------------------------------

ヘッダー

---------------------------------------------------------------------------------------------*/

.head_cont {
  position: fixed;
  width: 100%;
  padding: 25px 30px;
  background: transparent;
  top: 0;
  left: 0;
  z-index: 10;
  transition: .3s;
}

.head_cont.fixed {
  background: #FFF;
  box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25);
}

.head_list {
}

.head_list li {
  font-size: 2rem;
  margin-right: 40px;
}

.head_list li:last-of-type {
  margin-right: 0;
}

.head_list li.head_btn {
  font-size: 1.6rem;
}

.head_list li.head_btn a {
  padding: 12px 40px;
  background: #FFF;
  border: 1px solid #404EA3;
  border-radius: 25px;
  transition: .3s;
}

.head_list li.head_btn a:hover {
  background: #404EA3;
  color: #FFF;
}



@media screen and (max-width: 768px) {

  .head_cont {
    padding: 15px 20px;
  }

  .head_cont img {
    max-width: 80px;
  }

  .head_list li.head_btn {
    font-size: 2rem;
  }

  .head_list li.head_btn a {
    width: 80%;
    padding: 20px;
    border-radius: 32px;
  }

  .head_list li:last-of-type {
    margin-right: auto;
  }



}


/*---------------------------------------------------------------------------------------------

フッター

---------------------------------------------------------------------------------------------*/

.foot_cont {
  position: relative;
  background: #EDEDED;
  margin-top: 150px;
}

.foot_nav {
  max-width: 977px;
  width: 90%;
  margin: auto;
  padding-top: 260px;
  padding-bottom: 85px;
}

.foot_info img {
  width: 160px;
}

.foot_info p {
  font-size: 2.6rem;
  margin-left: 30px;
}

.foot_list {
  margin-top: 50px;
}

ul.foot_list li {
  font-size: 1.6rem;
  margin-right: 40px;
}

ul.foot_list li a:hover {
  text-decoration: underline;
}

ul.foot_list02 li {
  font-size: 1.4rem;
  margin-right: 40px;
}

ul.foot_list02 li a:hover {
  text-decoration: underline;
}

.foot_under_list {
  margin-top: 100px;
}

.contact_cont {
  width: 1118px;
  padding: 80px 55px;
  color: #FFF;
  position: absolute;
  background: #404EA3;
  top: -25%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transition: .3s;
}

a.contact_cont:hover {
  background: #5D6ED3;
}

.contact_tit {
  font-size: 4.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.contact_cont span {
  font-size: 2.2rem;
}

.contact_cont p {
  font-size: 1.6rem;
  margin-top: 65px;
}

.contact_cont img {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.top_back {
  width: 42px;
  position: fixed;
  bottom: 5%;
  right: 5%;
  z-index: 9;
}

@media screen and (max-width: 768px) {

  .contact_cont {
    width: 90%;
    padding: 30px;
  }

  .contact_tit {
    font-size: 3rem;
  }

  .contact_cont span {
    font-size: 1.6rem;
  }

  .contact_cont p {
    font-size: 1.2rem;
    margin-top: 30px;
  }

  .contact_cont img {
    max-width: 50px;
  }

  .foot_nav {
    padding-top: 120px;
    padding-bottom: 50px;
  }

  .foot_info img {
    width: 120px;
    display: block;
    margin: 20px auto;
  }

  .foot_info p {
    font-size: 1.6rem;
    margin-left: 0;
    text-align: center;
  }

  .foot_under_list {
    margin-top: 50px;
  }

}


/*---------------------------------------------------------------------------------------------

トップページ

---------------------------------------------------------------------------------------------*/

.mv_cont {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('../img/bg_mv.png') no-repeat;
  background-size: cover;
  background-position: center;
}

.mv_copy {
  position: absolute;
  font-size: 5rem;
  font-weight: bold;
  color: #404EA3;
  top: 50%;
  left: 20%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  line-height: 2.2;
  letter-spacing: .2em;
}

.news_cont {
  width: 100%;
  background: #F0F0F0;
  padding: 55px 0;
}

.news_tit {
  font-size: 4rem;
  color: #404EA3;
}

.news_wrap {
  max-width: 1000px;
  width: 90%;
  margin: auto;
}

.news_list {
  width: 80%;
  margin-top: 10px;
}

.news_list li {
  font-size: 2rem;
}

.past_cont {
  position: relative;
  width: 100%;
  height: 85vh;
  background: url("../img/bg_past.jpg") no-repeat;
  background-size: cover;
  background-position: center;
}

.past_link_box {
  position: absolute;
  max-width: 560px;
  background: #FFF;
  padding: 25px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transition: .3s;
  box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25);
}

a.past_link_box:hover {
  background: #F0F0F0;
}

.past_link_box span {
  display: block;
  text-align: center;
  font-size: 2rem;
}

.past_link_box h2 {
  font-size: 7rem;
  line-height: 1;
  text-align: center;
  letter-spacing: .05em;
  margin-top: 30px;
}

.past_main_txt {
  text-align: center;
  font-size: 2.6rem;
  line-height: 1.5;
  margin: 25px auto;
}

.past_sub_txt {
  font-size: 1.8rem;
  font-weight: 200;
  text-align: center;
  line-height: 2;
}

.past_link_box img {
  display: block;
  margin: 25px auto;
}

.company_cont {
  max-width: 1000px;
  margin: auto;
  margin-top: 200px;
}

.company_txt_box {
  width: 45%;
  margin-right: 5%;
}

.company_img_box {
  width: 50%;
}

.company_txt_box h2 {
  font-size: 6rem;
  margin-bottom: 15px;
}

.company_txt_box span {
  font-size: 1.8rem;
  font-weight: 200;
}

.company_list {
  margin-top: 40px;
}

.company_list li a {
  display: block;
  width: 100%;
  font-size: 2rem;
  padding: 25px 0;
  border-top: 1px solid #F0F0F0;
  position: relative;
}

.company_list li a::after {
  content: "・";
  position: absolute;
  color: #404EA3;
  font-size: 2rem;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transition: .3s;
}

.company_list li a:hover::after {
  content: "";
  position: absolute;
  background: url("../img/ico_profile_arrow.svg") no-repeat;
  background-size: 100%;
  background-position: center;
  width: 44px;
  height: 44px;
  top: 50%;
  right: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.company_list li:last-of-type a {
  border-bottom: 1px solid #F0F0F0;
}

.rec_cont {
  position: relative;
  width: 100%;
  height: 75vh;
  background: url("../img/bg_recruit.jpg") no-repeat;
  background-size: cover;
  background-position: center;
}

.rec_info {
  position: absolute;
  color: #FFF;
  top: 50%;
  left: 15%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.rec_info span {
  font-size: 1.8rem;
}

.rec_info h2 {
  font-size: 8rem;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 30px;
}

.rec_main_txt {
  font-size: 2.6rem;
}

.rec_sub_txt {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-top: 30px;
}

a.rec_link {
  opacity: 1;
  transition: .3s;
}

a.rec_link:hover {
  opacity: .6;
}

.rec_wrap {
  position: relative;
  z-index: 1;
  margin: 150px auto;
  padding-bottom: 100px;
}

.rec_wrap::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 75px solid transparent;
  border-bottom: 75px solid transparent;
  border-left: 75px solid #5d6ed3;
  border-right: 0;
  top: -9.5%;
  left: 0;
  z-index: 0;
}

.rec_wrap::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 75px solid transparent;
  border-bottom: 75px solid transparent;
  border-right: 75px solid #5d6ed3;
  border-left: 0;
  bottom: -3.5%;
  right: 0;
  z-index: -1;
}

.business_cont {
  position: relative;
  width: 100%;
  background: #404EA3;
  padding-top: 200px;
  padding-bottom: 300px;
  margin-bottom: 450px;
}

.business_link_box {
  max-width: 1000px;
  margin: auto;
  color: #FFF;
}

.business_tit_box {
  width: 40%;
  margin-right: 7%;
}

.business_tit_box h2 {
  font-size: 7.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.business_tit_box span {
  font-size: 2.2rem;
}

.business_img_box {
  margin-top: 40px;
}

.business_list_box {
  width: 53%;
}

.business_list_box ul li a {
  position: relative;
  padding: 35px 0;
  border-top: 1px solid;
}

.business_list_box ul li:last-of-type a {
  border-bottom: 1px solid;
}

.business_list_box ul li a::after {
  content: "";
  position: absolute;
  background: url("../img/ico_business_arrow.svg") no-repeat;
  background-size: 100%;
  background-position: center;
  width: 40px;
  height: 40px;
  top: 50%;
  right: 2%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transition: .3s;
}

.business_list_box ul li a:hover::after {
  right: 6%;
}

.number {
  width: 74px;
  height: 74px;
  border-radius: 37px;
  background: #FFF;
  color: #404EA3;
  font-size: 2.4rem;
}

.work_tit {
  margin-left: 15px;
}

.work_tit p {
  font-size: 2.4rem;
  margin-bottom: 5px;
}

.work_tit span {
  font-size: 1.4rem;
}

.business_bottom_box {
  width: 1000px;
  position: absolute;
  bottom: -25%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.business_wrap {
  position: relative;
  z-index: 1;
}

.business_wrap::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 75px solid transparent;
  border-bottom: 75px solid transparent;
  border-right: 75px solid #5d6ed3;
  border-left: 0;
  top: -5.5%;
  right: 0;
  z-index: 1;
}

.about_cont {
  padding: 100px 0;
}

.about_box {
  max-width: 1000px;
  margin: auto;
}

.about_txt_box {
  position: relative;
  width: 50%;
  margin-right: 8%;
}

.about_vector {
  position: absolute;
  top: -20%;
  left: -20%;
  width: 272px;
}

.about_txt_box h2 {
  font-size: 7.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.about_main_txt {
  font-size: 2.6rem;
  line-height: 2;
  margin-bottom: 20px;
}

.about_sub_txt {
  font-size: 1.7rem;
  line-height: 2;
}

.about_img_box {
  width: 42%;
}

.about_garary_wrap {
  width: 100%;
  overflow-x: scroll;
  margin-top: 100px;
  margin-bottom: 50px;
}

.about_garary_wrap ul {
  min-width: 1300px;
}

.about_garary_wrap ul li {
  width: 313px;
  margin-right: 30px;
}

.about_garary_wrap ul li:last-of-type {
  margin-right: 0;
}


@media screen and (max-width: 768px) {

  .mv_cont {
    height: 80vh;
    background-position: left;
  }

  .mv_copy {
    font-size: 2rem;
  }

  .news_cont {
    padding: 30px 0;
  }

  .news_tit {
    font-size: 2.6rem;
  }

  .news_list {
    width: 100%;
    margin-top: 20px;
  }

  .news_list li {
    font-size: 1.3rem;
  }

  .news_list li span {
    font-size: 1rem;
  }

  .about_cont {
    padding: 60px 0;
  }

  .about_txt_box {
    width: 90%;
    margin: auto;
  }

  .about_txt_box h2 {
    font-size: 3rem;
  }

  .about_main_txt {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .about_sub_txt {
    font-size: 1.3rem;
  }

  .about_img_box {
    width: 50%;
    margin: 20px auto;
  }

  .about_garary_wrap {
    margin-top: 50px;
  }

  .about_garary_wrap ul {
    min-width: 800px;
  }

  .about_garary_wrap ul li {
    width: 20%;
    margin-right: 3%;
  }

  .business_cont {
    padding-top: 40px;
    padding-bottom: 40px;
    margin-bottom: 60px;
  }

  .business_link_box {
    width: 90%;
  }

  .business_tit_box {
    width: 100%;
    margin-right: 0;
  }

  .business_tit_box h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
  }

  .business_tit_box span {
    font-size: 1.5rem;
  }

  .business_img_box {
    width: 60%;
    margin: 30px auto;
  }

  .business_list_box {
    width: 100%;
  }

  .business_list_box ul li a {
    padding: 20px 0;
  }

  .number {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    font-size: 1.6rem;
  }

  .work_tit p {
    font-size: 1.6rem;
  }

  .work_tit span {
    font-size: 1.2rem;
  }

  .business_list_box ul li a::after {
    width: 30px;
    height: 30px;
  }

  .business_wrap::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 35px solid transparent;
    border-bottom: 35px solid transparent;
    border-right: 35px solid #5d6ed3;
    border-left: 0;
    top: -3%;
    right: 0;
    z-index: 1;
  }

  .business_bottom_box {
    width: 90%;
    position: relative;
    margin-top: 30px;
  }

  .past_link_box {
    width: 80%;
    padding: 20px;
  }

  .past_link_box span {
    font-size: 1.5rem;
  }

  .past_link_box h2 {
    font-size: 3rem;
    line-height: 1;
    text-align: center;
    letter-spacing: .05em;
    margin-top: 20px;
  }

  .past_main_txt {
    font-size: 1.5rem;
    margin: 15px auto;
  }

  .past_sub_txt {
    font-size: 1.3rem;
  }

  .past_cont {
    height: 70vh;
  }

  .company_cont {
    width: 90%;
    margin-top: 60px;
  }

  .company_txt_box {
    width: 100%;
    margin-right: 0;
  }

  .company_txt_box h2 {
    font-size: 3rem;
  }

  .company_txt_box span {
    font-size: 1.5rem;
  }

  .company_list {
    margin-top: 20px;
  }

  .company_list li a {
    padding: 20px 0;
    font-size: 1.4rem;
  }

  .company_list li a::after {
    content: "";
    position: absolute;
    background: url("../img/ico_profile_arrow.svg") no-repeat;
    background-size: 100%;
    background-position: center;
    width: 25px;
    height: 25px;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }

  .company_img_box {
    width: 60%;
    margin: 30px auto;
  }

  .rec_wrap {
    margin: 60px auto;
    padding-bottom: 60px;
  }

  .rec_wrap::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 35px solid transparent;
    border-bottom: 35px solid transparent;
    border-left: 35px solid #5d6ed3;
    border-right: 0;
    top: -6.5%;
    left: 0;
    z-index: 0;
  }

  .rec_info span {
    font-size: 1.5rem;
  }

  .rec_info h2 {
    font-size: 3rem;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .rec_cont {
    height: 60vh;
  }

  .rec_main_txt {
    font-size: 1.8rem;
  }

  .rec_sub_txt {
    font-size: 1.3rem;
    margin-top: 30px;
  }

  .rec_wrap::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 35px solid transparent;
    border-bottom: 35px solid transparent;
    border-right: 35px solid #5d6ed3;
    border-left: 0;
    bottom: 4.5%;
    right: 0;
    z-index: -1;
  }

  .about_vector {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 40%;
  }

}

/*---------------------------------------------------------------------------------------------

下層ページ

---------------------------------------------------------------------------------------------*/

.under_mv_cont {
  position: relative;
  width: 100%;
  height: 70vh;
  background: url("../img/under_mv_vector.svg") no-repeat;
  background-size: 50%;
  background-position: right top;
  overflow: hidden;
}

.under_mv_tit {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.under_mv_main {
  font-size: 6.4rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.under_mv_sub {
  color: #FFF;
  display: inline-flex;
  background: #404EA3;
  padding: 5px 8px;
  font-size: 2rem;
}

.bread_list {
  position: absolute;
  bottom: 5%;
  right: 10%;
}

.page_list {
  position: absolute;
  bottom: 5%;
  left: 10%;
}

.page_list ul {
  font-size: 1.6rem;
}

.page_list ul li {
  margin-right: 5px;
}

.bread_list ul {
  font-size: 1.6rem;
}

.bread_list ul li {
  margin-right: 5px;
}

.bread_list ul li a {
  color: #A6A6A6;
}

.bread_list ul li a:hover {
  text-decoration: underline;
}

.under_main_cont {
  max-width: 962px;
  width: 90%;
  margin: 100px auto 0px auto;
  padding-bottom: 100px;
}

.under_business_box {
  width: 48%;
  margin-bottom: 80px;
}

.under_business_box p {
  font-size: 2.4rem;
  margin-top: 15px;
  margin-bottom: 15px;
}

.under_business_box span {
  font-size: 1.4rem;
}

.under_tit {
  font-size: 2.6rem;
  padding-left: 10px;
  border-left: 3px solid #404EA3;
  margin-bottom: 10px;
  line-height: 32px;
}

.under_access_box {
  margin: 40px auto 80px auto;
}

.under_access_info {
  width: 35%;
}

.under_access_info p {
  font-size: 1.6rem;
  margin-bottom: 35px;
}

.under_access_map {
  width: 60%;
}

.mv_img_cont {
  width: 100%;
  position: relative;
  text-align: center;
}

.mv_img_cont img {
  text-align: center;
}

.mv_rec {
  max-width: 1000px;
  width: 100%;
}

.rec_tri01 {
  position: absolute;
  top: -19%;
  left: 7%;
  z-index: -1;
}

.rec_tri02 {
  position: absolute;
  bottom: -33%;
  right: 2%;
  z-index: -1;
}

.list_box {
  margin-top: 30px;
  margin-bottom: 80px;
}

.data_list {
  border-top: 1px solid #D4D4D4;
  padding: 40px 0;
  font-size: 1.6rem;
  text-align: left;
}

.data_list.last {
  border-bottom: 1px solid #D4D4D4;
}

.data_list h3 {
  width: 40%;
  color: #404EA3;
}

.data_list p {
  width: 60%;
  line-height: 2;
}

.indent {
  text-indent: -1em;
  padding-left: 1em;
}

.indent_list {
  width: 60%;
}

.data_list .indent_list p {
  width: 100%;
}

.profile_box {
  margin: 40px auto 180px auto;
}

.profile_photo {
  width: 30%;
}

.profile_info {
  width: 100%;
}

.profile_info p {
  font-size: 1.6rem;
  line-height: 2;
  margin-bottom: 60px;
}

.name_box {
  text-align: right;
}

.name_box img {
  width: 247px;
}

.history_box {
  margin-top: 30px;
  border-top: 1px solid #D4D4D4;
  padding-top: 30px;
}

.history_list {
  width: 50%;
  margin-left: 40px;
}

.history_txt {
  position: relative;
  border-left: 2px solid #404EA3;
  padding-left: 20px;
  padding-bottom: 50px;
}

.history_txt.last {
  border-left: none;
}

.history_txt::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  background: #404EA3;
  transform: rotate(45deg);
  top: 0;
  left: -12px;
}

.history_line {
  width: 32px;
  height: 1px;
  background: #404EA3;
  margin-top: 10px;
  margin-left: 10px;
  margin-right: 20px;
}

.history_info p {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.history_info span {
  font-size: 1.6rem;
  line-height: 2;
}

.history_img_box {
  position: relative;
  width: 45%;
}

.history_img01 {
  width: 238px;
  display: block;
  margin-bottom: 150px;
}

.history_img02 {
  width: 238px;
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.history_img03 {
  width: 238px;
  display: block;
  margin: auto;
}

.access_btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px 5px;
  padding-right: 30px;
  font-size: 1rem;
  background: #404EA3;
  color: #FFF;
  border-radius: 8px;
  margin-left: 15px;
}

.access_btn::after {
  content: "";
  position: absolute;
  background: url("../img/ico_business_arrow.svg") no-repeat;
  background-size: 100%;
  background-position: center;
  width: 13px;
  height: 13px;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.contact_head {
  font-size: 1.7rem;
  text-align: center;
  margin-bottom: 50px;
}

.contact_box {
  margin-top: 80px;
}

.contact_list {
  padding: 30px 0;
  border-top: 1px solid #CCCCCC;
}

.contact_list.last {
  border-bottom: 1px solid #CCCCCC;
}

.form_label {
  width: 35%;
}

.form_label h2 {
  font-size: 1.7rem;
  margin-right: 30px;
}

.form_input {
  width: 60%;
  padding: 10px 15px;
  font-size: 1.5rem;
  height: 55px;
  background: #F8F8F7;
  color: #000;
}

.req {
  font-size: 1.3rem;
  color: #FFF;
  background: #DF2016;
  padding: 5px 8px;
  border-radius: 8px;
}

.form_txtArea {
  width: 60%;
  min-height: 185px;
  padding: 15px;
  font-size: 1.5rem;
  background: #F8F8F7;
  color: #000;
}

.p-agree {
  width: 300px;
  margin: 80px auto;
  display: flex;
  font-size: 1.8rem;
  font-weight: bold;
  position: relative;
}

input[type="checkbox"] {
  width: 30px;
  height: 30px;
  cursor: pointer;
  opacity: .1;
  margin-right: 10px;
}

input[type="checkbox"] {
    vertical-align: bottom;
}

.p-agree .checkmark_wrap {
  width: 30px;
  height: 30px;
  border-radius: 5px;
  position: absolute;
  top: 0;
  left: 0;
  background: #FFF;
  border: 1px solid #CCCCCC;
}

.p-agree span {
  line-height: 30px;
}
.checkmark {
  width: 20px;
  height: 12px;
  position: relative;
  display: block;
  left: 8px;
  top: 6px;
  text-align: center;
  text-decoration: none;
  outline: none;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all .2s;
  transition: all .2s;
}

.checkmark::before {
  position: absolute;
  z-index: 2;
  content: "";
  width: 0;
  height: 0;
  border: 3px solid transparent;
  top: -2px;
  left: -2px;
}

input[type="checkbox"]:checked + div .checkmark::before {
  width: 100%;
  height: 100%;
  border-bottom-color: #404EA3;
  border-left-color: #404EA3;
  -webkit-transition: height .1s, width .1s .1s;
  transition: height .1s, width .1s .1s;
}

.p-agree a {
  color: #362918;
  font-size: 1.7rem;
  font-weight: 200;
  text-decoration: underline;
  line-height: 30px;
}

.form_button {
  position: relative;
  width: 516px;
  height: 80px;
  background: #404EA3;
  color: #FFF;
  font-size: 1.7rem;
  margin: auto;
  transition: .3s;
}

.form_button.disabled {
  pointer-events: none;
  background: gray;
}

.form_button::after {
  content: "";
  position: absolute;
  background: url("../img/ico_btn_arrow.svg") no-repeat;
  background-size: 100%;
  background-position: center;
  width: 17px;
  height: 17px;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.form_button:hover {
  background: #5d6ed3;
}

.telephone_box {
  margin-top: 110px;
  border: 1px solid #CCCCCC;
  padding: 40px;
  padding-bottom: 80px;
}

.phone_line {
  width: 30px;
  height: 1px;
  background: #CCCCCC;
  margin-bottom: 20px;
}

.telephone_box h3 {
  font-size: 2.8rem;
  margin-bottom: 50px;
}

.telephone_box p {
  font-size: 1.5rem;
  line-height: 2;
}

/* .acd-label {
  width: 100%;
  background: #FFF;
  border: 1px solid #1A1A1C;
  border-radius: 8px;
  margin-top: 40px;
  padding: 10px 15px;
  position: relative;
  font-size: 1.8rem;
  line-height: 1.8;
}

.acd-label::before, .acd-label::after {
    content: "";
    width: 12px;
    height: 2px;
    display: inline-block;
    border-radius: 2px;
    background: #1A1A1C;
    position: absolute;
    right: 32px;
}

.acd-label::before {
  top: 50%;
  right: 40px;
  transform: translateY(-50%) rotate(45deg);
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  transition: .3s;
}

.acd-label::after {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  -webkit-transform: translateY(-50%) rotate(-45deg);
  -ms-transform: translateY(-50%) rotate(-45deg);
  transition: .3s;
}

.acd-check:checked + .acd-label::before {
    transform: translateY(-50%) rotate(-45deg);
    -webkit-transform: translateY(-50%) rotate(-45deg);
    -ms-transform: translateY(-50%) rotate(-45deg);
}

.acd-check:checked + .acd-label::after {
  transform: translateY(-50%) rotate(45deg);
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
} */

.select_box {
  width: 100%;
  position: relative;
  margin-top: 40px;
}

#selectElement {
  width: 100%;
  background: #FFF;
  border: 1px solid #1A1A1C;
  border-radius: 8px;
  padding: 10px 15px;
  font-size: 1.8rem;
  line-height: 1.8;
}

.select_box::before, .select_box::after {
    content: "";
    width: 12px;
    height: 2px;
    display: inline-block;
    border-radius: 2px;
    background: #1A1A1C;
    position: absolute;
    right: 32px;
}

.select_box::before {
  top: 50%;
  right: 40px;
  transform: translateY(-50%) rotate(45deg);
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
}

.select_box::after {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  -webkit-transform: translateY(-50%) rotate(-45deg);
  -ms-transform: translateY(-50%) rotate(-45deg);
}

.acd-content {
  display: none;
  width: 100%;
  height: auto;
  padding: 40px 0px;
  margin: auto;
}

/* .acd-check:checked + .acd-label + .acd-content {
    opacity: 1;
    width: 100%;
    height: auto;
    padding: 40px 0px;
    margin: auto;
    visibility: visible;
} */

/* .past_list_cont {
    display: none;
}

.acd-check:checked + .acd-label + .acd-content .past_list_cont {
    display: block;
} */

.acd-label.first {
    margin: 0 auto;
}

/* .acd-check {
    display: none;
} */

.past_list_head {
  background: #404EA3;
  color: #FFF;
}

.past_list.gray {
  background: #F7F7F7;
}

.past_cell {
  padding: 15px;
  font-size: 1.4rem;
}

.past_list .past_cell:first-of-type,
.past_list_head .past_cell:first-of-type {
  width: 40%;
  border-right: 1px solid #D4D4D4;
}

.past_list .past_cell:nth-of-type(2),
.past_list_head .past_cell:nth-of-type(2) {
  width: 20%;
  border-right: 1px solid #D4D4D4;
}

.past_list .past_cell:last-of-type,
.past_list_head .past_cell:last-of-type {
  width: 40%;
}

.past_head {
  padding: 20px;
  font-size: 1.8rem;
}

.past_head p {
  text-align: center;
}


@media screen and (max-width: 768px) {

  .under_mv_cont {
    height: 50vh;
    background-position: right center;
  }

  .under_mv_main {
    font-size: 3rem;
  }

  .under_mv_sub {
    font-size: 1.5rem;
  }

  .under_main_cont {
    margin: 50px auto;
    padding-bottom: 20px;
  }

  .under_business_box {
    width: 100%;
    margin-bottom: 40px;
  }

  .under_business_box p {
    font-size: 1.8rem;
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .under_business_box span {
    font-size: 1.3rem;
  }

  .under_access_info {
    width: 100%;
    margin-bottom: 25px;
  }

  .under_access_info p {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }

  .under_access_map {
    width: 100%;
  }

  .data_list h3 {
    width: 100%;
    color: #404EA3;
    font-size: 2rem;
    text-align: center;
    padding-bottom: 15px;
    margin-bottom: 10px;
    border-bottom: 1px dashed;
  }

  .data_list {
    border-bottom: 1px solid #D4D4D4;
    padding: 25px 0;
  }

  .data_list p {
    width: 100%;
  }

  .indent_list {
    width: 100%;
  }

  .under_tit {
    font-size: 1.8rem;
  }

  .profile_photo {
    width: 90%;
    margin: auto;
  }

  .profile_info {
    width: 100%;
    margin-top: 20px;
  }

  .profile_box {
      margin: 40px auto 80px auto;
  }

  .access_btn {
    margin: 15px auto;
    width: 30%;
  }

  .history_list {
    width: 95%;
    margin-left: 20px;
  }

  .history_info p {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }

  .history_info span {
    font-size: 1.3rem;
  }

  .history_txt {
    padding-bottom: 30px;
  }

  .contact_head {
    font-size: 1.4rem;
    line-height: 1.8;
    text-align: left;
    margin-bottom: 20px;
  }

  .contact_box {
    margin-top: 30px;
  }

  .contact_list {
    padding: 25px 0;
  }

  .form_label {
    width: 100%;
    margin-bottom: 15px;
  }

  .form_label h2 {
    font-size: 1.5rem;
    margin-right: 20px;
  }

  .form_input {
    width: 100%;
    padding: 10px;
    font-size: 1.3rem;
    height: 45px;
  }

  .form_txtArea {
    width: 100%;
  }

  .p-agree {
    width: 70%;
    margin: 40px auto;
  }

  .p-agree a {
    font-size: 1.5rem;
  }

  .form_button {
    width: 100%;
    font-size: 1.5rem;
    height: 50px;
  }

  .telephone_box {
    margin-top: 50px;
    padding: 20px;
    padding-bottom: 40px;
  }

  .telephone_box h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .telephone_box p {
    font-size: 1.3rem;
  }

  .acd-content {
    overflow: hidden;
    overflow-x: scroll;
  }

  .past_list_cont {
    width: 800px;
  }

}
