@charset "UTF-8";
/* CSS Document */
.header {
  /*width: 375px;*/
  height: 54px;
  background-color: #aebac3;
}
.header__navigation {
  display: none;
}
.header h1 {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 18px;
  color: #fff;
  padding-top: 11px;
}
/*header-pc*/
@media (min-width: 480px) {
  .header {
    /*width: 1440px;*/
    height: 100px;
    background-color: #aebac3;
  }
  .header__navigation {
    display: block;
  }
  .header h1 {
    font-size: 2.4rem;
    font-weight: 300;
    line-height: 22px;
    color: #fff;
    padding-top: 30px;
    margin-left: 24px;
  }
  .header__navigation ul {
    position: absolute;
    right: 200px;
    display: flex;
    gap: 50px;
    margin-top: -30px;
  }
  .header__navigation a {
    color: #fff;
    text-decoration: none;
    font-size: 1.6rem;
    max-width: 1040px;
    margin: 0 auto;
  }
  /*ゆっくり透明に*/
  .header__navigation a {
  transition: .3s;
  }

/*ホバー時に透明度50%*/
  .header__navigation a:hover {
  opacity: 0.5;
  }
}
/*Company-sp*/
.section_Company {
  /*width: 375px;*/
  background-color: #f7f7f7;
}
.section_Company p {
  color: #545458;
  font-size: 1.2rem;
  padding-top: 64px;
}
.section_Company h2 {
  font-size: 3.0rem;
  color: #545458;
  font-weight: 300;
  margin-top: -17px;
  border-bottom: solid 1px #d8d8d6;
}
.Company_list {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  margin-top: 150px;
}
.Company_list.fade-in {
  animation-name: fadeInAnime; /*1で解説*/
  animation-fill-mode: forwards; /*2で解説*/
  animation-duration: 3s; /*3で解説*/
  animation-iteration-count: 1; /*4で解説*/
  animation-timing-function: ease; /*5で解説*/
  animation-direction: normal; /*7で解説*/
}
/*1で解説*/
@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.Company_list dt {
  font-size: 1.2rem;
  color: #545458;
  flex-basis: 15%;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  white-space: nowrap;
  border-bottom: 1px solid #d8d8d6;
}
.Company_list dd {
  font-size: 1.2rem;
  color: #545458;
  flex-basis: 59%;
  padding-top: 20px;
  padding-left: 40px;
  padding-right: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #d8d8d6;
  text-decoration: none;
}
/*Company-pc*/
@media (min-width: 480px) {
  .section_Company {
    /*width: 1440px;*/
    background-color: #f7f7f7;
  }
  .section_Company p {
    font-size: 2rem;
    padding-top: 125px;
  }
  .section_Company h2 {
    font-size: 6rem;
    font-weight: 300;
    margin-top: -17px;
    border-bottom: solid 1px #d8d8d6;
    width: 1040px;
  }
  .Company_list {
    display: flex;
    flex-flow: row wrap;
    width: 50%;
    margin: 150px auto 0;
  }
  .Company_list dt {
    font-size: 1.6rem;
    flex-basis: 15%;
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    white-space: nowrap;
    border-bottom: 1px solid #d8d8d6;
  }
  .Company_list dd {
    font-size: 1.6rem;
    flex-basis: 59%;
    padding-top: 20px;
    padding-left: 40px;
    padding-right: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #d8d8d6;
  }
}
/*Representative-sp*/
.section_Representative {
  background-color: #f7f7f7;
  padding-bottom: 100px;
}
img.represntative_pc {
  display: none;
}
.represntative_sp {
  width: 260px;
  height: 300px;
}
.represntative_sp.fade-in {
  animation-name: fadeInAnime; /*1で解説*/
  animation-fill-mode: forwards; /*2で解説*/
  animation-duration: 3s; /*3で解説*/
  animation-iteration-count: 1; /*4で解説*/
  animation-timing-function: ease; /*5で解説*/
  animation-direction: normal; /*7で解説*/
}
/*1で解説*/
@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.Representative-content {
  writing-mode: vertical-rl;
  display: flex;
  margin-top: -60px;
}
p.Representative_ja {
  font-size: 1.2rem;
  color: #545458;
  transform: translate(60px, 215px);
}
_::-webkit-full-page-media, _:future, :root .Representative_ja {
  writing-mode: vertical-rl;
}
.section_Representative h2 {
  font-size: 3rem;
  color: #545458;
  font-weight: 300;
  transform: translate(55px, 190px);
}
.name {
  font-size: 1.4rem;
  color: #545458;
  margin-top: 10px;
}
.furigana {
  color: #545458;
  font-size: 1rem;
}
.name.fade-in {
  animation-name: fadeInAnime; /*1で解説*/
  animation-fill-mode: forwards; /*2で解説*/
  animation-duration: 3s; /*3で解説*/
  animation-iteration-count: 1; /*4で解説*/
  animation-timing-function: ease; /*5で解説*/
  animation-direction: normal; /*7で解説*/
}
/*1で解説*/
@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.furigana.fade-in {
  animation-name: fadeInAnime; /*1で解説*/
  animation-fill-mode: forwards; /*2で解説*/
  animation-duration: 3s; /*3で解説*/
  animation-iteration-count: 1; /*4で解説*/
  animation-timing-function: ease; /*5で解説*/
  animation-direction: normal; /*7で解説*/
}
/*1で解説*/
@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.section_Representative h3 {
  font-size: 1.4rem;
  color: #545458;
  margin-top: 40px;
  border-bottom: solid 1px #d8d8d6;
}
.section_Representative h3.fade-in {
  animation-name: fadeInAnime; /*1で解説*/
  animation-fill-mode: forwards; /*2で解説*/
  animation-duration: 3s; /*3で解説*/
  animation-iteration-count: 1; /*4で解説*/
  animation-timing-function: ease; /*5で解説*/
  animation-direction: normal; /*7で解説*/
}
/*1で解説*/
@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.Repres
.Representative_list {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  margin-top: 10px;
}
.Representative_list.fade-in {
  animation-name: fadeInAnime; /*1で解説*/
  animation-fill-mode: forwards; /*2で解説*/
  animation-duration: 3s; /*3で解説*/
  animation-iteration-count: 1; /*4で解説*/
  animation-timing-function: ease; /*5で解説*/
  animation-direction: normal; /*7で解説*/
}
/*1で解説*/
@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.Representative_list dt {
  font-size: 1.2rem;
  color: #545458;
  flex-basis: 15%;
  padding-right: 20px;
  white-space: nowrap;
}
.Representative_list dd {
  font-size: 1.2rem;
  color: #545458;
  flex-basis: 59%;
}
/*Representative-pc*/
@media (min-width: 480px) {
  img.represntative_sp {
    display: none;
  }
  img.represntative_pc {
    display: block;
    width: 500px;
  }
  img.represntative_pc.fade-in {
    animation-name: fadeInAnime; /*1で解説*/
    animation-fill-mode: forwards; /*2で解説*/
    animation-duration: 3s; /*3で解説*/
    animation-iteration-count: 1; /*4で解説*/
    animation-timing-function: ease; /*5で解説*/
    animation-direction: normal; /*7で解説*/
  }
  .Representative-content {
    margin: 0 auto;
  }
  .name {
    font-size: 1.6rem;
    text-align: center;
    margin-top: 10px;
  }
  .furigana {
  color: #545458;
  font-size: 1rem;
  text-align: center;
}
  p.Representative_ja {
  font-size: 1.2rem;
  color: #545458;
  transform: translate(60px, 215px);
}
_::-webkit-full-page-media, _:future, :root p.Representative_ja {
  
}
.section_Representative h2 {
  font-size: 3rem;
  color: #545458;
  font-weight: 300;
  transform: translate(55px, 190px);
}
  _::-webkit-full-page-media, _:future, :root .section_Representative h2 {
  font-size: 3rem;
  color: #545458;
  font-weight: 300;
  transform: translate(55px, 205px);
}
  .section_Representative h3 {
    font-size: 1.4rem;
    font-weight: 300;
    margin-top: 40px;
    border-bottom: solid 1px #d8d8d6;
    width: 41%;
    margin-left: 343px;
  }
  .Representative_list {
    display: flex;
    flex-flow: row wrap;
    width: 34%;
    margin: 10px auto 0;
  }
  .Representative_list dd {
    font-size: 1.4rem;
    flex-basis: 59%;
    white-space: nowrap;
  }
  .Representative_list dt {
    font-size: 1.4rem;
    flex-basis: 15%;
    padding-right: 20px;
    white-space: nowrap;
  }
}