@charset "UTF-8";
body {
  background-color: #e4ffff;
}

.container {
  position: relative;
}

#pcInfo {
  position: fixed;
  bottom: 10px;
  right: 20px;
  width: 30%;
  max-width: 400px;
  height: 400px;
  transition: height 0.3s ease-in-out;
}

.minimized {
  height: 50px !important;
  overflow: hidden;
}

#toggleButton {
  margin: 0 0 10px auto;
  border: none;
  display: block;
  width: 6rem;
  height: 0.8rem;
  text-align: center;
  font-size: 0.8rem;
}
#toggleButton:before {
  content: "CLOSE";
  display: block;
  line-height: 0.5;
  height: 0.8rem;
  color: #888;
}

.minimized #toggleButton:before {
  content: "OPEN";
}

#head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#mainContent {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
}

#head {
  width: 100%;
}
@media screen and (max-width: 991px) {
  #head {
    justify-content: flex-start;
  }
}

#header_logo {
  max-width: 100%;
}
@media screen and (max-width: 991px) {
  #header_logo {
    width: 60%;
  }
}

@media screen and (max-width: 991px) {
  #header_contact {
    display: none;
  }
}

#toc-container,
#popup-toc-container {
  counter-reset: item-counter;
}

#toc-container ul li,
#popup-toc-container ul li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
  list-style: none; /* デフォルトのリストマーカーを消す */
  counter-increment: item-counter;
}

#toc-container ul li::before,
#popup-toc-container ul li::before {
  content: counter(item-counter) ".";
}

#pcInfo_item img {
  display: block;
  margin: 1rem auto;
}

@media screen and (max-width: 991px) {
  #pcInfo {
    display: none;
  }
}
.imgCenter {
  display: block;
  margin-inline: auto;
}

.imgFull {
  width: 100%;
  max-width: 100%;
}

.imgLink {
  display: block;
  transition: all 0.3s;
}
.imgLink:hover {
  transform: translateY(5px);
}

#mainContent {
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
}
@media screen and (max-width: 991px) {
  #mainContent {
    padding: 10px;
  }
}
#mainContent section {
  margin-bottom: 6rem;
}

#bg_footer {
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: -1;
  opacity: 0.1;
}

section {
  position: relative;
}
section p {
  margin-bottom: 1rem;
}

.flexbox {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .flexbox {
    flex-direction: column;
  }
}

h2.mainH2 {
  text-align: center;
  margin-bottom: 6rem;
  padding-bottom: 0.5rem;
  font-size: 1.8rem;
  color: #5079a3;
  border-bottom: dashed 2px #5079a3;
  width: 30rem;
  margin-inline: auto;
  position: relative;
}
h2.mainH2::before {
  position: absolute;
  left: -2rem;
  top: -13%;
  content: "";
  background-image: url(images/heading_parts.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  width: 156px;
  height: 117px;
}
@media screen and (max-width: 991px) {
  h2.mainH2 {
    margin-bottom: 4rem;
    width: 22rem;
    padding-left: 1.5rem;
  }
  h2.mainH2::before {
    left: -3.5rem;
  }
}

h3.mainH3 {
  color: #5079a3;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

br.pc {
  display: block;
}
@media screen and (max-width: 991px) {
  br.pc {
    display: none;
  }
}

br.sp {
  display: none;
}
@media screen and (max-width: 991px) {
  br.sp {
    display: block;
  }
}

#fv {
  display: block;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 6rem;
}
@media screen and (max-width: 991px) {
  #fv {
    margin-bottom: 3rem;
  }
  #fv .imgLink {
    width: 90%;
    margin: 1rem auto;
  }
}

#section1 .flexbox {
  gap: 1rem;
}
#sec1_point {
  margin: 2rem auto;
  padding: 2rem;
  background-image: url(images/sec1_bg.webp);
  background-position: center;
  background-repeat: repeat;
  background-size: auto;
}
#sec1_point h3 {
  color: #754c24;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}
#sec1_point .gridbox {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}
#sec1_point .gridbox .featureBox {
  background-color: #fff;
  padding: 1rem;
}
#sec1_point .gridbox .featureBox h4 {
  text-align: center;
  background-color: #754c24;
  color: #fff;
  padding: 0.5rem;
  margin-bottom: 1rem;
  border-radius: 20px;
  font-size: 1.2rem;
}
#sec1_point .gridbox .featureBox p {
  text-align: center;
}
#sec1_point .gridbox .imgBox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 991px) {
  #sec1_point {
    padding: 1rem;
  }
  #sec1_point .gridbox {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  #sec1_point .gridbox .imgBox {
    display: none;
  }
  #sec1_point h3 {
    margin-bottom: 0.75rem;
  }
}

#sec2_intro {
  margin-bottom: 4rem;
}
#sec2_intro p {
  text-align: center;
}
@media screen and (max-width: 991px) {
  #sec2_intro p {
    text-align: left;
  }
}

#sec2_table {
  margin-bottom: 4rem;
}
#sec2_table table {
  border: solid 1px #754c24;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  #sec2_table table {
    width: 100%;
  }
}
#sec2_table th, #sec2_table td {
  border: solid 1px #754c24;
}
@media screen and (min-width: 768px) {
  #sec2_table th, #sec2_table td {
    padding: 1rem;
  }
}
@media screen and (min-width: 768px) {
  #sec2_table th {
    background-color: #f0f0f0;
  }
}
@media screen and (min-width: 768px) {
  #sec2_table td {
    width: 40%;
  }
}
#sec2_table td:nth-child(odd) {
  background-color: #fffdee;
}
#sec2_table td:nth-child(even) {
  background-color: #f2f5b5;
}
#sec2_table .table_notice {
  display: none;
  text-align: center;
}
@media screen and (max-width: 991px) {
  #sec2_table .table_notice {
    display: block;
  }
}

.table-scroll-wrapper {
  overflow-x: auto; /* 横方向のスクロールを許可 */
  -webkit-overflow-scrolling: touch; /* iOSでのスクロールをスムーズにする */
  scroll-snap-type: x mandatory;
}

.table-scroll-wrapper table {
  width: 100%;
}
@media screen and (max-width: 991px) {
  .table-scroll-wrapper table {
    width: 190%;
    /* 固定したい最初の列のヘッダー */
    /* 固定したい最初の列のデータセル */
  }
  .table-scroll-wrapper table th:first-child {
    position: -webkit-sticky;
    position: sticky;
    left: 0; /* 左端に固定 */
    z-index: 10; /* 他のセルより前面に表示 */
    background-color: #f0f0f0; /* 背景色を設定して、スクロール時に透過しないようにする */
    padding: 0.5rem;
    width: 6rem;
  }
  .table-scroll-wrapper table td {
    padding: 0.5rem;
    padding-left: 1.5rem;
    padding-right: 3rem;
  }
  .table-scroll-wrapper table td:last-child {
    padding-left: 1rem;
  }
}

/* PCではスクロールを無効化 */
@media screen and (min-width: 768px) {
  .table-scroll-wrapper {
    overflow-x: visible; /* PCではスクロールしない */
  }
}
#sec2_respite {
  margin-bottom: 4rem;
}
#sec2_respite .gridbox {
  width: 80%;
  margin: 1rem auto 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media screen and (max-width: 991px) {
  #sec2_respite .gridbox {
    grid-template-columns: 1fr;
    width: 100%;
  }
}
#sec2_respite .respite_notice {
  text-align: center;
  font-size: 1.25rem;
}
#sec2_respite .respite_notice b {
  color: orange;
}
#sec2_respite .respite_notice span {
  position: relative;
}
#sec2_respite .respite_notice span::after {
  content: "";
  background-color: #f2f5b5;
  display: block;
  width: 100%;
  height: 10px;
  position: absolute;
  bottom: 0px;
  left: 50%;
  margin-left: -50%;
  z-index: -1;
}

.service_intro {
  margin-bottom: 4rem;
}
.service_intro p {
  text-align: center;
}
@media screen and (max-width: 991px) {
  .service_intro p {
    text-align: left;
  }
}

#sec3_service {
  margin-bottom: 4rem;
}
#sec3_service .flexbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 991px) {
  #sec3_service .flexbox {
    flex-direction: row;
  }
}
#sec3_service .flexChild {
  width: 32%;
}
#sec3_service .flexChild p {
  text-align: center;
  color: #5079a3;
}
@media screen and (max-width: 991px) {
  #sec3_service .flexChild {
    width: 45%;
  }
}

#sec3_international {
  margin: 4rem auto;
}
#sec3_international .international_notice {
  text-align: center;
  margin: 2rem auto;
}

#section4 {
  margin-bottom: 6rem;
}

#sec4_info table {
  width: 100%;
}
#sec4_info table th, #sec4_info table td {
  border: solid 1px #5079a3;
  padding: 2rem 2rem;
}
#sec4_info table th {
  background-color: #5079a3;
  color: #fff;
  border-bottom: solid 1px #fff;
}
#sec4_info table td {
  background-color: #fff;
}
@media screen and (max-width: 991px) {
  #sec4_info table th, #sec4_info table td {
    display: block;
    width: 100%;
    padding: 1rem;
  }
  #sec4_info table th {
    border-bottom: none;
  }
}
#sec4_info table tr:last-child th {
  border-bottom: solid 1px #5079a3;
}

.sec5_area {
  margin-bottom: 4rem;
}
.sec5_area .flexbox {
  gap: 2rem;
}
.sec5_area .flexbox .flexChild:first-child {
  width: 40%;
}
@media screen and (max-width: 991px) {
  .sec5_area .flexbox .flexChild:first-child {
    width: 80%;
  }
}
.sec5_area h3 {
  color: #5079a3;
  margin-bottom: 2rem;
}
@media screen and (max-width: 991px) {
  .sec5_area h3 {
    text-align: center;
  }
}

#sec5_family img {
  display: block;
  margin-bottom: 1rem;
}

#section5 {
  margin-bottom: 6rem;
}

#section6 {
  margin-bottom: 6rem;
}

.voice_box {
  width: 100%;
  margin-bottom: 2rem;
  padding: 2rem;
  padding-left: 5rem;
  background-color: #FFF;
  position: relative;
}
.voice_box .voice_message {
  color: #5079a3;
  font-size: 1.5rem;
}
.voice_box .voice_info {
  text-align: right;
}
.voice_box::before {
  position: absolute;
  display: block;
  content: "";
  background: linear-gradient(to bottom, #0071bc 0%, #29abe2 100%);
  width: 2rem;
  height: 100%;
  top: 0;
  left: 0;
}
@media screen and (max-width: 991px) {
  .voice_box {
    padding: 1rem 0.5rem;
    padding-left: 2rem;
  }
  .voice_box .voice_message {
    font-size: 1.1rem;
  }
  .voice_box .voice_info {
    margin-top: 0.5rem;
    font-size: 0.8rem;
  }
  .voice_box::before {
    width: 1rem;
  }
}

#section7 {
  margin-bottom: 6rem;
}

.faq_box {
  margin-bottom: 4rem;
}
.faq_box p {
  margin: 0;
  padding-left: 1rem;
  font-size: 1.25rem;
}
.faq_box .faq_q {
  background-color: #fff;
  padding: 1rem;
  color: #5079a3;
  margin-bottom: 30px;
  margin-left: 100px;
  position: relative;
}
.faq_box .faq_q::before {
  content: "";
  background-image: url(images/qa_q.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 80px;
  height: 80px;
  position: absolute;
  top: -30px;
  left: -60px;
}
@media screen and (max-width: 991px) {
  .faq_box .faq_q {
    margin-left: 70px;
  }
}
.faq_box .faq_a {
  background-color: #fffdee;
  padding: 1rem;
  color: #754c24;
  margin-left: 100px;
  position: relative;
}
.faq_box .faq_a::before {
  content: "";
  background-image: url(images/qa_a.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 80px;
  height: 80px;
  position: absolute;
  top: -30px;
  left: -60px;
}
@media screen and (max-width: 991px) {
  .faq_box .faq_a {
    margin-left: 70px;
  }
}

#section8 {
  margin-bottom: 6rem;
}
#section8 .flexbox {
  justify-content: flex-start;
  gap: 2rem;
}
#section8 .flexbox .flexChild:first-child {
  width: 30%;
}
@media screen and (max-width: 991px) {
  #section8 .flexbox .flexChild:first-child {
    width: 80%;
  }
}

#sec8_map {
  margin-bottom: 2rem;
}
#sec8_map iframe {
  width: 100%;
  height: 40vh;
}

.copyright {
  text-align: center;
  font-size: 0.8rem;
}
/*# sourceMappingURL=style.css.map */