@charset "utf-8";
/**********************************************
 * 
 * COMPANY
 *
***********************************************/
.base .Title_lv2 {
  margin: 100px 0 40px;
}

.address-box {
  display: flex;
}

.address-box + .address-box {
  margin-top: 60px;
}

.address-box > .item {
  width: calc( (100% - 30px) / 2 );
}

.address-box > .item:first-child {
  margin-right: 30px;
}

.address-title {
  display: block;
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 2.8rem;
}

.address-text {
  display: block;
  margin-bottom: 70px;
  line-height: 2;
}

.address-box figure img {
  width: 100%;
  height: auto;
}

.s-group-logo {
  margin-bottom: 30px;
}

.group {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}

.group > .item {
  width: calc( ( 100% - 30px ) / 2 );
  height: 340px;
  margin-right: 30px;
  margin-bottom: 40px;
  padding: 30px;
  background: #f0f7ea;
  border-radius: 20px;
}

.group > .item:nth-child(2),
.group > .item:nth-child(5) {
  margin-right: 0;
}

.group > .item:nth-child(3) {
  margin: 0 300px 40px;
}

.group > .item .wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 280px;
  height: 100%;
  padding: 30px;
  background: #fff;
  border-radius: 20px;
}

.group > .item a {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.group > .item a::after {
  content: '\f08e';
  position: absolute;
  top: 0;
  right: -34px;
  bottom: 0;
  width: 18px;
  height: 23px;
  margin: auto;
  color: #ccc;
  font-weight: 400;
  font-family: 'Font Awesome 6 Pro';
  font-size: 1.8rem;
}

@media (max-width: 767px) {

  .address-box {
    flex-direction: column;
  }

  .address-box > .item {
    width: 100%;
  }

  .address-box > .item:first-child {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .address-text {
    margin-bottom: 20px;
  }

  .group {
    flex-direction: column;
  }

  .group > .item {
    width: 100%;
    margin: 0 0 30px;
    padding: 15px;
  }
  
  .group > .item:nth-child(3) {
    margin: 0 0 30px;
  }

  .group > .item .wrap {
    padding: 15px;
  }

  .group > .item img {
    width: 90%;
  }

  .group > .item a::after {
    right: 0;
  }
}