@charset "UTF-8";

/* --------------------------------------------------
 サイト共通 基本設定
 ---------------------------------------------------- */
html {
  font-family: 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 22px;
}
@media screen and (max-width:1023px) {
  html {
    font-size: 16px;
    line-height: 20px;
  }
}

body {
  color: #094067;
}

a {
  text-decoration: none; 
  color: #094067;
 }
 
 a:hover {
   color: #ef4565;
 }
 
p {
  padding: 0px;
  margin: 16px 0;
}

/* ヘッダー 設定 ---------- */
header {
  width: 100%;
  background-image: url(/img/header_1920.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  color: #fffffe;
  padding: 56px;
  position: relative;
}
@media screen and (max-width:1023px) {
  header {
    padding: 32px 20px 12px 32px;
  }
}

/* h1 サイトタイトル 設定 ---------- */
h1 {
  font-family: 'Kosugi Maru', sans-serif;
  font-size: 40px;
  line-height: 40px;
  text-shadow: 0px 3px 6px #000000; 
}
@media screen and (max-width:1023px) {
  h1 {
    font-size: 20px;
    line-height: 20px;
  }
}

/* メイン 設定 ---------- */
main {
  background-image: linear-gradient( #fffffe,#90B4CE,#fffffe);
}
@media screen and (max-width:1023px) {
  main {
    background: #fffffe;
  }
}

.contents_area {
  width: 1024px;
  margin: auto;
  background: #fffffe;
}
@media screen and (max-width:1023px) {
.contents_area {
    width: 100%;
  }
}

/* h2 中タイトル 設定 ---------- */
h2 {
  font-family: 'Kosugi Maru', sans-serif;
  font-size: 30px;
  line-height: 34px;
  color:#fffffe;
  text-align: center;
  position: relative;
  display: block;
  align-items: center;
  background: radial-gradient(#48C6EF,#66A6FF);
  border-radius: 40px;
  padding: 16px 0;
  margin: 120px 40px 56px 40px;
}
@media screen and (max-width:1023px) {
  h2{
    font-size: 25px;
    line-height: 29px;
    padding: 8px 0;
    margin: 80px 20px 32px 20px;
  }
}

/* h3 小タイトル 設定 ---------- */
h3 {
  font-weight: 600;
  margin-bottom: 32px;
}
@media screen and (max-width:1023px) {
  h3 {
    margin-bottom: 24px;
  }
}

/* 青バック 強調領域 設定 ---------- */
.blue_box {
  width: 764px;
  font-size: 24px;
  font-weight: bold;
  line-height: 32px;
  color:#fffffe;
  text-align: center;
  position: relative;
  background-color: #90b4ce;
  border-radius: 30px;
  margin: 56px auto;  /* 左右マージンは可変とします */
  padding: 32px 0;
  box-shadow: 0px 3px 6px #000000; 
}
@media screen and (min-width:375px) and (max-width:1023px)  {
  .blue_box {
    width: 90%;  /* スマホ版は画面幅を可変とします */
    font-size: 16px;
    line-height: 22px;
    margin: 32px auto;  /* 左右マージンは可変とします */
    padding: 18px 0;
  }
}
@media screen and (max-width:374px) {
  .blue_box {
    width: 90%;  /* スマホ版は画面幅を可変とします */
    font-size: 15px;
    line-height: 22px;
    margin: 32px auto;  /* 左右マージンは可変とします */
    padding: 18px 0;
  }
}

/* 横並びコンテンツ 設定 ---------- */
.flex_contents {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  height: max-content;
}
@media screen and (max-width:1023px) {
  .flex_contents {
    display: block; /* スマホでは横並び無効 */
  }
}

/* フッター ---------- */
 footer {
  height: 97px;
  background-image: url(/img/header_1920.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  color: #fffffe;
  font-size: 16px;
  line-height: 18px;
  text-align: center;
  padding: 32px;
  margin-top: 80px;
  text-shadow: 0px 3px 6px #000000; 
}
@media screen and (max-width:1023px) {
  footer {
    height: 46px;
    font-size: 10px;
    line-height: 12px;
    padding: 16px;
    margin-top: 56px;
  }
}

/* --------------------------------------------------
 index.html 固有設定
----------------------------------------------------- */
.index_header {
  height: 639px;
  z-index: 0;
}
@media screen and (max-width:1023px) {
  .index_header {
    height: 361px;
  } 
}

.index_header::after {
  content: '';
  background-color: rgba(255,255,255,0.5);
  width: 90%;  /* 横幅は可変とします */
  height: 360px;
  position: absolute;
  left: 0;
  top: 279px;
  z-index: 1;
}
@media screen and (max-width:1023px) {
  .index_header::after {
    height: 175px;
    top: 190px;
  }
}

.index_header::before {
  content: '';
  background-color: rgba(255,255,255,0.5);
  width: 90%;  /* 画面幅に応じて可変とします */
  height: 360px;
  position: absolute;
  right: 0;
  top: 335px;
  z-index: 2;
}
@media screen and (max-width:1023px) {
  .index_header::before {
    height: 175px;
    top: 218px;
  }
}

header .flex_contents {
  height: 200px;
}
@media screen and (max-width:1023px) {
  header .flex_contents {
    height: max-content;
  }
}

.hd_syamei {
  font-size: 60px;
  line-height: 60px;
}
@media screen and (min-width:375px) and (max-width:1023px) {
  .hd_syamei {
    font-size: 30px;
    line-height: 30px;
  }
}
@media screen and (max-width:374px) {
  .hd_syamei {
    font-size: 25px;
    line-height: 30px;
  }
}

.hd_tel {
  color: #fffffe;
  font-size: 24px;
  font-weight: 500;
  text-shadow: 0px 3px 6px #000000; 
}
@media screen and (max-width:1023px) {
  .hd_tel {
    font-size: 12px;
    margin-top: 32px;
  }
}

.hd_tel ul {
  list-style: none;
}

.hd_tel span {
  display: inline-block;
  width: 70px;
}
@media screen and (max-width:1023px) {
  .hd_tel span {
    display: inline-block;
    width: 40px;
  }
}

.hd_comment {
  font-family: 'Hiragino Mincho ProN', 'YuMincho', serif;
  color: #000;
  text-shadow: 0px 3px 6px #094067; 
  font-size: 32px;
  font-weight: bold;
  line-height: 36px;
  text-align: center;
  position: relative;
  z-index: 3;
  margin-top: 135px;
}
@media screen and (max-width:1023px) {
  .hd_comment {
    font-size: 18px;
    line-height: 22px;    
    margin-top: 78px;
  }
}

/* 業務内容 設定 (class:bs_content) ---------- */
.bs_content {
  width: max-content;
  margin: 0 auto;
}
@media screen and (max-width:1023px) {
  .bs_content {
    width: auto;
    margin: 0 20px;
  }
}

.bs_content img {
  width: 260px;
  height: 260px;
  border-radius: 50%;
}
@media screen and (max-width:1023px) {
  .bs_content img {
    width: 260px;
    height: 260px;
    border-radius: 50%;
  }
}

.gyoumu_gaiyou {
  width: 314px;
  margin: 0 auto;
}
@media screen and (max-width:1023px) {
  .gyoumu_gaiyou {
    width: max-content;
    margin-bottom: 56px;
  }
}

.bs_content .bs-img {
  width: max-content;
  margin: 0 auto;
}

.gyoumu_gaiyou p {
  text-align: center;
  line-height: normal;
}

/* 会社概要 設定 (class:cpny_profile) ---------- */
.cpny_profile {
  width: max-content;
  margin: 0 auto;
}
@media screen and (max-width:1023px) {
  .cpny_profile {
    width: auto;
    margin: 0 20px;
  }
}

.cpny_profile table {
  width: 764px;
  margin: 0 90px;
}
@media screen and (max-width:1023px) {
  .cpny_profile table {
    width: 100%;  /* スマホ版の横幅は可変とします */
    margin: 0 auto;
    font-size: 15px;  /* スマホの時だけ小さく */
  }
}

.cpny_profile tr {
  width: auto;
  line-height: 35px;
  border-bottom: #90B4CE 1px;
  border-style: dotted;
}

.cpny_profile th {
  width: 270px;
  font-weight: normal;
  text-align: unset;
}
@media screen and (max-width:1023px) {
  .cpny_profile th {
    width: max-content;  /* スマホ版の横幅は可変とします */
    padding-right: 10px;
  }
}

.cpny_profile .addr {
  font-size: 16px;
  line-height: 32px;
  vertical-align: top;
}
@media screen and (max-width:1023px) {
  .cpny_profile .addr {
    font-size: 11px;
    line-height: 16px;
    vertical-align: top;
  }
}

.cpny_profile .menkyo {
  font-size: 16px;
}
@media screen and (max-width:1023px) {
  .cpny_profile .menkyo {
    font-size: 14px;
  }
}

/* アクセス 設定 (class:access) ---------- */
.access {
  width: max-content;
  margin: 0 auto;
  font-size: 16px;
  line-height: 20px;
}
@media screen and (max-width:1023px) {
  .access {
    width: auto;
    margin: 0 20px;
    font-size: 14px;
    line-height: 18px;
  }
}

.access iframe {
  width: 764px;
  height: 364px;
  border: 0;
}
@media screen and (max-width:1023px) {
  .access iframe {
    width: 100%;  /* スマホ版の横幅は可変とします */
  }
}

.access .no_br br {
  display: none;
}
@media screen and (max-width:1023px) {
  .access .no_br br {
    display: inline;  /* スマホ版は改行を有効に */
  } 
}


/* お問い合わせ 設定 (class:contact) ---------- */
.contact p {
  width: 764px;
  margin: 0 auto;
  text-align: center;
  font-size: 24px;
  line-height: 28px;
}
@media screen and (max-width:1023px) {
  .contact p {
    width: 100%;
    font-size: 16px;
    line-height: 20px;
  }
}

.contact .blue_box {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.contact ul{
  text-align: left;
  font-size: 28px;
  padding-bottom: 32px;
  list-style: none;
}
@media screen and (max-width:1023px) {
  .contact ul{
    font-size: 18px;
    padding-bottom: 16px;
  }
}
.contact .fax {
  padding-left: 40px;
}
@media screen and (max-width:1023px) {
 .contact .fax {
  padding-left: 26px;
 }
}

.contact img {  
  width: 30px;
  height: 30px;
  vertical-align: bottom;
} 
@media screen and (max-width:1023px) {
  .contact img {  
    width: 20px;
    height: 20px;
  } 
}

.contact .business_hours {
  font-size: 24px;
  line-height: 30px;
}
@media screen and (max-width:1023px) {
  .contact .business_hours {
    font-size: 14px;
    line-height: 18px;
  }
}