/*contact*/
.sec_contact {
  box-sizing: border-box;
  margin: 120px auto 60px;
  font-size: 1.3rem;
}
@media screen and (max-width: 767px) {
  .sec_contact {
    margin: 60px auto;
  }
}
.sec_contact .contact__leadArea h1 {
  margin: 0 0 0.25em;
  font-size: 3.6rem;
  font-weight: bold;
  color: #0169b6;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .sec_contact .contact__leadArea h1 {
    font-size: 2.2rem;
  }
}
.sec_contact .contact__leadArea .contact__leadTitle {
  font-size: 2.4rem;
  margin-bottom: 0.5em;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .sec_contact .contact__leadArea .contact__leadTitle {
    font-size: 1.8rem;
  }
}
.sec_contact .contact__wrap {
  max-width: 1180px;
  margin: auto;
  padding: 0 24px;
}
@media screen and (max-width: 767px) {
  .sec_contact .contact__wrap {
    padding: 0 8vw 10vw;
  }
}
.sec_contact .contact__flex {
  display:grid;
  grid-template-columns: 100%;
}
@media screen and (min-width: 768px) {
  .sec_contact .contact__flex {
    grid-template-columns: repeat(2, calc(50% - 30px));
    column-gap: 60px;
  }
}
.sec_contact .contact__detail {
  color: #354768;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 2em;
}
.sec_contact .contact__detail figure {
  margin: 2em 0;
}
.sec_contact .contact__detail .contact__slide {
  width: 100%;
}
.sec_contact .contact__detail .contact__slide img {
  max-width: 100%;
}
.contact__listTitle{
  font-size: 1.5rem;
}
.sec_contact .contact__detail .contact__listTitle {
  font-weight: bold;
  margin-bottom: 10px;
}

.sec_contact .contact__detail .contact__listTitle-Nbtn {
  font-weight: bold;
  margin-bottom: -15px;
}
.sec_contact .contact__detail .contact__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);

  gap: 10px;
}
@media screen and (min-width: 768px) {
  .sec_contact .contact__detail .contact__list {
    width: 75%;
  }
}
.sec_contact .contact__detail .contact__list > li {
  background-color: #00abcf;
  border-radius: 30px;
  padding: 8px 12px;
  color: #fff;
  font-size: 1.4rem;
  box-sizing: border-box;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .sec_contact .contact__detail .contact__list > li {
    font-size: 1.2rem;
  }
}
.sec_contact .contact__detail .contact__list > li:hover {
  cursor: pointer;
}
.sec_contact .contact__detail .contact__list > li.active {
  background-color: #0068b7;
}
.sec_contact .contact__form .form .form-table-row {
  border: none;
  padding: 8px 0;
}

/* ヘルプテキスト */
/* 初期：非表示 */
.help-toggle {
  display: none;
}
.help-icon {
  display: inline-block;
  margin-left: 8px;
  cursor: pointer;
  background-color: #ccc;
  color: #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  text-align: center;
  line-height: 1.8;
  font-size: 12px;
  font-weight: bold;
  position: relative;
  z-index: 1;
}
.help-tooltip {
  display: none;
  background: #0068b7;
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  position: absolute;
  margin-top: 5px;
  z-index: 100;
}

/* ------- スマホ：クリックで表示（〜767px） ------- */
@media screen and (max-width: 767px) {
  /* チェックされたときに表示 */
  .help-toggle:checked + .help-icon + .help-tooltip {
    display: inline-block;
  }
}
/* ------- PC：hoverで表示（768px〜） ------- */
@media screen and (min-width: 768px) {
  .help-icon:hover + .help-tooltip {
    display: inline-block;
  }
}
/* ヘルプテキスト終了 */

@media screen and (min-width: 768px) {
  .sec_contact .contact__form .form .form-table-row {
    flex: grid;
    flex-wrap: nowrap;
  }
}
@media screen and (min-width: 768px) {
  .sec_contact .contact__form .form .form-table-th {
    width: 44.5%;
  }
}
.sec_contact .contact__form .form .form-table-th label {
  font-weight: bold;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .sec_contact .contact__form .form .form-table-td {
    width: 55.5%;
  }
}
.sec_contact .contact__form .form .form-table-td.staff_count {
  display: flex;
}
.sec_contact .contact__form .form .form-table-td.staff_count input {
  width: 40%;
  margin-right: 2% !important;
}
.select{
	box-sizing: border-box;
	width: 100%;
	height: auto;
	background-color: #fff;
	-webkit-transition: background-color 0.35s ease-in-out;
	transition: background-color 0.35s ease-in-out;
	color: #aaaaaa;
  border: 1px #aaaaaa solid;
}
/* CSS（横に「人」を表示） */
.select-with-unit {
  display: flex;
  align-items: center;
}
.select-with-unit .select {
  width: 100%;
}
.select-with-unit .unit {
  margin-left: 8px;
  white-space: nowrap;
}

/* 選択肢自体は黒 */
.select option {
  color: #343434;
}
/* 選択された場合に文字色を黒に変更 */
.select:valid {
  color: #2d2d2d;
}
.sec_contact .contact__form input[type=text],
.sec_contact .contact__form input[type=email],
.sec_contact .contact__form input[type=tel] {
  padding: 0.5em;
  font-size: 1.4rem;
  margin: 0 !important;
  border-radius: 6px;
}
.sec_contact .contact__form .form-button .submit_bt {
  width: auto;
  padding: 20px 40px 20px 30px;
}
.sec_contact .contact__form .form-button .submit_bt:hover {
  opacity: 0.8;
}
.sec_contact .textarea {
  height: 90px;
}
.sec_contact #agreement {
  margin-top: 10px !important;
}
.sec_contact #agreement p {
  background-color: #fff;
  color: #354768;
  text-align: left;
  font-weight: bold;
}
.sec_contact #agreement .privacy_check {
  border: none;
  padding: 0;
}
.sec_contact .agree_check {
  background-color: #fff;
  border: none;
}
.agree_check label{
  font-size: 1.4rem;
}
.sec_contact .submit_bt {
  margin: 0 auto;
  border-radius: 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.sec_contact #agreement .privacy_check {
  font-size: 1.4rem;
}

#footer_house.footer_contact {
  padding: 0;
}
#footer_house.footer_contact .copyright {
  border: none;
}



.contents{
  height: 350px;
  padding: 2em;
  border: 2px solid #111;
  overflow-y: scroll;
}

/* プライバシーポリシー 個人情報の取り扱いについて */
.agreement__item {

  background-color: #f4f4f6;
  text-align: center;
  font-size: 1.3rem;
  color: #343434;
  font-weight: bold;
  border: 1px solid #aaaaaa;
  border-bottom: none;
}
.agreement .box {
  padding-top: 2rem;
  line-height: 2.1;
}
.agreement .box-ttl {
  font-weight: bold;
  margin-bottom: 1rem;
}
.agreement .agreement {
  line-height: 2.1;
}
.agreement .agreement .block {
  line-height: 1.6;
}
.agreement .box-wrap {
  gap: 20px;
  line-height: 2.1;
}
.agreement .box-wrap .box {
  /* width: 100%; */
  padding: 8px;
  border-radius: 8px;
}
.agreement .box-wrap .box .table {
  width: 100%;
  border-collapse: collapse;
}
.agreement .box-wrap .box .table .line {
  border-bottom: 1px solid #ccc;
}
.agreement .box-wrap .box .table .line:last-child {
  border-bottom: none;
}
.agreement .box-wrap .box .table .line .line-head {
  font-weight: bold;
  padding: 10px;
  text-align: left;
  white-space: nowrap;
}
.agreement .box-wrap .box .table .line .line-head:first-child {
  width: 34%;
}
.agreement .box-wrap .box .table .line .line-body {
  padding: 6px;
}
.agreement .box-wrap .box .table .line .line-body .block-list-02 {
  margin: 0;
}
.agreement .box-wrap .box .table .line .line-body .block-list-02 .block-list-item {
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .agreement .box-wrap {
    display: block;
  }
  .agreement .box-wrap .box {
    width: 100%;
    margin-bottom: 20px;
    padding: 0;
  }
  .agreement .box-wrap .box-ttl {
    margin-top: 2rem;
    font-size: 16px;
  }
  .agreement .box-wrap .table .line-head,
  .agreement .box-wrap .table .line-body {
    font-size: 14px;
    padding: 8px;
  }
}
@media (max-width: 480px) {
  .agreement .box-wrap .box-ttl {
    font-size: 14px;
  }
  .agreement .box-wrap .table .line-head,
  .agreement .box-wrap .table .line-body {
    font-size: 12px;
    padding: 6px;
  }
}
.agreement .block {
  margin-bottom: 3rem;
}
.agreement .block-ttl {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  border-left: 3px solid #004b9e;
  line-height: 1;
  padding: 0 0 0 9px;
}
.agreement .block-box-head {
  font-weight: bold;
  margin-bottom: 1rem;
}
.agreement .block-box-body {
  margin: 0 auto 4rem;
}
.agreement .block .link a {
  color: #004b9e;
}
.agreement .block .link a:hover {
  color: #004b9e;
  text-decoration: underline;
}
.agreement .block-08 .txt,
.agreement .block-08 .link {
  margin: 0 auto 20px;
}
.agreement .policy-contact {
  margin-top: 25px;
}
.agreement .detail {
  text-align: center;
  background: #f4f4f6;
  padding: 25px;
}
.agreement .detail-head {
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.privacy_check {
  padding: 15px;
  line-height: 1.8;
  padding-bottom: 0;
  margin: 0 auto;
  margin-top: 0;
  height: 90px;
  overflow-y: scroll;
  border: 1px solid #aaaaaa;
  background-color: #fff;
}

.box-wrap {
  gap: 20px;
}
.box-wrap .box {
  /* width: 100%; */
  padding: 20px;
  border-radius: 8px;
}
.box-wrap .box .table {
  width: 100%;
  border-collapse: collapse;
}
.box-wrap .box .table .line {
  border-bottom: 1px solid #ccc;
}
.box-wrap .box .table .line:last-child {
  border-bottom: none;
}
.box-wrap .box .table .line .line-head {
  border: 1px solid #ccc;
  font-weight: bold;
  padding: 10px;
  text-align: left;
  white-space: nowrap;
}
.box-wrap .box .table .line .line-head:first-child {
  width: 30%;
}
.box-wrap .box .table .line .line-body {
  padding: 10px;
  border: 1px solid #ccc;
}
.box-wrap .box .table .line .line-body .block-list-02 {
  margin: 0;
}
.box-wrap .box .table .line .line-body .block-list-02 .block-list-item {
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .box-wrap {
    display: block;
  }
  .box-wrap .box {
    width: 100%;
    margin-bottom: 20px;
    padding: 0;
  }
  .box-wrap .box-ttl {
    font-size: 16px;
  }
  .box-wrap .table .line-head,
  .box-wrap .table .line-body {
    padding: 0;
    font-size: 14px;
    padding: 8px;
  }
  .box-wrap .agreement .box-wrap .box .table .line .line-head:first-child {
    width: 100%;
  }
  .box-wrap .line-head {
    width: 60%;
  }
  .box-wrap .line-head:first-child {
    width: 10%;
  }
  .box-wrap .detail-body {
    font-size: 1.3rem;
    line-height: 1.5;
  }
}
/* プライバシーポリシー 個人情報の取り扱いについて　終了 */

.contact__leadText{
  margin-bottom: 2rem;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
.contact__leadText{
  margin-bottom: 1rem;
}}



/*---------------------------------------------------
Slick
---------------------------------------------------*/
.slick-slider{position:relative;display:block;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:rgba(0,0,0,0)}.slick-list{position:relative;overflow:hidden;display:block;margin:0;padding:0}.slick-list:focus{outline:none}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-track,.slick-slider .slick-list{-webkit-transform:translate3d(0, 0, 0);-moz-transform:translate3d(0, 0, 0);-ms-transform:translate3d(0, 0, 0);-o-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}.slick-track{position:relative;left:0;top:0;display:block}.slick-track:before{content:"";display:table}.slick-track:after{content:"";display:table;clear:both}.slick-loading .slick-track{visibility:hidden}.slick-slide{float:left;height:100%;min-height:1px;display:none}[dir=rtl] .slick-slide{float:right}.slick-slide img{display:block}.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-initialized .slick-slide{display:block}.slick-loading .slick-slide{visibility:hidden}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid rgba(0,0,0,0)}.slick-arrow.slick-hidden{display:none}
/*# sourceMappingURL=slick.css.map */

.slick-prev,.slick-next{font-size:0px;line-height:0px;position:absolute;z-index:5;bottom:0;display:block;width:42px;height:42px;padding:0;cursor:pointer;color:rgba(0,0,0,0);border:none;outline:none;background-color:#fff}.slick-prev:hover:before,.slick-prev:focus:before{opacity:1}.slick-next:hover:before,.slick-next:focus:before{opacity:1}.slick-prev.slick-disabled:before,.slick-next.slick-disabled:before{opacity:.25}.slick-prev:before,.slick-next:before{font-size:20px;line-height:1;position:absolute;top:0;right:0;bottom:0;left:0;display:block;width:10px;height:10px;margin:auto;content:"";opacity:.75;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.slick-prev{left:0}.slick-prev:before{transform:rotate(-45deg);border-top:2px solid #a16442;border-left:2px solid #a16442}.slick-next{left:44px}.slick-next:before{transform:rotate(45deg);border-top:2px solid #a16442;border-right:2px solid #a16442}.slick-dots{position:absolute;bottom:-45px;display:block;width:100%;padding:0;list-style:none;text-align:center}.slick-dots li{position:relative;display:inline-block;width:20px;height:20px;margin:0 5px;padding:0;cursor:pointer}.slick-dots li button{font-size:0px;line-height:0px;display:block;width:20px;height:20px;padding:5px;cursor:pointer;color:rgba(0,0,0,0);border:0;outline:none;background:rgba(0,0,0,0)}.slick-dots li button:hover,.slick-dots li button:focus{outline:none}.slick-dots li button:hover:before,.slick-dots li button:focus:before{opacity:1}.slick-dots li button:before{line-height:20px;position:absolute;top:0;left:0;width:20px;height:20px;content:"●";text-align:center;opacity:.25;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.slick-dots li.slick-active button:before{opacity:.75}
/*# sourceMappingURL=slick-theme.css.map */