@charset "UTF-8";
/* --- 共通設定ここから
----------------------------------------- */
html{
  font-size: 16px;
}
@media screen and (max-width: 768px){
  html{
    font-size: 14px;
  }
}
body {
  font-family:
    "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", "sans-serif";
}

button {
  padding: 0;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none
}
a{
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  transition: all 0.3s;
  background-color: #005FD2;
  color: #fff;
}
a:hover{
  transition: all 0.3s;
  background-color: #003C8F;
}
img{
  width: 100%;
  height: auto;
}
section{
  margin-top: 100px;
}
h4{
  font-size: 2.8rem;
  line-height: 1.5;
}
p{
  font-size: 1.6rem;
  line-height: 2;
  text-align: justify;
}
@media screen and (max-width: 768px){
  p{
    font-size: 1.2rem;
  }
}
/* --- レスポンシブ共通設定ここから
----------------------------------------- */
.pc_only{
  display: block;
}
.sp_only{
  display: none;
}
@media screen and (max-width: 768px){
  .pc_only{
    display: none;
  }
  .sp_only{
    display: block;
  }
}
/* --- レスポンシブ共通設定ここまで
----------------------------------------- */
/* --- オリジナル共通設定ここから
----------------------------------------- */
.main{
  padding-top: 80px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
section .main-content{
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 768px){
  .main{
    width: 100%;
    padding-top: 60px;
  }
  section .main-content{
    grid-template-columns: 1fr;
  }
}
/* --- オリジナル共通設定ここまで
----------------------------------------- */
/* --- page-topボタンここから
----------------------------------------- */
#page-top{
  position: fixed;
  bottom: 30px;
  right: 60px;
  width: 70px;
  height: auto;
  cursor: pointer;
  opacity: 0.3;
}
@media screen and (max-width: 768px){
  #page-top{
    width: 70px;
    height: 70px;
    right: 30px;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 35px;
    bottom: 10px;
    right: 10px;
  }
  #page-top img{
    width: 40px;
    height: auto;
  }
}
/* --- page-topボタンここまで
----------------------------------------- */
/* --- section title周り共通設定ここから
----------------------------------------- */
.section-title{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 140px;
}
.title-text {
  display: flex;
  align-items: center;
  margin-right: 10%;
}
.title-text h3 {
  font-size: 3.5rem;
  white-space: nowrap;
  margin: 0;
}
.title-text .line {
  flex-grow: 1;
  height: 1px;
  background-color: #000;
  margin-left: 20px;
}
.section-title img{
  width: 90%;
  height: auto;
}
@media screen and (max-width: 768px){
  .section-title{
    width: 90%;
    grid-template-columns: 1fr;
    gap: 0;
    margin: 0 auto 50px auto;
  }
  .title-text{
    margin-right: 0;
  }
  .title-text h3{
    font-size: 2.5rem;
  }
  .title-text .line{
    margin-left: 10px;
  }
  .section-title img{
    margin-top: 30px;
  }
}
/* --- section title周り共通設定ここまで
----------------------------------------- */
/* --- 共通設定ここまで
----------------------------------------- */

/* --- ヘッダーここから
----------------------------------------- */
header{
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  width: 100vw;
  height: 80px;
  display: flex;
  position: fixed;
  top: 0;
}
header .content{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}
header h1{
  font-size: 1.5rem;
  color: #333;
}
header .inquiry{
  display: block;
  justify-content: center;
  width: 168px;
  color: #fff;
  font-size: 1.5rem;
}
header .inquiry a{
  padding: 5px;
  border-radius: 10px;
}
header .inquiry a:hover{
  background-color: #003C8F;
}
@media screen and (max-width: 768px){
  header{
    height: 60px;
  }
  header h1{
    font-size: 1rem;
  }
  header .inquiry{
    width: 100px;
    font-size: 1rem;
  }
  header .inquiry a:hover{
    background-color: transparent;
  }
}
/* --- ヘッダーここまで
----------------------------------------- */
/* --- .top（KV）ここから
----------------------------------------- */
.top{
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.top .title{
  padding-right: 10%;
  display: grid;
  align-content: space-between;
}
.top h2{
  margin-top: 30px;
  font-size: 2.5rem;
  line-height: 1.5;
  font-weight: normal;
  font-size: clamp(16px 16px 2.5rem);
  margin-bottom: 20px;
}
.top .inquiry a{
  width: 100%;
  margin: auto;
  padding: 20px;
  color: #fff;
  border-radius: 60px;
  font-size: 2rem;
  display: flex;
  line-height: 50px;
  justify-content: center;
}
.top img{
  object-fit: contain;
  /* height: 100%; */
  width: auto;
}
@media screen and (max-width: 768px){
  .top{
    width: 90%;
    margin: 0 auto;
    grid-template-columns: 1fr;
  }
  .top h2{
    font-size: 6.5vw;
    margin-bottom: 0;
  }
  .top .title{
    padding-right: 0;
  }
  .top .inquiry{
    margin-top: 50px;
  }
  .top .inquiry a{
    font-size: 1.5rem;
    padding: 10px;
  }
}
/* --- .top（KV）ここまで
----------------------------------------- */
/* --- 業務内容sectionここから
----------------------------------------- */
.business-content{
  margin-top: 100px;
}
.business-content .main-content{
  background-image: url(../img/buiness-content-bg.jpg);
  background-size: cover;
  margin-top: 50px;
}
.business-content .main-content div{
  padding: 30px;
}
.business-content .main-content h4{
  margin-top: 50px;
}
.business-content .main-content p{
  font-size: 1.6rem;
  line-height: 2;
  margin-top: 50px;
  text-align: justify;
}
@media screen and (max-width: 768px){
  .business-content .main-content {
    background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url(../img/buiness-content-bg.jpg);
    background-size: cover;
    padding-bottom: 30px;
  }
  .business-content .main-content {
    margin-top: 30px;
  }
  .business-content .main-content p{
    font-size: 1.2rem;
  }
}
/* --- 業務内容sectionここまで
----------------------------------------- */
/* --- 代表挨拶sectionここから
----------------------------------------- */
.top-message h4{
  margin-bottom: 70px;
}
.top-message .text{
  padding-left: 10%;
}
.top-photo{
  float: left;
  width: 50%;
  margin-right: 30px;
  margin-bottom: 30px;
}
.top-message-content .text{
  padding-left: 0;
  margin-left: 0;
}
@media screen and (max-width: 768px){
  .top-message-content{
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
  }
  .top-photo{
    width: 100%;
    float: none;
  }
  .top-message-content{
    width: 90%;
    margin: auto;
  }
}
/* --- 代表挨拶sectionここまで
----------------------------------------- */
/* --- 会社概要sectionここから
----------------------------------------- */
.company-profile .main-content{
  grid-template-columns: 1fr;
}
.company-profile-table{
  width: 100%;
  border: 1px solid #B3B3B3;
  border-collapse:collapse;
  text-align: left;
  font-size: 2rem;
}
.company-profile-table th{
  font-weight: normal;
}
.company-profile-table th,
.company-profile-table td{
  border: 1px solid #B3B3B3;
  padding: 50px;
}
.company-profile .info{
  margin-top: 20px;
}
.company-profile .info a{
  display: inline;
  background-color: transparent;
  margin-top: 30px;
  font-size: 2rem;
  border-bottom: 1px solid #000;
  width: auto;
}
@media screen and (max-width: 768px){
  .company-profile-table{
    width: 90%;
    margin: auto;
    border: none;
  }
  .company-profile-table tr{
    display: grid;
    grid-template-columns: 1fr;
  }
  .company-profile-table th,
  .company-profile-table td{
    border: none;
    padding: 20px 0;
    font-size: 1.5rem;
}
.company-profile-table th{
  padding-bottom: 0;
  font-weight: bold;
}
.company-profile-table td{
  padding-top: 5px;
  border-bottom: 1px solid #B3B3B3;
}
.company-profile .info {
  width: 90%;
  margin: 20px auto 0 auto;
}
.company-profile .info a{
  font-size: 1.2rem;
}
}
/* --- 会社概要sectionここまで
----------------------------------------- */
/* --- footerここから
----------------------------------------- */
footer{
  padding: 100px 0;
  display: flex;
  justify-content: space-between;
}
footer img{
  width: 200px;
  height: auto;
}
footer p{
  font-size: 1.2rem;
}
footer a{
  background-color: transparent;
}
footer a:hover{
  background-color: transparent;
}
@media screen and (max-width: 768px){
  footer{
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    padding: 100px 0 50px 0;
  }
  footer img{
    margin-bottom: 20px;
  }
  footer .affiliated-company{
    margin-top: 70px;
    text-align: center;
  }
}
/* --- footerここまで
----------------------------------------- */
/* --- お問い合わせsectionここから
----------------------------------------- */
.inquiry_section{
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 768px){
  .inquiry_section{
    width: 90%;
  }
}
.inquiry_section .section-title{
  margin-top: 100px;
  margin-bottom: 50px;
  grid-template-columns: 1fr;
}
.inquiry_section .section-title .title-text{
  margin-right: 0;
}

.inquiry_section table{
  width: 100%;
  font-size: 1.6rem;
}
.inquiry_section table tr{
  display: grid;
  grid-template-columns: 1fr;
}
.inquiry_section tr th{
  text-align: left;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 15px;
  line-height: 1.6rem;
  font-weight: normal;
  position: relative;
}
.inquiry_section tr th label.required::after{
  content: '必須';
  position: absolute;
  display: inline-block;
  background-color: #f00;
  color: #fff;
  margin-left: 10px;
  padding: 5px;
  font-size: 1rem;
  border-radius: 5px;
}
.inquiry_section tr td input{
  width: 100%;
  border-radius: 5px;
  appearance: none;
  border:1px solid #555;
  padding: 5px;
}
.inquiry_section tr td input{
  width: 100%;
}
.inquiry_section tr td textarea{
  border-radius: 5px;
  border:1px solid #555;
  resize: none;
  height: 300px;
  width: 100%;
  padding: 5px;
}
.inquiry_section button{
  margin: 30px auto 0 auto;
}
.inquiry_section button input[type="submit"]{
  width: 200px;
  height: 50px;
  background-color: #005FD2;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  color: #fff;
  border-radius: 5px;
  font-size: 1.6rem;
  }
  .inquiry_section button input[type="submit"]:hover{
    background-color: #003C8F;
  }
  .inquiry_section .submit_area{
    display: flex;
    justify-content: center;
  }
  @media screen and (max-width: 768px){
    .inquiry_section .section-title{
      width:100%;
    }
    .inquiry_section tr{
      font-size: 1.2rem;
    }
    .inquiry_section tr th{
      margin-top: 20px;
      margin-bottom: 10px;
    }
    .inquiry_section tr th label.required::after{
      font-size: 0.8rem;
    }
  }
/* --- お問い合わせsectionここまで
----------------------------------------- */