@charset "UTF-8";
/**
 * CSS Information
 * ===============================================================
 *
 * File name: _contents.scss
 * Summary:   ページ・コンテンツごとの固有スタイル
 *
 * -----------------------------------
 *
 * TOC:
 *     =1    home
 *
 * ===============================================================
*/
/** =1
 * ========================================
 * home
 * ========================================
 */
/*
   * News Feed
   * ----------------------------------
   */

.newsBlockWrapper {
  padding: 30px;
  border-radius: 40px;
  background: #dd5519;
}
.newsDl {
  margin: 0 auto;
  font-size: 2rem;
}
.newsDt {
  width: 180px;
  float: left;
}
.newsDd {
  margin-left: 180px;
}
.newsDd::after {
  content: "";
  display: block;
  clear: both;
}

@media screen and (max-width: 767px) {
  .newsBlockWrapper {
    padding: 20px;
  }
  .newsDl {
    font-size: 1.5rem;
  }
  .newsDt {
    width: 100%;
    float: none;
  }
  .newsDt:not(:first-of-type) {
    margin-top: 10px;
  }
  .newsDd {
    margin-left: 0;
  }
}

.copySectionWrapper {
  margin: 7vh auto 0;
}
.copySectionH2 {
  font-size: 4.6rem;
}
.copySectionDiv {
  margin: 3vh auto 0;
}
.copySectionP {
  font-size: 2rem;
}
.copySectionP:not(:first-of-type) {
  margin: 1.5vh auto 0;
}

@media screen and (max-width: 767px) {
  .copySectionWrapper {
    margin: 5vh auto 0;
  }
  .copySectionH2 {
    font-size: 2.2rem;
  }
  .copySectionP {
    font-size: 1.5rem;
  }
  .copySectionP:not(:first-of-type) {
    margin: 1vh auto 0;
  }
}

.mapBlockWrapper {
  margin: 9vh auto;
}
.mapIframe {
  transition: all 300ms ease-in-out;
  filter: grayscale(100%);
}
.mapIframe:hover {
  filter: grayscale(0%);
}

/** =4
* ========================================
* CONTACT
* ========================================
*/
.sectionContactForm .standardDl:first-of-type {
  margin-top: 10px;
  border-top: 1px dotted #aaaaaa;
}
.contactPrivacyArea {
  padding: 35px 0 0;
  font-size: 13px;
  font-size: 1.3rem;
}
.contactPrivacyAreaTitle {
  margin-bottom: 15px;
}

.checkBoxWrapper {
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  background: #eeeeee;
  font-size: 15px;
  font-size: 1.5rem;
}
.checkBoxWrapper:hover {
  background: #ddd;
}
.checkBoxWrapper .checkbox {
  width: 100%;
  padding: 25px 0;
}
.checkbox input[type="checkbox"] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.checkbox input[type="checkbox"] + .icon-checkbox {
  display: inline-block;
  position: relative;
  bottom: -0.2em;
  width: 1em;
  height: 1em;
  margin-right: 0.5em;
  border: 1px solid #555;
  background-color: #fff;
  vertical-align: baseline;
}
.checkbox input[type="checkbox"] + .icon-checkbox:after {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: 60%;
  height: 30%;
  margin-top: -28%;
  margin-left: -29%;
  transform: rotate(-45deg);
  border-bottom: 2px solid #000;
  border-left: 2px solid #000;
  opacity: 0;
}
.checkbox input[type="checkbox"]:checked + .icon-checkbox:after {
  opacity: 1;
}
.is-disabled {
  opacity: 0.3;
}
.is-disabled .submitBtn {
  cursor: default;
  pointer-events: none;
}

.formBtnWrapper {
  justify-content: center;
  margin: 50px auto 0;
}

.thanksTxtWrapper p {
  margin-bottom: 15px;
  font-size: 15px;
  font-size: 1.5rem;
}
