@charset "UTF-8";
/* PC */
/* 全体背景ピンク */
body {
  background-color: #eee3e4;
  margin: 0;
  padding: 0;
}
/* セクション：背景画像付き */
/* セクション全体（共通） */
.company-section {
  position: relative;
  height: 50vh;
  background-color: #eee3e4;
  display: flex;
  align-items: flex-start;
  padding: 0;
  margin: 10% 0;
}
.company-section2 {
  background-color: #eee3e4;
  margin: 10% 0;
}
/* 画像を背景として配置（reverseなしは右寄せ、reverseありは左寄せ） */
.company-section:not(.reverse) {
  background-image: linear-gradient(to right, #eee3e4 30%, transparent 30%), url("../img/company/company1.png");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}
.company-section.reverse {
  background-image: linear-gradient(to left, #eee3e4 30%, transparent 30%), url("../img/company/company2.png");
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  flex-direction: row-reverse;
}
/* テキストブロック */
.company-text {
  z-index: 2;
  padding-top: 5vh;
  padding-left: 5%;
  padding-right: 5%;
  width: 70%;
}
/* 小見出し */
.company-sub {
  font-size: 1rem;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 10px;
}
/* 大見出し */
.h1-company {
  font-size: 7rem;
  color: #fff;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  margin: 0;
  line-height: 1.1;
}
.h2-company {
  font-size: 7rem;
  color: #fff;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  margin: 0;
  line-height: 1.1;
}
.h3-company {
  font-size: 7rem;
  color: #fff;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  margin: 0;
  line-height: 1.1;
}
/* テキストエリア */
.company-text {
  z-index: 2;
  padding-top: 5vh;
  text-align: left;
  padding-left: 20%;
  font-weight: 500;
}
.company-text-reverse {
  z-index: 2;
  padding-top: 5vh;
  text-align: right;
  padding-right: 10%;
}
.company-text-access {
  z-index: 2;
  padding-top: 5vh;
  text-align: left;
  padding-left: 20%;
}
/* 小見出し */
.company-sub {
  font-size: 2rem;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 10px;
}
/* COMPANY タイトル */
.h1-company {
  font-size: 7rem;
  color: #fff;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  margin: 0;
  line-height: 1.1;
}
.company-table-section {
  width: 100%;
  padding: 5% 0;
  display: flex;
  justify-content: center;
}
.company-info-table {
  width: 60%;
  border-collapse: collapse;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  color: #333;
}
.company-info-table th, .company-info-table td {
  padding: 15px 20px;
  border-bottom: 1px solid #ccc;
  vertical-align: top;
  text-align: left;
}
.company-info-table th {
  font-weight: 500;
  width: 25%;
  white-space: nowrap;
  padding-left: 10%;
}
/* タブレット対応（画面幅1024px以下） */
@media screen and (max-width: 1024px) {
  .company-section:not(.reverse) {
    background-image: linear-gradient(to right, transparent 30%, transparent 30%), url(../img/company/company1.png);
    background-size: 660px;
    background-position: right;
    background-repeat: no-repeat;
  }
  .company-section.reverse {
    background-image: linear-gradient(to left, transparent 30%, transparent 30%), url("../img/company/company2.png");
    background-size: 660px;
    background-position: left;
    background-repeat: no-repeat;
    flex-direction: row-reverse;
  }
  .company-section {
    position: relative;
    height: 25vh;
    background-color: #eee3e4;
    display: flex;
    align-items: flex-start;
    padding: 0;
    margin: 10% 0;
  }
  .company-text {
    z-index: 2;
    padding-top: 5vh;
    text-align: left;
    padding-left: 12%;
  }
  .h2-company {
    font-size: 6rem;
    color: #fff;
    font-weight: bold;
    font-family: "Roboto", sans-serif;
    margin: 0;
    line-height: 1.1;
  }
}
/* タブレット対応（画面幅768px以下） */
@media screen and (max-width: 768px) {
  .company-section:not(.reverse) {
    background-image: linear-gradient(to right, transparent 30%, transparent 30%), url(../img/company/company1.png);
    background-size: 535px;
    background-position: right;
    background-repeat: no-repeat;
  }
  .company-section.reverse {
    background-image: linear-gradient(to left, transparent 30%, transparent 30%), url(../img/company/company2.png);
    background-size: 535px;
    background-position: left;
    background-repeat: no-repeat;
    flex-direction: row-reverse;
  }
  .company-section {
    position: relative;
    height: 25vh;
    background-color: #eee3e4;
    display: flex;
    align-items: flex-start;
    padding: 0;
    margin: 10% 0;
  }
  .company-text {
    z-index: 2;
    padding-top: 5vh;
    text-align: left;
    padding-left: 5%;
  }
  /* 大見出し */
  .h1-company {
    font-size: 5rem;
    color: #fff;
    font-weight: bold;
    font-family: "Roboto", sans-serif;
    margin: 0;
    line-height: 1.1;
  }
  .h2-company {
    font-size: 4rem;
    color: #fff;
    font-weight: bold;
    font-family: "Roboto", sans-serif;
    margin: 0;
    line-height: 1.1;
  }
}
/* スマホ対応（画面幅480px以下） */
@media screen and (max-width: 480px) {
  .company-section {
    position: relative;
    height: 19vh;
    background-color: #eee3e4;
    display: flex;
    align-items: flex-start;
    padding: 0;
    margin: 10% 0;
  }
  .company-section:not(.reverse) {
    background-image: linear-gradient(to right, transparent 30%, transparent 30%), url("../img/company/company1.png");
    background-size: 270px;
    background-position: right;
    background-repeat: no-repeat;
  }
  .company-section.reverse {
    background-image: linear-gradient(to left, transparent 30%, transparent 30%), url("../img/company/company2.png");
    background-size: 270px;
    background-position: left;
    background-repeat: no-repeat;
    flex-direction: row-reverse;
  }
  /* 大見出し */
  .h1-company {
    font-size: 3rem;
    color: #fff;
    font-weight: bold;
    font-family: "Roboto", sans-serif;
    margin: 0;
    line-height: 1.1;
  }
  .h2-company {
    font-size: 3rem;
    color: #fff;
    font-weight: bold;
    font-family: "Roboto", sans-serif;
    margin: 0;
    line-height: 1.1;
  }
  .h3-company {
    font-size: 3rem;
    color: #fff;
    font-weight: bold;
    font-family: "Roboto", sans-serif;
    margin: 0;
    line-height: 1.1;
  }
  /* 小見出し */
  .company-sub {
    font-size: 1rem;
    color: #333;
    font-family: "Noto Sans JP", sans-serif;
    margin-bottom: 10px;
  }
  /* テキストエリア */
  .company-text {
    z-index: 2;
    padding-top: 2%;
    text-align: left;
    padding-left: 3%;
  }
  .company-text-reverse {
    z-index: 2;
    padding-top: 0;
    text-align: right;
    padding-right: 10%;
  }
  .company-info-table {
    width: 94%;
    border-collapse: collapse;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1rem;
    color: #333;
  }
  iframe {
    width: 90%;
  }
}