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

.bs {
  font-family: "Big Shoulders Display", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

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

a:hover {
  opacity: .6;
}

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

  body {
  }

}

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

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: 30px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 40px;
  height  : 3px ;
  left    : 0px;
  background : #FFF;
  -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: 23px;
}

/* ナビ開いてる時のボタン */

.hamburger.active span {
  background: #000;
}

.hamburger.active span:nth-child(1) {
  top : 16px;
  left: 0px;
  -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;
  color: #000;
  text-align: center;
  transform: translateY(-100%);
  transition: all 0.6s;
  width: 100%;
  height: 50vh;
}

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

nav.globalMenuSp ul li {
  font-size: 1.6rem;
  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 :underline;
}

/* このクラスを、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);
}


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

ヘッダー

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

header {
  position: relative;
  z-index: 1;
}

.head_cont {
  max-width: 1000px;
  width: 100%;
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  color: #FFF;
}

.head_company {
  margin-right: 60px;
}

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

.head_company p {
  font-size: 2.8rem;
  font-weight: bold;
  margin-top: 5px;
}

.head_nav li {
  font-size: 1.6rem;
  margin-right: 20px;
}

.header_contact {
  font-size: 1.4rem;
  border: 1px solid;
  padding: 10px 20px;
}

.header_contact p {
  padding-left: 25px;
  position: relative;
}

.header_contact p::before {
  position: absolute;
  content: "";
  background: url(../img/ico_mail_w.svg) no-repeat;
  background-position: center;
  background-size: 100%;
  width: 18px;
  height: 14px;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

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

  .head_cont {
    width: 100%;
    top: 0;
    padding-top: 30px;
  }

  .head_company span {
    display: block;
    font-size: 10px;
    transform: scale(0.8);
    transform-origin: left top;
  }

  .head_company p {
    font-size: 1.6rem;
    margin-top: 2px;
  }

  .header_contact {
    display: block;
    width: 45%;
    margin: auto;
  }

  .header_contact p {
    padding-left: 35px;
  }

  .head_company {
    margin-left: 20px;
    margin-right: 0;
  }


}


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

フッター

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

footer {
  background: #969696;
  padding: 50px 0 120px 0;
  color: #FFF;
}

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

.foot_company {
  margin-right: 60px;
}

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

.company_name {
  font-size: 2.4rem;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 15px;
}

.address {
  font-size: 1.4rem;
  line-height: 1.8;
}

.foot_nav ul {
  margin-right: 55px;
}

.foot_nav ul li {
  font-size: 1.7rem;
  margin-bottom: 15px;
}

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

  footer {
    padding: 30px 0 80px 0;
  }

  .foot_company {
    margin-right: 0;
  }

  .foot_company span {
    font-size: 1.2rem;
    display: block;
    text-align: center;
  }

  .company_name {
    font-size: 1.7rem;
    font-weight: bold;
    text-align: center;
  }

  .address {
    font-size: 1.2rem;
    width: 82%;
    margin: auto;
  }

  .foot_nav {
    margin-top: 30px;
    justify-content: center !important;
  }

  .foot_nav ul {
    margin: 0 20px;
  }

  .foot_nav ul li {
    font-size: 1.2rem;
  }


}


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

MV

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

#mv {
  position: relative;
}

.mv_txt {
  color: #FFF;
  width: 780px;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.mv_txt h1 {
  font-size: 5rem;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 800;
}

.mv_main {
  font-size: 2.5rem;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 35px;
}

.mv_sub {
  font-size: 1.6rem;
  line-height: 1.8;
}

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

.left_cont {
  height: 70px;
  border-left: 5px solid #96C8FA;
  padding-left: 25px;
}

.left_cont.top_margin {
  margin-top: 70px;
}

.left_cont.gray {
  border-left: 5px solid #C8C8C8;
}

.right_cont {
  max-width: 750px;
  width: 100%;
}

.cont_tit {
  font-size: 3.5rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.left_cont span {
  font-size: 1.9rem;
}

.cont_copy {
  font-size: 2.4rem;
  margin-bottom: 30px;
}

.strong_box {

}

.strong_box li {
  position: relative;
  font-size: 2rem;
  padding-left: 30px;
  padding-bottom: 10px;
  margin-bottom: 20px;
  background-image: linear-gradient(to right, #333, #333 10px, transparent 10px);
    background-size: 14px 1px;
    background-position: left bottom;
    background-repeat: repeat-x;
}

.strong_box li::before {
  content: "";
  position: absolute;
  background: url(../img/ico_check.svg) no-repeat;
  background-position: center;
  background-size: 100%;
  width: 25px;
  height: 27px;
  top: 30%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

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

.contact_box li {
  text-indent: -4em;
  padding-left: 4em;
}

.btn_contact {
  position: relative;
  display: block;
  border: 1px solid #D70000;
  padding: 15px;
  padding-left: 65px;
  font-size: 1.8rem;
  width: 50%;
  max-width: 400px;
  margin-top: 30px;
}

.btn_contact::before {
  content: "";
  position: absolute;
  background: url(../img/ico_mail.svg) no-repeat;
  background-position: center;
  background-size: 100%;
  width: 35px;
  height: 27px;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

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

.info_img {
  margin-bottom: 50px;
}

.info_img img {
  width: 32%;
}

.info_img img:nth-of-type(2) {
  margin: 0 2%;
}

.info_main {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.info_txt {
  font-size: 1.6rem;
  line-height: 2.2;
}

.staff_profile {
  max-width: 195px;
  width: 100%;
}

.staff_profile p {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-top: 10px;
}

.staff_info {
  margin-left: 40px;
}

.staff_job {
  font-size: 1.7rem;
  margin-bottom: 15px;
}

.staff_name {
  margin-bottom: 40px;
}

.staff_name p {
  font-size: 1.9rem;
  font-weight: bold;
  margin-right: 25px;
}

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

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

.cont.staff {
  padding: 50px 0;
  border-top: 1px solid #C8C8C8;
  border-bottom: 1px solid #C8C8C8;
}

.v_line {
  width: 1px;
  height: 80px;
  background: #000;
  margin: 50px auto;
}

.btn_pur01 {
  position: relative;
  max-width: 600px;
  width: 100%;
  border: 1px solid #FF6E00;
  margin-bottom: 35px;
}

.btn_pur02 {
  position: relative;
  max-width: 600px;
  width: 100%;
  border: 1px solid #0064FF;
}

.btn_pur01::before,
.btn_pur02::before {
  position: absolute;
  content: "";
  background: url(../img/btn_arrow.svg) no-repeat;
  background-position: center;
  background-size: 100%;
  width: 48px;
  height: 15px;
  top: 50%;
  right: 15%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.btn_pur01::after,
.btn_pur02::after {
  position: absolute;
  content: "";
  background: url(../img/ico_mail_b.svg) no-repeat;
  background-position: center;
  background-size: 100%;
  width: 35px;
  height: 27px;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.btn_pur01 p,
.btn_pur02 p {
  margin-left: 20px;
  font-size: 2rem;
}

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

  .mv_txt {
    width: 90%;
  }

  .mv_txt h1 {
    font-size: 2.6rem;
    margin-bottom: 25px;
  }

  .mv_main {
    font-size: 1.4rem;
    line-height: 1.8;
  }

  .mv_sub {
    width: 80%;
    font-size: 1.2rem;
    margin: auto;
    margin-bottom: 20px;
  }

  .left_cont {
    border: none;
    padding-left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    margin-bottom: 30px;
  }

  .cont_tit {
    font-size: 2.4rem;
    line-height: 50px;
    margin-bottom: 0;
    margin-right: 20px;
    padding-right: 20px;
    border-right: 3px solid #96C8FA;
  }

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

  .cont_copy {
    font-size: 1.3rem;
    text-align: center;
    font-weight: bold;
  }

  .strong_box li::before {
    content: "";
    position: absolute;
    background: url(../img/ico_check.svg) no-repeat;
    background-position: center;
    background-size: 100%;
    width: 12px;
    height: 13px;
    top: 30%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }

  .strong_box li {
    font-size: 1.1rem;
    padding-left: 20px;
  }

  .contact_box {
    font-size: 1.2rem;
  }

  .btn_contact {
    width: 60%;
    font-size: 1.2rem;
    padding-left: 40px;
    margin: 30px auto;
  }

  .btn_contact::before {
    content: "";
    position: absolute;
    background: url(../img/ico_mail.svg) no-repeat;
    background-position: center;
    background-size: 100%;
    width: 17px;
    height: 14px;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }

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

  .btn_pur01::before, .btn_pur02::before {
    position: absolute;
    content: "";
    background: url(../img/btn_arrow.svg) no-repeat;
    background-position: center;
    background-size: 100%;
    width: 24px;
    height: 7px;
    top: 50%;
    right: 15%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }

  .btn_pur01::after, .btn_pur02::after {
    position: absolute;
    content: "";
    background: url(../img/ico_mail_b.svg) no-repeat;
    background-position: center;
    background-size: 100%;
    width: 17px;
    height: 14px;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }

  .btn_pur01 img,
  .btn_pur02 img {
    width: auto;
    height: 40px;
  }

  .btn_pur01 p, .btn_pur02 p {
    font-size: 1.4rem;
  }

  .left_cont.top_margin {
    margin-top: 0;
  }

  .left_cont.gray .cont_tit {
    border-right: 3px solid #C8C8C8;
  }

  .left_cont.gray {
    border-left: 0;
  }

  .staff_message {
    width: 90%;
    margin: auto;
    margin-bottom: 30px;
    font-size: 1.3rem;
  }

  .staff_info {
    margin-left: 0;
    margin: auto;
    width: 90%;
  }

  .staff_name p {
    font-size: 1.1rem;
    font-weight: bold;
    margin-right: 0;
  }

  .staff_name p.staff_job {
    font-size: 1.1rem;
    font-weight: normal;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .sp_staff_img {
    width: 50%;
    margin-right: 4%;
  }

  .sp_staff_info {
    width: 46%;
  }

  .staff_name {
    margin-bottom: 0;
  }

  .staff_name span {
    font-size: 1.1rem;
  }

  .staff_name p.sp_staff_name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 5px;
  }

  .staff_name p.sp_staff_profile {
    font-size: 1.1rem;
    margin-top: 15px;
    line-height: 1.8;
    font-weight: normal;
  }

  .cont.staff {
    padding: 30px 0;
  }

  .info_main {
    font-size: 1.3rem;
    text-align: center;
  }

  .info_txt {
    font-size: 1.1rem;
    line-height: 2;
  }

  .top_back {
    margin-bottom: 50px;
  }

  #page_top {
    width: 65px;
  }

}
