@charset "UTF-8";
/* CSSリセット */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  font-weight: normal;
}

ul {
  list-style: none;
}

/* コンテンツ幅 */
/* color */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #1e1e1e;
  min-width: 1240px;
}
@media screen and (max-width: 768px) {
  body {
    min-width: inherit;
    font-size: 15px;
  }
}

p {
  color: #1e1e1e;
}

a {
  text-decoration: none;
  color: #1e1e1e;
  transition: 0.3s;
}

a:hover {
  opacity: 0.9;
}

.sp_br {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp_br {
    display: block;
  }
}

/* header */
#header_wrap {
  position: fixed;
  z-index: 9;
  background: rgba(64, 58, 58, 0.4666666667);
  display: flex;
  justify-content: space-between;
  width: 100%;
  min-width: 1240px;
  padding: 30px 10%;
  box-sizing: border-box;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  #header_wrap {
    min-width: inherit;
    display: block;
    height: 100vh;
    padding: 20% 0;
    left: -100vw;
    background: rgba(64, 58, 58, 0.8666666667);
  }
}
#header_wrap .menu ul {
  display: flex;
}
@media screen and (max-width: 768px) {
  #header_wrap .menu ul {
    display: block;
    text-align: center;
    font-size: 18px;
  }
}
#header_wrap .menu ul li {
  margin-left: 60px;
}
@media screen and (max-width: 768px) {
  #header_wrap .menu ul li {
    margin-left: 0;
    margin-bottom: 30px;
  }
}
#header_wrap .menu ul li:nth-child(1) {
  margin-left: 0;
}
#header_wrap .menu ul li a {
  font-family: "Poppins";
  color: #fff;
}
#header_wrap .contact a {
  padding: 13px 120px 13px 70px;
  background: #fff;
  border-radius: 26px;
  position: relative;
  color: #E75B39;
  font-size: 14px;
  font-weight: bold;
  border: 1px solid #E75B39;
}
@media screen and (max-width: 768px) {
  #header_wrap .contact a {
    display: table;
    margin: 50px auto 0;
    padding: 13px 50px;
  }
}
#header_wrap .contact a::after {
  content: "";
  position: absolute;
  background-image: url(../image/link_arrow_orange.svg);
  width: 47px;
  height: 5px;
  background-repeat: no-repeat;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  #header_wrap .contact a::after {
    display: none;
  }
}

/* sp menu */
#sp_menu {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 5px;
  z-index: 9;
  display: none;
}
@media screen and (max-width: 768px) {
  #sp_menu {
    display: block;
  }
}
#sp_menu span {
  display: block;
  width: 30px;
  height: 2px;
  background: #333;
  margin-bottom: 5px;
  transition: 0.3s;
}
#sp_menu span:nth-child(2) {
  margin-bottom: 0;
}

/* Youtube_Link */
#youtube_live {
  position: fixed;
  z-index: 99;
  top: 10px;
  right: 20px;
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.4666666667));
}
@media screen and (max-width: 768px) {
  #youtube_live {
    top: inherit;
    right: inherit;
    bottom: 20px;
    left: 20px;
  }
}
@media screen and (max-width: 768px) {
  #youtube_live img {
    width: 150px;
    height: auto;
  }
}

.top_kv {
  position: relative;
  min-width: 1240px;
}
@media screen and (max-width: 768px) {
  .top_kv {
    min-width: inherit;
  }
}
.top_kv video {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .top_kv video {
    height: 550px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.top_kv .kv_copy {
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: 50%;
  width: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.top_kv .kv_copy img {
  display: block;
}
.top_kv .kv_copy img:nth-child(2) {
  margin-right: 70px;
  width: 300px;
}
@media screen and (max-width: 768px) {
  .top_kv .kv_copy img:nth-child(2) {
    margin-right: 0;
    width: 160px;
  }
}
@media screen and (max-width: 768px) {
  .top_kv .kv_copy img {
    width: 120;
  }
}

.content {
  max-width: 1200px;
  min-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .content {
    max-width: inherit;
    min-width: inherit;
    width: 85%;
  }
}

/* main */
main {
  position: relative;
}

/* ABOUT US */
.about_us {
  width: 100%;
  padding: 60px 0;
  background: #fce9a4;
}
.about_us .content .about_us_lead {
  display: flex;
  justify-content: left;
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .about_us .content .about_us_lead {
    display: block;
  }
}
.about_us .content .about_us_lead h2 {
  padding-right: 110px;
  border-right: 1px solid #403A3A;
}
@media screen and (max-width: 768px) {
  .about_us .content .about_us_lead h2 {
    padding-right: 0;
    border-right: 0;
    margin-bottom: 20px;
  }
}
.about_us .content .about_us_lead div {
  margin-left: 50px;
}
@media screen and (max-width: 768px) {
  .about_us .content .about_us_lead div {
    margin-left: 0;
  }
}
.about_us .content .about_us_lead div h3 {
  font-size: 28px;
  font-weight: bold;
  color: #6a458a;
  margin-bottom: 30px;
}
.about_us .content .about_us_lead div p {
  line-height: 2em;
}
.about_us .content ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .about_us .content ul {
    margin-bottom: 30px;
  }
}
.about_us .content ul li {
  width: 23%;
}
@media screen and (max-width: 768px) {
  .about_us .content ul li {
    width: 100%;
    margin-bottom: 20px;
  }
}
.about_us .content ul li img {
  width: 100%;
  border: 2px solid #6a458a;
}
.about_us .content ul li div {
  font-size: 18px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .about_us .content ul li div {
    font-size: 14px;
  }
}
.about_us .content .contact {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .about_us .content .contact {
    width: inherit;
  }
}
.about_us .content .contact a {
  padding: 13px 120px 13px 70px;
  background: #706B6B;
  border-radius: 26px;
  position: relative;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .about_us .content .contact a {
    display: block;
    padding: 13px 90px 13px 30px;
  }
}
.about_us .content .contact a::after {
  content: "";
  position: absolute;
  background-image: url(../image/link_arrow_white.svg);
  width: 60px;
  height: 5px;
  background-repeat: no-repeat;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

/* LIVE CAMERA */
.live_camera {
  background: #ebebeb;
  padding: 60px 0;
}
.live_camera .content a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 60px auto 0;
  position: relative;
}
.live_camera .content a::before {
  content: "";
  position: absolute;
  background-image: url(../image/live_camera_link_arrow.svg);
  width: 100px;
  height: 100px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .live_camera .content a::before {
    width: 50px;
    height: 50px;
    background-size: 100%;
  }
}
.live_camera .content a img {
  display: block;
  border-radius: 60px;
}
@media screen and (max-width: 768px) {
  .live_camera .content a img {
    width: 100%;
    border-radius: 30px;
  }
}

/* NEWS */
.news {
  background: #ebebeb;
  padding-bottom: 150px;
}
.news .content {
  display: flex;
}
@media screen and (max-width: 768px) {
  .news .content {
    display: block;
  }
}
.news .content div {
  width: 30%;
}
@media screen and (max-width: 768px) {
  .news .content div {
    width: 100%;
  }
}
.news .content div h2 {
  position: relative;
  padding-top: 20px;
}
.news .content div h2::after {
  content: "お知らせ";
  position: absolute;
  left: 120px;
  font-size: 18px;
}
.news .content div a {
  margin-top: 20px;
  display: inline-table;
  padding: 5px 60px 5px 30px;
  background: #fff;
  border: 1px solid #777;
  font-size: 12px;
  font-family: "Poppins";
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 768px) {
  .news .content div a {
    display: block;
  }
}
.news .content div a::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 1px;
  background: #333;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.news .content div a::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  background: #333;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.news .content ul {
  width: 70%;
}
@media screen and (max-width: 768px) {
  .news .content ul {
    width: 100%;
  }
}
.news .content ul li a {
  display: block;
  padding: 20px 0;
  padding-left: 2em;
  border-bottom: 1px solid #777;
  position: relative;
}
.news .content ul li a::before {
  content: "■";
  position: absolute;
  left: 0;
}
.news .content ul li a span {
  font-size: 13px;
  font-family: "lato";
  font-weight: bold;
  padding-right: 2em;
}
.news .content ul li a span + span {
  font-size: 15px;
  font-weight: normal;
  padding-right: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .news .content ul li a span + span {
    display: block;
  }
}

/* GALLERY */
.gallery {
  background: linear-gradient(180deg, #5A688D, #BB6154);
  padding: 50px 0 80px;
}
.gallery .content {
  position: relative;
}
.gallery .content h2 {
  position: absolute;
  top: -100px;
}
.gallery .content h3 {
  color: #fff;
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
}
.gallery .content p {
  color: #fff;
  text-align: center;
  margin-bottom: 50px;
}
.gallery .content .hassh {
  font-size: 18px;
}
.gallery .content .hassh p {
  margin-bottom: 20px;
}
.gallery .content .hassh div {
  margin: 0 auto 50px;
  padding: 10px 30px;
  display: table;
  background: #ffc107;
}
.gallery ul.gallery_image li {
  padding-right: 20px;
  box-sizing: border-box;
}
.gallery ul.gallery_image li:nth-of-type(2n+1) {
  margin-top: 60px;
}
.gallery ul.gallery_image li img {
  width: 100%;
  border: 1px solid #6a458a;
}

/* slick */
.slick-dots li {
  width: 55px !important;
}
@media screen and (max-width: 768px) {
  .slick-dots li {
    width: 30px !important;
  }
}

.slick-dots li button:before {
  content: "" !important;
  width: 50px !important;
  height: 5px !important;
  background: #ececec !important;
  opacity: 0.5 !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}
@media screen and (max-width: 768px) {
  .slick-dots li button:before {
    width: 25px !important;
  }
}

.slick-dots li.slick-active button:before {
  content: "";
  width: 50px;
  height: 5px;
  background: #b82626 !important;
  opacity: 0.5 !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .slick-dots li.slick-active button:before {
    width: 25px !important;
  }
}

/* LINKS */
.links {
  background: #403A3A;
  padding: 60px 0;
}
.links .content h2 {
  margin-bottom: 30px;
}
.links .content ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.links .content ul li {
  width: 32%;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .links .content ul li {
    width: 100%;
  }
}
.links .content ul li a img {
  width: 100%;
}

/* contact */
.contact_form {
  padding: 100px 0;
}
.contact_form .content {
  max-width: 980px;
  min-width: 980px;
}
@media screen and (max-width: 768px) {
  .contact_form .content {
    max-width: inherit;
    min-width: inherit;
  }
}
.contact_form .content h2 {
  font-size: 24px;
  color: #fff;
  background: #dd5a31;
  border-radius: 30px;
  text-align: center;
  padding: 10px 0;
  margin-bottom: 60px;
}
.contact_form .content .contact_status {
  width: 60%;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .contact_form .content .contact_status {
    width: 80%;
  }
}
.contact_form .content .contact_status div.no {
  display: flex;
  justify-content: space-between;
}
.contact_form .content .contact_status div.no::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #777;
  z-index: -1;
}
.contact_form .content .contact_status div.no div {
  padding: 20px 20px;
  border: 1px solid #777;
  border-radius: 20px;
  background: #fff;
  text-align: center;
  position: relative;
}
.contact_form .content .contact_status div.no div::before {
  content: "01";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.contact_form .content .contact_status div.no div + div::before {
  content: "02";
}
.contact_form .content .contact_status div.no div + div + div::before {
  content: "03";
}
.contact_form .content .contact_status div.text {
  display: flex;
  justify-content: space-between;
  margin-bottom: 90px;
}
.contact_form .content .contact_status div.text div {
  position: relative;
}
.contact_form .content .contact_status div.text div::before {
  content: "お問い合わせ内容の入力";
  position: absolute;
  top: 10px;
  left: -2.5em;
  width: 8em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact_form .content .contact_status div.text div::before {
    font-size: 12px;
  }
}
.contact_form .content .contact_status div.text div + div::before {
  content: "入力内容の確認";
  left: -3.5em;
  width: 7em;
}
@media screen and (max-width: 768px) {
  .contact_form .content .contact_status div.text div + div::before {
    font-size: 12px;
  }
}
.contact_form .content .contact_status div.text div + div + div::before {
  content: "受付完了";
  left: -3.3em;
  width: 4em;
}
@media screen and (max-width: 768px) {
  .contact_form .content .contact_status div.text div + div + div::before {
    font-size: 12px;
  }
}
.contact_form .content .contact_status .step_no_active {
  background: #EB5B5B !important;
  border: 0 !important;
  color: #fff !important;
}
.contact_form .content .contact_status .step_text_active {
  color: #EB5B5B !important;
  font-weight: bold;
}
.contact_form .content h3 {
  font-size: 26px;
  font-weight: bold;
  padding: 20px 0 20px 30px;
  margin: 20px 0;
  border-bottom: 1px solid #ccc;
  position: relative;
}
@media screen and (max-width: 768px) {
  .contact_form .content h3 {
    font-size: 18px;
  }
}
.contact_form .content h3::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 30px;
  background: #dd5a31;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.contact_form .content .form_box {
  display: flex;
  position: relative;
  margin: 20px 0;
}
@media screen and (max-width: 768px) {
  .contact_form .content .form_box {
    display: block;
  }
}
.contact_form .content .form_box .item {
  width: 30%;
  padding-top: 0.75em;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .contact_form .content .form_box .item {
    width: 100%;
    margin-bottom: 1em;
    font-size: 16px;
    font-weight: bold;
    background: #fce5e5;
    padding: 5px 10px;
    box-sizing: border-box;
  }
}
.contact_form .content .form_box .item span {
  font-size: 12px;
  padding: 3px 10px;
  background: #EB5B5B;
  border-radius: 3px;
  height: 20px;
  color: #fff;
  margin-right: 20px;
}
.contact_form .content .form_box .item_input {
  width: 70%;
}
@media screen and (max-width: 768px) {
  .contact_form .content .form_box .item_input {
    width: 100%;
    padding-left: 1em;
    box-sizing: border-box;
  }
}
.contact_form .content .form_box .item_input .name_input {
  display: flex;
}
@media screen and (max-width: 768px) {
  .contact_form .content .form_box .item_input .name_input {
    display: block;
  }
}
.contact_form .content .form_box .item_input .name_input div + div {
  margin-left: 2em;
}
@media screen and (max-width: 768px) {
  .contact_form .content .form_box .item_input .name_input div + div {
    margin-left: 0;
    margin-top: 30px;
  }
}
.contact_form .content .form_box input, .contact_form .content .form_box select, .contact_form .content .form_box textarea {
  padding: 15px 15px;
  background: #F8F8F8;
  border: 1px solid #ccc;
}
.contact_form .content .form_box textarea {
  height: 15em;
  width: 100%;
}
.contact_form .content .form_box .exsample {
  font-size: 14px;
  margin-top: 5px;
}
.contact_form .content .form_box .w15 {
  display: inline-block;
  width: 9em;
}
.contact_form .content .form_box .mb20 {
  margin-bottom: 20px;
}
.contact_form .content span {
  padding-right: 20px;
}
.contact_form .content p {
  margin: 20px 0;
}
.contact_form .content .personal {
  height: 7em;
  overflow-y: scroll;
  padding: 1em;
  border: 1px solid #ccc;
  margin-bottom: 30px;
}
.contact_form .content .personal p {
  margin: 0 !important;
}
.contact_form .content .personal_agree {
  width: 100%;
  padding: 20px 0;
  background: #F8F8F8;
  text-align: center;
}
.contact_form .content input[type=submit], .contact_form .content input.wpcf7-form-control.wpcf7-previous {
  font-size: 18px;
  color: #fff;
  background: #d55929;
  margin: 0 auto;
  display: table;
  margin: 50px auto;
  border: none;
  padding: 10px 30px;
  border-radius: 30px;
  transition: 0.5s;
}
.contact_form .content input[type=submit]:hover, .contact_form .content input.wpcf7-form-control.wpcf7-previous:hover {
  cursor: pointer;
  background: #333;
  color: #fff;
}
.contact_form .input_length_1 {
  width: 38em;
}
@media screen and (max-width: 768px) {
  .contact_form .input_length_1 {
    width: 100%;
  }
}
.contact_form .input_length_2 {
  width: 50.5em;
}
@media screen and (max-width: 768px) {
  .contact_form .input_length_2 {
    width: inherit;
  }
}

/* お問合せ確認画面 */
.confirm {
  align-items: baseline;
}

/* footer */
footer {
  background: #e6e6e6;
  position: relative;
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  footer {
    padding-bottom: 140px;
  }
}
footer h1 {
  font-size: 28px;
  color: #444;
  text-align: center;
}
footer a {
  color: #444;
}
footer .tel {
  font-size: 37px;
  font-family: "Poppins";
  font-weight: bold;
  display: table;
  margin: 0 auto 10px;
}
footer .footer_address {
  font-size: 21px;
  text-align: center;
  color: #444;
}
@media screen and (max-width: 768px) {
  footer .footer_address {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_address span + span {
    display: block;
  }
}
footer .sns {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  footer .sns {
    position: inherit;
    width: 60%;
    margin: 50px auto 0;
  }
}
footer .sns ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .sns ul li {
  margin-right: 35px;
}
footer .sns ul li:nth-child(4) {
  margin-right: 0;
}
footer .page_link {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  footer .page_link {
    margin-left: 5%;
  }
}
footer .page_link ul {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  footer .page_link ul {
    display: block;
  }
}
footer .page_link ul li {
  margin-right: 60px;
}
footer .page_link ul li:nth-child(5) {
  margin-right: 0;
}
footer .page_link ul li a {
  font-family: "Poppins";
  font-size: 21px;
  font-weight: bold;
  color: #444;
}
footer #back {
  position: fixed;
  bottom: -80px;
  right: 0;
  transition: 0.5s;
  z-index: 9;
  padding: 25px;
  background: #706B6B;
}
@media screen and (max-width: 768px) {
  footer #back {
    display: none;
  }
}
footer #back img {
  width: 20px;
  height: 20px;
}

/* line chat */
.line_chat {
  position: sticky;
  bottom: 140px;
  margin-top: -220px;
  margin-right: 50px;
  width: -moz-fit-content;
  width: fit-content;
  left: 100%;
}
@media screen and (max-width: 768px) {
  .line_chat {
    position: fixed;
    bottom: 20px;
    right: 0;
    margin-right: 20px;
    z-index: 10;
    left: inherit;
  }
}
.line_chat .line_chat_copy {
  position: absolute;
  top: -100px;
  right: 35px;
  font-size: 21px;
  font-weight: bold;
  color: #02C34F;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .line_chat .line_chat_copy {
    top: -65px;
    right: 0;
    font-size: 14px;
  }
}
.line_chat .line_chat_copy::before {
  content: "";
  position: absolute;
  top: 65px;
  left: -10px;
  width: 2px;
  height: 20px;
  background: #02C34F;
  transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .line_chat .line_chat_copy::before {
    left: 0;
    top: 40px;
  }
}
.line_chat .line_chat_copy::after {
  content: "";
  position: absolute;
  top: 65px;
  right: -10px;
  width: 2px;
  height: 20px;
  background: #02C34F;
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .line_chat .line_chat_copy::after {
    right: 0;
    top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .line_chat a img {
    width: 100px;
  }
}

/* 下層ページ */
.page_title {
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ebebeb;
  overflow: hidden;
  position: relative;
}
.page_title img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page_title h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  color: #fff;
}

/* アーカイブ */
.news_archive {
  padding: 60px 0 150px;
}
.news_archive h2 {
  font-size: 30px;
  font-weight: bold;
  color: #dd5a31;
  margin-bottom: 60px;
  text-align: center;
  position: relative;
}
.news_archive h2::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  background: #dd5a31;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.news_archive ul {
  width: 100%;
}
.news_archive ul li a {
  display: block;
  padding: 20px 0;
  padding-left: 2em;
  border-bottom: 1px solid #777;
  position: relative;
}
.news_archive ul li a::before {
  content: "■";
  position: absolute;
  left: 0;
}
.news_archive ul li a span {
  font-size: 13px;
  font-family: "lato";
  font-weight: bold;
  padding-right: 2em;
}
@media screen and (max-width: 768px) {
  .news_archive ul li a span {
    display: block;
    font-style: 14px;
  }
}
.news_archive ul li a span + span {
  font-size: 15px;
  font-weight: normal;
  padding-right: 0;
}
@media screen and (max-width: 768px) {
  .news_archive ul li a span + span {
    font-size: 16px;
  }
}

/* SINGLE PAGE */
.single_title {
  position: absolute;
  color: #de5932;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.8);
  font-size: 28px;
  border-radius: 5px;
  max-width: 75%;
}

article {
  margin: 50px 0;
}
article .date {
  font-size: 15px;
  padding: 5px 20px;
  background: #de5932;
  display: table;
  color: #fff;
  margin-bottom: 30px;
}
article img {
  width: 100%;
  margin: 1em 0;
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  article img {
    border-radius: 15px;
  }
}
article p {
  font-size: 15px;
  margin-bottom: 2em;
  color: #dd5a31;
}

.other_links {
  display: table;
  margin: 0 auto;
}
.other_links span:nth-child(2) {
  margin: 0 50px;
}
.other_links span a {
  border-bottom: 1px solid #ccc;
}

.return_page {
  display: table;
  margin-bottom: 50px;
  position: relative;
  padding-left: 30px;
}
.return_page::before {
  content: "<";
  position: absolute;
  left: 0;
}

/* contact-form-7 */
input.wpcf7-form-control.wpcf7-text {
  width: 100%;
}/*# sourceMappingURL=style.css.map */