@charset "utf-8";
/* ============================================================
   mainarea
=============================================================== */
#mainarea {}
#mainarea .mainareabg {
  height: 180px;
  background: url("../images/bg_linemain01.png") no-repeat left top,var(--skyblue);
}



#mainarea .mainareabg .inner {
  position: relative;
  padding: 0 0 0 0;
  color: #FFFFFF;
}
#mainarea .mainareabg .breadcrumbs {
  color: #FFFFFF;
}
#mainarea .mainareabg .breadcrumbs a {
  color: #FFFFFF;
}
#mainarea .mainareabg .inner .catchBox {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 135px;
}
#mainarea .mainareabg .inner .txt01 {
  display: flex;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}
#mainarea .mainareabg .inner .txt02 {
  font-size: 4.4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  #mainarea .mainareabg .inner .txt02 {
  font-size: 3.0rem;
}  
}
/* ----------------------------------------------
#
lead
---------------------------------------------- */
#lead {}
#lead .inner {
  padding: 33px 0 ;
      font-size: 1.6rem;
    text-align: center;
}
/* ----------------------------------------------
tabs
------------------------------------------------- */
.inquiryinfo .tabs {
  position: relative;
}
/*タブのスタイル*/
.tabBox .tabArea {
  display: flex;
  justify-content: space-between;
}
.tabBox .one_tab {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 80px;
  background-color: #bdc8ca;
  font-size: 2.0rem;
  font-weight: 700;
  color: var(--white);
  transition: all 0.2s ease;
}
.tabBox .one_tab::before {
  content: "▶";
    padding-right: 14px;
  font-size: 1.4rem;
}

.tabBox .one_tab:hover {
  opacity: 0.75;
}
.tabBox .one_tab.select {
  background: #FFF;
  border-top: 5px var(--skyblue) solid;
  color: var(--skyblue);
}

.tabBox .one_tab.select:hover {
  background-color: #dbf3f7;
}
/*タブ切り替えの中身のスタイル*/
.tabcontents .tab_main {
  z-index: 0;
  display: none;
  overflow: hidden;
  clear: both;
}
.tabcontents .is_show {
  display: block;
}
@media screen and (max-width: 767px) {
.tabBox .one_tab {
  font-size: 1.6rem;
}
}

/* ----------------------------------------------
#text
------------------------------------------------- */
#text {
    display: none;
    margin: 0;
    transition: 0.4s ease-in-out;
    height: 50px;
    padding: 0;
    width: 0;
}
input#text.check {
    display: block;
    width: 100%;
    padding: 0 15px;
}

/* ----------------------------------------------
 .checklist
---------------------------------------------- */
.checklist {
  width: 100%;
  height: 210px;
  overflow-y: scroll;
  padding-bottom: 50px;
}
td .checklist {
  height: auto;
  overflow: hidden;
  padding-bottom: 0px;
}
.checklist ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.checklist li {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  margin-right: 35px;
  position: relative;
}
.checklist li input[type="checkbox"] {
  appearance: none;
  height: 26px;
  width: 26px;
  margin: 4px;
  border: 1px solid #8b98a5;
  border-radius: 4px;
  background: rgba(255, 255, 255, 1.00);
}
.checklist li input[type="radio"] {
  appearance: none;
  height: 26px;
  width: 26px;
  margin: 4px;
  border: 1px solid #8b98a5;
  border-radius: 13px;
  background: rgba(255, 255, 255, 1.00);
}
.checklist li input[type="checkbox"]:checked {
  border: 1px solid #8b98a5;
  background-color: #1d9bf0;
}
.checklist li input[type="radio"]:checked {
  border: 1px solid #8b98a5;
  background-color: #1d9bf0;
  padding: 5px;
}
.checklist li input[type="checkbox"]:checked::before {
  content: "";
  display: block;
  position: relative;
  left: 7px;
  top: 3px;
  width: 8px;
  height: 14px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.checklist li input[type="radio"]:checked::before {
  content: "";
  display: block;
  position: relative;
  left: -5px;
  top: -5px;
  width: 24px;
  height: 24px;
  border-radius: 13px;
  border: solid white;
}
.checklist li input[type="checkbox"]:focus-visible {
  outline: 2px solid #1d9bf0;
  outline-offset: 2px;
}
.checklist li input[type="radio"]:focus-visible {
  outline: 2px solid #1d9bf0;
  outline-offset: 2px;
}
.checklist li label {
  margin-left: 3px;
  font-size: 1.4rem !important;
  position: relative;
  display: flex;
  align-items: center;
}
.checklist li label img {
  height: auto;
}
@media screen and (max-width: 767px) {
  .checklist {
    height: 220px;
  }
  .checklist li {
    margin-right: 15px;
  }
  .checklist li label {
    margin-left: 3px;
    font-size: 1.6rem;
    position: relative;
    display: flex;
    align-items: center;
  }
  .checklist li label img {
    width: auto;
    height: auto;
  }
}
