@charset "UTF-8";
@media screen and (max-width: 767px) {
  .header {
    transition: 0.5s ease-in-out;
    background: #fff;
  }
  .scl .header {
    background: rgba(255, 255, 255, 0);
  }
  .header h1 {
    transition: 0.8s ease-in-out;
  }
  .scl .header h1 {
    transform: translate(-50%, -300%);
  }
}
.page-outline {
  color: var(--fblack);
}

.page_title {
  padding-top: 160px;
  text-align: center;
}

.page_title .page_title_en {
  font-size: min(3.8vw, 40px);
  font-family: var(--f-en);
  margin-bottom: 15px;
}

.page_title .page_title_ja {
  font-size: 18px;
  font-family: var(--f-ja);
}

.tab_wrapper {
  margin-top: 60px;
  border-bottom: 1px solid #C3C3C3;
}

.tab_wrapper > ul {
  display: flex;
  gap: 15px;
  width: 98%;
  max-width: 1000px;
  margin: 0 auto 0px;
}

.tab_wrapper > ul li {
  width: 50%;
  text-align: center;
  background: #dddddd;
  border-bottom: 4px solid #fff;
  color: rgba(51, 51, 51, 0.4117647059);
  padding: 1.5em 1em 1.2em;
  margin: 0;
  font-size: min(2.6vw, 22px);
  font-weight: 500;
  cursor: pointer;
  -webkit-transition-duration: 0.7s;
  transition-duration: 0.7s;
  line-height: 1;
  letter-spacing: 0.1em;
}

.tab_wrapper > ul li.active {
  background: #9bb5bf;
  border: 1px solid #98aec6;
  color: #fff;
  position: relative;
}

.outline_content {
  visibility: hidden;
  width: 96%;
  max-width: 1000px;
  margin: 0 auto 0;
  height: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s, transform 0.8s;
}

.outline_single {
  margin-top: 60px;
  border-top: 1px solid #C3C3C3;
}

.outline_content.active {
  visibility: visible;
  margin-top: 60px;
  height: auto;
  opacity: 1;
  transform: translateY(0);
}

.title_content {
  font-family: var(--f-ja);
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: bold;
}

.table {
  font-family: var(--f-ja);
  font-size: 14px;
}

.table table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  line-height: 1.8;
}

.table table tbody {
  width: 100%;
}

.table table tr {
  width: 100%;
  border-bottom: 1px solid #e3e3e3;
}

.table table th {
  width: 260px;
  padding: 20px 10px 20px;
  font-weight: bold;
  background: #f7f7f7;
}

.table table td {
  padding: 20px 10px;
}
.table table td span {
  font-size: 11px;
}

.preview_ad {
  margin-top: 40px;
}

.preview_ad .preview_ad_title {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 5px 3px;
  border: 1px solid #000;
}

.preview_ad .note {
  margin-top: 5px;
  font-size: 12px;
  line-height: 1.4;
}

.info_date {
  margin-top: 30px;
  line-height: 1.8;
}

.acception_note {
  margin-top: 30px;
  line-height: 1.6;
  font-size: 14px;
}

.acception_note p {
  margin-top: 1em;
}

/***電話***/
.foot_tell {
  text-align: center;
  font-size: min(3.1vw, 14px);
  margin-top: 60px;
  display: block;
}

.foot_tell .tell_info {
  margin: 0 auto 20px;
  padding-top: 30px;
  border-top: 1px solid #ccc;
  width: 80%;
  max-width: 380px;
}

.foot_tell .tell_time {
  margin: 0 auto;
  width: 80%;
  max-width: 380px;
}

.foot_tell .tel_nom {
  width: 60%;
  max-width: 260px;
  margin: 0 auto 20px;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .page_title {
    padding-top: 100px;
  }
  .page_title .page_title_en {
    font-size: min(6.8vw, 30px);
  }
  .page_title .page_title_ja {
    font-size: 16px;
    margin-top: 5px;
  }
  .prepage .prepage_in {
    width: 80%;
  }
  .outline_single {
    margin-top: 40px;
  }
  .tab_wrapper {
    margin-top: 40px;
  }
  .tab_wrapper > ul li {
    font-size: 16px;
    padding: 20px 5px 15px;
  }
  .outline_content.active {
    padding: 0 20px;
    box-sizing: border-box;
  }
  .table table {
    display: block;
    font-size: 14px;
  }
  .table table tbody {
    display: block;
  }
  .table table tr {
    display: block;
    /*border-bottom: 1px solid #e3e3e3;*/
  }
  .table table th {
    display: block;
    width: 100%;
    padding: 10px;
    background: #f1f1f1;
    box-sizing: border-box;
  }
  .table table td {
    display: block;
    width: 100%;
    padding: 10px 0 20px;
  }
  .info_date {
    font-size: 12px;
    margin-top: 20px;
    line-height: 1.6;
  }
  .acception_note {
    margin-top: 20px;
    font-size: 12px;
  }
  .foot_tell .tell_info {
    margin: 0 auto 20px;
    width: 96%;
  }
  .foot_tell .tell_time {
    margin: 0 auto;
    width: 96%;
  }
  .foot_tell .tel_nom {
    pointer-events: all;
  }
}
.fadein_up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.1s, transform 1.1s;
}

.fadein_up.on {
  opacity: 1;
  transform: translateY(0px);
}/*# sourceMappingURL=outline.css.map */