@charset "UTF-8";
li {
  list-style: none;
}

a {
  text-decoration: none;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

/*背景色*/
.helf_area {
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 40%, #F1F6FB 40%, #F1F6FB 100%);
  width: 100%;
}

/*インナー*/
.mission_inner, .top_service_inner, .top_company_inner,
.top_contact_inner, .page_title_inner, .page_overview_inner,
.form_announce_inner, .page_service_inner, .privacy_inner {
  max-width: 1281px;
  margin: 0 auto;
}
@media (width < 1281px) {
  .mission_inner, .top_service_inner, .top_company_inner,
.top_contact_inner, .page_title_inner, .page_overview_inner,
.form_announce_inner, .page_service_inner, .privacy_inner {
    max-width: 1101px;
  }
}
@media (width < 1101px) {
  .mission_inner, .top_service_inner, .top_company_inner,
.top_contact_inner, .page_title_inner, .page_overview_inner,
.form_announce_inner, .page_service_inner, .privacy_inner {
    padding: 0 3%;
  }
}

/*ページタイトル*/
.page_title {
  padding: 10% 0 5% 0;
}
@media (width < 769px) {
  .page_title {
    padding: 30% 0 10% 0;
  }
}

.page_title_wrapper {
  border-bottom: 1px solid #003376;
  padding-bottom: 20px;
}
.page_title_wrapper h2 {
  font-size: 50px;
}
@media (width < 769px) {
  .page_title_wrapper h2 {
    font-size: 40px;
  }
}
.page_title_wrapper p {
  font-size: 25px;
}
@media (width < 769px) {
  .page_title_wrapper p {
    font-size: 18px;
  }
}

/*改行*/
@media (width < 769px) {
  .pc_br {
    display: none;
  }
}

.mb_br {
  display: none;
}
@media (width < 769px) {
  .mb_br {
    display: block;
  }
}

/*----------ヘッダー----------*/
header {
  position: fixed;
  top: 10px;
  left: 0;
  z-index: 1000;
  width: 100%;
}
header .pc_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 15px 0;
}
@media (width < 1441px) {
  header .pc_header {
    max-width: 1101px;
  }
}
@media (width < 1101px) {
  header .pc_header {
    display: none;
  }
}
header .pc_header_inner {
  width: 85%;
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5% 0 3%;
}
header ul {
  display: flex;
  justify-content: space-around;
}
header li + li {
  padding-left: 50px;
}
@media (width < 1101px) {
  header li + li {
    padding-left: 0;
  }
}
header a {
  color: #000;
}
header a:hover{
	color: #8A8A8A;
}
header .header_contactbtn {
  background-color: #015DC1;
  border-radius: 10px;
  transition: 0.5s all;
}
header .header_contactbtn:hover{
	background-color: #2990FF;
}
header .header_contactbtn a {
  display: inline-block;
  color: #fff;
  padding: 20px 40px;
}

.mobile_nav {
  height: 80px;
  display: none;
}
@media (width < 1101px) {
  .mobile_nav {
    display: block;
  }
}

.mobile_nav_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__container {
  display: flex;
  justify-content: right;
  align-items: center;
  padding-right: 3%;
}

/* ===============================================
ハンバーガーボタンのスタイリング
=============================================== */
.hamburger {
  position: fixed;
  width: 50px;
  height: 80px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  z-index: 550;
}

.hamburger span,
.hamburger span::after,
.hamburger span::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  transition: all 0.5s;
}

.hamburger span::before {
  top: -10px;
}

.hamburger span::after {
  bottom: -10px;
}

.hamburger.open span {
  background-color: transparent;
}

.hamburger.open span::before {
  top: 0;
  transform: rotate(45deg);
}

.hamburger.open span::after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* ===============================================
メニューのスタイリング
=============================================== */
.nav {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  right: -120%;
  background-color: #015DC1;
  opacity: 0.7;
  padding: 100px 0;
  transition: all 0.5s;
  z-index: 500;
}

.nav__list {
  display: block;
}
.nav__list li {
  padding-left: 5%;
}

.nav__item a {
  display: block;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
  padding: 20px 0 20px 50px;
  text-transform: uppercase;
}

.nav__item a:hover {
  color: #0f5474;
  background-color: #fff;
}

.nav.open {
  right: 0;
}

/* ===============================================
ファーストビューのスライドショー
=============================================== */
.container {
  width: 100%;
  height: 100vh;
}

.slider-area {
  position: relative;
  width: 100%;
  height: 100vh;
}
@media (width < 769px) {
  .slider-area {
    width: 100%;
    height: 90vh;
  }
}

.slider-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  -webkit-animation: slideShow 30s linear infinite 0s;
          animation: slideShow 30s linear infinite 0s;
}

.slider-item:nth-child(2) {
  -webkit-animation-delay: 10s;
          animation-delay: 10s;
}

.slider-item:nth-child(3) {
  -webkit-animation-delay: 20s;
          animation-delay: 20s;
}

.slider-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@-webkit-keyframes slideShow {
  0% {
    opacity: 0;
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  8% {
    opacity: 1;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  20% {
    opacity: 1;
  }
  40%, 100% {
    opacity: 0;
  }
}

@keyframes slideShow {
  0% {
    opacity: 0;
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  8% {
    opacity: 1;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  20% {
    opacity: 1;
  }
  40%, 100% {
    opacity: 0;
  }
}
/*---------モバイル---------*/
.mb_container {
  display: none;
  width: 100%;
  height: 90vh;
}

@media (width < 769px) {
  .container {
    display: none;
  }
  .mb_container {
    display: block;
    width: 100%;
  }
}
/* ===============================================
ファーストビュー・レイヤー設定
=============================================== */
.top_fv {
  position: relative;
  z-index: 0;
}

.top_fv_layer {
  height: 100vh;
  width: 100%;
  z-index: 100;
  position: absolute;
  top: 0;
  left: 0;
}
.top_fv_layer img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top_mbfv_layer {
  display: none;
  height: 100vh;
  width: 100vw;
  z-index: 100;
  position: absolute;
  top: 0;
  left: 0;
}
.top_mbfv_layer img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (width < 769px) {
  .top_fv_layer {
    display: none;
  }
  .top_mbfv_layer {
    display: block;
    width: 100%;
    height: 90vh;
  }
}
/* ===============================================
トップ・メインコンテンツ
=============================================== */
.mission {
  padding: 10% 0;
}
@media (width < 769px) {
  .mission {
    padding: 15% 0;
  }
}
.mission .mission_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (width < 769px) {
  .mission .mission_wrapper {
    display: block;
  }
}
.mission .mission_title h2 {
  font-size: 45px;
}
@media (width < 769px) {
  .mission .mission_title h2 {
    font-size: 35px;
  }
}
.mission .mission_title p {
  font-size: 20px;
}
@media (width < 769px) {
  .mission .mission_title p {
    font-size: 16px;
  }
}
.mission .mission_subtitle {
  width: 40%;
}
@media (width < 769px) {
  .mission .mission_subtitle {
    width: 100%;
    padding: 7% 0;
  }
}
.mission .mission_subtitle h3 {
  font-size: 25px;
  letter-spacing: 0.2rem;
  font-weight: 400;
}
@media (width < 769px) {
  .mission .mission_subtitle h3 {
    font-size: 20px;
  }
}
.mission .mission_contents {
  width: 60%;
  padding-left: 10%;
  font-size: 20px;
  line-height: 2.5rem;
}
@media (width < 769px) {
  .mission .mission_contents {
    width: 100%;
    padding-left: 0%;
    font-size: 16px;
  }
}

/*サービスセクション*/
.top_service {
  padding: 5% 0 10% 0;
  background-color: #fff;
  margin-right: 5%;
}
@media (width < 1441px) {
  .top_service {
    padding: 5% 3% 10% 3%;
  }
}
@media (width < 769px) {
  .top_service {
    padding: 10% 3% 15% 3%;
  }
}
.top_service .top_service_title {
  text-align: center;
}
.top_service .top_service_title h2 {
  font-size: 45px;
}
@media (width < 769px) {
  .top_service .top_service_title h2 {
    font-size: 35px;
  }
}
.top_service .top_service_title p {
  font-size: 20px;
}
@media (width < 769px) {
  .top_service .top_service_title p {
    font-size: 16px;
  }
}
.top_service .top_service_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 7%;
}
@media (width < 769px) {
  .top_service .top_service_wrapper {
    display: block;
  }
}
.top_service .speace_left {
  margin-left: 5%;
}
@media (width < 769px) {
  .top_service .speace_left {
    margin-left: 0%;
    padding-top: 15%;
  }
}
.top_service .speace_right {
  margin-right: 5%;
}
@media (width < 769px) {
  .top_service .speace_right {
    margin-right: 0%;
  }
}
.top_service .service_btn a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #003376;
}
.top_service .service_btn{
	transition: 0.5s all;
}
.top_service .service_btn:hover{
	background-color: #DFEEFF;
}
.top_service .service_btn_title h2 {
  font-size: 16px;
  color: #003376;
  padding-top: 10px;
}
.top_service .service_btn_title p {
  font-size: 20px;
  color: #000;
  padding: 15px 0;
}

.service_img {
  width: 100%;
}
.service_img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*カンパニーセクション*/
.top_company {
  padding: 10% 0;
}
@media (width < 1281px) {
  .top_company {
    padding: 13% 0;
  }
}
@media (width < 769px) {
  .top_company {
    padding: 20% 0 30%;
  }
}
.top_company .top_company_inner {
  position: relative;
}
.top_company .top_company_title {
  background-color: #fff;
  padding: 10% 15%;
  position: absolute;
  right: 0%;
  top: 10%;
  transition: 0.5s all;
}
.top_company .top_company_title:hover{
  background-color: #DFEEFF;
}
@media (width < 1101px) {
  .top_company .top_company_title {
    right: 5%;
    padding: 7% 12%;
  }
}
@media (width < 769px) {
  .top_company .top_company_title {
    top: 50%;
  }
}
.top_company .top_company_titlebtn {
  border-bottom: 1px solid #003376;
}
.top_company .top_company_titlebtn h2 {
  font-size: 45px;
  color: #000;
}
@media (width < 769px) {
  .top_company .top_company_titlebtn h2 {
    font-size: 35px;
  }
}
.top_company .top_company_titlebtn p {
  font-size: 20px;
  color: #000;
}
@media (width < 769px) {
  .top_company .top_company_titlebtn p {
    font-size: 16px;
  }
}
.top_company .t_btn_img {
  width: 16px;
  margin-left: auto;
  padding: 10% 0 5% 0;
}
.top_company .top_company_img {
  width: 70%;
}
.top_company .top_company_img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (width < 1101px) {
  .top_company .top_company_img {
    width: 60%;
  }
}
@media (width < 769px) {
  .top_company .top_company_img {
    width: 90%;
  }
}

/*コンタクトフォーム*/
.top_contact {
  padding-top: 10%;
}
.top_contact .top_contact_inner {
  padding-bottom: 10%;
}
.top_contact .contact_anouns {
  text-align: center;
  padding: 5% 0 10% 0;
  font-size: 18px;
}
@media (width < 769px) {
  .top_contact .contact_anouns {
    font-size: 16px;
    padding: 10% 0 15%;
  }
}
.top_contact .top_contact_title {
  text-align: center;
}
.top_contact .top_contact_title h2 {
  font-size: 45px;
}
@media (width < 769px) {
  .top_contact .top_contact_title h2 {
    font-size: 35px;
  }
}
.top_contact .top_contact_title p {
  font-size: 20px;
}
@media (width < 769px) {
  .top_contact .top_contact_title p {
    font-size: 16px;
  }
}
.top_contact .contact_form {
  background-color: #fff;
  width: 95%;
  margin: 0 auto;
  border: solid 1px #D9D9D9;
  padding: 10% 0;
}

.top_contact_wrapper {
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 50%, #F1F6FB 50%, #F1F6FB 100%);
  width: 100%;
}

/*コンタクトフォーム*/
dl + dl {
  padding-top: 5%;
}

dl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 70%;
  margin: 0 auto;
}
@media (width < 769px) {
  dl {
    display: block;
    width: 80%;
  }
}

dt {
  width: 40%;
  font-size: 20px;
}
@media (width < 769px) {
  dt {
    font-size: 16px;
    width: 100%;
    padding-bottom: 10px;
  }
}

dd {
  width: 60%;
  border: solid 1px #97A6BD;
  padding: 20px 10px;
  border-radius: 10px;
}
@media (width < 769px) {
  dd {
    width: 100%;
  }
}

.pparea_btnbox {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3% 0;
}
.pparea_btnbox a{
	color: #015DC1;
}
@media (width < 769px){
	.pparea_btnbox a{
		font-size: 14px;
	}
}

.contactform_btnarea .submit_btn {
  background-color: #015DC1;
  border-radius: 10px;
  padding: 3% 10%;
  color: #fff;
  font-weight: bold;
  width: 100%;
  transition: 0.5s all;
}

.contactform_btnarea .submit_btn:hover{
	  background-color: #2990ff;
}
.contactform_btnarea{
	width: 70%;
	margin: 0 auto;
	}
@media (width < 769px) {
  .textarea_speace {
    height: 250px;
  }
}

@media (width < 769px) {
  input, textarea {
    width: 100%;
  }
  .contact_form {
    width: 80%;
  }
}
.contactform_btnarea{
	width: 70%;
	margin: 0 auto;
	}
/*----------フッター----------*/
footer p {
  text-align: center;
  font-size: 14px;
  padding: 20px 0 5px 0;
}

.footer_img {
  width: 5%;
  margin: 0 auto;
  padding-top: 20px;
}
.footer_img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (width < 1101px) {
  .footer_img {
    width: 7%;
  }
}
@media (width < 769px) {
  .footer_img {
    width: 15%;
  }
}

/* ===============================================
個別ページ・会社概要
=============================================== */
.page_company_overview table {
  border-collapse: collapse; /* セル枠を重ねて表示 */
  width: 80%;
  margin: 0 auto;
  font-size: 18px;
}
@media (width < 769px) {
  .page_company_overview table {
    width: 90%;
  }
}
@media (width < 431px) {
  .page_company_overview td {
    font-size: 14px;
  }
}
.page_company_overview .contents_more {
  padding: 3% 0 15px 10%;
}
.page_company_overview .contents_more a {
  color: #000;
}
@media (width < 431px) {
  .page_company_overview .contents_more {
    padding-left: 30px;
  }
}

/*----------アクセス----------*/
.page_company_access {
  padding: 10% 0;
}
@media (width < 769px) {
  .page_company_access {
    padding: 10% 0 15%;
  }
}

.company_access_title h2 {
  font-size: 40px;
}
@media (width < 769px) {
  .company_access_title h2 {
    font-size: 30px;
  }
}
.company_access_title p {
  font-size: 20px;
}
@media (width < 769px) {
  .company_access_title p {
    font-size: 16px;
  }
}

.company_access_wrapper {
  padding: 5% 0 10% 0;
  background-color: #fff;
  margin-right: 5%;
}
@media (width < 769px) {
  .company_access_wrapper {
    padding: 10% 0;
  }
}
.company_access_wrapper iframe {
  width: 90%;
  margin: 0 auto;
  height: 450px;
  display: block;
}
@media (width < 769px) {
  .company_access_wrapper iframe {
    height: 300px;
  }
}

/*----------コンタクトアナウンス----------*/
.contactform_announce {
  padding: 10% 0;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 50%, #F1F6FB 50%, #F1F6FB 100%);
  width: 100%;
}
.contactform_announce a {
  color: #000;
}

.form_annnounce_wrapper {
  border: solid 1px #D9D9D9;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.5s all;
}
.form_annnounce_wrapper:hover{
	background-color: #DFEEFF;
}
@media (width < 769px) {
  .form_annnounce_wrapper {
    display: block;
  }
}

.form_announce_title {
  padding: 7% 0;
  margin: 20px 0;
  border-right: solid 1px #D9D9D9;
  width: 50%;
  text-align: center;
}
@media (width < 769px) {
  .form_announce_title {
    width: 90%;
    border-bottom: solid 1px #D9D9D9;
    border-right: none;
    margin: 0 20px;
  }
}
.form_announce_title h2 {
  font-size: 40px;
}
@media (width < 769px) {
  .form_announce_title h2 {
    font-size: 25px;
  }
}
.form_announce_title p {
  font-size: 20px;
}
@media (width < 769px) {
  .form_announce_title p {
    font-size: 16px;
  }
}

.form_announce_contents {
  width: 50%;
}
@media (width < 769px) {
  .form_announce_contents {
    width: 100%;
  }
}
.form_announce_contents p {
  font-size: 16px;
  padding-left: 10%;
}
@media (width < 769px) {
  .form_announce_contents p {
    padding: 7% 0;
    text-align: center;
    font-size: 14px;
  }
}

/* ===============================================
個別ページ・事業内容
=============================================== */
.page_service_mbimg {
  display: none;
  width: 95%;
  margin: 0 auto;
}
@media (width < 769px) {
  .page_service_mbimg {
    display: block;
  }
}
.page_service_mbimg img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page_service_main {
  padding-bottom: 10%;
}

.page_service_contents {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (width < 769px) {
  .page_service_contents {
    display: block;
  }
}

.page_service_wrapper {
  padding: 5% 0 5% 0;
  background-color: #fff;
  margin: 5% 5% 0 0;
}
@media (width < 769px) {
  .page_service_wrapper {
    padding: 10% 0 5% 0;
  }
}

.page_service_img {
  width: 45%;
}
@media (width < 769px) {
  .page_service_img {
    width: 95%;
  }
}
.page_service_img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (width < 769px) {
  .pc_service_img {
    display: none;
  }
}

.page_service_text {
  width: 45%;
}
@media (width < 769px) {
  .page_service_text {
    width: 100%;
    padding: 5% 0 10%;
  }
}
.page_service_text h2 {
  font-size: 35px;
}
@media (width < 769px) {
  .page_service_text h2 {
    width: 25px;
  }
}
.page_service_text h3 {
  font-size: 20px;
  padding-bottom: 5%;
}
@media (width < 769px) {
  .page_service_text h3 {
    font-size: 16px;
  }
}
.page_service_text p {
  font-size: 18px;
  line-height: 2.5rem;
}
@media (width < 769px) {
  .page_service_text p {
    font-size: 16px;
  }
}

.s_text_speace {
  margin-right: 5%;
}
@media (width < 1101px) {
  .s_text_speace {
    margin-right: 3%;
  }
}
@media (width < 769px) {
  .s_text_speace {
    margin-right: 0%;
    padding-right: 5%;
  }
}

/* ===============================================
個別ページ・プライバシーポリシー
=============================================== */
.privacy h2 {
  text-align: center;
  padding-bottom: 5%;
}
@media (width < 769px) {
  .privacy h2 {
    font-size: 20px;
  }
}
.privacy .privacy_wrapper {
  background-color: #fff;
  padding: 5% 3%;
}
/*# sourceMappingURL=style.css.map */