@charset "UTF-8";

:root {
  /* 色管理用の変数 */
  --white-color: #fff;
  --black-color: #001c2b;
  --gray-color: #fafafa;
  --gray-color02: #ccc;
  --gray-color03: #f2f2f2;
  --gray-color04: #707070;
  --primary-color: #DAF5FF;
  --accent-color: #EC709A;
}

:root {
  --content-width-sm: 800px;
  --content-width: 936px;
  --content-width-lg: 1080px;
}

:root {
  --z-index-back: -1;
  --z-index-default: 1;
  --z-index-page-top: 50;
  --z-index-header: 100;
  --z-index-menu: 150;
  --z-index-modal: 200;
}

body {
  background-color: var(--primary-color);
  color: var(--black-color);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.1em;
  overflow-x: hidden;
}

/* ---------- utility ---------- */

@media screen and (min-width: 375px) {
  .u_sm-dn {
    display: none;
  }
}

@media screen and (min-width: 1080px) {
  .u_lg-dn {
    display: none;
  }
}

/* ---------- layout ---------- */
.l_container-sm,
.l_container-lg,
.l_container {
  margin-left: auto;
  margin-right: auto;
}

.l_contents_titile {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.l_footer-copyright {
  text-align: center;
  margin-top: 64px;
}

.l_footer-copyright_txt {
  font-size: 10px;
  letter-spacing: 0;
}

@media screen and (min-width: 1080px) {
  .l_footer-copyright_txt {
    font-size: 13px;
  }
}

/*---------- module ----------*/

.m_btn-wrapper {
  width: 220px;
  height: 52px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 1080px) {
  .m_btn-wrapper {
    width: 245px;
    height: 72px;
  }
}

.m_btn {
  width: 100%;
  height: 100%;
  border-radius: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.m_btn__more {
  color: var(--white-color);
  font-size: 13px;
  font-weight: bold;
  background: var(--accent-color);
  text-align: center;
  line-height: 16px;
  cursor: pointer;
}

@media screen and (min-width: 1080px) {
  .m_btn__more {
    font-size: 16px;
    line-height: 20px;
  }
}

.m_section_title {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  position: relative;
  white-space: nowrap;
}

@media screen and (min-width: 1080px) {
  .m_section_title {
    font-size: 32px;
    top: 15px;
  }
}

.m_section_title:before {
  width: 100%;
  font-size: 12px;
  font-weight: normal;
  color: var(--accent-color);
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-index-default);
  letter-spacing: 0.3em;
  text-align: center;
}

@media screen and (min-width: 1080px) {
    .m_section_title:before {
      font-size: 28px;
      bottom: 50px;
    }
  }

.section_title_img {
    width: 80px; 
}

@media screen and (min-width: 1080px) {
    .section_title_img {
        width: 200px; 
        margin: 0 50px;
    }
}


.m_section_title__about::before {
    content: "ABOUT";
  }
  
.m_section_title__menu::before {
    content: "MENU";
}
  
.m_section_title__guide::before {
    content: "VISIT GUIDE";
}
  
.m_section_title__location::before {
    content: "LOCATION";
}

.m_underline {
    text-decoration:underline;
}


/*---------- about ----------*/

@media screen and (min-width: 1080px) {
    .about_contents {
        display: flex;
        flex-wrap: wrap; /* 2行にするために折り返し */
        justify-content: center; /* 中央寄せ */
        align-items: center;
    }
    
    .about_txts1, 
    .about_txts2, 
    .slider1, 
    .slider2 {
        width: calc(50% - 10px); /* 2列にする */
    }
}

.about_body {
    margin-top: 30px;
  }
  
.about_heading {
    font-size: 12px;
    font-weight: bold;
    text-align: center;
  }

@media screen and (min-width: 1080px) {
    .about_heading {
        font-size: 18px;
      }
}

.about_desc {
    margin-top: 50px;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
}

@media screen and (min-width: 1080px) {
  .about_desc {
    font-size: 18px;
    margin-top: 0;
  }
}

.slider1 {
    margin-top: 30px;
}

.slider2 {
    display: none;
}

@media screen and (min-width: 1080px) {
  .slider2 {
    display: block;
  }
}

.about_btn-wrapper {
    margin-top: 22px;
  }

  @media screen and (min-width: 1080px) {
    .about_btn-wrapper {
        margin-top: 30px;
    }
  }


/*---------- menu ----------*/

.menu_img-wrapper {
    margin: 30px 8px 0 8px;
}

@media screen and (min-width: 1080px) {
  .menu_container {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .menu2_img {
    max-width: 1000px;
  }
}

/*---------- guide ----------*/

@media screen and (min-width: 1080px) {
    .guide_item_wrapper {
      display: flex;
      flex-direction: column; /* 縦並びにする */
      gap: 20px; /* アイテム間の余白 */
      width: 100%; /* 横幅を最大に */
      margin-top: 80px;
    }
  }

.guide_btn-wrapper {
    width: 220px;
    height: 52px;
    margin-left: auto;
    margin-right: auto;
  }

.guide_btn__more {
    color: var(--white-color);
    font-size: 13px;
    font-weight: bold;
    background: var(--accent-color);
    text-align: center;
    line-height: 16px;
    cursor: pointer;
  }
  
  @media screen and (min-width: 1080px) {
    .guide_btn__more {
      font-size: 20px;
      width: 300px;
      height: 65px;
    }
  }

.guide_contact {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto; 
    padding: 0 20px;
    margin-bottom: 40px;
}

@media screen and (min-width: 1080px) {
  .guide_contact {
    gap: 100px;
  }
}

@media screen and (min-width: 1080px) {
    .guide_img-wrapper {
        display: flex;       /* 横並びにする */
        align-items: center; /* 縦方向の中央揃え */
        gap: 10px;          /* アイコンとテキストの間隔 */
    }
}

.guide_line_img {
    width: 52px;
}

@media screen and (min-width: 1080px) {
    .guide_line_img {
        width: 65px;
    }
}

.guide_line_txts {
    display: none;
}

@media screen and (min-width: 1080px) {
  .guide_line_txts {
    display: block;
    font-size: 20px;
    font-weight: bold;
    white-space: nowrap;
}
}

.guide_item {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
}

@media screen and (min-width: 1080px) {
  .guide_item {
    gap: 120px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    width: 800px;
  }
}

.guide_item_img {
    width: 120px;
    position: relative;
    left: 40%;
    transform: translateX(-50%);
}

@media screen and (min-width: 1080px) {
    .guide_item_img {
        width: 180px;
        position: static; /* 位置指定を無効化 */
        left: auto;       /* left をリセット */
        transform: none;  /* transform をリセット */
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.guide_item_title {
    font-size: 16px;
    font-weight: bold;
}

@media screen and (min-width: 1080px) {
    .guide_item_title {
        font-size: 26px;
        display: flex;
        align-items: center;
    }
}

.guide_item_txt {
    font-size: 12px;
    font-weight: bold;
    margin-right: 10px;
}

@media screen and (min-width: 1080px) {
    .guide_item_txt {
        font-size: 18px;
    }
}

@media screen and (min-width: 1080px) {
  .guide_item-notice_wrapper {
    text-align: center;
  }
}

.guide_item-notice {
    display: grid;
    padding: 32px;
    align-items: center;
}

@media screen and (min-width: 1080px) {
  .guide_item-notice {
    margin-top: 40px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    width: 1000px;
  }
}

.guide_item-notice_title {
    font-size: 14px;
    font-weight: bold;
}

@media screen and (min-width: 1080px) {
  .guide_item-notice_title {
    font-size: 20px;
    margin-left: 50px;
  }
}

.guide_item-notice_txt {
    font-size: 10px;
    font-weight: bold;
    margin-top: 10px;
}

@media screen and (min-width: 1080px) {
    .guide_item-notice_txt {
        font-size: 16px;
        margin-left: 50px;
    }
}

/*---------- location ----------*/

.location_contents_wrapper {
    display: grid;
    grid-template-columns: 1fr; /* 1カラム */
    grid-template-rows: auto auto auto; /* 3行レイアウト */
    gap: 20px; /* 適宜調整 */
    justify-items: center; /* 各要素を中央揃え */
    max-width: 1000px; /* 任意で幅調整 */
    margin: 0 auto; /* 中央寄せ */
}

@media screen and (min-width: 1080px) {
    .location_contents_wrapper {
        grid-template-columns: 1fr 1fr; /* 2列レイアウト */
        grid-template-rows: auto auto auto; /* 3行 */
        gap: 40px;
    }

    /* 1行目: ロゴ + サロン情報 */
    .location_logo_img-wrapper {
        grid-column: 1; /* 1列目 */
        grid-row: 1; /* 1行目 */
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .location_salon {
        grid-column: 2; /* 2列目 */
        grid-row: 1; /* 1行目 */
    }

    /* 2行目: マップ + 店舗画像 */
    .location_map {
        grid-column: 1; /* 1列目 */
        grid-row: 2; /* 2行目 */
    }

    .location_img-wrapper {
        grid-column: 2; /* 2列目 */
        grid-row: 2; /* 2行目 */
        display: flex;
        justify-content: center;
    }

    /* 3行目: 動物取扱業の登録情報 */
    .location_salon2 {
        grid-column: 1 / span 2; /* 全幅 */
        grid-row: 3; /* 3行目 */
        display: flex;
        justify-content: center;
        font-size: 16px;
    }
}

.location_logo_img-wrapper {
    display: flex;
    justify-content: center;
    text-align: center;
    width: 117px;
    margin: 0 auto; 
}

@media screen and (min-width: 1080px) {
  .location_logo_img-wrapper {
    width: 270px;
  }
}

.location_salon {
    display: grid;
    padding: 0 32px;
    justify-content: center;
}

.location_title {
    font-size: 14px;
    font-weight: bold;
    margin-left: 10px;
}

@media screen and (min-width: 1080px) {
  .location_title {
    font-size: 20px;
  }
}

.location_table {
    font-size: 10px;
    font-weight: bold;
    margin-top: 10px;
}

@media screen and (min-width: 1080px) {
  .location_table {
    font-size: 16px;
  }
}

.location_txt {
    font-size: 10px;
    font-weight: bold;
    margin-top: 10px;
    margin-left: 10px;
}

@media screen and (min-width: 1080px) {
  .location_txt {
    font-size: 16px;
  }
}

.location_table_td {
    padding: 0 10px;
}

.location_map {
    margin-top: 40px;
    text-align: center;
}

@media screen and (min-width: 1080px) {
  .location_map {
    margin-top: 100px;
  }
}

.location_img-wrapper {
    margin-top: 24px;
    display: flex;
    justify-content: center;
}

.location_img {
    max-width: 375px;
}

@media screen and (min-width: 1080px) {
  .location_img {
    min-width: 500px;
  }
}

.location_salon2 {
    display: grid;
    margin: 32px auto;
    font-size: 10px;
    text-align: center;
    font-weight: normal;
    max-width: 400px;
    justify-content: center;
}

@media screen and (min-width: 1080px) {
  .location_salon2 {
    min-width: 1000px;
  }
}


.location_table2 {
    font-size: 10px;
}

@media screen and (min-width: 1080px) {
  .location_table2 {
    font-size: 14px;
  }
}

.td1 {
    background:rgba(236,112,154,0.2);
    border: solid 1px var(--primary-color);
}

.td2 {
    background:rgba(255,255,255,0.2);
    border: solid 1px var(--primary-color);
}
