@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Bellefair&family=Noto+Sans+JP:wght@100..900&family=Shippori+Mincho&display=swap");
/*=================================================
共通
=================================================*/
#page .details-summary {
  font-size: 1.8rem;
}
#page main h2 {
  font-family: "Shippori Mincho", serif;
  font-size: 2.8rem;
  border-bottom: 1px solid #BFBFBA;
  padding-bottom: 22px;
  margin-bottom: 0px;
  font-weight: 400;
  line-height: 1.4;
}

.mv {
  background: -webkit-gradient(linear, left top, right top, from(rgb(54, 78, 62)), color-stop(83%, rgb(65, 104, 78)));
  background: -webkit-linear-gradient(left, rgb(54, 78, 62) 0%, rgb(65, 104, 78) 83%);
  background: linear-gradient(90deg, rgb(54, 78, 62) 0%, rgb(65, 104, 78) 83%);
  height: 260px;
  position: relative;
}
.mv h1 {
  padding: 130px 0 0;
}
.mv h1 span {
  margin-bottom: 10px;
}

.year {
  color: #245233;
  font-family: "Shippori Mincho", serif;
  font-size: 1.6rem;
  font-weight: 400;
}

.anchor_link_box {
  margin-bottom: 80px;
}

.anchor_link {
  width: 100%;
  margin: 0 auto;
  border: 1px solid #BFBFBA;
  margin-top: 10px;
  position: relative;
  display: block;
  padding: 20px;
  font-size: 1.6rem;
  font-family: "Shippori Mincho", serif;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  line-height: 1.6;
  padding-right: 74px;
}
.anchor_link:after {
  position: absolute;
  top: 50%;
  right: 24px;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  content: "";
  background-image: url(../img/common/page_link_down.svg);
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-size: cover;
}

.link_contents {
  margin-bottom: 80px;
}
.link_contents:last-child {
  margin-bottom: 0px;
}
.link_contents .box {
  margin-bottom: 50px;
}
.link_contents .box:last-child {
  margin-bottom: 0px;
}
.link_contents .box .table_normal tr th:first-child {
  border-right: 1px solid #BFBFBA;
  width: 240px;
}
.link_contents .box .table_normal tr td:first-child {
  border-right: 1px solid #BFBFBA;
}
.link_contents .box .table_normal.yoko td .flex {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.link_contents .box .table_normal.yoko td .flex img {
  width: 130px;
}
.link_contents .box .table_normal.yoko td .flex .honbun {
  font-size: 1.4rem;
  font-weight: 400;
}

@media (max-width: 768px) {
  .mv {
    height: 120px;
  }
  .mv h1 {
    padding: 30px 0 0;
  }
  .link_contents h2 {
    font-size: 2rem;
    padding-bottom: 19px;
    line-height: 1.4;
  }
  .link_contents .box .table_normal tr th:first-child {
    width: 30%;
  }
  .link_contents .box .table_normal.yoko td .flex img {
    width: 120px;
    margin: 7px auto 0;
    display: block;
  }
  #page header .logo .normal {
    display: none;
  }
  #page header .logo .scroll {
    display: block;
  }
  #page .details-summary {
    font-size: 1.6rem;
    padding-right: 60px;
  }
  #page main h2 {
    font-size: 2rem;
  }
}
/*=================================================
テーブル
=================================================*/
/*SPレイアウトここから*/
@media (max-width: 768px) {
  .table_normal {
    width: 100%;
  }
  .table_normal th, .table_normal td {
    width: 100%;
    display: block;
  }
  .table_normal th {
    padding: 20px;
  }
  .table_normal td {
    padding: 20px 0 !important;
  }
  .table_normal td.b_none {
    border-bottom: none;
  }
}
/*=================================================
works
=================================================*/
#page.works .details {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  margin-top: 40px;
}
#page.works .details:first-child {
  margin-top: 0px;
}
#page.works .details-content {
  padding: 50px;
}

@media (max-width: 768px) {
  #page.works .details-content {
    padding: 20px;
  }
  #page.works .details {
    margin-top: 20px;
  }
  #page.works .table_normal th, #page.works .table_normal td {
    display: table-cell;
  }
  #page.works .table_normal {
    table-layout: fixed;
  }
  #page.works .table_normal tr th {
    padding: 15px;
  }
  #page.works .table_normal tr th:first-child {
    width: 84px;
  }
  #page.works .table_normal tr td {
    padding: 15px !important;
  }
}
/*=================================================
contact
=================================================*/
#page.contact .tel {
  color: #245233;
  font-size: 3rem;
  display: block;
}
#page.contact .mail {
  color: #245233;
  font-size: 1.8rem;
  display: block;
}
#page.contact dt {
  background: #E3E7DF;
  padding: 15px;
  width: 260px;
}
#page.contact dt span {
  font-size: 1.4rem;
  background: #245233;
  color: #fff;
  padding: 0 10px 1px;
  margin-left: 10px;
}
#page.contact .s_txt {
  max-width: 500px;
}
#page.contact .ss_txt {
  max-width: 140px;
}
#page.contact .submit-area {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
#page.contact .submit-area .wpcf7-spinner {
  display: none !important;
}
#page.contact .contact-step-complete .honbun {
  text-align: center;
  font-size: 2rem;
  line-height: 2.4;
}
#page.contact .doui .scroll {
  width: 100%;
  height: 300px;
  overflow: scroll;
  border: 1px solid #BFBFBA;
  padding: 30px;
  margin-top: 20px;
}
#page.contact .doui {
  background: #F7F7F2;
  padding: 50px;
  margin-top: 40px;
}
#page.contact .doui h2 {
  margin-top: 0px;
}
#page.contact .doui label {
  font-size: 2.4rem;
  text-align: center;
  font-weight: 300;
}
#page.contact .doui .scroll {
  background: #fff;
}
#page.contact .policy strong {
  display: block;
  line-height: 1.6;
}
#page.contact .policy .honbun {
  font-size: 1.5rem;
}
#page.contact #footer nav {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
#page.contact .wpcf7 form.sent .wpcf7-response-output {
  display: none;
}

@media (max-width: 768px) {
  #page.contact form {
    border: none;
  }
  #page.contact .s_txt {
    max-width: 100%;
  }
  #page.contact .ss_txt {
    max-width: 100%;
  }
  #page.contact dl {
    border: none;
  }
  #page.contact dl.none {
    border-bottom: none;
  }
  #page.contact dt {
    font-size: 1.4rem;
    vertical-align: middle;
    text-align: left;
    border-bottom: none;
    padding: 14px;
    -webkit-box-pack: start;
    -webkit-justify-content: start;
        -ms-flex-pack: start;
            justify-content: start;
    width: 100%;
  }
  #page.contact dd {
    padding: 10px 0 30px 0;
  }
  #page.contact .contact-step-confirm dd {
    padding: 20px 0;
    gap: 0;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    display: block;
    border-image-outset: initial;
    line-height: 1.6;
  }
  #page.contact .contact-step-complete .honbun {
    text-align: left;
    font-size: 1.6rem;
    line-height: 2;
    margin-top: 70px;
  }
  #page.contact .doui {
    padding: 20px 20px 30px;
    margin-top: 20px;
  }
  #page.contact .doui label {
    font-size: 2rem;
    margin-top: 30px;
  }
  #page.contact .doui .scroll {
    padding: 20px;
  }
  #page.contact #footer .copy {
    margin-top: 0px;
  }
  #page.contact .submit-area {
    margin-top: 10px;
  }
}
/*=================================================
ポップアップ
=================================================*/
.popup_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 999;
}
.popup_overlay.show {
  opacity: 1;
  pointer-events: auto;
}
.popup_overlay.show .popup_body {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.popup_body {
  background-color: #fff;
  padding: 60px;
  position: relative;
  width: 90%;
  max-width: 730px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  height: 90%;
  overflow: scroll;
}

.popup_close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  padding: 5px;
  color: #333333;
}

#open_btn {
  border: 1px solid #245233;
  color: #245233;
  font-size: 1.8rem;
  padding: 20px 100px;
  margin: 20px auto 0;
  display: block;
  position: relative;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
#open_btn:after {
  position: absolute;
  top: 50%;
  right: 24px;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  content: "";
  background-image: url(../img/common/popup_icon_gr.svg);
  width: 27px;
  height: 27px;
  background-repeat: no-repeat;
  background-size: cover;
}
#open_btn:hover {
  border: 1px solid #245233;
  color: #F7F7F2;
  background: #245233;
}
#open_btn:hover:after {
  background-image: url(../img/common/popup_icon.svg);
}

@media (max-width: 768px) {
  #open_btn {
    font-size: 1.6rem;
    padding: 15px 80px 15px 15px;
    line-height: 1.5;
    width: 100%;
  }
  .popup_body {
    padding: 60px 20px 20px;
    height: 74%;
  }
}/*# sourceMappingURL=common.css.map */