@charset "UTF-8";

/* ==== root ========================== */
:root {
  --color-black: #231815;
  --color-white: #ffffff;
  --color-primary: #0fff00;
  --color-subPrimary: #533fdf;
  --color-pink: #ff009d;

  --noto-sans: "Noto Sans JP", serif;
  --zen-kaku: "Zen Kaku Gothic New", serif;
  --helvetica: "Helvetica", sans-serif;
  --helvetica-b: "Helvetica-B", sans-serif;
}


/*================================================
 *  company
 ================================================*/
#subVisual {
  background-image: url(../../images/company/sub_bg.png);
}

#subVisual h2 {
  width: 31rem;
  top: 15rem;
  left: 19rem;
}

@media screen and (max-width:767px) {
  #subVisual {
    background-image: url(../../images/company/sub_bg_sp.png);
  }

  #subVisual h2 {
    top: 20rem;
    left: 4rem;
  }
}

/*================================================
 *  message
 ================================================*/
.message__txt {
  width: 48rem;
  padding-top: 17rem;
  margin: 0 auto;
}

.message__txt h2 span {
  background: var(--color-primary);
  display: block;
  font-size: 1.9rem;
  font-weight: 900;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.message__txt h2 {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 2rem;
}

.message__txt p {
  font-size: 1.4rem;
}

.message__img {
  position: relative;
  width: 42rem;
}

.message__img h3 {
  position: absolute;
  top: -4%;
  right: -46%;
  width: 34rem;
}

.message__img p {
  font-size: 1.4rem;
  margin-top: 1rem;
}



@media screen and (max-width:767px) {
  .message__txt {
    padding-top: 0;
  }

  .message__txt h2 {
    font-size: 3.7rem;
  }

  .message__img {
    margin-top: 6rem;
    width: 47rem;
    margin-right: auto;
  }

  .message__img h3 {
    top: -11%;
    right: -22%;
    width: 30rem;
  }

  .message__img p {
    font-size: 1.9rem;
    margin-left: 6rem;
  }

  .message__txt p {
    font-size: 1.9rem;
  }
}


/*================================================
 *  promise
 ================================================*/
#promise {
  background: var(--color-black);
  color: var(--color-white);
}

#promise h2 {
  margin-bottom: 10rem;
}

.promise__top--txt {
  width: 60rem;
}

.promise__top--txt h3 {
  font-size: 5rem;
  font-weight: 900;
  font-feature-settings: "palt";
  letter-spacing: 0;
}

.promise__top--txt p {
  font-size: 1.9rem;
  margin-top: 2rem;
  font-weight: 400;
}

.promise__top--slide {
  width: 39rem;
  padding-top: 14rem;
}


#promise ul {
  display: grid;
  gap: 7rem 3rem;
  grid-template-columns: repeat(3, 1fr);
  margin: 8rem 0 0;
}

#promise ul .num img {
  width: auto;
  height: 13rem;
  margin: 0 auto;
  max-width: unset;
}

#promise ul h4 {
  font-size: 1.7rem;
  padding: 1rem 0;
  text-align: center;
  color: var(--color-black);
  background: var(--color-primary);
  margin: 3rem 0 1rem;
  font-weight: bold;
}

#promise ul p:not(.num) {
  font-size: 1.4rem;
}



@media screen and (max-width:767px) {
  #promise h2 {
    margin-bottom: 5rem;
  }

  .promise__top--txt {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }

  .promise__top--slide {
    margin: 0 auto;
    padding-top: 4rem;
  }

  .promise__top--txt h3 {
    font-size: 3.7rem;
  }

  .promise__top--txt p {
    font-size: 1.9rem;
  }

  #promise ul {
    grid-template-columns: repeat(1, 1fr);
    width: 50rem;
    margin: 10rem auto 0;
  }

  #promise ul li {
    display: flex;
    align-items: start;
    gap: 2rem;
  }

  #promise ul .num img {
    height: 10rem;
  }

  #promise ul h4 {
    margin-top: 0;
    font-size: 1.9rem;
  }
  #promise ul p:not(.num) {
    font-size: 1.8rem;
  }

}

/*================================================
 *  strong__btn
 ================================================*/
#strong__btn {
  background: var(--color-black);
}

#strong__btn a p {
  background: var(--color-white);
  text-align: center;
  width: 50%;
  display: grid;
  place-content: center;
  position: relative;
  font-size: 1.8rem;
}

#strong__btn a p::before,
#strong__btn a p::after {
  position: absolute;
  content: "";
  width: 4.3rem;
  height: 4.3rem;
  top: 55%;
  right: 4rem;
  transform: translateY(-50%);
  transition: .4s;
}

#strong__btn a p::before {
  background: var(--color-black);
  border-radius: 1000px;
}

#strong__btn a p::after {
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../../images/company/strong_arrow.png);
}

#strong__btn a:hover p::after {
  right: 3rem;
}

#strong__btn a p img {
  width: 28rem;
  margin: 0 auto;
}

#strong__btn a>img {
  width: 50%;
}

@media screen and (max-width:767px) {
  #strong__btn {
    background: var(--color-white);
    padding: 6rem 0 0;
  }

  #strong__btn a {
    width: 55rem;
  }

  #strong__btn a p {
    width: 100%;
    padding: 3rem 0;
    background: var(--color-black);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
    gap: 2rem;
  }

  #strong__btn a p img {
    width: 20rem;
  }

  #strong__btn a p::after {
    background-image: url(../../images/company/strong_arrow_sp.png);
  }

  #strong__btn a:hover p::after {
    right: 4rem;
  }

  #strong__btn a>img {
    width: 100%;
  }
}



/*================================================
 *  department
 ================================================*/
#department ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 0.05rem solid #b3b5b5;
  margin-top: 4rem;
}

#department ul li {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  border-bottom: 0.05rem solid #b3b5b5;
}

#department ul li:nth-child(odd) {
  border-right: 0.05rem solid #b3b5b5;
}

#department ul li h4 {
  width: 15%;
  position: relative;
}


#department ul li h4 span {
  color: #b3b5b5;
  position: absolute;
  transform: rotate(90deg) translateX(50%);
  height: auto;
  top: 5%;
  left: 0;
  width: 100%;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 200;
  letter-spacing: 0.06em;
}

#department ul li .cnt {
  width: 85%;
  border-left: 0.05rem solid #b3b5b5;
}

#department ul li .cnt div {
  padding: 3rem;
}

#department ul li .cnt h3 {
  font-size: 2.2rem;
  margin: 2rem 0 1rem;
}

#department ul li p {
  font-size: 1.4rem;
}

@media screen and (max-width:767px) {
  #department ul {
    grid-template-columns: repeat(1, 1fr);
    border-top: none;
    width: 54rem;
    margin: 6rem auto 0;
  }

  #department ul li h4 {
    width: 100%;
    position: relative;
  }

  #department ul li {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    border-bottom: none;
    margin-bottom: 4rem;
  }

  #department ul li:last-child {
    margin-bottom: 0;
  }

  #department ul li:nth-child(odd) {
    border-right: none;
  }

  #department ul li .cnt div {
    padding: 0rem 2rem;
  }

  #department ul li h4 span {
    position: static;
    transform: rotate(0) translateX(0);
  }

  #department ul li .cnt {
    width: 100%;
    border-left: none;
    margin-top: 1rem;
  }
  #department ul li p {
    font-size: 1.9rem;
  }
}



/*================================================
 *  profile
 ================================================*/
#profile dl {
  font-size: 1.6rem;
  border-top: 0.035rem solid #231815;
  margin-top: 6rem;
}

#profile dl dt {
  width: 32%;
  padding: 4rem 0 4rem 5em;
  border-bottom: 0.035rem solid #231815;
  font-weight: 500;
  display: grid;
  place-content: center;
}

#profile dl dd {
  width: 68%;
  padding: 4rem 0;
  border-bottom: 0.035rem solid #231815;
  font-weight: 400;
}

@media screen and (max-width:767px) {
  #profile dl {
    width: 55rem;
  }

  #profile dl dt {
    width: 30%;
    padding: 3rem 0 3rem 3em;
    display: block;
  }

  #profile dl dd {
    width: 70%;
    padding: 3rem 0;
  }
}



/*================================================
 *  access
 ================================================*/
#access iframe {
  display: block;
  width: 100%;
  height: 33rem;
  margin-top: 6rem;
}

#access h3 {
  font-size: 2.2rem;
  margin: 2rem 0 1rem;
}

#access p {
  font-size: 1.7rem;
  font-weight: 400;
}

@media screen and (max-width:767px) {
  #access h3 {
    margin: 4rem 0 1rem;
  }

  #access h3,
  #access p {
    margin-left: 6rem;
  }
}