@charset "utf-8";

.basic-page{
  padding: 4rem 0 0;
}
@media (max-width: 640px){
  .basic-page{
    padding: 2rem 0 0;
  }
}



/* 会社概要 */
.outline{
  width: 100%;
  max-width: 976px;
  margin: 0 auto;
}
@media (max-width: 640px){
  .outline{
    padding: 0 1rem;
  }
}

.outline__dl{
  display: grid;
  grid-template-columns: 1fr 2fr;
  width: 100%;
  margin: 4rem auto 0;
}
@media (max-width: 640px){
  .outline__dl{
    display: block;
    margin: 2rem auto 0;
  }
}

.outline__dl > dt{
  padding: 2rem;
  border-top: solid 1px #c2c2c2;
    font-weight: bold;
}
@media (max-width: 640px){
  .outline__dl > dt{
    padding: 1rem 1rem 0 1rem;
    border-top: solid 1px #c2c2c2;
    font-weight: bold;
  }
}

.outline__dl > dt:last-of-type{
  border-bottom: solid 1px #c2c2c2;
}
@media (max-width: 640px){
  .outline__dl > dt:last-of-type{
    border-bottom: none;
  }
}

.outline__dl > dd{
  padding: 2rem;
  border-top: solid 1px #e8e8e8;
}
@media (max-width: 640px){
  .outline__dl > dd{
    padding: 0 1rem 1rem 1rem;
    border-top: none;
  }
}

.outline__dl > dd:last-of-type{
  border-bottom: solid 1px #c2c2c2;
}

.btn__blue{
  margin: 4rem auto 0;
}

/* Experience */
.experience{
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-height: 1000px;
  color: #fff;
  background: url(../images/experience-bg.jpg) no-repeat bottom 0 right 0;
  background-size: cover;
}
@media (max-width: 640px){
.experience{
  padding: 4rem 2rem ;
}
}


.experience .section__header::after{
  background-color: #fff;
}

.experience-wrap{
  width: 100%;
  max-width: 1020px;
  line-height: 2.25;
}

.experience__copy{
  margin: 2.5rem 0;
} 


.bx-wrapper{
  display: none;
}
@media (max-width: 640px){
.bx-wrapper{
  margin: 0;
  border: none;
  background: none;
  box-shadow: none;
  display: block;
}
}

.experience .experience-wrap .bx-wrapper img{
  width: 50vw;
  margin: 0 auto 24px;
}

.experience .experience-wrap .bx-wrapper .bx-controls-direction a{
  top: 32vw;
}

.experience .experience-wrap .bx-wrapper .bx-next{
  right: 0;
  background: none;
}

.experience .experience-wrap .bx-wrapper .bx-next::before{
  position: absolute;
  top: 0;
  right: 4px;
  display: block;
  width: 18px;
  height: 18px;
  content: "";
  -webkit-transform: rotate(45deg);
          transform: rotate(-45deg) translate(0%, 0%);
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.experience .experience-wrap .bx-wrapper .bx-prev{
  left: 0;
  background: none;
}

.experience .experience-wrap .bx-wrapper .bx-prev::before{
  position: absolute;
  top: 0;
  left: 4px;
  display: block;
  width: 18px;
  height: 18px;
  content: "";
  -webkit-transform: rotate(45deg);
          transform: rotate(135deg) translate(0%, 0%);
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.experience .experience-wrap p{
  font-size: 1.25rem;
}

.experience__text{
  display: flex;
  justify-content: space-between;
  margin: 1rem 0 0 0;
}

.experience__text p{
  width: calc(100% / 3);
}

.text-center{
  text-align: center;
}



/* 沿革 */
.enkaku{
  width: 100%;
  max-width: 976px;
  margin: 0 auto;
}
@media (max-width: 640px){
  .enkaku{
    padding: 0 1rem;
  }
}

.enkaku__dl{
  margin: 4rem auto 0;
}

.enkaku__dl__item{
  display: grid;
  grid-template-columns: 1fr 4fr;
  padding: 2rem;
  border-top: solid 1px #e8e8e8;
}
@media (max-width: 640px){
  .enkaku__dl__item{
    grid-template-columns: 1fr 3fr;
    gap: 0 1rem;
    padding: 1.5rem .5rem;
  }
}

.enkaku__dl__item:last-of-type{
  border-bottom: solid 1px #e8e8e8;
}

.enkaku__dl__item > dt{
  grid-row: 1 /3;
  color: #004da2;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1;
}
@media (max-width: 640px){
  .enkaku__dl__item > dt{
    grid-row: 1 / 2;
    font-size: 1.5rem;
  }
}

@media (max-width: 640px){
  .enkaku__dl__item > dd:nth-of-type(2){
    grid-column: 2/3;
    grid-row: 1 / 4;
  }
}



/* WhyAmorton */
.why{
  position: relative;
}

.why__content:nth-child(odd) .why-wrap .body{
  left: -190px;
}

.why__content{
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 4rem auto 0;
}

.why__figure{
  width: fit-content;
}

.why__body{
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 720px;
  min-height: 360px;
  margin: -240px 0 0 auto;
  padding: 5rem;
  background-color: rgba(255,255,255,.8);
}
@media (max-width: 640px){
.why__body {
    min-height: auto;
    margin: -5rem 0px 0 auto;
    padding: 2rem 1rem;
}}

.why__body__title{
  font-size: 2rem;
  font-weight: bold;
}

.why__body p{
  margin: 1.5rem 0 0 0;
  font-size: 1.25rem;
  line-height: 2;
}

.why__content:nth-of-type(even) .why__figure{
  margin-left: auto;
}

.why__content:nth-of-type(even) .why__body{
  margin: -240px auto 0 0;
}
@media (max-width: 640px){
.why__content:nth-of-type(even) .why__body{
  margin: -5rem auto 0 0;
}
}