/* * {
  outline: 1px solid magenta;
} */

/* タブレット用スタイル */
/* @media screen and (min-width: 640px) and (max-width: 1023px) { 

} */

/* PC用スタイル (画面幅が1024px以上の場合) */
/* @media (min-width: 1024px) {

} */


/* #region ======= 基本設定 ======= */
/* フォント読み込み */
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);

html{
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body{
  font-family: 'Noto Sans JP', sans-serif;
  text-align: justify;
}

a {
  text-decoration: none;
  /* width: 100%; */
  /* display: inline-block; */
}

p {
  font-size: 14px;
  line-height: 1.8;
}

img {
  display: block;
  margin: auto;
}

/* PC用スタイル (画面幅が1024px以上の場合) */
@media (min-width: 1024px) {
  body {
    width: 70vw;
    margin: auto;
  }
}


/* #endregion */

/* #region ======= ユーティリティクラス ======= */
/* PCサイズの場合非表示 */
.pc_size {
  display: none;
}

.bold {
  font-weight: bold;
}

.marker {
  background: linear-gradient(transparent 70%, #f3ff50 70%);
}

.background_gray {
  background-color: #F8F8F8;
}

.big {
  font-size: 22px;
}

.small {
  font-size: 15px;
}

.white{
 color: #ffffff;
}

.black{
  color: #000000;
}

.bac_black{
  background-color: #000000;
}

.bak_blue{
  background-color: #1B4A9D;
}

.top_interval{
 padding-top: 100px;
}

/* タブレットサイズ */
@media screen and (min-width: 640px) and (max-width: 1023px) {
  .sp_size {
    display: block;
  }

  /* PCサイズの場合表示 */
  .pc_size {
    display: none;
  }
}

/* PC用スタイル (画面幅が1024px以上の場合) */
@media (min-width: 1024px) {

  /* SPサイズの場合表示 */
  .sp_size {
    display: none;
  }

  /* PCサイズの場合表示 */
  .pc_size {
    display: block;
  }

  /* PC画面サイズ */
  .pc_width {
    width: 70vw;
    margin: auto;
  }
}

/* #endregion */

/* #region ======= セクションタイトル ======= */

/* メインタイトル */
.section_title_area h1{
  font-size: 30px;
  font-weight: bold;
  color: #1B4A9D;
}
.section_title_area p{
  font-size: 16px;
  margin-top: 10px;
  color: #1B4A9D;
}

/* #endregion */

/* #region ======= 動くボタン矢印 ======= */
.btn_area{
  font-weight: bold;
  font-size: 20px;
  border: 1px solid #ffffff;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  margin: auto;
  padding: 0 20px;
  color: #ffffff;
  line-height: 1.3;
}
.btn_area a{
  color: #ffffff;
  letter-spacing: 2px;
}




/* #endregion */

/* #region ======= TOP header ======= */
#header {
  position: relative;
  width: 100%;
  height: 115vw;
  z-index: 9999;
  background-color: #1B4A9D;
}
#header .logo{
  position: absolute;
  top:20vw;
  right: 14px;
  z-index: 999;
}

#header .title_area{
  position: absolute;
  top:80vw;
  left: 20vw;
  text-align: right;
  letter-spacing:2px;
}
#header .title{
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

#header .inc{
  position: absolute;
  top:25px;
  left: 33vw;
  z-index: 9999;
  color: #ffffff;
  letter-spacing: 2px;
  font-weight: bold;
}

#header .movie_area{
  overflow-x: hidden;
 }
#header .movie_area video{
 width: 250%;
 height: auto;
 position: relative;
 left: -80px;
 clip-path: inset(0 148vw 10vw 0); /* 上 右 下 左の順でクリッピングを設定 */
}

/* PC用スタイル (画面幅が1024px以上の場合) */
@media (min-width: 1024px) {
  #header {
    top: 0;
    width: 100%;
    background-color: #fff;
    height: 4vw;
  }

 #header .title_area{
    position: absolute;
    top:32vw;
    right: -25vw;
  }

  #header .movie_area video{
    width: 100%;
    height: auto;
    left: 0;
    clip-path: inset(0 0 0 0); /* 上 右 下 左の順でクリッピングを設定 */
   }

   #header .logo{
    position: absolute;
    width: 13vw;
    top: 15vw;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }

  #header .inc{
    position: absolute;
    top:25vw;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3vw;
  }

}
/* #endregion */

/************* index.html *************/
/* #region ======= 私たちについて ======= */
#thoughts{
  background-image: url('../images/we-bg.jpg'); /* 画像のパスを指定 */
  padding: 0 10px;
  padding-top: 30vw;
  padding-bottom: 50px;
}

#thoughts .text{
  margin-top: 30px;
}

/* PC用スタイル */
@media (min-width: 1024px) {
  #thoughts{
    padding-top: 40vw;
  }
}

/* #endregion */

/* #region ======= サービス ======= */
#service{
  background-color: #1B4A9D;
  padding: 30px 15px;
}

#service .section_title_area h1,
#service .section_title_area p{
  color: #ffffff;
}

#service .text{
  margin-top: 30px;
 color: #ffffff;
}

#service ul{
  margin-top: 30px;
}

#service li{
  margin: 20px 0;
  background-color: #ffffff;
  /* border-radius: 15px;
  box-shadow: 4px 4px 6px rgb(143, 143, 143); */
}
#service li .li_text_area{
  padding: 10px 10px;
}
#service li .li_text{
  margin-top: 20px;
  color: #1B4A9D;
}
#service li .li_sub_title{
  margin-top: 10px;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: -15px;
  color: #1B4A9D;
}


#service .li_main_img{
  /* border-radius: 15px 15px 0 0 ; */
  width: 100%;
  height: auto;
}

#service .li_top_name_img{
  width: 80%;
  height: auto;
 margin-top: 20px;
}

#service .li_name_img{
  width: 100%;
  height: auto;
 margin-top: 20px;
}

#service .list_btn_area{
  text-align: center;
}
#service .list_btn{
  border: 1px solid #535353;
  border-radius: 15px;
  font-size: 20px;
  padding: 10px 50px;
  font-weight: bold;
  color: #000000;
  background-color: #ffffff;
  text-align: center;
}

#service .btn_area{
  color: #ffffff;
}
#service .btn_area a{
  color: #ffffff;
}

/* PC用スタイル (画面幅が1024px以上の場合) */
@media (min-width: 1024px) {
  #service ul{
    padding: 30px 10px;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 3列にする */
    gap: 25px; /* アイテム間の間隔を設定 */
  }

  #service li{
    margin: 0;
  }

  #service .li_name_img{
    width: 80%;
    height: auto;
   margin-top: 20px;
  }
}

/* #endregion */

/* #region ======= 会社概要 ======= */
#company{
  padding: 0 10px;
  padding-top: 60px;
}

#company table{
  width: 100%;
  border-collapse: collapse; /* セルのボーダーを結合 */
  margin: 30px 0; /* 上下の間隔 */
  line-height: 1.5;
  letter-spacing: 1px;
}
#company table tr{
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
}
#company table th{
 padding-left: 10px;
}
#company table td{
  padding: 20px 0;
  padding-left: 18px;
}

#company table th {
  font-weight: bold;
  width: 70px;
}

/* PC用サイズ */
@media (min-width: 1024px) {
  #company{
    width: 50%;
    margin: auto;
  }
  #company table th {
    width: auto;
  }
}


/* #endregion */

/* #region ======= アクアセス ======= */
#access{
  padding: 20px 10px;
}

#access .map_area{
  text-align: center;
  margin-top: 10px;
}

#access .map_img{
  margin-bottom: 30px;
}


/* PC用スタイル (画面幅が1024px以上の場合) */
@media (min-width: 1024px) {
  #access{
    width: 50%;
    margin: auto;
  }
}
/* #endregion */

/* #region ======= お問い合わせ ======= */
#contact{
  padding: 30px 10px;
  padding-top: 60px;
}

#contact .text{
 text-align: center;
 margin-top: 20px;
}

/* お問い合わせ */
.contact_form{
  margin-top: 30px;
}

.contact_form .Form-Item {
  border-top: 1px solid #ddd;
  padding-top: 16px;
  padding-bottom: 16px;
  flex-wrap: wrap;
  width: 100%;
}

.contact_form .Form-Item-Label {
  width: 100%;
  max-width: inherit;
  display: flex;
  align-items: center;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 15px;
}

.contact_form .Form-Item-Label.isMsg {
  margin-top: 0;
  margin-bottom: auto;
}

.contact_form .Form-Item-Label-Required {
  border-radius: 4px;
  margin-right: 8px;
  padding-top: 4px;
  padding-bottom: 4px;
  width: 32px;
  display: inline-block;
  text-align: center;
  background: #e40000;
  color: #fff;
  font-size: 10px;
}


.contact_form .Form-Item-Label-Any {
  border-radius: 4px;
  margin-right: 8px;
  padding-top: 4px;
  padding-bottom: 4px;
  width: 32px;
  display: inline-block;
  text-align: center;
  background: #0035e4;
  color: #fff;
  font-size: 10px;
}

.contact_form .Form-Item-Input {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding-left: 1em;
  padding-right: 1em;
  height: 40px;
  flex: inherit;
  width: 90%;
  background: #fff;
  font-size: 15px;
  margin-top: 18px;
  color: #000;
}

.contact_form .Form-Item-Textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 1em 1em;
  height: 200px;
  flex: inherit;
  width: 90%;
  background: #fff;
  font-size: 15px;
  margin-top: 18px;
  color: #000;
}


.contact_form .Form-Btn {
  border-radius: 5px;
  margin: 20px auto;
  padding: 10px 50px;
  display: block;
  background-color: #ffffff;
  border: 1px solid #000000;
  color: #000000;
  font-size: 18px;
  font-weight: bold;
}
/* PC用サイズ */
@media (min-width: 1024px) {
  #contact{
    width: 50%;
    margin: auto;
  }
}
/* #endregion */

/* #region ======= footer ======= */
footer{
  background-color: #000000;
  padding: 20px 10px;
  text-align: center;
}
footer .logo{
  width: 80px;
  height: auto;
}
footer .copyright{
  color: #ffffff;
  margin-top: 20px;
}
/* #endregion */

/************* service.html *************/
/* #region ======= サービス一覧 ======= */
#service_list{
  background-color: #000000;
  padding: 30px 10px;
}
/* #endregion */

/************* mail.php *************/
/* #region ======= 送信後の処理 ======= */
#send_process{
  background-image: url('../images/send.jpg'); /* 画像のパスを指定 */
  background-repeat: no-repeat; /* 画像を繰り返さない */
  background-size: cover; /* 画像をコンテナのサイズに合わせて拡大/縮小 */
  background-position: center; /* 画像を中央に配置 */
  padding: 50px 10px;
  height: 100vh;
}

#send_process .title{
  border-bottom: 1px solid #ffffff;
  font-size: 25px;
  padding-bottom: 10px;
  font-weight: bold;
  color: #ffffff;
}

#send_process .text_area{
  text-align: center;
  margin-top: 100px;
  color: #ffffff;
}

#send_process .send_message{
  font-size: 20px;
  margin-bottom: 50px;
}

#send_process a{
  border: 1px solid #ffffff;
  border-radius: 10px;
  padding: 10px 50px;
  font-size: 18px;
  color: #ffffff;
}
/* #endregion */



