body {
  width: 100%;
  max-width: 128rem;
  font-family: var(--NotoSans);
  font-size: 1.6rem;
  color: #655657;
  overflow-x: hidden;
}


/*---------------
Mainvisual
----------------*/
.mainvisual {
  max-width: 128rem;
  height: 40rem;
  margin-bottom: 4.6rem;
}

.mainvisual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mainvisual .pc {
  display: block;
}

.mainvisual .sp {
  display: none;
}

/*---------------
Background
----------------*/
/* background */
.background {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: -1;
  background-color: #F0E0E2;
}

.bg_animal {
  width: 24rem;
  height: 21rem;
  position: absolute;
  bottom: 38rem;
  left: 18.3rem;
}

.bg_half_circle {
  width: 100%;
  position: absolute;
  bottom: 0;
}


/*--------------------
Access Process 共通部分
---------------------*/

.title {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 30px;

}

.title_en {
  font-weight: bold;
  font-size: 30px;
  color: #000000;
}

.title_ja {
  font-weight: bold;
  font-size: 15px;
  color: #000000;
}

.title_en,
.title_ja {
  line-height: 1;
}


/*---------------
Access
----------------*/
.access {
  margin-left: 9rem;

}

.title_2 {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 3rem;
  color: #000000;
}

.map {
  width: 111rem;
  height: 38.5rem;
  border-radius: 8rem;
  overflow: hidden;
  margin-bottom: 3rem;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.add {
  display: flex;
  gap: 3rem;
}

.icon_house {
  width: 3rem;
  height: 2.571rem;

}

.address {
  font-weight: bold;
  line-height: 2, 4rem;
    margin-bottom: 12.5rem;
    /* 追加CSS */
    white-space: pre-line;
}

/*---------------
Contact
----------------*/
.contact {
  margin-left: 9rem;

}

.contact_text {
  color: #000000;
  font-weight: 500;
  padding-bottom: 1.5rem;
}

/*---------------
Line Button
----------------*/
.line_button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32.2rem;
  height: 9.1rem;
  border-radius: 4.6rem;
  background-color: #02B902;
  color: #FFFFFF;
  gap: 6.5rem;
  position: relative;
  cursor: pointer;
}

.line_text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.line_text_s {
  text-align: center;
  margin: 0 auto;
}

.line_text_l {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin: 0 auto;
}

.arrow {
  position: absolute;
  right: 3rem;
  width: 0;
  height: 0;
  border-top: 1.35rem solid transparent;
  border-bottom: 1.35rem solid transparent;
  border-left: 1.7rem solid #fff;
  z-index: 3;
}

.line_link {
  display: inline-block;
  margin-bottom: 5rem;
  cursor: default;
}

/*---------------
SP
----------------*/
/* 画面幅が699.98px以下の時の変更 */
@media screen and (max-width: 699.98px) {

  body {
    margin: 0;
    padding: 0;
    max-width: 37.5rem;
    /* 最大幅 */
    width: 100%;
    /* ビューポート幅に合わせる */
    box-sizing: border-box;
  }

  /*---------------
  Mainvisual_SP
  ----------------*/
  .mainvisual {
    width: 37.5rem;
    height: 40rem;
    object-fit: cover;
    object-position: center;
    overflow: hidden;
    margin-bottom: 2.5rem;
  }

  .mainvisual .pc {
    display: none;
  }

  .mainvisual .sp {
    display: block;
  }

  /*---------------
  Bckground_SP
  ----------------*/
  .bg_animal {
    width: 18rem;
    height: 15.8rem;
    top: 14.4rem;
    left: 0.7rem;
  }

  .bg_half_circle {
    width: 100%;
    height: 18rem;
    top: 26.5rem;
  }

  .white_rectangle {
    background-color: #fff;
    width: 100%;
    height: 40rem;
    position: relative;
  }

  /*---------------
  Access_SP
  ----------------*/
  .access .title_2 {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    color: #000000;
  }

  .title_en {
    font-weight: bold;
    font-size: 2.5rem;
    color: #000000;
  }

  .access {
    margin-left: 2rem;
  }

  .map {
    width: 33.5rem;
    height: 38.5rem;
    border-radius: 4rem;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
    margin-bottom: 1.5rem;
  }
  .add {
    gap: 1rem;
  }

  .address{
        margin-bottom: 7rem;
  }

  .line_link {
    display: flex;
    justify-content: flex-end;
    width: 100%;
  }

  .line_button {
    margin-right: 2rem;
    margin-bottom: 5rem;
  }

  /*---------------
  Contact_SP
  ----------------*/
  .contact {
    margin-left: 2rem;

  }
}