@charset "UTF-8";
/* CSS Document */
/* ========================================
   Component CSS
   複数の目的を持つクラスや、セクションごとのスタイルを記述
======================================== */

/*--------ボタン--------*/

.btn01 a {
  font-size: clamp(0.875rem, 0.5rem + 1vw, 1.25rem);
  padding: clamp(0.5rem, 1vw, 1rem) clamp(1rem, 2vw, 2rem);

  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 0 auto;
  width: 300px;
  color: #fff;
  font-weight: 500;
  background-color: var(--main_color);
  transition: 0.3s;
}

.btn01 a::before {
  content: "";
  position: absolute;
  bottom: -7px;
  right: -7px;
  width: 100%;
  height: 2px;
  background-color: var(--main_color);
  transition: 0.2s ease 0s;
}

.btn01 a::after {
  content: "";
  position: absolute;
  top: 7px;
  right: -7px;
  width: 2px;
  height: 100%;
  background-color: var(--main_color);
  transition: 0.2s ease 0.2s;
}

.btn01 a:hover::before {
  width: 0%;
}

.btn01 a:hover::after {
  height: 0%;
}

.btn01 a:hover {
  text-decoration: none;
  background-color: var(--sub_color);
}

/*---------インスタアイコンボタン--------*/
.insta_wrap {
  text-align: center;
}

.insta_btn {
  display: inline-flex;
  align-items: center;
  gap: 8px; /* アイコンと文字の間 */
  padding: 10px 18px;
  background: linear-gradient(
    to right,
    rgba(247, 207, 0, 0.7),
    rgba(246, 37, 2, 0.7) 45%,
    rgba(182, 47, 82, 0.7) 75%,
    rgba(113, 58, 166, 0.7)
  );
  border-radius: 6px;
  text-decoration: none;
}

.insta_btn .fa-instagram {
  color: #fff;
  font-size: 22px;
}

.insta_btn span {
  color: #fff;
  font-size: 14px;
  line-height: 1;
}

.insta_btn:hover {
  opacity: 0.85;
  transition: 0.3s;
}

.sbtn {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.sbtn a {
  display: block;
  border: 1px solid #333;
  text-align: center;
  width: 100%;
  padding: clamp(10px, 3vw, 18px) 0;
  letter-spacing: 0.15em;
  font-size: clamp(0.85rem, 0.5rem + 1vw, 1.1rem);
  transition: all 0.5s ease;
}

.sbtn a:hover {
  color: #fff;
  background: #333;
  border-color: #333;
}

.sbtn.wh a {
  background: #fff;
  color: #333;
  border-color: #333;
}

.sbtn.wh a:hover {
  color: #fff;
  background: #000;
  border-color: #fff;
}

.sbtn.bk a {
  background: #333;
  color: #fff;
  border-color: #333;
}

.sbtn.bk a:hover {
  color: #333;
  background: #fff;
  border-color: #fff;
}

.sbtn p {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
}

.sbtn p::before,
.sbtn p::after {
  content: "";
  background: #005897;
  height: 1px;
  flex-grow: 1;
  opacity: 0.5;
}

.sbtn p::before {
  margin-right: 1em;
}

.sbtn p::after {
  margin-left: 1em;
}

.m_contact a {
  min-width: 280px;
}
/*---------メインタイトル--------------*/
.main_ttl {
  font-size: clamp(1.75rem, 1rem + 3vw, 3rem); /* 約28px〜48px相当 */
  letter-spacing: 0.1em;
  text-align: center;
  color: var(--main_color);
  font-weight: 500;
  position: relative;
}

.main_ttl::before {
  position: absolute;
  bottom: -10px;
  left: calc(50% - 30px);
  width: 60px;
  height: 3px;
  content: "";
  background: var(--sub_color);
}

.main_ttl span {
  display: block;
  color: #333;
  font-size: 1.5rem;
}

/*--------サブタイトル----------*/

.sub_ttl {
  font-size: clamp(1.2rem, 0.8rem + 2vw, 2.4rem); /* 約19px〜38px相当 */
  padding: 0 0.4em 0.2em;
  border-bottom: 0.5px solid #333;
  color: #333;
  font-size: 1.3rem;
  letter-spacing: 0.15em;
}

/*------------カードレイアウト-----------------*/
.card_section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.card_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  width: 100%;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card_img {
  width: 50%;
  margin: auto;
  height: auto;
  aspect-ratio: 4 / 3;
}

.card_body {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card_title {
  font-size: 1.2rem;
  margin: 0 0 10px;
  color: #333;
}

.card_text {
  flex-grow: 1;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.card_btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 16px;
  background: var(--main_color, #27b283);
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.3s;
}

.card_btn:hover {
  background: #1e8c6f;
}

/*------2行の基本Table--------*/
.info_table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.info_table tr {
  border: 1px solid #ccc;
}
.info_table th,
.info_table td {
  padding: 15px 10px;
  letter-spacing: 0.08em;
}
.info_table th {
  background: #626262;
  color: #fff;
  width: 30%;
  border-right: 1px solid #ccc;
  font-weight: 500;
}
.info_table td {
  background: #f8f8f8;
  width: 70%;
  border-right: 1px solid #ccc;
  border-left: 1px solid #ccc;
}
@media (max-width: 768px) {
  .info_table th,
  .info_table td {
    display: block;
    width: 90%;
    margin: auto;
    border: none;
    text-align: left;
  }
  .info_table tr {
    border: none;
  }

  .info_table {
    font-size: 0.9rem;
  }
}

/*ver2*/
.info_table02 {
  width: 100%;
  table-layout: fixed;
  border-spacing: 0 6px;
}
.info_table02 tr {
}
.info_table02 tr:last-child {
  border-bottom: none !important;
}
.info_table02 th,
.info_table02 td {
  padding: 18px 0;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}
.info_table02 th {
  position: relative;
  background: #626262;
  width: 200px;
  font-weight: 500;
  color: #fff;
}
.info_table02 th::after {
  position: absolute;
  top: calc(50% - 10px);
  right: -8px;
  display: block;
  width: 0;
  height: 0;
  content: "";
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #626262;
}
.info_table02 td {
  padding-left: 20px;
  padding-right: 20px;
  background: #f8f8f8;
}
@media (max-width: 768px) {
  .info_table02 tr {
    border-width: 4px;
  }
  .info_table02 th,
  .info_table02 td {
    padding: 18px 0;
    font-size: 0.9rem;
  }
  .info_table02 th {
    width: 120px;
  }
  .info_table02 td {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.info_table03 {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-bottom: 1px solid rgba(196, 196, 196, 0.43);
}
.info_table03 tr {
  border-top: 1px solid rgba(196, 196, 196, 0.43);
}
.info_table03 th,
.info_table03 td {
  padding: 40px 0;
  text-align: left;
  vertical-align: top;
  letter-spacing: 0.08em;
}
.info_table03 th {
  width: 20%;
  padding-left: 40px;
  font-weight: 500;
}
.info_table03 td {
  width: 80%;
  padding-left: 20px;
}
@media (max-width: 768px) {
  .info_table03 th,
  .info_table03 td {
    padding: 40px 0;
  }
  .info_table03 th {
    width: 25%;
    padding-left: 20px;
  }
  .info_table03 td {
    width: 75%;
    padding-left: 20px;
  }
}
@media (max-width: 450px) {
  .info_table03 {
    font-size: 0.9rem;
    padding: 30px 0;
  }
  .info_table03 th {
    width: 30%;
    padding-left: 10px;
  }
  .info_table03 td {
    width: 70%;
    padding-left: 10px;
  }
}

/*---------list----------------*/
ul.check_list li {
  /*	border-bottom: 1px solid #ddd;*/
  margin-bottom: 5px;
  padding-left: 2px;
  letter-spacing: 0.08em;
}
ul.check_list li::before {
  font-family: "Font Awesome 6 Free";
  content: "\f058";
  font-weight: bold;
  display: inline-block;
  color: var(--sub_color);
  margin-right: 0.5em;
  font-size: 1rem;
  transform: translateY(-2px);
}
ul.check_list02 li {
  letter-spacing: 0.08em;
  margin-bottom: 5px;
}
ul.check_list02 li::before {
  font-family: "Font Awesome 6 Free";
  content: "\f14a";
  font-weight: bold;
  display: inline-block;
  color: #333;
  margin-right: 0.5em;
  font-size: 1rem;
}
ul.check_list02_wh li {
  letter-spacing: 0.08em;
  margin-bottom: 5px;
}
ul.check_list02_wh li::before {
  font-family: "Font Awesome 6 Free";
  content: "\f14a";
  font-weight: bold;
  display: inline-block;
  color: #fff;
  margin-right: 0.5em;
  font-size: 1rem;
}

ul.check_list li:last-child,
ul.check_list02 li:last-child,
ul.check_list02_wh li:last-child {
  margin-bottom: 0;
}
ul.check_list02.row,
ul.check_list02_wh.row {
  display: flex;
  flex-wrap: wrap;
}
ul.check_list02.row li,
ul.check_list02_wh.row li {
  margin-right: 40px;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  ul.check_list02.row,
  ul.check_list02_wh.row {
    display: block;
  }
  ul.check_list02.row li,
  ul.check_list02_wh.row li {
    margin-right: 0;
  }
}

ul.check_list03 {
  display: flex;
  flex-wrap: wrap;
}
ul.check_list03 li {
  width: 31%;
  letter-spacing: 0.08em;
  margin: 0 1%;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 2px dotted #f7b525;
}
ul.check_list03 li::before {
  font-family: "Font Awesome 6 Free";
  content: "\f14a";
  font-weight: bold;
  display: inline-block;
  color: #f7b525;
  margin-right: 0.5em;
  font-size: 0.9em;
}
@media (max-width: 960px) {
  ul.check_list03 {
    justify-content: space-between;
  }
  ul.check_list03 li {
    width: 48%;
    margin: 0 0 10px;
  }
}
@media (max-width: 768px) {
  ul.check_list03 li {
    width: 100%;
  }
}

ul.dot_list li {
  letter-spacing: 0.08em;
  margin-bottom: 5px;
}
ul.dot_list li::before {
  content: "・";
  color: #08a6a6;
  margin-right: 5px;
}

ul.care_list li {
  letter-spacing: 0.08em;
  margin-bottom: 5px;
  font-size: 0.8rem;
}
ul.care_list li::before {
  content: "※";
  color: #f05742;
  font-weight: bold;
}

ul.text_list li {
  border-bottom: 1px solid #ddd;
  margin-bottom: 5px;
  padding-left: 2px;
  letter-spacing: 0.08em;
}

ul.single_list {
}
ul.single_list li {
  border-bottom: 1px solid rgba(170, 170, 170, 0.3);
  padding: 0 2px;
  padding-bottom: 6px;
  margin-bottom: 8px;
  font-size: 0.9rem;
}
ul.single_list li:last-child {
  margin-bottom: 0;
}
ul.single_list li::before {
  display: inline-block;
  font-family: "Font Awesome 6 Free";
  content: "\f105";
  font-weight: bold;
  margin-right: 6px;
  font-size: 0.6rem;
  transform: translateY(-2px);
  color: #08a6a6;
}
ul.single_list.non li::before {
  display: none;
}

/*--------------info_flexbox---------------*/
/*画像 + テキスト 通常のflex*/
.info_flexbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: clamp(20px, 4vw, 40px);
}

.info_flexbox .img,
.info_flexbox .text {
  flex: 1 1 calc(50% - 20px);
  max-width: calc(50% - 20px);
}

@media (max-width: 768px) {
  .info_flexbox {
    flex-direction: column;
    gap: clamp(20px, 5vw, 50px);
  }

  .info_flexbox.reverse {
    flex-direction: column-reverse;
  }

  .info_flexbox .img,
  .info_flexbox .text {
    max-width: 100%;
    flex: 1 1 100%;
  }
}

.map {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
  border: none;
}

.map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.text {
  width: 95%;
  margin: auto;
}
